diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..fb6d8137 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: Get parks data + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Check out this repo + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Notify backcountry subscriptions + run: make notify + env: + GMAIL_APP_PASSWORD: ${{ secrets.GMAIL_APP_PASSWORD }} + - name: Commit and push if it changed + run: |- + git config user.name "Automated" + git config user.email "actions@users.noreply.github.com" + git add -A + timestamp=$(date -u) + git commit -m "Latest data: ${timestamp}" || exit 0 + git push + diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..112f3311 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__ +.env diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..d71c80f3 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +destination_ids=4675321 + +.INTERMEDIATE : data/notifications.json data/finished/backcountry_sites.json data/intermediate/backcountry_sites.json + +notify : data/notifications.json + python -m backcountry.notify $< + cp $< data/finished/notifications-$(shell date +%s).json + +data/notifications.json : data/finished/backcountry_sites.json + python -m backcountry.subscriptions $< > $@ + +data/finished/backcountry_sites.json : data/intermediate/backcountry_sites.json + python -m backcountry.get_site_availability $< > $@ + +data/intermediate/backcountry_sites.json : + python backcountry/get_backcountry_sites.py > $@ diff --git a/README.md b/README.md new file mode 100644 index 00000000..68bd6c7c --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# parks \ No newline at end of file diff --git a/backcountry/add_user.py b/backcountry/add_user.py new file mode 100644 index 00000000..ca7dc531 --- /dev/null +++ b/backcountry/add_user.py @@ -0,0 +1,53 @@ +from datetime import datetime +import json +import argparse + +# Set up the argument parser +parser = argparse.ArgumentParser( + description='Add a user to a list of backcountry sites.' +) +parser.add_argument('--email', type=str, help='The user\'s email address') +parser.add_argument( + '--sites', + type=str, + help='The list of sites the user is registered for, separated by commas', +) +parser.add_argument( + '--dates', + type=str, + help='The dates the user is registered for, separated by commas', +) + +# Parse the arguments +args = parser.parse_args() + +email = args.email +sites = args.sites.split(',') +dates = [ + datetime.strptime(date_str, '%m/%d/%Y').strftime('%Y-%m-%d') + for date_str in args.dates.split(',') +] + +with open('data/admin/backcountry_sites.json', 'r') as f: + sites_map = json.load(f) + +new_subscription = {email: {'sites': {}}} + +for id, site in sites_map.items(): + + if site['campsite'] in sites: + if id not in new_subscription[email]: + new_subscription[email]['sites'][id] = {'dates': {}} + + for date in dates: + if date not in new_subscription[email]['sites'][id]['dates']: + new_subscription[email]['sites'][id]['dates'][date] = {} + +subscriptions_file = 'data/subscriptions.json' +with open(subscriptions_file, 'r') as f: + subscriptions = json.load(f) + +subscriptions.update(new_subscription) + +with open(subscriptions_file, 'w') as f: + json.dump(subscriptions, f, indent=4) diff --git a/backcountry/get_backcountry_sites.py b/backcountry/get_backcountry_sites.py new file mode 100644 index 00000000..008ab82a --- /dev/null +++ b/backcountry/get_backcountry_sites.py @@ -0,0 +1,28 @@ +import requests +import sys +import json +import re + + + +with open('data/finished/permit_content.json') as f: + data = json.load(f)['payload']['divisions'] + +skip_sites = [ + 'AEF - Elizabeth Lake Foot Administrative Site', + 'AGC - Gable Creek Administrative Site', + 'AHO - Hole in the Wall (Admin. Site)', + 'AFM - Fifty Mountain Administrative Site', +] + +campsites = {} + +for division_id, division in data.items(): + campsite = division['name'] + + if re.match(r'[A-Z]+\s-', campsite) and campsite not in skip_sites: + campsites.update( + {division_id: {'district': division['district'], 'campsite': campsite}} + ) + +sys.stdout.write(json.dumps(campsites)) diff --git a/backcountry/get_site_availability.py b/backcountry/get_site_availability.py new file mode 100644 index 00000000..f36d484c --- /dev/null +++ b/backcountry/get_site_availability.py @@ -0,0 +1,54 @@ +import sys +import json +import requests + +from util.models import Campsite + +sites_file = sys.argv[1] + +with open(sites_file) as f: + sites = json.load(f) + +permit_itenerary_url = 'https://www.recreation.gov/api/permititinerary/4675321/division/{division_id}/availability/month?month={month}&year={year}' +year = 2023 + +campsites = {} + +for site_id, site in sites.items(): + campsite = Campsite( + name=site['campsite'], + district=site['district'], + division_id=site_id, + ) + + for month in []: + + url = permit_itenerary_url.format( + division_id=campsite.division_id, month=month, year=year + ) + response = requests.get( + url, + headers={ + 'Accept-Language': 'en-US', + 'Host': 'www.recreation.gov', + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8', + 'Accept-Encoding': 'gzip, deflate, br', + 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:109.0) Gecko/20100101 Firefox/110.0', + }, + ) + days = response.json()['payload']['quota_type_maps'].get( + 'ConstantQuotaUsageDaily' + ) + + d = {} + + for date, status in days.items(): + d.update( + {date: {'remaining': status['remaining'], 'total': status['total']}} + ) + + campsite.dates.update(d) + + campsites.update({campsite.division_id: campsite.to_dict()}) + +sys.stdout.write(json.dumps(campsites)) diff --git a/backcountry/notify.py b/backcountry/notify.py new file mode 100644 index 00000000..3e08c77c --- /dev/null +++ b/backcountry/notify.py @@ -0,0 +1,100 @@ +# import sendgrid + +# from sendgrid.helpers.mail import Mail, Email, To, Content + +# my_sg = sendgrid.SendGridAPIClient(api_key=os.environ.get('SENDGRID_API_KEY')) + +# # Change to your verified sender +# from_email = Email("your_email@example.com") + +# # Change to your recipient +# to_email = To("destination@example.com") + +# subject = "Lorem ipsum dolor sit amet" +# content = Content("text/plain", "consectetur adipiscing elit") + +# mail = Mail(from_email, to_email, subject, content) + +# # Get a JSON-ready representation of the Mail object +# mail_json = mail.get() + +# # Send an HTTP POST request to /mail/send +# response = my_sg.client.mail.send.post(request_body=mail_json) + +import os +import json +import sys + +try: + from dotenv import load_dotenv + + load_dotenv('.env') +except ModuleNotFoundError: + pass + +import smtplib +from email.mime.text import MIMEText + + +def make_message(email, text): + return { + "from_email": "sam@bookhead.net", + "from_name": "Sam McAlilly", + "subject": "Your campsite status alerts", + "text": text, + "to": [{"email": email, "type": "to"}], + } + + +def send_email(subject, body, sender, recipients, password): + msg = MIMEText(body) + msg['Subject'] = subject + msg['From'] = sender + msg['To'] = ', '.join(recipients) + smtp_server = smtplib.SMTP_SSL('smtp.gmail.com', 465) + smtp_server.login(sender, password) + smtp_server.sendmail(sender, recipients, msg.as_string()) + smtp_server.quit() + + +# def send_email(message): +# key = os.getenv('MAILCHIMP_API_KEY') +# try: +# mailchimp = MailchimpTransactional.Client(api_key=key) +# response = mailchimp.messages.send({"message": message}) +# except ApiClientError as error: +# print("An exception occurred: {}".format(error.text)) + + +target_file = sys.argv[1] +with open(target_file) as f: + notifications = json.load(f) + +print('notifications', notifications) + +if notifications: + for email, subscription in notifications.items(): + sites = {} + for site_name, dates in subscription.items(): + sites[site_name] = [] + for date, status in dates.items(): + sites[site_name].append((date, status['remaining'])) + + text = f"" + + for site_name, details in sites.items(): + for d in details: + text += f"{site_name} has {d[1]} available for {d[0]}\n" + + text += "\nU better hurry up and book ur campsite. Visit https://www.recreation.gov/permits/4675321/registration/detailed-availability/ & grab that permit.\n\nO yea here is a map: https://www.nps.gov/glac/planyourvisit/upload/Wilderness-Campground-Map-2023.pdf\n\n" + + send_email( + "Your tracked campsite(s) in Glacier changed", + text, + 'smcalilly@gmail.com', + [email], + os.getenv('GMAIL_APP_PASSWORD'), + ) + print('sent email to', email) +else: + print('no notifications to send') diff --git a/backcountry/subscriptions.py b/backcountry/subscriptions.py new file mode 100644 index 00000000..6fa94f41 --- /dev/null +++ b/backcountry/subscriptions.py @@ -0,0 +1,49 @@ +import json +import sys + +with open('data/subscriptions.json') as f: + subscriptions = json.load(f) + +with open('data/finished/backcountry_sites.json') as f: + sites = json.load(f) + +notify = {} + + +for email, subscription in subscriptions.items(): + # subscription = Subscription(email=email, dates=s['dates'], campsite=sites.get(s['site_id']) + notify.update({email: {}}) + + for id, subscription_dates in subscription['sites'].items(): + site = sites.get(id) + + for date, status in subscription_dates['dates'].items(): + current = site['dates'].get(date) + + sub_date = subscription_dates['dates'].get(date) + + if not current: + continue + + if not sub_date: + if current['remaining'] > 0: + try: + notify[email][site['name']].update({date: current}) + except KeyError: + notify[email].update({site['name']: {date: current}}) + elif sub_date.get('remaining') != current['remaining']: + if current['remaining'] > 0: + try: + notify[email][site['name']].update({date: current}) + except KeyError: + notify[email].update({site['name']: {date: current}}) + + subscription['sites'][id]['dates'].update({date: current}) + + if notify[email] == {}: + del notify[email] + +with open('data/subscriptions.json', 'w') as f: + json.dump(subscriptions, f) + +sys.stdout.write(json.dumps(notify)) diff --git a/data/admin/backcountry_sites.json b/data/admin/backcountry_sites.json new file mode 100644 index 00000000..5d61a613 --- /dev/null +++ b/data/admin/backcountry_sites.json @@ -0,0 +1,270 @@ +{ + "4675321001": { + "district": "Goat Haunt", + "campsite": "FIF - Fifty Mountain (No Campfires)" + }, + "4675321002": { + "district": "Goat Haunt", + "campsite": "FRA - Lake Francis (No Campfires)" + }, + "4675321003": { + "district": "Goat Haunt", + "campsite": "GOA - Goat Haunt Shelters" + }, + "4675321004": { + "district": "Goat Haunt", + "campsite": "HAW - Hawksbill (No Campfires)" + }, + "4675321005": { + "district": "Goat Haunt", + "campsite": "JAN - Lake Janet" + }, + "4675321006": { + "district": "Goat Haunt", + "campsite": "KOO - Kootenai Lake" + }, + "4675321007": { + "district": "Goat Haunt", + "campsite": "STO - Stony Indian Lake (No Campfires)" + }, + "4675321008": { + "district": "Goat Haunt", + "campsite": "WAT - Waterton River" + }, + "4675321009": { + "district": "Lake McDonald", + "campsite": "ARR - Arrow Lake (No Campfires)" + }, + "4675321010": { + "district": "Lake McDonald", + "campsite": "CAM - Camas Lake (No Campfires)" + }, + "4675321011": { + "district": "Lake McDonald", + "campsite": "ELL - Lake Ellen Wilson (No Campfires)" + }, + "4675321012": { + "district": "Lake McDonald", + "campsite": "FLA - Flattop (No Campfires)" + }, + "4675321013": { + "district": "Lake McDonald", + "campsite": "GRN - Granite Park (No Campfires)" + }, + "4675321014": { + "district": "Lake McDonald", + "campsite": "LIN - Lincoln Lake" + }, + "4675321015": { + "district": "Lake McDonald", + "campsite": "MCD - Lake McDonald" + }, + "4675321016": { + "district": "Lake McDonald", + "campsite": "SNY - Snyder Lake (No Campfires)" + }, + "4675321017": { + "district": "Lake McDonald", + "campsite": "SPE - Sperry (No Campfires)" + }, + "4675321018": { + "district": "Many Glacier", + "campsite": "COS - Cosley Lake (No Campfires)" + }, + "4675321019": { + "district": "Many Glacier", + "campsite": "CRA - Cracker Lake (No Campfires)" + }, + "4675321020": { + "district": "Many Glacier", + "campsite": "ELF - Elizabeth Lake Foot (No Campfires)" + }, + "4675321021": { + "district": "Many Glacier", + "campsite": "ELH - Elizabeth Lake Head (No Campfires)" + }, + "4675321022": { + "district": "Many Glacier", + "campsite": "GAB - Gable Creek (No Campfires)" + }, + "4675321023": { + "district": "Many Glacier", + "campsite": "GLF - Glenns Lake Foot (No Campfires)" + }, + "4675321024": { + "district": "Many Glacier", + "campsite": "GLH - Glenns Lake Head (No Campfires)" + }, + "4675321025": { + "district": "Many Glacier", + "campsite": "HEL - Helen Lake (No Campfires)" + }, + "4675321026": { + "district": "Many Glacier", + "campsite": "MAN - Many Glacier" + }, + "4675321027": { + "district": "Many Glacier", + "campsite": "MOJ - Mokowanis Junction (No Campfires)" + }, + "4675321028": { + "district": "Many Glacier", + "campsite": "MOL - Mokowanis Lake (No Campfires)" + }, + "4675321029": { + "district": "Many Glacier", + "campsite": "POI - Poia Lake (No Campfires)" + }, + "4675321030": { + "district": "Many Glacier", + "campsite": "SLI - Slide Lake" + }, + "4675321031": { + "district": "North Fork", + "campsite": "ADA - Adair" + }, + "4675321032": { + "district": "North Fork", + "campsite": "AKO - Akokala Lake (No Campfires)" + }, + "4675321033": { + "district": "North Fork", + "campsite": "BOU - Boulder Pass (No Campfires)" + }, + "4675321034": { + "district": "North Fork", + "campsite": "BOW - Bowman Lake" + }, + "4675321035": { + "district": "North Fork", + "campsite": "BRO - Brown Pass (No Campfires)" + }, + "4675321036": { + "district": "North Fork", + "campsite": "GRA - Grace Lake (No Campfires)" + }, + "4675321037": { + "district": "North Fork", + "campsite": "HOL - Hole in the Wall (No Campfires)" + }, + "4675321038": { + "district": "North Fork", + "campsite": "KIN - Kintla Lake" + }, + "4675321039": { + "district": "North Fork", + "campsite": "LOF - Logging Lake" + }, + "4675321040": { + "district": "North Fork", + "campsite": "LQU - Lower Quartz Lake (No Campfires)" + }, + "4675321041": { + "district": "North Fork", + "campsite": "QUA - Quartz Lake (No Campfires)" + }, + "4675321042": { + "district": "North Fork", + "campsite": "ROU - Round Prairie (No Campfires)" + }, + "4675321043": { + "district": "North Fork", + "campsite": "UPK - Upper Kintla Lake (No Campfires)" + }, + "4675321044": { + "district": "St. Mary", + "campsite": "ATL - Atlantic Creek (No Campfires)" + }, + "4675321045": { + "district": "St. Mary", + "campsite": "GUN - Gunsight Lake (No Campfires)" + }, + "4675321046": { + "district": "St. Mary", + "campsite": "MOR - Morning Star Lake (No Campfires)" + }, + "4675321047": { + "district": "St. Mary", + "campsite": "OTO - Otokomi Lake (No Campfires)" + }, + "4675321048": { + "district": "St. Mary", + "campsite": "REF - Red Eagle Lake Foot" + }, + "4675321049": { + "district": "St. Mary", + "campsite": "REH - Red Eagle Lake Head" + }, + "4675321050": { + "district": "St. Mary", + "campsite": "REY - Reynolds Creek" + }, + "4675321051": { + "district": "Two Medicine", + "campsite": "COB - Cobalt Lake (No Campfires)" + }, + "4675321052": { + "district": "Two Medicine", + "campsite": "NON - No Name Lake (No Campfires)" + }, + "4675321053": { + "district": "Two Medicine", + "campsite": "OLD - Oldman Lake (No Campfires)" + }, + "4675321054": { + "district": "Two Medicine", + "campsite": "TMC - Two Medicine" + }, + "4675321055": { + "district": "Two Medicine", + "campsite": "UPT - Upper Two Medicine Lake (No Campfires)" + }, + "4675321056": { + "district": "Walton", + "campsite": "BEA - Beaver Woman Lake" + }, + "4675321057": { + "district": "Walton", + "campsite": "COA - Coal Creek" + }, + "4675321058": { + "district": "Walton", + "campsite": "HAR - Harrison Lake" + }, + "4675321059": { + "district": "Walton", + "campsite": "ISA - Lake Isabel" + }, + "4675321060": { + "district": "Walton", + "campsite": "LNY - Lower Nyack" + }, + "4675321061": { + "district": "Walton", + "campsite": "OLC - Ole Creek" + }, + "4675321062": { + "district": "Walton", + "campsite": "OLL - Ole Lake" + }, + "4675321063": { + "district": "Walton", + "campsite": "PAR - Park Creek" + }, + "4675321064": { + "district": "Walton", + "campsite": "UPP - Upper Park Creek" + }, + "4675321065": { + "district": "Walton", + "campsite": "UPN - Upper Nyack" + }, + "4675321082": { + "district": "Lake McDonald", + "campsite": "GPC - Granite Park Chalet" + }, + "4675321094": { + "district": "Lake McDonald", + "campsite": "SPC - Sperry Chalet" + } +} diff --git a/data/finished/.gitkeep b/data/finished/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/data/finished/notifications-1681081504.json b/data/finished/notifications-1681081504.json new file mode 100644 index 00000000..cef7532c --- /dev/null +++ b/data/finished/notifications-1681081504.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 1, "total": 6}, "2023-07-26": {"remaining": 2, "total": 6}, "2023-07-27": {"remaining": 4, "total": 6}, "2023-07-28": {"remaining": 4, "total": 6}, "2023-07-29": {"remaining": 4, "total": 6}, "2023-07-30": {"remaining": 4, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-26": {"remaining": 2, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681092935.json b/data/finished/notifications-1681092935.json new file mode 100644 index 00000000..e9426dfe --- /dev/null +++ b/data/finished/notifications-1681092935.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-26": {"remaining": 2, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681093906.json b/data/finished/notifications-1681093906.json new file mode 100644 index 00000000..cef7532c --- /dev/null +++ b/data/finished/notifications-1681093906.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 1, "total": 6}, "2023-07-26": {"remaining": 2, "total": 6}, "2023-07-27": {"remaining": 4, "total": 6}, "2023-07-28": {"remaining": 4, "total": 6}, "2023-07-29": {"remaining": 4, "total": 6}, "2023-07-30": {"remaining": 4, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-26": {"remaining": 2, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681094391.json b/data/finished/notifications-1681094391.json new file mode 100644 index 00000000..7652c276 --- /dev/null +++ b/data/finished/notifications-1681094391.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {}} \ No newline at end of file diff --git a/data/finished/notifications-1681094945.json b/data/finished/notifications-1681094945.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681094945.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681095258.json b/data/finished/notifications-1681095258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681095258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681102439.json b/data/finished/notifications-1681102439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681102439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681131322.json b/data/finished/notifications-1681131322.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681131322.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681177681.json b/data/finished/notifications-1681177681.json new file mode 100644 index 00000000..d5fc83bd --- /dev/null +++ b/data/finished/notifications-1681177681.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-25": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681177921.json b/data/finished/notifications-1681177921.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681177921.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681178171.json b/data/finished/notifications-1681178171.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681178171.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681179037.json b/data/finished/notifications-1681179037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681179037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681217820.json b/data/finished/notifications-1681217820.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681217820.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681240785.json b/data/finished/notifications-1681240785.json new file mode 100644 index 00000000..1606960a --- /dev/null +++ b/data/finished/notifications-1681240785.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 4}}}, "zoekmcdonald@gmail.com": {"GPC - Granite Park Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}}, "QUA - Quartz Lake (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 1, "total": 2}}, "MAN - Many Glacier": {"2023-07-03": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681242779.json b/data/finished/notifications-1681242779.json new file mode 100644 index 00000000..764873df --- /dev/null +++ b/data/finished/notifications-1681242779.json @@ -0,0 +1 @@ +{"leemc@hey.com": {"JAN - Lake Janet": {"2023-07-20": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}}, "OLL - Ole Lake": {"2023-07-18": {"remaining": 2, "total": 2}, "2023-07-19": {"remaining": 2, "total": 2}, "2023-07-20": {"remaining": 2, "total": 2}, "2023-07-22": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681253041.json b/data/finished/notifications-1681253041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681253041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681271930.json b/data/finished/notifications-1681271930.json new file mode 100644 index 00000000..fc921b72 --- /dev/null +++ b/data/finished/notifications-1681271930.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GPC - Granite Park Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-07": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-18": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-26": {"remaining": 1, "total": 1}, "2023-07-27": {"remaining": 1, "total": 1}, "2023-07-28": {"remaining": 1, "total": 1}, "2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "SPC - Sperry Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-07": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-18": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-26": {"remaining": 1, "total": 1}, "2023-07-27": {"remaining": 1, "total": 1}, "2023-07-28": {"remaining": 1, "total": 1}, "2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "REF - Red Eagle Lake Foot": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-16": {"remaining": 3, "total": 3}, "2023-07-18": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681272364.json b/data/finished/notifications-1681272364.json new file mode 100644 index 00000000..060ce369 --- /dev/null +++ b/data/finished/notifications-1681272364.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GPC - Granite Park Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-07": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-18": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-26": {"remaining": 1, "total": 1}, "2023-07-27": {"remaining": 1, "total": 1}, "2023-07-28": {"remaining": 1, "total": 1}, "2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "SPC - Sperry Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-07": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-18": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-26": {"remaining": 1, "total": 1}, "2023-07-27": {"remaining": 1, "total": 1}, "2023-07-28": {"remaining": 1, "total": 1}, "2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "REF - Red Eagle Lake Foot": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-16": {"remaining": 3, "total": 3}, "2023-07-18": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 2, "total": 2}, "2023-07-08": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 1, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 1, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-13": {"remaining": 1, "total": 2}, "2023-07-14": {"remaining": 1, "total": 2}, "2023-07-15": {"remaining": 2, "total": 2}, "2023-07-17": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 1, "total": 2}, "2023-07-19": {"remaining": 1, "total": 2}, "2023-07-21": {"remaining": 1, "total": 2}, "2023-07-22": {"remaining": 1, "total": 2}, "2023-07-23": {"remaining": 2, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}, "2023-07-25": {"remaining": 1, "total": 2}, "2023-07-27": {"remaining": 1, "total": 2}, "2023-07-28": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "FRA - Lake Francis (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 1}}, "GOA - Goat Haunt Shelters": {"2023-07-01": {"remaining": 1, "total": 6}, "2023-07-02": {"remaining": 2, "total": 6}, "2023-07-03": {"remaining": 4, "total": 6}, "2023-07-04": {"remaining": 6, "total": 6}, "2023-07-05": {"remaining": 6, "total": 6}, "2023-07-06": {"remaining": 6, "total": 6}, "2023-07-07": {"remaining": 5, "total": 6}, "2023-07-08": {"remaining": 5, "total": 6}, "2023-07-09": {"remaining": 6, "total": 6}, "2023-07-10": {"remaining": 5, "total": 6}, "2023-07-11": {"remaining": 3, "total": 6}, "2023-07-12": {"remaining": 4, "total": 6}, "2023-07-13": {"remaining": 5, "total": 6}, "2023-07-14": {"remaining": 5, "total": 6}, "2023-07-15": {"remaining": 4, "total": 6}, "2023-07-16": {"remaining": 2, "total": 6}, "2023-07-17": {"remaining": 5, "total": 6}, "2023-07-18": {"remaining": 4, "total": 6}, "2023-07-19": {"remaining": 5, "total": 6}, "2023-07-21": {"remaining": 3, "total": 6}, "2023-07-22": {"remaining": 3, "total": 6}, "2023-07-24": {"remaining": 2, "total": 6}, "2023-07-25": {"remaining": 1, "total": 6}, "2023-07-26": {"remaining": 2, "total": 6}, "2023-07-27": {"remaining": 4, "total": 6}, "2023-07-28": {"remaining": 4, "total": 6}, "2023-07-29": {"remaining": 4, "total": 6}, "2023-07-30": {"remaining": 4, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 2}, "2023-07-10": {"remaining": 1, "total": 2}, "2023-07-17": {"remaining": 1, "total": 2}, "2023-07-21": {"remaining": 1, "total": 2}, "2023-07-23": {"remaining": 2, "total": 2}, "2023-07-30": {"remaining": 1, "total": 2}}, "JAN - Lake Janet": {"2023-07-04": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-03": {"remaining": 1, "total": 3}, "2023-07-05": {"remaining": 2, "total": 3}, "2023-07-06": {"remaining": 3, "total": 3}, "2023-07-09": {"remaining": 2, "total": 3}, "2023-07-13": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-01": {"remaining": 2, "total": 4}, "2023-07-02": {"remaining": 1, "total": 4}, "2023-07-03": {"remaining": 3, "total": 4}, "2023-07-04": {"remaining": 2, "total": 4}, "2023-07-05": {"remaining": 3, "total": 4}, "2023-07-06": {"remaining": 4, "total": 4}, "2023-07-08": {"remaining": 1, "total": 4}, "2023-07-09": {"remaining": 3, "total": 4}, "2023-07-10": {"remaining": 3, "total": 4}, "2023-07-11": {"remaining": 1, "total": 4}, "2023-07-12": {"remaining": 3, "total": 4}, "2023-07-13": {"remaining": 2, "total": 4}, "2023-07-14": {"remaining": 2, "total": 4}, "2023-07-16": {"remaining": 3, "total": 4}, "2023-07-17": {"remaining": 1, "total": 4}, "2023-07-18": {"remaining": 3, "total": 4}, "2023-07-19": {"remaining": 3, "total": 4}, "2023-07-21": {"remaining": 2, "total": 4}, "2023-07-22": {"remaining": 1, "total": 4}, "2023-07-24": {"remaining": 1, "total": 4}, "2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}, "2023-07-23": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 4}, "2023-07-04": {"remaining": 1, "total": 4}, "2023-07-09": {"remaining": 2, "total": 4}, "2023-07-10": {"remaining": 1, "total": 4}, "2023-07-12": {"remaining": 1, "total": 4}, "2023-07-25": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}, "2023-07-09": {"remaining": 1, "total": 3}}, "HEL - Helen Lake (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 1}}, "SLI - Slide Lake": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 1, "total": 2}, "2023-07-05": {"remaining": 2, "total": 2}, "2023-07-06": {"remaining": 1, "total": 2}, "2023-07-07": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 2, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 2, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-05": {"remaining": 4, "total": 5}, "2023-07-10": {"remaining": 1, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}, "2023-07-13": {"remaining": 3, "total": 5}, "2023-07-14": {"remaining": 1, "total": 5}, "2023-07-15": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 1, "total": 5}, "2023-07-19": {"remaining": 1, "total": 5}, "2023-07-21": {"remaining": 1, "total": 5}, "2023-07-22": {"remaining": 1, "total": 5}, "2023-07-25": {"remaining": 1, "total": 5}, "2023-07-26": {"remaining": 2, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-03": {"remaining": 1, "total": 5}, "2023-07-07": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681272516.json b/data/finished/notifications-1681272516.json new file mode 100644 index 00000000..060ce369 --- /dev/null +++ b/data/finished/notifications-1681272516.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GPC - Granite Park Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-07": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-18": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-26": {"remaining": 1, "total": 1}, "2023-07-27": {"remaining": 1, "total": 1}, "2023-07-28": {"remaining": 1, "total": 1}, "2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "SPC - Sperry Chalet": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-07": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-18": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-26": {"remaining": 1, "total": 1}, "2023-07-27": {"remaining": 1, "total": 1}, "2023-07-28": {"remaining": 1, "total": 1}, "2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "REF - Red Eagle Lake Foot": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-16": {"remaining": 3, "total": 3}, "2023-07-18": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 2, "total": 2}, "2023-07-08": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 1, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 1, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-13": {"remaining": 1, "total": 2}, "2023-07-14": {"remaining": 1, "total": 2}, "2023-07-15": {"remaining": 2, "total": 2}, "2023-07-17": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 1, "total": 2}, "2023-07-19": {"remaining": 1, "total": 2}, "2023-07-21": {"remaining": 1, "total": 2}, "2023-07-22": {"remaining": 1, "total": 2}, "2023-07-23": {"remaining": 2, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}, "2023-07-25": {"remaining": 1, "total": 2}, "2023-07-27": {"remaining": 1, "total": 2}, "2023-07-28": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "FRA - Lake Francis (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 1}}, "GOA - Goat Haunt Shelters": {"2023-07-01": {"remaining": 1, "total": 6}, "2023-07-02": {"remaining": 2, "total": 6}, "2023-07-03": {"remaining": 4, "total": 6}, "2023-07-04": {"remaining": 6, "total": 6}, "2023-07-05": {"remaining": 6, "total": 6}, "2023-07-06": {"remaining": 6, "total": 6}, "2023-07-07": {"remaining": 5, "total": 6}, "2023-07-08": {"remaining": 5, "total": 6}, "2023-07-09": {"remaining": 6, "total": 6}, "2023-07-10": {"remaining": 5, "total": 6}, "2023-07-11": {"remaining": 3, "total": 6}, "2023-07-12": {"remaining": 4, "total": 6}, "2023-07-13": {"remaining": 5, "total": 6}, "2023-07-14": {"remaining": 5, "total": 6}, "2023-07-15": {"remaining": 4, "total": 6}, "2023-07-16": {"remaining": 2, "total": 6}, "2023-07-17": {"remaining": 5, "total": 6}, "2023-07-18": {"remaining": 4, "total": 6}, "2023-07-19": {"remaining": 5, "total": 6}, "2023-07-21": {"remaining": 3, "total": 6}, "2023-07-22": {"remaining": 3, "total": 6}, "2023-07-24": {"remaining": 2, "total": 6}, "2023-07-25": {"remaining": 1, "total": 6}, "2023-07-26": {"remaining": 2, "total": 6}, "2023-07-27": {"remaining": 4, "total": 6}, "2023-07-28": {"remaining": 4, "total": 6}, "2023-07-29": {"remaining": 4, "total": 6}, "2023-07-30": {"remaining": 4, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 2}, "2023-07-10": {"remaining": 1, "total": 2}, "2023-07-17": {"remaining": 1, "total": 2}, "2023-07-21": {"remaining": 1, "total": 2}, "2023-07-23": {"remaining": 2, "total": 2}, "2023-07-30": {"remaining": 1, "total": 2}}, "JAN - Lake Janet": {"2023-07-04": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-03": {"remaining": 1, "total": 3}, "2023-07-05": {"remaining": 2, "total": 3}, "2023-07-06": {"remaining": 3, "total": 3}, "2023-07-09": {"remaining": 2, "total": 3}, "2023-07-13": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-01": {"remaining": 2, "total": 4}, "2023-07-02": {"remaining": 1, "total": 4}, "2023-07-03": {"remaining": 3, "total": 4}, "2023-07-04": {"remaining": 2, "total": 4}, "2023-07-05": {"remaining": 3, "total": 4}, "2023-07-06": {"remaining": 4, "total": 4}, "2023-07-08": {"remaining": 1, "total": 4}, "2023-07-09": {"remaining": 3, "total": 4}, "2023-07-10": {"remaining": 3, "total": 4}, "2023-07-11": {"remaining": 1, "total": 4}, "2023-07-12": {"remaining": 3, "total": 4}, "2023-07-13": {"remaining": 2, "total": 4}, "2023-07-14": {"remaining": 2, "total": 4}, "2023-07-16": {"remaining": 3, "total": 4}, "2023-07-17": {"remaining": 1, "total": 4}, "2023-07-18": {"remaining": 3, "total": 4}, "2023-07-19": {"remaining": 3, "total": 4}, "2023-07-21": {"remaining": 2, "total": 4}, "2023-07-22": {"remaining": 1, "total": 4}, "2023-07-24": {"remaining": 1, "total": 4}, "2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}, "2023-07-23": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 4}, "2023-07-04": {"remaining": 1, "total": 4}, "2023-07-09": {"remaining": 2, "total": 4}, "2023-07-10": {"remaining": 1, "total": 4}, "2023-07-12": {"remaining": 1, "total": 4}, "2023-07-25": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}, "2023-07-09": {"remaining": 1, "total": 3}}, "HEL - Helen Lake (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 1}}, "SLI - Slide Lake": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 1, "total": 2}, "2023-07-05": {"remaining": 2, "total": 2}, "2023-07-06": {"remaining": 1, "total": 2}, "2023-07-07": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 2, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 2, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-05": {"remaining": 4, "total": 5}, "2023-07-10": {"remaining": 1, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}, "2023-07-13": {"remaining": 3, "total": 5}, "2023-07-14": {"remaining": 1, "total": 5}, "2023-07-15": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 1, "total": 5}, "2023-07-19": {"remaining": 1, "total": 5}, "2023-07-21": {"remaining": 1, "total": 5}, "2023-07-22": {"remaining": 1, "total": 5}, "2023-07-25": {"remaining": 1, "total": 5}, "2023-07-26": {"remaining": 2, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-03": {"remaining": 1, "total": 5}, "2023-07-07": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681304220.json b/data/finished/notifications-1681304220.json new file mode 100644 index 00000000..c64ec8e3 --- /dev/null +++ b/data/finished/notifications-1681304220.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-30": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681339450.json b/data/finished/notifications-1681339450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681339450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681347092.json b/data/finished/notifications-1681347092.json new file mode 100644 index 00000000..f6e7436a --- /dev/null +++ b/data/finished/notifications-1681347092.json @@ -0,0 +1 @@ +{"kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-26": {"remaining": 2, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681354427.json b/data/finished/notifications-1681354427.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681354427.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681390658.json b/data/finished/notifications-1681390658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681390658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681425843.json b/data/finished/notifications-1681425843.json new file mode 100644 index 00000000..07739fb8 --- /dev/null +++ b/data/finished/notifications-1681425843.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-22": {"remaining": 1, "total": 2}}, "SLI - Slide Lake": {"2023-07-11": {"remaining": 1, "total": 2}, "2023-07-12": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681476956.json b/data/finished/notifications-1681476956.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681476956.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681512245.json b/data/finished/notifications-1681512245.json new file mode 100644 index 00000000..dda8b03e --- /dev/null +++ b/data/finished/notifications-1681512245.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-21": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681563258.json b/data/finished/notifications-1681563258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681563258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681598639.json b/data/finished/notifications-1681598639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681598639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681649642.json b/data/finished/notifications-1681649642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681649642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681685054.json b/data/finished/notifications-1681685054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681685054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681736230.json b/data/finished/notifications-1681736230.json new file mode 100644 index 00000000..30ad258f --- /dev/null +++ b/data/finished/notifications-1681736230.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-09": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681771437.json b/data/finished/notifications-1681771437.json new file mode 100644 index 00000000..c3e3cb5d --- /dev/null +++ b/data/finished/notifications-1681771437.json @@ -0,0 +1 @@ +{"leemc@hey.com": {"OLL - Ole Lake": {"2023-07-22": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681822652.json b/data/finished/notifications-1681822652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681822652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681857845.json b/data/finished/notifications-1681857845.json new file mode 100644 index 00000000..9410d910 --- /dev/null +++ b/data/finished/notifications-1681857845.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 1}}, "GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 1, "total": 6}, "2023-07-25": {"remaining": 2, "total": 6}, "2023-07-28": {"remaining": 5, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-27": {"remaining": 2, "total": 2}}, "WAT - Waterton River": {"2023-07-24": {"remaining": 3, "total": 4}, "2023-07-25": {"remaining": 2, "total": 4}, "2023-07-26": {"remaining": 3, "total": 4}, "2023-07-28": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1681909009.json b/data/finished/notifications-1681909009.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681909009.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681944260.json b/data/finished/notifications-1681944260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1681944260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1681995379.json b/data/finished/notifications-1681995379.json new file mode 100644 index 00000000..1fb80dc9 --- /dev/null +++ b/data/finished/notifications-1681995379.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-25": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682030651.json b/data/finished/notifications-1682030651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682030651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682081740.json b/data/finished/notifications-1682081740.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682081740.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682117033.json b/data/finished/notifications-1682117033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682117033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682168056.json b/data/finished/notifications-1682168056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682168056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682203440.json b/data/finished/notifications-1682203440.json new file mode 100644 index 00000000..3a320681 --- /dev/null +++ b/data/finished/notifications-1682203440.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-05": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682254471.json b/data/finished/notifications-1682254471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682254471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682289844.json b/data/finished/notifications-1682289844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682289844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682340980.json b/data/finished/notifications-1682340980.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682340980.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682390659.json b/data/finished/notifications-1682390659.json new file mode 100644 index 00000000..8ddbd4a6 --- /dev/null +++ b/data/finished/notifications-1682390659.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-26": {"remaining": 2, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-10": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-16": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682427398.json b/data/finished/notifications-1682427398.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682427398.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682462647.json b/data/finished/notifications-1682462647.json new file mode 100644 index 00000000..c7297936 --- /dev/null +++ b/data/finished/notifications-1682462647.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-30": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682513796.json b/data/finished/notifications-1682513796.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682513796.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682549053.json b/data/finished/notifications-1682549053.json new file mode 100644 index 00000000..9b8aedf6 --- /dev/null +++ b/data/finished/notifications-1682549053.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 2}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 1}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}, "SLI - Slide Lake": {"2023-07-24": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682600141.json b/data/finished/notifications-1682600141.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682600141.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682635453.json b/data/finished/notifications-1682635453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682635453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682686477.json b/data/finished/notifications-1682686477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682686477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682721849.json b/data/finished/notifications-1682721849.json new file mode 100644 index 00000000..d0a6591a --- /dev/null +++ b/data/finished/notifications-1682721849.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-10": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682772793.json b/data/finished/notifications-1682772793.json new file mode 100644 index 00000000..c7b3a8a8 --- /dev/null +++ b/data/finished/notifications-1682772793.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1682808250.json b/data/finished/notifications-1682808250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682808250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682859181.json b/data/finished/notifications-1682859181.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682859181.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682894648.json b/data/finished/notifications-1682894648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682894648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682945696.json b/data/finished/notifications-1682945696.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1682945696.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1682981052.json b/data/finished/notifications-1682981052.json new file mode 100644 index 00000000..dd682b78 --- /dev/null +++ b/data/finished/notifications-1682981052.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-09": {"remaining": 1, "total": 2}, "2023-07-10": {"remaining": 1, "total": 2}}, "KIN - Kintla Lake": {"2023-07-13": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683032173.json b/data/finished/notifications-1683032173.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683032173.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683067473.json b/data/finished/notifications-1683067473.json new file mode 100644 index 00000000..587c0dd6 --- /dev/null +++ b/data/finished/notifications-1683067473.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-05": {"remaining": 3, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683127940.json b/data/finished/notifications-1683127940.json new file mode 100644 index 00000000..319112f0 --- /dev/null +++ b/data/finished/notifications-1683127940.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-29": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683174958.json b/data/finished/notifications-1683174958.json new file mode 100644 index 00000000..f9ac9506 --- /dev/null +++ b/data/finished/notifications-1683174958.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-09": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683204953.json b/data/finished/notifications-1683204953.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683204953.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683240251.json b/data/finished/notifications-1683240251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683240251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683291290.json b/data/finished/notifications-1683291290.json new file mode 100644 index 00000000..4ecb6fef --- /dev/null +++ b/data/finished/notifications-1683291290.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-14": {"remaining": 4, "total": 6}, "2023-07-15": {"remaining": 3, "total": 6}, "2023-07-16": {"remaining": 1, "total": 6}}, "JAN - Lake Janet": {"2023-07-13": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 4}, "2023-07-11": {"remaining": 1, "total": 4}}, "HEL - Helen Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 1}}, "BOW - Bowman Lake": {"2023-07-14": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683326660.json b/data/finished/notifications-1683326660.json new file mode 100644 index 00000000..4d700f06 --- /dev/null +++ b/data/finished/notifications-1683326660.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-18": {"remaining": 2, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}, "2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683377581.json b/data/finished/notifications-1683377581.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683377581.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683463978.json b/data/finished/notifications-1683463978.json new file mode 100644 index 00000000..1fd46652 --- /dev/null +++ b/data/finished/notifications-1683463978.json @@ -0,0 +1 @@ +{"zoekmcdonald@gmail.com": {"QUA - Quartz Lake (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683499438.json b/data/finished/notifications-1683499438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683499438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683550568.json b/data/finished/notifications-1683550568.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683550568.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683585831.json b/data/finished/notifications-1683585831.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683585831.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683640664.json b/data/finished/notifications-1683640664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683640664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683672268.json b/data/finished/notifications-1683672268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683672268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683727230.json b/data/finished/notifications-1683727230.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683727230.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683758637.json b/data/finished/notifications-1683758637.json new file mode 100644 index 00000000..929e3f37 --- /dev/null +++ b/data/finished/notifications-1683758637.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683809777.json b/data/finished/notifications-1683809777.json new file mode 100644 index 00000000..8cd7f553 --- /dev/null +++ b/data/finished/notifications-1683809777.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-28": {"remaining": 4, "total": 6}, "2023-07-29": {"remaining": 2, "total": 6}, "2023-07-30": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683845047.json b/data/finished/notifications-1683845047.json new file mode 100644 index 00000000..a34eb178 --- /dev/null +++ b/data/finished/notifications-1683845047.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-09": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1683896077.json b/data/finished/notifications-1683896077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683896077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683931453.json b/data/finished/notifications-1683931453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683931453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1683982383.json b/data/finished/notifications-1683982383.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1683982383.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684017827.json b/data/finished/notifications-1684017827.json new file mode 100644 index 00000000..3a4d4f8d --- /dev/null +++ b/data/finished/notifications-1684017827.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-02": {"remaining": 3, "total": 6}, "2023-07-12": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684068799.json b/data/finished/notifications-1684068799.json new file mode 100644 index 00000000..d914766c --- /dev/null +++ b/data/finished/notifications-1684068799.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-12": {"remaining": 1, "total": 6}, "2023-07-13": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684104253.json b/data/finished/notifications-1684104253.json new file mode 100644 index 00000000..4e9f8b35 --- /dev/null +++ b/data/finished/notifications-1684104253.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684155415.json b/data/finished/notifications-1684155415.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684155415.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684190635.json b/data/finished/notifications-1684190635.json new file mode 100644 index 00000000..f8115b97 --- /dev/null +++ b/data/finished/notifications-1684190635.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-29": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 3, "total": 4}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684241858.json b/data/finished/notifications-1684241858.json new file mode 100644 index 00000000..5995730a --- /dev/null +++ b/data/finished/notifications-1684241858.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-15": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684277060.json b/data/finished/notifications-1684277060.json new file mode 100644 index 00000000..ca55fa3f --- /dev/null +++ b/data/finished/notifications-1684277060.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-17": {"remaining": 4, "total": 6}}, "WAT - Waterton River": {"2023-07-18": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684328163.json b/data/finished/notifications-1684328163.json new file mode 100644 index 00000000..e269d79a --- /dev/null +++ b/data/finished/notifications-1684328163.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 3, "total": 6}, "2023-07-29": {"remaining": 1, "total": 6}, "2023-07-30": {"remaining": 1, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 4}}, "SLI - Slide Lake": {"2023-07-02": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684363437.json b/data/finished/notifications-1684363437.json new file mode 100644 index 00000000..66a5ee5f --- /dev/null +++ b/data/finished/notifications-1684363437.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-19": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684418739.json b/data/finished/notifications-1684418739.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684418739.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684468977.json b/data/finished/notifications-1684468977.json new file mode 100644 index 00000000..def32179 --- /dev/null +++ b/data/finished/notifications-1684468977.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-06": {"remaining": 5, "total": 6}, "2023-07-07": {"remaining": 4, "total": 6}, "2023-07-08": {"remaining": 4, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684500884.json b/data/finished/notifications-1684500884.json new file mode 100644 index 00000000..f2086e13 --- /dev/null +++ b/data/finished/notifications-1684500884.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-14": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684536248.json b/data/finished/notifications-1684536248.json new file mode 100644 index 00000000..45765e34 --- /dev/null +++ b/data/finished/notifications-1684536248.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684587185.json b/data/finished/notifications-1684587185.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684587185.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684622646.json b/data/finished/notifications-1684622646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684622646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684673606.json b/data/finished/notifications-1684673606.json new file mode 100644 index 00000000..423d83cd --- /dev/null +++ b/data/finished/notifications-1684673606.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-25": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-15": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684760144.json b/data/finished/notifications-1684760144.json new file mode 100644 index 00000000..1e06ee96 --- /dev/null +++ b/data/finished/notifications-1684760144.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-21": {"remaining": 2, "total": 6}, "2023-07-29": {"remaining": 2, "total": 6}, "2023-07-30": {"remaining": 2, "total": 6}}, "KIN - Kintla Lake": {"2023-07-26": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-26": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684795443.json b/data/finished/notifications-1684795443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684795443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684846564.json b/data/finished/notifications-1684846564.json new file mode 100644 index 00000000..796c9076 --- /dev/null +++ b/data/finished/notifications-1684846564.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-16": {"remaining": 1, "total": 6}}, "WAT - Waterton River": {"2023-07-01": {"remaining": 1, "total": 4}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}, "COS - Cosley Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684877012.json b/data/finished/notifications-1684877012.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684877012.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684878072.json b/data/finished/notifications-1684878072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684878072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684881691.json b/data/finished/notifications-1684881691.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684881691.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684885295.json b/data/finished/notifications-1684885295.json new file mode 100644 index 00000000..8a38098c --- /dev/null +++ b/data/finished/notifications-1684885295.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 2, "total": 6}}, "JAN - Lake Janet": {"2023-07-22": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-24": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-21": {"remaining": 1, "total": 5}}}, "leemc@hey.com": {"JAN - Lake Janet": {"2023-07-22": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684893372.json b/data/finished/notifications-1684893372.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684893372.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684896526.json b/data/finished/notifications-1684896526.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684896526.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684899681.json b/data/finished/notifications-1684899681.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684899681.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684903299.json b/data/finished/notifications-1684903299.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684903299.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684906889.json b/data/finished/notifications-1684906889.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684906889.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684910465.json b/data/finished/notifications-1684910465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684910465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684914079.json b/data/finished/notifications-1684914079.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684914079.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684917691.json b/data/finished/notifications-1684917691.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684917691.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684921290.json b/data/finished/notifications-1684921290.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684921290.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684924867.json b/data/finished/notifications-1684924867.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684924867.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684928463.json b/data/finished/notifications-1684928463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684928463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684932884.json b/data/finished/notifications-1684932884.json new file mode 100644 index 00000000..4d98ee61 --- /dev/null +++ b/data/finished/notifications-1684932884.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-14": {"remaining": 4, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1684935685.json b/data/finished/notifications-1684935685.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684935685.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684939294.json b/data/finished/notifications-1684939294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684939294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684942884.json b/data/finished/notifications-1684942884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684942884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684946549.json b/data/finished/notifications-1684946549.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684946549.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684950094.json b/data/finished/notifications-1684950094.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684950094.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684953680.json b/data/finished/notifications-1684953680.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684953680.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684957278.json b/data/finished/notifications-1684957278.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684957278.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684964481.json b/data/finished/notifications-1684964481.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684964481.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684979454.json b/data/finished/notifications-1684979454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684979454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684982823.json b/data/finished/notifications-1684982823.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684982823.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684986076.json b/data/finished/notifications-1684986076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684986076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684989687.json b/data/finished/notifications-1684989687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684989687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684993282.json b/data/finished/notifications-1684993282.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684993282.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1684996875.json b/data/finished/notifications-1684996875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1684996875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685000485.json b/data/finished/notifications-1685000485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685000485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685004077.json b/data/finished/notifications-1685004077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685004077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685007663.json b/data/finished/notifications-1685007663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685007663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685011287.json b/data/finished/notifications-1685011287.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685011287.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685014866.json b/data/finished/notifications-1685014866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685014866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685019347.json b/data/finished/notifications-1685019347.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685019347.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685022069.json b/data/finished/notifications-1685022069.json new file mode 100644 index 00000000..1198f16c --- /dev/null +++ b/data/finished/notifications-1685022069.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685025673.json b/data/finished/notifications-1685025673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685025673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685029269.json b/data/finished/notifications-1685029269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685029269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685032882.json b/data/finished/notifications-1685032882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685032882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685036479.json b/data/finished/notifications-1685036479.json new file mode 100644 index 00000000..f272f9f8 --- /dev/null +++ b/data/finished/notifications-1685036479.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685040097.json b/data/finished/notifications-1685040097.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685040097.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685043674.json b/data/finished/notifications-1685043674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685043674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685047284.json b/data/finished/notifications-1685047284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685047284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685050882.json b/data/finished/notifications-1685050882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685050882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685054466.json b/data/finished/notifications-1685054466.json new file mode 100644 index 00000000..8e0d31ea --- /dev/null +++ b/data/finished/notifications-1685054466.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685058067.json b/data/finished/notifications-1685058067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685058067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685065897.json b/data/finished/notifications-1685065897.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685065897.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685069208.json b/data/finished/notifications-1685069208.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685069208.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685076076.json b/data/finished/notifications-1685076076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685076076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685079675.json b/data/finished/notifications-1685079675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685079675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685083274.json b/data/finished/notifications-1685083274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685083274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685086875.json b/data/finished/notifications-1685086875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685086875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685090466.json b/data/finished/notifications-1685090466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685090466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685094068.json b/data/finished/notifications-1685094068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685094068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685097700.json b/data/finished/notifications-1685097700.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685097700.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685101294.json b/data/finished/notifications-1685101294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685101294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685105611.json b/data/finished/notifications-1685105611.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685105611.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685108489.json b/data/finished/notifications-1685108489.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685108489.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685112067.json b/data/finished/notifications-1685112067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685112067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685115678.json b/data/finished/notifications-1685115678.json new file mode 100644 index 00000000..4bd9d2f0 --- /dev/null +++ b/data/finished/notifications-1685115678.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685119653.json b/data/finished/notifications-1685119653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685119653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685122877.json b/data/finished/notifications-1685122877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685122877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685126482.json b/data/finished/notifications-1685126482.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685126482.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685130080.json b/data/finished/notifications-1685130080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685130080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685133696.json b/data/finished/notifications-1685133696.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685133696.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685137272.json b/data/finished/notifications-1685137272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685137272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685140886.json b/data/finished/notifications-1685140886.json new file mode 100644 index 00000000..1ae0738a --- /dev/null +++ b/data/finished/notifications-1685140886.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-18": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685144467.json b/data/finished/notifications-1685144467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685144467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685152199.json b/data/finished/notifications-1685152199.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685152199.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685155548.json b/data/finished/notifications-1685155548.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685155548.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685158883.json b/data/finished/notifications-1685158883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685158883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685162483.json b/data/finished/notifications-1685162483.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685162483.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685166080.json b/data/finished/notifications-1685166080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685166080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685169699.json b/data/finished/notifications-1685169699.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685169699.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685173284.json b/data/finished/notifications-1685173284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685173284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685176876.json b/data/finished/notifications-1685176876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685176876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685180469.json b/data/finished/notifications-1685180469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685180469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685184084.json b/data/finished/notifications-1685184084.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685184084.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685187660.json b/data/finished/notifications-1685187660.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685187660.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685191911.json b/data/finished/notifications-1685191911.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685191911.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685194884.json b/data/finished/notifications-1685194884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685194884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685198489.json b/data/finished/notifications-1685198489.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685198489.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685202088.json b/data/finished/notifications-1685202088.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685202088.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685205691.json b/data/finished/notifications-1685205691.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685205691.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685209287.json b/data/finished/notifications-1685209287.json new file mode 100644 index 00000000..54310891 --- /dev/null +++ b/data/finished/notifications-1685209287.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685212875.json b/data/finished/notifications-1685212875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685212875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685216481.json b/data/finished/notifications-1685216481.json new file mode 100644 index 00000000..9435d909 --- /dev/null +++ b/data/finished/notifications-1685216481.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-16": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685220088.json b/data/finished/notifications-1685220088.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685220088.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685223671.json b/data/finished/notifications-1685223671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685223671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685227274.json b/data/finished/notifications-1685227274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685227274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685230877.json b/data/finished/notifications-1685230877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685230877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685239549.json b/data/finished/notifications-1685239549.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685239549.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685242459.json b/data/finished/notifications-1685242459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685242459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685245303.json b/data/finished/notifications-1685245303.json new file mode 100644 index 00000000..3165e614 --- /dev/null +++ b/data/finished/notifications-1685245303.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685248870.json b/data/finished/notifications-1685248870.json new file mode 100644 index 00000000..5f135720 --- /dev/null +++ b/data/finished/notifications-1685248870.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685252489.json b/data/finished/notifications-1685252489.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685252489.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685256089.json b/data/finished/notifications-1685256089.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685256089.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685259665.json b/data/finished/notifications-1685259665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685259665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685263271.json b/data/finished/notifications-1685263271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685263271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685266886.json b/data/finished/notifications-1685266886.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685266886.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685270475.json b/data/finished/notifications-1685270475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685270475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685274068.json b/data/finished/notifications-1685274068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685274068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685278293.json b/data/finished/notifications-1685278293.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685278293.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685281287.json b/data/finished/notifications-1685281287.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685281287.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685284881.json b/data/finished/notifications-1685284881.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685284881.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685288478.json b/data/finished/notifications-1685288478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685288478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685292077.json b/data/finished/notifications-1685292077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685292077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685295690.json b/data/finished/notifications-1685295690.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685295690.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685299311.json b/data/finished/notifications-1685299311.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685299311.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685302877.json b/data/finished/notifications-1685302877.json new file mode 100644 index 00000000..d06e2fb7 --- /dev/null +++ b/data/finished/notifications-1685302877.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 1}}, "COS - Cosley Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685306488.json b/data/finished/notifications-1685306488.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685306488.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685310077.json b/data/finished/notifications-1685310077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685310077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685313693.json b/data/finished/notifications-1685313693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685313693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685317288.json b/data/finished/notifications-1685317288.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685317288.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685325511.json b/data/finished/notifications-1685325511.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685325511.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685328632.json b/data/finished/notifications-1685328632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685328632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685331695.json b/data/finished/notifications-1685331695.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685331695.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685335267.json b/data/finished/notifications-1685335267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685335267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685338875.json b/data/finished/notifications-1685338875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685338875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685342472.json b/data/finished/notifications-1685342472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685342472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685346074.json b/data/finished/notifications-1685346074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685346074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685349682.json b/data/finished/notifications-1685349682.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685349682.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685353289.json b/data/finished/notifications-1685353289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685353289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685356870.json b/data/finished/notifications-1685356870.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685356870.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685360485.json b/data/finished/notifications-1685360485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685360485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685364848.json b/data/finished/notifications-1685364848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685364848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685367674.json b/data/finished/notifications-1685367674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685367674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685371290.json b/data/finished/notifications-1685371290.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685371290.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685374892.json b/data/finished/notifications-1685374892.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685374892.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685378495.json b/data/finished/notifications-1685378495.json new file mode 100644 index 00000000..ebd4a19c --- /dev/null +++ b/data/finished/notifications-1685378495.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-03": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-04": {"remaining": 1, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-07": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}}, "zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685382072.json b/data/finished/notifications-1685382072.json new file mode 100644 index 00000000..04719589 --- /dev/null +++ b/data/finished/notifications-1685382072.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-07": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-06": {"remaining": 2, "total": 2}}, "GAB - Gable Creek (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685385694.json b/data/finished/notifications-1685385694.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685385694.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685389284.json b/data/finished/notifications-1685389284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685389284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685392879.json b/data/finished/notifications-1685392879.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685392879.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685396463.json b/data/finished/notifications-1685396463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685396463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685400093.json b/data/finished/notifications-1685400093.json new file mode 100644 index 00000000..c3e3cb5d --- /dev/null +++ b/data/finished/notifications-1685400093.json @@ -0,0 +1 @@ +{"leemc@hey.com": {"OLL - Ole Lake": {"2023-07-22": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685403667.json b/data/finished/notifications-1685403667.json new file mode 100644 index 00000000..b5aaf7b0 --- /dev/null +++ b/data/finished/notifications-1685403667.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 2, "total": 2}, "2023-07-04": {"remaining": 2, "total": 2}, "2023-07-05": {"remaining": 2, "total": 2}, "2023-07-06": {"remaining": 2, "total": 2}, "2023-07-07": {"remaining": 2, "total": 2}, "2023-07-08": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 2, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-13": {"remaining": 2, "total": 2}, "2023-07-14": {"remaining": 2, "total": 2}}, "BOW - Bowman Lake": {"2023-07-19": {"remaining": 1, "total": 5}, "2023-07-21": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685411862.json b/data/finished/notifications-1685411862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685411862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685414999.json b/data/finished/notifications-1685414999.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685414999.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685418067.json b/data/finished/notifications-1685418067.json new file mode 100644 index 00000000..3938f386 --- /dev/null +++ b/data/finished/notifications-1685418067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 2}}, "COS - Cosley Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685421699.json b/data/finished/notifications-1685421699.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685421699.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685425281.json b/data/finished/notifications-1685425281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685425281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685428875.json b/data/finished/notifications-1685428875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685428875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685432476.json b/data/finished/notifications-1685432476.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685432476.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685436110.json b/data/finished/notifications-1685436110.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685436110.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685439675.json b/data/finished/notifications-1685439675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685439675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685443286.json b/data/finished/notifications-1685443286.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685443286.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685446863.json b/data/finished/notifications-1685446863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685446863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685451368.json b/data/finished/notifications-1685451368.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685451368.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685454067.json b/data/finished/notifications-1685454067.json new file mode 100644 index 00000000..1198f16c --- /dev/null +++ b/data/finished/notifications-1685454067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685457684.json b/data/finished/notifications-1685457684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685457684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685461297.json b/data/finished/notifications-1685461297.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685461297.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685464868.json b/data/finished/notifications-1685464868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685464868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685468502.json b/data/finished/notifications-1685468502.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685468502.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685472089.json b/data/finished/notifications-1685472089.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685472089.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685475667.json b/data/finished/notifications-1685475667.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685475667.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685479275.json b/data/finished/notifications-1685479275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685479275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685482889.json b/data/finished/notifications-1685482889.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685482889.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685486480.json b/data/finished/notifications-1685486480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685486480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685490076.json b/data/finished/notifications-1685490076.json new file mode 100644 index 00000000..9a81d803 --- /dev/null +++ b/data/finished/notifications-1685490076.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685499166.json b/data/finished/notifications-1685499166.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685499166.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685502261.json b/data/finished/notifications-1685502261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685502261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685504478.json b/data/finished/notifications-1685504478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685504478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685508077.json b/data/finished/notifications-1685508077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685508077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685511666.json b/data/finished/notifications-1685511666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685511666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685515265.json b/data/finished/notifications-1685515265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685515265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685518865.json b/data/finished/notifications-1685518865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685518865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685522465.json b/data/finished/notifications-1685522465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685522465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685526092.json b/data/finished/notifications-1685526092.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685526092.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685529677.json b/data/finished/notifications-1685529677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685529677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685533265.json b/data/finished/notifications-1685533265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685533265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685537794.json b/data/finished/notifications-1685537794.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685537794.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685540486.json b/data/finished/notifications-1685540486.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685540486.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685544068.json b/data/finished/notifications-1685544068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685544068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685547663.json b/data/finished/notifications-1685547663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685547663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685551317.json b/data/finished/notifications-1685551317.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685551317.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685554888.json b/data/finished/notifications-1685554888.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685554888.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685558491.json b/data/finished/notifications-1685558491.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685558491.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685562081.json b/data/finished/notifications-1685562081.json new file mode 100644 index 00000000..e1cc85a1 --- /dev/null +++ b/data/finished/notifications-1685562081.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}, "2023-07-12": {"remaining": 1, "total": 2}, "2023-07-13": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685565685.json b/data/finished/notifications-1685565685.json new file mode 100644 index 00000000..6e213934 --- /dev/null +++ b/data/finished/notifications-1685565685.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"COS - Cosley Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685569285.json b/data/finished/notifications-1685569285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685569285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685572883.json b/data/finished/notifications-1685572883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685572883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685576463.json b/data/finished/notifications-1685576463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685576463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685586760.json b/data/finished/notifications-1685586760.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685586760.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685589709.json b/data/finished/notifications-1685589709.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685589709.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685591055.json b/data/finished/notifications-1685591055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685591055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685594499.json b/data/finished/notifications-1685594499.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685594499.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685598063.json b/data/finished/notifications-1685598063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685598063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685601684.json b/data/finished/notifications-1685601684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685601684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685605294.json b/data/finished/notifications-1685605294.json new file mode 100644 index 00000000..17f6de1a --- /dev/null +++ b/data/finished/notifications-1685605294.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}, "2023-07-02": {"remaining": 1, "total": 2}, "2023-07-03": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685608881.json b/data/finished/notifications-1685608881.json new file mode 100644 index 00000000..b05b294f --- /dev/null +++ b/data/finished/notifications-1685608881.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685612469.json b/data/finished/notifications-1685612469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685612469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685616063.json b/data/finished/notifications-1685616063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685616063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685619690.json b/data/finished/notifications-1685619690.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685619690.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685624187.json b/data/finished/notifications-1685624187.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685624187.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685626869.json b/data/finished/notifications-1685626869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685626869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685630486.json b/data/finished/notifications-1685630486.json new file mode 100644 index 00000000..c6db0a76 --- /dev/null +++ b/data/finished/notifications-1685630486.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-02": {"remaining": 1, "total": 3}, "2023-07-03": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685634077.json b/data/finished/notifications-1685634077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685634077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685637834.json b/data/finished/notifications-1685637834.json new file mode 100644 index 00000000..93558621 --- /dev/null +++ b/data/finished/notifications-1685637834.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685641295.json b/data/finished/notifications-1685641295.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685641295.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685644880.json b/data/finished/notifications-1685644880.json new file mode 100644 index 00000000..692e5e14 --- /dev/null +++ b/data/finished/notifications-1685644880.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685648482.json b/data/finished/notifications-1685648482.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685648482.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685652071.json b/data/finished/notifications-1685652071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685652071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685655677.json b/data/finished/notifications-1685655677.json new file mode 100644 index 00000000..96cb4726 --- /dev/null +++ b/data/finished/notifications-1685655677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685659274.json b/data/finished/notifications-1685659274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685659274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685662906.json b/data/finished/notifications-1685662906.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685662906.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685671908.json b/data/finished/notifications-1685671908.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685671908.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685674822.json b/data/finished/notifications-1685674822.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685674822.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685677269.json b/data/finished/notifications-1685677269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685677269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685680871.json b/data/finished/notifications-1685680871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685680871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685684480.json b/data/finished/notifications-1685684480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685684480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685688102.json b/data/finished/notifications-1685688102.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685688102.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685691673.json b/data/finished/notifications-1685691673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685691673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685695273.json b/data/finished/notifications-1685695273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685695273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685698875.json b/data/finished/notifications-1685698875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685698875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685702499.json b/data/finished/notifications-1685702499.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685702499.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685706068.json b/data/finished/notifications-1685706068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685706068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685710867.json b/data/finished/notifications-1685710867.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685710867.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685713258.json b/data/finished/notifications-1685713258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685713258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685716890.json b/data/finished/notifications-1685716890.json new file mode 100644 index 00000000..73784265 --- /dev/null +++ b/data/finished/notifications-1685716890.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-09": {"remaining": 5, "total": 6}, "2023-07-10": {"remaining": 4, "total": 6}, "2023-07-11": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685720499.json b/data/finished/notifications-1685720499.json new file mode 100644 index 00000000..ab03966c --- /dev/null +++ b/data/finished/notifications-1685720499.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-09": {"remaining": 4, "total": 6}, "2023-07-10": {"remaining": 3, "total": 6}, "2023-07-11": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685724095.json b/data/finished/notifications-1685724095.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685724095.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685727677.json b/data/finished/notifications-1685727677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685727677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685731272.json b/data/finished/notifications-1685731272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685731272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685734879.json b/data/finished/notifications-1685734879.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685734879.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685738496.json b/data/finished/notifications-1685738496.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685738496.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685742066.json b/data/finished/notifications-1685742066.json new file mode 100644 index 00000000..73784265 --- /dev/null +++ b/data/finished/notifications-1685742066.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-09": {"remaining": 5, "total": 6}, "2023-07-10": {"remaining": 4, "total": 6}, "2023-07-11": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685745694.json b/data/finished/notifications-1685745694.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685745694.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685749283.json b/data/finished/notifications-1685749283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685749283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685758031.json b/data/finished/notifications-1685758031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685758031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685761075.json b/data/finished/notifications-1685761075.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685761075.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685763665.json b/data/finished/notifications-1685763665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685763665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685767294.json b/data/finished/notifications-1685767294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685767294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685770873.json b/data/finished/notifications-1685770873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685770873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685774472.json b/data/finished/notifications-1685774472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685774472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685778077.json b/data/finished/notifications-1685778077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685778077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685781677.json b/data/finished/notifications-1685781677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685781677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685785284.json b/data/finished/notifications-1685785284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685785284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685788905.json b/data/finished/notifications-1685788905.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685788905.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685792468.json b/data/finished/notifications-1685792468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685792468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685796747.json b/data/finished/notifications-1685796747.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685796747.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685799693.json b/data/finished/notifications-1685799693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685799693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685803278.json b/data/finished/notifications-1685803278.json new file mode 100644 index 00000000..1d4a6b3f --- /dev/null +++ b/data/finished/notifications-1685803278.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOL - Mokowanis Lake (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685806885.json b/data/finished/notifications-1685806885.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685806885.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685810463.json b/data/finished/notifications-1685810463.json new file mode 100644 index 00000000..08145049 --- /dev/null +++ b/data/finished/notifications-1685810463.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685814083.json b/data/finished/notifications-1685814083.json new file mode 100644 index 00000000..6fa4b2cd --- /dev/null +++ b/data/finished/notifications-1685814083.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-11": {"remaining": 1, "total": 6}}, "FLA - Flattop (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 2}}, "COS - Cosley Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685817673.json b/data/finished/notifications-1685817673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685817673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685821285.json b/data/finished/notifications-1685821285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685821285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685824872.json b/data/finished/notifications-1685824872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685824872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685828470.json b/data/finished/notifications-1685828470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685828470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685832086.json b/data/finished/notifications-1685832086.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685832086.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685835702.json b/data/finished/notifications-1685835702.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685835702.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685845762.json b/data/finished/notifications-1685845762.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685845762.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685848647.json b/data/finished/notifications-1685848647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685848647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685850089.json b/data/finished/notifications-1685850089.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685850089.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685853663.json b/data/finished/notifications-1685853663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685853663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685857281.json b/data/finished/notifications-1685857281.json new file mode 100644 index 00000000..72e137b8 --- /dev/null +++ b/data/finished/notifications-1685857281.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HEL - Helen Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685860902.json b/data/finished/notifications-1685860902.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685860902.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685864486.json b/data/finished/notifications-1685864486.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685864486.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685868087.json b/data/finished/notifications-1685868087.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685868087.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685871689.json b/data/finished/notifications-1685871689.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685871689.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685875289.json b/data/finished/notifications-1685875289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685875289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685878877.json b/data/finished/notifications-1685878877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685878877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685883112.json b/data/finished/notifications-1685883112.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685883112.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685886064.json b/data/finished/notifications-1685886064.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685886064.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685889661.json b/data/finished/notifications-1685889661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685889661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685893283.json b/data/finished/notifications-1685893283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685893283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685896871.json b/data/finished/notifications-1685896871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685896871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685900488.json b/data/finished/notifications-1685900488.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685900488.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685904076.json b/data/finished/notifications-1685904076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685904076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685907669.json b/data/finished/notifications-1685907669.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685907669.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685911285.json b/data/finished/notifications-1685911285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685911285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685914877.json b/data/finished/notifications-1685914877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685914877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685918493.json b/data/finished/notifications-1685918493.json new file mode 100644 index 00000000..8e87bf65 --- /dev/null +++ b/data/finished/notifications-1685918493.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 2, "total": 2}, "2023-07-04": {"remaining": 2, "total": 2}, "2023-07-05": {"remaining": 2, "total": 2}, "2023-07-06": {"remaining": 2, "total": 2}, "2023-07-07": {"remaining": 2, "total": 2}, "2023-07-08": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 2, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-13": {"remaining": 2, "total": 2}, "2023-07-14": {"remaining": 2, "total": 2}, "2023-07-15": {"remaining": 2, "total": 2}, "2023-07-16": {"remaining": 2, "total": 2}, "2023-07-17": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 2, "total": 2}, "2023-07-19": {"remaining": 2, "total": 2}, "2023-07-21": {"remaining": 2, "total": 2}, "2023-07-22": {"remaining": 2, "total": 2}, "2023-07-23": {"remaining": 2, "total": 2}, "2023-07-24": {"remaining": 2, "total": 2}, "2023-07-25": {"remaining": 2, "total": 2}, "2023-07-26": {"remaining": 2, "total": 2}, "2023-07-27": {"remaining": 2, "total": 2}, "2023-07-28": {"remaining": 2, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}, "2023-07-30": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685922094.json b/data/finished/notifications-1685922094.json new file mode 100644 index 00000000..34615abf --- /dev/null +++ b/data/finished/notifications-1685922094.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}, "2023-07-25": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685931217.json b/data/finished/notifications-1685931217.json new file mode 100644 index 00000000..95274426 --- /dev/null +++ b/data/finished/notifications-1685931217.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 2}}, "GOA - Goat Haunt Shelters": {"2023-07-24": {"remaining": 3, "total": 6}, "2023-07-25": {"remaining": 3, "total": 6}, "2023-07-26": {"remaining": 3, "total": 6}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}, "2023-07-29": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685934158.json b/data/finished/notifications-1685934158.json new file mode 100644 index 00000000..7499fa7a --- /dev/null +++ b/data/finished/notifications-1685934158.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 2}, "2023-07-06": {"remaining": 1, "total": 2}, "2023-07-07": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685936477.json b/data/finished/notifications-1685936477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685936477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685940077.json b/data/finished/notifications-1685940077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685940077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685943684.json b/data/finished/notifications-1685943684.json new file mode 100644 index 00000000..272e6750 --- /dev/null +++ b/data/finished/notifications-1685943684.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 2, "total": 6}}, "KIN - Kintla Lake": {"2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685947273.json b/data/finished/notifications-1685947273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685947273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685950880.json b/data/finished/notifications-1685950880.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685950880.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685954468.json b/data/finished/notifications-1685954468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685954468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685958067.json b/data/finished/notifications-1685958067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685958067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685961677.json b/data/finished/notifications-1685961677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685961677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685965268.json b/data/finished/notifications-1685965268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685965268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685969851.json b/data/finished/notifications-1685969851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685969851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685972462.json b/data/finished/notifications-1685972462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685972462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685976100.json b/data/finished/notifications-1685976100.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685976100.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685979668.json b/data/finished/notifications-1685979668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685979668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685983276.json b/data/finished/notifications-1685983276.json new file mode 100644 index 00000000..2249b228 --- /dev/null +++ b/data/finished/notifications-1685983276.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685986887.json b/data/finished/notifications-1685986887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685986887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685990489.json b/data/finished/notifications-1685990489.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685990489.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1685994087.json b/data/finished/notifications-1685994087.json new file mode 100644 index 00000000..2d7c60ea --- /dev/null +++ b/data/finished/notifications-1685994087.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-08": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1685997683.json b/data/finished/notifications-1685997683.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1685997683.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686001272.json b/data/finished/notifications-1686001272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686001272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686004888.json b/data/finished/notifications-1686004888.json new file mode 100644 index 00000000..2791f6cc --- /dev/null +++ b/data/finished/notifications-1686004888.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-14": {"remaining": 3, "total": 6}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-18": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-14": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686008462.json b/data/finished/notifications-1686008462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686008462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686017690.json b/data/finished/notifications-1686017690.json new file mode 100644 index 00000000..b0c6912b --- /dev/null +++ b/data/finished/notifications-1686017690.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 2}, "2023-07-19": {"remaining": 1, "total": 2}}, "JAN - Lake Janet": {"2023-07-17": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686020765.json b/data/finished/notifications-1686020765.json new file mode 100644 index 00000000..259a4ab6 --- /dev/null +++ b/data/finished/notifications-1686020765.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686022881.json b/data/finished/notifications-1686022881.json new file mode 100644 index 00000000..a8304436 --- /dev/null +++ b/data/finished/notifications-1686022881.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-16": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686026477.json b/data/finished/notifications-1686026477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686026477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686030094.json b/data/finished/notifications-1686030094.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686030094.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686033671.json b/data/finished/notifications-1686033671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686033671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686037269.json b/data/finished/notifications-1686037269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686037269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686040881.json b/data/finished/notifications-1686040881.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686040881.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686044477.json b/data/finished/notifications-1686044477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686044477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686048072.json b/data/finished/notifications-1686048072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686048072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686051692.json b/data/finished/notifications-1686051692.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686051692.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686056236.json b/data/finished/notifications-1686056236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686056236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686058882.json b/data/finished/notifications-1686058882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686058882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686062495.json b/data/finished/notifications-1686062495.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686062495.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686066068.json b/data/finished/notifications-1686066068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686066068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686069735.json b/data/finished/notifications-1686069735.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686069735.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686073284.json b/data/finished/notifications-1686073284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686073284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686076882.json b/data/finished/notifications-1686076882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686076882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686080480.json b/data/finished/notifications-1686080480.json new file mode 100644 index 00000000..3abb52ec --- /dev/null +++ b/data/finished/notifications-1686080480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686084087.json b/data/finished/notifications-1686084087.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686084087.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686087685.json b/data/finished/notifications-1686087685.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686087685.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686091278.json b/data/finished/notifications-1686091278.json new file mode 100644 index 00000000..b3aa6e65 --- /dev/null +++ b/data/finished/notifications-1686091278.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-03": {"remaining": 2, "total": 4}, "2023-07-04": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686094898.json b/data/finished/notifications-1686094898.json new file mode 100644 index 00000000..734e736a --- /dev/null +++ b/data/finished/notifications-1686094898.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-03": {"remaining": 3, "total": 4}, "2023-07-04": {"remaining": 2, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}, "2023-07-02": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686104167.json b/data/finished/notifications-1686104167.json new file mode 100644 index 00000000..e0c841ce --- /dev/null +++ b/data/finished/notifications-1686104167.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-07": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 2}, "2023-07-03": {"remaining": 1, "total": 2}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}, "zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-06": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686107114.json b/data/finished/notifications-1686107114.json new file mode 100644 index 00000000..ddeeabdd --- /dev/null +++ b/data/finished/notifications-1686107114.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686109292.json b/data/finished/notifications-1686109292.json new file mode 100644 index 00000000..b6532127 --- /dev/null +++ b/data/finished/notifications-1686109292.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-25": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-24": {"remaining": 1, "total": 2}}, "SPE - Sperry (No Campfires)": {"2023-07-23": {"remaining": 2, "total": 2}}, "GAB - Gable Creek (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686112890.json b/data/finished/notifications-1686112890.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686112890.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686116479.json b/data/finished/notifications-1686116479.json new file mode 100644 index 00000000..c1982f7c --- /dev/null +++ b/data/finished/notifications-1686116479.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686120085.json b/data/finished/notifications-1686120085.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686120085.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686123695.json b/data/finished/notifications-1686123695.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686123695.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686127289.json b/data/finished/notifications-1686127289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686127289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686130884.json b/data/finished/notifications-1686130884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686130884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686134463.json b/data/finished/notifications-1686134463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686134463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686138083.json b/data/finished/notifications-1686138083.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686138083.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686142646.json b/data/finished/notifications-1686142646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686142646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686145283.json b/data/finished/notifications-1686145283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686145283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686148883.json b/data/finished/notifications-1686148883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686148883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686152481.json b/data/finished/notifications-1686152481.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686152481.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686156177.json b/data/finished/notifications-1686156177.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686156177.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686159676.json b/data/finished/notifications-1686159676.json new file mode 100644 index 00000000..6a4d288c --- /dev/null +++ b/data/finished/notifications-1686159676.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686163268.json b/data/finished/notifications-1686163268.json new file mode 100644 index 00000000..4912a80d --- /dev/null +++ b/data/finished/notifications-1686163268.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-14": {"remaining": 2, "total": 6}}, "FLA - Flattop (No Campfires)": {"2023-07-03": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686166870.json b/data/finished/notifications-1686166870.json new file mode 100644 index 00000000..9cecaff3 --- /dev/null +++ b/data/finished/notifications-1686166870.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-14": {"remaining": 3, "total": 6}, "2023-07-15": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686170492.json b/data/finished/notifications-1686170492.json new file mode 100644 index 00000000..9f11b1c5 --- /dev/null +++ b/data/finished/notifications-1686170492.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-01": {"remaining": 3, "total": 3}, "2023-07-02": {"remaining": 3, "total": 3}, "2023-07-03": {"remaining": 3, "total": 3}, "2023-07-04": {"remaining": 3, "total": 3}, "2023-07-05": {"remaining": 3, "total": 3}, "2023-07-06": {"remaining": 3, "total": 3}, "2023-07-07": {"remaining": 3, "total": 3}, "2023-07-08": {"remaining": 3, "total": 3}, "2023-07-09": {"remaining": 3, "total": 3}, "2023-07-10": {"remaining": 3, "total": 3}, "2023-07-11": {"remaining": 3, "total": 3}, "2023-07-12": {"remaining": 3, "total": 3}, "2023-07-13": {"remaining": 3, "total": 3}, "2023-07-14": {"remaining": 3, "total": 3}, "2023-07-15": {"remaining": 3, "total": 3}, "2023-07-16": {"remaining": 3, "total": 3}, "2023-07-17": {"remaining": 3, "total": 3}, "2023-07-18": {"remaining": 3, "total": 3}, "2023-07-19": {"remaining": 3, "total": 3}, "2023-07-21": {"remaining": 3, "total": 3}, "2023-07-22": {"remaining": 3, "total": 3}, "2023-07-23": {"remaining": 3, "total": 3}, "2023-07-24": {"remaining": 3, "total": 3}, "2023-07-25": {"remaining": 3, "total": 3}, "2023-07-26": {"remaining": 3, "total": 3}, "2023-07-27": {"remaining": 3, "total": 3}, "2023-07-28": {"remaining": 3, "total": 3}, "2023-07-29": {"remaining": 3, "total": 3}, "2023-07-30": {"remaining": 3, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686174067.json b/data/finished/notifications-1686174067.json new file mode 100644 index 00000000..e8a08693 --- /dev/null +++ b/data/finished/notifications-1686174067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-30": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686177680.json b/data/finished/notifications-1686177680.json new file mode 100644 index 00000000..a35f3b65 --- /dev/null +++ b/data/finished/notifications-1686177680.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686181297.json b/data/finished/notifications-1686181297.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686181297.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686190410.json b/data/finished/notifications-1686190410.json new file mode 100644 index 00000000..47c826b3 --- /dev/null +++ b/data/finished/notifications-1686190410.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686193456.json b/data/finished/notifications-1686193456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686193456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686195687.json b/data/finished/notifications-1686195687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686195687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686199290.json b/data/finished/notifications-1686199290.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686199290.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686202862.json b/data/finished/notifications-1686202862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686202862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686206464.json b/data/finished/notifications-1686206464.json new file mode 100644 index 00000000..65386d97 --- /dev/null +++ b/data/finished/notifications-1686206464.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-02": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686210084.json b/data/finished/notifications-1686210084.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686210084.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686213679.json b/data/finished/notifications-1686213679.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686213679.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686217281.json b/data/finished/notifications-1686217281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686217281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686220889.json b/data/finished/notifications-1686220889.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686220889.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686224482.json b/data/finished/notifications-1686224482.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686224482.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686228828.json b/data/finished/notifications-1686228828.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686228828.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686231678.json b/data/finished/notifications-1686231678.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686231678.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686235281.json b/data/finished/notifications-1686235281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686235281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686238881.json b/data/finished/notifications-1686238881.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686238881.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686242523.json b/data/finished/notifications-1686242523.json new file mode 100644 index 00000000..81b3ff41 --- /dev/null +++ b/data/finished/notifications-1686242523.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-10": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686246070.json b/data/finished/notifications-1686246070.json new file mode 100644 index 00000000..c576e03e --- /dev/null +++ b/data/finished/notifications-1686246070.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686249677.json b/data/finished/notifications-1686249677.json new file mode 100644 index 00000000..9c497807 --- /dev/null +++ b/data/finished/notifications-1686249677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686253280.json b/data/finished/notifications-1686253280.json new file mode 100644 index 00000000..ef4fcbb5 --- /dev/null +++ b/data/finished/notifications-1686253280.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-18": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686256895.json b/data/finished/notifications-1686256895.json new file mode 100644 index 00000000..8cc3da2d --- /dev/null +++ b/data/finished/notifications-1686256895.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-02": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-18": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686260476.json b/data/finished/notifications-1686260476.json new file mode 100644 index 00000000..3369c432 --- /dev/null +++ b/data/finished/notifications-1686260476.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 1, "total": 2}}, "FLA - Flattop (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686264089.json b/data/finished/notifications-1686264089.json new file mode 100644 index 00000000..fedce0dd --- /dev/null +++ b/data/finished/notifications-1686264089.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 2}, "2023-07-09": {"remaining": 1, "total": 2}}, "GAB - Gable Creek (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}, "zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-06": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686267693.json b/data/finished/notifications-1686267693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686267693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686276910.json b/data/finished/notifications-1686276910.json new file mode 100644 index 00000000..c8402588 --- /dev/null +++ b/data/finished/notifications-1686276910.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-04": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686280070.json b/data/finished/notifications-1686280070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686280070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686282068.json b/data/finished/notifications-1686282068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686282068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686285674.json b/data/finished/notifications-1686285674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686285674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686289297.json b/data/finished/notifications-1686289297.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686289297.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686292894.json b/data/finished/notifications-1686292894.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686292894.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686296480.json b/data/finished/notifications-1686296480.json new file mode 100644 index 00000000..008ac1e3 --- /dev/null +++ b/data/finished/notifications-1686296480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-15": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686300082.json b/data/finished/notifications-1686300082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686300082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686303680.json b/data/finished/notifications-1686303680.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686303680.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686307263.json b/data/finished/notifications-1686307263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686307263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686310873.json b/data/finished/notifications-1686310873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686310873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686315263.json b/data/finished/notifications-1686315263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686315263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686318078.json b/data/finished/notifications-1686318078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686318078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686321676.json b/data/finished/notifications-1686321676.json new file mode 100644 index 00000000..ddeeabdd --- /dev/null +++ b/data/finished/notifications-1686321676.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686325299.json b/data/finished/notifications-1686325299.json new file mode 100644 index 00000000..c4239677 --- /dev/null +++ b/data/finished/notifications-1686325299.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-29": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686328918.json b/data/finished/notifications-1686328918.json new file mode 100644 index 00000000..fef246f9 --- /dev/null +++ b/data/finished/notifications-1686328918.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-29": {"remaining": 3, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686332480.json b/data/finished/notifications-1686332480.json new file mode 100644 index 00000000..2d35098f --- /dev/null +++ b/data/finished/notifications-1686332480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-07": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686336075.json b/data/finished/notifications-1686336075.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686336075.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686339690.json b/data/finished/notifications-1686339690.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686339690.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686343262.json b/data/finished/notifications-1686343262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686343262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686346887.json b/data/finished/notifications-1686346887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686346887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686350469.json b/data/finished/notifications-1686350469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686350469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686354080.json b/data/finished/notifications-1686354080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686354080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686362672.json b/data/finished/notifications-1686362672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686362672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686365777.json b/data/finished/notifications-1686365777.json new file mode 100644 index 00000000..a57cd8ae --- /dev/null +++ b/data/finished/notifications-1686365777.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-09": {"remaining": 2, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 3}, "2023-07-10": {"remaining": 3, "total": 3}, "2023-07-29": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-28": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686368475.json b/data/finished/notifications-1686368475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686368475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686372070.json b/data/finished/notifications-1686372070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686372070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686375687.json b/data/finished/notifications-1686375687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686375687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686379290.json b/data/finished/notifications-1686379290.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686379290.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686382879.json b/data/finished/notifications-1686382879.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686382879.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686386482.json b/data/finished/notifications-1686386482.json new file mode 100644 index 00000000..b2d9520b --- /dev/null +++ b/data/finished/notifications-1686386482.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-13": {"remaining": 1, "total": 3}, "2023-07-15": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686390084.json b/data/finished/notifications-1686390084.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686390084.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686393678.json b/data/finished/notifications-1686393678.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686393678.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686397261.json b/data/finished/notifications-1686397261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686397261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686401471.json b/data/finished/notifications-1686401471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686401471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686404480.json b/data/finished/notifications-1686404480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686404480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686408082.json b/data/finished/notifications-1686408082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686408082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686411693.json b/data/finished/notifications-1686411693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686411693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686415289.json b/data/finished/notifications-1686415289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686415289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686418897.json b/data/finished/notifications-1686418897.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686418897.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686422492.json b/data/finished/notifications-1686422492.json new file mode 100644 index 00000000..a224e804 --- /dev/null +++ b/data/finished/notifications-1686422492.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686426098.json b/data/finished/notifications-1686426098.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686426098.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686429690.json b/data/finished/notifications-1686429690.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686429690.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686433296.json b/data/finished/notifications-1686433296.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686433296.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686436876.json b/data/finished/notifications-1686436876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686436876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686440466.json b/data/finished/notifications-1686440466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686440466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686450166.json b/data/finished/notifications-1686450166.json new file mode 100644 index 00000000..cdf29515 --- /dev/null +++ b/data/finished/notifications-1686450166.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-08": {"remaining": 1, "total": 2}, "2023-07-09": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-07": {"remaining": 3, "total": 3}, "2023-07-08": {"remaining": 2, "total": 3}, "2023-07-29": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 2}, "2023-07-07": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686453230.json b/data/finished/notifications-1686453230.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686453230.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686454872.json b/data/finished/notifications-1686454872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686454872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686458466.json b/data/finished/notifications-1686458466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686458466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686462061.json b/data/finished/notifications-1686462061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686462061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686465682.json b/data/finished/notifications-1686465682.json new file mode 100644 index 00000000..fa8aa680 --- /dev/null +++ b/data/finished/notifications-1686465682.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686469289.json b/data/finished/notifications-1686469289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686469289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686472864.json b/data/finished/notifications-1686472864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686472864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686476490.json b/data/finished/notifications-1686476490.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686476490.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686480076.json b/data/finished/notifications-1686480076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686480076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686483675.json b/data/finished/notifications-1686483675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686483675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686487935.json b/data/finished/notifications-1686487935.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686487935.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686490872.json b/data/finished/notifications-1686490872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686490872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686494494.json b/data/finished/notifications-1686494494.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686494494.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686498087.json b/data/finished/notifications-1686498087.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686498087.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686501684.json b/data/finished/notifications-1686501684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686501684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686505282.json b/data/finished/notifications-1686505282.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686505282.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686508878.json b/data/finished/notifications-1686508878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686508878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686512493.json b/data/finished/notifications-1686512493.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686512493.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686516078.json b/data/finished/notifications-1686516078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686516078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686519690.json b/data/finished/notifications-1686519690.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686519690.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686523285.json b/data/finished/notifications-1686523285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686523285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686526881.json b/data/finished/notifications-1686526881.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686526881.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686535960.json b/data/finished/notifications-1686535960.json new file mode 100644 index 00000000..0b76ce4a --- /dev/null +++ b/data/finished/notifications-1686535960.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-16": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "HAW - Hawksbill (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-21": {"remaining": 1, "total": 4}}}, "leemc@hey.com": {"JAN - Lake Janet": {"2023-07-20": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686539149.json b/data/finished/notifications-1686539149.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686539149.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686541277.json b/data/finished/notifications-1686541277.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686541277.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686544885.json b/data/finished/notifications-1686544885.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686544885.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686548475.json b/data/finished/notifications-1686548475.json new file mode 100644 index 00000000..d010a646 --- /dev/null +++ b/data/finished/notifications-1686548475.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-14": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686552080.json b/data/finished/notifications-1686552080.json new file mode 100644 index 00000000..4a678e0c --- /dev/null +++ b/data/finished/notifications-1686552080.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-03": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-02": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686555666.json b/data/finished/notifications-1686555666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686555666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686559302.json b/data/finished/notifications-1686559302.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686559302.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686562878.json b/data/finished/notifications-1686562878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686562878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686566474.json b/data/finished/notifications-1686566474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686566474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686570080.json b/data/finished/notifications-1686570080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686570080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686574469.json b/data/finished/notifications-1686574469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686574469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686577288.json b/data/finished/notifications-1686577288.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686577288.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686580874.json b/data/finished/notifications-1686580874.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686580874.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686584473.json b/data/finished/notifications-1686584473.json new file mode 100644 index 00000000..8679ebeb --- /dev/null +++ b/data/finished/notifications-1686584473.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"COS - Cosley Lake (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686588125.json b/data/finished/notifications-1686588125.json new file mode 100644 index 00000000..5d9c4ffc --- /dev/null +++ b/data/finished/notifications-1686588125.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-17": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}, "2023-07-22": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686591693.json b/data/finished/notifications-1686591693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686591693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686595289.json b/data/finished/notifications-1686595289.json new file mode 100644 index 00000000..ca5cc3a0 --- /dev/null +++ b/data/finished/notifications-1686595289.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 2, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}, "2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686598871.json b/data/finished/notifications-1686598871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686598871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686603832.json b/data/finished/notifications-1686603832.json new file mode 100644 index 00000000..bb592879 --- /dev/null +++ b/data/finished/notifications-1686603832.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-13": {"remaining": 2, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-09": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686606076.json b/data/finished/notifications-1686606076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686606076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686609694.json b/data/finished/notifications-1686609694.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686609694.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686613271.json b/data/finished/notifications-1686613271.json new file mode 100644 index 00000000..cb87a727 --- /dev/null +++ b/data/finished/notifications-1686613271.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-17": {"remaining": 2, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-15": {"remaining": 2, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-17": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686621851.json b/data/finished/notifications-1686621851.json new file mode 100644 index 00000000..fa463b9e --- /dev/null +++ b/data/finished/notifications-1686621851.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}, "2023-07-03": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686624797.json b/data/finished/notifications-1686624797.json new file mode 100644 index 00000000..cec7403c --- /dev/null +++ b/data/finished/notifications-1686624797.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-09": {"remaining": 6, "total": 6}, "2023-07-10": {"remaining": 5, "total": 6}, "2023-07-11": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686627673.json b/data/finished/notifications-1686627673.json new file mode 100644 index 00000000..180fa41f --- /dev/null +++ b/data/finished/notifications-1686627673.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686631281.json b/data/finished/notifications-1686631281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686631281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686634891.json b/data/finished/notifications-1686634891.json new file mode 100644 index 00000000..e1678c71 --- /dev/null +++ b/data/finished/notifications-1686634891.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-17": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686638490.json b/data/finished/notifications-1686638490.json new file mode 100644 index 00000000..b3e0f72f --- /dev/null +++ b/data/finished/notifications-1686638490.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686642086.json b/data/finished/notifications-1686642086.json new file mode 100644 index 00000000..72e02f6e --- /dev/null +++ b/data/finished/notifications-1686642086.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686645675.json b/data/finished/notifications-1686645675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686645675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686649281.json b/data/finished/notifications-1686649281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686649281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686652883.json b/data/finished/notifications-1686652883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686652883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686656466.json b/data/finished/notifications-1686656466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686656466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686660922.json b/data/finished/notifications-1686660922.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686660922.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686663679.json b/data/finished/notifications-1686663679.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686663679.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686667286.json b/data/finished/notifications-1686667286.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686667286.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686670865.json b/data/finished/notifications-1686670865.json new file mode 100644 index 00000000..266a5c6e --- /dev/null +++ b/data/finished/notifications-1686670865.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686674567.json b/data/finished/notifications-1686674567.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686674567.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686678084.json b/data/finished/notifications-1686678084.json new file mode 100644 index 00000000..97e28d5b --- /dev/null +++ b/data/finished/notifications-1686678084.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-01": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686681667.json b/data/finished/notifications-1686681667.json new file mode 100644 index 00000000..e4f7da20 --- /dev/null +++ b/data/finished/notifications-1686681667.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-25": {"remaining": 2, "total": 3}}, "REY - Reynolds Creek": {"2023-07-26": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}, "kylesiverts@gmail.com": {"MAN - Many Glacier": {"2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686685289.json b/data/finished/notifications-1686685289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686685289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686688895.json b/data/finished/notifications-1686688895.json new file mode 100644 index 00000000..8320b354 --- /dev/null +++ b/data/finished/notifications-1686688895.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "GOA - Goat Haunt Shelters": {"2023-07-02": {"remaining": 1, "total": 6}, "2023-07-03": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686692474.json b/data/finished/notifications-1686692474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686692474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686696098.json b/data/finished/notifications-1686696098.json new file mode 100644 index 00000000..79183ba2 --- /dev/null +++ b/data/finished/notifications-1686696098.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 2, "total": 3}, "2023-07-28": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-01": {"remaining": 3, "total": 3}, "2023-07-02": {"remaining": 3, "total": 3}, "2023-07-03": {"remaining": 3, "total": 3}, "2023-07-04": {"remaining": 3, "total": 3}, "2023-07-05": {"remaining": 3, "total": 3}, "2023-07-06": {"remaining": 3, "total": 3}, "2023-07-07": {"remaining": 3, "total": 3}, "2023-07-08": {"remaining": 3, "total": 3}, "2023-07-09": {"remaining": 3, "total": 3}, "2023-07-10": {"remaining": 3, "total": 3}, "2023-07-11": {"remaining": 3, "total": 3}, "2023-07-12": {"remaining": 3, "total": 3}, "2023-07-13": {"remaining": 3, "total": 3}, "2023-07-14": {"remaining": 3, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686699685.json b/data/finished/notifications-1686699685.json new file mode 100644 index 00000000..41dac683 --- /dev/null +++ b/data/finished/notifications-1686699685.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-28": {"remaining": 3, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-29": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686708214.json b/data/finished/notifications-1686708214.json new file mode 100644 index 00000000..3dc5ef08 --- /dev/null +++ b/data/finished/notifications-1686708214.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-09": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}, "2023-07-11": {"remaining": 2, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 2}, "2023-07-09": {"remaining": 1, "total": 2}, "2023-07-22": {"remaining": 1, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-15": {"remaining": 2, "total": 3}, "2023-07-16": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-08": {"remaining": 2, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-12": {"remaining": 2, "total": 3}, "2023-07-18": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686711154.json b/data/finished/notifications-1686711154.json new file mode 100644 index 00000000..6b2dbae6 --- /dev/null +++ b/data/finished/notifications-1686711154.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-05": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}, "zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686714070.json b/data/finished/notifications-1686714070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686714070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686717663.json b/data/finished/notifications-1686717663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686717663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686721278.json b/data/finished/notifications-1686721278.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686721278.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686724878.json b/data/finished/notifications-1686724878.json new file mode 100644 index 00000000..038710e6 --- /dev/null +++ b/data/finished/notifications-1686724878.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-12": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686728494.json b/data/finished/notifications-1686728494.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686728494.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686732093.json b/data/finished/notifications-1686732093.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686732093.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686735684.json b/data/finished/notifications-1686735684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686735684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686739285.json b/data/finished/notifications-1686739285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686739285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686742882.json b/data/finished/notifications-1686742882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686742882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686747310.json b/data/finished/notifications-1686747310.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686747310.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686750076.json b/data/finished/notifications-1686750076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686750076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686753670.json b/data/finished/notifications-1686753670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686753670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686757277.json b/data/finished/notifications-1686757277.json new file mode 100644 index 00000000..b4d9d1e5 --- /dev/null +++ b/data/finished/notifications-1686757277.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686760961.json b/data/finished/notifications-1686760961.json new file mode 100644 index 00000000..2486d60c --- /dev/null +++ b/data/finished/notifications-1686760961.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-18": {"remaining": 1, "total": 3}, "2023-07-19": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-21": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686764487.json b/data/finished/notifications-1686764487.json new file mode 100644 index 00000000..59210448 --- /dev/null +++ b/data/finished/notifications-1686764487.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}, "2023-07-17": {"remaining": 1, "total": 3}}, "GRN - Granite Park (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686768091.json b/data/finished/notifications-1686768091.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686768091.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686771696.json b/data/finished/notifications-1686771696.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686771696.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686775292.json b/data/finished/notifications-1686775292.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686775292.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686778889.json b/data/finished/notifications-1686778889.json new file mode 100644 index 00000000..3372e8e9 --- /dev/null +++ b/data/finished/notifications-1686778889.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-10": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686782475.json b/data/finished/notifications-1686782475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686782475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686786074.json b/data/finished/notifications-1686786074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686786074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686794537.json b/data/finished/notifications-1686794537.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686794537.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686797566.json b/data/finished/notifications-1686797566.json new file mode 100644 index 00000000..e7e4bd3d --- /dev/null +++ b/data/finished/notifications-1686797566.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 2}}, "SLI - Slide Lake": {"2023-07-18": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686800477.json b/data/finished/notifications-1686800477.json new file mode 100644 index 00000000..b6f0e40a --- /dev/null +++ b/data/finished/notifications-1686800477.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-23": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686804088.json b/data/finished/notifications-1686804088.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686804088.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686807698.json b/data/finished/notifications-1686807698.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686807698.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686811281.json b/data/finished/notifications-1686811281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686811281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686814874.json b/data/finished/notifications-1686814874.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686814874.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686818485.json b/data/finished/notifications-1686818485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686818485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686822088.json b/data/finished/notifications-1686822088.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686822088.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686825706.json b/data/finished/notifications-1686825706.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686825706.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686829266.json b/data/finished/notifications-1686829266.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686829266.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686833794.json b/data/finished/notifications-1686833794.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686833794.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686836485.json b/data/finished/notifications-1686836485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686836485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686840084.json b/data/finished/notifications-1686840084.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686840084.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686843680.json b/data/finished/notifications-1686843680.json new file mode 100644 index 00000000..9e0b8848 --- /dev/null +++ b/data/finished/notifications-1686843680.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686847306.json b/data/finished/notifications-1686847306.json new file mode 100644 index 00000000..ceb1be24 --- /dev/null +++ b/data/finished/notifications-1686847306.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-19": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 2, "total": 3}, "2023-07-19": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686850904.json b/data/finished/notifications-1686850904.json new file mode 100644 index 00000000..40a80fc2 --- /dev/null +++ b/data/finished/notifications-1686850904.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686855446.json b/data/finished/notifications-1686855446.json new file mode 100644 index 00000000..11ddebac --- /dev/null +++ b/data/finished/notifications-1686855446.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686861674.json b/data/finished/notifications-1686861674.json new file mode 100644 index 00000000..9c08222b --- /dev/null +++ b/data/finished/notifications-1686861674.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-24": {"remaining": 2, "total": 3}, "2023-07-26": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686865284.json b/data/finished/notifications-1686865284.json new file mode 100644 index 00000000..cfc38a17 --- /dev/null +++ b/data/finished/notifications-1686865284.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-24": {"remaining": 3, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686868883.json b/data/finished/notifications-1686868883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686868883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686872467.json b/data/finished/notifications-1686872467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686872467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686880976.json b/data/finished/notifications-1686880976.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686880976.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686883996.json b/data/finished/notifications-1686883996.json new file mode 100644 index 00000000..180fa41f --- /dev/null +++ b/data/finished/notifications-1686883996.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686886899.json b/data/finished/notifications-1686886899.json new file mode 100644 index 00000000..ab0b9e3f --- /dev/null +++ b/data/finished/notifications-1686886899.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686890500.json b/data/finished/notifications-1686890500.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686890500.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686894067.json b/data/finished/notifications-1686894067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686894067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686897746.json b/data/finished/notifications-1686897746.json new file mode 100644 index 00000000..71f1f76d --- /dev/null +++ b/data/finished/notifications-1686897746.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-14": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686901286.json b/data/finished/notifications-1686901286.json new file mode 100644 index 00000000..5578ce99 --- /dev/null +++ b/data/finished/notifications-1686901286.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686904868.json b/data/finished/notifications-1686904868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686904868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686908471.json b/data/finished/notifications-1686908471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686908471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686922877.json b/data/finished/notifications-1686922877.json new file mode 100644 index 00000000..9b6750ed --- /dev/null +++ b/data/finished/notifications-1686922877.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686926494.json b/data/finished/notifications-1686926494.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686926494.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686930077.json b/data/finished/notifications-1686930077.json new file mode 100644 index 00000000..428cec16 --- /dev/null +++ b/data/finished/notifications-1686930077.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-01": {"remaining": 4, "total": 4}, "2023-07-02": {"remaining": 4, "total": 4}, "2023-07-03": {"remaining": 4, "total": 4}, "2023-07-04": {"remaining": 4, "total": 4}, "2023-07-05": {"remaining": 4, "total": 4}, "2023-07-06": {"remaining": 4, "total": 4}, "2023-07-07": {"remaining": 4, "total": 4}, "2023-07-08": {"remaining": 4, "total": 4}, "2023-07-09": {"remaining": 4, "total": 4}, "2023-07-10": {"remaining": 4, "total": 4}, "2023-07-11": {"remaining": 4, "total": 4}, "2023-07-12": {"remaining": 4, "total": 4}, "2023-07-13": {"remaining": 4, "total": 4}, "2023-07-14": {"remaining": 4, "total": 4}, "2023-07-15": {"remaining": 4, "total": 4}, "2023-07-16": {"remaining": 4, "total": 4}, "2023-07-17": {"remaining": 4, "total": 4}, "2023-07-18": {"remaining": 4, "total": 4}, "2023-07-19": {"remaining": 4, "total": 4}, "2023-07-21": {"remaining": 4, "total": 4}, "2023-07-22": {"remaining": 3, "total": 4}, "2023-07-23": {"remaining": 4, "total": 4}, "2023-07-24": {"remaining": 4, "total": 4}, "2023-07-25": {"remaining": 4, "total": 4}, "2023-07-26": {"remaining": 4, "total": 4}, "2023-07-27": {"remaining": 4, "total": 4}, "2023-07-28": {"remaining": 4, "total": 4}, "2023-07-29": {"remaining": 4, "total": 4}, "2023-07-30": {"remaining": 4, "total": 4}}}, "leemc@hey.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-18": {"remaining": 4, "total": 4}, "2023-07-19": {"remaining": 4, "total": 4}, "2023-07-20": {"remaining": 4, "total": 4}, "2023-07-21": {"remaining": 4, "total": 4}, "2023-07-22": {"remaining": 3, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 3, "total": 4}, "2023-07-26": {"remaining": 4, "total": 4}, "2023-07-27": {"remaining": 4, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686933710.json b/data/finished/notifications-1686933710.json new file mode 100644 index 00000000..855046f9 --- /dev/null +++ b/data/finished/notifications-1686933710.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-03": {"remaining": 3, "total": 4}, "2023-07-21": {"remaining": 3, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}, "2023-07-23": {"remaining": 3, "total": 4}, "2023-07-26": {"remaining": 3, "total": 4}}, "WAT - Waterton River": {"2023-07-26": {"remaining": 3, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}, "leemc@hey.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-21": {"remaining": 3, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}, "2023-07-26": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686937284.json b/data/finished/notifications-1686937284.json new file mode 100644 index 00000000..97b8bb72 --- /dev/null +++ b/data/finished/notifications-1686937284.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 2, "total": 4}, "2023-07-27": {"remaining": 3, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 2, "total": 4}, "2023-07-27": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686940875.json b/data/finished/notifications-1686940875.json new file mode 100644 index 00000000..b6e87ddb --- /dev/null +++ b/data/finished/notifications-1686940875.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-04": {"remaining": 3, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686944498.json b/data/finished/notifications-1686944498.json new file mode 100644 index 00000000..92557e08 --- /dev/null +++ b/data/finished/notifications-1686944498.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686948096.json b/data/finished/notifications-1686948096.json new file mode 100644 index 00000000..97f19173 --- /dev/null +++ b/data/finished/notifications-1686948096.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686951679.json b/data/finished/notifications-1686951679.json new file mode 100644 index 00000000..2e1b8935 --- /dev/null +++ b/data/finished/notifications-1686951679.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-04": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-05": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-03": {"remaining": 2, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-08": {"remaining": 1, "total": 3}, "2023-07-27": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-04": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}, "zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-06": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686955289.json b/data/finished/notifications-1686955289.json new file mode 100644 index 00000000..ca6d53a5 --- /dev/null +++ b/data/finished/notifications-1686955289.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-30": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686958879.json b/data/finished/notifications-1686958879.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686958879.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686966981.json b/data/finished/notifications-1686966981.json new file mode 100644 index 00000000..0e3aa727 --- /dev/null +++ b/data/finished/notifications-1686966981.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-29": {"remaining": 3, "total": 4}}, "FRA - Lake Francis (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 1}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-12": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686970153.json b/data/finished/notifications-1686970153.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686970153.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686973284.json b/data/finished/notifications-1686973284.json new file mode 100644 index 00000000..3c20c4ad --- /dev/null +++ b/data/finished/notifications-1686973284.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1686976872.json b/data/finished/notifications-1686976872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686976872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686980484.json b/data/finished/notifications-1686980484.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686980484.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686984068.json b/data/finished/notifications-1686984068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686984068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686987678.json b/data/finished/notifications-1686987678.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686987678.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686991284.json b/data/finished/notifications-1686991284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686991284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686994878.json b/data/finished/notifications-1686994878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686994878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1686998491.json b/data/finished/notifications-1686998491.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1686998491.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687002078.json b/data/finished/notifications-1687002078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687002078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687006310.json b/data/finished/notifications-1687006310.json new file mode 100644 index 00000000..e5385775 --- /dev/null +++ b/data/finished/notifications-1687006310.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-10": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687009281.json b/data/finished/notifications-1687009281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687009281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687012878.json b/data/finished/notifications-1687012878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687012878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687016480.json b/data/finished/notifications-1687016480.json new file mode 100644 index 00000000..7d3e628f --- /dev/null +++ b/data/finished/notifications-1687016480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-15": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-14": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687020077.json b/data/finished/notifications-1687020077.json new file mode 100644 index 00000000..278015eb --- /dev/null +++ b/data/finished/notifications-1687020077.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687023694.json b/data/finished/notifications-1687023694.json new file mode 100644 index 00000000..d72359a8 --- /dev/null +++ b/data/finished/notifications-1687023694.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-17": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-18": {"remaining": 2, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "HEL - Helen Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687027286.json b/data/finished/notifications-1687027286.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687027286.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687030900.json b/data/finished/notifications-1687030900.json new file mode 100644 index 00000000..21f9520c --- /dev/null +++ b/data/finished/notifications-1687030900.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-10": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-11": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687034502.json b/data/finished/notifications-1687034502.json new file mode 100644 index 00000000..547796ad --- /dev/null +++ b/data/finished/notifications-1687034502.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-10": {"remaining": 4, "total": 4}, "2023-07-17": {"remaining": 3, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-09": {"remaining": 1, "total": 3}}, "GRN - Granite Park (No Campfires)": {"2023-07-11": {"remaining": 3, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687038070.json b/data/finished/notifications-1687038070.json new file mode 100644 index 00000000..ab3bfbb6 --- /dev/null +++ b/data/finished/notifications-1687038070.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 4, "total": 4}, "2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687041706.json b/data/finished/notifications-1687041706.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687041706.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687045287.json b/data/finished/notifications-1687045287.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687045287.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687054609.json b/data/finished/notifications-1687054609.json new file mode 100644 index 00000000..7546863e --- /dev/null +++ b/data/finished/notifications-1687054609.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-28": {"remaining": 2, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 3, "total": 4}, "2023-07-25": {"remaining": 3, "total": 4}}, "BOW - Bowman Lake": {"2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687057478.json b/data/finished/notifications-1687057478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687057478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687059687.json b/data/finished/notifications-1687059687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687059687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687063280.json b/data/finished/notifications-1687063280.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687063280.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687066864.json b/data/finished/notifications-1687066864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687066864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687070471.json b/data/finished/notifications-1687070471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687070471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687074086.json b/data/finished/notifications-1687074086.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687074086.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687077667.json b/data/finished/notifications-1687077667.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687077667.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687081287.json b/data/finished/notifications-1687081287.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687081287.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687084884.json b/data/finished/notifications-1687084884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687084884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687088504.json b/data/finished/notifications-1687088504.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687088504.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687092760.json b/data/finished/notifications-1687092760.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687092760.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687095683.json b/data/finished/notifications-1687095683.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687095683.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687099272.json b/data/finished/notifications-1687099272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687099272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687102894.json b/data/finished/notifications-1687102894.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687102894.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687106467.json b/data/finished/notifications-1687106467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687106467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687110075.json b/data/finished/notifications-1687110075.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687110075.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687113681.json b/data/finished/notifications-1687113681.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687113681.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687117287.json b/data/finished/notifications-1687117287.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687117287.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687120906.json b/data/finished/notifications-1687120906.json new file mode 100644 index 00000000..da3bcad9 --- /dev/null +++ b/data/finished/notifications-1687120906.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-02": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687124489.json b/data/finished/notifications-1687124489.json new file mode 100644 index 00000000..f908bf2d --- /dev/null +++ b/data/finished/notifications-1687124489.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-02": {"remaining": 3, "total": 4}, "2023-07-17": {"remaining": 2, "total": 4}, "2023-07-29": {"remaining": 2, "total": 4}, "2023-07-30": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687128090.json b/data/finished/notifications-1687128090.json new file mode 100644 index 00000000..aa6ead3f --- /dev/null +++ b/data/finished/notifications-1687128090.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-01": {"remaining": 3, "total": 4}, "2023-07-02": {"remaining": 4, "total": 4}, "2023-07-17": {"remaining": 1, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-01": {"remaining": 3, "total": 3}, "2023-07-02": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687131687.json b/data/finished/notifications-1687131687.json new file mode 100644 index 00000000..dac3bdf3 --- /dev/null +++ b/data/finished/notifications-1687131687.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}, "2023-07-23": {"remaining": 2, "total": 4}, "2023-07-24": {"remaining": 2, "total": 4}}}, "leemc@hey.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687140245.json b/data/finished/notifications-1687140245.json new file mode 100644 index 00000000..e279b03a --- /dev/null +++ b/data/finished/notifications-1687140245.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687143304.json b/data/finished/notifications-1687143304.json new file mode 100644 index 00000000..449350e0 --- /dev/null +++ b/data/finished/notifications-1687143304.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687146079.json b/data/finished/notifications-1687146079.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687146079.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687149687.json b/data/finished/notifications-1687149687.json new file mode 100644 index 00000000..00439cdb --- /dev/null +++ b/data/finished/notifications-1687149687.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-15": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687153291.json b/data/finished/notifications-1687153291.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687153291.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687156906.json b/data/finished/notifications-1687156906.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687156906.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687160489.json b/data/finished/notifications-1687160489.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687160489.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687164092.json b/data/finished/notifications-1687164092.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687164092.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687167672.json b/data/finished/notifications-1687167672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687167672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687171285.json b/data/finished/notifications-1687171285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687171285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687174882.json b/data/finished/notifications-1687174882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687174882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687179412.json b/data/finished/notifications-1687179412.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687179412.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687182089.json b/data/finished/notifications-1687182089.json new file mode 100644 index 00000000..b34cfc4a --- /dev/null +++ b/data/finished/notifications-1687182089.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687185682.json b/data/finished/notifications-1687185682.json new file mode 100644 index 00000000..8d0c2892 --- /dev/null +++ b/data/finished/notifications-1687185682.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 3, "total": 6}}, "FLA - Flattop (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687189297.json b/data/finished/notifications-1687189297.json new file mode 100644 index 00000000..e83dac19 --- /dev/null +++ b/data/finished/notifications-1687189297.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687192920.json b/data/finished/notifications-1687192920.json new file mode 100644 index 00000000..0125da73 --- /dev/null +++ b/data/finished/notifications-1687192920.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-28": {"remaining": 3, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687196497.json b/data/finished/notifications-1687196497.json new file mode 100644 index 00000000..593d2efc --- /dev/null +++ b/data/finished/notifications-1687196497.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-25": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687200086.json b/data/finished/notifications-1687200086.json new file mode 100644 index 00000000..5391c6f9 --- /dev/null +++ b/data/finished/notifications-1687200086.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-16": {"remaining": 3, "total": 4}, "2023-07-18": {"remaining": 3, "total": 4}, "2023-07-21": {"remaining": 2, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-21": {"remaining": 3, "total": 6}, "2023-07-22": {"remaining": 4, "total": 6}}}, "leemc@hey.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-18": {"remaining": 3, "total": 4}, "2023-07-20": {"remaining": 3, "total": 4}, "2023-07-21": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687203701.json b/data/finished/notifications-1687203701.json new file mode 100644 index 00000000..7e4c58ea --- /dev/null +++ b/data/finished/notifications-1687203701.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"COS - Cosley Lake (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}, "2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687207278.json b/data/finished/notifications-1687207278.json new file mode 100644 index 00000000..484f1a87 --- /dev/null +++ b/data/finished/notifications-1687207278.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-25": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687210872.json b/data/finished/notifications-1687210872.json new file mode 100644 index 00000000..56abf309 --- /dev/null +++ b/data/finished/notifications-1687210872.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-28": {"remaining": 2, "total": 4}, "2023-07-29": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687214489.json b/data/finished/notifications-1687214489.json new file mode 100644 index 00000000..5fef6e25 --- /dev/null +++ b/data/finished/notifications-1687214489.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-04": {"remaining": 2, "total": 4}, "2023-07-25": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687218067.json b/data/finished/notifications-1687218067.json new file mode 100644 index 00000000..56f243c3 --- /dev/null +++ b/data/finished/notifications-1687218067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687226146.json b/data/finished/notifications-1687226146.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687226146.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687229398.json b/data/finished/notifications-1687229398.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687229398.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687232474.json b/data/finished/notifications-1687232474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687232474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687236080.json b/data/finished/notifications-1687236080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687236080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687239690.json b/data/finished/notifications-1687239690.json new file mode 100644 index 00000000..71f1f76d --- /dev/null +++ b/data/finished/notifications-1687239690.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-14": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687243279.json b/data/finished/notifications-1687243279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687243279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687246873.json b/data/finished/notifications-1687246873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687246873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687250482.json b/data/finished/notifications-1687250482.json new file mode 100644 index 00000000..13da1080 --- /dev/null +++ b/data/finished/notifications-1687250482.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687254071.json b/data/finished/notifications-1687254071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687254071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687257695.json b/data/finished/notifications-1687257695.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687257695.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687261270.json b/data/finished/notifications-1687261270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687261270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687265803.json b/data/finished/notifications-1687265803.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687265803.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687268504.json b/data/finished/notifications-1687268504.json new file mode 100644 index 00000000..739cc767 --- /dev/null +++ b/data/finished/notifications-1687268504.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687272088.json b/data/finished/notifications-1687272088.json new file mode 100644 index 00000000..9517e70d --- /dev/null +++ b/data/finished/notifications-1687272088.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 4, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-07": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-09": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687275669.json b/data/finished/notifications-1687275669.json new file mode 100644 index 00000000..4a2d5733 --- /dev/null +++ b/data/finished/notifications-1687275669.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-13": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687279338.json b/data/finished/notifications-1687279338.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687279338.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687282887.json b/data/finished/notifications-1687282887.json new file mode 100644 index 00000000..76160bad --- /dev/null +++ b/data/finished/notifications-1687282887.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}, "2023-07-29": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687286480.json b/data/finished/notifications-1687286480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687286480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687290100.json b/data/finished/notifications-1687290100.json new file mode 100644 index 00000000..b247ef10 --- /dev/null +++ b/data/finished/notifications-1687290100.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 2}}, "FLA - Flattop (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-09": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687293679.json b/data/finished/notifications-1687293679.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687293679.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687297282.json b/data/finished/notifications-1687297282.json new file mode 100644 index 00000000..6dbc3590 --- /dev/null +++ b/data/finished/notifications-1687297282.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 4}, "2023-07-18": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-03": {"remaining": 2, "total": 3}}}, "leemc@hey.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-18": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687300872.json b/data/finished/notifications-1687300872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687300872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687304497.json b/data/finished/notifications-1687304497.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687304497.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687312646.json b/data/finished/notifications-1687312646.json new file mode 100644 index 00000000..496007df --- /dev/null +++ b/data/finished/notifications-1687312646.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687315814.json b/data/finished/notifications-1687315814.json new file mode 100644 index 00000000..3865edf9 --- /dev/null +++ b/data/finished/notifications-1687315814.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687318867.json b/data/finished/notifications-1687318867.json new file mode 100644 index 00000000..baa7f633 --- /dev/null +++ b/data/finished/notifications-1687318867.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-05": {"remaining": 3, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-04": {"remaining": 5, "total": 6}}, "GRN - Granite Park (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687322480.json b/data/finished/notifications-1687322480.json new file mode 100644 index 00000000..418969f2 --- /dev/null +++ b/data/finished/notifications-1687322480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-05": {"remaining": 4, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-04": {"remaining": 6, "total": 6}}, "GRN - Granite Park (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687326072.json b/data/finished/notifications-1687326072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687326072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687329690.json b/data/finished/notifications-1687329690.json new file mode 100644 index 00000000..8586f725 --- /dev/null +++ b/data/finished/notifications-1687329690.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-01": {"remaining": 1, "total": 6}}, "BOW - Bowman Lake": {"2023-07-02": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687333295.json b/data/finished/notifications-1687333295.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687333295.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687337052.json b/data/finished/notifications-1687337052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687337052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687340491.json b/data/finished/notifications-1687340491.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687340491.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687344107.json b/data/finished/notifications-1687344107.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687344107.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687347684.json b/data/finished/notifications-1687347684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687347684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687352185.json b/data/finished/notifications-1687352185.json new file mode 100644 index 00000000..1cb5fbbc --- /dev/null +++ b/data/finished/notifications-1687352185.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-08": {"remaining": 2, "total": 3}, "2023-07-09": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-15": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 1, "total": 5}, "2023-07-17": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687354879.json b/data/finished/notifications-1687354879.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687354879.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687358485.json b/data/finished/notifications-1687358485.json new file mode 100644 index 00000000..b94e2ff1 --- /dev/null +++ b/data/finished/notifications-1687358485.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-07": {"remaining": 3, "total": 4}, "2023-07-08": {"remaining": 3, "total": 4}, "2023-07-09": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687362081.json b/data/finished/notifications-1687362081.json new file mode 100644 index 00000000..3abb2b17 --- /dev/null +++ b/data/finished/notifications-1687362081.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687365728.json b/data/finished/notifications-1687365728.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687365728.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687369284.json b/data/finished/notifications-1687369284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687369284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687372890.json b/data/finished/notifications-1687372890.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687372890.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687376471.json b/data/finished/notifications-1687376471.json new file mode 100644 index 00000000..86cca481 --- /dev/null +++ b/data/finished/notifications-1687376471.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-09": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687380068.json b/data/finished/notifications-1687380068.json new file mode 100644 index 00000000..f03e8b73 --- /dev/null +++ b/data/finished/notifications-1687380068.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-04": {"remaining": 2, "total": 3}}, "SLI - Slide Lake": {"2023-07-24": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687383672.json b/data/finished/notifications-1687383672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687383672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687387281.json b/data/finished/notifications-1687387281.json new file mode 100644 index 00000000..a51c2f35 --- /dev/null +++ b/data/finished/notifications-1687387281.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687390873.json b/data/finished/notifications-1687390873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687390873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687399474.json b/data/finished/notifications-1687399474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687399474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687402426.json b/data/finished/notifications-1687402426.json new file mode 100644 index 00000000..307ba6de --- /dev/null +++ b/data/finished/notifications-1687402426.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-07": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687405270.json b/data/finished/notifications-1687405270.json new file mode 100644 index 00000000..f1ed980f --- /dev/null +++ b/data/finished/notifications-1687405270.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-08": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687408896.json b/data/finished/notifications-1687408896.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687408896.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687412480.json b/data/finished/notifications-1687412480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687412480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687416092.json b/data/finished/notifications-1687416092.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687416092.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687419682.json b/data/finished/notifications-1687419682.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687419682.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687423285.json b/data/finished/notifications-1687423285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687423285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687426891.json b/data/finished/notifications-1687426891.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687426891.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687430499.json b/data/finished/notifications-1687430499.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687430499.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687434081.json b/data/finished/notifications-1687434081.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687434081.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687438495.json b/data/finished/notifications-1687438495.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687438495.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687441273.json b/data/finished/notifications-1687441273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687441273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687444915.json b/data/finished/notifications-1687444915.json new file mode 100644 index 00000000..c843dd81 --- /dev/null +++ b/data/finished/notifications-1687444915.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"COS - Cosley Lake (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687448496.json b/data/finished/notifications-1687448496.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687448496.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687452078.json b/data/finished/notifications-1687452078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687452078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687455669.json b/data/finished/notifications-1687455669.json new file mode 100644 index 00000000..b0442ceb --- /dev/null +++ b/data/finished/notifications-1687455669.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-01": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687459286.json b/data/finished/notifications-1687459286.json new file mode 100644 index 00000000..e179f91a --- /dev/null +++ b/data/finished/notifications-1687459286.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-24": {"remaining": 2, "total": 3}, "2023-07-27": {"remaining": 1, "total": 3}, "2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687462889.json b/data/finished/notifications-1687462889.json new file mode 100644 index 00000000..8b6e56b1 --- /dev/null +++ b/data/finished/notifications-1687462889.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 2, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687466487.json b/data/finished/notifications-1687466487.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687466487.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687470083.json b/data/finished/notifications-1687470083.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687470083.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687473715.json b/data/finished/notifications-1687473715.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687473715.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687477294.json b/data/finished/notifications-1687477294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687477294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687486601.json b/data/finished/notifications-1687486601.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687486601.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687490362.json b/data/finished/notifications-1687490362.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687490362.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687492033.json b/data/finished/notifications-1687492033.json new file mode 100644 index 00000000..1d531a5b --- /dev/null +++ b/data/finished/notifications-1687492033.json @@ -0,0 +1 @@ +{"zoekmcdonald@gmail.com": {"MCD - Lake McDonald": {"2023-07-01": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687495447.json b/data/finished/notifications-1687495447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687495447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687498887.json b/data/finished/notifications-1687498887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687498887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687502686.json b/data/finished/notifications-1687502686.json new file mode 100644 index 00000000..2ac4eaa8 --- /dev/null +++ b/data/finished/notifications-1687502686.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 3}}, "KIN - Kintla Lake": {"2023-07-01": {"remaining": 1, "total": 5}, "2023-07-02": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687506091.json b/data/finished/notifications-1687506091.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687506091.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687509818.json b/data/finished/notifications-1687509818.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687509818.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687513279.json b/data/finished/notifications-1687513279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687513279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687516972.json b/data/finished/notifications-1687516972.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687516972.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687520491.json b/data/finished/notifications-1687520491.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687520491.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687525297.json b/data/finished/notifications-1687525297.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687525297.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687527713.json b/data/finished/notifications-1687527713.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687527713.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687531294.json b/data/finished/notifications-1687531294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687531294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687534889.json b/data/finished/notifications-1687534889.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687534889.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687538830.json b/data/finished/notifications-1687538830.json new file mode 100644 index 00000000..c4e902fa --- /dev/null +++ b/data/finished/notifications-1687538830.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-28": {"remaining": 5, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687542067.json b/data/finished/notifications-1687542067.json new file mode 100644 index 00000000..d80ebef7 --- /dev/null +++ b/data/finished/notifications-1687542067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 4}, "2023-07-02": {"remaining": 2, "total": 4}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687545793.json b/data/finished/notifications-1687545793.json new file mode 100644 index 00000000..994cd3d3 --- /dev/null +++ b/data/finished/notifications-1687545793.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687549268.json b/data/finished/notifications-1687549268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687549268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687552880.json b/data/finished/notifications-1687552880.json new file mode 100644 index 00000000..6a0bef34 --- /dev/null +++ b/data/finished/notifications-1687552880.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-02": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687556469.json b/data/finished/notifications-1687556469.json new file mode 100644 index 00000000..c4b45351 --- /dev/null +++ b/data/finished/notifications-1687556469.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-11": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687560114.json b/data/finished/notifications-1687560114.json new file mode 100644 index 00000000..4bd9d2f0 --- /dev/null +++ b/data/finished/notifications-1687560114.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687563671.json b/data/finished/notifications-1687563671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687563671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687572872.json b/data/finished/notifications-1687572872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687572872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687576500.json b/data/finished/notifications-1687576500.json new file mode 100644 index 00000000..d2e9c9bf --- /dev/null +++ b/data/finished/notifications-1687576500.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687578340.json b/data/finished/notifications-1687578340.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687578340.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687581818.json b/data/finished/notifications-1687581818.json new file mode 100644 index 00000000..73b51482 --- /dev/null +++ b/data/finished/notifications-1687581818.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 4}}, "BOW - Bowman Lake": {"2023-07-09": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687585285.json b/data/finished/notifications-1687585285.json new file mode 100644 index 00000000..3abcf67e --- /dev/null +++ b/data/finished/notifications-1687585285.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-06": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687589022.json b/data/finished/notifications-1687589022.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687589022.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687592489.json b/data/finished/notifications-1687592489.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687592489.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687596159.json b/data/finished/notifications-1687596159.json new file mode 100644 index 00000000..16649622 --- /dev/null +++ b/data/finished/notifications-1687596159.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-12": {"remaining": 3, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-11": {"remaining": 1, "total": 6}}, "GRN - Granite Park (No Campfires)": {"2023-07-13": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687603302.json b/data/finished/notifications-1687603302.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687603302.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687606880.json b/data/finished/notifications-1687606880.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687606880.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687611554.json b/data/finished/notifications-1687611554.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687611554.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687614073.json b/data/finished/notifications-1687614073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687614073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687617694.json b/data/finished/notifications-1687617694.json new file mode 100644 index 00000000..054e9f67 --- /dev/null +++ b/data/finished/notifications-1687617694.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-05": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687621279.json b/data/finished/notifications-1687621279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687621279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687625126.json b/data/finished/notifications-1687625126.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687625126.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687628487.json b/data/finished/notifications-1687628487.json new file mode 100644 index 00000000..a85bc865 --- /dev/null +++ b/data/finished/notifications-1687628487.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687632149.json b/data/finished/notifications-1687632149.json new file mode 100644 index 00000000..e30055a8 --- /dev/null +++ b/data/finished/notifications-1687632149.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 4}}, "SLI - Slide Lake": {"2023-07-10": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687635690.json b/data/finished/notifications-1687635690.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687635690.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687639281.json b/data/finished/notifications-1687639281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687639281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687642873.json b/data/finished/notifications-1687642873.json new file mode 100644 index 00000000..ece943e1 --- /dev/null +++ b/data/finished/notifications-1687642873.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-10": {"remaining": 3, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687646485.json b/data/finished/notifications-1687646485.json new file mode 100644 index 00000000..2ddb0c77 --- /dev/null +++ b/data/finished/notifications-1687646485.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687650074.json b/data/finished/notifications-1687650074.json new file mode 100644 index 00000000..5f7531f0 --- /dev/null +++ b/data/finished/notifications-1687650074.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-25": {"remaining": 2, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-11": {"remaining": 3, "total": 4}, "2023-07-12": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687660194.json b/data/finished/notifications-1687660194.json new file mode 100644 index 00000000..afc87808 --- /dev/null +++ b/data/finished/notifications-1687660194.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-14": {"remaining": 3, "total": 4}, "2023-07-16": {"remaining": 2, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-15": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687663457.json b/data/finished/notifications-1687663457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687663457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687664949.json b/data/finished/notifications-1687664949.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687664949.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687668191.json b/data/finished/notifications-1687668191.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687668191.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687671678.json b/data/finished/notifications-1687671678.json new file mode 100644 index 00000000..f05997d4 --- /dev/null +++ b/data/finished/notifications-1687671678.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-01": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687675598.json b/data/finished/notifications-1687675598.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687675598.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687678882.json b/data/finished/notifications-1687678882.json new file mode 100644 index 00000000..f67e8c20 --- /dev/null +++ b/data/finished/notifications-1687678882.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687682552.json b/data/finished/notifications-1687682552.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687682552.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687686082.json b/data/finished/notifications-1687686082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687686082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687689723.json b/data/finished/notifications-1687689723.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687689723.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687693283.json b/data/finished/notifications-1687693283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687693283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687698019.json b/data/finished/notifications-1687698019.json new file mode 100644 index 00000000..cf23a056 --- /dev/null +++ b/data/finished/notifications-1687698019.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 4}, "2023-07-16": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687700490.json b/data/finished/notifications-1687700490.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687700490.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687704097.json b/data/finished/notifications-1687704097.json new file mode 100644 index 00000000..a0bcddc9 --- /dev/null +++ b/data/finished/notifications-1687704097.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687707688.json b/data/finished/notifications-1687707688.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687707688.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687711520.json b/data/finished/notifications-1687711520.json new file mode 100644 index 00000000..3c70ea9d --- /dev/null +++ b/data/finished/notifications-1687711520.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HEL - Helen Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687714884.json b/data/finished/notifications-1687714884.json new file mode 100644 index 00000000..c78b73da --- /dev/null +++ b/data/finished/notifications-1687714884.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687718550.json b/data/finished/notifications-1687718550.json new file mode 100644 index 00000000..9de2e6e1 --- /dev/null +++ b/data/finished/notifications-1687718550.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 4}}, "SLI - Slide Lake": {"2023-07-02": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687722085.json b/data/finished/notifications-1687722085.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687722085.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687725689.json b/data/finished/notifications-1687725689.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687725689.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687729285.json b/data/finished/notifications-1687729285.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687729285.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687732878.json b/data/finished/notifications-1687732878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687732878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687736479.json b/data/finished/notifications-1687736479.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687736479.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687746054.json b/data/finished/notifications-1687746054.json new file mode 100644 index 00000000..7c34f8b0 --- /dev/null +++ b/data/finished/notifications-1687746054.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-05": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687749743.json b/data/finished/notifications-1687749743.json new file mode 100644 index 00000000..c69b233c --- /dev/null +++ b/data/finished/notifications-1687749743.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-03": {"remaining": 1, "total": 5}, "2023-07-04": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-01": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687751280.json b/data/finished/notifications-1687751280.json new file mode 100644 index 00000000..54310891 --- /dev/null +++ b/data/finished/notifications-1687751280.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687754662.json b/data/finished/notifications-1687754662.json new file mode 100644 index 00000000..bfb93636 --- /dev/null +++ b/data/finished/notifications-1687754662.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-02": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687758111.json b/data/finished/notifications-1687758111.json new file mode 100644 index 00000000..7ccbfbc4 --- /dev/null +++ b/data/finished/notifications-1687758111.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-10": {"remaining": 2, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 4}}, "BOW - Bowman Lake": {"2023-07-04": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687761929.json b/data/finished/notifications-1687761929.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687761929.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687765279.json b/data/finished/notifications-1687765279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687765279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687769175.json b/data/finished/notifications-1687769175.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687769175.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687772470.json b/data/finished/notifications-1687772470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687772470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687776209.json b/data/finished/notifications-1687776209.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687776209.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687779685.json b/data/finished/notifications-1687779685.json new file mode 100644 index 00000000..8e0d31ea --- /dev/null +++ b/data/finished/notifications-1687779685.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687784532.json b/data/finished/notifications-1687784532.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687784532.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687786951.json b/data/finished/notifications-1687786951.json new file mode 100644 index 00000000..ef048af7 --- /dev/null +++ b/data/finished/notifications-1687786951.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}, "BOW - Bowman Lake": {"2023-07-01": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687790508.json b/data/finished/notifications-1687790508.json new file mode 100644 index 00000000..3eb3b76a --- /dev/null +++ b/data/finished/notifications-1687790508.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 2}, "2023-07-02": {"remaining": 1, "total": 2}}, "KIN - Kintla Lake": {"2023-07-15": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 2, "total": 5}, "2023-07-17": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687794079.json b/data/finished/notifications-1687794079.json new file mode 100644 index 00000000..c4acb99a --- /dev/null +++ b/data/finished/notifications-1687794079.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-10": {"remaining": 3, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 4}}, "KIN - Kintla Lake": {"2023-07-16": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-01": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687797996.json b/data/finished/notifications-1687797996.json new file mode 100644 index 00000000..a3055c30 --- /dev/null +++ b/data/finished/notifications-1687797996.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-12": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "FLA - Flattop (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "HEL - Helen Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 1}}, "POI - Poia Lake (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}, "zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-06": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687801266.json b/data/finished/notifications-1687801266.json new file mode 100644 index 00000000..b10ed471 --- /dev/null +++ b/data/finished/notifications-1687801266.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-12": {"remaining": 3, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687805043.json b/data/finished/notifications-1687805043.json new file mode 100644 index 00000000..6bd4d4d6 --- /dev/null +++ b/data/finished/notifications-1687805043.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-04": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687808488.json b/data/finished/notifications-1687808488.json new file mode 100644 index 00000000..dc3af58e --- /dev/null +++ b/data/finished/notifications-1687808488.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-15": {"remaining": 3, "total": 6}}, "JAN - Lake Janet": {"2023-07-16": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-01": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-17": {"remaining": 1, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-02": {"remaining": 2, "total": 2}}, "SLI - Slide Lake": {"2023-07-03": {"remaining": 1, "total": 2}, "2023-07-04": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687812099.json b/data/finished/notifications-1687812099.json new file mode 100644 index 00000000..b77b22ec --- /dev/null +++ b/data/finished/notifications-1687812099.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687815672.json b/data/finished/notifications-1687815672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687815672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687819282.json b/data/finished/notifications-1687819282.json new file mode 100644 index 00000000..96439f63 --- /dev/null +++ b/data/finished/notifications-1687819282.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687822887.json b/data/finished/notifications-1687822887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687822887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687832322.json b/data/finished/notifications-1687832322.json new file mode 100644 index 00000000..602f837e --- /dev/null +++ b/data/finished/notifications-1687832322.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-12": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-12": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 4}}, "HEL - Helen Lake (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 1}}, "BOW - Bowman Lake": {"2023-07-10": {"remaining": 1, "total": 5}, "2023-07-11": {"remaining": 1, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687835870.json b/data/finished/notifications-1687835870.json new file mode 100644 index 00000000..31160002 --- /dev/null +++ b/data/finished/notifications-1687835870.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-12": {"remaining": 3, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 2, "total": 2}}, "HEL - Helen Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687837565.json b/data/finished/notifications-1687837565.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687837565.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687840999.json b/data/finished/notifications-1687840999.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687840999.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687844470.json b/data/finished/notifications-1687844470.json new file mode 100644 index 00000000..d7375d5d --- /dev/null +++ b/data/finished/notifications-1687844470.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687848263.json b/data/finished/notifications-1687848263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687848263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687851677.json b/data/finished/notifications-1687851677.json new file mode 100644 index 00000000..783a00de --- /dev/null +++ b/data/finished/notifications-1687851677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687855424.json b/data/finished/notifications-1687855424.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687855424.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687858885.json b/data/finished/notifications-1687858885.json new file mode 100644 index 00000000..f7828515 --- /dev/null +++ b/data/finished/notifications-1687858885.json @@ -0,0 +1 @@ +{"zoekmcdonald@gmail.com": {"MAN - Many Glacier": {"2023-07-01": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687862586.json b/data/finished/notifications-1687862586.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687862586.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687866070.json b/data/finished/notifications-1687866070.json new file mode 100644 index 00000000..81f09037 --- /dev/null +++ b/data/finished/notifications-1687866070.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}, "WAT - Waterton River": {"2023-07-27": {"remaining": 2, "total": 4}}, "BOW - Bowman Lake": {"2023-07-28": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687870962.json b/data/finished/notifications-1687870962.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687870962.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687873308.json b/data/finished/notifications-1687873308.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687873308.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687876874.json b/data/finished/notifications-1687876874.json new file mode 100644 index 00000000..4f2d0489 --- /dev/null +++ b/data/finished/notifications-1687876874.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687880491.json b/data/finished/notifications-1687880491.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687880491.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687884402.json b/data/finished/notifications-1687884402.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687884402.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687887687.json b/data/finished/notifications-1687887687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687887687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687891404.json b/data/finished/notifications-1687891404.json new file mode 100644 index 00000000..f73d91ec --- /dev/null +++ b/data/finished/notifications-1687891404.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 4}, "2023-07-09": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-28": {"remaining": 4, "total": 6}, "2023-07-29": {"remaining": 1, "total": 6}, "2023-07-30": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687894871.json b/data/finished/notifications-1687894871.json new file mode 100644 index 00000000..23df1066 --- /dev/null +++ b/data/finished/notifications-1687894871.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-28": {"remaining": 5, "total": 6}, "2023-07-29": {"remaining": 2, "total": 6}, "2023-07-30": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687898493.json b/data/finished/notifications-1687898493.json new file mode 100644 index 00000000..bea294fd --- /dev/null +++ b/data/finished/notifications-1687898493.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687902069.json b/data/finished/notifications-1687902069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687902069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687905671.json b/data/finished/notifications-1687905671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687905671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687909279.json b/data/finished/notifications-1687909279.json new file mode 100644 index 00000000..8c5dc9e6 --- /dev/null +++ b/data/finished/notifications-1687909279.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 3}, "2023-07-08": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687918623.json b/data/finished/notifications-1687918623.json new file mode 100644 index 00000000..7f32fb47 --- /dev/null +++ b/data/finished/notifications-1687918623.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-05": {"remaining": 2, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-08": {"remaining": 2, "total": 3}}, "BOW - Bowman Lake": {"2023-07-01": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687921835.json b/data/finished/notifications-1687921835.json new file mode 100644 index 00000000..730fbe8d --- /dev/null +++ b/data/finished/notifications-1687921835.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-08": {"remaining": 1, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687923889.json b/data/finished/notifications-1687923889.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687923889.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687927411.json b/data/finished/notifications-1687927411.json new file mode 100644 index 00000000..cab0f90d --- /dev/null +++ b/data/finished/notifications-1687927411.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-04": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687930887.json b/data/finished/notifications-1687930887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687930887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687934677.json b/data/finished/notifications-1687934677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687934677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687938080.json b/data/finished/notifications-1687938080.json new file mode 100644 index 00000000..9b6750ed --- /dev/null +++ b/data/finished/notifications-1687938080.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687941824.json b/data/finished/notifications-1687941824.json new file mode 100644 index 00000000..b306b810 --- /dev/null +++ b/data/finished/notifications-1687941824.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-07": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687945290.json b/data/finished/notifications-1687945290.json new file mode 100644 index 00000000..398a8d47 --- /dev/null +++ b/data/finished/notifications-1687945290.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-10": {"remaining": 2, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687948976.json b/data/finished/notifications-1687948976.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687948976.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687952482.json b/data/finished/notifications-1687952482.json new file mode 100644 index 00000000..9d820292 --- /dev/null +++ b/data/finished/notifications-1687952482.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-18": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687957428.json b/data/finished/notifications-1687957428.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687957428.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687959704.json b/data/finished/notifications-1687959704.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687959704.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687963274.json b/data/finished/notifications-1687963274.json new file mode 100644 index 00000000..eca4d12d --- /dev/null +++ b/data/finished/notifications-1687963274.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-11": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687966878.json b/data/finished/notifications-1687966878.json new file mode 100644 index 00000000..a518f89d --- /dev/null +++ b/data/finished/notifications-1687966878.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-22": {"remaining": 2, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-01": {"remaining": 2, "total": 3}}, "WAT - Waterton River": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687970782.json b/data/finished/notifications-1687970782.json new file mode 100644 index 00000000..092fb874 --- /dev/null +++ b/data/finished/notifications-1687970782.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-08": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-09": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687974084.json b/data/finished/notifications-1687974084.json new file mode 100644 index 00000000..7e1f5086 --- /dev/null +++ b/data/finished/notifications-1687974084.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687977809.json b/data/finished/notifications-1687977809.json new file mode 100644 index 00000000..8f29f49b --- /dev/null +++ b/data/finished/notifications-1687977809.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-03": {"remaining": 2, "total": 4}, "2023-07-19": {"remaining": 2, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-04": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687981298.json b/data/finished/notifications-1687981298.json new file mode 100644 index 00000000..9660e514 --- /dev/null +++ b/data/finished/notifications-1687981298.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-01": {"remaining": 1, "total": 4}, "2023-07-18": {"remaining": 1, "total": 4}, "2023-07-19": {"remaining": 3, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-01": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687981601.json b/data/finished/notifications-1687981601.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687981601.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687984885.json b/data/finished/notifications-1687984885.json new file mode 100644 index 00000000..646d43c2 --- /dev/null +++ b/data/finished/notifications-1687984885.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-01": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687988491.json b/data/finished/notifications-1687988491.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1687988491.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1687992078.json b/data/finished/notifications-1687992078.json new file mode 100644 index 00000000..0946a671 --- /dev/null +++ b/data/finished/notifications-1687992078.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"JAN - Lake Janet": {"2023-07-13": {"remaining": 1, "total": 1}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 2}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 2, "total": 2}, "2023-07-04": {"remaining": 2, "total": 2}, "2023-07-05": {"remaining": 2, "total": 2}, "2023-07-06": {"remaining": 2, "total": 2}, "2023-07-07": {"remaining": 1, "total": 2}, "2023-07-08": {"remaining": 2, "total": 2}, "2023-07-09": {"remaining": 2, "total": 2}, "2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-13": {"remaining": 2, "total": 2}, "2023-07-14": {"remaining": 2, "total": 2}, "2023-07-15": {"remaining": 2, "total": 2}, "2023-07-16": {"remaining": 2, "total": 2}, "2023-07-17": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 1, "total": 2}, "2023-07-19": {"remaining": 2, "total": 2}, "2023-07-21": {"remaining": 2, "total": 2}, "2023-07-22": {"remaining": 2, "total": 2}, "2023-07-23": {"remaining": 1, "total": 2}, "2023-07-24": {"remaining": 2, "total": 2}, "2023-07-25": {"remaining": 2, "total": 2}, "2023-07-26": {"remaining": 1, "total": 2}, "2023-07-27": {"remaining": 2, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}, "2023-07-30": {"remaining": 2, "total": 2}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1687995677.json b/data/finished/notifications-1687995677.json new file mode 100644 index 00000000..e9db3442 --- /dev/null +++ b/data/finished/notifications-1687995677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-27": {"remaining": 1, "total": 3}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 1}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 1, "total": 1}, "2023-07-04": {"remaining": 1, "total": 1}, "2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}, "2023-07-08": {"remaining": 1, "total": 1}, "2023-07-09": {"remaining": 1, "total": 1}, "2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}, "2023-07-12": {"remaining": 1, "total": 1}, "2023-07-13": {"remaining": 1, "total": 1}, "2023-07-14": {"remaining": 1, "total": 1}, "2023-07-15": {"remaining": 1, "total": 1}, "2023-07-16": {"remaining": 1, "total": 1}, "2023-07-17": {"remaining": 1, "total": 1}, "2023-07-19": {"remaining": 1, "total": 1}, "2023-07-21": {"remaining": 1, "total": 1}, "2023-07-22": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}, "2023-07-25": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688004813.json b/data/finished/notifications-1688004813.json new file mode 100644 index 00000000..46c19239 --- /dev/null +++ b/data/finished/notifications-1688004813.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-10": {"remaining": 1, "total": 3}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}, "2023-07-28": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-11": {"remaining": 2, "total": 4}, "2023-07-15": {"remaining": 1, "total": 4}, "2023-07-21": {"remaining": 1, "total": 4}, "2023-07-25": {"remaining": 2, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-16": {"remaining": 2, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-16": {"remaining": 1, "total": 3}}, "GRN - Granite Park (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 4}, "2023-07-13": {"remaining": 1, "total": 4}, "2023-07-14": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688008097.json b/data/finished/notifications-1688008097.json new file mode 100644 index 00000000..103749e8 --- /dev/null +++ b/data/finished/notifications-1688008097.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-01": {"remaining": 1, "total": 5}, "2023-07-04": {"remaining": 2, "total": 5}, "2023-07-08": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688010210.json b/data/finished/notifications-1688010210.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688010210.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688013814.json b/data/finished/notifications-1688013814.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688013814.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688017280.json b/data/finished/notifications-1688017280.json new file mode 100644 index 00000000..36875c32 --- /dev/null +++ b/data/finished/notifications-1688017280.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-05": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688021080.json b/data/finished/notifications-1688021080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688021080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688024478.json b/data/finished/notifications-1688024478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688024478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688031693.json b/data/finished/notifications-1688031693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688031693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688035330.json b/data/finished/notifications-1688035330.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688035330.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688038897.json b/data/finished/notifications-1688038897.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688038897.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688043653.json b/data/finished/notifications-1688043653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688043653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688046075.json b/data/finished/notifications-1688046075.json new file mode 100644 index 00000000..06750b11 --- /dev/null +++ b/data/finished/notifications-1688046075.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688049692.json b/data/finished/notifications-1688049692.json new file mode 100644 index 00000000..d14a67ec --- /dev/null +++ b/data/finished/notifications-1688049692.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}, "WAT - Waterton River": {"2023-07-03": {"remaining": 3, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-01": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688053291.json b/data/finished/notifications-1688053291.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688053291.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688057115.json b/data/finished/notifications-1688057115.json new file mode 100644 index 00000000..08aae29b --- /dev/null +++ b/data/finished/notifications-1688057115.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688064212.json b/data/finished/notifications-1688064212.json new file mode 100644 index 00000000..837c4420 --- /dev/null +++ b/data/finished/notifications-1688064212.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-02": {"remaining": 2, "total": 6}}, "GAB - Gable Creek (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 4}, "2023-07-06": {"remaining": 2, "total": 4}, "2023-07-07": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688067669.json b/data/finished/notifications-1688067669.json new file mode 100644 index 00000000..cff18a86 --- /dev/null +++ b/data/finished/notifications-1688067669.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-02": {"remaining": 1, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688071283.json b/data/finished/notifications-1688071283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688071283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688074891.json b/data/finished/notifications-1688074891.json new file mode 100644 index 00000000..e1d3b6e5 --- /dev/null +++ b/data/finished/notifications-1688074891.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-14": {"remaining": 1, "total": 3}}, "FRA - Lake Francis (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 1}}, "JAN - Lake Janet": {"2023-07-05": {"remaining": 1, "total": 1}, "2023-07-06": {"remaining": 1, "total": 1}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688078478.json b/data/finished/notifications-1688078478.json new file mode 100644 index 00000000..d0c66696 --- /dev/null +++ b/data/finished/notifications-1688078478.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 1}}, "SLI - Slide Lake": {"2023-07-02": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688082082.json b/data/finished/notifications-1688082082.json new file mode 100644 index 00000000..14e158f6 --- /dev/null +++ b/data/finished/notifications-1688082082.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-10": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-11": {"remaining": 2, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 2}}, "FRA - Lake Francis (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-01": {"remaining": 3, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688091066.json b/data/finished/notifications-1688091066.json new file mode 100644 index 00000000..cbae84bd --- /dev/null +++ b/data/finished/notifications-1688091066.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 3, "total": 6}, "2023-07-26": {"remaining": 2, "total": 6}, "2023-07-27": {"remaining": 3, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 2}}, "COS - Cosley Lake (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688094306.json b/data/finished/notifications-1688094306.json new file mode 100644 index 00000000..d78c4d76 --- /dev/null +++ b/data/finished/notifications-1688094306.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-27": {"remaining": 4, "total": 6}, "2023-07-28": {"remaining": 4, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688096489.json b/data/finished/notifications-1688096489.json new file mode 100644 index 00000000..f1731b9a --- /dev/null +++ b/data/finished/notifications-1688096489.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-29": {"remaining": 1, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-01": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688100131.json b/data/finished/notifications-1688100131.json new file mode 100644 index 00000000..df86ce43 --- /dev/null +++ b/data/finished/notifications-1688100131.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-08": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-01": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688103686.json b/data/finished/notifications-1688103686.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688103686.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688107407.json b/data/finished/notifications-1688107407.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688107407.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688110888.json b/data/finished/notifications-1688110888.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688110888.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688114520.json b/data/finished/notifications-1688114520.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688114520.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688118087.json b/data/finished/notifications-1688118087.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688118087.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688121688.json b/data/finished/notifications-1688121688.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688121688.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688125277.json b/data/finished/notifications-1688125277.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688125277.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688130022.json b/data/finished/notifications-1688130022.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688130022.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688132487.json b/data/finished/notifications-1688132487.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688132487.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688136084.json b/data/finished/notifications-1688136084.json new file mode 100644 index 00000000..7e60b22b --- /dev/null +++ b/data/finished/notifications-1688136084.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "GOA - Goat Haunt Shelters": {"2023-07-26": {"remaining": 1, "total": 6}}, "GAB - Gable Creek (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688139678.json b/data/finished/notifications-1688139678.json new file mode 100644 index 00000000..062bb1a0 --- /dev/null +++ b/data/finished/notifications-1688139678.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-08": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688143499.json b/data/finished/notifications-1688143499.json new file mode 100644 index 00000000..d34f09dd --- /dev/null +++ b/data/finished/notifications-1688143499.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-04": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688146889.json b/data/finished/notifications-1688146889.json new file mode 100644 index 00000000..2788a655 --- /dev/null +++ b/data/finished/notifications-1688146889.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688150558.json b/data/finished/notifications-1688150558.json new file mode 100644 index 00000000..e07bed9a --- /dev/null +++ b/data/finished/notifications-1688150558.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-13": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688154077.json b/data/finished/notifications-1688154077.json new file mode 100644 index 00000000..c4a275bd --- /dev/null +++ b/data/finished/notifications-1688154077.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 4}}, "JAN - Lake Janet": {"2023-07-07": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688157697.json b/data/finished/notifications-1688157697.json new file mode 100644 index 00000000..b90c51da --- /dev/null +++ b/data/finished/notifications-1688157697.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688161268.json b/data/finished/notifications-1688161268.json new file mode 100644 index 00000000..b4dfbe66 --- /dev/null +++ b/data/finished/notifications-1688161268.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-02": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-03": {"remaining": 2, "total": 3}, "2023-07-06": {"remaining": 1, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688164891.json b/data/finished/notifications-1688164891.json new file mode 100644 index 00000000..f5d235f4 --- /dev/null +++ b/data/finished/notifications-1688164891.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 4}, "2023-07-12": {"remaining": 1, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-11": {"remaining": 2, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-03": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-05": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688168487.json b/data/finished/notifications-1688168487.json new file mode 100644 index 00000000..7f776e78 --- /dev/null +++ b/data/finished/notifications-1688168487.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 4}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 1}}, "GRN - Granite Park (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688178133.json b/data/finished/notifications-1688178133.json new file mode 100644 index 00000000..08c09030 --- /dev/null +++ b/data/finished/notifications-1688178133.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-28": {"remaining": 1, "total": 3}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "GAB - Gable Creek (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688181795.json b/data/finished/notifications-1688181795.json new file mode 100644 index 00000000..673de647 --- /dev/null +++ b/data/finished/notifications-1688181795.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688183216.json b/data/finished/notifications-1688183216.json new file mode 100644 index 00000000..e5e977c5 --- /dev/null +++ b/data/finished/notifications-1688183216.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-10": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688186511.json b/data/finished/notifications-1688186511.json new file mode 100644 index 00000000..50a6b1d8 --- /dev/null +++ b/data/finished/notifications-1688186511.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-05": {"remaining": 2, "total": 2}}}, "zoekmcdonald@gmail.com": {"QUA - Quartz Lake (No Campfires)": {"2023-07-02": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688190082.json b/data/finished/notifications-1688190082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688190082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688410141.json b/data/finished/notifications-1688410141.json new file mode 100644 index 00000000..174eaaa8 --- /dev/null +++ b/data/finished/notifications-1688410141.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-08": {"remaining": 1, "total": 3}, "2023-07-29": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}, "2023-07-13": {"remaining": 1, "total": 4}, "2023-07-14": {"remaining": 1, "total": 4}, "2023-07-15": {"remaining": 2, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 4, "total": 6}, "2023-07-15": {"remaining": 2, "total": 6}, "2023-07-23": {"remaining": 3, "total": 6}, "2023-07-25": {"remaining": 4, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-05": {"remaining": 4, "total": 4}, "2023-07-15": {"remaining": 1, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-14": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-06": {"remaining": 1, "total": 3}, "2023-07-10": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}, "SLI - Slide Lake": {"2023-07-05": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-05": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 3, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}, "2023-07-13": {"remaining": 3, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}}, "BOW - Bowman Lake": {"2023-07-06": {"remaining": 1, "total": 5}, "2023-07-08": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 1, "total": 5}, "2023-07-11": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688413278.json b/data/finished/notifications-1688413278.json new file mode 100644 index 00000000..b4a30dbe --- /dev/null +++ b/data/finished/notifications-1688413278.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-08": {"remaining": 1, "total": 3}, "2023-07-29": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}, "2023-07-13": {"remaining": 1, "total": 4}, "2023-07-14": {"remaining": 2, "total": 4}, "2023-07-15": {"remaining": 2, "total": 4}, "2023-07-16": {"remaining": 1, "total": 4}, "2023-07-23": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 4, "total": 6}, "2023-07-23": {"remaining": 3, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-05": {"remaining": 4, "total": 4}, "2023-07-15": {"remaining": 1, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-14": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-06": {"remaining": 1, "total": 3}, "2023-07-10": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}, "SLI - Slide Lake": {"2023-07-05": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-05": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 3, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}, "2023-07-13": {"remaining": 3, "total": 5}, "2023-07-21": {"remaining": 1, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}}, "BOW - Bowman Lake": {"2023-07-06": {"remaining": 1, "total": 5}, "2023-07-08": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 1, "total": 5}, "2023-07-11": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688416884.json b/data/finished/notifications-1688416884.json new file mode 100644 index 00000000..e1f5f96e --- /dev/null +++ b/data/finished/notifications-1688416884.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-08": {"remaining": 1, "total": 3}, "2023-07-29": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}, "2023-07-13": {"remaining": 1, "total": 4}, "2023-07-14": {"remaining": 1, "total": 4}, "2023-07-15": {"remaining": 2, "total": 4}, "2023-07-23": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 4, "total": 6}, "2023-07-15": {"remaining": 2, "total": 6}, "2023-07-23": {"remaining": 3, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-05": {"remaining": 4, "total": 4}, "2023-07-15": {"remaining": 1, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-14": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-06": {"remaining": 1, "total": 3}, "2023-07-10": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}, "SLI - Slide Lake": {"2023-07-05": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-05": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 3, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}, "2023-07-13": {"remaining": 3, "total": 5}, "2023-07-21": {"remaining": 1, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}}, "BOW - Bowman Lake": {"2023-07-06": {"remaining": 1, "total": 5}, "2023-07-08": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 1, "total": 5}, "2023-07-11": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688418183.json b/data/finished/notifications-1688418183.json new file mode 100644 index 00000000..2d58ec62 --- /dev/null +++ b/data/finished/notifications-1688418183.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-08": {"remaining": 1, "total": 3}, "2023-07-29": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-06": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 4}, "2023-07-13": {"remaining": 1, "total": 4}, "2023-07-14": {"remaining": 1, "total": 4}, "2023-07-15": {"remaining": 2, "total": 4}, "2023-07-23": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-08": {"remaining": 4, "total": 6}, "2023-07-15": {"remaining": 2, "total": 6}, "2023-07-23": {"remaining": 3, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-05": {"remaining": 4, "total": 4}, "2023-07-15": {"remaining": 1, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-14": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-06": {"remaining": 1, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 3}, "2023-07-06": {"remaining": 1, "total": 3}, "2023-07-10": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}, "SLI - Slide Lake": {"2023-07-05": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-05": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 3, "total": 5}, "2023-07-12": {"remaining": 1, "total": 5}, "2023-07-13": {"remaining": 3, "total": 5}, "2023-07-21": {"remaining": 1, "total": 5}, "2023-07-27": {"remaining": 2, "total": 5}}, "BOW - Bowman Lake": {"2023-07-08": {"remaining": 1, "total": 5}, "2023-07-09": {"remaining": 1, "total": 5}, "2023-07-11": {"remaining": 1, "total": 5}, "2023-07-16": {"remaining": 2, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688420472.json b/data/finished/notifications-1688420472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688420472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688424109.json b/data/finished/notifications-1688424109.json new file mode 100644 index 00000000..006eb5f9 --- /dev/null +++ b/data/finished/notifications-1688424109.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 2}}, "GAB - Gable Creek (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688427671.json b/data/finished/notifications-1688427671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688427671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688437070.json b/data/finished/notifications-1688437070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688437070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688440671.json b/data/finished/notifications-1688440671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688440671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688442392.json b/data/finished/notifications-1688442392.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688442392.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688445806.json b/data/finished/notifications-1688445806.json new file mode 100644 index 00000000..f7581de4 --- /dev/null +++ b/data/finished/notifications-1688445806.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-06": {"remaining": 1, "total": 3}, "2023-07-08": {"remaining": 2, "total": 3}}, "REY - Reynolds Creek": {"2023-07-07": {"remaining": 1, "total": 2}}, "GOA - Goat Haunt Shelters": {"2023-07-06": {"remaining": 4, "total": 6}, "2023-07-07": {"remaining": 2, "total": 6}, "2023-07-29": {"remaining": 1, "total": 6}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 1}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-05": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688449268.json b/data/finished/notifications-1688449268.json new file mode 100644 index 00000000..7c881b72 --- /dev/null +++ b/data/finished/notifications-1688449268.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-08": {"remaining": 1, "total": 3}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688453093.json b/data/finished/notifications-1688453093.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688453093.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688456465.json b/data/finished/notifications-1688456465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688456465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688460278.json b/data/finished/notifications-1688460278.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688460278.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688463676.json b/data/finished/notifications-1688463676.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688463676.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688467416.json b/data/finished/notifications-1688467416.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688467416.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688470874.json b/data/finished/notifications-1688470874.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688470874.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688475821.json b/data/finished/notifications-1688475821.json new file mode 100644 index 00000000..4017435a --- /dev/null +++ b/data/finished/notifications-1688475821.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-13": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688478112.json b/data/finished/notifications-1688478112.json new file mode 100644 index 00000000..9f1f37a6 --- /dev/null +++ b/data/finished/notifications-1688478112.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-11": {"remaining": 2, "total": 6}, "2023-07-12": {"remaining": 1, "total": 6}}, "SLI - Slide Lake": {"2023-07-08": {"remaining": 2, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688481669.json b/data/finished/notifications-1688481669.json new file mode 100644 index 00000000..1e242105 --- /dev/null +++ b/data/finished/notifications-1688481669.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-13": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688485289.json b/data/finished/notifications-1688485289.json new file mode 100644 index 00000000..b8ddcf39 --- /dev/null +++ b/data/finished/notifications-1688485289.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-12": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688489281.json b/data/finished/notifications-1688489281.json new file mode 100644 index 00000000..83317a1c --- /dev/null +++ b/data/finished/notifications-1688489281.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 2, "total": 6}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}, "2023-07-11": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-09": {"remaining": 4, "total": 5}, "2023-07-12": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688492483.json b/data/finished/notifications-1688492483.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688492483.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688496246.json b/data/finished/notifications-1688496246.json new file mode 100644 index 00000000..3460ee4f --- /dev/null +++ b/data/finished/notifications-1688496246.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-11": {"remaining": 1, "total": 6}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-06": {"remaining": 2, "total": 3}, "2023-07-07": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-06": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688499675.json b/data/finished/notifications-1688499675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688499675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688503267.json b/data/finished/notifications-1688503267.json new file mode 100644 index 00000000..bf880fe6 --- /dev/null +++ b/data/finished/notifications-1688503267.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-09": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-08": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688506874.json b/data/finished/notifications-1688506874.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688506874.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688510509.json b/data/finished/notifications-1688510509.json new file mode 100644 index 00000000..47a10b46 --- /dev/null +++ b/data/finished/notifications-1688510509.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-08": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 4}}, "FRA - Lake Francis (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 1}}, "GOA - Goat Haunt Shelters": {"2023-07-11": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688514066.json b/data/finished/notifications-1688514066.json new file mode 100644 index 00000000..bea294fd --- /dev/null +++ b/data/finished/notifications-1688514066.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688523364.json b/data/finished/notifications-1688523364.json new file mode 100644 index 00000000..8b5b95a1 --- /dev/null +++ b/data/finished/notifications-1688523364.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688527012.json b/data/finished/notifications-1688527012.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688527012.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688528809.json b/data/finished/notifications-1688528809.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688528809.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688532267.json b/data/finished/notifications-1688532267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688532267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688535686.json b/data/finished/notifications-1688535686.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688535686.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688539546.json b/data/finished/notifications-1688539546.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688539546.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688542893.json b/data/finished/notifications-1688542893.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688542893.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688546717.json b/data/finished/notifications-1688546717.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688546717.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688550070.json b/data/finished/notifications-1688550070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688550070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688553846.json b/data/finished/notifications-1688553846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688553846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688557278.json b/data/finished/notifications-1688557278.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688557278.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688562349.json b/data/finished/notifications-1688562349.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688562349.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688564631.json b/data/finished/notifications-1688564631.json new file mode 100644 index 00000000..a725ddfe --- /dev/null +++ b/data/finished/notifications-1688564631.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-07": {"remaining": 1, "total": 3}, "2023-07-08": {"remaining": 1, "total": 3}, "2023-07-09": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688568182.json b/data/finished/notifications-1688568182.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688568182.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688571702.json b/data/finished/notifications-1688571702.json new file mode 100644 index 00000000..e4187222 --- /dev/null +++ b/data/finished/notifications-1688571702.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-13": {"remaining": 1, "total": 6}, "2023-07-15": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688575732.json b/data/finished/notifications-1688575732.json new file mode 100644 index 00000000..9ae6405c --- /dev/null +++ b/data/finished/notifications-1688575732.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688578882.json b/data/finished/notifications-1688578882.json new file mode 100644 index 00000000..e7122313 --- /dev/null +++ b/data/finished/notifications-1688578882.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-07": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}, "HEL - Helen Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688582685.json b/data/finished/notifications-1688582685.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688582685.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688586087.json b/data/finished/notifications-1688586087.json new file mode 100644 index 00000000..fa5a74c1 --- /dev/null +++ b/data/finished/notifications-1688586087.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 4}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 1}}, "COS - Cosley Lake (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688589679.json b/data/finished/notifications-1688589679.json new file mode 100644 index 00000000..6b35dab4 --- /dev/null +++ b/data/finished/notifications-1688589679.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 3, "total": 6}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-08": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688593277.json b/data/finished/notifications-1688593277.json new file mode 100644 index 00000000..71c9881b --- /dev/null +++ b/data/finished/notifications-1688593277.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-22": {"remaining": 1, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 1, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-22": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688596933.json b/data/finished/notifications-1688596933.json new file mode 100644 index 00000000..c17e3dc5 --- /dev/null +++ b/data/finished/notifications-1688596933.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-24": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-12": {"remaining": 2, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688600465.json b/data/finished/notifications-1688600465.json new file mode 100644 index 00000000..917a8116 --- /dev/null +++ b/data/finished/notifications-1688600465.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-07": {"remaining": 1, "total": 3}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688609913.json b/data/finished/notifications-1688609913.json new file mode 100644 index 00000000..d05f1f9a --- /dev/null +++ b/data/finished/notifications-1688609913.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-16": {"remaining": 2, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-15": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-16": {"remaining": 1, "total": 5}, "2023-07-17": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688613519.json b/data/finished/notifications-1688613519.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688613519.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688615214.json b/data/finished/notifications-1688615214.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688615214.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688618671.json b/data/finished/notifications-1688618671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688618671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688622083.json b/data/finished/notifications-1688622083.json new file mode 100644 index 00000000..c6610149 --- /dev/null +++ b/data/finished/notifications-1688622083.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-11": {"remaining": 3, "total": 6}}, "FLA - Flattop (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688625993.json b/data/finished/notifications-1688625993.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688625993.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688629268.json b/data/finished/notifications-1688629268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688629268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688633108.json b/data/finished/notifications-1688633108.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688633108.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688636483.json b/data/finished/notifications-1688636483.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688636483.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688640233.json b/data/finished/notifications-1688640233.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688640233.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688643661.json b/data/finished/notifications-1688643661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688643661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688648742.json b/data/finished/notifications-1688648742.json new file mode 100644 index 00000000..f6afbbc9 --- /dev/null +++ b/data/finished/notifications-1688648742.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-19": {"remaining": 4, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688651198.json b/data/finished/notifications-1688651198.json new file mode 100644 index 00000000..9f1c78bb --- /dev/null +++ b/data/finished/notifications-1688651198.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-19": {"remaining": 5, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688654567.json b/data/finished/notifications-1688654567.json new file mode 100644 index 00000000..84838a67 --- /dev/null +++ b/data/finished/notifications-1688654567.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-11": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 2}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-08": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688658124.json b/data/finished/notifications-1688658124.json new file mode 100644 index 00000000..66f5df82 --- /dev/null +++ b/data/finished/notifications-1688658124.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688662093.json b/data/finished/notifications-1688662093.json new file mode 100644 index 00000000..ded50957 --- /dev/null +++ b/data/finished/notifications-1688662093.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-08": {"remaining": 1, "total": 4}, "2023-07-09": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}, "2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688665269.json b/data/finished/notifications-1688665269.json new file mode 100644 index 00000000..d44d0852 --- /dev/null +++ b/data/finished/notifications-1688665269.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 2}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-09": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688668934.json b/data/finished/notifications-1688668934.json new file mode 100644 index 00000000..062bb1a0 --- /dev/null +++ b/data/finished/notifications-1688668934.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-08": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688672469.json b/data/finished/notifications-1688672469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688672469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688676081.json b/data/finished/notifications-1688676081.json new file mode 100644 index 00000000..d71df5aa --- /dev/null +++ b/data/finished/notifications-1688676081.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-17": {"remaining": 2, "total": 4}, "2023-07-18": {"remaining": 1, "total": 4}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-15": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688679674.json b/data/finished/notifications-1688679674.json new file mode 100644 index 00000000..6fca265e --- /dev/null +++ b/data/finished/notifications-1688679674.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-08": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688683266.json b/data/finished/notifications-1688683266.json new file mode 100644 index 00000000..2332f0fd --- /dev/null +++ b/data/finished/notifications-1688683266.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-19": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688686880.json b/data/finished/notifications-1688686880.json new file mode 100644 index 00000000..b318e217 --- /dev/null +++ b/data/finished/notifications-1688686880.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-19": {"remaining": 3, "total": 4}, "2023-07-21": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688696184.json b/data/finished/notifications-1688696184.json new file mode 100644 index 00000000..b3523183 --- /dev/null +++ b/data/finished/notifications-1688696184.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-14": {"remaining": 1, "total": 5}, "2023-07-15": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688699479.json b/data/finished/notifications-1688699479.json new file mode 100644 index 00000000..eb115a69 --- /dev/null +++ b/data/finished/notifications-1688699479.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-10": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688701498.json b/data/finished/notifications-1688701498.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688701498.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688704956.json b/data/finished/notifications-1688704956.json new file mode 100644 index 00000000..1dfde39e --- /dev/null +++ b/data/finished/notifications-1688704956.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688708459.json b/data/finished/notifications-1688708459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688708459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688712259.json b/data/finished/notifications-1688712259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688712259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688715683.json b/data/finished/notifications-1688715683.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688715683.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688719384.json b/data/finished/notifications-1688719384.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688719384.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688722887.json b/data/finished/notifications-1688722887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688722887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688726548.json b/data/finished/notifications-1688726548.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688726548.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688730081.json b/data/finished/notifications-1688730081.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688730081.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688734855.json b/data/finished/notifications-1688734855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688734855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688737277.json b/data/finished/notifications-1688737277.json new file mode 100644 index 00000000..d255efb9 --- /dev/null +++ b/data/finished/notifications-1688737277.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688740871.json b/data/finished/notifications-1688740871.json new file mode 100644 index 00000000..a3781e6f --- /dev/null +++ b/data/finished/notifications-1688740871.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-12": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688744479.json b/data/finished/notifications-1688744479.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688744479.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688748364.json b/data/finished/notifications-1688748364.json new file mode 100644 index 00000000..343c5141 --- /dev/null +++ b/data/finished/notifications-1688748364.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-16": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688751666.json b/data/finished/notifications-1688751666.json new file mode 100644 index 00000000..bf5317b5 --- /dev/null +++ b/data/finished/notifications-1688751666.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"COS - Cosley Lake (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688755390.json b/data/finished/notifications-1688755390.json new file mode 100644 index 00000000..79f3ae48 --- /dev/null +++ b/data/finished/notifications-1688755390.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}, "2023-07-22": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688758874.json b/data/finished/notifications-1688758874.json new file mode 100644 index 00000000..679fe020 --- /dev/null +++ b/data/finished/notifications-1688758874.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688759882.json b/data/finished/notifications-1688759882.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688759882.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688762465.json b/data/finished/notifications-1688762465.json new file mode 100644 index 00000000..8fc72316 --- /dev/null +++ b/data/finished/notifications-1688762465.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-10": {"remaining": 4, "total": 6}, "2023-07-17": {"remaining": 3, "total": 6}, "2023-07-18": {"remaining": 3, "total": 6}, "2023-07-19": {"remaining": 4, "total": 6}}, "WAT - Waterton River": {"2023-07-09": {"remaining": 2, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-10": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688766071.json b/data/finished/notifications-1688766071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688766071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688769672.json b/data/finished/notifications-1688769672.json new file mode 100644 index 00000000..05bf8084 --- /dev/null +++ b/data/finished/notifications-1688769672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688773265.json b/data/finished/notifications-1688773265.json new file mode 100644 index 00000000..058a4be4 --- /dev/null +++ b/data/finished/notifications-1688773265.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-26": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688782527.json b/data/finished/notifications-1688782527.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688782527.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688786257.json b/data/finished/notifications-1688786257.json new file mode 100644 index 00000000..55c2d3ba --- /dev/null +++ b/data/finished/notifications-1688786257.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-27": {"remaining": 1, "total": 3}, "2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688787928.json b/data/finished/notifications-1688787928.json new file mode 100644 index 00000000..8edc8170 --- /dev/null +++ b/data/finished/notifications-1688787928.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-09": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688791317.json b/data/finished/notifications-1688791317.json new file mode 100644 index 00000000..966ae7b8 --- /dev/null +++ b/data/finished/notifications-1688791317.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-12": {"remaining": 2, "total": 6}, "2023-07-14": {"remaining": 4, "total": 6}}, "BOW - Bowman Lake": {"2023-07-15": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688794877.json b/data/finished/notifications-1688794877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688794877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688798519.json b/data/finished/notifications-1688798519.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688798519.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688802075.json b/data/finished/notifications-1688802075.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688802075.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688805674.json b/data/finished/notifications-1688805674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688805674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688809255.json b/data/finished/notifications-1688809255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688809255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688812859.json b/data/finished/notifications-1688812859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688812859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688816462.json b/data/finished/notifications-1688816462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688816462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688821067.json b/data/finished/notifications-1688821067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688821067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688823677.json b/data/finished/notifications-1688823677.json new file mode 100644 index 00000000..2c27975e --- /dev/null +++ b/data/finished/notifications-1688823677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-15": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688827264.json b/data/finished/notifications-1688827264.json new file mode 100644 index 00000000..9f84bfb1 --- /dev/null +++ b/data/finished/notifications-1688827264.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-11": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688830862.json b/data/finished/notifications-1688830862.json new file mode 100644 index 00000000..157f2c63 --- /dev/null +++ b/data/finished/notifications-1688830862.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-21": {"remaining": 1, "total": 3}, "2023-07-22": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-10": {"remaining": 1, "total": 2}}, "GOA - Goat Haunt Shelters": {"2023-07-10": {"remaining": 5, "total": 6}}, "GRN - Granite Park (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688834639.json b/data/finished/notifications-1688834639.json new file mode 100644 index 00000000..1aa6b35a --- /dev/null +++ b/data/finished/notifications-1688834639.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 3}, "2023-07-18": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688838118.json b/data/finished/notifications-1688838118.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688838118.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688841674.json b/data/finished/notifications-1688841674.json new file mode 100644 index 00000000..0752026c --- /dev/null +++ b/data/finished/notifications-1688841674.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688845260.json b/data/finished/notifications-1688845260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688845260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688848868.json b/data/finished/notifications-1688848868.json new file mode 100644 index 00000000..83b619fc --- /dev/null +++ b/data/finished/notifications-1688848868.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-22": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688852467.json b/data/finished/notifications-1688852467.json new file mode 100644 index 00000000..6bdf2c3b --- /dev/null +++ b/data/finished/notifications-1688852467.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688856075.json b/data/finished/notifications-1688856075.json new file mode 100644 index 00000000..01f673d7 --- /dev/null +++ b/data/finished/notifications-1688856075.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-11": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688859668.json b/data/finished/notifications-1688859668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688859668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688869584.json b/data/finished/notifications-1688869584.json new file mode 100644 index 00000000..eef03c1a --- /dev/null +++ b/data/finished/notifications-1688869584.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-16": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688872832.json b/data/finished/notifications-1688872832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688872832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688874296.json b/data/finished/notifications-1688874296.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688874296.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688877730.json b/data/finished/notifications-1688877730.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688877730.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688881268.json b/data/finished/notifications-1688881268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688881268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688884956.json b/data/finished/notifications-1688884956.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688884956.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688888460.json b/data/finished/notifications-1688888460.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688888460.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688892071.json b/data/finished/notifications-1688892071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688892071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688895663.json b/data/finished/notifications-1688895663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688895663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688899270.json b/data/finished/notifications-1688899270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688899270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688902876.json b/data/finished/notifications-1688902876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688902876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688907465.json b/data/finished/notifications-1688907465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688907465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688910066.json b/data/finished/notifications-1688910066.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688910066.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688913677.json b/data/finished/notifications-1688913677.json new file mode 100644 index 00000000..da51ea1a --- /dev/null +++ b/data/finished/notifications-1688913677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-24": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688917271.json b/data/finished/notifications-1688917271.json new file mode 100644 index 00000000..9f84bfb1 --- /dev/null +++ b/data/finished/notifications-1688917271.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-11": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688921052.json b/data/finished/notifications-1688921052.json new file mode 100644 index 00000000..72ff1b13 --- /dev/null +++ b/data/finished/notifications-1688921052.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-12": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688924466.json b/data/finished/notifications-1688924466.json new file mode 100644 index 00000000..5b247622 --- /dev/null +++ b/data/finished/notifications-1688924466.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-19": {"remaining": 3, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-11": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688928093.json b/data/finished/notifications-1688928093.json new file mode 100644 index 00000000..ef5e9772 --- /dev/null +++ b/data/finished/notifications-1688928093.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-22": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688931684.json b/data/finished/notifications-1688931684.json new file mode 100644 index 00000000..9e9a461b --- /dev/null +++ b/data/finished/notifications-1688931684.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-11": {"remaining": 1, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688935267.json b/data/finished/notifications-1688935267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688935267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688938881.json b/data/finished/notifications-1688938881.json new file mode 100644 index 00000000..8557e16b --- /dev/null +++ b/data/finished/notifications-1688938881.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688942482.json b/data/finished/notifications-1688942482.json new file mode 100644 index 00000000..1dd1e75f --- /dev/null +++ b/data/finished/notifications-1688942482.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-11": {"remaining": 1, "total": 3}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 2, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-11": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688946071.json b/data/finished/notifications-1688946071.json new file mode 100644 index 00000000..befcf49e --- /dev/null +++ b/data/finished/notifications-1688946071.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688955593.json b/data/finished/notifications-1688955593.json new file mode 100644 index 00000000..9b6750ed --- /dev/null +++ b/data/finished/notifications-1688955593.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688959119.json b/data/finished/notifications-1688959119.json new file mode 100644 index 00000000..5f92ac94 --- /dev/null +++ b/data/finished/notifications-1688959119.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688960768.json b/data/finished/notifications-1688960768.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688960768.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688964197.json b/data/finished/notifications-1688964197.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688964197.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688967689.json b/data/finished/notifications-1688967689.json new file mode 100644 index 00000000..962cbb30 --- /dev/null +++ b/data/finished/notifications-1688967689.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-14": {"remaining": 2, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688971462.json b/data/finished/notifications-1688971462.json new file mode 100644 index 00000000..10466bf6 --- /dev/null +++ b/data/finished/notifications-1688971462.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-14": {"remaining": 3, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1688974868.json b/data/finished/notifications-1688974868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688974868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688978657.json b/data/finished/notifications-1688978657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688978657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688982085.json b/data/finished/notifications-1688982085.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688982085.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688985798.json b/data/finished/notifications-1688985798.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688985798.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688989274.json b/data/finished/notifications-1688989274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688989274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688994173.json b/data/finished/notifications-1688994173.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1688994173.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1688996531.json b/data/finished/notifications-1688996531.json new file mode 100644 index 00000000..b12f6324 --- /dev/null +++ b/data/finished/notifications-1688996531.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-19": {"remaining": 5, "total": 6}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689000132.json b/data/finished/notifications-1689000132.json new file mode 100644 index 00000000..dfd95e1b --- /dev/null +++ b/data/finished/notifications-1689000132.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-13": {"remaining": 1, "total": 2}, "2023-07-17": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689003692.json b/data/finished/notifications-1689003692.json new file mode 100644 index 00000000..5382c6e1 --- /dev/null +++ b/data/finished/notifications-1689003692.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689007713.json b/data/finished/notifications-1689007713.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689007713.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689010868.json b/data/finished/notifications-1689010868.json new file mode 100644 index 00000000..7d270cdc --- /dev/null +++ b/data/finished/notifications-1689010868.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}, "HAW - Hawksbill (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 1}}, "FLA - Flattop (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-10": {"remaining": 4, "total": 4}, "2023-07-11": {"remaining": 4, "total": 4}, "2023-07-12": {"remaining": 2, "total": 4}, "2023-07-13": {"remaining": 2, "total": 4}, "2023-07-14": {"remaining": 3, "total": 4}, "2023-07-15": {"remaining": 1, "total": 4}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-10": {"remaining": 1, "total": 1}, "2023-07-11": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689014630.json b/data/finished/notifications-1689014630.json new file mode 100644 index 00000000..87c2455a --- /dev/null +++ b/data/finished/notifications-1689014630.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-14": {"remaining": 2, "total": 3}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 4, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 2}, "2023-07-13": {"remaining": 1, "total": 2}, "2023-07-14": {"remaining": 1, "total": 2}, "2023-07-15": {"remaining": 1, "total": 2}, "2023-07-16": {"remaining": 2, "total": 2}, "2023-07-17": {"remaining": 1, "total": 2}, "2023-07-19": {"remaining": 1, "total": 2}, "2023-07-21": {"remaining": 1, "total": 2}, "2023-07-22": {"remaining": 1, "total": 2}, "2023-07-23": {"remaining": 1, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}, "2023-07-26": {"remaining": 1, "total": 2}, "2023-07-27": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 1, "total": 2}, "2023-07-30": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-26": {"remaining": 2, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 3}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689018065.json b/data/finished/notifications-1689018065.json new file mode 100644 index 00000000..522f549b --- /dev/null +++ b/data/finished/notifications-1689018065.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-12": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689021672.json b/data/finished/notifications-1689021672.json new file mode 100644 index 00000000..dbab3079 --- /dev/null +++ b/data/finished/notifications-1689021672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-15": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-16": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-28": {"remaining": 5, "total": 6}, "2023-07-29": {"remaining": 1, "total": 6}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689025273.json b/data/finished/notifications-1689025273.json new file mode 100644 index 00000000..8bf4144b --- /dev/null +++ b/data/finished/notifications-1689025273.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-19": {"remaining": 2, "total": 4}}, "FRA - Lake Francis (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 1}}, "GOA - Goat Haunt Shelters": {"2023-07-29": {"remaining": 2, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-27": {"remaining": 2, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689028874.json b/data/finished/notifications-1689028874.json new file mode 100644 index 00000000..739796be --- /dev/null +++ b/data/finished/notifications-1689028874.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-12": {"remaining": 4, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-13": {"remaining": 3, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-14": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-15": {"remaining": 2, "total": 3}, "2023-07-21": {"remaining": 1, "total": 3}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-10": {"remaining": 2, "total": 2}, "2023-07-11": {"remaining": 2, "total": 2}, "2023-07-12": {"remaining": 2, "total": 2}, "2023-07-13": {"remaining": 2, "total": 2}, "2023-07-14": {"remaining": 2, "total": 2}, "2023-07-15": {"remaining": 2, "total": 2}, "2023-07-16": {"remaining": 1, "total": 2}, "2023-07-17": {"remaining": 2, "total": 2}, "2023-07-18": {"remaining": 2, "total": 2}, "2023-07-19": {"remaining": 2, "total": 2}, "2023-07-21": {"remaining": 2, "total": 2}, "2023-07-22": {"remaining": 2, "total": 2}, "2023-07-23": {"remaining": 2, "total": 2}, "2023-07-24": {"remaining": 2, "total": 2}, "2023-07-25": {"remaining": 2, "total": 2}, "2023-07-26": {"remaining": 2, "total": 2}, "2023-07-27": {"remaining": 2, "total": 2}, "2023-07-28": {"remaining": 2, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}, "2023-07-30": {"remaining": 2, "total": 2}}}, "bhone17@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-09-01": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689032480.json b/data/finished/notifications-1689032480.json new file mode 100644 index 00000000..46b7047d --- /dev/null +++ b/data/finished/notifications-1689032480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-12": {"remaining": 3, "total": 6}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689041378.json b/data/finished/notifications-1689041378.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689041378.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689044625.json b/data/finished/notifications-1689044625.json new file mode 100644 index 00000000..5658c3e5 --- /dev/null +++ b/data/finished/notifications-1689044625.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-15": {"remaining": 1, "total": 3}}, "KOO - Kootenai Lake": {"2023-07-17": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689046912.json b/data/finished/notifications-1689046912.json new file mode 100644 index 00000000..fe1618fc --- /dev/null +++ b/data/finished/notifications-1689046912.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689050546.json b/data/finished/notifications-1689050546.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689050546.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689054070.json b/data/finished/notifications-1689054070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689054070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689057854.json b/data/finished/notifications-1689057854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689057854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689061290.json b/data/finished/notifications-1689061290.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689061290.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689065035.json b/data/finished/notifications-1689065035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689065035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689068482.json b/data/finished/notifications-1689068482.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689068482.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689072147.json b/data/finished/notifications-1689072147.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689072147.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689075677.json b/data/finished/notifications-1689075677.json new file mode 100644 index 00000000..d7c2a437 --- /dev/null +++ b/data/finished/notifications-1689075677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689080548.json b/data/finished/notifications-1689080548.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689080548.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689082898.json b/data/finished/notifications-1689082898.json new file mode 100644 index 00000000..8fa48cbe --- /dev/null +++ b/data/finished/notifications-1689082898.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-14": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-14": {"remaining": 4, "total": 4}, "2023-07-15": {"remaining": 2, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}, "2023-07-17": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-13": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689086472.json b/data/finished/notifications-1689086472.json new file mode 100644 index 00000000..0faa0402 --- /dev/null +++ b/data/finished/notifications-1689086472.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 2}}, "KIN - Kintla Lake": {"2023-07-15": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689090062.json b/data/finished/notifications-1689090062.json new file mode 100644 index 00000000..f329a1c7 --- /dev/null +++ b/data/finished/notifications-1689090062.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-18": {"remaining": 1, "total": 5}, "2023-07-19": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689093982.json b/data/finished/notifications-1689093982.json new file mode 100644 index 00000000..4cba20fb --- /dev/null +++ b/data/finished/notifications-1689093982.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 2, "total": 6}}, "WAT - Waterton River": {"2023-07-27": {"remaining": 1, "total": 4}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689097281.json b/data/finished/notifications-1689097281.json new file mode 100644 index 00000000..1cad58df --- /dev/null +++ b/data/finished/notifications-1689097281.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 3, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-26": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-27": {"remaining": 2, "total": 4}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-25": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689100987.json b/data/finished/notifications-1689100987.json new file mode 100644 index 00000000..aa7e6d27 --- /dev/null +++ b/data/finished/notifications-1689100987.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-30": {"remaining": 1, "total": 6}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-15": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689104464.json b/data/finished/notifications-1689104464.json new file mode 100644 index 00000000..f4a4bb63 --- /dev/null +++ b/data/finished/notifications-1689104464.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689108063.json b/data/finished/notifications-1689108063.json new file mode 100644 index 00000000..71e283eb --- /dev/null +++ b/data/finished/notifications-1689108063.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"JAN - Lake Janet": {"2023-07-19": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-18": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689111682.json b/data/finished/notifications-1689111682.json new file mode 100644 index 00000000..ba46528f --- /dev/null +++ b/data/finished/notifications-1689111682.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-22": {"remaining": 1, "total": 6}}, "GAB - Gable Creek (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}, "2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689115260.json b/data/finished/notifications-1689115260.json new file mode 100644 index 00000000..9ac699b2 --- /dev/null +++ b/data/finished/notifications-1689115260.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}, "2023-07-23": {"remaining": 2, "total": 4}, "2023-07-24": {"remaining": 1, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-13": {"remaining": 1, "total": 2}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689118881.json b/data/finished/notifications-1689118881.json new file mode 100644 index 00000000..cc8f9d1c --- /dev/null +++ b/data/finished/notifications-1689118881.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-22": {"remaining": 2, "total": 6}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 3}, "2023-07-22": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-23": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689128169.json b/data/finished/notifications-1689128169.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689128169.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689131331.json b/data/finished/notifications-1689131331.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689131331.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689133428.json b/data/finished/notifications-1689133428.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689133428.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689136970.json b/data/finished/notifications-1689136970.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689136970.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689140455.json b/data/finished/notifications-1689140455.json new file mode 100644 index 00000000..9bb86cd3 --- /dev/null +++ b/data/finished/notifications-1689140455.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689144236.json b/data/finished/notifications-1689144236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689144236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689147660.json b/data/finished/notifications-1689147660.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689147660.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689151394.json b/data/finished/notifications-1689151394.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689151394.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689154861.json b/data/finished/notifications-1689154861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689154861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689158562.json b/data/finished/notifications-1689158562.json new file mode 100644 index 00000000..ae505627 --- /dev/null +++ b/data/finished/notifications-1689158562.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689162062.json b/data/finished/notifications-1689162062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689162062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689167004.json b/data/finished/notifications-1689167004.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689167004.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689169318.json b/data/finished/notifications-1689169318.json new file mode 100644 index 00000000..26d1a535 --- /dev/null +++ b/data/finished/notifications-1689169318.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-16": {"remaining": 2, "total": 2}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689172871.json b/data/finished/notifications-1689172871.json new file mode 100644 index 00000000..c1084c58 --- /dev/null +++ b/data/finished/notifications-1689172871.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}}, "KOO - Kootenai Lake": {"2023-07-14": {"remaining": 2, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689176492.json b/data/finished/notifications-1689176492.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689176492.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689180357.json b/data/finished/notifications-1689180357.json new file mode 100644 index 00000000..a9c44e48 --- /dev/null +++ b/data/finished/notifications-1689180357.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"COS - Cosley Lake (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689183674.json b/data/finished/notifications-1689183674.json new file mode 100644 index 00000000..cd8a9169 --- /dev/null +++ b/data/finished/notifications-1689183674.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-16": {"remaining": 1, "total": 4}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689187391.json b/data/finished/notifications-1689187391.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689187391.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689190870.json b/data/finished/notifications-1689190870.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689190870.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689194468.json b/data/finished/notifications-1689194468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689194468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689198067.json b/data/finished/notifications-1689198067.json new file mode 100644 index 00000000..633dc91a --- /dev/null +++ b/data/finished/notifications-1689198067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-15": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689201665.json b/data/finished/notifications-1689201665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689201665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689205276.json b/data/finished/notifications-1689205276.json new file mode 100644 index 00000000..96d8543e --- /dev/null +++ b/data/finished/notifications-1689205276.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-15": {"remaining": 3, "total": 4}, "2023-07-16": {"remaining": 2, "total": 4}, "2023-07-17": {"remaining": 1, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-18": {"remaining": 2, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689214776.json b/data/finished/notifications-1689214776.json new file mode 100644 index 00000000..aab4d5bc --- /dev/null +++ b/data/finished/notifications-1689214776.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 3}, "2023-07-18": {"remaining": 1, "total": 3}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-14": {"remaining": 1, "total": 2}, "2023-07-22": {"remaining": 1, "total": 2}, "2023-07-28": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 1, "total": 2}}, "KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689218220.json b/data/finished/notifications-1689218220.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689218220.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689219886.json b/data/finished/notifications-1689219886.json new file mode 100644 index 00000000..02e1d06a --- /dev/null +++ b/data/finished/notifications-1689219886.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-23": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689223367.json b/data/finished/notifications-1689223367.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689223367.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689226876.json b/data/finished/notifications-1689226876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689226876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689230678.json b/data/finished/notifications-1689230678.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689230678.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689234072.json b/data/finished/notifications-1689234072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689234072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689237782.json b/data/finished/notifications-1689237782.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689237782.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689241275.json b/data/finished/notifications-1689241275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689241275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689244888.json b/data/finished/notifications-1689244888.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689244888.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689248481.json b/data/finished/notifications-1689248481.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689248481.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689253401.json b/data/finished/notifications-1689253401.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689253401.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689255863.json b/data/finished/notifications-1689255863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689255863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689259290.json b/data/finished/notifications-1689259290.json new file mode 100644 index 00000000..a0ca1bf2 --- /dev/null +++ b/data/finished/notifications-1689259290.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-15": {"remaining": 2, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689262860.json b/data/finished/notifications-1689262860.json new file mode 100644 index 00000000..ee6633e8 --- /dev/null +++ b/data/finished/notifications-1689262860.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-24": {"remaining": 2, "total": 4}}, "HEL - Helen Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689266715.json b/data/finished/notifications-1689266715.json new file mode 100644 index 00000000..4255dd33 --- /dev/null +++ b/data/finished/notifications-1689266715.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-28": {"remaining": 1, "total": 4}, "2023-07-29": {"remaining": 1, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 4}}, "SLI - Slide Lake": {"2023-07-15": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-26": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"BOW - Bowman Lake": {"2023-07-26": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689270088.json b/data/finished/notifications-1689270088.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689270088.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689273793.json b/data/finished/notifications-1689273793.json new file mode 100644 index 00000000..1df8f7a3 --- /dev/null +++ b/data/finished/notifications-1689273793.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}, "KIN - Kintla Lake": {"2023-07-29": {"remaining": 1, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689277271.json b/data/finished/notifications-1689277271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689277271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689280873.json b/data/finished/notifications-1689280873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689280873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689284469.json b/data/finished/notifications-1689284469.json new file mode 100644 index 00000000..128fa3f4 --- /dev/null +++ b/data/finished/notifications-1689284469.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 1}}, "JAN - Lake Janet": {"2023-07-15": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-27": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-29": {"remaining": 2, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-15": {"remaining": 2, "total": 2}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689288085.json b/data/finished/notifications-1689288085.json new file mode 100644 index 00000000..43686136 --- /dev/null +++ b/data/finished/notifications-1689288085.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-16": {"remaining": 2, "total": 4}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-15": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-16": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689291681.json b/data/finished/notifications-1689291681.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689291681.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689301117.json b/data/finished/notifications-1689301117.json new file mode 100644 index 00000000..1d3dd6c0 --- /dev/null +++ b/data/finished/notifications-1689301117.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-21": {"remaining": 1, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689304344.json b/data/finished/notifications-1689304344.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689304344.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689306252.json b/data/finished/notifications-1689306252.json new file mode 100644 index 00000000..aace82fa --- /dev/null +++ b/data/finished/notifications-1689306252.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689309765.json b/data/finished/notifications-1689309765.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689309765.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689313265.json b/data/finished/notifications-1689313265.json new file mode 100644 index 00000000..1dceba99 --- /dev/null +++ b/data/finished/notifications-1689313265.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-15": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689317057.json b/data/finished/notifications-1689317057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689317057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689320457.json b/data/finished/notifications-1689320457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689320457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689324161.json b/data/finished/notifications-1689324161.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689324161.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689327672.json b/data/finished/notifications-1689327672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689327672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689331294.json b/data/finished/notifications-1689331294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689331294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689334860.json b/data/finished/notifications-1689334860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689334860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689339664.json b/data/finished/notifications-1689339664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689339664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689342072.json b/data/finished/notifications-1689342072.json new file mode 100644 index 00000000..5888a1e0 --- /dev/null +++ b/data/finished/notifications-1689342072.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689345672.json b/data/finished/notifications-1689345672.json new file mode 100644 index 00000000..d9873cd1 --- /dev/null +++ b/data/finished/notifications-1689345672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 1}}, "GRN - Granite Park (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689349277.json b/data/finished/notifications-1689349277.json new file mode 100644 index 00000000..ef856dec --- /dev/null +++ b/data/finished/notifications-1689349277.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689353098.json b/data/finished/notifications-1689353098.json new file mode 100644 index 00000000..5fb80b2a --- /dev/null +++ b/data/finished/notifications-1689353098.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689356476.json b/data/finished/notifications-1689356476.json new file mode 100644 index 00000000..c7d4a0da --- /dev/null +++ b/data/finished/notifications-1689356476.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 4}, "2023-07-21": {"remaining": 1, "total": 4}, "2023-07-22": {"remaining": 2, "total": 4}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 1}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689360157.json b/data/finished/notifications-1689360157.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689360157.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689363666.json b/data/finished/notifications-1689363666.json new file mode 100644 index 00000000..de718c37 --- /dev/null +++ b/data/finished/notifications-1689363666.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-17": {"remaining": 2, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-16": {"remaining": 2, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689367283.json b/data/finished/notifications-1689367283.json new file mode 100644 index 00000000..a8c4a0e8 --- /dev/null +++ b/data/finished/notifications-1689367283.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HEL - Helen Lake (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689370889.json b/data/finished/notifications-1689370889.json new file mode 100644 index 00000000..4172109f --- /dev/null +++ b/data/finished/notifications-1689370889.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 4}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689374474.json b/data/finished/notifications-1689374474.json new file mode 100644 index 00000000..c09573ad --- /dev/null +++ b/data/finished/notifications-1689374474.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689378078.json b/data/finished/notifications-1689378078.json new file mode 100644 index 00000000..c3549e53 --- /dev/null +++ b/data/finished/notifications-1689378078.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-17": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-16": {"remaining": 3, "total": 4}}, "BOW - Bowman Lake": {"2023-07-17": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689387469.json b/data/finished/notifications-1689387469.json new file mode 100644 index 00000000..03a14d76 --- /dev/null +++ b/data/finished/notifications-1689387469.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-16": {"remaining": 1, "total": 3}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-28": {"remaining": 2, "total": 2}, "2023-07-29": {"remaining": 2, "total": 2}}, "KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689391178.json b/data/finished/notifications-1689391178.json new file mode 100644 index 00000000..1ed0376b --- /dev/null +++ b/data/finished/notifications-1689391178.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-17": {"remaining": 2, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689392721.json b/data/finished/notifications-1689392721.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689392721.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689396112.json b/data/finished/notifications-1689396112.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689396112.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689399670.json b/data/finished/notifications-1689399670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689399670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689403352.json b/data/finished/notifications-1689403352.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689403352.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689406871.json b/data/finished/notifications-1689406871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689406871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689410465.json b/data/finished/notifications-1689410465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689410465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689414069.json b/data/finished/notifications-1689414069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689414069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689417661.json b/data/finished/notifications-1689417661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689417661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689421271.json b/data/finished/notifications-1689421271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689421271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689425856.json b/data/finished/notifications-1689425856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689425856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689428468.json b/data/finished/notifications-1689428468.json new file mode 100644 index 00000000..028c47aa --- /dev/null +++ b/data/finished/notifications-1689428468.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-19": {"remaining": 2, "total": 4}}, "HEL - Helen Lake (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689432072.json b/data/finished/notifications-1689432072.json new file mode 100644 index 00000000..01db0875 --- /dev/null +++ b/data/finished/notifications-1689432072.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-17": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 2}, "2023-07-18": {"remaining": 1, "total": 2}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689435675.json b/data/finished/notifications-1689435675.json new file mode 100644 index 00000000..af074ae0 --- /dev/null +++ b/data/finished/notifications-1689435675.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-19": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 1}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}, "2023-07-19": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-24": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-23": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689439442.json b/data/finished/notifications-1689439442.json new file mode 100644 index 00000000..90ffa114 --- /dev/null +++ b/data/finished/notifications-1689439442.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-17": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689442874.json b/data/finished/notifications-1689442874.json new file mode 100644 index 00000000..b121ae5e --- /dev/null +++ b/data/finished/notifications-1689442874.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-25": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689446465.json b/data/finished/notifications-1689446465.json new file mode 100644 index 00000000..d62360ca --- /dev/null +++ b/data/finished/notifications-1689446465.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-30": {"remaining": 1, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689450074.json b/data/finished/notifications-1689450074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689450074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689453659.json b/data/finished/notifications-1689453659.json new file mode 100644 index 00000000..b34cfc4a --- /dev/null +++ b/data/finished/notifications-1689453659.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689457263.json b/data/finished/notifications-1689457263.json new file mode 100644 index 00000000..e6aa1b27 --- /dev/null +++ b/data/finished/notifications-1689457263.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-17": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689460866.json b/data/finished/notifications-1689460866.json new file mode 100644 index 00000000..bfeaafda --- /dev/null +++ b/data/finished/notifications-1689460866.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-25": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689464468.json b/data/finished/notifications-1689464468.json new file mode 100644 index 00000000..a663efd2 --- /dev/null +++ b/data/finished/notifications-1689464468.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-17": {"remaining": 3, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 2, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-17": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-22": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-22": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689474603.json b/data/finished/notifications-1689474603.json new file mode 100644 index 00000000..d2e9c9bf --- /dev/null +++ b/data/finished/notifications-1689474603.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689477744.json b/data/finished/notifications-1689477744.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689477744.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689479189.json b/data/finished/notifications-1689479189.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689479189.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689482486.json b/data/finished/notifications-1689482486.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689482486.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689486072.json b/data/finished/notifications-1689486072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689486072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689489743.json b/data/finished/notifications-1689489743.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689489743.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689493257.json b/data/finished/notifications-1689493257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689493257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689496864.json b/data/finished/notifications-1689496864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689496864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689500482.json b/data/finished/notifications-1689500482.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689500482.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689504070.json b/data/finished/notifications-1689504070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689504070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689507677.json b/data/finished/notifications-1689507677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689507677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689512239.json b/data/finished/notifications-1689512239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689512239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689514867.json b/data/finished/notifications-1689514867.json new file mode 100644 index 00000000..79a885f5 --- /dev/null +++ b/data/finished/notifications-1689514867.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 4}, "2023-07-19": {"remaining": 1, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689518464.json b/data/finished/notifications-1689518464.json new file mode 100644 index 00000000..ec7196df --- /dev/null +++ b/data/finished/notifications-1689518464.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-18": {"remaining": 2, "total": 3}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 3, "total": 4}, "2023-07-24": {"remaining": 2, "total": 4}}, "WAT - Waterton River": {"2023-07-25": {"remaining": 1, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-19": {"remaining": 2, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-18": {"remaining": 2, "total": 3}}, "GAB - Gable Creek (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 2}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689522072.json b/data/finished/notifications-1689522072.json new file mode 100644 index 00000000..cc878424 --- /dev/null +++ b/data/finished/notifications-1689522072.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689525859.json b/data/finished/notifications-1689525859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689525859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689529266.json b/data/finished/notifications-1689529266.json new file mode 100644 index 00000000..3a3cb754 --- /dev/null +++ b/data/finished/notifications-1689529266.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-18": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689532894.json b/data/finished/notifications-1689532894.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689532894.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689536476.json b/data/finished/notifications-1689536476.json new file mode 100644 index 00000000..0290c22f --- /dev/null +++ b/data/finished/notifications-1689536476.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}, "2023-07-22": {"remaining": 3, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}, "2023-07-22": {"remaining": 1, "total": 2}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 3, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689540092.json b/data/finished/notifications-1689540092.json new file mode 100644 index 00000000..95fe443e --- /dev/null +++ b/data/finished/notifications-1689540092.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-19": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689543672.json b/data/finished/notifications-1689543672.json new file mode 100644 index 00000000..00086887 --- /dev/null +++ b/data/finished/notifications-1689543672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689547258.json b/data/finished/notifications-1689547258.json new file mode 100644 index 00000000..0ca7c97c --- /dev/null +++ b/data/finished/notifications-1689547258.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689550878.json b/data/finished/notifications-1689550878.json new file mode 100644 index 00000000..56f1b8b2 --- /dev/null +++ b/data/finished/notifications-1689550878.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-18": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689560555.json b/data/finished/notifications-1689560555.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689560555.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689564001.json b/data/finished/notifications-1689564001.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689564001.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689565560.json b/data/finished/notifications-1689565560.json new file mode 100644 index 00000000..415a74f6 --- /dev/null +++ b/data/finished/notifications-1689565560.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-23": {"remaining": 1, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}, "2023-07-25": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689568968.json b/data/finished/notifications-1689568968.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689568968.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689572470.json b/data/finished/notifications-1689572470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689572470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689576271.json b/data/finished/notifications-1689576271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689576271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689579678.json b/data/finished/notifications-1689579678.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689579678.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689583408.json b/data/finished/notifications-1689583408.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689583408.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689586863.json b/data/finished/notifications-1689586863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689586863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689590570.json b/data/finished/notifications-1689590570.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689590570.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689594070.json b/data/finished/notifications-1689594070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689594070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689599057.json b/data/finished/notifications-1689599057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689599057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689601351.json b/data/finished/notifications-1689601351.json new file mode 100644 index 00000000..a430157e --- /dev/null +++ b/data/finished/notifications-1689601351.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-21": {"remaining": 2, "total": 6}, "2023-07-22": {"remaining": 1, "total": 6}, "2023-07-23": {"remaining": 4, "total": 6}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689604888.json b/data/finished/notifications-1689604888.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689604888.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689608468.json b/data/finished/notifications-1689608468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689608468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689612415.json b/data/finished/notifications-1689612415.json new file mode 100644 index 00000000..9ada7254 --- /dev/null +++ b/data/finished/notifications-1689612415.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-21": {"remaining": 1, "total": 3}}, "REY - Reynolds Creek": {"2023-07-22": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689615672.json b/data/finished/notifications-1689615672.json new file mode 100644 index 00000000..82322512 --- /dev/null +++ b/data/finished/notifications-1689615672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689619360.json b/data/finished/notifications-1689619360.json new file mode 100644 index 00000000..eb121405 --- /dev/null +++ b/data/finished/notifications-1689619360.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}}, "MOL - Mokowanis Lake (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 1}}, "GAB - Gable Creek (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-26": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689622887.json b/data/finished/notifications-1689622887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689622887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689626481.json b/data/finished/notifications-1689626481.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689626481.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689630081.json b/data/finished/notifications-1689630081.json new file mode 100644 index 00000000..dcf17060 --- /dev/null +++ b/data/finished/notifications-1689630081.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-24": {"remaining": 1, "total": 3}}, "STO - Stony Indian Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689633667.json b/data/finished/notifications-1689633667.json new file mode 100644 index 00000000..e11c905d --- /dev/null +++ b/data/finished/notifications-1689633667.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}, "WAT - Waterton River": {"2023-07-19": {"remaining": 2, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689637264.json b/data/finished/notifications-1689637264.json new file mode 100644 index 00000000..f1be0c2b --- /dev/null +++ b/data/finished/notifications-1689637264.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-24": {"remaining": 2, "total": 2}, "2023-07-25": {"remaining": 2, "total": 2}, "2023-07-26": {"remaining": 1, "total": 2}, "2023-07-27": {"remaining": 1, "total": 2}}, "KIN - Kintla Lake": {"2023-07-19": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689647073.json b/data/finished/notifications-1689647073.json new file mode 100644 index 00000000..819e8d1f --- /dev/null +++ b/data/finished/notifications-1689647073.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"JAN - Lake Janet": {"2023-07-29": {"remaining": 1, "total": 1}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 2, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-24": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689649733.json b/data/finished/notifications-1689649733.json new file mode 100644 index 00000000..509ab99f --- /dev/null +++ b/data/finished/notifications-1689649733.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-19": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-19": {"remaining": 3, "total": 3}}, "BOW - Bowman Lake": {"2023-07-30": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689651717.json b/data/finished/notifications-1689651717.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689651717.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689655273.json b/data/finished/notifications-1689655273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689655273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689658865.json b/data/finished/notifications-1689658865.json new file mode 100644 index 00000000..fe127552 --- /dev/null +++ b/data/finished/notifications-1689658865.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-24": {"remaining": 1, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689662510.json b/data/finished/notifications-1689662510.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689662510.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689666055.json b/data/finished/notifications-1689666055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689666055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689669696.json b/data/finished/notifications-1689669696.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689669696.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689673276.json b/data/finished/notifications-1689673276.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689673276.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689676871.json b/data/finished/notifications-1689676871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689676871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689680469.json b/data/finished/notifications-1689680469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689680469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689685139.json b/data/finished/notifications-1689685139.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689685139.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689687677.json b/data/finished/notifications-1689687677.json new file mode 100644 index 00000000..ebe7fe55 --- /dev/null +++ b/data/finished/notifications-1689687677.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-24": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-21": {"remaining": 3, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-21": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-22": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689691268.json b/data/finished/notifications-1689691268.json new file mode 100644 index 00000000..cf7fdd2e --- /dev/null +++ b/data/finished/notifications-1689691268.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"JAN - Lake Janet": {"2023-07-21": {"remaining": 1, "total": 1}}}, "kylesiverts@gmail.com": {"MAN - Many Glacier": {"2023-07-26": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689694883.json b/data/finished/notifications-1689694883.json new file mode 100644 index 00000000..1acf3afb --- /dev/null +++ b/data/finished/notifications-1689694883.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-28": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 3, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-21": {"remaining": 4, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-30": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 2}, "2023-07-24": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}}}, "kylesiverts@gmail.com": {"MAN - Many Glacier": {"2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689698716.json b/data/finished/notifications-1689698716.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689698716.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689702080.json b/data/finished/notifications-1689702080.json new file mode 100644 index 00000000..547ebd61 --- /dev/null +++ b/data/finished/notifications-1689702080.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-26": {"remaining": 3, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}, "2023-07-27": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689705718.json b/data/finished/notifications-1689705718.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689705718.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689709303.json b/data/finished/notifications-1689709303.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689709303.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689712875.json b/data/finished/notifications-1689712875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689712875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689716482.json b/data/finished/notifications-1689716482.json new file mode 100644 index 00000000..d122e917 --- /dev/null +++ b/data/finished/notifications-1689716482.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689720067.json b/data/finished/notifications-1689720067.json new file mode 100644 index 00000000..78ca5611 --- /dev/null +++ b/data/finished/notifications-1689720067.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689723664.json b/data/finished/notifications-1689723664.json new file mode 100644 index 00000000..160875ec --- /dev/null +++ b/data/finished/notifications-1689723664.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689736424.json b/data/finished/notifications-1689736424.json new file mode 100644 index 00000000..eac3bd24 --- /dev/null +++ b/data/finished/notifications-1689736424.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689739512.json b/data/finished/notifications-1689739512.json new file mode 100644 index 00000000..40c1d095 --- /dev/null +++ b/data/finished/notifications-1689739512.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689741695.json b/data/finished/notifications-1689741695.json new file mode 100644 index 00000000..24902afb --- /dev/null +++ b/data/finished/notifications-1689741695.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689745273.json b/data/finished/notifications-1689745273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689745273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689748883.json b/data/finished/notifications-1689748883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689748883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689752470.json b/data/finished/notifications-1689752470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689752470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689756072.json b/data/finished/notifications-1689756072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689756072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689759683.json b/data/finished/notifications-1689759683.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689759683.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689763276.json b/data/finished/notifications-1689763276.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689763276.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689766878.json b/data/finished/notifications-1689766878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689766878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689771345.json b/data/finished/notifications-1689771345.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689771345.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689774068.json b/data/finished/notifications-1689774068.json new file mode 100644 index 00000000..47f607d4 --- /dev/null +++ b/data/finished/notifications-1689774068.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}, "BOW - Bowman Lake": {"2023-07-21": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689777670.json b/data/finished/notifications-1689777670.json new file mode 100644 index 00000000..65b1f84e --- /dev/null +++ b/data/finished/notifications-1689777670.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689781265.json b/data/finished/notifications-1689781265.json new file mode 100644 index 00000000..6b82e9e5 --- /dev/null +++ b/data/finished/notifications-1689781265.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-27": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689784948.json b/data/finished/notifications-1689784948.json new file mode 100644 index 00000000..cac4c5b2 --- /dev/null +++ b/data/finished/notifications-1689784948.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}, "KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}, "KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689788483.json b/data/finished/notifications-1689788483.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689788483.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689792083.json b/data/finished/notifications-1689792083.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689792083.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689795667.json b/data/finished/notifications-1689795667.json new file mode 100644 index 00000000..c5fb9e71 --- /dev/null +++ b/data/finished/notifications-1689795667.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}, "2023-07-29": {"remaining": 1, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 2}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "COS - Cosley Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689799276.json b/data/finished/notifications-1689799276.json new file mode 100644 index 00000000..7d917541 --- /dev/null +++ b/data/finished/notifications-1689799276.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689802891.json b/data/finished/notifications-1689802891.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689802891.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689806458.json b/data/finished/notifications-1689806458.json new file mode 100644 index 00000000..ae8c46c8 --- /dev/null +++ b/data/finished/notifications-1689806458.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 4}, "2023-07-30": {"remaining": 1, "total": 4}}, "GOA - Goat Haunt Shelters": {"2023-07-24": {"remaining": 4, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-23": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-22": {"remaining": 2, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689810078.json b/data/finished/notifications-1689810078.json new file mode 100644 index 00000000..5f92ac94 --- /dev/null +++ b/data/finished/notifications-1689810078.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689817888.json b/data/finished/notifications-1689817888.json new file mode 100644 index 00000000..a7d0feb9 --- /dev/null +++ b/data/finished/notifications-1689817888.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}}, "BOW - Bowman Lake": {"2023-07-23": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689821222.json b/data/finished/notifications-1689821222.json new file mode 100644 index 00000000..b961c14b --- /dev/null +++ b/data/finished/notifications-1689821222.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689824474.json b/data/finished/notifications-1689824474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689824474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689828069.json b/data/finished/notifications-1689828069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689828069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689831672.json b/data/finished/notifications-1689831672.json new file mode 100644 index 00000000..bb0a5a46 --- /dev/null +++ b/data/finished/notifications-1689831672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-21": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689835267.json b/data/finished/notifications-1689835267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689835267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689838861.json b/data/finished/notifications-1689838861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689838861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689842465.json b/data/finished/notifications-1689842465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689842465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689846059.json b/data/finished/notifications-1689846059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689846059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689849685.json b/data/finished/notifications-1689849685.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689849685.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689853269.json b/data/finished/notifications-1689853269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689853269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689857798.json b/data/finished/notifications-1689857798.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689857798.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689860476.json b/data/finished/notifications-1689860476.json new file mode 100644 index 00000000..afa46a6f --- /dev/null +++ b/data/finished/notifications-1689860476.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689864062.json b/data/finished/notifications-1689864062.json new file mode 100644 index 00000000..fad8cf68 --- /dev/null +++ b/data/finished/notifications-1689864062.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689867678.json b/data/finished/notifications-1689867678.json new file mode 100644 index 00000000..41659250 --- /dev/null +++ b/data/finished/notifications-1689867678.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}, "GAB - Gable Creek (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}, "HEL - Helen Lake (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 1}, "2023-07-24": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689871296.json b/data/finished/notifications-1689871296.json new file mode 100644 index 00000000..434893f9 --- /dev/null +++ b/data/finished/notifications-1689871296.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 3, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}, "FLA - Flattop (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689874878.json b/data/finished/notifications-1689874878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689874878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689878500.json b/data/finished/notifications-1689878500.json new file mode 100644 index 00000000..7da47408 --- /dev/null +++ b/data/finished/notifications-1689878500.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689882073.json b/data/finished/notifications-1689882073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689882073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689885691.json b/data/finished/notifications-1689885691.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689885691.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689889270.json b/data/finished/notifications-1689889270.json new file mode 100644 index 00000000..2bd6c807 --- /dev/null +++ b/data/finished/notifications-1689889270.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 2}}, "GRN - Granite Park (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-29": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689892858.json b/data/finished/notifications-1689892858.json new file mode 100644 index 00000000..7f6bb3e6 --- /dev/null +++ b/data/finished/notifications-1689892858.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-27": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-22": {"remaining": 2, "total": 4}, "2023-07-23": {"remaining": 1, "total": 4}}, "BOW - Bowman Lake": {"2023-07-24": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689896473.json b/data/finished/notifications-1689896473.json new file mode 100644 index 00000000..20fbfc24 --- /dev/null +++ b/data/finished/notifications-1689896473.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}, "POI - Poia Lake (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689904436.json b/data/finished/notifications-1689904436.json new file mode 100644 index 00000000..4b82e8ef --- /dev/null +++ b/data/finished/notifications-1689904436.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-24": {"remaining": 1, "total": 3}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}, "SPE - Sperry (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "HAW - Hawksbill (No Campfires)": {"2023-07-29": {"remaining": 2, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689907688.json b/data/finished/notifications-1689907688.json new file mode 100644 index 00000000..7de94596 --- /dev/null +++ b/data/finished/notifications-1689907688.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 1}}, "GOA - Goat Haunt Shelters": {"2023-07-30": {"remaining": 2, "total": 6}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689910875.json b/data/finished/notifications-1689910875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689910875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689914472.json b/data/finished/notifications-1689914472.json new file mode 100644 index 00000000..b7b89ec3 --- /dev/null +++ b/data/finished/notifications-1689914472.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-22": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689918074.json b/data/finished/notifications-1689918074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689918074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689921674.json b/data/finished/notifications-1689921674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689921674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689925267.json b/data/finished/notifications-1689925267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689925267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689928869.json b/data/finished/notifications-1689928869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689928869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689932468.json b/data/finished/notifications-1689932468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689932468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689936059.json b/data/finished/notifications-1689936059.json new file mode 100644 index 00000000..9e4afc4f --- /dev/null +++ b/data/finished/notifications-1689936059.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-24": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689939671.json b/data/finished/notifications-1689939671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689939671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689944070.json b/data/finished/notifications-1689944070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689944070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689946863.json b/data/finished/notifications-1689946863.json new file mode 100644 index 00000000..25715d23 --- /dev/null +++ b/data/finished/notifications-1689946863.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}}, "BOU - Boulder Pass (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}, "BOW - Bowman Lake": {"2023-07-24": {"remaining": 2, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689950483.json b/data/finished/notifications-1689950483.json new file mode 100644 index 00000000..00d3598e --- /dev/null +++ b/data/finished/notifications-1689950483.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}, "JAN - Lake Janet": {"2023-07-30": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-29": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-24": {"remaining": 2, "total": 4}, "2023-07-26": {"remaining": 4, "total": 4}, "2023-07-27": {"remaining": 2, "total": 4}, "2023-07-28": {"remaining": 2, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 4}}, "HEL - Helen Lake (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 1}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}, "KIN - Kintla Lake": {"2023-07-29": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689954060.json b/data/finished/notifications-1689954060.json new file mode 100644 index 00000000..8a8f5593 --- /dev/null +++ b/data/finished/notifications-1689954060.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-29": {"remaining": 3, "total": 4}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689957736.json b/data/finished/notifications-1689957736.json new file mode 100644 index 00000000..25b4fecc --- /dev/null +++ b/data/finished/notifications-1689957736.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-27": {"remaining": 5, "total": 6}}, "HAW - Hawksbill (No Campfires)": {"2023-07-28": {"remaining": 2, "total": 2}}, "JAN - Lake Janet": {"2023-07-26": {"remaining": 1, "total": 1}}, "KOO - Kootenai Lake": {"2023-07-29": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689961267.json b/data/finished/notifications-1689961267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689961267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689964871.json b/data/finished/notifications-1689964871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689964871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689968458.json b/data/finished/notifications-1689968458.json new file mode 100644 index 00000000..0e241982 --- /dev/null +++ b/data/finished/notifications-1689968458.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-27": {"remaining": 1, "total": 2}, "2023-07-28": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689972066.json b/data/finished/notifications-1689972066.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689972066.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689975670.json b/data/finished/notifications-1689975670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689975670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689979272.json b/data/finished/notifications-1689979272.json new file mode 100644 index 00000000..e95125c2 --- /dev/null +++ b/data/finished/notifications-1689979272.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-23": {"remaining": 1, "total": 2}}, "ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-23": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689982880.json b/data/finished/notifications-1689982880.json new file mode 100644 index 00000000..3e1cc69e --- /dev/null +++ b/data/finished/notifications-1689982880.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-23": {"remaining": 3, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1689990656.json b/data/finished/notifications-1689990656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689990656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689993983.json b/data/finished/notifications-1689993983.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1689993983.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1689997271.json b/data/finished/notifications-1689997271.json new file mode 100644 index 00000000..567434a6 --- /dev/null +++ b/data/finished/notifications-1689997271.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 4}, "2023-07-25": {"remaining": 1, "total": 4}}, "GRN - Granite Park (No Campfires)": {"2023-07-23": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690000887.json b/data/finished/notifications-1690000887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690000887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690004471.json b/data/finished/notifications-1690004471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690004471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690008079.json b/data/finished/notifications-1690008079.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690008079.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690011657.json b/data/finished/notifications-1690011657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690011657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690015280.json b/data/finished/notifications-1690015280.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690015280.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690018884.json b/data/finished/notifications-1690018884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690018884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690022477.json b/data/finished/notifications-1690022477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690022477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690026074.json b/data/finished/notifications-1690026074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690026074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690030310.json b/data/finished/notifications-1690030310.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690030310.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690033273.json b/data/finished/notifications-1690033273.json new file mode 100644 index 00000000..968e2577 --- /dev/null +++ b/data/finished/notifications-1690033273.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}}, "BOW - Bowman Lake": {"2023-07-24": {"remaining": 3, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690036881.json b/data/finished/notifications-1690036881.json new file mode 100644 index 00000000..c5bd3b6f --- /dev/null +++ b/data/finished/notifications-1690036881.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-29": {"remaining": 2, "total": 4}}, "UPK - Upper Kintla Lake (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690040482.json b/data/finished/notifications-1690040482.json new file mode 100644 index 00000000..9baf413d --- /dev/null +++ b/data/finished/notifications-1690040482.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-25": {"remaining": 2, "total": 2}, "2023-07-26": {"remaining": 2, "total": 2}}, "JAN - Lake Janet": {"2023-07-24": {"remaining": 1, "total": 1}}, "POI - Poia Lake (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690044077.json b/data/finished/notifications-1690044077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690044077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690047674.json b/data/finished/notifications-1690047674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690047674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690051273.json b/data/finished/notifications-1690051273.json new file mode 100644 index 00000000..268b805f --- /dev/null +++ b/data/finished/notifications-1690051273.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690054894.json b/data/finished/notifications-1690054894.json new file mode 100644 index 00000000..68e01846 --- /dev/null +++ b/data/finished/notifications-1690054894.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 2}, "2023-07-25": {"remaining": 1, "total": 2}}, "WAT - Waterton River": {"2023-07-25": {"remaining": 2, "total": 4}}, "BOW - Bowman Lake": {"2023-07-24": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690058458.json b/data/finished/notifications-1690058458.json new file mode 100644 index 00000000..65c57526 --- /dev/null +++ b/data/finished/notifications-1690058458.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-25": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690062065.json b/data/finished/notifications-1690062065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690062065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690065671.json b/data/finished/notifications-1690065671.json new file mode 100644 index 00000000..2e3caa93 --- /dev/null +++ b/data/finished/notifications-1690065671.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-24": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690069275.json b/data/finished/notifications-1690069275.json new file mode 100644 index 00000000..07ce65d9 --- /dev/null +++ b/data/finished/notifications-1690069275.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-29": {"remaining": 3, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-24": {"remaining": 2, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-25": {"remaining": 1, "total": 5}, "2023-07-26": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"BOW - Bowman Lake": {"2023-07-26": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690077579.json b/data/finished/notifications-1690077579.json new file mode 100644 index 00000000..df7e4469 --- /dev/null +++ b/data/finished/notifications-1690077579.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690080635.json b/data/finished/notifications-1690080635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690080635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690083672.json b/data/finished/notifications-1690083672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690083672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690087281.json b/data/finished/notifications-1690087281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690087281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690090866.json b/data/finished/notifications-1690090866.json new file mode 100644 index 00000000..afa46a6f --- /dev/null +++ b/data/finished/notifications-1690090866.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-24": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690094462.json b/data/finished/notifications-1690094462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690094462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690098074.json b/data/finished/notifications-1690098074.json new file mode 100644 index 00000000..6b137c2b --- /dev/null +++ b/data/finished/notifications-1690098074.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-29": {"remaining": 1, "total": 5}, "2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690101662.json b/data/finished/notifications-1690101662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690101662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690105276.json b/data/finished/notifications-1690105276.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690105276.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690108883.json b/data/finished/notifications-1690108883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690108883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690112468.json b/data/finished/notifications-1690112468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690112468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690116726.json b/data/finished/notifications-1690116726.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690116726.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690119663.json b/data/finished/notifications-1690119663.json new file mode 100644 index 00000000..8f2a8893 --- /dev/null +++ b/data/finished/notifications-1690119663.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690123264.json b/data/finished/notifications-1690123264.json new file mode 100644 index 00000000..d4677a39 --- /dev/null +++ b/data/finished/notifications-1690123264.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-26": {"remaining": 2, "total": 3}}, "KOO - Kootenai Lake": {"2023-07-27": {"remaining": 1, "total": 3}}, "WAT - Waterton River": {"2023-07-25": {"remaining": 3, "total": 4}}, "COS - Cosley Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"BOW - Bowman Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690126856.json b/data/finished/notifications-1690126856.json new file mode 100644 index 00000000..1ffe7be3 --- /dev/null +++ b/data/finished/notifications-1690126856.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HEL - Helen Lake (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 1}}, "BOW - Bowman Lake": {"2023-07-30": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690130474.json b/data/finished/notifications-1690130474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690130474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690134075.json b/data/finished/notifications-1690134075.json new file mode 100644 index 00000000..9613aab0 --- /dev/null +++ b/data/finished/notifications-1690134075.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 2}}, "GAB - Gable Creek (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690137676.json b/data/finished/notifications-1690137676.json new file mode 100644 index 00000000..f0be6f2e --- /dev/null +++ b/data/finished/notifications-1690137676.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690141257.json b/data/finished/notifications-1690141257.json new file mode 100644 index 00000000..3353bf5c --- /dev/null +++ b/data/finished/notifications-1690141257.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-26": {"remaining": 1, "total": 6}, "2023-07-27": {"remaining": 4, "total": 6}}, "KOO - Kootenai Lake": {"2023-07-27": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690144863.json b/data/finished/notifications-1690144863.json new file mode 100644 index 00000000..69166a02 --- /dev/null +++ b/data/finished/notifications-1690144863.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-30": {"remaining": 1, "total": 2}}, "FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}, "KOO - Kootenai Lake": {"2023-07-26": {"remaining": 1, "total": 3}, "2023-07-29": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}}, "bhone17@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-09-01": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690148467.json b/data/finished/notifications-1690148467.json new file mode 100644 index 00000000..0005b7f6 --- /dev/null +++ b/data/finished/notifications-1690148467.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-25": {"remaining": 2, "total": 3}}, "GOA - Goat Haunt Shelters": {"2023-07-26": {"remaining": 2, "total": 6}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-25": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690152083.json b/data/finished/notifications-1690152083.json new file mode 100644 index 00000000..d998b382 --- /dev/null +++ b/data/finished/notifications-1690152083.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-27": {"remaining": 2, "total": 3}}, "HAW - Hawksbill (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690155672.json b/data/finished/notifications-1690155672.json new file mode 100644 index 00000000..30d7f6c4 --- /dev/null +++ b/data/finished/notifications-1690155672.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-26": {"remaining": 1, "total": 2}}, "KOO - Kootenai Lake": {"2023-07-25": {"remaining": 1, "total": 3}, "2023-07-26": {"remaining": 1, "total": 3}}, "FLA - Flattop (No Campfires)": {"2023-07-27": {"remaining": 2, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690163594.json b/data/finished/notifications-1690163594.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690163594.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690166916.json b/data/finished/notifications-1690166916.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690166916.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690170078.json b/data/finished/notifications-1690170078.json new file mode 100644 index 00000000..888716fc --- /dev/null +++ b/data/finished/notifications-1690170078.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-25": {"remaining": 4, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690177267.json b/data/finished/notifications-1690177267.json new file mode 100644 index 00000000..0e0e09c3 --- /dev/null +++ b/data/finished/notifications-1690177267.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOW - Bowman Lake": {"2023-07-30": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690180893.json b/data/finished/notifications-1690180893.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690180893.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690184475.json b/data/finished/notifications-1690184475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690184475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690188060.json b/data/finished/notifications-1690188060.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690188060.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690191660.json b/data/finished/notifications-1690191660.json new file mode 100644 index 00000000..0e241982 --- /dev/null +++ b/data/finished/notifications-1690191660.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SLI - Slide Lake": {"2023-07-27": {"remaining": 1, "total": 2}, "2023-07-28": {"remaining": 1, "total": 2}, "2023-07-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690195281.json b/data/finished/notifications-1690195281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690195281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690198877.json b/data/finished/notifications-1690198877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690198877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690203352.json b/data/finished/notifications-1690203352.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690203352.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690206078.json b/data/finished/notifications-1690206078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690206078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690209666.json b/data/finished/notifications-1690209666.json new file mode 100644 index 00000000..2b2ef2e4 --- /dev/null +++ b/data/finished/notifications-1690209666.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 2}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}, "2023-07-27": {"remaining": 1, "total": 4}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690213272.json b/data/finished/notifications-1690213272.json new file mode 100644 index 00000000..cd2aa197 --- /dev/null +++ b/data/finished/notifications-1690213272.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GRN - Granite Park (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 4}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}}, "SLI - Slide Lake": {"2023-07-26": {"remaining": 2, "total": 2}}}, "kylesiverts@gmail.com": {"MAN - Many Glacier": {"2023-07-27": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690216936.json b/data/finished/notifications-1690216936.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690216936.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690220474.json b/data/finished/notifications-1690220474.json new file mode 100644 index 00000000..8840887d --- /dev/null +++ b/data/finished/notifications-1690220474.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}, "FLA - Flattop (No Campfires)": {"2023-07-27": {"remaining": 2, "total": 2}}}, "kylesiverts@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690224069.json b/data/finished/notifications-1690224069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690224069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690227668.json b/data/finished/notifications-1690227668.json new file mode 100644 index 00000000..8a1c26af --- /dev/null +++ b/data/finished/notifications-1690227668.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690231275.json b/data/finished/notifications-1690231275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690231275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690234877.json b/data/finished/notifications-1690234877.json new file mode 100644 index 00000000..dd36a420 --- /dev/null +++ b/data/finished/notifications-1690234877.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GAB - Gable Creek (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 3}, "2023-07-30": {"remaining": 1, "total": 3}}, "ELH - Elizabeth Lake Head (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}, "HEL - Helen Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690238480.json b/data/finished/notifications-1690238480.json new file mode 100644 index 00000000..b9880e3c --- /dev/null +++ b/data/finished/notifications-1690238480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690242075.json b/data/finished/notifications-1690242075.json new file mode 100644 index 00000000..5c658f1a --- /dev/null +++ b/data/finished/notifications-1690242075.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-26": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690250862.json b/data/finished/notifications-1690250862.json new file mode 100644 index 00000000..8e0d31ea --- /dev/null +++ b/data/finished/notifications-1690250862.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}, "kylesiverts@gmail.com": {"KIN - Kintla Lake": {"2023-07-27": {"remaining": 1, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690253896.json b/data/finished/notifications-1690253896.json new file mode 100644 index 00000000..a4b8034f --- /dev/null +++ b/data/finished/notifications-1690253896.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"MOJ - Mokowanis Junction (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690256472.json b/data/finished/notifications-1690256472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690256472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690260076.json b/data/finished/notifications-1690260076.json new file mode 100644 index 00000000..40c1d095 --- /dev/null +++ b/data/finished/notifications-1690260076.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690263677.json b/data/finished/notifications-1690263677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690263677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690267282.json b/data/finished/notifications-1690267282.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690267282.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690270880.json b/data/finished/notifications-1690270880.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690270880.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690274457.json b/data/finished/notifications-1690274457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690274457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690278077.json b/data/finished/notifications-1690278077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690278077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690281677.json b/data/finished/notifications-1690281677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690281677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690285279.json b/data/finished/notifications-1690285279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690285279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690289892.json b/data/finished/notifications-1690289892.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690289892.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690292466.json b/data/finished/notifications-1690292466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690292466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690296093.json b/data/finished/notifications-1690296093.json new file mode 100644 index 00000000..f71193a2 --- /dev/null +++ b/data/finished/notifications-1690296093.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-28": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690299669.json b/data/finished/notifications-1690299669.json new file mode 100644 index 00000000..1f15f9e2 --- /dev/null +++ b/data/finished/notifications-1690299669.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-27": {"remaining": 3, "total": 3}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 3}}, "ELF - Elizabeth Lake Foot (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 4}}}, "kylesiverts@gmail.com": {"MAN - Many Glacier": {"2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690303371.json b/data/finished/notifications-1690303371.json new file mode 100644 index 00000000..83fea202 --- /dev/null +++ b/data/finished/notifications-1690303371.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"SPE - Sperry (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690306870.json b/data/finished/notifications-1690306870.json new file mode 100644 index 00000000..08a6bfbe --- /dev/null +++ b/data/finished/notifications-1690306870.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-27": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690310485.json b/data/finished/notifications-1690310485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690310485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690314074.json b/data/finished/notifications-1690314074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690314074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690317682.json b/data/finished/notifications-1690317682.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690317682.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690321272.json b/data/finished/notifications-1690321272.json new file mode 100644 index 00000000..40cc9ce4 --- /dev/null +++ b/data/finished/notifications-1690321272.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"JAN - Lake Janet": {"2023-07-27": {"remaining": 1, "total": 1}}, "MOJ - Mokowanis Junction (No Campfires)": {"2023-07-28": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690324878.json b/data/finished/notifications-1690324878.json new file mode 100644 index 00000000..edaf3daf --- /dev/null +++ b/data/finished/notifications-1690324878.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLF - Glenns Lake Foot (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}, "SLI - Slide Lake": {"2023-07-30": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690328465.json b/data/finished/notifications-1690328465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690328465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690336575.json b/data/finished/notifications-1690336575.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690336575.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690339689.json b/data/finished/notifications-1690339689.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690339689.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690342884.json b/data/finished/notifications-1690342884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690342884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690346473.json b/data/finished/notifications-1690346473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690346473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690350069.json b/data/finished/notifications-1690350069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690350069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690353683.json b/data/finished/notifications-1690353683.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690353683.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690357267.json b/data/finished/notifications-1690357267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690357267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690360883.json b/data/finished/notifications-1690360883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690360883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690364470.json b/data/finished/notifications-1690364470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690364470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690368058.json b/data/finished/notifications-1690368058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690368058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690371693.json b/data/finished/notifications-1690371693.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690371693.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690376073.json b/data/finished/notifications-1690376073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690376073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690378877.json b/data/finished/notifications-1690378877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690378877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690382466.json b/data/finished/notifications-1690382466.json new file mode 100644 index 00000000..018d6805 --- /dev/null +++ b/data/finished/notifications-1690382466.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-29": {"remaining": 4, "total": 6}}, "JAN - Lake Janet": {"2023-07-28": {"remaining": 1, "total": 1}}, "WAT - Waterton River": {"2023-07-28": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690386075.json b/data/finished/notifications-1690386075.json new file mode 100644 index 00000000..afe38a8f --- /dev/null +++ b/data/finished/notifications-1690386075.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-28": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690389673.json b/data/finished/notifications-1690389673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690389673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690393291.json b/data/finished/notifications-1690393291.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690393291.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690396872.json b/data/finished/notifications-1690396872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690396872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690400480.json b/data/finished/notifications-1690400480.json new file mode 100644 index 00000000..cb98950a --- /dev/null +++ b/data/finished/notifications-1690400480.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-29": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690404076.json b/data/finished/notifications-1690404076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690404076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690407661.json b/data/finished/notifications-1690407661.json new file mode 100644 index 00000000..319112f0 --- /dev/null +++ b/data/finished/notifications-1690407661.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-29": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690411274.json b/data/finished/notifications-1690411274.json new file mode 100644 index 00000000..9ba9825f --- /dev/null +++ b/data/finished/notifications-1690411274.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REF - Red Eagle Lake Foot": {"2023-07-28": {"remaining": 1, "total": 3}}, "JAN - Lake Janet": {"2023-07-29": {"remaining": 1, "total": 1}, "2023-07-30": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690414883.json b/data/finished/notifications-1690414883.json new file mode 100644 index 00000000..ef1812d0 --- /dev/null +++ b/data/finished/notifications-1690414883.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KOO - Kootenai Lake": {"2023-07-28": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690422137.json b/data/finished/notifications-1690422137.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690422137.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690425684.json b/data/finished/notifications-1690425684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690425684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690429277.json b/data/finished/notifications-1690429277.json new file mode 100644 index 00000000..32992c8f --- /dev/null +++ b/data/finished/notifications-1690429277.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"WAT - Waterton River": {"2023-07-28": {"remaining": 1, "total": 4}, "2023-07-29": {"remaining": 2, "total": 4}, "2023-07-30": {"remaining": 2, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690432864.json b/data/finished/notifications-1690432864.json new file mode 100644 index 00000000..a0f113dc --- /dev/null +++ b/data/finished/notifications-1690432864.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"ELL - Lake Ellen Wilson (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690436464.json b/data/finished/notifications-1690436464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690436464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690440070.json b/data/finished/notifications-1690440070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690440070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690443668.json b/data/finished/notifications-1690443668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690443668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690447266.json b/data/finished/notifications-1690447266.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690447266.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690450862.json b/data/finished/notifications-1690450862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690450862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690454470.json b/data/finished/notifications-1690454470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690454470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690458072.json b/data/finished/notifications-1690458072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690458072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690462464.json b/data/finished/notifications-1690462464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690462464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690465275.json b/data/finished/notifications-1690465275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690465275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690468873.json b/data/finished/notifications-1690468873.json new file mode 100644 index 00000000..b51bb11d --- /dev/null +++ b/data/finished/notifications-1690468873.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FLA - Flattop (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "GLF - Glenns Lake Foot (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 3}}, "POI - Poia Lake (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690472474.json b/data/finished/notifications-1690472474.json new file mode 100644 index 00000000..e93c2003 --- /dev/null +++ b/data/finished/notifications-1690472474.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GLH - Glenns Lake Head (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690476083.json b/data/finished/notifications-1690476083.json new file mode 100644 index 00000000..3b1c44d6 --- /dev/null +++ b/data/finished/notifications-1690476083.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690479661.json b/data/finished/notifications-1690479661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690479661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690483277.json b/data/finished/notifications-1690483277.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690483277.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690486880.json b/data/finished/notifications-1690486880.json new file mode 100644 index 00000000..d51b05b9 --- /dev/null +++ b/data/finished/notifications-1690486880.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"POI - Poia Lake (No Campfires)": {"2023-07-30": {"remaining": 2, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690490477.json b/data/finished/notifications-1690490477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690490477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690494063.json b/data/finished/notifications-1690494063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690494063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690497680.json b/data/finished/notifications-1690497680.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690497680.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690501270.json b/data/finished/notifications-1690501270.json new file mode 100644 index 00000000..eac3bd24 --- /dev/null +++ b/data/finished/notifications-1690501270.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690508748.json b/data/finished/notifications-1690508748.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690508748.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690512207.json b/data/finished/notifications-1690512207.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690512207.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690515657.json b/data/finished/notifications-1690515657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690515657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690519275.json b/data/finished/notifications-1690519275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690519275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690522878.json b/data/finished/notifications-1690522878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690522878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690526483.json b/data/finished/notifications-1690526483.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690526483.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690530067.json b/data/finished/notifications-1690530067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690530067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690533655.json b/data/finished/notifications-1690533655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690533655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690537274.json b/data/finished/notifications-1690537274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690537274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690544462.json b/data/finished/notifications-1690544462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690544462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690548890.json b/data/finished/notifications-1690548890.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690548890.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690551668.json b/data/finished/notifications-1690551668.json new file mode 100644 index 00000000..f35141cd --- /dev/null +++ b/data/finished/notifications-1690551668.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"FIF - Fifty Mountain (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 4}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690555280.json b/data/finished/notifications-1690555280.json new file mode 100644 index 00000000..7e4e1959 --- /dev/null +++ b/data/finished/notifications-1690555280.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"STO - Stony Indian Lake (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "GLH - Glenns Lake Head (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}, "POI - Poia Lake (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690558878.json b/data/finished/notifications-1690558878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690558878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690562510.json b/data/finished/notifications-1690562510.json new file mode 100644 index 00000000..78959af8 --- /dev/null +++ b/data/finished/notifications-1690562510.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"KIN - Kintla Lake": {"2023-07-30": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690566068.json b/data/finished/notifications-1690566068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690566068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690569664.json b/data/finished/notifications-1690569664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690569664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690573269.json b/data/finished/notifications-1690573269.json new file mode 100644 index 00000000..c7297936 --- /dev/null +++ b/data/finished/notifications-1690573269.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"GOA - Goat Haunt Shelters": {"2023-07-30": {"remaining": 3, "total": 6}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690576877.json b/data/finished/notifications-1690576877.json new file mode 100644 index 00000000..b4b40294 --- /dev/null +++ b/data/finished/notifications-1690576877.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"UPK - Upper Kintla Lake (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690580481.json b/data/finished/notifications-1690580481.json new file mode 100644 index 00000000..633c8fd4 --- /dev/null +++ b/data/finished/notifications-1690580481.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"HAW - Hawksbill (No Campfires)": {"2023-07-30": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690584065.json b/data/finished/notifications-1690584065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690584065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690587656.json b/data/finished/notifications-1690587656.json new file mode 100644 index 00000000..5a890325 --- /dev/null +++ b/data/finished/notifications-1690587656.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"REY - Reynolds Creek": {"2023-07-30": {"remaining": 1, "total": 2}}, "GOA - Goat Haunt Shelters": {"2023-07-30": {"remaining": 4, "total": 6}}, "WAT - Waterton River": {"2023-07-30": {"remaining": 3, "total": 4}}, "BOW - Bowman Lake": {"2023-07-30": {"remaining": 2, "total": 5}}}} \ No newline at end of file diff --git a/data/finished/notifications-1690595020.json b/data/finished/notifications-1690595020.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690595020.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690598467.json b/data/finished/notifications-1690598467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690598467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690602080.json b/data/finished/notifications-1690602080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690602080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690605673.json b/data/finished/notifications-1690605673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690605673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690609271.json b/data/finished/notifications-1690609271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690609271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690612874.json b/data/finished/notifications-1690612874.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690612874.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690616470.json b/data/finished/notifications-1690616470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690616470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690620080.json b/data/finished/notifications-1690620080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690620080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690623687.json b/data/finished/notifications-1690623687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690623687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690627279.json b/data/finished/notifications-1690627279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690627279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690630868.json b/data/finished/notifications-1690630868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690630868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690635014.json b/data/finished/notifications-1690635014.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690635014.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690638068.json b/data/finished/notifications-1690638068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690638068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690641664.json b/data/finished/notifications-1690641664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690641664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690645273.json b/data/finished/notifications-1690645273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690645273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690648877.json b/data/finished/notifications-1690648877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690648877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690652465.json b/data/finished/notifications-1690652465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690652465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690656077.json b/data/finished/notifications-1690656077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690656077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690659674.json b/data/finished/notifications-1690659674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690659674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690663280.json b/data/finished/notifications-1690663280.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690663280.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690666875.json b/data/finished/notifications-1690666875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690666875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690670472.json b/data/finished/notifications-1690670472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690670472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690674069.json b/data/finished/notifications-1690674069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690674069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690681632.json b/data/finished/notifications-1690681632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690681632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690684981.json b/data/finished/notifications-1690684981.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690684981.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690688466.json b/data/finished/notifications-1690688466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690688466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690692069.json b/data/finished/notifications-1690692069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690692069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690695686.json b/data/finished/notifications-1690695686.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690695686.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690699283.json b/data/finished/notifications-1690699283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690699283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690702860.json b/data/finished/notifications-1690702860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690702860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690706466.json b/data/finished/notifications-1690706466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690706466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690710071.json b/data/finished/notifications-1690710071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690710071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690713675.json b/data/finished/notifications-1690713675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690713675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690717268.json b/data/finished/notifications-1690717268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690717268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690721458.json b/data/finished/notifications-1690721458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690721458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690724480.json b/data/finished/notifications-1690724480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690724480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690728084.json b/data/finished/notifications-1690728084.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690728084.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690731684.json b/data/finished/notifications-1690731684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690731684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690735272.json b/data/finished/notifications-1690735272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690735272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690738865.json b/data/finished/notifications-1690738865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690738865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690742471.json b/data/finished/notifications-1690742471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690742471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690746082.json b/data/finished/notifications-1690746082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690746082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690749666.json b/data/finished/notifications-1690749666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690749666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690753261.json b/data/finished/notifications-1690753261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690753261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690756884.json b/data/finished/notifications-1690756884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690756884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690760473.json b/data/finished/notifications-1690760473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690760473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690768221.json b/data/finished/notifications-1690768221.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690768221.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690771537.json b/data/finished/notifications-1690771537.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690771537.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690774863.json b/data/finished/notifications-1690774863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690774863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690778472.json b/data/finished/notifications-1690778472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690778472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690782059.json b/data/finished/notifications-1690782059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690782059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690785657.json b/data/finished/notifications-1690785657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690785657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690789281.json b/data/finished/notifications-1690789281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690789281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690792869.json b/data/finished/notifications-1690792869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690792869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690796475.json b/data/finished/notifications-1690796475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690796475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690800086.json b/data/finished/notifications-1690800086.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690800086.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690803680.json b/data/finished/notifications-1690803680.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690803680.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690808245.json b/data/finished/notifications-1690808245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690808245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690810886.json b/data/finished/notifications-1690810886.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690810886.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690814464.json b/data/finished/notifications-1690814464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690814464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690818081.json b/data/finished/notifications-1690818081.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690818081.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690821739.json b/data/finished/notifications-1690821739.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690821739.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690825279.json b/data/finished/notifications-1690825279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690825279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690828887.json b/data/finished/notifications-1690828887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690828887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690832473.json b/data/finished/notifications-1690832473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690832473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690836065.json b/data/finished/notifications-1690836065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690836065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690839682.json b/data/finished/notifications-1690839682.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690839682.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690843275.json b/data/finished/notifications-1690843275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690843275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690846863.json b/data/finished/notifications-1690846863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690846863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690854969.json b/data/finished/notifications-1690854969.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690854969.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690858154.json b/data/finished/notifications-1690858154.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690858154.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690861271.json b/data/finished/notifications-1690861271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690861271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690864866.json b/data/finished/notifications-1690864866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690864866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1690868485.json b/data/finished/notifications-1690868485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1690868485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691169823.json b/data/finished/notifications-1691169823.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691169823.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691170871.json b/data/finished/notifications-1691170871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691170871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691174482.json b/data/finished/notifications-1691174482.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691174482.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691178058.json b/data/finished/notifications-1691178058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691178058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691181661.json b/data/finished/notifications-1691181661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691181661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691185261.json b/data/finished/notifications-1691185261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691185261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691188872.json b/data/finished/notifications-1691188872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691188872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691192459.json b/data/finished/notifications-1691192459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691192459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691199785.json b/data/finished/notifications-1691199785.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691199785.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691203254.json b/data/finished/notifications-1691203254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691203254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691206871.json b/data/finished/notifications-1691206871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691206871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691210468.json b/data/finished/notifications-1691210468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691210468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691214074.json b/data/finished/notifications-1691214074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691214074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691217661.json b/data/finished/notifications-1691217661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691217661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691221251.json b/data/finished/notifications-1691221251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691221251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691224866.json b/data/finished/notifications-1691224866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691224866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691228459.json b/data/finished/notifications-1691228459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691228459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691232056.json b/data/finished/notifications-1691232056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691232056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691235654.json b/data/finished/notifications-1691235654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691235654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691239813.json b/data/finished/notifications-1691239813.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691239813.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691242868.json b/data/finished/notifications-1691242868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691242868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691246461.json b/data/finished/notifications-1691246461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691246461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691250060.json b/data/finished/notifications-1691250060.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691250060.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691253668.json b/data/finished/notifications-1691253668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691253668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691257260.json b/data/finished/notifications-1691257260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691257260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691260855.json b/data/finished/notifications-1691260855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691260855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691264463.json b/data/finished/notifications-1691264463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691264463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691268068.json b/data/finished/notifications-1691268068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691268068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691271658.json b/data/finished/notifications-1691271658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691271658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691275260.json b/data/finished/notifications-1691275260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691275260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691278865.json b/data/finished/notifications-1691278865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691278865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691285924.json b/data/finished/notifications-1691285924.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691285924.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691289673.json b/data/finished/notifications-1691289673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691289673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691293256.json b/data/finished/notifications-1691293256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691293256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691296860.json b/data/finished/notifications-1691296860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691296860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691300449.json b/data/finished/notifications-1691300449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691300449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691304082.json b/data/finished/notifications-1691304082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691304082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691307656.json b/data/finished/notifications-1691307656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691307656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691314858.json b/data/finished/notifications-1691314858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691314858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691318460.json b/data/finished/notifications-1691318460.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691318460.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691322072.json b/data/finished/notifications-1691322072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691322072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691326211.json b/data/finished/notifications-1691326211.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691326211.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691329257.json b/data/finished/notifications-1691329257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691329257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691332863.json b/data/finished/notifications-1691332863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691332863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691336460.json b/data/finished/notifications-1691336460.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691336460.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691340061.json b/data/finished/notifications-1691340061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691340061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691343662.json b/data/finished/notifications-1691343662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691343662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691347262.json b/data/finished/notifications-1691347262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691347262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691350861.json b/data/finished/notifications-1691350861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691350861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691354463.json b/data/finished/notifications-1691354463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691354463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691358063.json b/data/finished/notifications-1691358063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691358063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691361671.json b/data/finished/notifications-1691361671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691361671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691365266.json b/data/finished/notifications-1691365266.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691365266.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691372877.json b/data/finished/notifications-1691372877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691372877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691376270.json b/data/finished/notifications-1691376270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691376270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691379650.json b/data/finished/notifications-1691379650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691379650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691383260.json b/data/finished/notifications-1691383260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691383260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691386863.json b/data/finished/notifications-1691386863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691386863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691390469.json b/data/finished/notifications-1691390469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691390469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691394065.json b/data/finished/notifications-1691394065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691394065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691397657.json b/data/finished/notifications-1691397657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691397657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691401267.json b/data/finished/notifications-1691401267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691401267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691404873.json b/data/finished/notifications-1691404873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691404873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691408458.json b/data/finished/notifications-1691408458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691408458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691412834.json b/data/finished/notifications-1691412834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691412834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691415669.json b/data/finished/notifications-1691415669.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691415669.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691419263.json b/data/finished/notifications-1691419263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691419263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691422859.json b/data/finished/notifications-1691422859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691422859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691426452.json b/data/finished/notifications-1691426452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691426452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691430057.json b/data/finished/notifications-1691430057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691430057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691433663.json b/data/finished/notifications-1691433663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691433663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691437256.json b/data/finished/notifications-1691437256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691437256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691440864.json b/data/finished/notifications-1691440864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691440864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691444469.json b/data/finished/notifications-1691444469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691444469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691448070.json b/data/finished/notifications-1691448070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691448070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691451652.json b/data/finished/notifications-1691451652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691451652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691459186.json b/data/finished/notifications-1691459186.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691459186.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691462586.json b/data/finished/notifications-1691462586.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691462586.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691466074.json b/data/finished/notifications-1691466074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691466074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691469654.json b/data/finished/notifications-1691469654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691469654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691473261.json b/data/finished/notifications-1691473261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691473261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691476856.json b/data/finished/notifications-1691476856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691476856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691480456.json b/data/finished/notifications-1691480456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691480456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691484065.json b/data/finished/notifications-1691484065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691484065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691487661.json b/data/finished/notifications-1691487661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691487661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691491252.json b/data/finished/notifications-1691491252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691491252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691494857.json b/data/finished/notifications-1691494857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691494857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691499218.json b/data/finished/notifications-1691499218.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691499218.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691502057.json b/data/finished/notifications-1691502057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691502057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691505666.json b/data/finished/notifications-1691505666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691505666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691509254.json b/data/finished/notifications-1691509254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691509254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691512931.json b/data/finished/notifications-1691512931.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691512931.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691516479.json b/data/finished/notifications-1691516479.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691516479.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691520061.json b/data/finished/notifications-1691520061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691520061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691523664.json b/data/finished/notifications-1691523664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691523664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691527256.json b/data/finished/notifications-1691527256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691527256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691530867.json b/data/finished/notifications-1691530867.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691530867.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691534484.json b/data/finished/notifications-1691534484.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691534484.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691538063.json b/data/finished/notifications-1691538063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691538063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691545595.json b/data/finished/notifications-1691545595.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691545595.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691549013.json b/data/finished/notifications-1691549013.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691549013.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691552479.json b/data/finished/notifications-1691552479.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691552479.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691556059.json b/data/finished/notifications-1691556059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691556059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691559654.json b/data/finished/notifications-1691559654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691559654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691563268.json b/data/finished/notifications-1691563268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691563268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691566865.json b/data/finished/notifications-1691566865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691566865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691570477.json b/data/finished/notifications-1691570477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691570477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691574062.json b/data/finished/notifications-1691574062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691574062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691577662.json b/data/finished/notifications-1691577662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691577662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691581281.json b/data/finished/notifications-1691581281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691581281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691585823.json b/data/finished/notifications-1691585823.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691585823.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691588459.json b/data/finished/notifications-1691588459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691588459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691592058.json b/data/finished/notifications-1691592058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691592058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691595670.json b/data/finished/notifications-1691595670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691595670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691599452.json b/data/finished/notifications-1691599452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691599452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691602869.json b/data/finished/notifications-1691602869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691602869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691606485.json b/data/finished/notifications-1691606485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691606485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691610107.json b/data/finished/notifications-1691610107.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691610107.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691613658.json b/data/finished/notifications-1691613658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691613658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691617270.json b/data/finished/notifications-1691617270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691617270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691620861.json b/data/finished/notifications-1691620861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691620861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691624462.json b/data/finished/notifications-1691624462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691624462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691632214.json b/data/finished/notifications-1691632214.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691632214.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691635667.json b/data/finished/notifications-1691635667.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691635667.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691638850.json b/data/finished/notifications-1691638850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691638850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691642458.json b/data/finished/notifications-1691642458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691642458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691646057.json b/data/finished/notifications-1691646057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691646057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691649670.json b/data/finished/notifications-1691649670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691649670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691653269.json b/data/finished/notifications-1691653269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691653269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691656851.json b/data/finished/notifications-1691656851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691656851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691660454.json b/data/finished/notifications-1691660454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691660454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691664057.json b/data/finished/notifications-1691664057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691664057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691667655.json b/data/finished/notifications-1691667655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691667655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691672236.json b/data/finished/notifications-1691672236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691672236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691674862.json b/data/finished/notifications-1691674862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691674862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691678462.json b/data/finished/notifications-1691678462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691678462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691682057.json b/data/finished/notifications-1691682057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691682057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691685666.json b/data/finished/notifications-1691685666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691685666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691689265.json b/data/finished/notifications-1691689265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691689265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691692861.json b/data/finished/notifications-1691692861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691692861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691696474.json b/data/finished/notifications-1691696474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691696474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691700053.json b/data/finished/notifications-1691700053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691700053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691703652.json b/data/finished/notifications-1691703652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691703652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691707272.json b/data/finished/notifications-1691707272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691707272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691710866.json b/data/finished/notifications-1691710866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691710866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691717449.json b/data/finished/notifications-1691717449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691717449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691719370.json b/data/finished/notifications-1691719370.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691719370.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691721665.json b/data/finished/notifications-1691721665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691721665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691725265.json b/data/finished/notifications-1691725265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691725265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691728858.json b/data/finished/notifications-1691728858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691728858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691732465.json b/data/finished/notifications-1691732465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691732465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691736068.json b/data/finished/notifications-1691736068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691736068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691739663.json b/data/finished/notifications-1691739663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691739663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691743255.json b/data/finished/notifications-1691743255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691743255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691746874.json b/data/finished/notifications-1691746874.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691746874.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691750461.json b/data/finished/notifications-1691750461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691750461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691754064.json b/data/finished/notifications-1691754064.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691754064.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691758306.json b/data/finished/notifications-1691758306.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691758306.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691761271.json b/data/finished/notifications-1691761271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691761271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691764876.json b/data/finished/notifications-1691764876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691764876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691768478.json b/data/finished/notifications-1691768478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691768478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691772072.json b/data/finished/notifications-1691772072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691772072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691775651.json b/data/finished/notifications-1691775651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691775651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691779266.json b/data/finished/notifications-1691779266.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691779266.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691782866.json b/data/finished/notifications-1691782866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691782866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691786459.json b/data/finished/notifications-1691786459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691786459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691790072.json b/data/finished/notifications-1691790072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691790072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691793665.json b/data/finished/notifications-1691793665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691793665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691797262.json b/data/finished/notifications-1691797262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691797262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691803788.json b/data/finished/notifications-1691803788.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691803788.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691805686.json b/data/finished/notifications-1691805686.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691805686.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691808051.json b/data/finished/notifications-1691808051.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691808051.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691811672.json b/data/finished/notifications-1691811672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691811672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691815261.json b/data/finished/notifications-1691815261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691815261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691818852.json b/data/finished/notifications-1691818852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691818852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691822475.json b/data/finished/notifications-1691822475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691822475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691826057.json b/data/finished/notifications-1691826057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691826057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691829668.json b/data/finished/notifications-1691829668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691829668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691833267.json b/data/finished/notifications-1691833267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691833267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691836869.json b/data/finished/notifications-1691836869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691836869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691840469.json b/data/finished/notifications-1691840469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691840469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691844518.json b/data/finished/notifications-1691844518.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691844518.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691847656.json b/data/finished/notifications-1691847656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691847656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691851268.json b/data/finished/notifications-1691851268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691851268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691854865.json b/data/finished/notifications-1691854865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691854865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691858473.json b/data/finished/notifications-1691858473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691858473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691862078.json b/data/finished/notifications-1691862078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691862078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691865654.json b/data/finished/notifications-1691865654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691865654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691869257.json b/data/finished/notifications-1691869257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691869257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691872868.json b/data/finished/notifications-1691872868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691872868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691876459.json b/data/finished/notifications-1691876459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691876459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691880071.json b/data/finished/notifications-1691880071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691880071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691883665.json b/data/finished/notifications-1691883665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691883665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691890454.json b/data/finished/notifications-1691890454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691890454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691892247.json b/data/finished/notifications-1691892247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691892247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691894478.json b/data/finished/notifications-1691894478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691894478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691898061.json b/data/finished/notifications-1691898061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691898061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691901670.json b/data/finished/notifications-1691901670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691901670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691905272.json b/data/finished/notifications-1691905272.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691905272.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691908862.json b/data/finished/notifications-1691908862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691908862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691912456.json b/data/finished/notifications-1691912456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691912456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691916069.json b/data/finished/notifications-1691916069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691916069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691919651.json b/data/finished/notifications-1691919651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691919651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691923259.json b/data/finished/notifications-1691923259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691923259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691926862.json b/data/finished/notifications-1691926862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691926862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691930935.json b/data/finished/notifications-1691930935.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691930935.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691934059.json b/data/finished/notifications-1691934059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691934059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691937668.json b/data/finished/notifications-1691937668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691937668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691941264.json b/data/finished/notifications-1691941264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691941264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691944867.json b/data/finished/notifications-1691944867.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691944867.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691948457.json b/data/finished/notifications-1691948457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691948457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691952057.json b/data/finished/notifications-1691952057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691952057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691955670.json b/data/finished/notifications-1691955670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691955670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691959269.json b/data/finished/notifications-1691959269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691959269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691962862.json b/data/finished/notifications-1691962862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691962862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691966454.json b/data/finished/notifications-1691966454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691966454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691970074.json b/data/finished/notifications-1691970074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691970074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691976758.json b/data/finished/notifications-1691976758.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691976758.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691978609.json b/data/finished/notifications-1691978609.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691978609.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691980848.json b/data/finished/notifications-1691980848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691980848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691984469.json b/data/finished/notifications-1691984469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691984469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691988049.json b/data/finished/notifications-1691988049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691988049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691991667.json b/data/finished/notifications-1691991667.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691991667.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691995263.json b/data/finished/notifications-1691995263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691995263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1691998879.json b/data/finished/notifications-1691998879.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1691998879.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692002475.json b/data/finished/notifications-1692002475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692002475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692006067.json b/data/finished/notifications-1692006067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692006067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692009673.json b/data/finished/notifications-1692009673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692009673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692013264.json b/data/finished/notifications-1692013264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692013264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692017534.json b/data/finished/notifications-1692017534.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692017534.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692020473.json b/data/finished/notifications-1692020473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692020473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692024059.json b/data/finished/notifications-1692024059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692024059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692027661.json b/data/finished/notifications-1692027661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692027661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692031263.json b/data/finished/notifications-1692031263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692031263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692034859.json b/data/finished/notifications-1692034859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692034859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692038473.json b/data/finished/notifications-1692038473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692038473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692042061.json b/data/finished/notifications-1692042061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692042061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692045659.json b/data/finished/notifications-1692045659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692045659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692049251.json b/data/finished/notifications-1692049251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692049251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692052871.json b/data/finished/notifications-1692052871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692052871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692056457.json b/data/finished/notifications-1692056457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692056457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692063117.json b/data/finished/notifications-1692063117.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692063117.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692064993.json b/data/finished/notifications-1692064993.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692064993.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692067247.json b/data/finished/notifications-1692067247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692067247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692070855.json b/data/finished/notifications-1692070855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692070855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692074471.json b/data/finished/notifications-1692074471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692074471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692078057.json b/data/finished/notifications-1692078057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692078057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692081668.json b/data/finished/notifications-1692081668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692081668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692085268.json b/data/finished/notifications-1692085268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692085268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692088871.json b/data/finished/notifications-1692088871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692088871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692092465.json b/data/finished/notifications-1692092465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692092465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692096078.json b/data/finished/notifications-1692096078.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692096078.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692099670.json b/data/finished/notifications-1692099670.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692099670.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692103890.json b/data/finished/notifications-1692103890.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692103890.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692106852.json b/data/finished/notifications-1692106852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692106852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692110467.json b/data/finished/notifications-1692110467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692110467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692114067.json b/data/finished/notifications-1692114067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692114067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692117676.json b/data/finished/notifications-1692117676.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692117676.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692121260.json b/data/finished/notifications-1692121260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692121260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692124853.json b/data/finished/notifications-1692124853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692124853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692128463.json b/data/finished/notifications-1692128463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692128463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692132068.json b/data/finished/notifications-1692132068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692132068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692135655.json b/data/finished/notifications-1692135655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692135655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692139248.json b/data/finished/notifications-1692139248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692139248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692142856.json b/data/finished/notifications-1692142856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692142856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692149480.json b/data/finished/notifications-1692149480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692149480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692151392.json b/data/finished/notifications-1692151392.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692151392.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692153661.json b/data/finished/notifications-1692153661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692153661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692157263.json b/data/finished/notifications-1692157263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692157263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692160859.json b/data/finished/notifications-1692160859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692160859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692164480.json b/data/finished/notifications-1692164480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692164480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692168049.json b/data/finished/notifications-1692168049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692168049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692171674.json b/data/finished/notifications-1692171674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692171674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692175257.json b/data/finished/notifications-1692175257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692175257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692178880.json b/data/finished/notifications-1692178880.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692178880.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692182471.json b/data/finished/notifications-1692182471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692182471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692186052.json b/data/finished/notifications-1692186052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692186052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692190314.json b/data/finished/notifications-1692190314.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692190314.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692193268.json b/data/finished/notifications-1692193268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692193268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692196863.json b/data/finished/notifications-1692196863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692196863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692200463.json b/data/finished/notifications-1692200463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692200463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692204066.json b/data/finished/notifications-1692204066.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692204066.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692207656.json b/data/finished/notifications-1692207656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692207656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692211269.json b/data/finished/notifications-1692211269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692211269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692214862.json b/data/finished/notifications-1692214862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692214862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692218465.json b/data/finished/notifications-1692218465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692218465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692222082.json b/data/finished/notifications-1692222082.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692222082.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692225656.json b/data/finished/notifications-1692225656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692225656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692229265.json b/data/finished/notifications-1692229265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692229265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692235823.json b/data/finished/notifications-1692235823.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692235823.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692237705.json b/data/finished/notifications-1692237705.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692237705.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692240055.json b/data/finished/notifications-1692240055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692240055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692243665.json b/data/finished/notifications-1692243665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692243665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692247284.json b/data/finished/notifications-1692247284.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692247284.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692250854.json b/data/finished/notifications-1692250854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692250854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692254453.json b/data/finished/notifications-1692254453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692254453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692258066.json b/data/finished/notifications-1692258066.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692258066.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692261667.json b/data/finished/notifications-1692261667.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692261667.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692265261.json b/data/finished/notifications-1692265261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692265261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692268854.json b/data/finished/notifications-1692268854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692268854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692272474.json b/data/finished/notifications-1692272474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692272474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692276687.json b/data/finished/notifications-1692276687.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692276687.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692279661.json b/data/finished/notifications-1692279661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692279661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692283267.json b/data/finished/notifications-1692283267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692283267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692286860.json b/data/finished/notifications-1692286860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692286860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692290477.json b/data/finished/notifications-1692290477.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692290477.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692294072.json b/data/finished/notifications-1692294072.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692294072.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692297655.json b/data/finished/notifications-1692297655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692297655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692301257.json b/data/finished/notifications-1692301257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692301257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692304857.json b/data/finished/notifications-1692304857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692304857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692308463.json b/data/finished/notifications-1692308463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692308463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692312054.json b/data/finished/notifications-1692312054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692312054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692315659.json b/data/finished/notifications-1692315659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692315659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692322277.json b/data/finished/notifications-1692322277.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692322277.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692324177.json b/data/finished/notifications-1692324177.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692324177.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692326462.json b/data/finished/notifications-1692326462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692326462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692330059.json b/data/finished/notifications-1692330059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692330059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692333663.json b/data/finished/notifications-1692333663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692333663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692337271.json b/data/finished/notifications-1692337271.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692337271.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692340871.json b/data/finished/notifications-1692340871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692340871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692344465.json b/data/finished/notifications-1692344465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692344465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692348059.json b/data/finished/notifications-1692348059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692348059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692351660.json b/data/finished/notifications-1692351660.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692351660.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692355265.json b/data/finished/notifications-1692355265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692355265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692358869.json b/data/finished/notifications-1692358869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692358869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692363093.json b/data/finished/notifications-1692363093.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692363093.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692366061.json b/data/finished/notifications-1692366061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692366061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692369671.json b/data/finished/notifications-1692369671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692369671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692373260.json b/data/finished/notifications-1692373260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692373260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692376873.json b/data/finished/notifications-1692376873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692376873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692380461.json b/data/finished/notifications-1692380461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692380461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692384073.json b/data/finished/notifications-1692384073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692384073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692387655.json b/data/finished/notifications-1692387655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692387655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692391257.json b/data/finished/notifications-1692391257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692391257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692394871.json b/data/finished/notifications-1692394871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692394871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692398461.json b/data/finished/notifications-1692398461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692398461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692402077.json b/data/finished/notifications-1692402077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692402077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692408513.json b/data/finished/notifications-1692408513.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692408513.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692410441.json b/data/finished/notifications-1692410441.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692410441.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692412873.json b/data/finished/notifications-1692412873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692412873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692416462.json b/data/finished/notifications-1692416462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692416462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692420055.json b/data/finished/notifications-1692420055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692420055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692423651.json b/data/finished/notifications-1692423651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692423651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692427262.json b/data/finished/notifications-1692427262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692427262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692430858.json b/data/finished/notifications-1692430858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692430858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692434458.json b/data/finished/notifications-1692434458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692434458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692438052.json b/data/finished/notifications-1692438052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692438052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692441669.json b/data/finished/notifications-1692441669.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692441669.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692445254.json b/data/finished/notifications-1692445254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692445254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692449337.json b/data/finished/notifications-1692449337.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692449337.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692452460.json b/data/finished/notifications-1692452460.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692452460.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692456053.json b/data/finished/notifications-1692456053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692456053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692459656.json b/data/finished/notifications-1692459656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692459656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692463260.json b/data/finished/notifications-1692463260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692463260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692466856.json b/data/finished/notifications-1692466856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692466856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692470468.json b/data/finished/notifications-1692470468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692470468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692474076.json b/data/finished/notifications-1692474076.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692474076.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692477663.json b/data/finished/notifications-1692477663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692477663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692481268.json b/data/finished/notifications-1692481268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692481268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692484876.json b/data/finished/notifications-1692484876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692484876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692488472.json b/data/finished/notifications-1692488472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692488472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692497011.json b/data/finished/notifications-1692497011.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692497011.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692499262.json b/data/finished/notifications-1692499262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692499262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692502865.json b/data/finished/notifications-1692502865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692502865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692506486.json b/data/finished/notifications-1692506486.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692506486.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692510055.json b/data/finished/notifications-1692510055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692510055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692513672.json b/data/finished/notifications-1692513672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692513672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692517250.json b/data/finished/notifications-1692517250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692517250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692520873.json b/data/finished/notifications-1692520873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692520873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692524459.json b/data/finished/notifications-1692524459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692524459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692528070.json b/data/finished/notifications-1692528070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692528070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692531673.json b/data/finished/notifications-1692531673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692531673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692535712.json b/data/finished/notifications-1692535712.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692535712.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692538871.json b/data/finished/notifications-1692538871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692538871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692542464.json b/data/finished/notifications-1692542464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692542464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692546056.json b/data/finished/notifications-1692546056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692546056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692549664.json b/data/finished/notifications-1692549664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692549664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692553270.json b/data/finished/notifications-1692553270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692553270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692556854.json b/data/finished/notifications-1692556854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692556854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692560459.json b/data/finished/notifications-1692560459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692560459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692564069.json b/data/finished/notifications-1692564069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692564069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692567669.json b/data/finished/notifications-1692567669.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692567669.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692571262.json b/data/finished/notifications-1692571262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692571262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692574868.json b/data/finished/notifications-1692574868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692574868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692581511.json b/data/finished/notifications-1692581511.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692581511.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692583375.json b/data/finished/notifications-1692583375.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692583375.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692585665.json b/data/finished/notifications-1692585665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692585665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692589252.json b/data/finished/notifications-1692589252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692589252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692592866.json b/data/finished/notifications-1692592866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692592866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692596449.json b/data/finished/notifications-1692596449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692596449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692600079.json b/data/finished/notifications-1692600079.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692600079.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692603672.json b/data/finished/notifications-1692603672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692603672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692607261.json b/data/finished/notifications-1692607261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692607261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692610866.json b/data/finished/notifications-1692610866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692610866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692614464.json b/data/finished/notifications-1692614464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692614464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692618061.json b/data/finished/notifications-1692618061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692618061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692622354.json b/data/finished/notifications-1692622354.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692622354.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692625254.json b/data/finished/notifications-1692625254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692625254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692628884.json b/data/finished/notifications-1692628884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692628884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692632464.json b/data/finished/notifications-1692632464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692632464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692636063.json b/data/finished/notifications-1692636063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692636063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692639663.json b/data/finished/notifications-1692639663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692639663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692643253.json b/data/finished/notifications-1692643253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692643253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692646857.json b/data/finished/notifications-1692646857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692646857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692650472.json b/data/finished/notifications-1692650472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692650472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692654053.json b/data/finished/notifications-1692654053.json new file mode 100644 index 00000000..bad47d45 --- /dev/null +++ b/data/finished/notifications-1692654053.json @@ -0,0 +1 @@ +{"bhone17@gmail.com": {"FRA - Lake Francis (No Campfires)": {"2023-09-01": {"remaining": 1, "total": 1}}}} \ No newline at end of file diff --git a/data/finished/notifications-1692657676.json b/data/finished/notifications-1692657676.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692657676.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692661273.json b/data/finished/notifications-1692661273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692661273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692667965.json b/data/finished/notifications-1692667965.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692667965.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692669838.json b/data/finished/notifications-1692669838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692669838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692672064.json b/data/finished/notifications-1692672064.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692672064.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692675666.json b/data/finished/notifications-1692675666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692675666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692679277.json b/data/finished/notifications-1692679277.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692679277.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692682870.json b/data/finished/notifications-1692682870.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692682870.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692686461.json b/data/finished/notifications-1692686461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692686461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692690059.json b/data/finished/notifications-1692690059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692690059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692693668.json b/data/finished/notifications-1692693668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692693668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692697268.json b/data/finished/notifications-1692697268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692697268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692700867.json b/data/finished/notifications-1692700867.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692700867.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692704471.json b/data/finished/notifications-1692704471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692704471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692708754.json b/data/finished/notifications-1692708754.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692708754.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692711661.json b/data/finished/notifications-1692711661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692711661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692715262.json b/data/finished/notifications-1692715262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692715262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692718872.json b/data/finished/notifications-1692718872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692718872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692722467.json b/data/finished/notifications-1692722467.json new file mode 100644 index 00000000..7e2e51cd --- /dev/null +++ b/data/finished/notifications-1692722467.json @@ -0,0 +1 @@ +{"bhone17@gmail.com": {"HOL - Hole in the Wall (No Campfires)": {"2023-08-29": {"remaining": 1, "total": 3}}}} \ No newline at end of file diff --git a/data/finished/notifications-1692726063.json b/data/finished/notifications-1692726063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692726063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692729654.json b/data/finished/notifications-1692729654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692729654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692733276.json b/data/finished/notifications-1692733276.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692733276.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692736865.json b/data/finished/notifications-1692736865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692736865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692740464.json b/data/finished/notifications-1692740464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692740464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692744068.json b/data/finished/notifications-1692744068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692744068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692747663.json b/data/finished/notifications-1692747663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692747663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692754296.json b/data/finished/notifications-1692754296.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692754296.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692756175.json b/data/finished/notifications-1692756175.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692756175.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692758458.json b/data/finished/notifications-1692758458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692758458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692762060.json b/data/finished/notifications-1692762060.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692762060.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692765663.json b/data/finished/notifications-1692765663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692765663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692769261.json b/data/finished/notifications-1692769261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692769261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692772865.json b/data/finished/notifications-1692772865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692772865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692776456.json b/data/finished/notifications-1692776456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692776456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692780087.json b/data/finished/notifications-1692780087.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692780087.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692783675.json b/data/finished/notifications-1692783675.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692783675.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692787257.json b/data/finished/notifications-1692787257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692787257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692790857.json b/data/finished/notifications-1692790857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692790857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692795159.json b/data/finished/notifications-1692795159.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692795159.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692798060.json b/data/finished/notifications-1692798060.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692798060.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692801659.json b/data/finished/notifications-1692801659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692801659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692805274.json b/data/finished/notifications-1692805274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692805274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692808924.json b/data/finished/notifications-1692808924.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692808924.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692812461.json b/data/finished/notifications-1692812461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692812461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692816087.json b/data/finished/notifications-1692816087.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692816087.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692819664.json b/data/finished/notifications-1692819664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692819664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692823267.json b/data/finished/notifications-1692823267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692823267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692826878.json b/data/finished/notifications-1692826878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692826878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692830454.json b/data/finished/notifications-1692830454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692830454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692834058.json b/data/finished/notifications-1692834058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692834058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692840681.json b/data/finished/notifications-1692840681.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692840681.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692842585.json b/data/finished/notifications-1692842585.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692842585.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692844870.json b/data/finished/notifications-1692844870.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692844870.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692848480.json b/data/finished/notifications-1692848480.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692848480.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692852077.json b/data/finished/notifications-1692852077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692852077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692855666.json b/data/finished/notifications-1692855666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692855666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692859257.json b/data/finished/notifications-1692859257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692859257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692862873.json b/data/finished/notifications-1692862873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692862873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692866469.json b/data/finished/notifications-1692866469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692866469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692870059.json b/data/finished/notifications-1692870059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692870059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692873649.json b/data/finished/notifications-1692873649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692873649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692877270.json b/data/finished/notifications-1692877270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692877270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692881568.json b/data/finished/notifications-1692881568.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692881568.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692884469.json b/data/finished/notifications-1692884469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692884469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692888056.json b/data/finished/notifications-1692888056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692888056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692891680.json b/data/finished/notifications-1692891680.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692891680.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692895283.json b/data/finished/notifications-1692895283.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692895283.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692898856.json b/data/finished/notifications-1692898856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692898856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692902465.json b/data/finished/notifications-1692902465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692902465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692906074.json b/data/finished/notifications-1692906074.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692906074.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692909653.json b/data/finished/notifications-1692909653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692909653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692913275.json b/data/finished/notifications-1692913275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692913275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692916863.json b/data/finished/notifications-1692916863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692916863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692920466.json b/data/finished/notifications-1692920466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692920466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692927220.json b/data/finished/notifications-1692927220.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692927220.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692929097.json b/data/finished/notifications-1692929097.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692929097.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692931252.json b/data/finished/notifications-1692931252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692931252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692934860.json b/data/finished/notifications-1692934860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692934860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692938467.json b/data/finished/notifications-1692938467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692938467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692942062.json b/data/finished/notifications-1692942062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692942062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692945671.json b/data/finished/notifications-1692945671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692945671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692949268.json b/data/finished/notifications-1692949268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692949268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692952883.json b/data/finished/notifications-1692952883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692952883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692956464.json b/data/finished/notifications-1692956464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692956464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692960056.json b/data/finished/notifications-1692960056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692960056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692963674.json b/data/finished/notifications-1692963674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692963674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692967957.json b/data/finished/notifications-1692967957.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692967957.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692970853.json b/data/finished/notifications-1692970853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692970853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692974460.json b/data/finished/notifications-1692974460.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692974460.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692978055.json b/data/finished/notifications-1692978055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692978055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692981677.json b/data/finished/notifications-1692981677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692981677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692985268.json b/data/finished/notifications-1692985268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692985268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692988864.json b/data/finished/notifications-1692988864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692988864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692992447.json b/data/finished/notifications-1692992447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692992447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692996086.json b/data/finished/notifications-1692996086.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692996086.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1692999668.json b/data/finished/notifications-1692999668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1692999668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693003257.json b/data/finished/notifications-1693003257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693003257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693006859.json b/data/finished/notifications-1693006859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693006859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693013402.json b/data/finished/notifications-1693013402.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693013402.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693015311.json b/data/finished/notifications-1693015311.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693015311.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693017673.json b/data/finished/notifications-1693017673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693017673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693021259.json b/data/finished/notifications-1693021259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693021259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693024849.json b/data/finished/notifications-1693024849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693024849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693028447.json b/data/finished/notifications-1693028447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693028447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693032055.json b/data/finished/notifications-1693032055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693032055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693035659.json b/data/finished/notifications-1693035659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693035659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693039249.json b/data/finished/notifications-1693039249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693039249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693042853.json b/data/finished/notifications-1693042853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693042853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693046473.json b/data/finished/notifications-1693046473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693046473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693050060.json b/data/finished/notifications-1693050060.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693050060.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693054153.json b/data/finished/notifications-1693054153.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693054153.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693057264.json b/data/finished/notifications-1693057264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693057264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693060884.json b/data/finished/notifications-1693060884.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693060884.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693064455.json b/data/finished/notifications-1693064455.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693064455.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693068063.json b/data/finished/notifications-1693068063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693068063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693071658.json b/data/finished/notifications-1693071658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693071658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693075276.json b/data/finished/notifications-1693075276.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693075276.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693078858.json b/data/finished/notifications-1693078858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693078858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693082457.json b/data/finished/notifications-1693082457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693082457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693086065.json b/data/finished/notifications-1693086065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693086065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693089673.json b/data/finished/notifications-1693089673.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693089673.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693093270.json b/data/finished/notifications-1693093270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693093270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693100149.json b/data/finished/notifications-1693100149.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693100149.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693101965.json b/data/finished/notifications-1693101965.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693101965.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693104063.json b/data/finished/notifications-1693104063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693104063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693107658.json b/data/finished/notifications-1693107658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693107658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693111267.json b/data/finished/notifications-1693111267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693111267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693114862.json b/data/finished/notifications-1693114862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693114862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693118465.json b/data/finished/notifications-1693118465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693118465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693122059.json b/data/finished/notifications-1693122059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693122059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693125677.json b/data/finished/notifications-1693125677.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693125677.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693129263.json b/data/finished/notifications-1693129263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693129263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693132848.json b/data/finished/notifications-1693132848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693132848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693136470.json b/data/finished/notifications-1693136470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693136470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693140574.json b/data/finished/notifications-1693140574.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693140574.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693143679.json b/data/finished/notifications-1693143679.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693143679.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693147253.json b/data/finished/notifications-1693147253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693147253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693150856.json b/data/finished/notifications-1693150856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693150856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693154457.json b/data/finished/notifications-1693154457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693154457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693158081.json b/data/finished/notifications-1693158081.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693158081.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693161672.json b/data/finished/notifications-1693161672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693161672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693165259.json b/data/finished/notifications-1693165259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693165259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693168849.json b/data/finished/notifications-1693168849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693168849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693172471.json b/data/finished/notifications-1693172471.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693172471.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693176055.json b/data/finished/notifications-1693176055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693176055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693179654.json b/data/finished/notifications-1693179654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693179654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693186446.json b/data/finished/notifications-1693186446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693186446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693188311.json b/data/finished/notifications-1693188311.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693188311.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693190459.json b/data/finished/notifications-1693190459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693190459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693194058.json b/data/finished/notifications-1693194058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693194058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693197671.json b/data/finished/notifications-1693197671.json new file mode 100644 index 00000000..adb98d67 --- /dev/null +++ b/data/finished/notifications-1693197671.json @@ -0,0 +1 @@ +{"bhone17@gmail.com": {"BOU - Boulder Pass (No Campfires)": {"2023-08-29": {"remaining": 1, "total": 2}}}} \ No newline at end of file diff --git a/data/finished/notifications-1693201256.json b/data/finished/notifications-1693201256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693201256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693204848.json b/data/finished/notifications-1693204848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693204848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693208457.json b/data/finished/notifications-1693208457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693208457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693212052.json b/data/finished/notifications-1693212052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693212052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693215678.json b/data/finished/notifications-1693215678.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693215678.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693219278.json b/data/finished/notifications-1693219278.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693219278.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693222876.json b/data/finished/notifications-1693222876.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693222876.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693227227.json b/data/finished/notifications-1693227227.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693227227.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693230125.json b/data/finished/notifications-1693230125.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693230125.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693233662.json b/data/finished/notifications-1693233662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693233662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693237264.json b/data/finished/notifications-1693237264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693237264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693240863.json b/data/finished/notifications-1693240863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693240863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693244473.json b/data/finished/notifications-1693244473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693244473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693248046.json b/data/finished/notifications-1693248046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693248046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693251658.json b/data/finished/notifications-1693251658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693251658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693255255.json b/data/finished/notifications-1693255255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693255255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693258863.json b/data/finished/notifications-1693258863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693258863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693262451.json b/data/finished/notifications-1693262451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693262451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693266354.json b/data/finished/notifications-1693266354.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693266354.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693272815.json b/data/finished/notifications-1693272815.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693272815.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693274695.json b/data/finished/notifications-1693274695.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693274695.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693277994.json b/data/finished/notifications-1693277994.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693277994.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693280462.json b/data/finished/notifications-1693280462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693280462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693284062.json b/data/finished/notifications-1693284062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693284062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693287664.json b/data/finished/notifications-1693287664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693287664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693291264.json b/data/finished/notifications-1693291264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693291264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693294878.json b/data/finished/notifications-1693294878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693294878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693298474.json b/data/finished/notifications-1693298474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693298474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693302048.json b/data/finished/notifications-1693302048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693302048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693305671.json b/data/finished/notifications-1693305671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693305671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693309280.json b/data/finished/notifications-1693309280.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693309280.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693313613.json b/data/finished/notifications-1693313613.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693313613.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693316479.json b/data/finished/notifications-1693316479.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693316479.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693320061.json b/data/finished/notifications-1693320061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693320061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693323672.json b/data/finished/notifications-1693323672.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693323672.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693327291.json b/data/finished/notifications-1693327291.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693327291.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693330865.json b/data/finished/notifications-1693330865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693330865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693334466.json b/data/finished/notifications-1693334466.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693334466.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693338058.json b/data/finished/notifications-1693338058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693338058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693341665.json b/data/finished/notifications-1693341665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693341665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693345265.json b/data/finished/notifications-1693345265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693345265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693348863.json b/data/finished/notifications-1693348863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693348863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693352454.json b/data/finished/notifications-1693352454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693352454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693359192.json b/data/finished/notifications-1693359192.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693359192.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693361077.json b/data/finished/notifications-1693361077.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693361077.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693363253.json b/data/finished/notifications-1693363253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693363253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693366848.json b/data/finished/notifications-1693366848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693366848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693370470.json b/data/finished/notifications-1693370470.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693370470.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693374073.json b/data/finished/notifications-1693374073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693374073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693377657.json b/data/finished/notifications-1693377657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693377657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693381279.json b/data/finished/notifications-1693381279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693381279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693384860.json b/data/finished/notifications-1693384860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693384860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693388474.json b/data/finished/notifications-1693388474.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693388474.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693392068.json b/data/finished/notifications-1693392068.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693392068.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693395665.json b/data/finished/notifications-1693395665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693395665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693399996.json b/data/finished/notifications-1693399996.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693399996.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693402864.json b/data/finished/notifications-1693402864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693402864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693406472.json b/data/finished/notifications-1693406472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693406472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693410067.json b/data/finished/notifications-1693410067.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693410067.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693413695.json b/data/finished/notifications-1693413695.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693413695.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693417254.json b/data/finished/notifications-1693417254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693417254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693420868.json b/data/finished/notifications-1693420868.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693420868.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693424450.json b/data/finished/notifications-1693424450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693424450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693428066.json b/data/finished/notifications-1693428066.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693428066.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693431654.json b/data/finished/notifications-1693431654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693431654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693435270.json b/data/finished/notifications-1693435270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693435270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693438871.json b/data/finished/notifications-1693438871.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693438871.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693445624.json b/data/finished/notifications-1693445624.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693445624.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693447516.json b/data/finished/notifications-1693447516.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693447516.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693449659.json b/data/finished/notifications-1693449659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693449659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693453256.json b/data/finished/notifications-1693453256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693453256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693456863.json b/data/finished/notifications-1693456863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693456863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693460478.json b/data/finished/notifications-1693460478.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693460478.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693464052.json b/data/finished/notifications-1693464052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693464052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693467652.json b/data/finished/notifications-1693467652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693467652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693471265.json b/data/finished/notifications-1693471265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693471265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693474854.json b/data/finished/notifications-1693474854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693474854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693478464.json b/data/finished/notifications-1693478464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693478464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693482080.json b/data/finished/notifications-1693482080.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693482080.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693486421.json b/data/finished/notifications-1693486421.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693486421.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693489256.json b/data/finished/notifications-1693489256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693489256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693492877.json b/data/finished/notifications-1693492877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693492877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693496462.json b/data/finished/notifications-1693496462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693496462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693500119.json b/data/finished/notifications-1693500119.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693500119.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693503668.json b/data/finished/notifications-1693503668.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693503668.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693507274.json b/data/finished/notifications-1693507274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693507274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693510862.json b/data/finished/notifications-1693510862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693510862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693514467.json b/data/finished/notifications-1693514467.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693514467.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693518057.json b/data/finished/notifications-1693518057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693518057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693521664.json b/data/finished/notifications-1693521664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693521664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693525274.json b/data/finished/notifications-1693525274.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693525274.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693532333.json b/data/finished/notifications-1693532333.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693532333.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693536066.json b/data/finished/notifications-1693536066.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693536066.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693539671.json b/data/finished/notifications-1693539671.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693539671.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693543277.json b/data/finished/notifications-1693543277.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693543277.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693546861.json b/data/finished/notifications-1693546861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693546861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693939674.json b/data/finished/notifications-1693939674.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693939674.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693942866.json b/data/finished/notifications-1693942866.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693942866.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693946447.json b/data/finished/notifications-1693946447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693946447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693950044.json b/data/finished/notifications-1693950044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693950044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693953657.json b/data/finished/notifications-1693953657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693953657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693957263.json b/data/finished/notifications-1693957263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693957263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693963994.json b/data/finished/notifications-1693963994.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693963994.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693965887.json b/data/finished/notifications-1693965887.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693965887.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693968045.json b/data/finished/notifications-1693968045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693968045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693971644.json b/data/finished/notifications-1693971644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693971644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693975265.json b/data/finished/notifications-1693975265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693975265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693978858.json b/data/finished/notifications-1693978858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693978858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693982454.json b/data/finished/notifications-1693982454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693982454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693986044.json b/data/finished/notifications-1693986044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693986044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693989648.json b/data/finished/notifications-1693989648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693989648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693993249.json b/data/finished/notifications-1693993249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693993249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1693996844.json b/data/finished/notifications-1693996844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1693996844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694000447.json b/data/finished/notifications-1694000447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694000447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694004831.json b/data/finished/notifications-1694004831.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694004831.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694007643.json b/data/finished/notifications-1694007643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694007643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694011246.json b/data/finished/notifications-1694011246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694011246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694014855.json b/data/finished/notifications-1694014855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694014855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694018475.json b/data/finished/notifications-1694018475.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694018475.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694022056.json b/data/finished/notifications-1694022056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694022056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694025662.json b/data/finished/notifications-1694025662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694025662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694029269.json b/data/finished/notifications-1694029269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694029269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694032854.json b/data/finished/notifications-1694032854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694032854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694036458.json b/data/finished/notifications-1694036458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694036458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694040048.json b/data/finished/notifications-1694040048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694040048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694043654.json b/data/finished/notifications-1694043654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694043654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694050402.json b/data/finished/notifications-1694050402.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694050402.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694052293.json b/data/finished/notifications-1694052293.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694052293.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694054442.json b/data/finished/notifications-1694054442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694054442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694058045.json b/data/finished/notifications-1694058045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694058045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694061658.json b/data/finished/notifications-1694061658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694061658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694065246.json b/data/finished/notifications-1694065246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694065246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694068856.json b/data/finished/notifications-1694068856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694068856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694072442.json b/data/finished/notifications-1694072442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694072442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694076064.json b/data/finished/notifications-1694076064.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694076064.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694079650.json b/data/finished/notifications-1694079650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694079650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694083265.json b/data/finished/notifications-1694083265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694083265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694086849.json b/data/finished/notifications-1694086849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694086849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694091184.json b/data/finished/notifications-1694091184.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694091184.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694094057.json b/data/finished/notifications-1694094057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694094057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694097651.json b/data/finished/notifications-1694097651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694097651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694101244.json b/data/finished/notifications-1694101244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694101244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694104857.json b/data/finished/notifications-1694104857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694104857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694108458.json b/data/finished/notifications-1694108458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694108458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694112054.json b/data/finished/notifications-1694112054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694112054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694115652.json b/data/finished/notifications-1694115652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694115652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694119244.json b/data/finished/notifications-1694119244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694119244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694122843.json b/data/finished/notifications-1694122843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694122843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694126443.json b/data/finished/notifications-1694126443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694126443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694130048.json b/data/finished/notifications-1694130048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694130048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694136837.json b/data/finished/notifications-1694136837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694136837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694138704.json b/data/finished/notifications-1694138704.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694138704.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694140854.json b/data/finished/notifications-1694140854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694140854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694144458.json b/data/finished/notifications-1694144458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694144458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694148047.json b/data/finished/notifications-1694148047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694148047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694151658.json b/data/finished/notifications-1694151658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694151658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694155250.json b/data/finished/notifications-1694155250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694155250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694158855.json b/data/finished/notifications-1694158855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694158855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694162458.json b/data/finished/notifications-1694162458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694162458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694166050.json b/data/finished/notifications-1694166050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694166050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694169652.json b/data/finished/notifications-1694169652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694169652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694173247.json b/data/finished/notifications-1694173247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694173247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694177558.json b/data/finished/notifications-1694177558.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694177558.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694180453.json b/data/finished/notifications-1694180453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694180453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694184054.json b/data/finished/notifications-1694184054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694184054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694187655.json b/data/finished/notifications-1694187655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694187655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694191289.json b/data/finished/notifications-1694191289.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694191289.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694194846.json b/data/finished/notifications-1694194846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694194846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694198454.json b/data/finished/notifications-1694198454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694198454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694202044.json b/data/finished/notifications-1694202044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694202044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694205654.json b/data/finished/notifications-1694205654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694205654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694209241.json b/data/finished/notifications-1694209241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694209241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694212845.json b/data/finished/notifications-1694212845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694212845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694216449.json b/data/finished/notifications-1694216449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694216449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694223055.json b/data/finished/notifications-1694223055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694223055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694224936.json b/data/finished/notifications-1694224936.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694224936.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694227262.json b/data/finished/notifications-1694227262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694227262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694230853.json b/data/finished/notifications-1694230853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694230853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694234450.json b/data/finished/notifications-1694234450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694234450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694238059.json b/data/finished/notifications-1694238059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694238059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694241655.json b/data/finished/notifications-1694241655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694241655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694245256.json b/data/finished/notifications-1694245256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694245256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694248857.json b/data/finished/notifications-1694248857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694248857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694252461.json b/data/finished/notifications-1694252461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694252461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694256052.json b/data/finished/notifications-1694256052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694256052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694259648.json b/data/finished/notifications-1694259648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694259648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694263784.json b/data/finished/notifications-1694263784.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694263784.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694266857.json b/data/finished/notifications-1694266857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694266857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694270440.json b/data/finished/notifications-1694270440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694270440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694274042.json b/data/finished/notifications-1694274042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694274042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694277636.json b/data/finished/notifications-1694277636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694277636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694281253.json b/data/finished/notifications-1694281253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694281253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694284843.json b/data/finished/notifications-1694284843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694284843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694288456.json b/data/finished/notifications-1694288456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694288456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694292047.json b/data/finished/notifications-1694292047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694292047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694295659.json b/data/finished/notifications-1694295659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694295659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694299262.json b/data/finished/notifications-1694299262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694299262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694302843.json b/data/finished/notifications-1694302843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694302843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694309815.json b/data/finished/notifications-1694309815.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694309815.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694311612.json b/data/finished/notifications-1694311612.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694311612.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694313661.json b/data/finished/notifications-1694313661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694313661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694317246.json b/data/finished/notifications-1694317246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694317246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694320859.json b/data/finished/notifications-1694320859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694320859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694324472.json b/data/finished/notifications-1694324472.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694324472.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694328042.json b/data/finished/notifications-1694328042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694328042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694331640.json b/data/finished/notifications-1694331640.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694331640.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694335244.json b/data/finished/notifications-1694335244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694335244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694338854.json b/data/finished/notifications-1694338854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694338854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694342445.json b/data/finished/notifications-1694342445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694342445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694346046.json b/data/finished/notifications-1694346046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694346046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694350169.json b/data/finished/notifications-1694350169.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694350169.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694353244.json b/data/finished/notifications-1694353244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694353244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694356846.json b/data/finished/notifications-1694356846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694356846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694360452.json b/data/finished/notifications-1694360452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694360452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694364058.json b/data/finished/notifications-1694364058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694364058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694367656.json b/data/finished/notifications-1694367656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694367656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694371252.json b/data/finished/notifications-1694371252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694371252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694374849.json b/data/finished/notifications-1694374849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694374849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694378457.json b/data/finished/notifications-1694378457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694378457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694382058.json b/data/finished/notifications-1694382058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694382058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694385657.json b/data/finished/notifications-1694385657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694385657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694389242.json b/data/finished/notifications-1694389242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694389242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694396081.json b/data/finished/notifications-1694396081.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694396081.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694397949.json b/data/finished/notifications-1694397949.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694397949.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694400053.json b/data/finished/notifications-1694400053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694400053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694403663.json b/data/finished/notifications-1694403663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694403663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694407253.json b/data/finished/notifications-1694407253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694407253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694410841.json b/data/finished/notifications-1694410841.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694410841.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694414450.json b/data/finished/notifications-1694414450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694414450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694418054.json b/data/finished/notifications-1694418054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694418054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694421645.json b/data/finished/notifications-1694421645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694421645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694425247.json b/data/finished/notifications-1694425247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694425247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694428844.json b/data/finished/notifications-1694428844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694428844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694432455.json b/data/finished/notifications-1694432455.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694432455.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694436835.json b/data/finished/notifications-1694436835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694436835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694439640.json b/data/finished/notifications-1694439640.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694439640.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694443248.json b/data/finished/notifications-1694443248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694443248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694446848.json b/data/finished/notifications-1694446848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694446848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694450498.json b/data/finished/notifications-1694450498.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694450498.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694454065.json b/data/finished/notifications-1694454065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694454065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694457658.json b/data/finished/notifications-1694457658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694457658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694461262.json b/data/finished/notifications-1694461262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694461262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694464851.json b/data/finished/notifications-1694464851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694464851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694468454.json b/data/finished/notifications-1694468454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694468454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694472057.json b/data/finished/notifications-1694472057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694472057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694475647.json b/data/finished/notifications-1694475647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694475647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694482331.json b/data/finished/notifications-1694482331.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694482331.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694484227.json b/data/finished/notifications-1694484227.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694484227.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694486449.json b/data/finished/notifications-1694486449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694486449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694490048.json b/data/finished/notifications-1694490048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694490048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694493640.json b/data/finished/notifications-1694493640.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694493640.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694497265.json b/data/finished/notifications-1694497265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694497265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694500853.json b/data/finished/notifications-1694500853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694500853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694504449.json b/data/finished/notifications-1694504449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694504449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694508046.json b/data/finished/notifications-1694508046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694508046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694511657.json b/data/finished/notifications-1694511657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694511657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694515248.json b/data/finished/notifications-1694515248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694515248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694518859.json b/data/finished/notifications-1694518859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694518859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694523205.json b/data/finished/notifications-1694523205.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694523205.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694526048.json b/data/finished/notifications-1694526048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694526048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694529643.json b/data/finished/notifications-1694529643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694529643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694533242.json b/data/finished/notifications-1694533242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694533242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694536888.json b/data/finished/notifications-1694536888.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694536888.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694540450.json b/data/finished/notifications-1694540450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694540450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694544063.json b/data/finished/notifications-1694544063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694544063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694547641.json b/data/finished/notifications-1694547641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694547641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694551251.json b/data/finished/notifications-1694551251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694551251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694554846.json b/data/finished/notifications-1694554846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694554846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694558443.json b/data/finished/notifications-1694558443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694558443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694562061.json b/data/finished/notifications-1694562061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694562061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694568886.json b/data/finished/notifications-1694568886.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694568886.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694570743.json b/data/finished/notifications-1694570743.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694570743.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694572843.json b/data/finished/notifications-1694572843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694572843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694576455.json b/data/finished/notifications-1694576455.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694576455.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694580041.json b/data/finished/notifications-1694580041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694580041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694583640.json b/data/finished/notifications-1694583640.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694583640.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694587257.json b/data/finished/notifications-1694587257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694587257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694590848.json b/data/finished/notifications-1694590848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694590848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694594464.json b/data/finished/notifications-1694594464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694594464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694598044.json b/data/finished/notifications-1694598044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694598044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694601648.json b/data/finished/notifications-1694601648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694601648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694605257.json b/data/finished/notifications-1694605257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694605257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694609642.json b/data/finished/notifications-1694609642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694609642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694612463.json b/data/finished/notifications-1694612463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694612463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694616043.json b/data/finished/notifications-1694616043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694616043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694619648.json b/data/finished/notifications-1694619648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694619648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694623243.json b/data/finished/notifications-1694623243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694623243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694626861.json b/data/finished/notifications-1694626861.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694626861.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694630445.json b/data/finished/notifications-1694630445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694630445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694634047.json b/data/finished/notifications-1694634047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694634047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694637645.json b/data/finished/notifications-1694637645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694637645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694641243.json b/data/finished/notifications-1694641243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694641243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694644842.json b/data/finished/notifications-1694644842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694644842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694648459.json b/data/finished/notifications-1694648459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694648459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694655190.json b/data/finished/notifications-1694655190.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694655190.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694657065.json b/data/finished/notifications-1694657065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694657065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694659260.json b/data/finished/notifications-1694659260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694659260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694662851.json b/data/finished/notifications-1694662851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694662851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694666453.json b/data/finished/notifications-1694666453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694666453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694670052.json b/data/finished/notifications-1694670052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694670052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694673642.json b/data/finished/notifications-1694673642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694673642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694677249.json b/data/finished/notifications-1694677249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694677249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694680854.json b/data/finished/notifications-1694680854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694680854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694684462.json b/data/finished/notifications-1694684462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694684462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694688065.json b/data/finished/notifications-1694688065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694688065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694691654.json b/data/finished/notifications-1694691654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694691654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694696018.json b/data/finished/notifications-1694696018.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694696018.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694698854.json b/data/finished/notifications-1694698854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694698854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694702462.json b/data/finished/notifications-1694702462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694702462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694706053.json b/data/finished/notifications-1694706053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694706053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694709730.json b/data/finished/notifications-1694709730.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694709730.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694713249.json b/data/finished/notifications-1694713249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694713249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694716844.json b/data/finished/notifications-1694716844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694716844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694720443.json b/data/finished/notifications-1694720443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694720443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694724055.json b/data/finished/notifications-1694724055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694724055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694727647.json b/data/finished/notifications-1694727647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694727647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694731242.json b/data/finished/notifications-1694731242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694731242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694734852.json b/data/finished/notifications-1694734852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694734852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694741700.json b/data/finished/notifications-1694741700.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694741700.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694743579.json b/data/finished/notifications-1694743579.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694743579.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694745653.json b/data/finished/notifications-1694745653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694745653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694749258.json b/data/finished/notifications-1694749258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694749258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694752845.json b/data/finished/notifications-1694752845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694752845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694756441.json b/data/finished/notifications-1694756441.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694756441.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694760054.json b/data/finished/notifications-1694760054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694760054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694763663.json b/data/finished/notifications-1694763663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694763663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694767258.json b/data/finished/notifications-1694767258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694767258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694770855.json b/data/finished/notifications-1694770855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694770855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694774453.json b/data/finished/notifications-1694774453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694774453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694778056.json b/data/finished/notifications-1694778056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694778056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694782382.json b/data/finished/notifications-1694782382.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694782382.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694785252.json b/data/finished/notifications-1694785252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694785252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694788844.json b/data/finished/notifications-1694788844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694788844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694792454.json b/data/finished/notifications-1694792454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694792454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694796073.json b/data/finished/notifications-1694796073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694796073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694799660.json b/data/finished/notifications-1694799660.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694799660.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694803257.json b/data/finished/notifications-1694803257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694803257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694806856.json b/data/finished/notifications-1694806856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694806856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694810451.json b/data/finished/notifications-1694810451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694810451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694814060.json b/data/finished/notifications-1694814060.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694814060.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694817661.json b/data/finished/notifications-1694817661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694817661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694821244.json b/data/finished/notifications-1694821244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694821244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694827889.json b/data/finished/notifications-1694827889.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694827889.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694829785.json b/data/finished/notifications-1694829785.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694829785.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694832056.json b/data/finished/notifications-1694832056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694832056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694835652.json b/data/finished/notifications-1694835652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694835652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694839250.json b/data/finished/notifications-1694839250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694839250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694842844.json b/data/finished/notifications-1694842844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694842844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694846445.json b/data/finished/notifications-1694846445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694846445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694850056.json b/data/finished/notifications-1694850056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694850056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694853644.json b/data/finished/notifications-1694853644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694853644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694857257.json b/data/finished/notifications-1694857257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694857257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694860838.json b/data/finished/notifications-1694860838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694860838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694864454.json b/data/finished/notifications-1694864454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694864454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694868553.json b/data/finished/notifications-1694868553.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694868553.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694871661.json b/data/finished/notifications-1694871661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694871661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694875270.json b/data/finished/notifications-1694875270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694875270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694878858.json b/data/finished/notifications-1694878858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694878858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694882462.json b/data/finished/notifications-1694882462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694882462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694886043.json b/data/finished/notifications-1694886043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694886043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694889645.json b/data/finished/notifications-1694889645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694889645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694893247.json b/data/finished/notifications-1694893247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694893247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694896846.json b/data/finished/notifications-1694896846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694896846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694900463.json b/data/finished/notifications-1694900463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694900463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694904062.json b/data/finished/notifications-1694904062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694904062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694907662.json b/data/finished/notifications-1694907662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694907662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694914618.json b/data/finished/notifications-1694914618.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694914618.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694916422.json b/data/finished/notifications-1694916422.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694916422.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694918439.json b/data/finished/notifications-1694918439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694918439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694922065.json b/data/finished/notifications-1694922065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694922065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694925650.json b/data/finished/notifications-1694925650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694925650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694929266.json b/data/finished/notifications-1694929266.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694929266.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694932860.json b/data/finished/notifications-1694932860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694932860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694936443.json b/data/finished/notifications-1694936443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694936443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694940061.json b/data/finished/notifications-1694940061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694940061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694943650.json b/data/finished/notifications-1694943650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694943650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694947242.json b/data/finished/notifications-1694947242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694947242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694950862.json b/data/finished/notifications-1694950862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694950862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694954971.json b/data/finished/notifications-1694954971.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694954971.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694958046.json b/data/finished/notifications-1694958046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694958046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694961663.json b/data/finished/notifications-1694961663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694961663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694965250.json b/data/finished/notifications-1694965250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694965250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694968846.json b/data/finished/notifications-1694968846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694968846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694972449.json b/data/finished/notifications-1694972449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694972449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694976063.json b/data/finished/notifications-1694976063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694976063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694979660.json b/data/finished/notifications-1694979660.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694979660.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694983265.json b/data/finished/notifications-1694983265.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694983265.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694986857.json b/data/finished/notifications-1694986857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694986857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694990440.json b/data/finished/notifications-1694990440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694990440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1694994038.json b/data/finished/notifications-1694994038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1694994038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695000859.json b/data/finished/notifications-1695000859.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695000859.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695002727.json b/data/finished/notifications-1695002727.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695002727.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695004843.json b/data/finished/notifications-1695004843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695004843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695008451.json b/data/finished/notifications-1695008451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695008451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695012055.json b/data/finished/notifications-1695012055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695012055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695015646.json b/data/finished/notifications-1695015646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695015646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695019257.json b/data/finished/notifications-1695019257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695019257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695022856.json b/data/finished/notifications-1695022856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695022856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695026445.json b/data/finished/notifications-1695026445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695026445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695030063.json b/data/finished/notifications-1695030063.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695030063.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695033644.json b/data/finished/notifications-1695033644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695033644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695037246.json b/data/finished/notifications-1695037246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695037246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695041659.json b/data/finished/notifications-1695041659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695041659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695044447.json b/data/finished/notifications-1695044447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695044447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695048055.json b/data/finished/notifications-1695048055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695048055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695051666.json b/data/finished/notifications-1695051666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695051666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695055323.json b/data/finished/notifications-1695055323.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695055323.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695058848.json b/data/finished/notifications-1695058848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695058848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695062459.json b/data/finished/notifications-1695062459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695062459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695066050.json b/data/finished/notifications-1695066050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695066050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695069665.json b/data/finished/notifications-1695069665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695069665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695073261.json b/data/finished/notifications-1695073261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695073261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695076843.json b/data/finished/notifications-1695076843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695076843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695080468.json b/data/finished/notifications-1695080468.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695080468.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695087328.json b/data/finished/notifications-1695087328.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695087328.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695089219.json b/data/finished/notifications-1695089219.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695089219.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695091268.json b/data/finished/notifications-1695091268.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695091268.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695094858.json b/data/finished/notifications-1695094858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695094858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695098463.json b/data/finished/notifications-1695098463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695098463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695102042.json b/data/finished/notifications-1695102042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695102042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695105657.json b/data/finished/notifications-1695105657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695105657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695109257.json b/data/finished/notifications-1695109257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695109257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695112877.json b/data/finished/notifications-1695112877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695112877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695116473.json b/data/finished/notifications-1695116473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695116473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695120061.json b/data/finished/notifications-1695120061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695120061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695123676.json b/data/finished/notifications-1695123676.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695123676.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695128058.json b/data/finished/notifications-1695128058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695128058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695130864.json b/data/finished/notifications-1695130864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695130864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695134451.json b/data/finished/notifications-1695134451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695134451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695138053.json b/data/finished/notifications-1695138053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695138053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695141743.json b/data/finished/notifications-1695141743.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695141743.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695145253.json b/data/finished/notifications-1695145253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695145253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695148875.json b/data/finished/notifications-1695148875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695148875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695152446.json b/data/finished/notifications-1695152446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695152446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695156049.json b/data/finished/notifications-1695156049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695156049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695159650.json b/data/finished/notifications-1695159650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695159650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695163246.json b/data/finished/notifications-1695163246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695163246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695166848.json b/data/finished/notifications-1695166848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695166848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695173661.json b/data/finished/notifications-1695173661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695173661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695175540.json b/data/finished/notifications-1695175540.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695175540.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695177662.json b/data/finished/notifications-1695177662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695177662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695181240.json b/data/finished/notifications-1695181240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695181240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695184848.json b/data/finished/notifications-1695184848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695184848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695188440.json b/data/finished/notifications-1695188440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695188440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695192059.json b/data/finished/notifications-1695192059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695192059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695195663.json b/data/finished/notifications-1695195663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695195663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695199267.json b/data/finished/notifications-1695199267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695199267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695202852.json b/data/finished/notifications-1695202852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695202852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695206458.json b/data/finished/notifications-1695206458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695206458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695210051.json b/data/finished/notifications-1695210051.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695210051.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695214450.json b/data/finished/notifications-1695214450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695214450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695217245.json b/data/finished/notifications-1695217245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695217245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695220851.json b/data/finished/notifications-1695220851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695220851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695224456.json b/data/finished/notifications-1695224456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695224456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695228138.json b/data/finished/notifications-1695228138.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695228138.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695231655.json b/data/finished/notifications-1695231655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695231655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695235267.json b/data/finished/notifications-1695235267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695235267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695238857.json b/data/finished/notifications-1695238857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695238857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695242450.json b/data/finished/notifications-1695242450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695242450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695246061.json b/data/finished/notifications-1695246061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695246061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695249644.json b/data/finished/notifications-1695249644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695249644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695253252.json b/data/finished/notifications-1695253252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695253252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695259999.json b/data/finished/notifications-1695259999.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695259999.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695261883.json b/data/finished/notifications-1695261883.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695261883.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695264049.json b/data/finished/notifications-1695264049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695264049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695267669.json b/data/finished/notifications-1695267669.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695267669.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695271263.json b/data/finished/notifications-1695271263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695271263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695274870.json b/data/finished/notifications-1695274870.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695274870.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695278449.json b/data/finished/notifications-1695278449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695278449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695282052.json b/data/finished/notifications-1695282052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695282052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695285653.json b/data/finished/notifications-1695285653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695285653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695289247.json b/data/finished/notifications-1695289247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695289247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695292851.json b/data/finished/notifications-1695292851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695292851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695296448.json b/data/finished/notifications-1695296448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695296448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695300869.json b/data/finished/notifications-1695300869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695300869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695303647.json b/data/finished/notifications-1695303647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695303647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695307264.json b/data/finished/notifications-1695307264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695307264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695310858.json b/data/finished/notifications-1695310858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695310858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695314533.json b/data/finished/notifications-1695314533.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695314533.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695318059.json b/data/finished/notifications-1695318059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695318059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695321652.json b/data/finished/notifications-1695321652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695321652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695325242.json b/data/finished/notifications-1695325242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695325242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695328872.json b/data/finished/notifications-1695328872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695328872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695332450.json b/data/finished/notifications-1695332450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695332450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695336046.json b/data/finished/notifications-1695336046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695336046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695339653.json b/data/finished/notifications-1695339653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695339653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695346463.json b/data/finished/notifications-1695346463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695346463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695348345.json b/data/finished/notifications-1695348345.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695348345.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695350447.json b/data/finished/notifications-1695350447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695350447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695354052.json b/data/finished/notifications-1695354052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695354052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695357653.json b/data/finished/notifications-1695357653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695357653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695361248.json b/data/finished/notifications-1695361248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695361248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695364851.json b/data/finished/notifications-1695364851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695364851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695368443.json b/data/finished/notifications-1695368443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695368443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695372050.json b/data/finished/notifications-1695372050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695372050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695375652.json b/data/finished/notifications-1695375652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695375652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695379262.json b/data/finished/notifications-1695379262.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695379262.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695382858.json b/data/finished/notifications-1695382858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695382858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695387171.json b/data/finished/notifications-1695387171.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695387171.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695390049.json b/data/finished/notifications-1695390049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695390049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695393666.json b/data/finished/notifications-1695393666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695393666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695397263.json b/data/finished/notifications-1695397263.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695397263.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695400881.json b/data/finished/notifications-1695400881.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695400881.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695404446.json b/data/finished/notifications-1695404446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695404446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695408055.json b/data/finished/notifications-1695408055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695408055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695411663.json b/data/finished/notifications-1695411663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695411663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695415273.json b/data/finished/notifications-1695415273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695415273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695418872.json b/data/finished/notifications-1695418872.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695418872.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695422462.json b/data/finished/notifications-1695422462.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695422462.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695426061.json b/data/finished/notifications-1695426061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695426061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695432689.json b/data/finished/notifications-1695432689.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695432689.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695434581.json b/data/finished/notifications-1695434581.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695434581.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695436851.json b/data/finished/notifications-1695436851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695436851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695440459.json b/data/finished/notifications-1695440459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695440459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695444058.json b/data/finished/notifications-1695444058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695444058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695447658.json b/data/finished/notifications-1695447658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695447658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695451256.json b/data/finished/notifications-1695451256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695451256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695454842.json b/data/finished/notifications-1695454842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695454842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695458451.json b/data/finished/notifications-1695458451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695458451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695462053.json b/data/finished/notifications-1695462053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695462053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695465641.json b/data/finished/notifications-1695465641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695465641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695469246.json b/data/finished/notifications-1695469246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695469246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695473358.json b/data/finished/notifications-1695473358.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695473358.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695476464.json b/data/finished/notifications-1695476464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695476464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695480048.json b/data/finished/notifications-1695480048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695480048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695483655.json b/data/finished/notifications-1695483655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695483655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695487245.json b/data/finished/notifications-1695487245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695487245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695490864.json b/data/finished/notifications-1695490864.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695490864.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695494469.json b/data/finished/notifications-1695494469.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695494469.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695498045.json b/data/finished/notifications-1695498045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695498045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695501650.json b/data/finished/notifications-1695501650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695501650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695505246.json b/data/finished/notifications-1695505246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695505246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695508863.json b/data/finished/notifications-1695508863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695508863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695512446.json b/data/finished/notifications-1695512446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695512446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695519447.json b/data/finished/notifications-1695519447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695519447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695521259.json b/data/finished/notifications-1695521259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695521259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695523239.json b/data/finished/notifications-1695523239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695523239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695526844.json b/data/finished/notifications-1695526844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695526844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695530443.json b/data/finished/notifications-1695530443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695530443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695534059.json b/data/finished/notifications-1695534059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695534059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695537661.json b/data/finished/notifications-1695537661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695537661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695541258.json b/data/finished/notifications-1695541258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695541258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695544858.json b/data/finished/notifications-1695544858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695544858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695548450.json b/data/finished/notifications-1695548450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695548450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695552053.json b/data/finished/notifications-1695552053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695552053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695555649.json b/data/finished/notifications-1695555649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695555649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695559762.json b/data/finished/notifications-1695559762.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695559762.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695562856.json b/data/finished/notifications-1695562856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695562856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695566449.json b/data/finished/notifications-1695566449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695566449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695570073.json b/data/finished/notifications-1695570073.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695570073.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695573648.json b/data/finished/notifications-1695573648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695573648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695577253.json b/data/finished/notifications-1695577253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695577253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695580839.json b/data/finished/notifications-1695580839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695580839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695584461.json b/data/finished/notifications-1695584461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695584461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695588069.json b/data/finished/notifications-1695588069.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695588069.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695591661.json b/data/finished/notifications-1695591661.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695591661.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695595249.json b/data/finished/notifications-1695595249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695595249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695598845.json b/data/finished/notifications-1695598845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695598845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695605725.json b/data/finished/notifications-1695605725.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695605725.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695607588.json b/data/finished/notifications-1695607588.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695607588.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695609650.json b/data/finished/notifications-1695609650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695609650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695613250.json b/data/finished/notifications-1695613250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695613250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695616855.json b/data/finished/notifications-1695616855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695616855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695620455.json b/data/finished/notifications-1695620455.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695620455.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695624050.json b/data/finished/notifications-1695624050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695624050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695627654.json b/data/finished/notifications-1695627654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695627654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695631247.json b/data/finished/notifications-1695631247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695631247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695634860.json b/data/finished/notifications-1695634860.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695634860.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695638463.json b/data/finished/notifications-1695638463.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695638463.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695642058.json b/data/finished/notifications-1695642058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695642058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695646473.json b/data/finished/notifications-1695646473.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695646473.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695649251.json b/data/finished/notifications-1695649251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695649251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695652850.json b/data/finished/notifications-1695652850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695652850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695656445.json b/data/finished/notifications-1695656445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695656445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695660146.json b/data/finished/notifications-1695660146.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695660146.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695663662.json b/data/finished/notifications-1695663662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695663662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695667246.json b/data/finished/notifications-1695667246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695667246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695670850.json b/data/finished/notifications-1695670850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695670850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695674445.json b/data/finished/notifications-1695674445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695674445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695678071.json b/data/finished/notifications-1695678071.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695678071.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695681653.json b/data/finished/notifications-1695681653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695681653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695685264.json b/data/finished/notifications-1695685264.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695685264.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695692114.json b/data/finished/notifications-1695692114.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695692114.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695693983.json b/data/finished/notifications-1695693983.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695693983.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695696048.json b/data/finished/notifications-1695696048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695696048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695699658.json b/data/finished/notifications-1695699658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695699658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695703259.json b/data/finished/notifications-1695703259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695703259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695706845.json b/data/finished/notifications-1695706845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695706845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695710456.json b/data/finished/notifications-1695710456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695710456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695714062.json b/data/finished/notifications-1695714062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695714062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695717656.json b/data/finished/notifications-1695717656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695717656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695721257.json b/data/finished/notifications-1695721257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695721257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695724850.json b/data/finished/notifications-1695724850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695724850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695728461.json b/data/finished/notifications-1695728461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695728461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695732896.json b/data/finished/notifications-1695732896.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695732896.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695735650.json b/data/finished/notifications-1695735650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695735650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695739251.json b/data/finished/notifications-1695739251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695739251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695742847.json b/data/finished/notifications-1695742847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695742847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695746544.json b/data/finished/notifications-1695746544.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695746544.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695750043.json b/data/finished/notifications-1695750043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695750043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695753663.json b/data/finished/notifications-1695753663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695753663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695757256.json b/data/finished/notifications-1695757256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695757256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695760857.json b/data/finished/notifications-1695760857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695760857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695764454.json b/data/finished/notifications-1695764454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695764454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695768056.json b/data/finished/notifications-1695768056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695768056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695771655.json b/data/finished/notifications-1695771655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695771655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695778507.json b/data/finished/notifications-1695778507.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695778507.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695780370.json b/data/finished/notifications-1695780370.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695780370.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695782444.json b/data/finished/notifications-1695782444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695782444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695786059.json b/data/finished/notifications-1695786059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695786059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695789654.json b/data/finished/notifications-1695789654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695789654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695793249.json b/data/finished/notifications-1695793249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695793249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695796856.json b/data/finished/notifications-1695796856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695796856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695800452.json b/data/finished/notifications-1695800452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695800452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695804050.json b/data/finished/notifications-1695804050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695804050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695807658.json b/data/finished/notifications-1695807658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695807658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695811254.json b/data/finished/notifications-1695811254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695811254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695814862.json b/data/finished/notifications-1695814862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695814862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695819258.json b/data/finished/notifications-1695819258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695819258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695822056.json b/data/finished/notifications-1695822056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695822056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695825667.json b/data/finished/notifications-1695825667.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695825667.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695829246.json b/data/finished/notifications-1695829246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695829246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695832928.json b/data/finished/notifications-1695832928.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695832928.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695836449.json b/data/finished/notifications-1695836449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695836449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695840056.json b/data/finished/notifications-1695840056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695840056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695843645.json b/data/finished/notifications-1695843645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695843645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695847250.json b/data/finished/notifications-1695847250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695847250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695850869.json b/data/finished/notifications-1695850869.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695850869.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695854448.json b/data/finished/notifications-1695854448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695854448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695858039.json b/data/finished/notifications-1695858039.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695858039.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695864877.json b/data/finished/notifications-1695864877.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695864877.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695866738.json b/data/finished/notifications-1695866738.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695866738.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695868854.json b/data/finished/notifications-1695868854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695868854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695872451.json b/data/finished/notifications-1695872451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695872451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695876070.json b/data/finished/notifications-1695876070.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695876070.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695879655.json b/data/finished/notifications-1695879655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695879655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695883253.json b/data/finished/notifications-1695883253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695883253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695886857.json b/data/finished/notifications-1695886857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695886857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695890442.json b/data/finished/notifications-1695890442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695890442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695894054.json b/data/finished/notifications-1695894054.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695894054.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695897646.json b/data/finished/notifications-1695897646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695897646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695901245.json b/data/finished/notifications-1695901245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695901245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695905639.json b/data/finished/notifications-1695905639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695905639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695908458.json b/data/finished/notifications-1695908458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695908458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695912062.json b/data/finished/notifications-1695912062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695912062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695915652.json b/data/finished/notifications-1695915652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695915652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695919323.json b/data/finished/notifications-1695919323.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695919323.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695922850.json b/data/finished/notifications-1695922850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695922850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695926446.json b/data/finished/notifications-1695926446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695926446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695930051.json b/data/finished/notifications-1695930051.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695930051.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695933658.json b/data/finished/notifications-1695933658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695933658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695937254.json b/data/finished/notifications-1695937254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695937254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695940853.json b/data/finished/notifications-1695940853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695940853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695944464.json b/data/finished/notifications-1695944464.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695944464.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695951273.json b/data/finished/notifications-1695951273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695951273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695953153.json b/data/finished/notifications-1695953153.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695953153.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695955244.json b/data/finished/notifications-1695955244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695955244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695958863.json b/data/finished/notifications-1695958863.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695958863.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695962451.json b/data/finished/notifications-1695962451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695962451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695966061.json b/data/finished/notifications-1695966061.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695966061.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695969652.json b/data/finished/notifications-1695969652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695969652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695973256.json b/data/finished/notifications-1695973256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695973256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695976848.json b/data/finished/notifications-1695976848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695976848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695980452.json b/data/finished/notifications-1695980452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695980452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695984053.json b/data/finished/notifications-1695984053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695984053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695987652.json b/data/finished/notifications-1695987652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695987652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695991983.json b/data/finished/notifications-1695991983.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695991983.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695994858.json b/data/finished/notifications-1695994858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695994858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1695998450.json b/data/finished/notifications-1695998450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1695998450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696002062.json b/data/finished/notifications-1696002062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696002062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696005666.json b/data/finished/notifications-1696005666.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696005666.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696009260.json b/data/finished/notifications-1696009260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696009260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696012840.json b/data/finished/notifications-1696012840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696012840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696016458.json b/data/finished/notifications-1696016458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696016458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696020057.json b/data/finished/notifications-1696020057.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696020057.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696023659.json b/data/finished/notifications-1696023659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696023659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696027273.json b/data/finished/notifications-1696027273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696027273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696030843.json b/data/finished/notifications-1696030843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696030843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696037543.json b/data/finished/notifications-1696037543.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696037543.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696039434.json b/data/finished/notifications-1696039434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696039434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696041658.json b/data/finished/notifications-1696041658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696041658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696045249.json b/data/finished/notifications-1696045249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696045249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696048856.json b/data/finished/notifications-1696048856.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696048856.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696052447.json b/data/finished/notifications-1696052447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696052447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696056048.json b/data/finished/notifications-1696056048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696056048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696059643.json b/data/finished/notifications-1696059643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696059643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696063256.json b/data/finished/notifications-1696063256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696063256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696066849.json b/data/finished/notifications-1696066849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696066849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696070461.json b/data/finished/notifications-1696070461.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696070461.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696074043.json b/data/finished/notifications-1696074043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696074043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696078175.json b/data/finished/notifications-1696078175.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696078175.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696081257.json b/data/finished/notifications-1696081257.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696081257.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696084858.json b/data/finished/notifications-1696084858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696084858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696088448.json b/data/finished/notifications-1696088448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696088448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696092044.json b/data/finished/notifications-1696092044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696092044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696095656.json b/data/finished/notifications-1696095656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696095656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696099259.json b/data/finished/notifications-1696099259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696099259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696102850.json b/data/finished/notifications-1696102850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696102850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696106450.json b/data/finished/notifications-1696106450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696106450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696110062.json b/data/finished/notifications-1696110062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696110062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696113655.json b/data/finished/notifications-1696113655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696113655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696117269.json b/data/finished/notifications-1696117269.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696117269.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696440642.json b/data/finished/notifications-1696440642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696440642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696441255.json b/data/finished/notifications-1696441255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696441255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696444835.json b/data/finished/notifications-1696444835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696444835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696448432.json b/data/finished/notifications-1696448432.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696448432.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696452043.json b/data/finished/notifications-1696452043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696452043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696455643.json b/data/finished/notifications-1696455643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696455643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696459249.json b/data/finished/notifications-1696459249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696459249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696462836.json b/data/finished/notifications-1696462836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696462836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696469867.json b/data/finished/notifications-1696469867.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696469867.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696473645.json b/data/finished/notifications-1696473645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696473645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696477250.json b/data/finished/notifications-1696477250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696477250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696480836.json b/data/finished/notifications-1696480836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696480836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696484446.json b/data/finished/notifications-1696484446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696484446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696488043.json b/data/finished/notifications-1696488043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696488043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696491636.json b/data/finished/notifications-1696491636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696491636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696495249.json b/data/finished/notifications-1696495249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696495249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696498855.json b/data/finished/notifications-1696498855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696498855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696502434.json b/data/finished/notifications-1696502434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696502434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696506034.json b/data/finished/notifications-1696506034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696506034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696510578.json b/data/finished/notifications-1696510578.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696510578.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696513235.json b/data/finished/notifications-1696513235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696513235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696516834.json b/data/finished/notifications-1696516834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696516834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696520442.json b/data/finished/notifications-1696520442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696520442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696524172.json b/data/finished/notifications-1696524172.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696524172.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696527649.json b/data/finished/notifications-1696527649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696527649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696531249.json b/data/finished/notifications-1696531249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696531249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696534835.json b/data/finished/notifications-1696534835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696534835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696538436.json b/data/finished/notifications-1696538436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696538436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696542055.json b/data/finished/notifications-1696542055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696542055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696545642.json b/data/finished/notifications-1696545642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696545642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696549238.json b/data/finished/notifications-1696549238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696549238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696556102.json b/data/finished/notifications-1696556102.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696556102.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696557983.json b/data/finished/notifications-1696557983.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696557983.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696560040.json b/data/finished/notifications-1696560040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696560040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696563642.json b/data/finished/notifications-1696563642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696563642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696567235.json b/data/finished/notifications-1696567235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696567235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696570835.json b/data/finished/notifications-1696570835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696570835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696574441.json b/data/finished/notifications-1696574441.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696574441.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696578036.json b/data/finished/notifications-1696578036.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696578036.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696581644.json b/data/finished/notifications-1696581644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696581644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696585244.json b/data/finished/notifications-1696585244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696585244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696588833.json b/data/finished/notifications-1696588833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696588833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696592440.json b/data/finished/notifications-1696592440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696592440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696596865.json b/data/finished/notifications-1696596865.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696596865.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696599649.json b/data/finished/notifications-1696599649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696599649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696603247.json b/data/finished/notifications-1696603247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696603247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696606838.json b/data/finished/notifications-1696606838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696606838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696610527.json b/data/finished/notifications-1696610527.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696610527.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696614052.json b/data/finished/notifications-1696614052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696614052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696617640.json b/data/finished/notifications-1696617640.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696617640.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696621237.json b/data/finished/notifications-1696621237.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696621237.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696624837.json b/data/finished/notifications-1696624837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696624837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696628440.json b/data/finished/notifications-1696628440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696628440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696632045.json b/data/finished/notifications-1696632045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696632045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696635645.json b/data/finished/notifications-1696635645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696635645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696642396.json b/data/finished/notifications-1696642396.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696642396.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696644294.json b/data/finished/notifications-1696644294.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696644294.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696646437.json b/data/finished/notifications-1696646437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696646437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696650033.json b/data/finished/notifications-1696650033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696650033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696653632.json b/data/finished/notifications-1696653632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696653632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696657235.json b/data/finished/notifications-1696657235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696657235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696660835.json b/data/finished/notifications-1696660835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696660835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696664431.json b/data/finished/notifications-1696664431.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696664431.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696668031.json b/data/finished/notifications-1696668031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696668031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696671647.json b/data/finished/notifications-1696671647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696671647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696675247.json b/data/finished/notifications-1696675247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696675247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696678845.json b/data/finished/notifications-1696678845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696678845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696683002.json b/data/finished/notifications-1696683002.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696683002.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696686046.json b/data/finished/notifications-1696686046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696686046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696689644.json b/data/finished/notifications-1696689644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696689644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696693240.json b/data/finished/notifications-1696693240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696693240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696696855.json b/data/finished/notifications-1696696855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696696855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696700433.json b/data/finished/notifications-1696700433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696700433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696704038.json b/data/finished/notifications-1696704038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696704038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696707634.json b/data/finished/notifications-1696707634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696707634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696711244.json b/data/finished/notifications-1696711244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696711244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696714843.json b/data/finished/notifications-1696714843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696714843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696718447.json b/data/finished/notifications-1696718447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696718447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696722032.json b/data/finished/notifications-1696722032.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696722032.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696729142.json b/data/finished/notifications-1696729142.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696729142.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696732851.json b/data/finished/notifications-1696732851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696732851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696736446.json b/data/finished/notifications-1696736446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696736446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696740047.json b/data/finished/notifications-1696740047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696740047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696743635.json b/data/finished/notifications-1696743635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696743635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696747250.json b/data/finished/notifications-1696747250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696747250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696750854.json b/data/finished/notifications-1696750854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696750854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696754431.json b/data/finished/notifications-1696754431.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696754431.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696758045.json b/data/finished/notifications-1696758045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696758045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696761659.json b/data/finished/notifications-1696761659.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696761659.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696765231.json b/data/finished/notifications-1696765231.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696765231.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696769393.json b/data/finished/notifications-1696769393.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696769393.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696772439.json b/data/finished/notifications-1696772439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696772439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696776031.json b/data/finished/notifications-1696776031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696776031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696779648.json b/data/finished/notifications-1696779648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696779648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696783232.json b/data/finished/notifications-1696783232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696783232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696786843.json b/data/finished/notifications-1696786843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696786843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696790440.json b/data/finished/notifications-1696790440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696790440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696794032.json b/data/finished/notifications-1696794032.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696794032.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696797652.json b/data/finished/notifications-1696797652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696797652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696801248.json b/data/finished/notifications-1696801248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696801248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696804832.json b/data/finished/notifications-1696804832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696804832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696808448.json b/data/finished/notifications-1696808448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696808448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696815302.json b/data/finished/notifications-1696815302.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696815302.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696817148.json b/data/finished/notifications-1696817148.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696817148.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696819250.json b/data/finished/notifications-1696819250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696819250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696822836.json b/data/finished/notifications-1696822836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696822836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696826454.json b/data/finished/notifications-1696826454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696826454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696830049.json b/data/finished/notifications-1696830049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696830049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696833650.json b/data/finished/notifications-1696833650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696833650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696837252.json b/data/finished/notifications-1696837252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696837252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696840901.json b/data/finished/notifications-1696840901.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696840901.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696844437.json b/data/finished/notifications-1696844437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696844437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696848039.json b/data/finished/notifications-1696848039.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696848039.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696851634.json b/data/finished/notifications-1696851634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696851634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696856194.json b/data/finished/notifications-1696856194.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696856194.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696858849.json b/data/finished/notifications-1696858849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696858849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696862438.json b/data/finished/notifications-1696862438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696862438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696866049.json b/data/finished/notifications-1696866049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696866049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696869721.json b/data/finished/notifications-1696869721.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696869721.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696873247.json b/data/finished/notifications-1696873247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696873247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696876849.json b/data/finished/notifications-1696876849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696876849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696880436.json b/data/finished/notifications-1696880436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696880436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696884037.json b/data/finished/notifications-1696884037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696884037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696887634.json b/data/finished/notifications-1696887634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696887634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696891260.json b/data/finished/notifications-1696891260.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696891260.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696894855.json b/data/finished/notifications-1696894855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696894855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696901664.json b/data/finished/notifications-1696901664.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696901664.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696903545.json b/data/finished/notifications-1696903545.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696903545.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696905633.json b/data/finished/notifications-1696905633.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696905633.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696909238.json b/data/finished/notifications-1696909238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696909238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696912842.json b/data/finished/notifications-1696912842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696912842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696916434.json b/data/finished/notifications-1696916434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696916434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696920037.json b/data/finished/notifications-1696920037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696920037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696923656.json b/data/finished/notifications-1696923656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696923656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696927255.json b/data/finished/notifications-1696927255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696927255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696930847.json b/data/finished/notifications-1696930847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696930847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696934441.json b/data/finished/notifications-1696934441.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696934441.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696938050.json b/data/finished/notifications-1696938050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696938050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696942450.json b/data/finished/notifications-1696942450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696942450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696945241.json b/data/finished/notifications-1696945241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696945241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696948855.json b/data/finished/notifications-1696948855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696948855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696952447.json b/data/finished/notifications-1696952447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696952447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696956151.json b/data/finished/notifications-1696956151.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696956151.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696959635.json b/data/finished/notifications-1696959635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696959635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696963261.json b/data/finished/notifications-1696963261.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696963261.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696966849.json b/data/finished/notifications-1696966849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696966849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696970436.json b/data/finished/notifications-1696970436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696970436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696974049.json b/data/finished/notifications-1696974049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696974049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696977650.json b/data/finished/notifications-1696977650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696977650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696981245.json b/data/finished/notifications-1696981245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696981245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696988062.json b/data/finished/notifications-1696988062.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696988062.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696989954.json b/data/finished/notifications-1696989954.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696989954.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696992042.json b/data/finished/notifications-1696992042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696992042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696995637.json b/data/finished/notifications-1696995637.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696995637.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1696999237.json b/data/finished/notifications-1696999237.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1696999237.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697002836.json b/data/finished/notifications-1697002836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697002836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697006449.json b/data/finished/notifications-1697006449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697006449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697010033.json b/data/finished/notifications-1697010033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697010033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697013641.json b/data/finished/notifications-1697013641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697013641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697017244.json b/data/finished/notifications-1697017244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697017244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697020846.json b/data/finished/notifications-1697020846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697020846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697024447.json b/data/finished/notifications-1697024447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697024447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697028862.json b/data/finished/notifications-1697028862.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697028862.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697031636.json b/data/finished/notifications-1697031636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697031636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697035242.json b/data/finished/notifications-1697035242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697035242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697038843.json b/data/finished/notifications-1697038843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697038843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697042485.json b/data/finished/notifications-1697042485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697042485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697046059.json b/data/finished/notifications-1697046059.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697046059.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697049636.json b/data/finished/notifications-1697049636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697049636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697053248.json b/data/finished/notifications-1697053248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697053248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697056835.json b/data/finished/notifications-1697056835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697056835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697060447.json b/data/finished/notifications-1697060447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697060447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697064043.json b/data/finished/notifications-1697064043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697064043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697067656.json b/data/finished/notifications-1697067656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697067656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697074369.json b/data/finished/notifications-1697074369.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697074369.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697076273.json b/data/finished/notifications-1697076273.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697076273.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697078449.json b/data/finished/notifications-1697078449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697078449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697082047.json b/data/finished/notifications-1697082047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697082047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697085636.json b/data/finished/notifications-1697085636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697085636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697089234.json b/data/finished/notifications-1697089234.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697089234.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697092842.json b/data/finished/notifications-1697092842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697092842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697096436.json b/data/finished/notifications-1697096436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697096436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697100052.json b/data/finished/notifications-1697100052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697100052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697103639.json b/data/finished/notifications-1697103639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697103639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697107255.json b/data/finished/notifications-1697107255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697107255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697110832.json b/data/finished/notifications-1697110832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697110832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697115270.json b/data/finished/notifications-1697115270.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697115270.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697118037.json b/data/finished/notifications-1697118037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697118037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697121639.json b/data/finished/notifications-1697121639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697121639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697125247.json b/data/finished/notifications-1697125247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697125247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697128935.json b/data/finished/notifications-1697128935.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697128935.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697132434.json b/data/finished/notifications-1697132434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697132434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697136040.json b/data/finished/notifications-1697136040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697136040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697139634.json b/data/finished/notifications-1697139634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697139634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697143232.json b/data/finished/notifications-1697143232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697143232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697146843.json b/data/finished/notifications-1697146843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697146843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697150450.json b/data/finished/notifications-1697150450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697150450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697154033.json b/data/finished/notifications-1697154033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697154033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697161058.json b/data/finished/notifications-1697161058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697161058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697164878.json b/data/finished/notifications-1697164878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697164878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697168448.json b/data/finished/notifications-1697168448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697168448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697172053.json b/data/finished/notifications-1697172053.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697172053.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697175645.json b/data/finished/notifications-1697175645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697175645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697179281.json b/data/finished/notifications-1697179281.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697179281.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697182848.json b/data/finished/notifications-1697182848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697182848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697186433.json b/data/finished/notifications-1697186433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697186433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697190037.json b/data/finished/notifications-1697190037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697190037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697193647.json b/data/finished/notifications-1697193647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697193647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697197235.json b/data/finished/notifications-1697197235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697197235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697201662.json b/data/finished/notifications-1697201662.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697201662.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697204448.json b/data/finished/notifications-1697204448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697204448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697208041.json b/data/finished/notifications-1697208041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697208041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697211651.json b/data/finished/notifications-1697211651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697211651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697215282.json b/data/finished/notifications-1697215282.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697215282.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697218852.json b/data/finished/notifications-1697218852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697218852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697222444.json b/data/finished/notifications-1697222444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697222444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697226050.json b/data/finished/notifications-1697226050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697226050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697229657.json b/data/finished/notifications-1697229657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697229657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697233232.json b/data/finished/notifications-1697233232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697233232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697236847.json b/data/finished/notifications-1697236847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697236847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697240445.json b/data/finished/notifications-1697240445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697240445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697247144.json b/data/finished/notifications-1697247144.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697247144.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697249018.json b/data/finished/notifications-1697249018.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697249018.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697251252.json b/data/finished/notifications-1697251252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697251252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697254843.json b/data/finished/notifications-1697254843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697254843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697258434.json b/data/finished/notifications-1697258434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697258434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697262033.json b/data/finished/notifications-1697262033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697262033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697265636.json b/data/finished/notifications-1697265636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697265636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697269254.json b/data/finished/notifications-1697269254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697269254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697272847.json b/data/finished/notifications-1697272847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697272847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697276445.json b/data/finished/notifications-1697276445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697276445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697280052.json b/data/finished/notifications-1697280052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697280052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697283649.json b/data/finished/notifications-1697283649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697283649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697287784.json b/data/finished/notifications-1697287784.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697287784.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697290855.json b/data/finished/notifications-1697290855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697290855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697294448.json b/data/finished/notifications-1697294448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697294448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697298041.json b/data/finished/notifications-1697298041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697298041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697301635.json b/data/finished/notifications-1697301635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697301635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697305248.json b/data/finished/notifications-1697305248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697305248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697308843.json b/data/finished/notifications-1697308843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697308843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697312436.json b/data/finished/notifications-1697312436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697312436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697316045.json b/data/finished/notifications-1697316045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697316045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697319647.json b/data/finished/notifications-1697319647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697319647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697323243.json b/data/finished/notifications-1697323243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697323243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697326847.json b/data/finished/notifications-1697326847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697326847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697333952.json b/data/finished/notifications-1697333952.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697333952.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697337644.json b/data/finished/notifications-1697337644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697337644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697341250.json b/data/finished/notifications-1697341250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697341250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697344847.json b/data/finished/notifications-1697344847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697344847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697348449.json b/data/finished/notifications-1697348449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697348449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697352032.json b/data/finished/notifications-1697352032.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697352032.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697355629.json b/data/finished/notifications-1697355629.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697355629.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697359232.json b/data/finished/notifications-1697359232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697359232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697362842.json b/data/finished/notifications-1697362842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697362842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697366433.json b/data/finished/notifications-1697366433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697366433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697370031.json b/data/finished/notifications-1697370031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697370031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697374202.json b/data/finished/notifications-1697374202.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697374202.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697377243.json b/data/finished/notifications-1697377243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697377243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697380847.json b/data/finished/notifications-1697380847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697380847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697384435.json b/data/finished/notifications-1697384435.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697384435.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697388034.json b/data/finished/notifications-1697388034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697388034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697391635.json b/data/finished/notifications-1697391635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697391635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697395237.json b/data/finished/notifications-1697395237.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697395237.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697398835.json b/data/finished/notifications-1697398835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697398835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697402437.json b/data/finished/notifications-1697402437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697402437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697406038.json b/data/finished/notifications-1697406038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697406038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697409653.json b/data/finished/notifications-1697409653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697409653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697413243.json b/data/finished/notifications-1697413243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697413243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697420212.json b/data/finished/notifications-1697420212.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697420212.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697422105.json b/data/finished/notifications-1697422105.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697422105.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697424038.json b/data/finished/notifications-1697424038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697424038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697427635.json b/data/finished/notifications-1697427635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697427635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697431245.json b/data/finished/notifications-1697431245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697431245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697434843.json b/data/finished/notifications-1697434843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697434843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697438447.json b/data/finished/notifications-1697438447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697438447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697442049.json b/data/finished/notifications-1697442049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697442049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697445643.json b/data/finished/notifications-1697445643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697445643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697449253.json b/data/finished/notifications-1697449253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697449253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697452840.json b/data/finished/notifications-1697452840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697452840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697456436.json b/data/finished/notifications-1697456436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697456436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697460922.json b/data/finished/notifications-1697460922.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697460922.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697463641.json b/data/finished/notifications-1697463641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697463641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697467250.json b/data/finished/notifications-1697467250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697467250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697470834.json b/data/finished/notifications-1697470834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697470834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697474568.json b/data/finished/notifications-1697474568.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697474568.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697478038.json b/data/finished/notifications-1697478038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697478038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697481684.json b/data/finished/notifications-1697481684.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697481684.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697485253.json b/data/finished/notifications-1697485253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697485253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697488839.json b/data/finished/notifications-1697488839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697488839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697492445.json b/data/finished/notifications-1697492445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697492445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697496034.json b/data/finished/notifications-1697496034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697496034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697499651.json b/data/finished/notifications-1697499651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697499651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697506542.json b/data/finished/notifications-1697506542.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697506542.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697508420.json b/data/finished/notifications-1697508420.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697508420.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697510444.json b/data/finished/notifications-1697510444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697510444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697514048.json b/data/finished/notifications-1697514048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697514048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697517645.json b/data/finished/notifications-1697517645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697517645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697521240.json b/data/finished/notifications-1697521240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697521240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697524833.json b/data/finished/notifications-1697524833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697524833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697528447.json b/data/finished/notifications-1697528447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697528447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697532044.json b/data/finished/notifications-1697532044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697532044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697535638.json b/data/finished/notifications-1697535638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697535638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697539236.json b/data/finished/notifications-1697539236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697539236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697542838.json b/data/finished/notifications-1697542838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697542838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697547275.json b/data/finished/notifications-1697547275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697547275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697550039.json b/data/finished/notifications-1697550039.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697550039.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697553646.json b/data/finished/notifications-1697553646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697553646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697557252.json b/data/finished/notifications-1697557252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697557252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697560923.json b/data/finished/notifications-1697560923.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697560923.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697564438.json b/data/finished/notifications-1697564438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697564438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697568058.json b/data/finished/notifications-1697568058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697568058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697571646.json b/data/finished/notifications-1697571646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697571646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697575236.json b/data/finished/notifications-1697575236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697575236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697578837.json b/data/finished/notifications-1697578837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697578837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697582440.json b/data/finished/notifications-1697582440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697582440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697586049.json b/data/finished/notifications-1697586049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697586049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697592951.json b/data/finished/notifications-1697592951.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697592951.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697594818.json b/data/finished/notifications-1697594818.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697594818.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697596844.json b/data/finished/notifications-1697596844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697596844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697600431.json b/data/finished/notifications-1697600431.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697600431.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697604035.json b/data/finished/notifications-1697604035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697604035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697607651.json b/data/finished/notifications-1697607651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697607651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697611256.json b/data/finished/notifications-1697611256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697611256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697614843.json b/data/finished/notifications-1697614843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697614843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697618447.json b/data/finished/notifications-1697618447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697618447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697622042.json b/data/finished/notifications-1697622042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697622042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697625642.json b/data/finished/notifications-1697625642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697625642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697629234.json b/data/finished/notifications-1697629234.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697629234.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697633663.json b/data/finished/notifications-1697633663.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697633663.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697636444.json b/data/finished/notifications-1697636444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697636444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697640040.json b/data/finished/notifications-1697640040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697640040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697643650.json b/data/finished/notifications-1697643650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697643650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697647341.json b/data/finished/notifications-1697647341.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697647341.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697650836.json b/data/finished/notifications-1697650836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697650836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697654449.json b/data/finished/notifications-1697654449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697654449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697658034.json b/data/finished/notifications-1697658034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697658034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697661637.json b/data/finished/notifications-1697661637.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697661637.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697665242.json b/data/finished/notifications-1697665242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697665242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697668857.json b/data/finished/notifications-1697668857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697668857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697672444.json b/data/finished/notifications-1697672444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697672444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697679293.json b/data/finished/notifications-1697679293.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697679293.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697681182.json b/data/finished/notifications-1697681182.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697681182.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697683239.json b/data/finished/notifications-1697683239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697683239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697686852.json b/data/finished/notifications-1697686852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697686852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697690434.json b/data/finished/notifications-1697690434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697690434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697694050.json b/data/finished/notifications-1697694050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697694050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697697652.json b/data/finished/notifications-1697697652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697697652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697701236.json b/data/finished/notifications-1697701236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697701236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697704843.json b/data/finished/notifications-1697704843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697704843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697708443.json b/data/finished/notifications-1697708443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697708443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697712049.json b/data/finished/notifications-1697712049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697712049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697715638.json b/data/finished/notifications-1697715638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697715638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697720064.json b/data/finished/notifications-1697720064.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697720064.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697722837.json b/data/finished/notifications-1697722837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697722837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697726436.json b/data/finished/notifications-1697726436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697726436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697730038.json b/data/finished/notifications-1697730038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697730038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697733655.json b/data/finished/notifications-1697733655.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697733655.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697737244.json b/data/finished/notifications-1697737244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697737244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697740854.json b/data/finished/notifications-1697740854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697740854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697744438.json b/data/finished/notifications-1697744438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697744438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697748050.json b/data/finished/notifications-1697748050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697748050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697751642.json b/data/finished/notifications-1697751642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697751642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697755235.json b/data/finished/notifications-1697755235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697755235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697758846.json b/data/finished/notifications-1697758846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697758846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697765698.json b/data/finished/notifications-1697765698.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697765698.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697767567.json b/data/finished/notifications-1697767567.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697767567.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697769635.json b/data/finished/notifications-1697769635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697769635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697773248.json b/data/finished/notifications-1697773248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697773248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697776835.json b/data/finished/notifications-1697776835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697776835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697780446.json b/data/finished/notifications-1697780446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697780446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697784032.json b/data/finished/notifications-1697784032.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697784032.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697787641.json b/data/finished/notifications-1697787641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697787641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697791236.json b/data/finished/notifications-1697791236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697791236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697794838.json b/data/finished/notifications-1697794838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697794838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697798456.json b/data/finished/notifications-1697798456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697798456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697802045.json b/data/finished/notifications-1697802045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697802045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697806425.json b/data/finished/notifications-1697806425.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697806425.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697809239.json b/data/finished/notifications-1697809239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697809239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697812851.json b/data/finished/notifications-1697812851.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697812851.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697816450.json b/data/finished/notifications-1697816450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697816450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697820065.json b/data/finished/notifications-1697820065.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697820065.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697823652.json b/data/finished/notifications-1697823652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697823652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697827244.json b/data/finished/notifications-1697827244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697827244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697830834.json b/data/finished/notifications-1697830834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697830834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697834446.json b/data/finished/notifications-1697834446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697834446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697838045.json b/data/finished/notifications-1697838045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697838045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697841649.json b/data/finished/notifications-1697841649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697841649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697845240.json b/data/finished/notifications-1697845240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697845240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697851940.json b/data/finished/notifications-1697851940.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697851940.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697853818.json b/data/finished/notifications-1697853818.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697853818.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697856040.json b/data/finished/notifications-1697856040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697856040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697859646.json b/data/finished/notifications-1697859646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697859646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697863247.json b/data/finished/notifications-1697863247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697863247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697866842.json b/data/finished/notifications-1697866842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697866842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697870449.json b/data/finished/notifications-1697870449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697870449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697874048.json b/data/finished/notifications-1697874048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697874048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697877643.json b/data/finished/notifications-1697877643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697877643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697881238.json b/data/finished/notifications-1697881238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697881238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697884842.json b/data/finished/notifications-1697884842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697884842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697888433.json b/data/finished/notifications-1697888433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697888433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697892582.json b/data/finished/notifications-1697892582.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697892582.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697895648.json b/data/finished/notifications-1697895648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697895648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697899234.json b/data/finished/notifications-1697899234.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697899234.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697902848.json b/data/finished/notifications-1697902848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697902848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697906457.json b/data/finished/notifications-1697906457.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697906457.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697910034.json b/data/finished/notifications-1697910034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697910034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697913649.json b/data/finished/notifications-1697913649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697913649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697917236.json b/data/finished/notifications-1697917236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697917236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697920843.json b/data/finished/notifications-1697920843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697920843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697924432.json b/data/finished/notifications-1697924432.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697924432.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697928031.json b/data/finished/notifications-1697928031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697928031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697931647.json b/data/finished/notifications-1697931647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697931647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697938773.json b/data/finished/notifications-1697938773.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697938773.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697942433.json b/data/finished/notifications-1697942433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697942433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697946046.json b/data/finished/notifications-1697946046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697946046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697949637.json b/data/finished/notifications-1697949637.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697949637.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697953231.json b/data/finished/notifications-1697953231.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697953231.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697956845.json b/data/finished/notifications-1697956845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697956845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697960449.json b/data/finished/notifications-1697960449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697960449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697964032.json b/data/finished/notifications-1697964032.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697964032.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697967645.json b/data/finished/notifications-1697967645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697967645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697971230.json b/data/finished/notifications-1697971230.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697971230.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697974840.json b/data/finished/notifications-1697974840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697974840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697978988.json b/data/finished/notifications-1697978988.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697978988.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697982035.json b/data/finished/notifications-1697982035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697982035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697985642.json b/data/finished/notifications-1697985642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697985642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697989248.json b/data/finished/notifications-1697989248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697989248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697992835.json b/data/finished/notifications-1697992835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697992835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1697996438.json b/data/finished/notifications-1697996438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1697996438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698000041.json b/data/finished/notifications-1698000041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698000041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698003642.json b/data/finished/notifications-1698003642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698003642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698007240.json b/data/finished/notifications-1698007240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698007240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698010843.json b/data/finished/notifications-1698010843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698010843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698014434.json b/data/finished/notifications-1698014434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698014434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698018037.json b/data/finished/notifications-1698018037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698018037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698024951.json b/data/finished/notifications-1698024951.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698024951.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698026810.json b/data/finished/notifications-1698026810.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698026810.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698028838.json b/data/finished/notifications-1698028838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698028838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698032448.json b/data/finished/notifications-1698032448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698032448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698036032.json b/data/finished/notifications-1698036032.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698036032.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698039632.json b/data/finished/notifications-1698039632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698039632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698043256.json b/data/finished/notifications-1698043256.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698043256.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698046832.json b/data/finished/notifications-1698046832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698046832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698050442.json b/data/finished/notifications-1698050442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698050442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698054043.json b/data/finished/notifications-1698054043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698054043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698057641.json b/data/finished/notifications-1698057641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698057641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698061236.json b/data/finished/notifications-1698061236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698061236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698065645.json b/data/finished/notifications-1698065645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698065645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698068438.json b/data/finished/notifications-1698068438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698068438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698072050.json b/data/finished/notifications-1698072050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698072050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698075639.json b/data/finished/notifications-1698075639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698075639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698079246.json b/data/finished/notifications-1698079246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698079246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698082844.json b/data/finished/notifications-1698082844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698082844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698086446.json b/data/finished/notifications-1698086446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698086446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698090031.json b/data/finished/notifications-1698090031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698090031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698093646.json b/data/finished/notifications-1698093646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698093646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698097240.json b/data/finished/notifications-1698097240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698097240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698100832.json b/data/finished/notifications-1698100832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698100832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698104445.json b/data/finished/notifications-1698104445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698104445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698111286.json b/data/finished/notifications-1698111286.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698111286.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698113170.json b/data/finished/notifications-1698113170.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698113170.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698115239.json b/data/finished/notifications-1698115239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698115239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698118839.json b/data/finished/notifications-1698118839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698118839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698122443.json b/data/finished/notifications-1698122443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698122443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698126047.json b/data/finished/notifications-1698126047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698126047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698129646.json b/data/finished/notifications-1698129646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698129646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698133246.json b/data/finished/notifications-1698133246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698133246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698136842.json b/data/finished/notifications-1698136842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698136842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698140445.json b/data/finished/notifications-1698140445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698140445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698144058.json b/data/finished/notifications-1698144058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698144058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698147651.json b/data/finished/notifications-1698147651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698147651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698151991.json b/data/finished/notifications-1698151991.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698151991.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698154843.json b/data/finished/notifications-1698154843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698154843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698158444.json b/data/finished/notifications-1698158444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698158444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698162038.json b/data/finished/notifications-1698162038.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698162038.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698165730.json b/data/finished/notifications-1698165730.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698165730.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698169241.json b/data/finished/notifications-1698169241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698169241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698172845.json b/data/finished/notifications-1698172845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698172845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698176439.json b/data/finished/notifications-1698176439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698176439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698180040.json b/data/finished/notifications-1698180040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698180040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698183632.json b/data/finished/notifications-1698183632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698183632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698187232.json b/data/finished/notifications-1698187232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698187232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698190845.json b/data/finished/notifications-1698190845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698190845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698197685.json b/data/finished/notifications-1698197685.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698197685.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698199563.json b/data/finished/notifications-1698199563.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698199563.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698201636.json b/data/finished/notifications-1698201636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698201636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698205231.json b/data/finished/notifications-1698205231.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698205231.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698208847.json b/data/finished/notifications-1698208847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698208847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698212441.json b/data/finished/notifications-1698212441.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698212441.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698216039.json b/data/finished/notifications-1698216039.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698216039.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698219645.json b/data/finished/notifications-1698219645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698219645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698223233.json b/data/finished/notifications-1698223233.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698223233.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698226848.json b/data/finished/notifications-1698226848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698226848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698230439.json b/data/finished/notifications-1698230439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698230439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698234047.json b/data/finished/notifications-1698234047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698234047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698238382.json b/data/finished/notifications-1698238382.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698238382.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698241240.json b/data/finished/notifications-1698241240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698241240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698244839.json b/data/finished/notifications-1698244839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698244839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698248434.json b/data/finished/notifications-1698248434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698248434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698252047.json b/data/finished/notifications-1698252047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698252047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698255638.json b/data/finished/notifications-1698255638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698255638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698259249.json b/data/finished/notifications-1698259249.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698259249.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698262836.json b/data/finished/notifications-1698262836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698262836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698266440.json b/data/finished/notifications-1698266440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698266440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698270041.json b/data/finished/notifications-1698270041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698270041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698273647.json b/data/finished/notifications-1698273647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698273647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698277232.json b/data/finished/notifications-1698277232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698277232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698283987.json b/data/finished/notifications-1698283987.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698283987.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698285885.json b/data/finished/notifications-1698285885.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698285885.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698288039.json b/data/finished/notifications-1698288039.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698288039.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698291636.json b/data/finished/notifications-1698291636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698291636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698295245.json b/data/finished/notifications-1698295245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698295245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698298854.json b/data/finished/notifications-1698298854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698298854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698302446.json b/data/finished/notifications-1698302446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698302446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698306043.json b/data/finished/notifications-1698306043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698306043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698309634.json b/data/finished/notifications-1698309634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698309634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698313242.json b/data/finished/notifications-1698313242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698313242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698316832.json b/data/finished/notifications-1698316832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698316832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698320449.json b/data/finished/notifications-1698320449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698320449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698324744.json b/data/finished/notifications-1698324744.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698324744.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698327636.json b/data/finished/notifications-1698327636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698327636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698331251.json b/data/finished/notifications-1698331251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698331251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698334839.json b/data/finished/notifications-1698334839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698334839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698338445.json b/data/finished/notifications-1698338445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698338445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698342047.json b/data/finished/notifications-1698342047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698342047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698345645.json b/data/finished/notifications-1698345645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698345645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698349232.json b/data/finished/notifications-1698349232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698349232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698352842.json b/data/finished/notifications-1698352842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698352842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698356454.json b/data/finished/notifications-1698356454.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698356454.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698360049.json b/data/finished/notifications-1698360049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698360049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698363642.json b/data/finished/notifications-1698363642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698363642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698370407.json b/data/finished/notifications-1698370407.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698370407.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698372291.json b/data/finished/notifications-1698372291.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698372291.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698374443.json b/data/finished/notifications-1698374443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698374443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698378041.json b/data/finished/notifications-1698378041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698378041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698381654.json b/data/finished/notifications-1698381654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698381654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698385237.json b/data/finished/notifications-1698385237.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698385237.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698388840.json b/data/finished/notifications-1698388840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698388840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698392453.json b/data/finished/notifications-1698392453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698392453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698396044.json b/data/finished/notifications-1698396044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698396044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698399648.json b/data/finished/notifications-1698399648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698399648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698403245.json b/data/finished/notifications-1698403245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698403245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698406830.json b/data/finished/notifications-1698406830.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698406830.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698411115.json b/data/finished/notifications-1698411115.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698411115.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698414036.json b/data/finished/notifications-1698414036.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698414036.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698417656.json b/data/finished/notifications-1698417656.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698417656.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698421239.json b/data/finished/notifications-1698421239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698421239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698424855.json b/data/finished/notifications-1698424855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698424855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698428442.json b/data/finished/notifications-1698428442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698428442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698432043.json b/data/finished/notifications-1698432043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698432043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698435658.json b/data/finished/notifications-1698435658.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698435658.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698439229.json b/data/finished/notifications-1698439229.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698439229.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698442854.json b/data/finished/notifications-1698442854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698442854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698446435.json b/data/finished/notifications-1698446435.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698446435.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698450040.json b/data/finished/notifications-1698450040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698450040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698456706.json b/data/finished/notifications-1698456706.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698456706.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698458592.json b/data/finished/notifications-1698458592.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698458592.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698460837.json b/data/finished/notifications-1698460837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698460837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698464444.json b/data/finished/notifications-1698464444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698464444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698468039.json b/data/finished/notifications-1698468039.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698468039.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698471634.json b/data/finished/notifications-1698471634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698471634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698475241.json b/data/finished/notifications-1698475241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698475241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698478842.json b/data/finished/notifications-1698478842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698478842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698482437.json b/data/finished/notifications-1698482437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698482437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698486049.json b/data/finished/notifications-1698486049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698486049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698489653.json b/data/finished/notifications-1698489653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698489653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698493243.json b/data/finished/notifications-1698493243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698493243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698497334.json b/data/finished/notifications-1698497334.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698497334.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698500446.json b/data/finished/notifications-1698500446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698500446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698504031.json b/data/finished/notifications-1698504031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698504031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698507635.json b/data/finished/notifications-1698507635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698507635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698511244.json b/data/finished/notifications-1698511244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698511244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698514848.json b/data/finished/notifications-1698514848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698514848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698518431.json b/data/finished/notifications-1698518431.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698518431.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698522040.json b/data/finished/notifications-1698522040.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698522040.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698525645.json b/data/finished/notifications-1698525645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698525645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698529232.json b/data/finished/notifications-1698529232.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698529232.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698532837.json b/data/finished/notifications-1698532837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698532837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698536445.json b/data/finished/notifications-1698536445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698536445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698543485.json b/data/finished/notifications-1698543485.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698543485.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698547243.json b/data/finished/notifications-1698547243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698547243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698550847.json b/data/finished/notifications-1698550847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698550847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698554435.json b/data/finished/notifications-1698554435.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698554435.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698558029.json b/data/finished/notifications-1698558029.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698558029.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698561645.json b/data/finished/notifications-1698561645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698561645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698565245.json b/data/finished/notifications-1698565245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698565245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698568844.json b/data/finished/notifications-1698568844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698568844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698572455.json b/data/finished/notifications-1698572455.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698572455.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698576044.json b/data/finished/notifications-1698576044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698576044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698579639.json b/data/finished/notifications-1698579639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698579639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698583795.json b/data/finished/notifications-1698583795.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698583795.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698586843.json b/data/finished/notifications-1698586843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698586843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698590451.json b/data/finished/notifications-1698590451.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698590451.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698594047.json b/data/finished/notifications-1698594047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698594047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698597629.json b/data/finished/notifications-1698597629.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698597629.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698601241.json b/data/finished/notifications-1698601241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698601241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698604849.json b/data/finished/notifications-1698604849.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698604849.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698608447.json b/data/finished/notifications-1698608447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698608447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698612034.json b/data/finished/notifications-1698612034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698612034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698615633.json b/data/finished/notifications-1698615633.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698615633.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698619247.json b/data/finished/notifications-1698619247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698619247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698622833.json b/data/finished/notifications-1698622833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698622833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698629748.json b/data/finished/notifications-1698629748.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698629748.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698631645.json b/data/finished/notifications-1698631645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698631645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698633632.json b/data/finished/notifications-1698633632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698633632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698637248.json b/data/finished/notifications-1698637248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698637248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698640845.json b/data/finished/notifications-1698640845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698640845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698644443.json b/data/finished/notifications-1698644443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698644443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698648033.json b/data/finished/notifications-1698648033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698648033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698651641.json b/data/finished/notifications-1698651641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698651641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698655236.json b/data/finished/notifications-1698655236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698655236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698658854.json b/data/finished/notifications-1698658854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698658854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698662447.json b/data/finished/notifications-1698662447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698662447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698666042.json b/data/finished/notifications-1698666042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698666042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698670379.json b/data/finished/notifications-1698670379.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698670379.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698673236.json b/data/finished/notifications-1698673236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698673236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698676836.json b/data/finished/notifications-1698676836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698676836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698680440.json b/data/finished/notifications-1698680440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698680440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698684112.json b/data/finished/notifications-1698684112.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698684112.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698687634.json b/data/finished/notifications-1698687634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698687634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698691242.json b/data/finished/notifications-1698691242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698691242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698694844.json b/data/finished/notifications-1698694844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698694844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698698447.json b/data/finished/notifications-1698698447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698698447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698702046.json b/data/finished/notifications-1698702046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698702046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698705649.json b/data/finished/notifications-1698705649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698705649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698709231.json b/data/finished/notifications-1698709231.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698709231.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698716129.json b/data/finished/notifications-1698716129.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698716129.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698718018.json b/data/finished/notifications-1698718018.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698718018.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698720034.json b/data/finished/notifications-1698720034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698720034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698723653.json b/data/finished/notifications-1698723653.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698723653.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698727242.json b/data/finished/notifications-1698727242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698727242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698730843.json b/data/finished/notifications-1698730843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698730843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698734443.json b/data/finished/notifications-1698734443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698734443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698738055.json b/data/finished/notifications-1698738055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698738055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698741649.json b/data/finished/notifications-1698741649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698741649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698745245.json b/data/finished/notifications-1698745245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698745245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698748834.json b/data/finished/notifications-1698748834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698748834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698752455.json b/data/finished/notifications-1698752455.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698752455.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698756756.json b/data/finished/notifications-1698756756.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698756756.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698759651.json b/data/finished/notifications-1698759651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698759651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698763240.json b/data/finished/notifications-1698763240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698763240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698766848.json b/data/finished/notifications-1698766848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698766848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698770522.json b/data/finished/notifications-1698770522.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698770522.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698774042.json b/data/finished/notifications-1698774042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698774042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698777652.json b/data/finished/notifications-1698777652.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698777652.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698781254.json b/data/finished/notifications-1698781254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698781254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698784847.json b/data/finished/notifications-1698784847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698784847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698788438.json b/data/finished/notifications-1698788438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698788438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698792043.json b/data/finished/notifications-1698792043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698792043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698795635.json b/data/finished/notifications-1698795635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698795635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698802788.json b/data/finished/notifications-1698802788.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698802788.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698806459.json b/data/finished/notifications-1698806459.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698806459.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698810035.json b/data/finished/notifications-1698810035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698810035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698813644.json b/data/finished/notifications-1698813644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698813644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698817247.json b/data/finished/notifications-1698817247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698817247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698820857.json b/data/finished/notifications-1698820857.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698820857.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698824438.json b/data/finished/notifications-1698824438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698824438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698828043.json b/data/finished/notifications-1698828043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698828043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698831647.json b/data/finished/notifications-1698831647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698831647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698835245.json b/data/finished/notifications-1698835245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698835245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698838833.json b/data/finished/notifications-1698838833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698838833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698843153.json b/data/finished/notifications-1698843153.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698843153.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698846044.json b/data/finished/notifications-1698846044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698846044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698849650.json b/data/finished/notifications-1698849650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698849650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698853241.json b/data/finished/notifications-1698853241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698853241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698856923.json b/data/finished/notifications-1698856923.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698856923.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698860445.json b/data/finished/notifications-1698860445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698860445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698864035.json b/data/finished/notifications-1698864035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698864035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698867645.json b/data/finished/notifications-1698867645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698867645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698871253.json b/data/finished/notifications-1698871253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698871253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698874845.json b/data/finished/notifications-1698874845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698874845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698878444.json b/data/finished/notifications-1698878444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698878444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698882046.json b/data/finished/notifications-1698882046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698882046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698888899.json b/data/finished/notifications-1698888899.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698888899.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698890771.json b/data/finished/notifications-1698890771.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698890771.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698892832.json b/data/finished/notifications-1698892832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698892832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698896434.json b/data/finished/notifications-1698896434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698896434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698900055.json b/data/finished/notifications-1698900055.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698900055.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698903644.json b/data/finished/notifications-1698903644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698903644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698907238.json b/data/finished/notifications-1698907238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698907238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698910835.json b/data/finished/notifications-1698910835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698910835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698914435.json b/data/finished/notifications-1698914435.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698914435.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698918042.json b/data/finished/notifications-1698918042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698918042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698921647.json b/data/finished/notifications-1698921647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698921647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698925236.json b/data/finished/notifications-1698925236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698925236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698929561.json b/data/finished/notifications-1698929561.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698929561.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698932433.json b/data/finished/notifications-1698932433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698932433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698936037.json b/data/finished/notifications-1698936037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698936037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698939644.json b/data/finished/notifications-1698939644.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698939644.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698943387.json b/data/finished/notifications-1698943387.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698943387.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698946833.json b/data/finished/notifications-1698946833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698946833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698950434.json b/data/finished/notifications-1698950434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698950434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698954045.json b/data/finished/notifications-1698954045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698954045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698957638.json b/data/finished/notifications-1698957638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698957638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698961254.json b/data/finished/notifications-1698961254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698961254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698964838.json b/data/finished/notifications-1698964838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698964838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698968433.json b/data/finished/notifications-1698968433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698968433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698975346.json b/data/finished/notifications-1698975346.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698975346.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698977237.json b/data/finished/notifications-1698977237.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698977237.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698979234.json b/data/finished/notifications-1698979234.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698979234.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698982837.json b/data/finished/notifications-1698982837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698982837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698986437.json b/data/finished/notifications-1698986437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698986437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698990051.json b/data/finished/notifications-1698990051.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698990051.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698993645.json b/data/finished/notifications-1698993645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698993645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1698997241.json b/data/finished/notifications-1698997241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1698997241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699000835.json b/data/finished/notifications-1699000835.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699000835.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699004432.json b/data/finished/notifications-1699004432.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699004432.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699008050.json b/data/finished/notifications-1699008050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699008050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699011634.json b/data/finished/notifications-1699011634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699011634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699016022.json b/data/finished/notifications-1699016022.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699016022.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699018853.json b/data/finished/notifications-1699018853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699018853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699022447.json b/data/finished/notifications-1699022447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699022447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699026037.json b/data/finished/notifications-1699026037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699026037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699029711.json b/data/finished/notifications-1699029711.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699029711.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699033233.json b/data/finished/notifications-1699033233.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699033233.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699036832.json b/data/finished/notifications-1699036832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699036832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699040448.json b/data/finished/notifications-1699040448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699040448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699044047.json b/data/finished/notifications-1699044047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699044047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699047631.json b/data/finished/notifications-1699047631.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699047631.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699051253.json b/data/finished/notifications-1699051253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699051253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699054846.json b/data/finished/notifications-1699054846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699054846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699061665.json b/data/finished/notifications-1699061665.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699061665.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699063575.json b/data/finished/notifications-1699063575.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699063575.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699065634.json b/data/finished/notifications-1699065634.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699065634.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699069243.json b/data/finished/notifications-1699069243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699069243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699072850.json b/data/finished/notifications-1699072850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699072850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699076443.json b/data/finished/notifications-1699076443.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699076443.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699080035.json b/data/finished/notifications-1699080035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699080035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699083633.json b/data/finished/notifications-1699083633.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699083633.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699087252.json b/data/finished/notifications-1699087252.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699087252.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699090853.json b/data/finished/notifications-1699090853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699090853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699094436.json b/data/finished/notifications-1699094436.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699094436.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699098045.json b/data/finished/notifications-1699098045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699098045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699102187.json b/data/finished/notifications-1699102187.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699102187.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699105244.json b/data/finished/notifications-1699105244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699105244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699108842.json b/data/finished/notifications-1699108842.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699108842.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699112448.json b/data/finished/notifications-1699112448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699112448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699116031.json b/data/finished/notifications-1699116031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699116031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699119649.json b/data/finished/notifications-1699119649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699119649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699123255.json b/data/finished/notifications-1699123255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699123255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699126833.json b/data/finished/notifications-1699126833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699126833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699130433.json b/data/finished/notifications-1699130433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699130433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699134035.json b/data/finished/notifications-1699134035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699134035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699137645.json b/data/finished/notifications-1699137645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699137645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699141255.json b/data/finished/notifications-1699141255.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699141255.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699148417.json b/data/finished/notifications-1699148417.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699148417.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699152052.json b/data/finished/notifications-1699152052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699152052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699155632.json b/data/finished/notifications-1699155632.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699155632.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699159250.json b/data/finished/notifications-1699159250.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699159250.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699162839.json b/data/finished/notifications-1699162839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699162839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699166438.json b/data/finished/notifications-1699166438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699166438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699170048.json b/data/finished/notifications-1699170048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699170048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699173643.json b/data/finished/notifications-1699173643.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699173643.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699177245.json b/data/finished/notifications-1699177245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699177245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699180844.json b/data/finished/notifications-1699180844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699180844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699184442.json b/data/finished/notifications-1699184442.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699184442.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699188602.json b/data/finished/notifications-1699188602.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699188602.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699191639.json b/data/finished/notifications-1699191639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699191639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699195240.json b/data/finished/notifications-1699195240.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699195240.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699198855.json b/data/finished/notifications-1699198855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699198855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699202456.json b/data/finished/notifications-1699202456.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699202456.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699206049.json b/data/finished/notifications-1699206049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699206049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699209641.json b/data/finished/notifications-1699209641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699209641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699213239.json b/data/finished/notifications-1699213239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699213239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699216830.json b/data/finished/notifications-1699216830.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699216830.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699220434.json b/data/finished/notifications-1699220434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699220434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699224037.json b/data/finished/notifications-1699224037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699224037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699227636.json b/data/finished/notifications-1699227636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699227636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699234734.json b/data/finished/notifications-1699234734.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699234734.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699238487.json b/data/finished/notifications-1699238487.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699238487.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699242031.json b/data/finished/notifications-1699242031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699242031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699245638.json b/data/finished/notifications-1699245638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699245638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699249242.json b/data/finished/notifications-1699249242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699249242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699252840.json b/data/finished/notifications-1699252840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699252840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699256449.json b/data/finished/notifications-1699256449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699256449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699260049.json b/data/finished/notifications-1699260049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699260049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699263636.json b/data/finished/notifications-1699263636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699263636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699267251.json b/data/finished/notifications-1699267251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699267251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699270833.json b/data/finished/notifications-1699270833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699270833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699275315.json b/data/finished/notifications-1699275315.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699275315.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699278050.json b/data/finished/notifications-1699278050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699278050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699281654.json b/data/finished/notifications-1699281654.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699281654.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699285245.json b/data/finished/notifications-1699285245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699285245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699289010.json b/data/finished/notifications-1699289010.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699289010.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699292449.json b/data/finished/notifications-1699292449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699292449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699296048.json b/data/finished/notifications-1699296048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699296048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699299636.json b/data/finished/notifications-1699299636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699299636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699303233.json b/data/finished/notifications-1699303233.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699303233.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699306845.json b/data/finished/notifications-1699306845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699306845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699310452.json b/data/finished/notifications-1699310452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699310452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699314047.json b/data/finished/notifications-1699314047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699314047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699321050.json b/data/finished/notifications-1699321050.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699321050.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699324838.json b/data/finished/notifications-1699324838.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699324838.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699328444.json b/data/finished/notifications-1699328444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699328444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699332047.json b/data/finished/notifications-1699332047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699332047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699335638.json b/data/finished/notifications-1699335638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699335638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699339247.json b/data/finished/notifications-1699339247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699339247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699342836.json b/data/finished/notifications-1699342836.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699342836.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699346446.json b/data/finished/notifications-1699346446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699346446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699350033.json b/data/finished/notifications-1699350033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699350033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699353636.json b/data/finished/notifications-1699353636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699353636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699357246.json b/data/finished/notifications-1699357246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699357246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699361564.json b/data/finished/notifications-1699361564.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699361564.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699364438.json b/data/finished/notifications-1699364438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699364438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699368035.json b/data/finished/notifications-1699368035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699368035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699371649.json b/data/finished/notifications-1699371649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699371649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699375359.json b/data/finished/notifications-1699375359.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699375359.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699378845.json b/data/finished/notifications-1699378845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699378845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699382435.json b/data/finished/notifications-1699382435.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699382435.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699386034.json b/data/finished/notifications-1699386034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699386034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699389638.json b/data/finished/notifications-1699389638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699389638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699393245.json b/data/finished/notifications-1699393245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699393245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699396848.json b/data/finished/notifications-1699396848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699396848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699400445.json b/data/finished/notifications-1699400445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699400445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699407386.json b/data/finished/notifications-1699407386.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699407386.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699409279.json b/data/finished/notifications-1699409279.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699409279.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699411247.json b/data/finished/notifications-1699411247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699411247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699414837.json b/data/finished/notifications-1699414837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699414837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699418438.json b/data/finished/notifications-1699418438.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699418438.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699422034.json b/data/finished/notifications-1699422034.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699422034.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699425647.json b/data/finished/notifications-1699425647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699425647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699429248.json b/data/finished/notifications-1699429248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699429248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699432833.json b/data/finished/notifications-1699432833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699432833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699436444.json b/data/finished/notifications-1699436444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699436444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699440035.json b/data/finished/notifications-1699440035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699440035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699443638.json b/data/finished/notifications-1699443638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699443638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699447965.json b/data/finished/notifications-1699447965.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699447965.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699450834.json b/data/finished/notifications-1699450834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699450834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699454435.json b/data/finished/notifications-1699454435.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699454435.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699458042.json b/data/finished/notifications-1699458042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699458042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699461742.json b/data/finished/notifications-1699461742.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699461742.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699465236.json b/data/finished/notifications-1699465236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699465236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699468854.json b/data/finished/notifications-1699468854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699468854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699472446.json b/data/finished/notifications-1699472446.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699472446.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699476045.json b/data/finished/notifications-1699476045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699476045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699479639.json b/data/finished/notifications-1699479639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699479639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699483241.json b/data/finished/notifications-1699483241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699483241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699486847.json b/data/finished/notifications-1699486847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699486847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699493824.json b/data/finished/notifications-1699493824.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699493824.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699495756.json b/data/finished/notifications-1699495756.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699495756.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699497633.json b/data/finished/notifications-1699497633.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699497633.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699501246.json b/data/finished/notifications-1699501246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699501246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699504843.json b/data/finished/notifications-1699504843.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699504843.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699508430.json b/data/finished/notifications-1699508430.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699508430.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699512036.json b/data/finished/notifications-1699512036.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699512036.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699515639.json b/data/finished/notifications-1699515639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699515639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699519246.json b/data/finished/notifications-1699519246.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699519246.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699522848.json b/data/finished/notifications-1699522848.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699522848.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699526458.json b/data/finished/notifications-1699526458.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699526458.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699530036.json b/data/finished/notifications-1699530036.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699530036.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699534360.json b/data/finished/notifications-1699534360.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699534360.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699537253.json b/data/finished/notifications-1699537253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699537253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699540847.json b/data/finished/notifications-1699540847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699540847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699544453.json b/data/finished/notifications-1699544453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699544453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699548128.json b/data/finished/notifications-1699548128.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699548128.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699551650.json b/data/finished/notifications-1699551650.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699551650.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699555251.json b/data/finished/notifications-1699555251.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699555251.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699558845.json b/data/finished/notifications-1699558845.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699558845.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699562432.json b/data/finished/notifications-1699562432.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699562432.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699566031.json b/data/finished/notifications-1699566031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699566031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699569635.json b/data/finished/notifications-1699569635.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699569635.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699573244.json b/data/finished/notifications-1699573244.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699573244.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699580187.json b/data/finished/notifications-1699580187.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699580187.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699582096.json b/data/finished/notifications-1699582096.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699582096.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699584042.json b/data/finished/notifications-1699584042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699584042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699587633.json b/data/finished/notifications-1699587633.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699587633.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699591254.json b/data/finished/notifications-1699591254.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699591254.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699594834.json b/data/finished/notifications-1699594834.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699594834.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699598447.json b/data/finished/notifications-1699598447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699598447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699602049.json b/data/finished/notifications-1699602049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699602049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699605638.json b/data/finished/notifications-1699605638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699605638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699609253.json b/data/finished/notifications-1699609253.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699609253.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699612847.json b/data/finished/notifications-1699612847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699612847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699616439.json b/data/finished/notifications-1699616439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699616439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699620774.json b/data/finished/notifications-1699620774.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699620774.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699623647.json b/data/finished/notifications-1699623647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699623647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699627239.json b/data/finished/notifications-1699627239.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699627239.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699630853.json b/data/finished/notifications-1699630853.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699630853.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699634506.json b/data/finished/notifications-1699634506.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699634506.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699638045.json b/data/finished/notifications-1699638045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699638045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699641647.json b/data/finished/notifications-1699641647.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699641647.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699645231.json b/data/finished/notifications-1699645231.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699645231.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699648854.json b/data/finished/notifications-1699648854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699648854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699652441.json b/data/finished/notifications-1699652441.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699652441.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699656043.json b/data/finished/notifications-1699656043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699656043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699659639.json b/data/finished/notifications-1699659639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699659639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699666465.json b/data/finished/notifications-1699666465.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699666465.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699670511.json b/data/finished/notifications-1699670511.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699670511.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699674042.json b/data/finished/notifications-1699674042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699674042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699677648.json b/data/finished/notifications-1699677648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699677648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699681243.json b/data/finished/notifications-1699681243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699681243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699684839.json b/data/finished/notifications-1699684839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699684839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699688433.json b/data/finished/notifications-1699688433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699688433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699692037.json b/data/finished/notifications-1699692037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699692037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699695638.json b/data/finished/notifications-1699695638.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699695638.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699699242.json b/data/finished/notifications-1699699242.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699699242.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699702831.json b/data/finished/notifications-1699702831.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699702831.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699707000.json b/data/finished/notifications-1699707000.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699707000.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699710058.json b/data/finished/notifications-1699710058.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699710058.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699713649.json b/data/finished/notifications-1699713649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699713649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699717236.json b/data/finished/notifications-1699717236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699717236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699720830.json b/data/finished/notifications-1699720830.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699720830.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699724437.json b/data/finished/notifications-1699724437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699724437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699728046.json b/data/finished/notifications-1699728046.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699728046.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699731639.json b/data/finished/notifications-1699731639.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699731639.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699735238.json b/data/finished/notifications-1699735238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699735238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699738832.json b/data/finished/notifications-1699738832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699738832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699742447.json b/data/finished/notifications-1699742447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699742447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699746042.json b/data/finished/notifications-1699746042.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699746042.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699753259.json b/data/finished/notifications-1699753259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699753259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699756875.json b/data/finished/notifications-1699756875.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699756875.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699760433.json b/data/finished/notifications-1699760433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699760433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699764044.json b/data/finished/notifications-1699764044.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699764044.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699767646.json b/data/finished/notifications-1699767646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699767646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699771247.json b/data/finished/notifications-1699771247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699771247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699774839.json b/data/finished/notifications-1699774839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699774839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699778437.json b/data/finished/notifications-1699778437.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699778437.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699782037.json b/data/finished/notifications-1699782037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699782037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699785640.json b/data/finished/notifications-1699785640.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699785640.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699789259.json b/data/finished/notifications-1699789259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699789259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699793420.json b/data/finished/notifications-1699793420.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699793420.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699796434.json b/data/finished/notifications-1699796434.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699796434.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699800120.json b/data/finished/notifications-1699800120.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699800120.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699803630.json b/data/finished/notifications-1699803630.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699803630.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699807243.json b/data/finished/notifications-1699807243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699807243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699810850.json b/data/finished/notifications-1699810850.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699810850.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699814444.json b/data/finished/notifications-1699814444.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699814444.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699818037.json b/data/finished/notifications-1699818037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699818037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699821641.json b/data/finished/notifications-1699821641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699821641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699825259.json b/data/finished/notifications-1699825259.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699825259.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699828854.json b/data/finished/notifications-1699828854.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699828854.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699832431.json b/data/finished/notifications-1699832431.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699832431.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699839535.json b/data/finished/notifications-1699839535.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699839535.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699843286.json b/data/finished/notifications-1699843286.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699843286.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699846840.json b/data/finished/notifications-1699846840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699846840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699850430.json b/data/finished/notifications-1699850430.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699850430.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699854041.json b/data/finished/notifications-1699854041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699854041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699857641.json b/data/finished/notifications-1699857641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699857641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699861243.json b/data/finished/notifications-1699861243.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699861243.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699864841.json b/data/finished/notifications-1699864841.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699864841.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699868432.json b/data/finished/notifications-1699868432.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699868432.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699872047.json b/data/finished/notifications-1699872047.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699872047.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699875636.json b/data/finished/notifications-1699875636.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699875636.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699880035.json b/data/finished/notifications-1699880035.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699880035.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699882852.json b/data/finished/notifications-1699882852.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699882852.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699886453.json b/data/finished/notifications-1699886453.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699886453.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699890056.json b/data/finished/notifications-1699890056.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699890056.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699893769.json b/data/finished/notifications-1699893769.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699893769.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699897241.json b/data/finished/notifications-1699897241.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699897241.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699900844.json b/data/finished/notifications-1699900844.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699900844.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699904452.json b/data/finished/notifications-1699904452.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699904452.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699908052.json b/data/finished/notifications-1699908052.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699908052.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699911646.json b/data/finished/notifications-1699911646.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699911646.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699915247.json b/data/finished/notifications-1699915247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699915247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699918837.json b/data/finished/notifications-1699918837.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699918837.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699925831.json b/data/finished/notifications-1699925831.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699925831.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699927981.json b/data/finished/notifications-1699927981.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699927981.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699929645.json b/data/finished/notifications-1699929645.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699929645.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699933247.json b/data/finished/notifications-1699933247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699933247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699936847.json b/data/finished/notifications-1699936847.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699936847.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699940445.json b/data/finished/notifications-1699940445.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699940445.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699944045.json b/data/finished/notifications-1699944045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699944045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699947633.json b/data/finished/notifications-1699947633.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699947633.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699951245.json b/data/finished/notifications-1699951245.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699951245.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699954840.json b/data/finished/notifications-1699954840.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699954840.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699958449.json b/data/finished/notifications-1699958449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699958449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699962045.json b/data/finished/notifications-1699962045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699962045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699966389.json b/data/finished/notifications-1699966389.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699966389.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699969236.json b/data/finished/notifications-1699969236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699969236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699972839.json b/data/finished/notifications-1699972839.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699972839.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699976449.json b/data/finished/notifications-1699976449.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699976449.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699980041.json b/data/finished/notifications-1699980041.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699980041.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699983637.json b/data/finished/notifications-1699983637.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699983637.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699987238.json b/data/finished/notifications-1699987238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699987238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699990855.json b/data/finished/notifications-1699990855.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699990855.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699994433.json b/data/finished/notifications-1699994433.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699994433.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1699998049.json b/data/finished/notifications-1699998049.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1699998049.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700001657.json b/data/finished/notifications-1700001657.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700001657.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700005238.json b/data/finished/notifications-1700005238.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700005238.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700012387.json b/data/finished/notifications-1700012387.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700012387.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700016153.json b/data/finished/notifications-1700016153.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700016153.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700019648.json b/data/finished/notifications-1700019648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700019648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700023235.json b/data/finished/notifications-1700023235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700023235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700026846.json b/data/finished/notifications-1700026846.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700026846.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700030450.json b/data/finished/notifications-1700030450.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700030450.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700034031.json b/data/finished/notifications-1700034031.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700034031.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700037679.json b/data/finished/notifications-1700037679.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700037679.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700041233.json b/data/finished/notifications-1700041233.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700041233.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700044873.json b/data/finished/notifications-1700044873.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700044873.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700048448.json b/data/finished/notifications-1700048448.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700048448.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700052878.json b/data/finished/notifications-1700052878.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700052878.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700055649.json b/data/finished/notifications-1700055649.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700055649.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700059248.json b/data/finished/notifications-1700059248.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700059248.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700062841.json b/data/finished/notifications-1700062841.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700062841.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700066641.json b/data/finished/notifications-1700066641.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700066641.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700070036.json b/data/finished/notifications-1700070036.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700070036.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700073642.json b/data/finished/notifications-1700073642.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700073642.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700077247.json b/data/finished/notifications-1700077247.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700077247.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700080833.json b/data/finished/notifications-1700080833.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700080833.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700084439.json b/data/finished/notifications-1700084439.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700084439.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700088045.json b/data/finished/notifications-1700088045.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700088045.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700091651.json b/data/finished/notifications-1700091651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700091651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700098807.json b/data/finished/notifications-1700098807.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700098807.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700102573.json b/data/finished/notifications-1700102573.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700102573.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700106043.json b/data/finished/notifications-1700106043.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700106043.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700109651.json b/data/finished/notifications-1700109651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700109651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700113235.json b/data/finished/notifications-1700113235.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700113235.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700116858.json b/data/finished/notifications-1700116858.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700116858.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700120447.json b/data/finished/notifications-1700120447.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700120447.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700124048.json b/data/finished/notifications-1700124048.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700124048.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700127651.json b/data/finished/notifications-1700127651.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700127651.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700131275.json b/data/finished/notifications-1700131275.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700131275.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700134832.json b/data/finished/notifications-1700134832.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700134832.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700139267.json b/data/finished/notifications-1700139267.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700139267.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700142033.json b/data/finished/notifications-1700142033.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700142033.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700145637.json b/data/finished/notifications-1700145637.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700145637.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700149258.json b/data/finished/notifications-1700149258.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700149258.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700153026.json b/data/finished/notifications-1700153026.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700153026.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700156440.json b/data/finished/notifications-1700156440.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700156440.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700160037.json b/data/finished/notifications-1700160037.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700160037.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700163648.json b/data/finished/notifications-1700163648.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700163648.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/notifications-1700167236.json b/data/finished/notifications-1700167236.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/finished/notifications-1700167236.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/finished/permit_content.json b/data/finished/permit_content.json new file mode 100644 index 00000000..f4574986 --- /dev/null +++ b/data/finished/permit_content.json @@ -0,0 +1 @@ +{"payload": {"acquisition_types": null, "activities": [], "addresses": [{"address1": "PO Box 128", "address2": "", "city": "West Glacier", "country": "", "description1": "Glacier National Park", "description2": "", "id": "", "phone": "", "remarks": "", "state": "Montana", "type": "", "zip_code": "59936"}], "animals": [{"amount": 0, "type": 2}], "availability_filters": {"groups": false, "people": false, "watercraft": false}, "campsites": null, "category": "", "components": {"alternate_group_leader": true, "animal_list": true, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": true, "entry_exit_points": true, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": true, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": true, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": true, "vehicle_list": true, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "created_time": "2022-11-28T18:55:22.653332385Z", "description": {"cancellation_policy": "

Cancellation Policy:

\n\n

Change Policy:

\n", "description": "

With its towering mountains, pristine alpine lakes, abundant wildlife, over 700 miles of trails, and 65 wilderness campgrounds, Glacier is a backpacking paradise. A permit is required for backpacking in the park. For complete details on securing wilderness camping advance reservations, visit the Glacier National Park Wilderness Camping Advance Reservations page. On March 1, 2023 the park is providing limited larger group permit lotteries through Pay.gov for groups of 5-12 people. On March 15, 2023 full online advance reservations for groups of 1-4 people will open on Recreation.gov . Groups larger than 4 must reserve separate permits and have separate group leaders.

\n

Due to individual differences in fitness, backpacking experience, and personal preference, we don\u2019t offer specific trip recommendations. What we can tell you is that in the broadest sense, Glacier's wilderness comes in two flavors\u2014east and west roughly split along the Continental Divide. Each trail on a respective side offers a similar \"feel.\" West side trails start at around 3,200 feet in elevation, are more heavily forested, and offer the greatest solitude. East of the divide, trails start at around 5,000 feet and the terrain is more sparsely vegetated, creating more open vistas.\u00a0

\n

Glacier was recommended for inclusion in the National Wilderness Preservation System in 1974. National Park Service policy requires that the park\u2019s character not be degraded and remain unimpaired for future use and enjoyment. Recommended wilderness lands are managed differently than front-country or backcountry areas, with minimal human manipulation of a diverse, intact, natural ecosystem. Remaining undeveloped, with minimal mechanization and modern influence, wilderness lands provide outstanding opportunities for solitude and primitive, unconfined recreation. As such, Glacier National Park is managed in a way to preserve its wilderness character for future generations.

", "discounts": "

America the Beautiful (ATB) Interagency Passes, including Senior, Access and Annual Pass, do not apply to Wilderness Use Permits.

", "driving_directions": "

Important Travel Warnings:

\n

There are no fueling stations within Glacier's boundaries.

\n

During extreme congestion, access to whole areas may be temporarily restricted to allow for emergency vehicles.

\n

Glacier's entries and roads all have specific restrictions and season lengths. Please plan accordingly.\u00a0

\n

By Car

\n

From the west, access to the Lake McDonald area, Park Headquarters, the Apgar Visitor Center, and Going-to-the-Sun-Road is via Highway 2 east to the town of West Glacier (approximately 33 miles from Kalispell).

\n

From the east, all three east-side entrances can be reached by taking Highway 89 north from Great Falls through the town of Browning (approximately 125 miles) and following signs from there.

\n

By Air

\n

Glacier Park International Airport is located near Kalispell and is approximately 30 miles west of the West Entrance.

\n

Missoula International Airport is located approximately 150 miles south of the West Entrance.

\n

Great Falls International Airport is located between 130 miles and 165 miles east of the St Mary, Two Medicine, and Many Glacier Entrances.

\n

By Train

\n

Amtrak's historic Empire Builder train line stops year-round at West Glacier (Belton), and the Izaak Walton Inn at Essex, and seasonally at East Glacier Park. In the summer, Glacier National Park Lodges provides a shuttle (for a fee) that transports West Glacier Amtrak passengers between the train depot, Apgar Village, and the Lake McDonald Lodge. Reservations are required.

", "fee_policy": "

Wilderness Permit Fee:

\n\n

Camping Fees:

\n\n

Only debit or credit cards will be accepted, no cash.

\n

Park entry requires a separate fee or pass.

\n

Your wilderness permit will serve as your timed-entry permit for the duration of your trip.

", "need_to_know_email": "

Thank you for reserving a wilderness permit for Glacier National Park! Below are our policies on picking up your permit, and changing or cancelling your reservation.

\n", "need_to_know_order": "", "need_to_know_pdf": "

Coming Soon.

", "need_to_know_permit": "

When planning your trip, please keep the following in mind:

\n\n

Leave No Trace

\n

Please follow all principles of Leave No Trace including: Plan ahead and prepare, travel and camp on durable surfaces, dispose of waste properly, leave what you find, minimize campfire impacts, respect wildlife, and be considerate of other visitors.\u00a0\u00a0

", "no_show_policy": "

Wilderness Permit reservations not picked up by 4:30pm on the start date will be canceled.\u00a0

", "quota_details": "

Within Glacier National Park, wilderness camping is managed with quotas for designated sites and camping zones. The party size, length of stay, and number of parties allowed in a campsite or camping zone per night, have been calculated and regulated to provide for resource protection and visitor enjoyment.\u00a0

\n\n

Wilderness campsites can accommodate a maximum of 4 people and two tents per site. One group/permit per site. The number of campsites varies by campground.

", "season_information": "

In order to preserve the extraordinary wilderness character of Glacier National Park, a Wilderness Permit is required year-round for all overnight trips in the backcountry. A Wilderness Permit allows the permit holder and their group (4 people maximum) to camp in wilderness campsites and is valid only for the dates, locations, and party size indicated. Your permit must be in your possession while in the wilderness.

\n", "tertiary_page": "

Coming Soon.

"}, "directions": "", "discounts": null, "divisions": {"4675321001": {"acreage": 0, "child_distances": null, "children": ["4675321012", "4675321024", "4675321003", "4675321013", "4675321005", "4675321006", "4675321027", "4675321028", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321001", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "FIF - Fifty Mountain (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321002": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321035", "4675321003", "4675321004", "4675321037", "4675321005", "4675321006", "4675321007", "4675321043", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321002", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "FRA - Lake Francis (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321003": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321035", "4675321001", "4675321002", "4675321024", "4675321004", "4675321037", "4675321005", "4675321006", "4675321027", "4675321028", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321003", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "GOA - Goat Haunt Shelters", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321004": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321035", "4675321002", "4675321003", "4675321037", "4675321005", "4675321006", "4675321007", "4675321043", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321004", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "HAW - Hawksbill (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321005": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321035", "4675321001", "4675321002", "4675321003", "4675321004", "4675321037", "4675321006", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321005", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "JAN - Lake Janet", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321006": {"acreage": 0, "child_distances": null, "children": ["4675321035", "4675321018", "4675321001", "4675321012", "4675321002", "4675321023", "4675321024", "4675321003", "4675321004", "4675321037", "4675321005", "4675321027", "4675321028", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321006", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "KOO - Kootenai Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321007": {"acreage": 0, "child_distances": null, "children": ["4675321035", "4675321018", "4675321020", "4675321021", "4675321001", "4675321012", "4675321002", "4675321022", "4675321023", "4675321024", "4675321003", "4675321004", "4675321005", "4675321006", "4675321027", "4675321028", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321007", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "STO - Stony Indian Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321008": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321035", "4675321001", "4675321002", "4675321024", "4675321003", "4675321004", "4675321037", "4675321005", "4675321006", "4675321027", "4675321028", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321008", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "WAT - Waterton River", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321009": {"acreage": 0, "child_distances": null, "children": ["4675321010", "4675321015"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321009", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "ARR - Arrow Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321010": {"acreage": 0, "child_distances": null, "children": ["4675321009", "4675321015"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321010", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "CAM - Camas Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321011": {"acreage": 0, "child_distances": null, "children": ["4675321045", "4675321050", "4675321016", "4675321017"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321011", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "ELL - Lake Ellen Wilson (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321012": {"acreage": 0, "child_distances": null, "children": ["4675321001", "4675321013", "4675321006", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321012", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "FLA - Flattop (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321013": {"acreage": 0, "child_distances": null, "children": ["4675321019", "4675321001", "4675321012", "4675321026"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321013", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "GRN - Granite Park (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321014": {"acreage": 0, "child_distances": null, "children": ["4675321058", "4675321016", "4675321017"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321014", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "LIN - Lincoln Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321015": {"acreage": 0, "child_distances": null, "children": ["4675321009", "4675321010"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321015", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "MCD - Lake McDonald", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321016": {"acreage": 0, "child_distances": null, "children": ["4675321011", "4675321045", "4675321014", "4675321017"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321016", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "SNY - Snyder Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321017": {"acreage": 0, "child_distances": null, "children": ["4675321011", "4675321045", "4675321014", "4675321050", "4675321016"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321017", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "SPE - Sperry (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321018": {"acreage": 0, "child_distances": null, "children": ["4675321020", "4675321021", "4675321022", "4675321023", "4675321024", "4675321025", "4675321006", "4675321026", "4675321027", "4675321028", "4675321029", "4675321030", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321018", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:33:58.623642606Z", "motor_hp_limit": "", "name": "COS - Cosley Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321019": {"acreage": 0, "child_distances": null, "children": ["4675321013", "4675321026", "4675321029"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321019", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "CRA - Cracker Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321020": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321021", "4675321022", "4675321023", "4675321024", "4675321025", "4675321026", "4675321027", "4675321028", "4675321029", "4675321030", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321020", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:39:43.255357373Z", "motor_hp_limit": "", "name": "ELF - Elizabeth Lake Foot (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321021": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321022", "4675321023", "4675321024", "4675321025", "4675321026", "4675321027", "4675321028", "4675321029", "4675321030", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321021", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:40:38.796163929Z", "motor_hp_limit": "", "name": "ELH - Elizabeth Lake Head (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321022": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321023", "4675321024", "4675321025", "4675321026", "4675321027", "4675321028", "4675321029", "4675321030", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321022", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:34:34.038311453Z", "motor_hp_limit": "", "name": "GAB - Gable Creek (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321023": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321022", "4675321024", "4675321025", "4675321006", "4675321026", "4675321027", "4675321028", "4675321029", "4675321030", "4675321007"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321023", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:35:06.915248662Z", "motor_hp_limit": "", "name": "GLF - Glenns Lake Foot (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321024": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321001", "4675321022", "4675321023", "4675321003", "4675321025", "4675321006", "4675321027", "4675321028", "4675321030", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321024", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:35:44.047963192Z", "motor_hp_limit": "", "name": "GLH - Glenns Lake Head (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321025": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321022", "4675321023", "4675321024", "4675321026", "4675321027", "4675321028", "4675321029", "4675321030"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321025", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:41:09.81784709Z", "motor_hp_limit": "", "name": "HEL - Helen Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321026": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321019", "4675321020", "4675321021", "4675321022", "4675321023", "4675321013", "4675321050"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321026", "is_accessible_as_child_only": true, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2023-03-20T13:18:21.427452929Z", "motor_hp_limit": "", "name": "MAN - Many Glacier", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321027": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321001", "4675321022", "4675321023", "4675321024", "4675321003", "4675321025", "4675321006", "4675321028", "4675321030", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321027", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:37:11.639282889Z", "motor_hp_limit": "", "name": "MOJ - Mokowanis Junction (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321028": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321001", "4675321022", "4675321023", "4675321024", "4675321003", "4675321025", "4675321006", "4675321030", "4675321027", "4675321007", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321028", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:37:47.314090675Z", "motor_hp_limit": "", "name": "MOL - Mokowanis Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321029": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321019", "4675321020", "4675321021", "4675321022", "4675321023", "4675321013", "4675321025", "4675321026"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321029", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "POI - Poia Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321030": {"acreage": 0, "child_distances": null, "children": ["4675321018", "4675321020", "4675321021", "4675321023", "4675321024", "4675321025", "4675321027", "4675321028"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321030", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "dfd98b73-a35b-4491-ab6a-b524f14df072", "modified_time": "2023-02-04T20:33:20.916612232Z", "motor_hp_limit": "", "name": "SLI - Slide Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 3, "view_order": 0}, "4675321031": {"acreage": 0, "child_distances": null, "children": ["4675321036", "4675321039"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321031", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "ADA - Adair", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321032": {"acreage": 0, "child_distances": null, "children": ["4675321034", "4675321040", "4675321041"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321032", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "AKO - Akokala Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321033": {"acreage": 0, "child_distances": null, "children": ["4675321034", "4675321035", "4675321002", "4675321003", "4675321004", "4675321037", "4675321005", "4675321038", "4675321043", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321033", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "BOU - Boulder Pass (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321034": {"acreage": 0, "child_distances": null, "children": ["4675321032", "4675321033", "4675321035", "4675321002", "4675321003", "4675321004", "4675321037", "4675321005", "4675321040", "4675321041", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321034", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "BOW - Bowman Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321035": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321002", "4675321003", "4675321004", "4675321037", "4675321005", "4675321006", "4675321007", "4675321043", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321035", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "BRO - Brown Pass (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321036": {"acreage": 0, "child_distances": null, "children": ["4675321031", "4675321039"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321036", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "GRA - Grace Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321037": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321034", "4675321035", "4675321002", "4675321003", "4675321004", "4675321005", "4675321038", "4675321006", "4675321043", "4675321008"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321037", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "HOL - Hole in the Wall (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321038": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321037", "4675321043"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321038", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "KIN - Kintla Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321039": {"acreage": 0, "child_distances": null, "children": ["4675321031", "4675321036"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321039", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "LOF - Logging Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321040": {"acreage": 0, "child_distances": null, "children": ["4675321032", "4675321034", "4675321041"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321040", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "LQU - Lower Quartz Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321041": {"acreage": 0, "child_distances": null, "children": ["4675321032", "4675321034", "4675321040"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321041", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "QUA - Quartz Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321042": {"acreage": 0, "child_distances": null, "children": ["4675321042"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321042", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "ROU - Round Prairie (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321043": {"acreage": 0, "child_distances": null, "children": ["4675321033", "4675321035", "4675321002", "4675321004", "4675321037", "4675321038"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321043", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "UPK - Upper Kintla Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321044": {"acreage": 0, "child_distances": null, "children": ["4675321046", "4675321052", "4675321053", "4675321048", "4675321049", "4675321054", "4675321065", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321044", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "ATL - Atlantic Creek (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321045": {"acreage": 0, "child_distances": null, "children": ["4675321011", "4675321050", "4675321016", "4675321017"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321045", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "GUN - Gunsight Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321046": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321056", "4675321051", "4675321052", "4675321053", "4675321048", "4675321049", "4675321054", "4675321065", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321046", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "MOR - Morning Star Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321047": {"acreage": 0, "child_distances": null, "children": ["4675321042"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321047", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "OTO - Otokomi Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321048": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321046", "4675321049", "4675321050"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321048", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "REF - Red Eagle Lake Foot", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321049": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321046", "4675321048", "4675321050"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321049", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "REH - Red Eagle Lake Head", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321050": {"acreage": 0, "child_distances": null, "children": ["4675321011", "4675321045", "4675321026", "4675321048", "4675321049", "4675321017"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321050", "is_accessible_as_child_only": true, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "REY - Reynolds Creek", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321051": {"acreage": 0, "child_distances": null, "children": ["4675321059", "4675321046", "4675321052", "4675321053", "4675321063", "4675321054", "4675321064", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321051", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "COB - Cobalt Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321052": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321051", "4675321059", "4675321046", "4675321053", "4675321054", "4675321065", "4675321064", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321052", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "NON - No Name Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321053": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321056", "4675321051", "4675321046", "4675321052", "4675321054", "4675321065", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321053", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "OLD - Oldman Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321054": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321051", "4675321059", "4675321046", "4675321052", "4675321053", "4675321065", "4675321064", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321054", "is_accessible_as_child_only": true, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "TMC - Two Medicine", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321055": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321051", "4675321059", "4675321046", "4675321052", "4675321053", "4675321054", "4675321064"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321055", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "UPT - Upper Two Medicine Lake (No Campfires)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321056": {"acreage": 0, "child_distances": null, "children": ["4675321057", "4675321046", "4675321053", "4675321065"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321056", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "BEA - Beaver Woman Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321057": {"acreage": 0, "child_distances": null, "children": ["4675321056", "4675321060", "4675321061", "4675321063"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321057", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "COA - Coal Creek", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321058": {"acreage": 0, "child_distances": null, "children": ["4675321014", "4675321060"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321058", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "HAR - Harrison Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321059": {"acreage": 0, "child_distances": null, "children": ["4675321051", "4675321052", "4675321061", "4675321063", "4675321054", "4675321064", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321059", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "ISA - Lake Isabel", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321060": {"acreage": 0, "child_distances": null, "children": ["4675321057", "4675321058", "4675321065"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321060", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "LNY - Lower Nyack", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321061": {"acreage": 0, "child_distances": null, "children": ["4675321057", "4675321059", "4675321062", "4675321063", "4675321064"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321061", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "OLC - Ole Creek", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321062": {"acreage": 0, "child_distances": null, "children": ["4675321061", "4675321063"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321062", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "OLL - Ole Lake", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321063": {"acreage": 0, "child_distances": null, "children": ["4675321057", "4675321051", "4675321059", "4675321061", "4675321062", "4675321064"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321063", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "PAR - Park Creek", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321064": {"acreage": 0, "child_distances": null, "children": ["4675321051", "4675321059", "4675321052", "4675321061", "4675321063", "4675321054", "4675321055"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321064", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "UPP - Upper Park Creek", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321065": {"acreage": 0, "child_distances": null, "children": ["4675321044", "4675321056", "4675321060", "4675321046", "4675321052", "4675321053", "4675321054"], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": ""}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321065", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": false, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "UPN - Upper Nyack", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321066": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321066", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "AFM - Fifty Mountain Administrative Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321067": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321067", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Boundary Bay Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321068": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321068", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Fifty Mountain Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321069": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321069", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Goat Haunt - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321070": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321070", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Goat Haunt Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321071": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321071", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Kootenai Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321072": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321072", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lake Francis Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321073": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321073", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Pass Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321074": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321074", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Porcupine Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321075": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Goat Haunt", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321075", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Valentine Creek Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321076": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321076", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Apgar Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321077": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321077", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Avalanche Picnic Area - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321078": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321078", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Camas Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321079": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321079", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Fish Creek Picnic Area - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321080": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321080", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Flathead Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321081": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321081", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Flattop Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321082": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321082", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "GPC - Granite Park Chalet", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321083": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321083", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Granite Park Trails Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321084": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321084", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Harrison Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321085": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321085", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Heavens Peak Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321086": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321086", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Howe Ridge Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321087": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321087", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lake McDonald - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321088": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321088", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lincoln Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321089": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321089", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Logan Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321090": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321090", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Mineral Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321091": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321091", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Moose Pond Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321092": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321092", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Mount Brown Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321093": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321093", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Packers Roost Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321094": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321094", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "SPC - Sperry Chalet", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321095": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321095", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Sperry Trails Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321096": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Lake McDonald", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321096", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Upper Lake McDonald Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321097": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321097", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "AEF - Elizabeth Lake Foot Administrative Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321098": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321098", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "AGC - Gable Creek Administrative Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321099": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321099", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Belly River Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321100": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321100", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Feather Plume Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321101": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321101", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Kaina Creek Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321102": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321102", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Many Glacier - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321103": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321103", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Many Glacier Auto CG - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321104": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321104", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Mokowanis Junction Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321105": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321105", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Oastler Shelter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321106": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321106", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Old Sun Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321107": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321107", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Poia Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321108": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321108", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Raspberry Flats Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321109": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321109", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Red Gap Pass Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321110": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321110", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Sherburne Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321111": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321111", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Slide Lake Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321112": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321112", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Swifcurrent Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321113": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Many Glacier", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321113", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Swiftcurrent Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321114": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321114", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "AHO - Hole in the Wall (Admin. Site)", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321115": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321115", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Boulder Pass Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321116": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321116", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Bowman Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321117": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321117", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Bowman Lake Auto CG - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321118": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321118", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Bowman Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321119": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321119", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Dutch Creek Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321120": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321120", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Ford Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321121": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321121", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Kintla Lake Auto CG - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321122": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321122", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Kishenehn Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321123": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321123", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Logging Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321124": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321124", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lower Kintla Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321125": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321125", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lower Logging Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321126": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321126", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "North Fork - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321127": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321127", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Numa Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321128": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321128", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Pocket Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321129": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321129", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Quartz Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321130": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321130", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Upper Kintla Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321131": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "North Fork", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321131", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Upper Logging Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321132": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321132", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Atlantic Creek Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321133": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321133", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Gorge Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321134": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321134", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Gunsight Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321135": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321135", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Red Eagle 2 Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321136": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321136", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Rising Sun Auto CG - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321137": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321137", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Sexton Glacier Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321138": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321138", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Silver Dollar Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321139": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321139", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Split Mountain Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321140": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321140", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "St. Mary - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321141": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "St. Mary", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321141", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "St. Mary Auto CG - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321142": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321142", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Cobalt Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321143": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321143", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Cut Bank Pass Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321144": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321144", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "East Glacier Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321145": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321145", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Forty Mile Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321146": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321146", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lubec Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321147": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321147", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Marias Pass Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321148": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321148", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "No Name Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321149": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321149", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Oldman Lake Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321150": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321150", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Railroad Creek Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321151": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321151", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Two Medicine - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321152": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321152", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Two Medicine Auto CG - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321153": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321153", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Two Medicine Campground Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321154": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Two Medicine", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321154", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Two Medicine Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321155": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321155", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Coal 6th Crossing Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321156": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321156", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Coal Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321157": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321157", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Fielding Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321158": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321158", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Harrison Lake Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321159": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321159", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Loneman Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321160": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321160", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lower Nyack Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321161": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321161", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Lower Park Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321162": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321162", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Muir Creek Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321163": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321163", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Nyack (Slugtown) Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321164": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321164", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Nyack (Sulfur Flats) Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321165": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321165", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Nyack Crossing Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321166": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321166", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Nyack Fire Guard Cabin and Barn", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321167": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321167", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Scalplock Lookout", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321168": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321168", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Surprise Pass Spike Camp", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321169": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321169", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Upper Nyack Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321170": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321170", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Upper Park Creek Cabin", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321171": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321171", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Walton - Winter", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321172": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Walton", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321172", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Walton Ranger Station", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321173": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321173", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 1", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321174": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321174", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 2", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321175": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321175", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 3", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321176": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321176", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 4", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321177": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321177", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 5", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321178": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321178", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 6", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321179": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321179", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 7", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321180": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321180", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 8", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321181": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321181", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 9", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321182": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321182", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 10", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321183": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321183", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 11", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321184": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321184", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 12", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321185": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321185", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 13", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321186": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321186", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 14", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321187": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321187", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 15", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321188": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "Undesignated Zone", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321188", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Zone 16 - Nyack/Coal Creek", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321189": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321189", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Atlantic Creek Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321190": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321190", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Cut Bank Auto Campground - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321191": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321191", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Elizabeth Lake Foot Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321192": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321192", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Fifty Mountain Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321193": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321193", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Gable Creek Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321194": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321194", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Goat Haunt Shelters - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321195": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321195", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Granite Park Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321196": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321196", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Kootenai Lake Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321197": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321197", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Many Glacier Auto Campground - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321198": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321198", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Morning Star Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321199": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321199", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Old Man Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321200": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321200", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Poia Lake Hitch Rail Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321201": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321201", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Red Eagle Foot Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321202": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321202", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Red Eagle Head Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321203": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321203", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Reynolds Creek Campground - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321204": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321204", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Reynolds Creek Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321205": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321205", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Rising Sun Auto Campground - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321206": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321206", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "St. Mary Auto Campground - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321207": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321207", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Two Medicine Auto Campground - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}, "4675321208": {"acreage": 0, "child_distances": null, "children": [], "code": "", "commercial_fees": [], "created_time": "2022-11-28T18:55:22.819276486Z", "description": "", "description_map": {"description": "

Coming soon.

", "need_to_know": "

Coming soon.

"}, "district": "CDT", "division_components": {"alternate_group_leader": false, "animal_list": false, "checkout_next_day": false, "comment_box": false, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": false, "entry_exit_points": false, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": false, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": false, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": false, "vehicle_list": false, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "entry_ids": [], "exit_ids": [], "fee_calculation_model": 4, "fee_display_model": 3, "fees": [{"amount": 1000, "description": "Reservation Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERRES4675321", "type": 1000}, {"amount": 700, "description": "Use Fee", "group_member_type": "", "is_guide_fee": false, "is_high_use_fee": false, "is_lottery": false, "overrides_sku": "", "pass_type": 0, "range_end": 0, "range_start": 0, "sales_channel_type": 0, "season_type": "", "sku": "PERUSE4675321", "type": 2}], "houseboats": [], "id": "4675321208", "is_accessible_as_child_only": false, "is_accessible_site": null, "is_active": true, "is_hidden": true, "issue_stations_ids": null, "latitude": 0, "legacy_id": "", "longitude": 0, "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2022-11-28T20:01:32.231237231Z", "motor_hp_limit": "", "name": "Waterton River Hitch Rail - CDT Site", "permit_id": "4675321", "size": "", "status": 0, "town": "", "type": "Campsite", "version": 2, "view_order": 0}}, "email": "", "entrances": [{"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65214595Z", "description": "", "division_id": "", "division_ids": ["4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE01", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65214626Z", "latitude": 0, "longitude": 0, "name": "ACE - Akokala Creek", "town": "", "type": "Trailhead", "view_order": 1}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652166529Z", "description": "", "division_id": "", "division_ids": ["4675321029", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE02", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652166619Z", "latitude": 0, "longitude": 0, "name": "AFE - Appekuny Falls", "town": "", "type": "Trailhead", "view_order": 2}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65218196Z", "description": "", "division_id": "", "division_ids": ["4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE03", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65218207Z", "latitude": 0, "longitude": 0, "name": "BCE - Baring Creek (Sunrift Gorge)", "town": "", "type": "Trailhead", "view_order": 3}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65219595Z", "description": "", "division_id": "", "division_ids": ["4675321002", "4675321004", "4675321032", "4675321034", "4675321035", "4675321037", "4675321040", "4675321041", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE04", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65219607Z", "latitude": 0, "longitude": 0, "name": "BLE - Bowman Lake Foot", "town": "", "type": "Trailhead", "view_order": 4}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652206551Z", "description": "", "division_id": "", "division_ids": ["4675321018", "4675321020", "4675321021", "4675321022", "4675321023", "4675321024", "4675321025", "4675321027", "4675321028", "4675321030", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE05", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652206641Z", "latitude": 0, "longitude": 0, "name": "BRE - Belly River Trail", "town": "", "type": "Trailhead", "view_order": 5}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652221341Z", "description": "", "division_id": "", "division_ids": ["4675321044", "4675321046", "4675321048", "4675321049", "4675321052", "4675321053", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE06", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652221431Z", "latitude": 0, "longitude": 0, "name": "CBE - Cut Bank Creek", "town": "", "type": "Trailhead", "view_order": 6}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652232821Z", "description": "", "division_id": "", "division_ids": ["4675321009", "4675321010", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE07", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652232921Z", "latitude": 0, "longitude": 0, "name": "CCE - Camas Creek", "town": "", "type": "Trailhead", "view_order": 7}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652243041Z", "description": "", "division_id": "", "division_ids": ["4675321056", "4675321057", "4675321060", "4675321063", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE08", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652243131Z", "latitude": 0, "longitude": 0, "name": "COE - Coal Creek", "town": "", "type": "Trailhead", "view_order": 8}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652258591Z", "description": "", "division_id": "", "division_ids": ["4675321051", "4675321052", "4675321054", "4675321055", "4675321062", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE09", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652258681Z", "latitude": 0, "longitude": 0, "name": "EGE - East Glacier", "town": "", "type": "Trailhead", "view_order": 9}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652275471Z", "description": "", "division_id": "", "division_ids": ["4675321015", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE10", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652275561Z", "latitude": 0, "longitude": 0, "name": "FCE - Fish Creek", "town": "", "type": "Trailhead", "view_order": 10}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652286491Z", "description": "", "division_id": "", "division_ids": ["4675321061", "4675321062", "4675321063", "4675321064", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE11", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652286591Z", "latitude": 0, "longitude": 0, "name": "FSE - Fielding Ranger Station", "town": "", "type": "Trailhead", "view_order": 11}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652301331Z", "description": "", "division_id": "", "division_ids": ["4675321001", "4675321002", "4675321003", "4675321004", "4675321005", "4675321006", "4675321007", "4675321008", "4675321024", "4675321027", "4675321028", "4675321033", "4675321035", "4675321037", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE12", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652301421Z", "latitude": 0, "longitude": 0, "name": "GSE - Goat Haunt Ranger Station", "town": "", "type": "Trailhead", "view_order": 12}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652312301Z", "description": "", "division_id": "", "division_ids": ["4675321014", "4675321058", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE13", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652312401Z", "latitude": 0, "longitude": 0, "name": "HBE - Headquarters Boundary Trail", "town": "", "type": "Trailhead", "view_order": 13}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652324872Z", "description": "", "division_id": "", "division_ids": ["4675321057", "4675321058", "4675321060", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE14", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652324972Z", "latitude": 0, "longitude": 0, "name": "HCE - Harrison Creek", "town": "", "type": "Trailhead", "view_order": 14}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652336492Z", "description": "", "division_id": "", "division_ids": ["4675321018", "4675321020", "4675321021", "4675321022", "4675321023", "4675321024", "4675321025", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE15", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652336592Z", "latitude": 0, "longitude": 0, "name": "IPE - Iceberg/Ptarmigan Trail", "town": "", "type": "Trailhead", "view_order": 15}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652346752Z", "description": "", "division_id": "", "division_ids": ["4675321011", "4675321017", "4675321045", "4675321048", "4675321050", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE16", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652346852Z", "latitude": 0, "longitude": 0, "name": "JOE - Jackson Glacier Overlook", "town": "", "type": "Trailhead", "view_order": 16}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652359032Z", "description": "", "division_id": "", "division_ids": ["4675321015", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE17", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652359142Z", "latitude": 0, "longitude": 0, "name": "KCE - Kelly Camp", "town": "", "type": "Trailhead", "view_order": 17}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652383143Z", "description": "", "division_id": "", "division_ids": ["4675321038", "4675321043", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE18", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652383233Z", "latitude": 0, "longitude": 0, "name": "KLE - Kintla Lake", "town": "", "type": "Trailhead", "view_order": 18}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652747788Z", "description": "", "division_id": "", "division_ids": ["4675321014", "4675321058", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE19", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652748068Z", "latitude": 0, "longitude": 0, "name": "LCE - Lincoln Creek", "town": "", "type": "Trailhead", "view_order": 19}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652763648Z", "description": "", "division_id": "", "division_ids": ["4675321011", "4675321014", "4675321016", "4675321017", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE20", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652763758Z", "latitude": 0, "longitude": 0, "name": "LLE - Lincoln Lake", "town": "", "type": "Trailhead", "view_order": 20}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652778338Z", "description": "", "division_id": "", "division_ids": ["4675321013", "4675321026", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE21", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652778438Z", "latitude": 0, "longitude": 0, "name": "LPE - Logan Pass", "town": "", "type": "Trailhead", "view_order": 21}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652793088Z", "description": "", "division_id": "", "division_ids": ["4675321018", "4675321020", "4675321021", "4675321022", "4675321023", "4675321024", "4675321030", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE22", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652793188Z", "latitude": 0, "longitude": 0, "name": "LRE - Lee Ridge Trail", "town": "", "type": "Trailhead", "view_order": 22}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652804058Z", "description": "", "division_id": "", "division_ids": ["4675321031", "4675321036", "4675321039", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE23", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652804158Z", "latitude": 0, "longitude": 0, "name": "LSE - Logging Ranger Station", "town": "", "type": "Trailhead", "view_order": 23}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652814548Z", "description": "", "division_id": "", "division_ids": ["4675321001", "4675321012", "4675321013", "4675321026", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE24", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652814688Z", "latitude": 0, "longitude": 0, "name": "LTE - Loop Trail", "town": "", "type": "Trailhead", "view_order": 24}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652828688Z", "description": "", "division_id": "", "division_ids": ["4675321062", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE25", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652828788Z", "latitude": 0, "longitude": 0, "name": "LUE - Lubec Ranger Station", "town": "", "type": "Trailhead", "view_order": 25}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652840448Z", "description": "", "division_id": "", "division_ids": ["4675321019", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE26", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652840558Z", "latitude": 0, "longitude": 0, "name": "MGE - Many Glacier Hotel", "town": "", "type": "Trailhead", "view_order": 26}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652851079Z", "description": "", "division_id": "", "division_ids": ["4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE27", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652851169Z", "latitude": 0, "longitude": 0, "name": "MPE - Marias Pass", "town": "", "type": "Trailhead", "view_order": 27}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652864459Z", "description": "", "division_id": "", "division_ids": ["4675321057", "4675321058", "4675321060", "4675321065", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE28", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652864569Z", "latitude": 0, "longitude": 0, "name": "NCE - Nyack Creek", "town": "", "type": "Trailhead", "view_order": 28}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652877509Z", "description": "", "division_id": "", "division_ids": ["4675321001", "4675321012", "4675321013", "4675321026", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE29", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652877609Z", "latitude": 0, "longitude": 0, "name": "PRE - Packer's Roost", "town": "", "type": "Trailhead", "view_order": 29}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652889279Z", "description": "", "division_id": "", "division_ids": ["4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE30", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652889379Z", "latitude": 0, "longitude": 0, "name": "PSE - Pray Shelter", "town": "", "type": "Trailhead", "view_order": 30}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652901779Z", "description": "", "division_id": "", "division_ids": ["4675321040", "4675321041", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE31", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652901879Z", "latitude": 0, "longitude": 0, "name": "QCE - Quartz Creek", "town": "", "type": "Trailhead", "view_order": 31}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652911849Z", "description": "", "division_id": "", "division_ids": ["4675321048", "4675321049", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE32", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652911949Z", "latitude": 0, "longitude": 0, "name": "REE - Red Eagle Trail", "town": "", "type": "Trailhead", "view_order": 32}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.652926499Z", "description": "", "division_id": "", "division_ids": ["4675321042", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE33", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.652926589Z", "latitude": 0, "longitude": 0, "name": "RPE - Round Prairie", "town": "", "type": "Trailhead", "view_order": 33}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65293846Z", "description": "", "division_id": "", "division_ids": ["4675321047", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE34", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65293856Z", "latitude": 0, "longitude": 0, "name": "RSE - Rising Sun", "town": "", "type": "Trailhead", "view_order": 34}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65295862Z", "description": "", "division_id": "", "division_ids": ["4675321026", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE35", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65295875Z", "latitude": 0, "longitude": 0, "name": "SBE - Siyeh Bend", "town": "", "type": "Trailhead", "view_order": 35}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65296892Z", "description": "", "division_id": "", "division_ids": ["4675321013", "4675321026", "4675321050", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE36", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65296903Z", "latitude": 0, "longitude": 0, "name": "SCE - Swiftcurrent Trail", "town": "", "type": "Trailhead", "view_order": 36}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65298156Z", "description": "", "division_id": "", "division_ids": ["4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE37", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65298167Z", "latitude": 0, "longitude": 0, "name": "SHE - Sherburne Entrance Station", "town": "", "type": "Trailhead", "view_order": 37}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.6529934Z", "description": "", "division_id": "", "division_ids": ["4675321018", "4675321020", "4675321022", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE38", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65299356Z", "latitude": 0, "longitude": 0, "name": "SLE - Slide Lake Trail", "town": "", "type": "Trailhead", "view_order": 38}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.65300526Z", "description": "", "division_id": "", "division_ids": ["4675321011", "4675321014", "4675321016", "4675321017", "4675321045", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE39", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.65300537Z", "latitude": 0, "longitude": 0, "name": "STE - Sperry Trail", "town": "", "type": "Trailhead", "view_order": 39}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653041821Z", "description": "", "division_id": "", "division_ids": ["4675321009", "4675321010", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE40", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653042001Z", "latitude": 0, "longitude": 0, "name": "TLE - Trout Lake Trail", "town": "", "type": "Trailhead", "view_order": 40}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653064181Z", "description": "", "division_id": "", "division_ids": ["4675321054", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE41", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653064331Z", "latitude": 0, "longitude": 0, "name": "TME - Two Medicine Entrance", "town": "", "type": "Trailhead", "view_order": 41}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653080131Z", "description": "", "division_id": "", "division_ids": ["4675321044", "4675321046", "4675321051", "4675321052", "4675321053", "4675321054", "4675321055", "4675321064", "4675321065", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE42", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653080221Z", "latitude": 0, "longitude": 0, "name": "TNE - Two Medicine North Shore Trail", "town": "", "type": "Trailhead", "view_order": 42}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653091111Z", "description": "", "division_id": "", "division_ids": ["4675321044", "4675321046", "4675321051", "4675321052", "4675321053", "4675321054", "4675321055", "4675321059", "4675321064", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE43", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653091201Z", "latitude": 0, "longitude": 0, "name": "TSE - Two Medicine South Shore Trail", "town": "", "type": "Trailhead", "view_order": 43}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653100921Z", "description": "", "division_id": "", "division_ids": ["4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE44", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653101011Z", "latitude": 0, "longitude": 0, "name": "UDE - Undesignated Camping Entry", "town": "", "type": "Trailhead", "view_order": 44}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653253383Z", "description": "", "division_id": "", "division_ids": ["4675321057", "4675321061", "4675321063", "4675321064", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE45", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653253653Z", "latitude": 0, "longitude": 0, "name": "WSE - Walton Ranger Station", "town": "", "type": "Trailhead", "view_order": 45}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653273694Z", "description": "", "division_id": "", "division_ids": ["4675321002", "4675321003", "4675321004", "4675321005", "4675321006", "4675321007", "4675321008", "4675321035", "4675321066", "4675321067", "4675321068", "4675321069", "4675321070", "4675321071", "4675321072", "4675321073", "4675321074", "4675321075", "4675321076", "4675321077", "4675321078", "4675321079", "4675321080", "4675321081", "4675321082", "4675321083", "4675321084", "4675321085", "4675321086", "4675321087", "4675321088", "4675321089", "4675321090", "4675321091", "4675321092", "4675321093", "4675321094", "4675321095", "4675321096", "4675321097", "4675321098", "4675321099", "4675321100", "4675321101", "4675321102", "4675321103", "4675321104", "4675321105", "4675321106", "4675321107", "4675321108", "4675321109", "4675321110", "4675321111", "4675321112", "4675321113", "4675321114", "4675321115", "4675321116", "4675321117", "4675321118", "4675321119", "4675321120", "4675321121", "4675321122", "4675321123", "4675321124", "4675321125", "4675321126", "4675321127", "4675321128", "4675321129", "4675321130", "4675321131", "4675321132", "4675321133", "4675321134", "4675321135", "4675321136", "4675321137", "4675321138", "4675321139", "4675321140", "4675321141", "4675321142", "4675321143", "4675321144", "4675321145", "4675321146", "4675321147", "4675321148", "4675321149", "4675321150", "4675321151", "4675321152", "4675321153", "4675321154", "4675321155", "4675321156", "4675321157", "4675321158", "4675321159", "4675321160", "4675321161", "4675321162", "4675321163", "4675321164", "4675321165", "4675321166", "4675321167", "4675321168", "4675321169", "4675321170", "4675321171", "4675321172", "4675321173", "4675321174", "4675321175", "4675321176", "4675321177", "4675321178", "4675321179", "4675321180", "4675321181", "4675321182", "4675321183", "4675321184", "4675321185", "4675321186", "4675321187", "4675321188", "4675321189", "4675321190", "4675321191", "4675321192", "4675321193", "4675321194", "4675321195", "4675321196", "4675321197", "4675321198", "4675321199", "4675321200", "4675321201", "4675321202", "4675321203", "4675321204", "4675321205", "4675321206", "4675321207", "4675321208"], "has_parking": false, "id": "4675321EE46", "is_entry": true, "is_exit": true, "is_issue_station": false, "last_updated": "2022-11-28T18:55:22.653273794Z", "latitude": 0, "longitude": 0, "name": "WTE - Waterton Townsite (Canada)", "town": "", "type": "Trailhead", "view_order": 46}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653276173Z", "description": "", "division_id": "", "division_ids": [], "has_parking": false, "id": "4675321IS01", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653276273Z", "latitude": 0, "longitude": 0, "name": "One of the following permit offices: Apgar, Two Medicine, St. Mary, Many Glacier, Polebridge, or Waterton (Canada)", "town": "", "type": "Issue Station", "view_order": 47}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653277843Z", "description": "", "division_id": "", "division_ids": ["Internal"], "has_parking": false, "id": "4675321IS02", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653277973Z", "latitude": 0, "longitude": 0, "name": "Apgar Wilderness Permit Center", "town": "", "type": "Issue Station", "view_order": 48}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653279384Z", "description": "", "division_id": "", "division_ids": ["Internal"], "has_parking": false, "id": "4675321IS03", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653279474Z", "latitude": 0, "longitude": 0, "name": "Two Medicine Ranger Station", "town": "", "type": "Issue Station", "view_order": 49}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653288874Z", "description": "", "division_id": "", "division_ids": ["Internal"], "has_parking": false, "id": "4675321IS04", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653288984Z", "latitude": 0, "longitude": 0, "name": "St. Mary Visitor Center", "town": "", "type": "Issue Station", "view_order": 50}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653292814Z", "description": "", "division_id": "", "division_ids": ["Internal"], "has_parking": false, "id": "4675321IS05", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653292974Z", "latitude": 0, "longitude": 0, "name": "Many Glacier Ranger Station", "town": "", "type": "Issue Station", "view_order": 51}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653294334Z", "description": "", "division_id": "", "division_ids": ["Internal"], "has_parking": false, "id": "4675321IS06", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653294444Z", "latitude": 0, "longitude": 0, "name": "Polebridge Ranger Station", "town": "", "type": "Issue Station", "view_order": 52}, {"accessible": "", "attributes": null, "date_created": "2022-11-28T18:55:22.653297724Z", "description": "", "division_id": "", "division_ids": ["Internal"], "has_parking": false, "id": "4675321IS07", "is_entry": false, "is_exit": false, "is_issue_station": true, "last_updated": "2022-11-28T18:55:22.653297834Z", "latitude": 0, "longitude": 0, "name": "Waterton Lake Visitor Centre", "town": "", "type": "Issue Station", "view_order": 53}], "equipments": [], "feature_flags": null, "flex_fields": null, "fulfillment_types": [], "group_member_types": null, "has_geofencing": false, "has_lottery": false, "id": "4675321", "important_dates": [{"description": "Advance Wilderness Permit Reservations for party sizes of 5 to 8 and 9 to 12 people open for trips between June 15th through September 30th via lottery on Pay.gov. For complete details, check out the Glacier NP Wilderness Camping/Advance Reservations page", "display_order": 1, "end_date": "", "start_date": "March 1, 2023"}, {"description": "Full online advance reservations for groups of 1-4 people will open on Recreation.gov. Groups larger than 4 must reserve separate permits and have separate group leaders for overnight stays June 15th through September 30th. For complete details, check out the Glacier NP Wilderness Camping/Advance Reservations page.", "display_order": 2, "end_date": "", "start_date": "March 15, 2023"}, {"description": "Wilderness Permits only available in person on a first-come, first-served basis.", "display_order": 3, "end_date": "June 14, 2023", "start_date": "May 1, 2023"}, {"description": "Peak Season: Advance Reservation and Walk-in Availability", "display_order": 4, "end_date": "September 30, 2023", "start_date": "June 15, 2023"}, {"description": "Advance Reservations Close ", "display_order": 5, "end_date": "", "start_date": "September 28, 2023"}, {"description": "Wilderness Permits only available in person on a first-come, first-served basis.", "display_order": 6, "end_date": "October 31, 2023", "start_date": "October 1, 2023"}, {"description": "Winter Camping Permits/Regulations", "display_order": 7, "end_date": "April 30, 2024", "start_date": "November 1, 2023"}], "internal_components": {"alternate_group_leader": true, "animal_list": true, "checkout_next_day": false, "comment_box": true, "commercial_guide_question": false, "commercially_guided": false, "daily_lottery": false, "emergency_contact": true, "entry_exit_points": true, "entry_points": false, "fee_by_date_range": false, "flex_fields": false, "group_with_age": false, "group_with_birthdates": false, "group_with_fees_and_dates": false, "group_with_fees_only": true, "group_with_type_selector": false, "houseboat_list": false, "internal_comment_box": false, "issue_station": true, "launch_time": false, "member_counter": false, "member_counter_ruby": false, "parking_lot": false, "permit_holder_age": false, "permit_holder_birthdate": false, "permit_section_filter": false, "pet_list": false, "prior_experience": false, "reload_stay_limit": false, "reservation_type_question": false, "simple_group_list": false, "snowmobile": false, "travel_method_list": true, "vehicle_list": true, "watercraft_details": false, "watercraft_list": false, "watercraft_pere_marquette": false}, "is_group": false, "is_inactive": false, "latitude": 48.68414678, "launch_window_close": "", "launch_window_open": "", "launch_window_step": 0, "legacy_id": "", "links": [{"description": "Wilderness Camping Advance Reservations", "id": "0", "title": "Wilderness Camping Advance Reservations", "type": "Other", "url": "https://www.nps.gov/glac/planyourvisit/backcountry-reservations.htm"}, {"description": "Wilderness Campground Map", "id": "1", "title": "Wilderness Campground Map", "type": "Other", "url": "https://www.nps.gov/glac/planyourvisit/upload/Wilderness-Campground-Map-2023.pdf"}, {"description": "Trail Status Reports", "id": "2", "title": "Trail Status Reports", "type": "Other", "url": "https://www.nps.gov/glac/planyourvisit/trailstatusreports.htm"}, {"description": "Summer Wilderness Camping Video", "id": "3", "title": "Summer Wilderness Camping Video", "type": "Other", "url": "https://www.nps.gov/media/video/view.htm?id=73A16C66-1DD8-B71B-0BDA3687A1AEC297"}, {"description": "Wilderness Camping Webpage", "id": "4", "title": "Wilderness Camping Webpage", "type": "Other", "url": "https://www.nps.gov/glac/planyourvisit/backcountry.htm"}], "longitude": -113.8009306, "lotteries": null, "mandatory_video": {"is_enabled": true, "title": "Summer Wilderness Camping Video", "url": "https://www.nps.gov/media/video/view.htm?id=73A16C66-1DD8-B71B-0BDA3687A1AEC297"}, "map_url": "", "media": [], "modified_by": "1defc1b9-8076-44b4-9ad5-54b5e610955e", "modified_time": "2023-03-20T13:18:21.427452929Z", "name": "Glacier National Park Wilderness Permits", "org_code": "NPS", "org_facility_id": "", "org_name": "", "orgs": "128", "permit_sections": null, "permit_types_list": [], "pets": null, "phone": "406-888-7800", "rating": {"num_ratings": 0, "rating": 0}, "recarea": "2725", "recarea_name": "", "recareas": null, "rules": [{"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321001", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321001", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321001", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321002", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321002", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321002", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321003", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321003", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321003", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321004", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321004", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321004", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321005", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321005", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321005", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321006", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321006", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321006", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321007", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321007", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321007", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321008", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321008", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321008", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321009", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321009", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321009", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321010", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321010", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321010", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321011", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321011", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321011", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321012", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321012", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321012", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321013", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321013", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321013", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321013", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayMinimum", "operation": "GTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "ReservationDuration", "type": 13, "value": 172800, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321014", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321014", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321014", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321015", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321015", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321015", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321016", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321016", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321016", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321017", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321017", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321017", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321018", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321018", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321018", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321019", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321019", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321019", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321020", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321020", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321020", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321021", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321021", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321021", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321022", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321022", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321022", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321023", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321023", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321023", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321024", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321024", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321024", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321025", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321025", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321025", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321026", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321026", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321026", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321026", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayMinimum", "operation": "GTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "ReservationDuration", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321027", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321027", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321027", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321028", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321028", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321028", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321029", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321029", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321029", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321030", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321030", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321030", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321031", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321031", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321031", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321032", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321032", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321032", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321033", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321033", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321033", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321034", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321034", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321034", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321035", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321035", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321035", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321036", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321036", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321036", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321037", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321037", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321037", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321038", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321038", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321038", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321039", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321039", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321039", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321040", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321040", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321040", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321041", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321041", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321041", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321042", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321042", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321042", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321043", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321043", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321043", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321044", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321044", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321044", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321045", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321045", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321045", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321046", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321046", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321046", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321047", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321047", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321047", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321048", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321048", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321048", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321049", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321049", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321049", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321050", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321050", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321050", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321050", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayMinimum", "operation": "GTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "ReservationDuration", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321051", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321051", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321051", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321052", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321052", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321052", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321053", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321053", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321053", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321054", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321054", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321054", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321054", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayMinimum", "operation": "GTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "ReservationDuration", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321055", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321055", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321055", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 86400, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321056", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321056", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321056", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321057", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321057", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321057", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321058", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321058", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321058", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321059", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321059", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321059", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321060", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321060", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321060", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321061", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321061", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321061", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321062", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321062", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321062", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321063", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321063", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321063", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321064", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321064", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321064", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321065", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321065", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321065", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 259200, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321066", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321066", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321067", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321068", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321069", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321069", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321070", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321071", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321072", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321073", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321074", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321075", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321076", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321077", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321077", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321078", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321079", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321079", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321080", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321081", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321082", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321082", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321082", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 864000, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321083", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321084", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321085", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321086", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321087", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321087", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321088", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321089", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321090", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321091", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321092", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321093", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321094", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321094", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321094", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "StayLimit", "operation": "StayLimitPerDivision", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "HighUseDivisionDurations", "type": 13, "value": 864000, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321095", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321096", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321097", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321097", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321098", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321098", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321099", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321100", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321101", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321102", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321102", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321103", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321103", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321104", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321105", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321106", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321107", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321108", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321109", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321110", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321111", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321112", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321113", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321114", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321114", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321115", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321116", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321117", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321117", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321118", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321119", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321120", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321121", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321121", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321122", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321123", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321124", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321125", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321126", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321126", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321127", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321128", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321129", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321130", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321131", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321132", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321133", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321134", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321135", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321136", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321136", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321137", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321138", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321139", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321140", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321140", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321141", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321141", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321142", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321143", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321144", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321145", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321146", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321147", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321148", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321149", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321150", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321151", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321151", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321152", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321152", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321153", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321154", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321155", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321156", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321157", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321158", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321159", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321160", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321161", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321162", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321163", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321164", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321165", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321166", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321167", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321168", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321169", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321170", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321171", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 12, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321171", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321172", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321173", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321173", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321174", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321174", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321175", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321175", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321176", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321176", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321177", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321177", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321178", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321178", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321179", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321179", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321180", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321180", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321181", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321181", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321182", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321182", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321183", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321183", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321184", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321184", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321185", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321185", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321186", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321186", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321187", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321187", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321188", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321188", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321189", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321190", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 6, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321190", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321191", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321192", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321193", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321194", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321195", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321196", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321197", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321198", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321199", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321200", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321201", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321202", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321203", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321204", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321205", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321206", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321207", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "4675321208", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxStock", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfStock", "type": 3, "value": 10, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "CancellationDeadline", "operation": "None", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "None", "type": 6, "value": 7, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "CancellationRefundsType", "operation": "None", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "None", "type": 6, "value": 2, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "ConstantQuotaUsageDaily", "operation": "FixedValueNightsItinerary", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "None", "type": 9, "value": 1, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "ConvertOnlineQuota", "operation": "ConvertAdvancedToWalkup", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "None", "type": 11, "value": 1, "version": 1}, {"account_type": 1, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxAccountReservationDaysPerHighUseSeason", "operation": "MaxAccountReservationDaysPerHighUseSeason", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "AggregateData", "type": 13, "value": 14, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxGroupSize", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 4, "version": 1}, {"account_type": 1, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxOverlappingReservations", "operation": "MaxOverlappingReservations", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "AggregateData", "type": 0, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MaxVehiclesPerReservation", "operation": "LTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "NumberOfVehicles", "type": 3, "value": 3, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "MinGroupSize", "operation": "GTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "GroupSize", "type": 13, "value": 1, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "ModificationDeadline", "operation": "GTE", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "DaysUntilReservation", "type": 12, "value": 0, "version": 1}, {"account_type": 0, "created_time": "2022-11-28T18:55:23.060942977Z", "division_id": "ALL_DIVISIONS", "end_date": "0001-01-01T00:00:00Z", "id": "", "inactive": false, "item_id": "", "management_year_id": "", "metadata": "", "modified_by": "RIDB_IMPORT", "modified_time": "0001-01-01T00:00:00Z", "name": "PermitReleaseType", "operation": "ReleaseNow", "permit_id": "4675321", "start_date": "0001-01-01T00:00:00Z", "target": "None", "type": 6, "value": 0, "version": 1}], "rules_map": null, "sibling_permit_ids": null, "tags": null, "time_zone": "America/Denver", "travel_methods": [{"name": "Boat", "type": 7}, {"name": "Foot", "type": 2}, {"name": "With Stock", "type": 6}], "validations": [{"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Alternate permit holder #%v's email is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsAlternatePermitHolderEmailEmpty", "permit_id": "4675321", "target": "alternatePermitHolderEmailEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Alternate permit holder #%v's first name is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsAlternatePermitHolderFirstNameEmpty", "permit_id": "4675321", "target": "alternatePermitHolderFirstNameEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Alternate permit holder #%v's last name is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsAlternatePermitHolderLastNameEmpty", "permit_id": "4675321", "target": "alternatePermitHolderLastNameEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "PermitRegistration", "inactive": false, "message": "Division is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsDivisionIdEmpty", "permit_id": "4675321", "target": "divisionId", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Emergency contact's first name is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsEmergencyContactFirstNameEmpty", "permit_id": "4675321", "target": "emergencyContactFirstName", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Emergency contact's last name is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsEmergencyContactLastNameEmpty", "permit_id": "4675321", "target": "emergencyContactLastName", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Emergency contact's phone number is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsEmergencyContactPhoneNumberEmpty", "permit_id": "4675321", "target": "emergencyContactPhone", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Entry location is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsEntryLocationEmpty", "permit_id": "4675321", "target": "entryPoint", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Exit location is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsExitLocationEmpty", "permit_id": "4675321", "target": "exitPoint", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Group members are required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsGroupMemberEmpty", "permit_id": "4675321", "target": "groupMembersSize", "type": 3, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "An issue station is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsIssueStationEmpty", "permit_id": "4675321", "target": "issueStation", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Need to Know must be acknowledged", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsNeedToKnowChecked", "permit_id": "4675321", "target": "needToKnowChecked", "type": 0, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder city is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderCity", "permit_id": "4675321", "target": "permitHolderCity", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder email is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderEmailEmpty", "permit_id": "4675321", "target": "permitHolderEmailEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder first name is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderFirstNameEmpty", "permit_id": "4675321", "target": "permitHolderFirstNameEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder last name is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderLastNameEmpty", "permit_id": "4675321", "target": "permitHolderLastNameEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder phone is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderPhoneEmpty", "permit_id": "4675321", "target": "permitHolderPhoneEmpty", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder zip code is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderPostalCode", "permit_id": "4675321", "target": "permitHolderPostalCode", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder state is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderStateCode", "permit_id": "4675321", "target": "permitHolderStateCode", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Permit holder street address is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsPermitHolderStreetAddress", "permit_id": "4675321", "target": "permitHolderStreetAddress", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Travel method is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsTravelMethodEmpty", "permit_id": "4675321", "target": "travelMethod", "type": 3, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Vehicle #%v's description is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsVehicleDescriptionEmpty", "permit_id": "4675321", "target": "vehicleDescription", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "Vehicle #%v's license plate number is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsVehicleLicensePlateEmpty", "permit_id": "4675321", "target": "licensePlate", "type": 1, "value": "", "version": 1}, {"action": "isFieldEmpty", "group": "Registration", "inactive": false, "message": "A vehicle is required", "modified_by": "RIDB_IMPORT", "modified_time": "2022-11-28T18:55:23.362358368Z", "name": "IsVehiclesEmpty", "permit_id": "4675321", "target": "vehicle", "type": 3, "value": "", "version": 1}], "version": 33}} \ No newline at end of file diff --git a/data/intermediate/.gitkeep b/data/intermediate/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/data/subscriptions.json b/data/subscriptions.json new file mode 100644 index 00000000..8becac39 --- /dev/null +++ b/data/subscriptions.json @@ -0,0 +1 @@ +{"smcalilly@gmail.com": {"sites": {"4675321082": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321094": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321048": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321050": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321011": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321017": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321001": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 4}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321002": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321003": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 2, "total": 6}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321004": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321005": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321006": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321007": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321008": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 4}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321012": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321013": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321027": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 0}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321024": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321028": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 0}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321023": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321018": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321022": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321020": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 4}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321021": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321025": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321029": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321030": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 2, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321037": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 0}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321033": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 0}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321043": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 3}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321038": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 5}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}, "4675321034": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 5}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-04": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}, "2023-07-07": {"remaining": 0, "total": 0}, "2023-07-08": {"remaining": 0, "total": 0}, "2023-07-09": {"remaining": 0, "total": 0}, "2023-07-10": {"remaining": 0, "total": 0}, "2023-07-11": {"remaining": 0, "total": 0}, "2023-07-12": {"remaining": 0, "total": 0}, "2023-07-13": {"remaining": 0, "total": 0}, "2023-07-14": {"remaining": 0, "total": 0}, "2023-07-15": {"remaining": 0, "total": 0}, "2023-07-16": {"remaining": 0, "total": 0}, "2023-07-17": {"remaining": 0, "total": 0}, "2023-07-18": {"remaining": 0, "total": 0}, "2023-07-19": {"remaining": 0, "total": 0}, "2023-07-21": {"remaining": 0, "total": 0}, "2023-07-22": {"remaining": 0, "total": 0}, "2023-07-23": {"remaining": 0, "total": 0}, "2023-07-24": {"remaining": 0, "total": 0}, "2023-07-25": {"remaining": 0, "total": 0}, "2023-07-26": {"remaining": 0, "total": 0}, "2023-07-27": {"remaining": 0, "total": 0}, "2023-07-28": {"remaining": 0, "total": 0}, "2023-07-29": {"remaining": 0, "total": 0}, "2023-07-30": {"remaining": 0, "total": 0}}}}}, "zoekmcdonald@gmail.com": {"sites": {"4675321015": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}}}, "4675321056": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 0, "total": 0}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}}}, "4675321082": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 1}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}}}, "4675321041": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": 1, "total": 2}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}}}, "4675321026": {"dates": {"2023-07-01": {"remaining": 0, "total": 0}, "2023-07-02": {"remaining": -2, "total": 0}, "2023-07-03": {"remaining": 0, "total": 0}, "2023-07-05": {"remaining": 0, "total": 0}, "2023-07-06": {"remaining": 0, "total": 0}}}}}} diff --git a/frontcountry/check.py b/frontcountry/check.py new file mode 100644 index 00000000..b3982519 --- /dev/null +++ b/frontcountry/check.py @@ -0,0 +1,65 @@ +import requests +import json + + +available = [] +front_country_sites = [ + {'Two Medicine Campground': '258799'}, + {'ST. MARY CAMPGROUND': '232492'}, + {'APGAR GROUP SITES': '234669'}, + {'MANY GLACIER CAMPGROUND': '251869'}, + {'Sprague Creek Campground': '258795'}, + {'Apgar Campground': '10171274'}, + {'Avalanche Campground': '258796'}, + {'FISH CREEK CAMPGROUND': '232493'}, +] +trips = [{'start_date': '', 'end_date': '', 'sites': [front_country_sites]}] + +# start_date=2023-07-21T00%3A00%3A00Z&end_date=2023-07-25T00%3A00%3A00Z +# fq=campsite_type_of_use%3ADay&fq=entity_type%3Acampground&fq=parent_asset_id%3A2725 + +# params = +# q=Glacier%20National%20Park +# entity_id=2725 + +# glacier_front_country = { +# 'parent_asset_id': 2725, +# # 'campsite_type_of_use': 'Day', +# # 'entity_type': 'campground', +# # 'campsite_type_of_use': 'Overnight', +# # '-entity_type': 'A(tour OR timedentry_tour)', +# 'size': 300, +# 'entity_type': 'recarea', +# 'entity_id': 4675321030, +# 'q': 'Glacier National Park', +# } +# 4675321 +for trip in trips: + + url = 'https://www.recreation.gov/api/search/geo?q=Glacier%20National%20Park&entity_id=2725&entity_type=recarea&size=300&fq=-entity_type%3A(tour%20OR%20timedentry_tour)&fq=campsite_type_of_use%3AOvernight&fq=campsite_type_of_use%3Ana&fq=entity_type%3Acampground&fq=campsite_type_of_use%3ADay&fq=entity_type%3Acampground&fq=parent_asset_id%3A2725&start_date=2023-07-21T00%3A00%3A00Z&end_date=2023-07-25T00%3A00%3A00Z' + response = requests.get( + url, + headers={ + 'Referer': 'https://www.recreation.gov/camping/gateways/2725', + 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/111.0', + }, + ) + + for campsite in response.json()['results']: + name = campsite['name'] + if ( + campsite['availability'] != 'unavailable' + ): # dunno what available looks like bc none are, prob "available" but not gonna chance it + available.append( + { + name: { + 'status': campsite['availability'], + 'url': f'https://www.recreation.gov/camping/campgrounds/{campsite["entity_id"]}', + } + } + ) + + if available: + raise Exception( + f'These campsites are available: {json.dumps(available)}' + ) # this will crash the action and i'll get an email diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..b4a5de79 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +git+https://github.com/mailchimp/mailchimp-transactional-python.git +dotenv diff --git a/util/models.py b/util/models.py new file mode 100644 index 00000000..064b8df8 --- /dev/null +++ b/util/models.py @@ -0,0 +1,19 @@ +from dataclasses import dataclass, field + + +@dataclass +class Campsite: + name: str + district: str + division_id: str + dates: dict = field(default_factory=dict) + + def to_dict(self): + return self.__dict__ + + +@dataclass +class Subscription: + email: str + dates: list + campsite: Campsite