diff --git a/.gitignore b/.gitignore index a78ae461..4dafb764 100644 --- a/.gitignore +++ b/.gitignore @@ -30,5 +30,7 @@ resources/user/* *.exe +get-pip.py + venv test diff --git a/BaseClasses.py b/BaseClasses.py index 518225b3..c0248d11 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -7,8 +7,7 @@ from enum import Enum, unique try: from fast_enum import FastEnum except ImportError: - from enum import Flag - FastEnum = Flag + from enum import IntFlag as FastEnum from source.classes.BabelFish import BabelFish @@ -80,6 +79,9 @@ class World(object): self.key_logic = {} self.pool_adjustment = {} self.key_layout = defaultdict(dict) + self.dungeon_portals = defaultdict(list) + self._portal_cache = {} + self.sanc_portal = {} self.fish = BabelFish() for player in range(1, players + 1): @@ -120,9 +122,18 @@ class World(object): set_player_attr('escape_assist', []) set_player_attr('crystals_needed_for_ganon', 7) set_player_attr('crystals_needed_for_gt', 7) + set_player_attr('crystals_ganon_orig', {}) + set_player_attr('crystals_gt_orig', {}) set_player_attr('open_pyramid', False) set_player_attr('treasure_hunt_icon', 'Triforce Piece') set_player_attr('treasure_hunt_count', 0) + set_player_attr('potshuffle', False) + set_player_attr('pot_contents', None) + + set_player_attr('keydropshuffle', False) + set_player_attr('mixed_travel', 'prevent') + set_player_attr('standardize_palettes', 'standardize') + set_player_attr('force_fix', {'gt': False, 'sw': False, 'pod': False, 'tr': False}); def get_name_string_for_object(self, obj): return obj.name if self.players == 1 else f'{obj.name} ({self.get_player_names(obj.player)})' @@ -141,6 +152,11 @@ class World(object): for door in doors: self._door_cache[(door.name, door.player)] = door + def remove_door(self, door, player): + if (door, player) in self._door_cache.keys(): + del self._door_cache[(door, player)] + self.doors.remove(door) + def get_regions(self, player=None): return self.regions if player is None else self._region_cache[player].values() @@ -169,6 +185,10 @@ class World(object): return exit raise RuntimeError('No such entrance %s for player %d' % (entrance, player)) + def remove_entrance(self, entrance, player): + if (entrance, player) in self._entrance_cache.keys(): + del self._entrance_cache[(entrance, player)] + def get_location(self, location, player): if isinstance(location, Location): return location @@ -203,6 +223,18 @@ class World(object): return door raise RuntimeError('No such door %s for player %d' % (doorname, player)) + def get_portal(self, portal_name, player): + if isinstance(portal_name, Portal): + return portal_name + try: + return self._portal_cache[(portal_name, player)] + except KeyError: + for portal in self.dungeon_portals[player]: + if portal.name == portal_name and portal.player == player: + self._portal_cache[(portal_name, player)] = portal + return portal + raise RuntimeError('No such portal %s for player %d' % (portal_name, player)) + def check_for_door(self, doorname, player): if isinstance(doorname, Door): return doorname @@ -268,7 +300,7 @@ class World(object): pass elif ret.has('Red Shield', item.player) and self.difficulty_requirements[item.player].progressive_shield_limit >= 3: ret.prog_items['Mirror Shield', item.player] += 1 - elif ret.has('Blue Shield', item.player) and self.difficulty_requirements[item.player].progressive_shield_limit >= 2: + elif ret.has('Blue Shield', item.player) and self.difficulty_requirements[item.player].progressive_shield_limit >= 2: ret.prog_items['Red Shield', item.player] += 1 elif self.difficulty_requirements[item.player].progressive_shield_limit >= 1: ret.prog_items['Blue Shield', item.player] += 1 @@ -458,7 +490,7 @@ class CollectionState(object): new_crystal_state = crystal_state for exit in new_region.exits: door = exit.door - if door is not None and door.crystal == CrystalBarrier.Either: + if door is not None and door.crystal == CrystalBarrier.Either and door.entrance.can_reach(self): new_crystal_state = CrystalBarrier.Either break if new_region in rrp: @@ -469,7 +501,7 @@ class CollectionState(object): for exit in new_region.exits: door = exit.door if door is not None and not door.blocked: - door_crystal_state = new_crystal_state & (door.crystal or CrystalBarrier.Either) + door_crystal_state = door.crystal if door.crystal else new_crystal_state bc[exit] = door_crystal_state queue.append((exit, door_crystal_state)) elif door is None: @@ -547,15 +579,20 @@ class CollectionState(object): def _do_not_flood_the_keys(self, reachable_events): adjusted_checks = list(reachable_events) for event in reachable_events: - if event.name in flooded_keys.keys() and self.world.get_location(flooded_keys[event.name], event.player) not in reachable_events: - adjusted_checks.remove(event) + if event.name in flooded_keys.keys(): + flood_location = self.world.get_location(flooded_keys[event.name], event.player) + if flood_location.item and flood_location not in self.locations_checked: + adjusted_checks.remove(event) if len(adjusted_checks) < len(reachable_events): return adjusted_checks return reachable_events def not_flooding_a_key(self, world, location): if location.name in flooded_keys.keys(): - return world.get_location(flooded_keys[location.name], location.player) in self.locations_checked + flood_location = world.get_location(flooded_keys[location.name], location.player) + item = flood_location.item + item_is_important = False if not item else item.advancement or item.bigkey or item.smallkey + return flood_location in self.locations_checked or not item_is_important return True def has(self, item, player, count=1): @@ -563,7 +600,7 @@ class CollectionState(object): return (item, player) in self.prog_items return self.prog_items[item, player] >= count - def has_key(self, item, player, count=1): + def has_sm_key(self, item, player, count=1): if self.world.retro[player]: if self.world.mode[player] == 'standard' and self.world.doorShuffle[player] == 'vanilla' and item == 'Small Key (Escape)': return True # Cannot access the shop until escape is finished. This is safe because the key is manually placed in make_custom_item_pool @@ -838,6 +875,7 @@ class CollectionState(object): @unique class RegionType(Enum): + Menu = 0 LightWorld = 1 DarkWorld = 2 Cave = 3 # Also includes Houses @@ -937,9 +975,10 @@ class Entrance(object): world = self.parent_region.world if self.parent_region else None return world.get_name_string_for_object(self) if world else f'{self.name} (Player {self.player})' + class Dungeon(object): - def __init__(self, name, regions, big_key, small_keys, dungeon_items, player): + def __init__(self, name, regions, big_key, small_keys, dungeon_items, player, dungeon_id): self.name = name self.regions = regions self.big_key = big_key @@ -948,6 +987,7 @@ class Dungeon(object): self.bosses = dict() self.player = player self.world = None + self.dungeon_id = dungeon_id self.entrance_regions = [] @@ -1152,6 +1192,7 @@ class Door(object): # 0-4 for spiral offset thing self.doorIndex = -1 self.layer = -1 # 0 for normal floor, 1 for the inset layer + self.pseudo_bg = 0 # 0 for normal floor, 1 for pseudo bg self.toggle = False self.trapFlag = 0x0 self.quadrant = 2 @@ -1163,6 +1204,17 @@ class Door(object): self.edge_id = None self.edge_width = None + #portal items + self.portalAble = False + self.roomLayout = 0x22 # free scroll- both directions + self.entranceFlag = False + self.deadEnd = False + self.passage = True + self.dungeonLink = None + self.bk_shuffle_req = False + # self.incognitoPos = -1 + # self.sectorLink = False + # logical properties # self.connected = False # combine with Dest? self.dest = None @@ -1295,6 +1347,20 @@ class Door(object): self.dead = True return self + def portal(self, quadrant, roomLayout, pseudo_bg=0): + self.quadrant = quadrant + self.roomLayout = roomLayout + self.pseudo_bg = pseudo_bg + self.portalAble = True + return self + + def dead_end(self, allowPassage=False): + self.deadEnd = True + if allowPassage: + self.passage = True + else: + self.passage = False + def __eq__(self, other): return isinstance(other, self.__class__) and self.name == other.name @@ -1316,7 +1382,6 @@ class Sector(object): self.name = None self.r_name_set = None self.chest_locations = 0 - self.big_chest_present = False self.key_only_locations = 0 self.c_switch = False self.orange_barrier = False @@ -1378,10 +1443,9 @@ class Sector(object): self.branch_factor -= cnt_dead - 1 for region in self.regions: for ent in region.entrances: - if ent.parent_region.type in [RegionType.LightWorld, RegionType.DarkWorld] or ent.parent_region.name == 'Sewer Drop': - # same sector as another entrance - if region.name not in ['Skull Pot Circle', 'Skull Back Drop', 'Desert East Lobby', 'Desert West Lobby']: - self.branch_factor += 1 + if (ent.parent_region.type in [RegionType.LightWorld, RegionType.DarkWorld] and ent.parent_region.name != 'Menu') or ent.parent_region.name == 'Sewer Drop': + self.branch_factor += 1 + break # you only ever get one allowance for an entrance region, multiple entrances don't help return self.branch_factor def branches(self): @@ -1424,6 +1488,122 @@ class Sector(object): return f'{next(iter(self.region_set()))}' +class Portal(object): + + def __init__(self, player, name, door, entrance_offset, exit_offset, boss_exit_idx): + self.player = player + self.name = name + self.door = door + self.ent_offset = entrance_offset + self.exit_offset = exit_offset + self.boss_exit_idx = boss_exit_idx + self.default = True + self.destination = False + self.dependent = None + self.deadEnd = False + self.light_world = False + + def change_boss_exit(self, exit_idx): + self.default = False + self.boss_exit_idx = exit_idx + + def change_door(self, new_door): + if new_door != self.door: + self.default = False + self.door = new_door + + def current_room(self): + return self.door.roomIndex + + def relative_coords(self): + y_rel = (self.door.roomIndex & 0xf0) >> 3 #todo: fix the shift!!!! + x_rel = (self.door.roomIndex & 0x0f) * 2 + quad = self.door.quadrant + if quad == 0: + return [y_rel, y_rel, y_rel, y_rel+1, x_rel, x_rel, x_rel, x_rel+1] + elif quad == 1: + return [y_rel, y_rel, y_rel, y_rel+1, x_rel+1, x_rel, x_rel+1, x_rel+1] + elif quad == 2: + return [y_rel+1, y_rel, y_rel+1, y_rel+1, x_rel, x_rel, x_rel, x_rel+1] + else: + return [y_rel+1, y_rel, y_rel+1, y_rel+1, x_rel+1, x_rel, x_rel+1, x_rel+1] + + def scroll_x(self): + x_rel = (self.door.roomIndex & 0x0f) * 2 + if self.door.doorIndex == 0: + return [0x00, x_rel] + elif self.door.doorIndex == 1: + return [0x80, x_rel] + else: + return [0x00, x_rel+1] + + def scroll_y(self): + y_rel = ((self.door.roomIndex & 0xf0) >> 3) + 1 + return [0x10, y_rel] + + def link_y(self): + y_rel = ((self.door.roomIndex & 0xf0) >> 3) + 1 + inset = False + if self.door.pseudo_bg == 1 or self.door.layer == 1: + inset = True + return [(0xd8 if not inset else 0xc0), y_rel] + + def link_x(self): + x_rel = (self.door.roomIndex & 0x0f) * 2 + if self.door.doorIndex == 0: + return [0x78, x_rel] + elif self.door.doorIndex == 1: + return [0xf8, x_rel] + else: + return [0x78, x_rel+1] + + # def camera_y(self): + # return [0x87, 0x01] + + def camera_x(self): + if self.door.doorIndex == 0: + return [0x7f, 0x00] + elif self.door.doorIndex == 1: + return [0xff, 0x00] + else: + return [0x7f, 0x01] + + def bg_setting(self): + if self.door.layer == 0: + return 0x00 | self.door.pseudo_bg + else: + return 0x10 | self.door.pseudo_bg + + def hv_scroll(self): + return self.door.roomLayout + + def scroll_quad(self): + quad = self.door.quadrant + if quad == 0: + return 0x00 + elif quad == 1: + return 0x10 + elif quad == 2: + return 0x02 + else: + return 0x12 + + def __str__(self): + return str(self.__unicode__()) + + def __unicode__(self): + return f'{self.name}:{self.door.name}' + + +class DungeonInfo(object): + def __init__(self, name): + self.name = name + self.total = 0 + self.required_passage = {} + self.sole_entrance = None + # self.dead_ends = 0 total - 1 - req = dead_ends possible + + class Boss(object): def __init__(self, name, enemizer_name, defeat_rule, player): self.name = name @@ -1469,6 +1649,24 @@ class Location(object): return True return False + def forced_big_key(self): + if self.forced_item and self.forced_item.bigkey and self.player == self.forced_item.player: + item_dungeon = self.forced_item.name.split('(')[1][:-1] + if item_dungeon == 'Escape': + item_dungeon = 'Hyrule Castle' + if self.parent_region.dungeon.name == item_dungeon: + return True + return False + + def gen_name(self): + name = self.name + world = self.parent_region.world if self.parent_region and self.parent_region.world else None + if self.parent_region.dungeon and world and world.doorShuffle[self.player] == 'crossed': + name += f' @ {self.parent_region.dungeon.name}' + if world and world.players > 1: + name += f' ({world.get_player_names(self.player)})' + return name + def __str__(self): return str(self.__unicode__()) @@ -1594,9 +1792,10 @@ class Spoiler(object): def __init__(self, world): self.world = world self.hashes = {} - self.entrances = OrderedDict() - self.doors = OrderedDict() - self.doorTypes = OrderedDict() + self.entrances = {} + self.doors = {} + self.doorTypes = {} + self.lobbies = {} self.medallions = {} self.playthrough = {} self.unreachables = [] @@ -1619,6 +1818,12 @@ class Spoiler(object): else: self.doors[(entrance, direction, player)] = OrderedDict([('player', player), ('entrance', entrance), ('exit', exit), ('direction', direction), ('dname', d_name)]) + def set_lobby(self, lobby_name, door_name, player): + if self.world.players == 1: + self.lobbies[(lobby_name, player)] = {'lobby_name': lobby_name, 'door_name': door_name} + else: + self.lobbies[(lobby_name, player)] = {'player': player, 'lobby_name': lobby_name, 'door_name': door_name} + def set_door_type(self, doorNames, type, player): if self.world.players == 1: self.doorTypes[(doorNames, player)] = OrderedDict([('doorNames', doorNames), ('type', type)]) @@ -1641,25 +1846,25 @@ class Spoiler(object): listed_locations = set() lw_locations = [loc for loc in self.world.get_locations() if loc not in listed_locations and loc.parent_region and loc.parent_region.type == RegionType.LightWorld] - self.locations['Light World'] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in lw_locations]) + self.locations['Light World'] = OrderedDict([(location.gen_name(), str(location.item) if location.item is not None else 'Nothing') for location in lw_locations]) listed_locations.update(lw_locations) dw_locations = [loc for loc in self.world.get_locations() if loc not in listed_locations and loc.parent_region and loc.parent_region.type == RegionType.DarkWorld] - self.locations['Dark World'] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in dw_locations]) + self.locations['Dark World'] = OrderedDict([(location.gen_name(), str(location.item) if location.item is not None else 'Nothing') for location in dw_locations]) listed_locations.update(dw_locations) cave_locations = [loc for loc in self.world.get_locations() if loc not in listed_locations and loc.parent_region and loc.parent_region.type == RegionType.Cave] - self.locations['Caves'] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in cave_locations]) + self.locations['Caves'] = OrderedDict([(location.gen_name(), str(location.item) if location.item is not None else 'Nothing') for location in cave_locations]) listed_locations.update(cave_locations) for dungeon in self.world.dungeons: dungeon_locations = [loc for loc in self.world.get_locations() if loc not in listed_locations and loc.parent_region and loc.parent_region.dungeon == dungeon] - self.locations[str(dungeon)] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in dungeon_locations]) + self.locations[str(dungeon)] = OrderedDict([(location.gen_name(), str(location.item) if location.item is not None else 'Nothing') for location in dungeon_locations]) listed_locations.update(dungeon_locations) other_locations = [loc for loc in self.world.get_locations() if loc not in listed_locations] if other_locations: - self.locations['Other Locations'] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in other_locations]) + self.locations['Other Locations'] = OrderedDict([(location.gen_name(), str(location.item) if location.item is not None else 'Nothing') for location in other_locations]) listed_locations.update(other_locations) self.shops = [] @@ -1698,6 +1903,11 @@ class Spoiler(object): if self.world.players == 1: self.bosses = self.bosses["1"] + for player in range(1, self.world.players + 1): + if self.world.intensity[player] >= 3: + for portal in self.world.dungeon_portals[player]: + self.set_lobby(portal.name, portal.door.name, player) + from Main import __version__ as ERVersion self.metadata = {'version': ERVersion, 'logic': self.world.logic, @@ -1725,7 +1935,8 @@ class Spoiler(object): 'enemy_damage': self.world.enemy_damage, 'players': self.world.players, 'teams': self.world.teams, - 'experimental' : self.world.experimental + 'experimental': self.world.experimental, + 'keydropshuffle': self.world.keydropshuffle, } def to_json(self): @@ -1733,6 +1944,7 @@ class Spoiler(object): out = OrderedDict() out['Entrances'] = list(self.entrances.values()) out['Doors'] = list(self.doors.values()) + out['Lobbies'] = list(self.lobbies.values()) out['DoorTypes'] = list(self.doorTypes.values()) out.update(self.locations) out['Starting Inventory'] = self.startinventory @@ -1771,8 +1983,10 @@ class Spoiler(object): outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle'][player]) outfile.write('Door Shuffle: %s\n' % self.metadata['door_shuffle'][player]) outfile.write('Intensity: %s\n' % self.metadata['intensity'][player]) - outfile.write('Crystals required for GT: %s\n' % self.metadata['gt_crystals'][player]) - outfile.write('Crystals required for Ganon: %s\n' % self.metadata['ganon_crystals'][player]) + addition = ' (Random)' if self.world.crystals_gt_orig[player] == 'random' else '' + outfile.write('Crystals required for GT: %s\n' % (str(self.metadata['gt_crystals'][player]) + addition)) + addition = ' (Random)' if self.world.crystals_ganon_orig[player] == 'random' else '' + outfile.write('Crystals required for Ganon: %s\n' % (str(self.metadata['ganon_crystals'][player]) + addition)) outfile.write('Pyramid hole pre-opened: %s\n' % ('Yes' if self.metadata['open_pyramid'][player] else 'No')) outfile.write('Accessibility: %s\n' % self.metadata['accessibility'][player]) outfile.write('Map shuffle: %s\n' % ('Yes' if self.metadata['mapshuffle'][player] else 'No')) @@ -1785,6 +1999,7 @@ class Spoiler(object): outfile.write('Enemy damage: %s\n' % self.metadata['enemy_damage'][player]) outfile.write('Hints: %s\n' % ('Yes' if self.metadata['hints'][player] else 'No')) outfile.write('Experimental: %s\n' % ('Yes' if self.metadata['experimental'][player] else 'No')) + outfile.write('Key Drops shuffled: %s\n' % ('Yes' if self.metadata['keydropshuffle'][player] else 'No')) if self.doors: outfile.write('\n\nDoors:\n\n') outfile.write('\n'.join( @@ -1794,6 +2009,12 @@ class Spoiler(object): self.world.fish.translate("meta","doors",entry['exit']), '({0})'.format(entry['dname']) if self.world.doorShuffle[entry['player']] == 'crossed' else '') for entry in self.doors.values()])) + if self.lobbies: + outfile.write('\n\nDungeon Lobbies:\n\n') + outfile.write('\n'.join( + [f"{'Player {0}: '.format(entry['player']) if self.world.players > 1 else ''}{entry['lobby_name']}: {entry['door_name']}" + for + entry in self.lobbies.values()])) if self.doorTypes: # doorNames: For some reason these come in combined, somehow need to split on the thing to translate # doorTypes: Small Key, Bombable, Bonkable @@ -1813,7 +2034,7 @@ class Spoiler(object): # locations: Change up location names; in the instance of a location with multiple sections, it'll try to translate the room name # items: Item names outfile.write('\n\nLocations:\n\n') - outfile.write('\n'.join(['%s: %s' % (self.world.fish.translate("meta","locations",location), self.world.fish.translate("meta","items",item)) for grouping in self.locations.values() for (location, item) in grouping.items()])) + outfile.write('\n'.join(['%s: %s' % (self.world.fish.translate("meta", "locations", location), self.world.fish.translate("meta", "items", item)) for grouping in self.locations.values() for (location, item) in grouping.items()])) # locations: Change up location names; in the instance of a location with multiple sections, it'll try to translate the room name # items: Item names @@ -1859,3 +2080,53 @@ flooded_keys = { 'Trench 1 Switch': 'Swamp Palace - Trench 1 Pot Key', 'Trench 2 Switch': 'Swamp Palace - Trench 2 Pot Key' } + +dungeon_names = [ + 'Hyrule Castle', 'Eastern Palace', 'Desert Palace', 'Tower of Hera', 'Agahnims Tower', 'Palace of Darkness', + 'Swamp Palace', 'Skull Woods', 'Thieves Town', 'Ice Palace', 'Misery Mire', 'Turtle Rock', 'Ganons Tower' +] + + +class PotItem(FastEnum): + Nothing = 0x0 + OneRupee = 0x1 + RockCrab = 0x2 + Bee = 0x3 + Random = 0x4 + Bomb_0 = 0x5 + Heart_0 = 0x6 + FiveRupees = 0x7 + Key = 0x8 + FiveArrows = 0x9 + Bomb = 0xA + Heart = 0xB + SmallMagic = 0xC + BigMagic = 0xD + Chicken = 0xE + GreenSoldier = 0xF + AliveRock = 0x10 + BlueSoldier = 0x11 + GroundBomb = 0x12 + Heart_2 = 0x13 + Fairy = 0x14 + Heart_3 = 0x15 + Hole = 0x80 + Warp = 0x82 + Staircase = 0x84 + Bombable = 0x86 + Switch = 0x88 + + +class PotFlags(FastEnum): + Normal = 0x0 + NoSwitch = 0x1 # A switch should never go here + SwitchLogicChange = 0x2 # A switch can go here, but requires a logic change + + +class Pot(object): + def __init__(self, x, y, item, room, flags = PotFlags.Normal): + self.x = x + self.y = y + self.item = item + self.room = room + self.flags = flags \ No newline at end of file diff --git a/CLI.py b/CLI.py index eba5e020..35204b65 100644 --- a/CLI.py +++ b/CLI.py @@ -2,8 +2,6 @@ import argparse import copy import json import os -import logging -import random import textwrap import shlex import sys @@ -95,7 +93,7 @@ def parse_cli(argv, no_defaults=False): 'retro', 'accessibility', 'hints', 'beemizer', 'experimental', 'dungeon_counters', 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage', 'shufflepots', 'ow_palettes', 'uw_palettes', 'sprite', 'disablemusic', 'quickswap', 'fastmenu', 'heartcolor', 'heartbeep', - 'remote_items']: + 'remote_items', 'keydropshuffle', 'mixed_travel', 'standardize_palettes']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) @@ -135,6 +133,7 @@ def parse_settings(): "enemy_health": "default", "enemizercli": os.path.join(".", "EnemizerCLI", "EnemizerCLI.Core"), + "keydropshuffle": False, "mapshuffle": False, "compassshuffle": False, "keyshuffle": False, @@ -144,6 +143,8 @@ def parse_settings(): "intensity": 2, "experimental": False, "dungeon_counters": "default", + "mixed_travel": "prevent", + "standardize_palettes": "standardize", "multi": 1, "names": "", diff --git a/DoorShuffle.py b/DoorShuffle.py index 25be9a54..922142f4 100644 --- a/DoorShuffle.py +++ b/DoorShuffle.py @@ -4,16 +4,17 @@ import logging import operator as op import time from enum import unique, Flag +from typing import DefaultDict, Dict, List from functools import reduce -from BaseClasses import RegionType, Door, DoorType, Direction, Sector, CrystalBarrier -from Regions import key_only_locations -from Dungeons import dungeon_regions, region_starts, standard_starts, split_region_starts, flexible_starts +from BaseClasses import RegionType, Region, Door, DoorType, Direction, Sector, CrystalBarrier, DungeonInfo +from Dungeons import dungeon_regions, region_starts, standard_starts, split_region_starts from Dungeons import dungeon_bigs, dungeon_keys, dungeon_hints from Items import ItemFactory from RoomData import DoorKind, PairedDoor -from DungeonGenerator import ExplorationState, convert_regions, generate_dungeon, pre_validate, determine_required_paths +from DungeonGenerator import ExplorationState, convert_regions, generate_dungeon, pre_validate, determine_required_paths, drop_entrances from DungeonGenerator import create_dungeon_builders, split_dungeon_builder, simple_dungeon_builder, default_dungeon_entrances +from DungeonGenerator import dungeon_portals, dungeon_drops from KeyDoorShuffle import analyze_dungeon, validate_vanilla_key_logic, build_key_layout, validate_key_layout @@ -40,6 +41,36 @@ def link_doors(world, player): for entrance, ext in straight_staircases: connect_two_way(world, entrance, ext, player) + if world.intensity[player] < 3 or world.doorShuffle == 'vanilla': + mirror_route = world.get_entrance('Sanctuary Mirror Route', player) + mr_door = mirror_route.door + sanctuary = mirror_route.parent_region + sanctuary.exits.remove(mirror_route) + world.remove_entrance(mirror_route, player) + world.remove_door(mr_door, player) + + connect_custom(world, player) + + find_inaccessible_regions(world, player) + + if world.intensity[player] >= 3 and world.doorShuffle[player] in ['basic', 'crossed']: + choose_portals(world, player) + else: + if world.shuffle[player] == 'vanilla': + if world.mode[player] == 'standard': + world.get_portal('Sanctuary', player).destination = True + world.get_portal('Desert East', player).destination = True + if world.mode[player] == 'inverted': + world.get_portal('Desert West', player).destination = True + if world.mode[player] == 'open': + world.get_portal('Skull 2 West', player).destination = True + world.get_portal('Turtle Rock Lazy Eyes', player).destination = True + world.get_portal('Turtle Rock Eye Bridge', player).destination = True + else: + analyze_portals(world, player) + for portal in world.dungeon_portals[player]: + connect_portal(portal, world, player) + if world.doorShuffle[player] == 'vanilla': for entrance, ext in open_edges: connect_two_way(world, entrance, ext, player) @@ -106,7 +137,7 @@ def create_door_spoiler(world, player): DoorType.StraightStairs] and door_a not in done: done.add(door_a) door_b = door_a.dest - if door_b: + if door_b and not isinstance(door_b, Region): done.add(door_b) if not door_a.blocked and not door_b.blocked: world.spoiler.set_door(door_a.name, door_b.name, 'both', player, builder.name) @@ -116,7 +147,7 @@ def create_door_spoiler(world, player): world.spoiler.set_door(door_a.name, door_b.name, 'entrance', player, builder.name) else: logger.warning('This is a bug during door spoiler') - else: + elif not isinstance(door_b, Region): logger.warning('Door not connected: %s', door_a.name) if connect and connect.type == RegionType.Dungeon and connect not in visited: visited.add(connect) @@ -135,7 +166,7 @@ def vanilla_key_logic(world, player): builders.append(builder) world.dungeon_layouts[player][builder.name] = builder - overworld_prep(world, player) + add_inaccessible_doors(world, player) for builder in builders: origin_list = find_accessible_entrances(world, player, builder) start_regions = convert_regions(origin_list, world, player) @@ -150,7 +181,7 @@ def vanilla_key_logic(world, player): analyze_dungeon(key_layout, world, player) world.key_logic[player][builder.name] = key_layout.key_logic log_key_logic(builder.name, key_layout.key_logic) - if world.shuffle[player] == 'vanilla' and world.accessibility[player] == 'items' and not world.retro[player]: + if world.shuffle[player] == 'vanilla' and world.accessibility[player] == 'items' and not world.retro[player] and not world.keydropshuffle[player]: validate_vanilla_key_logic(world, player) @@ -169,9 +200,9 @@ def switch_dir(direction): return oppositemap[direction] -def convert_key_doors(key_doors, world, player): +def convert_key_doors(k_doors, world, player): result = [] - for d in key_doors: + for d in k_doors: if type(d) is tuple: result.append((world.get_door(d[0], player), world.get_door(d[1], player))) else: @@ -179,6 +210,12 @@ def convert_key_doors(key_doors, world, player): return result +def connect_custom(world, player): + if hasattr(world, 'custom_doors') and world.custom_doors[player]: + for entrance, ext in world.custom_doors[player]: + connect_two_way(world, entrance, ext, player) + + def connect_simple_door(world, exit_name, region_name, player): region = world.get_region(region_name, player) world.get_entrance(exit_name, player).connect(region) @@ -257,7 +294,8 @@ def remove_ugly_small_key_doors(world, player): 'TR Lava Escape SE', 'GT Hidden Spikes SE']: door = world.get_door(d, player) room = world.get_room(door.roomIndex, player) - room.change(door.doorListPos, DoorKind.Normal) + if not door.entranceFlag: + room.change(door.doorListPos, DoorKind.Normal) door.smallKey = False door.ugly = False @@ -285,13 +323,316 @@ def pair_existing_key_doors(world, player, door_a, door_b): world.paired_doors[player].append(PairedDoor(door_a, door_b)) +def choose_portals(world, player): + + if world.doorShuffle[player] in ['basic', 'crossed']: + cross_flag = world.doorShuffle[player] == 'crossed' + bk_shuffle = world.bigkeyshuffle[player] + # roast incognito doors + world.get_room(0x60, player).delete(5) + world.get_room(0x60, player).change(2, DoorKind.DungeonEntrance) + world.get_room(0x62, player).delete(5) + world.get_room(0x62, player).change(1, DoorKind.DungeonEntrance) + + info_map = {} + for dungeon, portal_list in dungeon_portals.items(): + info = DungeonInfo(dungeon) + region_map = defaultdict(list) + reachable_portals = [] + inaccessible_portals = [] + for portal in portal_list: + placeholder = world.get_region(portal + ' Portal', player) + portal_region = placeholder.exits[0].connected_region + name = portal_region.name + if portal_region.type == RegionType.LightWorld: + world.get_portal(portal, player).light_world = True + if name in world.inaccessible_regions[player]: + name_key = 'Desert Ledge' if name == 'Desert Palace Entrance (North) Spot' else name + region_map[name_key].append(portal) + inaccessible_portals.append(portal) + else: + reachable_portals.append(portal) + info.total = len(portal_list) + info.required_passage = region_map + if len(reachable_portals) == 0: + if len(inaccessible_portals) == 1: + info.sole_entrance = inaccessible_portals[0] + info.required_passage.clear() + else: + raise Exception('please inspect this case') + if len(reachable_portals) == 1: + info.sole_entrance = reachable_portals[0] + info_map[dungeon] = info + + master_door_list = [x for x in world.doors if x.player == player and x.portalAble] + portal_assignment = defaultdict(list) + for dungeon, info in info_map.items(): + outstanding_portals = list(dungeon_portals[dungeon]) + if dungeon == 'Hyrule Castle' and world.mode[player] == 'standard': + sanc = world.get_portal('Sanctuary', player) + sanc.destination = True + clean_up_portal_assignment(portal_assignment, dungeon, sanc, master_door_list, outstanding_portals) + for target_region, possible_portals in info.required_passage.items(): + info.required_passage[target_region] = [x for x in possible_portals if x != sanc.name] + info.required_passage = {x: y for x, y in info.required_passage.items() if len(y) > 0} + for target_region, possible_portals in info.required_passage.items(): + candidates = find_portal_candidates(master_door_list, dungeon, need_passage=True, crossed=cross_flag, + bk_shuffle=bk_shuffle) + choice, portal = assign_portal(candidates, possible_portals, world, player) + portal.destination = True + clean_up_portal_assignment(portal_assignment, dungeon, portal, master_door_list, outstanding_portals) + dead_end_choices = info.total - 1 - len(portal_assignment[dungeon]) + for i in range(0, dead_end_choices): + candidates = find_portal_candidates(master_door_list, dungeon, dead_end_allowed=True, + crossed=cross_flag, bk_shuffle=bk_shuffle) + possible_portals = outstanding_portals if not info.sole_entrance else [x for x in outstanding_portals if x != info.sole_entrance] + choice, portal = assign_portal(candidates, possible_portals, world, player) + if choice.deadEnd: + portal.deadEnd = True + clean_up_portal_assignment(portal_assignment, dungeon, portal, master_door_list, outstanding_portals) + the_rest = info.total - len(portal_assignment[dungeon]) + for i in range(0, the_rest): + candidates = find_portal_candidates(master_door_list, dungeon, crossed=cross_flag, + bk_shuffle=bk_shuffle) + choice, portal = assign_portal(candidates, outstanding_portals, world, player) + clean_up_portal_assignment(portal_assignment, dungeon, portal, master_door_list, outstanding_portals) + + for portal in world.dungeon_portals[player]: + connect_portal(portal, world, player) + + hc_south = world.get_door('Hyrule Castle Lobby S', player) + if not hc_south.entranceFlag: + world.get_room(0x61, player).delete(6) + world.get_room(0x61, player).change(4, DoorKind.NormalLow) + sanctuary_door = world.get_door('Sanctuary S', player) + if not sanctuary_door.entranceFlag: + world.get_room(0x12, player).delete(3) + world.get_room(0x12, player).change(2, DoorKind.NormalLow) + hera_door = world.get_door('Hera Lobby S', player) + if not hera_door.entranceFlag: + world.get_room(0x77, player).change(0, DoorKind.NormalLow2) + + # tr rock bomb entrances + for portal in world.dungeon_portals[player]: + if not portal.destination and not portal.deadEnd: + if portal.door.name == 'TR Lazy Eyes SE': + world.get_room(0x23, player).change(0, DoorKind.DungeonEntrance) + if portal.door.name == 'TR Eye Bridge SW': + world.get_room(0xd5, player).change(0, DoorKind.DungeonEntrance) + + if not world.swamp_patch_required[player]: + swamp_region = world.get_entrance('Swamp Palace', player).connected_region + if swamp_region.name != 'Swamp Lobby': + world.swamp_patch_required[player] = True + + +def analyze_portals(world, player): + info_map = {} + for dungeon, portal_list in dungeon_portals.items(): + info = DungeonInfo(dungeon) + region_map = defaultdict(list) + reachable_portals = [] + inaccessible_portals = [] + for portal in portal_list: + placeholder = world.get_region(portal + ' Portal', player) + portal_region = placeholder.exits[0].connected_region + name = portal_region.name + if portal_region.type == RegionType.LightWorld: + world.get_portal(portal, player).light_world = True + if name in world.inaccessible_regions[player]: + name_key = 'Desert Ledge' if name == 'Desert Palace Entrance (North) Spot' else name + region_map[name_key].append(portal) + inaccessible_portals.append(portal) + else: + reachable_portals.append(portal) + info.total = len(portal_list) + info.required_passage = region_map + if len(reachable_portals) == 0: + if len(inaccessible_portals) == 1: + info.sole_entrance = inaccessible_portals[0] + info.required_passage.clear() + else: + raise Exception('please inspect this case') + if len(reachable_portals) == 1: + info.sole_entrance = reachable_portals[0] + info_map[dungeon] = info + + for dungeon, info in info_map.items(): + if dungeon == 'Hyrule Castle' and world.mode[player] == 'standard': + sanc = world.get_portal('Sanctuary', player) + sanc.destination = True + for target_region, possible_portals in info.required_passage.items(): + if len(possible_portals) == 1: + world.get_portal(possible_portals[0], player).destination = True + elif len(possible_portals) > 1: + dest_portal = random.choice(possible_portals) + access_portal = world.get_portal(dest_portal, player) + access_portal.destination = True + for other_portal in possible_portals: + if other_portal != dest_portal: + world.get_portal(dest_portal, player).dependent = access_portal + + +def connect_portal(portal, world, player): + ent, ext, entrance_name = portal_map[portal.name] + if world.mode[player] == 'inverted' and portal.name in ['Ganons Tower', 'Agahnims Tower']: + ext = 'Inverted ' + ext + # ent = 'Inverted ' + ent + portal_entrance = world.get_entrance(portal.door.entrance.name, player) # ensures I get the right one for copying + target_exit = world.get_entrance(ext, player) + portal_entrance.connected_region = target_exit.parent_region + portal_region = world.get_region(portal.name + ' Portal', player) + portal_region.entrances.append(portal_entrance) + edit_entrance = world.get_entrance(entrance_name, player) + edit_entrance.connected_region = portal_entrance.parent_region + chosen_door = world.get_door(portal_entrance.name, player) + chosen_door.blocked = False + connect_door_only(world, chosen_door, portal_region, player) + portal_entrance.parent_region.entrances.append(edit_entrance) + + +# todo: remove this? +def connect_portal_copy(portal, world, player): + ent, ext, entrance_name = portal_map[portal.name] + if world.mode[player] == 'inverted' and portal.name in ['Ganons Tower', 'Agahnims Tower']: + ext = 'Inverted ' + ext + portal_entrance = world.get_entrance(portal.door.entrance.name, player) # ensures I get the right one for copying + target_exit = world.get_entrance(ext, player) + portal_entrance.connected_region = target_exit.parent_region + portal_region = world.get_region(portal.name + ' Portal', player) + portal_region.entrances.append(portal_entrance) + edit_entrance = world.get_entrance(entrance_name, player) + edit_entrance.connected_region = portal_entrance.parent_region + chosen_door = world.get_door(portal_entrance.name, player) + chosen_door.blocked = False + connect_door_only(world, chosen_door, portal_region, player) + portal_entrance.parent_region.entrances.append(edit_entrance) + + +def find_portal_candidates(door_list, dungeon, need_passage=False, dead_end_allowed=False, crossed=False, bk_shuffle=False): + filter_list = [x for x in door_list if bk_shuffle or not x.bk_shuffle_req] + if need_passage: + if crossed: + return [x for x in filter_list if x.passage and (x.dungeonLink is None or x.entrance.parent_region.dungeon.name == dungeon)] + else: + return [x for x in filter_list if x.passage and x.entrance.parent_region.dungeon.name == dungeon] + elif dead_end_allowed: + if crossed: + return [x for x in filter_list if x.dungeonLink is None or x.entrance.parent_region.dungeon.name == dungeon] + else: + return [x for x in filter_list if x.entrance.parent_region.dungeon.name == dungeon] + else: + if crossed: + return [x for x in filter_list if (not x.dungeonLink or x.entrance.parent_region.dungeon.name == dungeon) and not x.deadEnd] + else: + return [x for x in filter_list if x.entrance.parent_region.dungeon.name == dungeon and not x.deadEnd] + + +def assign_portal(candidates, possible_portals, world, player): + candidate = random.choice(candidates) + portal_choice = random.choice(possible_portals) + portal = world.get_portal(portal_choice, player) + if candidate != portal.door: + if candidate.entranceFlag: + for other_portal in world.dungeon_portals[player]: + if other_portal.door == candidate: + other_portal.door = None + break + old_door = portal.door + if old_door: + old_door.entranceFlag = False + if old_door.name not in ['Hyrule Castle Lobby S', 'Sanctuary S', 'Hera Lobby S']: + old_door_kind = DoorKind.NormalLow if old_door.layer or old_door.pseudo_bg else DoorKind.Normal + world.get_room(old_door.roomIndex, player).change(old_door.doorListPos, old_door_kind) + portal.change_door(candidate) + if candidate.name not in ['Hyrule Castle Lobby S', 'Sanctuary S']: + new_door_kind = DoorKind.DungeonEntranceLow if candidate.layer or candidate.pseudo_bg else DoorKind.DungeonEntrance + world.get_room(candidate.roomIndex, player).change(candidate.doorListPos, new_door_kind) + candidate.entranceFlag = True + return candidate, portal + + +def clean_up_portal_assignment(portal_assignment, dungeon, portal, master_door_list, outstanding_portals): + portal_assignment[dungeon].append(portal) + master_door_list[:] = [x for x in master_door_list if x.roomIndex != portal.door.roomIndex] + if portal.door.dungeonLink and portal.door.dungeonLink.startswith('link'): + match_link = portal.door.dungeonLink + for door in master_door_list: + if door.dungeonLink == match_link: + door.dungeonLink = dungeon + outstanding_portals.remove(portal.name) + + +def create_dungeon_entrances(world, player): + entrance_map = defaultdict(list) + split_map: DefaultDict[str, DefaultDict[str, List]] = defaultdict(lambda: defaultdict(list)) + originating: DefaultDict[str, DefaultDict[str, Dict]] = defaultdict(lambda: defaultdict(dict)) + for key, portal_list in dungeon_portals.items(): + if key in dungeon_drops.keys(): + entrance_map[key].extend(dungeon_drops[key]) + if key in split_portals.keys(): + dead_ends = [] + destinations = [] + the_rest = [] + for portal_name in portal_list: + portal = world.get_portal(portal_name, player) + entrance_map[key].append(portal.door.entrance.parent_region.name) + if portal.deadEnd: + dead_ends.append(portal) + elif portal.destination: + destinations.append(portal) + else: + the_rest.append(portal) + choices = list(split_portals[key]) + for portal in dead_ends: + choice = random.choice(choices) + choices.remove(choice) + r_name = portal.door.entrance.parent_region.name + split_map[key][choice].append(r_name) + for portal in the_rest: + if len(choices) == 0: + choices.append('Extra') + choice = random.choice(choices) + p_entrance = portal.door.entrance + r_name = p_entrance.parent_region.name + split_map[key][choice].append(r_name) + entrance_region = find_entrance_region(portal) + originating[key][choice][entrance_region.name] = None + dest_choices = [x for x in choices if len(split_map[key][x]) > 0] + for portal in destinations: + entrance_region = find_entrance_region(portal) + restricted = entrance_region.name in world.inaccessible_regions[player] + if restricted: + filtered_choices = [x for x in choices if any(y not in world.inaccessible_regions[player] for y in originating[key][x].keys())] + else: + filtered_choices = dest_choices + if len(filtered_choices) == 0: + raise Exception('No valid destinations') + choice = random.choice(filtered_choices) + r_name = portal.door.entrance.parent_region.name + split_map[key][choice].append(r_name) + else: + for portal_name in portal_list: + portal = world.get_portal(portal_name, player) + r_name = portal.door.entrance.parent_region.name + entrance_map[key].append(r_name) + return entrance_map, split_map + + +def find_entrance_region(portal): + for entrance in portal.door.entrance.connected_region.entrances: + if entrance.parent_region.type != RegionType.Dungeon: + return entrance.parent_region + return None + + # def unpair_all_doors(world, player): # for paired_door in world.paired_doors[player]: # paired_door.pair = False def within_dungeon(world, player): fix_big_key_doors_with_ugly_smalls(world, player) - overworld_prep(world, player) + add_inaccessible_doors(world, player) entrances_map, potentials, connections = determine_entrance_list(world, player) connections_tuple = (entrances_map, potentials, connections) @@ -301,7 +642,8 @@ def within_dungeon(world, player): dungeon_builders[key] = simple_dungeon_builder(key, sector_list) dungeon_builders[key].entrance_list = list(entrances_map[key]) recombinant_builders = {} - builder_info = None, None, world, player + entrances, splits = create_dungeon_entrances(world, player) + builder_info = entrances, splits, connections_tuple, world, player handle_split_dungeons(dungeon_builders, recombinant_builders, entrances_map, builder_info) main_dungeon_generation(dungeon_builders, recombinant_builders, connections_tuple, world, player) @@ -316,14 +658,21 @@ def within_dungeon(world, player): logging.getLogger('').info('%s: %s', world.fish.translate("cli", "cli", "keydoor.shuffle.time"), time.process_time()-start) smooth_door_pairs(world, player) + if world.intensity[player] >= 3: + portal = world.get_portal('Sanctuary', player) + target = portal.door.entrance.parent_region + connect_simple_door(world, 'Sanctuary Mirror Route', target, player) + + refine_boss_exits(world, player) + def handle_split_dungeons(dungeon_builders, recombinant_builders, entrances_map, builder_info): - dungeon_entrances, split_dungeon_entrances, world, player = builder_info + dungeon_entrances, split_dungeon_entrances, c_tuple, world, player = builder_info if dungeon_entrances is None: dungeon_entrances = default_dungeon_entrances if split_dungeon_entrances is None: split_dungeon_entrances = split_region_starts - builder_info = dungeon_entrances, split_region_starts, world, player + builder_info = dungeon_entrances, split_dungeon_entrances, c_tuple, world, player for name, split_list in split_dungeon_entrances.items(): builder = dungeon_builders.pop(name) @@ -332,11 +681,14 @@ def handle_split_dungeons(dungeon_builders, recombinant_builders, entrances_map, split_builders = split_dungeon_builder(builder, split_list, builder_info) dungeon_builders.update(split_builders) for sub_name, split_entrances in split_list.items(): - sub_builder = dungeon_builders[name+' '+sub_name] + key = name+' '+sub_name + if key not in dungeon_builders: + continue + sub_builder = dungeon_builders[key] sub_builder.split_flag = True entrance_list = list(split_entrances) - if name in flexible_starts.keys(): - add_shuffled_entrances(sub_builder.sectors, flexible_starts[name], entrance_list) + for ent in entrances_map[name]: + add_shuffled_entrances(sub_builder.sectors, ent, entrance_list) filtered_entrance_list = [x for x in entrance_list if x in entrances_map[name]] sub_builder.entrance_list = filtered_entrance_list @@ -353,6 +705,9 @@ def main_dungeon_generation(dungeon_builders, recombinant_builders, connections_ name = builder.name if split_dungeon: name = ' '.join(builder.name.split(' ')[:-1]) + if len(builder.sectors) == 0: + del dungeon_builders[builder.name] + continue origin_list = list(builder.entrance_list) find_enabled_origins(builder.sectors, enabled_entrances, origin_list, entrances_map, name) if len(origin_list) <= 0 or not pre_validate(builder, origin_list, split_dungeon, world, player): @@ -376,14 +731,14 @@ def main_dungeon_generation(dungeon_builders, recombinant_builders, connections_ world.dungeon_layouts[player] = dungeon_builders -def determine_entrance_list(world, player): +def determine_entrance_list_vanilla(world, player): entrance_map = {} potential_entrances = {} connections = {} for key, r_names in region_starts.items(): entrance_map[key] = [] if world.mode[player] == 'standard' and key in standard_starts.keys(): - r_names = standard_starts[key] + r_names = ['Hyrule Castle Lobby'] for region_name in r_names: region = world.get_region(region_name, player) for ent in region.entrances: @@ -399,10 +754,47 @@ def determine_entrance_list(world, player): return entrance_map, potential_entrances, connections +def determine_entrance_list(world, player): + entrance_map = {} + potential_entrances = {} + connections = {} + for key, portal_list in dungeon_portals.items(): + entrance_map[key] = [] + r_names = {} + if key in dungeon_drops.keys(): + for drop in dungeon_drops[key]: + r_names[drop] = None + for portal_name in portal_list: + portal = world.get_portal(portal_name, player) + r_names[portal.door.entrance.parent_region.name] = portal + for region_name, portal in r_names.items(): + if portal: + region = world.get_region(portal.name + ' Portal', player) + else: + region = world.get_region(region_name, player) + for ent in region.entrances: + parent = ent.parent_region + if (parent.type != RegionType.Dungeon and parent.name != 'Menu') or parent.name == 'Sewer Drop': + std_inaccessible = is_standard_inaccessible(key, portal, world, player) + if parent.name not in world.inaccessible_regions[player] and not std_inaccessible: + entrance_map[key].append(region_name) + else: + if parent not in potential_entrances.keys(): + potential_entrances[parent] = [] + if region_name not in potential_entrances[parent]: + potential_entrances[parent].append(region_name) + connections[region_name] = parent + return entrance_map, potential_entrances, connections + + +def is_standard_inaccessible(key, portal, world, player): + return world.mode[player] == 'standard' and key in standard_starts and (not portal or portal.name not in standard_starts[key]) + + def add_shuffled_entrances(sectors, region_list, entrance_list): for sector in sectors: for region in sector.regions: - if region.name in region_list: + if region.name in region_list and region.name not in entrance_list: entrance_list.append(region.name) @@ -440,7 +832,7 @@ def enable_new_entrances(region, connections, potentials, enabled, world, player if region_name in connections.keys() and connections[region_name] in potentials.keys(): for potential in potentials.pop(connections[region_name]): enabled[potential] = (region.name, region.dungeon) - if ext.connected_region.name in world.inaccessible_regions[player]: + if ext.connected_region.name in world.inaccessible_regions[player] or ext.connected_region.name.endswith(' Portal'): for new_exit in ext.connected_region.exits: if new_exit not in visited: queue.append(new_exit) @@ -477,7 +869,7 @@ def aga_tower_enabled(enabled): def cross_dungeon(world, player): fix_big_key_doors_with_ugly_smalls(world, player) - overworld_prep(world, player) + add_inaccessible_doors(world, player) entrances_map, potentials, connections = determine_entrance_list(world, player) connections_tuple = (entrances_map, potentials, connections) @@ -485,7 +877,9 @@ def cross_dungeon(world, player): for key in dungeon_regions.keys(): all_regions += dungeon_regions[key] all_sectors.extend(convert_to_sectors(all_regions, world, player)) - dungeon_builders = create_dungeon_builders(all_sectors, connections_tuple, world, player) + merge_sectors(all_sectors, world, player) + entrances, splits = create_dungeon_entrances(world, player) + dungeon_builders = create_dungeon_builders(all_sectors, connections_tuple, world, player, entrances, splits) for builder in dungeon_builders.values(): builder.entrance_list = list(entrances_map[builder.name]) dungeon_obj = world.get_dungeon(builder.name, player) @@ -493,11 +887,11 @@ def cross_dungeon(world, player): for region in sector.regions: region.dungeon = dungeon_obj for loc in region.locations: - if loc.name in key_only_locations: + if loc.forced_item: key_name = dungeon_keys[builder.name] if loc.name != 'Hyrule Castle - Big Key Drop' else dungeon_bigs[builder.name] loc.forced_item = loc.item = ItemFactory(key_name, player) recombinant_builders = {} - builder_info = None, None, world, player + builder_info = entrances, splits, connections_tuple, world, player handle_split_dungeons(dungeon_builders, recombinant_builders, entrances_map, builder_info) main_dungeon_generation(dungeon_builders, recombinant_builders, connections_tuple, world, player) @@ -512,9 +906,12 @@ def cross_dungeon(world, player): at.dungeon_items.append(ItemFactory('Map (Agahnims Tower)', player)) assign_cross_keys(dungeon_builders, world, player) - all_dungeon_items = [y for x in world.dungeons if x.player == player for y in x.all_items] - target_items = 34 if world.retro[player] else 63 - d_items = target_items - len(all_dungeon_items) + all_dungeon_items_cnt = len(list(y for x in world.dungeons if x.player == player for y in x.all_items)) + if world.keydropshuffle[player]: + target_items = 35 if world.retro[player] else 96 + else: + target_items = 34 if world.retro[player] else 63 + d_items = target_items - all_dungeon_items_cnt world.pool_adjustment[player] = d_items smooth_door_pairs(world, player) @@ -525,13 +922,56 @@ def cross_dungeon(world, player): reassign_boss('GT Lanmolas 2', 'middle', builder, gt, world, player) reassign_boss('GT Moldorm', 'top', builder, gt, world, player) + sanctuary = world.get_region('Sanctuary', player) + d_name = sanctuary.dungeon.name + if d_name != 'Hyrule Castle': + possible_portals = [] + for portal_name in dungeon_portals[d_name]: + portal = world.get_portal(portal_name, player) + if portal.door.name == 'Sanctuary S': + possible_portals.clear() + possible_portals.append(portal) + break + if not portal.destination and not portal.deadEnd: + possible_portals.append(portal) + if len(possible_portals) == 1: + world.sanc_portal[player] = possible_portals[0] + else: + reachable_portals = [] + for portal in possible_portals: + start_area = portal.door.entrance.parent_region + state = ExplorationState(dungeon=d_name) + state.visit_region(start_area) + state.add_all_doors_check_unattached(start_area, world, player) + explore_state(state, world, player) + if state.visited_at_all(sanctuary): + reachable_portals.append(portal) + world.sanc_portal[player] = random.choice(reachable_portals) + if world.intensity[player] >= 3: + if player in world.sanc_portal: + portal = world.sanc_portal[player] + else: + portal = world.get_portal('Sanctuary', player) + target = portal.door.entrance.parent_region + connect_simple_door(world, 'Sanctuary Mirror Route', target, player) + + check_entrance_fixes(world, player) + + if world.standardize_palettes[player] == 'standardize': + palette_assignment(world, player) + refine_hints(dungeon_builders) + refine_boss_exits(world, player) def assign_cross_keys(dungeon_builders, world, player): logging.getLogger('').info(world.fish.translate("cli", "cli", "shuffling.keydoors")) start = time.process_time() - total_keys = remaining = 29 + if world.retro[player]: + remaining = 61 if world.keydropshuffle[player] else 29 + else: + remaining = len(list(x for dgn in world.dungeons if dgn.player == player for x in dgn.small_keys)) + total_keys = remaining total_candidates = 0 start_regions_map = {} # Step 1: Find Small Key Door Candidates @@ -609,7 +1049,7 @@ def assign_cross_keys(dungeon_builders, world, player): dungeon.small_keys = [] else: dungeon.small_keys = [ItemFactory(dungeon_keys[name], player)] * actual_chest_keys - logger.info('%s: %s', world.fish.translate("cli", "cli", "keydoor.shuffle.time.crossed"), time.process_time()-start) + logger.info(f'{world.fish.translate("cli", "cli", "keydoor.shuffle.time.crossed")}: {time.process_time()-start}') def reassign_boss(boss_region, boss_key, builder, gt, world, player): @@ -620,6 +1060,103 @@ def reassign_boss(boss_region, boss_key, builder, gt, world, player): new_dungeon.bosses[boss_key] = gt_boss +def check_entrance_fixes(world, player): + # I believe these modes will be fine + if world.shuffle[player] not in ['insanity', 'insanity_legacy', 'madness_legacy']: + checks = { + 'Palace of Darkness': 'pod', + 'Skull Woods Final Section': 'sw', + 'Turtle Rock': 'tr', + 'Ganons Tower': 'gt', + } + if world.mode[player] == 'inverted': + del checks['Ganons Tower'] + for ent_name, key in checks.items(): + entrance = world.get_entrance(ent_name, player) + dungeon = entrance.connected_region.dungeon + if dungeon: + layout = world.dungeon_layouts[player][dungeon.name] + if 'Sanctuary' in layout.master_sector.region_set() or dungeon.name in ['Hyrule Castle', 'Desert Palace', 'Skull Woods', 'Turtle Rock']: + portal = None + for portal_name in dungeon_portals[dungeon.name]: + test_portal = world.get_portal(portal_name, player) + if entrance.connected_region == test_portal.door.entrance.connected_region: + portal = test_portal + break + world.force_fix[player][key] = portal + + +def palette_assignment(world, player): + for portal in world.dungeon_portals[player]: + if portal.door.roomIndex >= 0: + room = world.get_room(portal.door.roomIndex, player) + if room.palette is None: + name = portal.door.entrance.parent_region.dungeon.name + room.palette = palette_map[name][0] + + for name, builder in world.dungeon_layouts[player].items(): + for region in builder.master_sector.regions: + for ext in region.exits: + if ext.door and ext.door.roomIndex >= 0 and ext.door.name not in palette_non_influencers: + room = world.get_room(ext.door.roomIndex, player) + if room.palette is None: + room.palette = palette_map[name][0] + + for name, tuple in palette_map.items(): + if tuple[1] is not None: + door_name = boss_indicator[name][1] + door = world.get_door(door_name, player) + room = world.get_room(door.roomIndex, player) + room.palette = tuple[1] + if tuple[2]: + leading_door = world.get_door(tuple[2], player) + ent = next(iter(leading_door.entrance.parent_region.entrances)) + if ent.door and door.roomIndex: + room = world.get_room(door.roomIndex, player) + room.palette = tuple[1] + + + rat_path = world.get_region('Sewers Rat Path', player) + visited_rooms = set() + visited_regions = {rat_path} + queue = deque([(rat_path, 0)]) + while len(queue) > 0: + region, dist = queue.popleft() + if dist > 5: + continue + for ext in region.exits: + if ext.door and ext.door.roomIndex >= 0 and ext.door.name not in palette_non_influencers: + room_idx = ext.door.roomIndex + if room_idx not in visited_rooms: + room = world.get_room(room_idx, player) + room.palette = 0x1 + visited_rooms.add(room_idx) + if ext.door and ext.door.type in [DoorType.SpiralStairs, DoorType.Ladder]: + if ext.door.dest and ext.door.dest.roomIndex: + visited_rooms.add(ext.door.dest.roomIndex) + if ext.connected_region: + visited_regions.add(ext.connected_region) + elif ext.connected_region and ext.connected_region.type == RegionType.Dungeon and ext.connected_region not in visited_regions: + queue.append((ext.connected_region, dist+1)) + visited_regions.add(ext.connected_region) + + sanc = world.get_region('Sanctuary', player) + if sanc.dungeon.name == 'Hyrule Castle': + room = world.get_room(0x12, player) + room.palette = 0x1d + for connection in ['Sanctuary S', 'Sanctuary N']: + adjacent = world.get_entrance(connection, player) + adj_dest = adjacent.door.dest + if adj_dest and isinstance(adj_dest, Door) and adj_dest.entrance.parent_region.type == RegionType.Dungeon: + if adjacent.door and adjacent.door.dest and adjacent.door.dest.roomIndex >= 0: + room = world.get_room(adjacent.door.dest.roomIndex, player) + room.palette = 0x1d + + eastfairies = world.get_room(0x89, player) + eastfairies.palette = palette_map[world.get_region('Eastern Courtyard', player).dungeon.name][0] + # other ones that could use programmatic treatment: Skull Boss x29, Hera Fairies xa7, Ice Boss xde (Ice Fairies!) + + def refine_hints(dungeon_builders): for name, builder in dungeon_builders.items(): for region in builder.master_sector.regions: @@ -628,6 +1165,44 @@ def refine_hints(dungeon_builders): location.hint_text = dungeon_hints[name] +def refine_boss_exits(world, player): + for d_name, d_boss in {'Desert Palace': 'Desert Boss', + 'Skull Woods': 'Skull Boss', + 'Turtle Rock': 'TR Boss'}.items(): + possible_portals = [] + current_boss = None + for portal_name in dungeon_portals[d_name]: + portal = world.get_portal(portal_name, player) + if not portal.destination: + possible_portals.append(portal) + if portal.boss_exit_idx > -1: + current_boss = portal + if len(possible_portals) == 1: + if possible_portals[0] != current_boss: + possible_portals[0].change_boss_exit(current_boss.boss_exit_idx) + current_boss.change_boss_exit(-1) + else: + reachable_portals = [] + for portal in possible_portals: + start_area = portal.door.entrance.parent_region + state = ExplorationState(dungeon=d_name) + state.visit_region(start_area) + state.add_all_doors_check_unattached(start_area, world, player) + explore_state_not_inaccessible(state, world, player) + if state.visited_at_all(world.get_region(d_boss, player)): + reachable_portals.append(portal) + if len(reachable_portals) == 0: + reachable_portals = possible_portals + unreachable = world.inaccessible_regions[player] + filtered = [x for x in reachable_portals if x.door.entrance.connected_region.name not in unreachable] + if 0 < len(filtered) < len(reachable_portals): + reachable_portals = filtered + chosen_one = random.choice(reachable_portals) if len(reachable_portals) > 1 else reachable_portals[0] + if chosen_one != current_boss: + chosen_one.change_boss_exit(current_boss.boss_exit_idx) + current_boss.change_boss_exit(-1) + + def convert_to_sectors(region_names, world, player): region_list = convert_regions(region_names, world, player) sectors = [] @@ -658,7 +1233,7 @@ def convert_to_sectors(region_names, world, player): if existing not in matching_sectors: matching_sectors.append(existing) else: - if door is not None and door.controller is None and door.dest is None: + if door and not door.controller and not door.dest and not door.entranceFlag and door.type != DoorType.Logical: outstanding_doors.append(door) sector = Sector() if not new_sector: @@ -672,6 +1247,30 @@ def convert_to_sectors(region_names, world, player): return sectors +def merge_sectors(all_sectors, world, player): + if world.mixed_travel[player] == 'force': + sectors_to_remove = {} + merge_sectors = {} + for sector in all_sectors: + r_set = sector.region_set() + if 'PoD Arena Ledge' in r_set: + sectors_to_remove['Arenahover'] = sector + elif 'PoD Big Chest Balcony' in r_set: + sectors_to_remove['Hammerjump'] = sector + elif 'Mire Chest View' in r_set: + sectors_to_remove['Mire BJ'] = sector + elif 'PoD Falling Bridge Ledge' in r_set: + merge_sectors['Hammerjump'] = sector + elif 'PoD Arena Bridge' in r_set: + merge_sectors['Arenahover'] = sector + elif 'Mire BK Chest Ledge' in r_set: + merge_sectors['Mire BJ'] = sector + for key, old_sector in sectors_to_remove.items(): + merge_sectors[key].regions.extend(old_sector.regions) + merge_sectors[key].outstanding_doors.extend(old_sector.outstanding_doors) + all_sectors.remove(old_sector) + + # those with split region starts like Desert/Skull combine for key layouts def combine_layouts(recombinant_builders, dungeon_builders, entrances_map): for recombine in recombinant_builders.values(): @@ -693,7 +1292,9 @@ def combine_layouts(recombinant_builders, dungeon_builders, entrances_map): def valid_region_to_explore(region, world, player): - return region.type == RegionType.Dungeon or region.name in world.inaccessible_regions[player] + return region and (region.type == RegionType.Dungeon + or region.name in world.inaccessible_regions[player] + or (region.name == 'Hyrule Castle Ledge' and world.mode[player] == 'standard')) def shuffle_key_doors(builder, world, player): @@ -756,10 +1357,10 @@ def calc_used_dungeon_items(builder): base = 4 if builder.bk_required and not builder.bk_provided: base += 1 - if builder.name == 'Hyrule Castle': - base -= 1 # Missing compass/map - if builder.name == 'Agahnims Tower': - base -= 2 # Missing both compass/map + # if builder.name == 'Hyrule Castle': + # base -= 1 # Missing compass/map + # if builder.name == 'Agahnims Tower': + # base -= 2 # Missing both compass/map # gt can lose map once compasses work return base @@ -882,7 +1483,7 @@ def find_key_door_candidates(region, checked, world, player): d = ext.door if d and d.controller: d = d.controller - if d is not None and not d.blocked and d.dest is not last_door and d.dest is not last_region and d not in checked_doors: + if d and not d.blocked and not d.entranceFlag and d.dest is not last_door and d.dest is not last_region and d not in checked_doors: valid = False if 0 <= d.doorListPos < 4 and d.type in [DoorType.Interior, DoorType.Normal, DoorType.SpiralStairs]: room = world.get_room(d.roomIndex, player) @@ -907,7 +1508,8 @@ def find_key_door_candidates(region, checked, world, player): valid = True if valid and d not in candidates: candidates.append(d) - if ext.connected_region.type != RegionType.Dungeon or ext.connected_region.dungeon == dungeon: + connected = ext.connected_region + if connected and (connected.type != RegionType.Dungeon or connected.dungeon == dungeon): queue.append((ext.connected_region, d, current)) if d is not None: checked_doors.append(d) @@ -954,12 +1556,12 @@ def reassign_key_doors(builder, world, player): else: room.delete(d.doorListPos) d.smallKey = False - elif d.type is DoorType.Interior and d not in flat_proposal and d.dest not in flat_proposal: + elif d.type is DoorType.Interior and d not in flat_proposal and d.dest not in flat_proposal and not d.entranceFlag: world.get_room(d.roomIndex, player).change(d.doorListPos, DoorKind.Normal) d.smallKey = False d.dest.smallKey = False queue.remove(d.dest) - elif d.type is DoorType.Normal and d not in flat_proposal: + elif d.type is DoorType.Normal and d not in flat_proposal and not d.entranceFlag: world.get_room(d.roomIndex, player).change(d.doorListPos, DoorKind.Normal) d.smallKey = False for dp in world.paired_doors[player]: @@ -1012,8 +1614,9 @@ def change_door_to_small_key(d, world, player): def smooth_door_pairs(world, player): all_doors = [x for x in world.doors if x.player == player] skip = set() + bd_candidates, dashable_counts, bombable_counts = defaultdict(list), defaultdict(int), defaultdict(int) for door in all_doors: - if door.type in [DoorType.Normal, DoorType.Interior] and door not in skip: + if door.type in [DoorType.Normal, DoorType.Interior] and door not in skip and not door.entranceFlag: partner = door.dest skip.add(partner) room_a = world.get_room(door.roomIndex, player) @@ -1039,19 +1642,18 @@ def smooth_door_pairs(world, player): remove_pair(door, world, player) elif type_a in [DoorKind.Bombable, DoorKind.Dashable] or type_b in [DoorKind.Bombable, DoorKind.Dashable]: if valid_pair: - if type_a == type_b: - add_pair(door, partner, world, player) - spoiler_type = 'Bomb Door' if type_a == DoorKind.Bombable else 'Dash Door' - world.spoiler.set_door_type(door.name + ' <-> ' + partner.name, spoiler_type, player) - else: + new_type = type_a + if type_a != type_b: new_type = DoorKind.Dashable if type_a == DoorKind.Dashable or type_b == DoorKind.Dashable else DoorKind.Bombable if type_a != new_type: room_a.change(door.doorListPos, new_type) if type_b != new_type: room_b.change(partner.doorListPos, new_type) - add_pair(door, partner, world, player) - spoiler_type = 'Bomb Door' if new_type == DoorKind.Bombable else 'Dash Door' - world.spoiler.set_door_type(door.name + ' <-> ' + partner.name, spoiler_type, player) + add_pair(door, partner, world, player) + spoiler_type = 'Bomb Door' if new_type == DoorKind.Bombable else 'Dash Door' + world.spoiler.set_door_type(door.name + ' <-> ' + partner.name, spoiler_type, player) + counter = bombable_counts if new_type == DoorKind.Bombable else dashable_counts + counter[door.entrance.parent_region.dungeon] += 1 else: if type_a in [DoorKind.Bombable, DoorKind.Dashable]: room_a.change(door.doorListPos, DoorKind.Normal) @@ -1059,8 +1661,9 @@ def smooth_door_pairs(world, player): elif type_b in [DoorKind.Bombable, DoorKind.Dashable]: room_b.change(partner.doorListPos, DoorKind.Normal) remove_pair(partner, world, player) - elif world.experimental[player] and valid_pair and type_a != DoorKind.SmallKey and type_b != DoorKind.SmallKey: - random_door_type(door, partner, world, player, type_a, type_b, room_a, room_b) + elif valid_pair and type_a != DoorKind.SmallKey and type_b != DoorKind.SmallKey: + bd_candidates[door.entrance.parent_region.dungeon].append(door) + shuffle_bombable_dashable(bd_candidates, bombable_counts, dashable_counts, world, player) world.paired_doors[player] = [x for x in world.paired_doors[player] if x.pair or x.original] @@ -1097,22 +1700,59 @@ def stateful_door(door, kind): return False -def random_door_type(door, partner, world, player, type_a, type_b, room_a, room_b): - r_kind = random.choices([DoorKind.Normal, DoorKind.Bombable, DoorKind.Dashable], [15, 4, 6], k=1)[0] - if r_kind != DoorKind.Normal: - if door.type == DoorType.Normal: - add_pair(door, partner, world, player) - if type_a != r_kind: - room_a.change(door.doorListPos, r_kind) - if type_b != r_kind: - room_b.change(partner.doorListPos, r_kind) - spoiler_type = 'Bomb Door' if r_kind == DoorKind.Bombable else 'Dash Door' - world.spoiler.set_door_type(door.name + ' <-> ' + partner.name, spoiler_type, player) +def shuffle_bombable_dashable(bd_candidates, bombable_counts, dashable_counts, world, player): + if world.doorShuffle[player] == 'basic': + for dungeon, candidates in bd_candidates.items(): + diff = bomb_dash_counts[dungeon.name][1] - dashable_counts[dungeon] + if diff > 0: + for chosen in random.sample(candidates, min(diff, len(candidates))): + change_pair_type(chosen, DoorKind.Dashable, world, player) + candidates.remove(chosen) + diff = bomb_dash_counts[dungeon.name][0] - bombable_counts[dungeon] + if diff > 0: + for chosen in random.sample(candidates, min(diff, len(candidates))): + change_pair_type(chosen, DoorKind.Bombable, world, player) + candidates.remove(chosen) + for excluded in candidates: + remove_pair_type_if_present(excluded, world, player) + elif world.doorShuffle[player] == 'crossed': + all_candidates = sum(bd_candidates.values(), []) + all_bomb_counts = sum(bombable_counts.values()) + all_dash_counts = sum(dashable_counts.values()) + if all_dash_counts < 8: + for chosen in random.sample(all_candidates, min(8 - all_dash_counts, len(all_candidates))): + change_pair_type(chosen, DoorKind.Dashable, world, player) + all_candidates.remove(chosen) + if all_bomb_counts < 12: + for chosen in random.sample(all_candidates, min(12 - all_bomb_counts, len(all_candidates))): + change_pair_type(chosen, DoorKind.Bombable, world, player) + all_candidates.remove(chosen) + for excluded in all_candidates: + remove_pair_type_if_present(excluded, world, player) -def overworld_prep(world, player): - find_inaccessible_regions(world, player) - add_inaccessible_doors(world, player) +def change_pair_type(door, new_type, world, player): + room_a = world.get_room(door.roomIndex, player) + room_a.change(door.doorListPos, new_type) + if door.type != DoorType.Interior: + room_b = world.get_room(door.dest.roomIndex, player) + room_b.change(door.dest.doorListPos, new_type) + add_pair(door, door.dest, world, player) + spoiler_type = 'Bomb Door' if new_type == DoorKind.Bombable else 'Dash Door' + world.spoiler.set_door_type(door.name + ' <-> ' + door.dest.name, spoiler_type, player) + + +def remove_pair_type_if_present(door, world, player): + room_a = world.get_room(door.roomIndex, player) + if room_a.kind(door) in [DoorKind.Bombable, DoorKind.Dashable]: + room_a.change(door.doorListPos, DoorKind.Normal) + if door.type != DoorType.Interior: + remove_pair(door, world, player) + if door.type != DoorType.Interior: + room_b = world.get_room(door.dest.roomIndex, player) + if room_b.kind(door.dest) in [DoorKind.Bombable, DoorKind.Dashable]: + room_b.change(door.dest.doorListPos, DoorKind.Normal) + remove_pair(door.dest, world, player) def find_inaccessible_regions(world, player): @@ -1135,8 +1775,9 @@ def find_inaccessible_regions(world, player): queue.append(parent) for ext in next_region.exits: connect = ext.connected_region - if connect and connect.type is not RegionType.Dungeon and connect not in queue and connect not in visited_regions: - queue.append(connect) + if connect and connect not in queue and connect not in visited_regions: + if connect.type is not RegionType.Dungeon or connect.name.endswith(' Portal'): + queue.append(connect) world.inaccessible_regions[player].extend([r.name for r in all_regions.difference(visited_regions) if valid_inaccessible_region(r)]) logger = logging.getLogger('') logger.debug('Inaccessible Regions:') @@ -1145,18 +1786,25 @@ def find_inaccessible_regions(world, player): def find_accessible_entrances(world, player, builder): - # todo: lobby shuffle - if world.mode[player] == 'standard' and builder.name == 'Hyrule Castle': - return ['Hyrule Castle Lobby'] - entrances = default_dungeon_entrances[builder.name] + entrances = [region.name for region in (portal.door.entrance.parent_region for portal in world.dungeon_portals[player]) if region.dungeon.name == builder.name] + entrances.extend(drop_entrances[builder.name]) - if world.mode[player] != 'inverted': + if world.mode[player] == 'standard' and builder.name == 'Hyrule Castle': + start_regions = ['Hyrule Castle Courtyard'] + elif world.mode[player] != 'inverted': start_regions = ['Links House', 'Sanctuary'] else: start_regions = ['Inverted Links House', 'Inverted Dark Sanctuary'] regs = convert_regions(start_regions, world, player) visited_regions = set() visited_entrances = [] + + # Add Sanctuary as an additional entrance in open mode, since you can save and quit to there + if world.mode[player] == 'open' and world.get_region('Sanctuary', player).dungeon.name == builder.name and 'Sanctuary' not in entrances: + entrances.append('Sanctuary') + visited_entrances.append('Sanctuary') + regs.remove(world.get_region('Sanctuary', player)) + queue = deque(regs) while len(queue) > 0: next_region = queue.popleft() @@ -1169,7 +1817,7 @@ def find_accessible_entrances(world, player, builder): connect = ext.connected_region if connect is None or ext.door and ext.door.blocked: continue - if connect.name in entrances: + if connect.name in entrances and connect not in visited_entrances: visited_entrances.append(connect.name) elif connect and connect not in queue and connect not in visited_regions: queue.append(connect) @@ -1181,11 +1829,20 @@ def valid_inaccessible_region(r): def add_inaccessible_doors(world, player): + if world.mode[player] == 'standard': + create_doors_for_inaccessible_region('Hyrule Castle Ledge', world, player) # todo: ignore standard mode hyrule castle ledge? for inaccessible_region in world.inaccessible_regions[player]: - region = world.get_region(inaccessible_region, player) - for ext in region.exits: - create_door(world, player, ext.name, region.name) + create_doors_for_inaccessible_region(inaccessible_region, world, player) + + +def create_doors_for_inaccessible_region(inaccessible_region, world, player): + region = world.get_region(inaccessible_region, player) + for ext in region.exits: + create_door(world, player, ext.name, region.name) + if ext.connected_region.name.endswith(' Portal'): + for more_exts in ext.connected_region.exits: + create_door(world, player, more_exts.name, ext.connected_region.name) def create_door(world, player, entName, region_name): @@ -1209,11 +1866,13 @@ def check_required_paths(paths, world, player): states_to_explore = defaultdict(list) for path in paths[dungeon_name]: if type(path) is tuple: - states_to_explore[tuple([path[0]])].append(path[1]) + states_to_explore[tuple([path[0]])] = path[1] else: states_to_explore[tuple(builder.path_entrances)].append(path) cached_initial_state = None for start_regs, dest_regs in states_to_explore.items(): + if type(dest_regs) is not list: + dest_regs = [dest_regs] check_paths = convert_regions(dest_regs, world, player) start_regions = convert_regions(start_regs, world, player) initial = start_regs == tuple(builder.path_entrances) @@ -1238,10 +1897,8 @@ def check_required_paths(paths, world, player): def determine_init_crystal(initial, state, start_regions): - if initial: + if initial or state is None: return CrystalBarrier.Orange - if state is None: - raise Exception('Please start path checking from the entrances') if len(start_regions) > 1: raise NotImplementedError('Path checking for multiple start regions (not the entrances) not implemented, use more paths instead') start_region = start_regions[0] @@ -1252,7 +1909,7 @@ def determine_init_crystal(initial, state, start_regions): elif start_region in state.visited_orange: return CrystalBarrier.Orange else: - raise Exception('Can\'t get to %s from initial state', start_region.name) + raise Exception(f'Can\'t get to {start_region.name} from initial state') def explore_state(state, world, player): @@ -1264,19 +1921,30 @@ def explore_state(state, world, player): state.add_all_doors_check_unattached(connect_region, world, player) +def explore_state_not_inaccessible(state, world, player): + while len(state.avail_doors) > 0: + door = state.next_avail_door().door + connect_region = world.get_entrance(door.name, player).connected_region + if state.can_traverse(door) and not state.visited(connect_region) and connect_region.type == RegionType.Dungeon: + state.visit_region(connect_region) + state.add_all_doors_check_unattached(connect_region, world, player) + + def check_if_regions_visited(state, check_paths): - valid = True + valid = False breaking_region = None for region_target in check_paths: - if not state.visited_at_all(region_target): - valid = False - breaking_region = region_target + if state.visited_at_all(region_target): + valid = True break + elif not breaking_region: + breaking_region = region_target return valid, breaking_region def check_for_pinball_fix(state, bad_region, world, player): pinball_region = world.get_region('Skull Pinball', player) + # todo: lobby shuffle if bad_region.name == 'Skull 2 West Lobby' and state.visited_at_all(pinball_region): # revisit this for entrance shuffle door = world.get_door('Skull Pinball WS', player) room = world.get_room(door.roomIndex, player) @@ -1297,12 +1965,17 @@ class DROptions(Flag): Town_Portal = 0x02 # If on, Players will start with mirror scroll Map_Info = 0x04 Debug = 0x08 + Rails = 0x10 # If on, draws rails + OriginalPalettes = 0x20 + Reserved = 0x40 # Reserved for PoD sliding wall? Open_Desert_Wall = 0x80 # If on, pre opens the desert wall, no fire required # DATA GOES DOWN HERE logical_connections = [ ('Hyrule Dungeon North Abyss Catwalk Dropdown', 'Hyrule Dungeon North Abyss'), + ('Hyrule Dungeon Cellblock Door', 'Hyrule Dungeon Cell'), + ('Hyrule Dungeon Cell Exit', 'Hyrule Dungeon Cellblock'), ('Hyrule Castle Throne Room Tapestry', 'Hyrule Castle Behind Tapestry'), ('Hyrule Castle Tapestry Backwards', 'Hyrule Castle Throne Room'), ('Sewers Secret Room Push Block', 'Sewers Secret Room Blocked Path'), @@ -1374,6 +2047,8 @@ logical_connections = [ ('Thieves Blocked Entry Path', 'Thieves Basement Block'), ('Thieves Conveyor Bridge Block Path', 'Thieves Conveyor Block'), ('Thieves Conveyor Block Path', 'Thieves Conveyor Bridge'), + ("Thieves Blind's Cell Door", "Thieves Blind's Cell Interior"), + ("Thieves Blind's Cell Exit", "Thieves Blind's Cell"), ('Ice Cross Bottom Push Block Left', 'Ice Floor Switch'), ('Ice Cross Right Push Block Top', 'Ice Bomb Drop'), ('Ice Big Key Push Block', 'Ice Dead End'), @@ -1431,6 +2106,7 @@ logical_connections = [ ('GT Hookshot South-North Path', 'GT Hookshot North Platform'), ('GT Hookshot Platform Blue Barrier', 'GT Hookshot South Entry'), ('GT Hookshot Entry Blue Barrier', 'GT Hookshot South Platform'), + ('GT Hookshot Entry Boomerang Path', 'GT Hookshot South Platform'), ('GT Double Switch Orange Barrier', 'GT Double Switch Switches'), ('GT Double Switch Orange Barrier 2', 'GT Double Switch Key Spot'), ('GT Double Switch Transition Blue', 'GT Double Switch Exit'), @@ -2080,3 +2756,112 @@ boss_indicator = { 'Turtle Rock': (0x18, 'TR Boss SW'), 'Ganons Tower': (0x1a, 'GT Agahnim 2 SW') } + +# tuples: (non-boss, boss) +# see Utils for other notes +palette_map = { + 'Hyrule Castle': (0x0, None), + 'Eastern Palace': (0xb, None), + 'Desert Palace': (0x9, 0x4, 'Desert Boss SW'), + 'Agahnims Tower': (0x0, 0xc, 'Tower Agahnim 1 SW'), # ancillary 0x26 for F1, F4 + 'Swamp Palace': (0xa, 0x8, 'Swamp Boss SW'), + 'Palace of Darkness': (0xf, 0x10, 'PoD Boss SE'), + 'Misery Mire': (0x11, 0x12, 'Mire Boss SW'), + 'Skull Woods': (0xd, 0xe, 'Skull Spike Corner SW'), + 'Ice Palace': (0x13, 0x14, 'Ice Antechamber NE'), + 'Tower of Hera': (0x6, None), + 'Thieves Town': (0x17, None), # the attic uses 0x23 + 'Turtle Rock': (0x18, 0x19, 'TR Boss SW'), + 'Ganons Tower': (0x28, 0x1b, 'GT Agahnim 2 SW'), # other palettes: 0x1a (other) 0x24 (Gauntlet - Lanmo) 0x25 (conveyor-torch-wizzrode moldorm pit f5?) +} + +# implications: +# pipe room -> where lava chest is +# dark alley -> where pod basement is +# conveyor star or hidden star -> where DMs room is +# falling bridge -> where Rando room is +# petting zoo -> where firesnake is +# basement cage -> where tile room is +# bob's room -> where big chest/hope/torch are +# invis bridges -> compass room + +palette_non_influencers = { + 'PoD Shooter Room Up Stairs', 'TR Lava Dual Pipes EN', 'TR Lava Dual Pipes WN', 'TR Lava Dual Pipes SW', + 'TR Lava Escape SE', 'TR Lava Escape NW', 'PoD Arena Ledge ES', 'Swamp Big Key Ledge WN', 'Swamp Hub Dead Ledge EN', + 'Swamp Map Ledge EN', 'Skull Pot Prison ES', 'Skull Pot Prison SE', 'PoD Dark Alley NE', 'GT Conveyor Star Pits EN', + 'GT Hidden Star ES', 'GT Falling Bridge WN', 'GT Falling Bridge WS', 'GT Petting Zoo SE', + 'Hera Basement Cage Up Stairs', "GT Bob's Room SE", 'GT Warp Maze (Pits) ES', 'GT Invisible Bridges WS', + 'Mire Over Bridge E', 'Mire Over Bridge W', 'Eastern Courtyard Ledge S', 'Eastern Courtyard Ledge W', + 'Eastern Courtyard Ledge E', 'Eastern Map Valley WN', 'Eastern Map Valley SW', 'Mire BK Door Room EN', + 'Mire BK Door Room N', 'TR Tile Room SE', 'TR Tile Room NE', 'TR Refill SE', 'Eastern Cannonball Ledge WN', + 'Eastern Cannonball Ledge Key Door EN', 'Mire Neglected Room SE', 'Mire Neglected Room NE', 'Mire Chest View NE', + 'TR Compass Room NW', 'Desert Dead End Edge', 'Hyrule Dungeon South Abyss Catwalk North Edge', + 'Hyrule Dungeon South Abyss Catwalk West Edge' +} + + +portal_map = { + 'Sanctuary': ('Sanctuary', 'Sanctuary Exit', 'Enter HC (Sanc)'), + 'Hyrule Castle West': ('Hyrule Castle Entrance (West)', 'Hyrule Castle Exit (West)', 'Enter HC (West)'), + 'Hyrule Castle South': ('Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', 'Enter HC (South)'), + 'Hyrule Castle East': ('Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)', 'Enter HC (East)'), + 'Eastern': ('Eastern Palace', 'Eastern Palace Exit', 'Enter Eastern Palace'), + 'Desert West': ('Desert Palace Entrance (West)', 'Desert Palace Exit (West)', 'Enter Desert (West)'), + 'Desert South': ('Desert Palace Entrance (South)', 'Desert Palace Exit (South)', 'Enter Desert (South)'), + 'Desert East': ('Desert Palace Entrance (East)', 'Desert Palace Exit (East)', 'Enter Desert (East)'), + 'Desert Back': ('Desert Palace Entrance (North)', 'Desert Palace Exit (North)', 'Enter Desert (North)'), + 'Turtle Rock Lazy Eyes': ('Dark Death Mountain Ledge (West)', 'Turtle Rock Ledge Exit (West)', 'Enter Turtle Rock (Lazy Eyes)'), + 'Turtle Rock Eye Bridge': ('Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Isolated Ledge Exit', 'Enter Turtle Rock (Laser Bridge)'), + 'Turtle Rock Chest': ('Dark Death Mountain Ledge (East)', 'Turtle Rock Ledge Exit (East)', 'Enter Turtle Rock (Chest)'), + 'Agahnims Tower': ('Agahnims Tower', 'Agahnims Tower Exit', 'Enter Agahnims Tower'), + 'Swamp': ('Swamp Palace', 'Swamp Palace Exit', 'Enter Swamp'), + 'Palace of Darkness': ('Palace of Darkness', 'Palace of Darkness Exit', 'Enter Palace of Darkness'), + 'Mire': ('Misery Mire', 'Misery Mire Exit', 'Enter Misery Mire'), + 'Skull 2 West': ('Skull Woods Second Section Door (West)', 'Skull Woods Second Section Exit (West)', 'Enter Skull Woods 2 (West)'), + 'Skull 2 East': ('Skull Woods Second Section Door (East)', 'Skull Woods Second Section Exit (East)', 'Enter Skull Woods 2 (East)'), + 'Skull 1': ('Skull Woods First Section Door', 'Skull Woods First Section Exit', 'Enter Skull Woods 1'), + 'Skull 3': ('Skull Woods Final Section', 'Skull Woods Final Section Exit', 'Enter Skull Woods 3'), + 'Ice': ('Ice Palace', 'Ice Palace Exit', 'Enter Ice Palace'), + 'Hera': ('Tower of Hera', 'Tower of Hera Exit', 'Enter Hera'), + 'Thieves Town': ('Thieves Town', 'Thieves Town Exit', 'Enter Thieves Town'), + 'Turtle Rock Main': ('Turtle Rock', 'Turtle Rock Exit (Front)', 'Enter Turtle Rock (Main)'), + 'Ganons Tower': ('Ganons Tower', 'Ganons Tower Exit', 'Enter Ganons Tower'), +} + +split_portals = { + 'Desert Palace': ['Back', 'Main'], + 'Skull Woods': ['1', '2', '3'] +} + +split_portal_defaults = { + 'Desert Palace': { + 'Desert Back Lobby': 'Back', + 'Desert Main Lobby': 'Main', + 'Desert West Lobby': 'Main', + 'Desert East Lobby': 'Main' + }, + 'Skull Woods': { + 'Skull 1 Lobby': '1', + 'Skull 2 East Lobby': '2', + 'Skull 2 West Lobby': '2', + 'Skull 3 Lobby': '3' + } +} + +bomb_dash_counts = { + 'Hyrule Castle': (0, 2), + 'Eastern Palace': (0, 0), + 'Desert Palace': (0, 0), + 'Agahnims Tower': (0, 0), + 'Swamp Palace': (2, 0), + 'Palace of Darkness': (3, 2), + 'Misery Mire': (2, 0), + 'Skull Woods': (2, 0), + 'Ice Palace': (0, 0), + 'Tower of Hera': (0, 0), + 'Thieves Town': (1, 1), + 'Turtle Rock': (0, 2), # 2 bombs kind of for entrances + 'Ganons Tower': (2, 1) +} + + diff --git a/Doors.py b/Doors.py index 2536538d..460bf0d9 100644 --- a/Doors.py +++ b/Doors.py @@ -1,5 +1,5 @@ -from BaseClasses import Door, DoorType, Direction, CrystalBarrier +from BaseClasses import Door, DoorType, Direction, CrystalBarrier, Portal from RoomData import PairedDoor # constants @@ -46,18 +46,21 @@ def create_doors(world, player): create_door(player, 'Hyrule Castle Lobby W', Nrml).dir(We, 0x61, Mid, High).toggler().pos(0), create_door(player, 'Hyrule Castle Lobby E', Nrml).dir(Ea, 0x61, Mid, High).toggler().pos(2), create_door(player, 'Hyrule Castle Lobby WN', Nrml).dir(We, 0x61, Top, High).pos(1), + create_door(player, 'Hyrule Castle Lobby S', Nrml).dir(So, 0x61, Mid, High).pos(4).portal(Z, 0x22, 1), create_door(player, 'Hyrule Castle Lobby North Stairs', StrS).dir(No, 0x61, Mid, High), create_door(player, 'Hyrule Castle West Lobby E', Nrml).dir(Ea, 0x60, Mid, Low).toggler().pos(1), create_door(player, 'Hyrule Castle West Lobby N', Nrml).dir(No, 0x60, Right, Low).pos(0), create_door(player, 'Hyrule Castle West Lobby EN', Nrml).dir(Ea, 0x60, Top, High).pos(3), + create_door(player, 'Hyrule Castle West Lobby S', Nrml).dir(So, 0x60, Right, High).pos(2).portal(X, 0x02), create_door(player, 'Hyrule Castle East Lobby W', Nrml).dir(We, 0x62, Mid, Low).toggler().pos(0), create_door(player, 'Hyrule Castle East Lobby N', Nrml).dir(No, 0x62, Mid, High).pos(3), create_door(player, 'Hyrule Castle East Lobby NW', Nrml).dir(No, 0x62, Left, Low).pos(2), + create_door(player, 'Hyrule Castle East Lobby S', Nrml).dir(So, 0x62, Left, High).pos(1).portal(Z, 0x22), create_door(player, 'Hyrule Castle East Hall W', Nrml).dir(We, 0x52, Top, Low).pos(0), - create_door(player, 'Hyrule Castle East Hall S', Nrml).dir(So, 0x52, Mid, High).pos(2), - create_door(player, 'Hyrule Castle East Hall SW', Nrml).dir(So, 0x52, Left, Low).pos(1), + create_door(player, 'Hyrule Castle East Hall S', Nrml).dir(So, 0x52, Mid, High).pos(2).portal(Z, 0x22), + create_door(player, 'Hyrule Castle East Hall SW', Nrml).dir(So, 0x52, Left, Low).pos(1).portal(Z, 0x22, 1), create_door(player, 'Hyrule Castle West Hall E', Nrml).dir(Ea, 0x50, Top, Low).pos(0), - create_door(player, 'Hyrule Castle West Hall S', Nrml).dir(So, 0x50, Right, Low).pos(1), + create_door(player, 'Hyrule Castle West Hall S', Nrml).dir(So, 0x50, Right, Low).pos(1).portal(X, 0x02, 1), create_door(player, 'Hyrule Castle Back Hall W', Nrml).dir(We, 0x01, Top, Low).pos(0), create_door(player, 'Hyrule Castle Back Hall E', Nrml).dir(Ea, 0x01, Top, Low).pos(1), create_door(player, 'Hyrule Castle Back Hall Down Stairs', Sprl).dir(Dn, 0x01, 0, HTL).ss(A, 0x2a, 0x00), @@ -80,7 +83,7 @@ def create_doors(world, player): create_door(player, 'Hyrule Dungeon Guardroom Catwalk Edge', Open).dir(Ea, 0x81, None, High).edge(3, S, 0x10), create_door(player, 'Hyrule Dungeon Guardroom Abyss Edge', Open).dir(Ea, 0x81, None, Low).edge(4, X, 0x18), create_door(player, 'Hyrule Dungeon Guardroom N', Nrml).dir(No, 0x81, Left, Low).pos(0), - create_door(player, 'Hyrule Dungeon Armory S', Nrml).dir(So, 0x71, Left, Low).trap(0x2).pos(1), + create_door(player, 'Hyrule Dungeon Armory S', Nrml).dir(So, 0x71, Left, Low).trap(0x2).pos(1).portal(Z, 0x00, 1), create_door(player, 'Hyrule Dungeon Armory ES', Intr).dir(Ea, 0x71, Left, Low).pos(2), create_door(player, 'Hyrule Dungeon Armory Boomerang WS', Intr).dir(We, 0x71, Left, Low).pos(2), create_door(player, 'Hyrule Dungeon Armory Interior Key Door N', Intr).dir(No, 0x71, Left, High).small_key().pos(0), @@ -89,19 +92,21 @@ def create_doors(world, player): create_door(player, 'Hyrule Dungeon Staircase Up Stairs', Sprl).dir(Up, 0x70, 2, LTH).ss(A, 0x32, 0x94, True), create_door(player, 'Hyrule Dungeon Staircase Down Stairs', Sprl).dir(Dn, 0x70, 1, HTH).ss(A, 0x11, 0x58), create_door(player, 'Hyrule Dungeon Cellblock Up Stairs', Sprl).dir(Up, 0x80, 0, HTH).ss(A, 0x1a, 0x44), + create_door(player, 'Hyrule Dungeon Cellblock Door', Lgcl).big_key(), + create_door(player, 'Hyrule Dungeon Cell Exit', Lgcl), # sewers - create_door(player, 'Sewers Behind Tapestry S', Nrml).dir(So, 0x41, Mid, High).no_exit().trap(0x4).pos(0), + create_door(player, 'Sewers Behind Tapestry S', Nrml).dir(So, 0x41, Mid, High).no_exit().trap(0x4).pos(0).portal(Z, 0x22), create_door(player, 'Sewers Behind Tapestry Down Stairs', Sprl).dir(Dn, 0x41, 0, HTH).ss(S, 0x12, 0xb0), create_door(player, 'Sewers Rope Room Up Stairs', Sprl).dir(Up, 0x42, 0, HTH).ss(S, 0x1b, 0x9c), create_door(player, 'Sewers Rope Room North Stairs', StrS).dir(No, 0x42, Mid, High), create_door(player, 'Sewers Dark Cross South Stairs', StrS).dir(So, 0x32, Mid, High), create_door(player, 'Sewers Dark Cross Key Door N', Nrml).dir(No, 0x32, Mid, High).small_key().pos(0), - create_door(player, 'Sewers Water S', Nrml).dir(So, 0x22, Mid, High).small_key().pos(0), + create_door(player, 'Sewers Water S', Nrml).dir(So, 0x22, Mid, High).small_key().pos(0).portal(Z, 0x22), create_door(player, 'Sewers Water W', Nrml).dir(We, 0x22, Bot, High).pos(1), create_door(player, 'Sewers Key Rat E', Nrml).dir(Ea, 0x21, Bot, High).pos(1), create_door(player, 'Sewers Key Rat Key Door N', Nrml).dir(No, 0x21, Right, High).small_key().pos(0), - create_door(player, 'Sewers Secret Room Key Door S', Nrml).dir(So, 0x11, Right, High).small_key().pos(2), + create_door(player, 'Sewers Secret Room Key Door S', Nrml).dir(So, 0x11, Right, High).small_key().pos(2).portal(X, 0x02), create_door(player, 'Sewers Rat Path WS', Intr).dir(We, 0x11, Bot, High).pos(1), create_door(player, 'Sewers Rat Path WN', Intr).dir(We, 0x11, Top, High).pos(0), create_door(player, 'Sewers Secret Room ES', Intr).dir(Ea, 0x11, Bot, High).pos(1), @@ -111,11 +116,14 @@ def create_doors(world, player): create_door(player, 'Sewers Pull Switch Down Stairs', Sprl).dir(Dn, 0x02, 0, HTL).ss(S, 0x12, 0x80), create_door(player, 'Sewers Yet More Rats S', Intr).dir(So, 0x02, Mid, Low).pos(1), create_door(player, 'Sewers Pull Switch N', Intr).dir(No, 0x02, Mid, Low).pos(1), - create_door(player, 'Sewers Pull Switch S', Nrml).dir(So, 0x02, Mid, Low).trap(0x4).toggler().pos(0), + create_door(player, 'Sewers Pull Switch S', Nrml).dir(So, 0x02, Mid, Low).trap(0x4).toggler().pos(0).portal(Z, 0x20, 1), # logically one way the sanc, but should be linked - also toggle create_door(player, 'Sanctuary N', Nrml).dir(No, 0x12, Mid, High).no_exit().toggler().pos(0), + create_door(player, 'Sanctuary S', Nrml).dir(So, 0x12, Mid, High).pos(2).portal(Z, 0x22, 1), + create_door(player, 'Sanctuary Mirror Route', Lgcl), # Eastern Palace + create_door(player, 'Eastern Lobby S', Nrml).dir(So, 0xc9, Mid, High).pos(4).portal(Z, 0x20), create_door(player, 'Eastern Lobby N', Intr).dir(No, 0xc9, Mid, High).pos(0), create_door(player, 'Eastern Lobby Bridge S', Intr).dir(So, 0xc9, Mid, High).pos(0), create_door(player, 'Eastern Lobby NW', Intr).dir(No, 0xc9, Left, High).pos(2), @@ -123,11 +131,11 @@ def create_doors(world, player): create_door(player, 'Eastern Lobby NE', Intr).dir(No, 0xc9, Right, High).pos(3), create_door(player, 'Eastern Lobby Right Ledge SE', Intr).dir(So, 0xc9, Right, High).pos(3), create_door(player, 'Eastern Lobby Bridge N', Nrml).dir(No, 0xc9, Mid, High).pos(1).trap(0x2), - create_door(player, 'Eastern Cannonball S', Nrml).dir(So, 0xb9, Mid, High).pos(2), + create_door(player, 'Eastern Cannonball S', Nrml).dir(So, 0xb9, Mid, High).pos(2).portal(Z, 0x22), create_door(player, 'Eastern Cannonball N', Nrml).dir(No, 0xb9, Mid, High).pos(1), create_door(player, 'Eastern Cannonball Ledge WN', Nrml).dir(We, 0xb9, Top, High).pos(3), create_door(player, 'Eastern Cannonball Ledge Key Door EN', Nrml).dir(Ea, 0xb9, Top, High).small_key().pos(0), - create_door(player, 'Eastern Courtyard Ledge S', Nrml).dir(So, 0xa9, Mid, High).pos(5), + create_door(player, 'Eastern Courtyard Ledge S', Nrml).dir(So, 0xa9, Mid, High).pos(5).portal(Z, 0x22), create_door(player, 'Eastern Courtyard Ledge W', Nrml).dir(We, 0xa9, Mid, High).trap(0x4).pos(0), create_door(player, 'Eastern Courtyard Ledge E', Nrml).dir(Ea, 0xa9, Mid, High).trap(0x2).pos(1), create_door(player, 'Eastern East Wing W', Nrml).dir(We, 0xaa, Mid, High).pos(4), @@ -147,7 +155,7 @@ def create_doors(world, player): create_door(player, 'Eastern Compass Room EN', Intr).dir(Ea, 0xa8, Top, High).pos(3), create_door(player, 'Eastern Hint Tile WN', Intr).dir(We, 0xa8, Top, High).pos(3), create_door(player, 'Eastern Hint Tile EN', Nrml).dir(Ea, 0xa8, Top, Low).pos(4), - create_door(player, 'Eastern Hint Tile Blocked Path SE', Nrml).dir(So, 0xa8, Right, High).small_key().pos(2).kill(), + create_door(player, 'Eastern Hint Tile Blocked Path SE', Nrml).dir(So, 0xa8, Right, High).small_key().pos(2).kill().portal(X, 0x02), create_door(player, 'Eastern Hint Tile Push Block', Lgcl), create_door(player, 'Eastern Courtyard WN', Nrml).dir(We, 0xa9, Top, Low).pos(3), create_door(player, 'Eastern Courtyard EN', Nrml).dir(Ea, 0xa9, Top, Low).pos(4), @@ -155,14 +163,14 @@ def create_doors(world, player): create_door(player, 'Eastern Courtyard Potholes', Hole), create_door(player, 'Eastern Fairies\' Warp', Warp), create_door(player, 'Eastern Map Valley WN', Nrml).dir(We, 0xaa, Top, Low).pos(1), - create_door(player, 'Eastern Map Valley SW', Nrml).dir(So, 0xaa, Left, High).pos(5), + create_door(player, 'Eastern Map Valley SW', Nrml).dir(So, 0xaa, Left, High).pos(5).portal(Z, 0x02), create_door(player, 'Eastern Dark Square NW', Nrml).dir(No, 0xba, Left, High).trap(0x2).pos(1), create_door(player, 'Eastern Dark Square Key Door WN', Nrml).dir(We, 0xba, Top, High).small_key().pos(0), create_door(player, 'Eastern Dark Square EN', Intr).dir(Ea, 0xba, Top, High).pos(2), create_door(player, 'Eastern Dark Pots WN', Intr).dir(We, 0xba, Top, High).pos(2), create_door(player, 'Eastern Big Key EN', Nrml).dir(Ea, 0xb8, Top, High).pos(1), create_door(player, 'Eastern Big Key NE', Nrml).dir(No, 0xb8, Right, High).big_key().pos(0), - create_door(player, 'Eastern Darkness S', Nrml).dir(So, 0x99, Mid, High).small_key().pos(1), + create_door(player, 'Eastern Darkness S', Nrml).dir(So, 0x99, Mid, High).small_key().pos(1).portal(Z, 0x20), create_door(player, 'Eastern Darkness NE', Intr).dir(No, 0x99, Right, High).pos(2), create_door(player, 'Eastern Rupees SE', Intr).dir(So, 0x99, Right, High).pos(2), # Up is a keydoor and down is not. Only the up stairs should be considered a key door for now. @@ -180,6 +188,7 @@ def create_doors(world, player): create_door(player, 'Eastern Boss SE', Nrml).dir(So, 0xc8, Right, High).no_exit().trap(0x4).pos(0), # Desert Palace + create_door(player, 'Desert Main Lobby S', Nrml).dir(So, 0x84, Mid, High).pos(0).portal(Z, 0x22), create_door(player, 'Desert Main Lobby NW Edge', Open).dir(No, 0x84, None, High).edge(3, A, 0x20), create_door(player, 'Desert Main Lobby N Edge', Open).dir(No, 0x84, None, High).edge(4, A, 0xa0), create_door(player, 'Desert Main Lobby NE Edge', Open).dir(No, 0x84, None, High).edge(5, S, 0x20), @@ -191,12 +200,13 @@ def create_doors(world, player): create_door(player, 'Desert Dead End Edge', Open).dir(So, 0x74, None, High).edge(4, Z, 0xa0), create_door(player, 'Desert East Wing W Edge', Open).dir(We, 0x85, None, High).edge(5, A, 0xa0), create_door(player, 'Desert East Wing N Edge', Open).dir(No, 0x85, None, High).edge(6, A, 0x20), + create_door(player, 'Desert East Lobby S', Nrml).dir(So, 0x85, Right, High).pos(2).portal(X, 0x00), create_door(player, 'Desert East Lobby WS', Intr).dir(We, 0x85, Bot, High).pos(3), create_door(player, 'Desert East Wing ES', Intr).dir(Ea, 0x85, Bot, High).pos(3), create_door(player, 'Desert East Wing Key Door EN', Intr).dir(Ea, 0x85, Top, High).small_key().pos(1), create_door(player, 'Desert Compass Key Door WN', Intr).dir(We, 0x85, Top, High).small_key().pos(1), create_door(player, 'Desert Compass NW', Nrml).dir(No, 0x85, Right, High).trap(0x4).pos(0), - create_door(player, 'Desert Cannonball S', Nrml).dir(So, 0x75, Right, High).pos(1), + create_door(player, 'Desert Cannonball S', Nrml).dir(So, 0x75, Right, High).pos(1).portal(Z, 0x02), create_door(player, 'Desert Arrow Pot Corner S Edge', Open).dir(So, 0x75, None, High).edge(6, Z, 0x20), create_door(player, 'Desert Arrow Pot Corner W Edge', Open).dir(We, 0x75, None, High).edge(2, Z, 0x20), create_door(player, 'Desert Arrow Pot Corner NW', Intr).dir(No, 0x75, Left, High).pos(0), @@ -219,10 +229,12 @@ def create_doors(world, player): create_door(player, 'Desert Big Chest SW', Intr).dir(So, 0x73, Left, High).pos(0), create_door(player, 'Desert West Wing N Edge', Open).dir(No, 0x83, None, High).edge(2, S, 0x20), create_door(player, 'Desert West Wing WS', Intr).dir(We, 0x83, Bot, High).pos(2), + create_door(player, 'Desert West S', Nrml).dir(So, 0x83, Left, High).pos(1).portal(Z, 0x00), create_door(player, 'Desert West Lobby ES', Intr).dir(Ea, 0x83, Bot, High).pos(2), create_door(player, 'Desert West Lobby NW', Intr).dir(No, 0x83, Left, High).pos(0), create_door(player, 'Desert Fairy Fountain SW', Intr).dir(So, 0x83, Left, High).pos(0), # Desert Back + create_door(player, 'Desert Back Lobby S', Nrml).dir(So, 0x63, Left, High).pos(2).portal(Z, 0x00), create_door(player, 'Desert Back Lobby NW', Intr).dir(No, 0x63, Left, High).pos(1), create_door(player, 'Desert Tiles 1 SW', Intr).dir(So, 0x63, Left, High).pos(1), create_door(player, 'Desert Tiles 1 Up Stairs', Sprl).dir(Up, 0x63, 0, HTH).ss(A, 0x1b, 0x6c, True).small_key().pos(0), @@ -232,13 +244,14 @@ def create_doors(world, player): create_door(player, 'Desert Four Statues ES', Intr).dir(Ea, 0x53, Bot, High).pos(1), create_door(player, 'Desert Beamos Hall WS', Intr).dir(We, 0x53, Bot, High).pos(1), create_door(player, 'Desert Beamos Hall NE', Nrml).dir(No, 0x53, Right, High).small_key().pos(2), - create_door(player, 'Desert Tiles 2 SE', Nrml).dir(So, 0x43, Right, High).small_key().pos(2).kill(), + create_door(player, 'Desert Tiles 2 SE', Nrml).dir(So, 0x43, Right, High).small_key().pos(2).kill().portal(X, 0x00), create_door(player, 'Desert Tiles 2 NE', Intr).dir(No, 0x43, Right, High).small_key().pos(1), create_door(player, 'Desert Wall Slide SE', Intr).dir(So, 0x43, Right, High).small_key().pos(1), create_door(player, 'Desert Wall Slide NW', Nrml).dir(No, 0x43, Left, High).big_key().pos(0).no_entrance(), - create_door(player, 'Desert Boss SW', Nrml).dir(So, 0x33, Left, High).no_exit().trap(0x4).pos(0), + create_door(player, 'Desert Boss SW', Nrml).dir(So, 0x33, Left, High).no_exit().trap(0x4).pos(0), # .portal(Z, 0x00), problem with enemizer # Hera + create_door(player, 'Hera Lobby S', Nrml).dir(So, 0x77, Mid, Low).pos(0).portal(Z, 0x22, 1), create_door(player, 'Hera Lobby Down Stairs', Sprl).dir(Dn, 0x77, 3, HTL).ss(Z, 0x21, 0x90, False, True), create_door(player, 'Hera Lobby Key Stairs', Sprl).dir(Dn, 0x77, 1, HTL).ss(A, 0x12, 0x80).small_key().pos(1), create_door(player, 'Hera Lobby Up Stairs', Sprl).dir(Up, 0x77, 2, HTL).ss(X, 0x2b, 0x5c, False, True), @@ -275,6 +288,7 @@ def create_doors(world, player): create_door(player, 'Hera Boss Inner Hole', Hole), # Castle Tower + create_door(player, 'Tower Lobby S', Nrml).dir(So, 0xe0, Left, High).pos(3).portal(Z, 0x00), create_door(player, 'Tower Lobby NW', Intr).dir(No, 0xe0, Left, High).pos(1), create_door(player, 'Tower Gold Knights SW', Intr).dir(So, 0xe0, Left, High).pos(1), create_door(player, 'Tower Gold Knights EN', Intr).dir(Ea, 0xe0, Top, High).pos(0), @@ -311,6 +325,7 @@ def create_doors(world, player): create_door(player, 'Tower Agahnim 1 SW', Nrml).dir(So, 0x20, Left, High).no_exit().trap(0x4).pos(0), # Palace of Darkness + create_door(player, 'PoD Lobby S', Nrml).dir(So, 0x4a, Mid, High).pos(4).portal(Z, 0x20), create_door(player, 'PoD Lobby N', Intr).dir(No, 0x4a, Mid, High).pos(3), create_door(player, 'PoD Lobby NW', Intr).dir(No, 0x4a, Left, High).pos(0), create_door(player, 'PoD Lobby NE', Intr).dir(No, 0x4a, Right, High).pos(1), @@ -323,7 +338,7 @@ def create_doors(world, player): create_door(player, 'PoD Shooter Room Up Stairs', Sprl).dir(Up, 0x09, 1, HTH).ss(A, 0x1b, 0x6c, True, True), create_door(player, 'PoD Warp Room Up Stairs', Sprl).dir(Up, 0x09, 0, HTH).ss(S, 0x1a, 0x6c, True, True), create_door(player, 'PoD Warp Room Warp', Warp), - create_door(player, 'PoD Pit Room S', Nrml).dir(So, 0x3a, Mid, High).small_key().pos(0), + create_door(player, 'PoD Pit Room S', Nrml).dir(So, 0x3a, Mid, High).small_key().pos(0).portal(Z, 0x22), create_door(player, 'PoD Pit Room NW', Nrml).dir(No, 0x3a, Left, High).pos(1), create_door(player, 'PoD Pit Room NE', Nrml).dir(No, 0x3a, Right, High).pos(2), create_door(player, 'PoD Pit Room Freefall', Hole), @@ -335,8 +350,8 @@ def create_doors(world, player): create_door(player, 'PoD Basement Ledge Up Stairs', Sprl).dir(Up, 0x0a, 0, HTH).ss(A, 0x1a, 0xec).small_key().pos(0), create_door(player, 'PoD Basement Ledge Drop Down', Lgcl), create_door(player, 'PoD Stalfos Basement Warp', Warp), - create_door(player, 'PoD Arena Main SW', Nrml).dir(So, 0x2a, Left, High).pos(4), - create_door(player, 'PoD Arena Bridge SE', Nrml).dir(So, 0x2a, Right, High).pos(5), + create_door(player, 'PoD Arena Main SW', Nrml).dir(So, 0x2a, Left, High).pos(4).portal(Z, 0x22), + create_door(player, 'PoD Arena Bridge SE', Nrml).dir(So, 0x2a, Right, High).pos(5).portal(X, 0x22), create_door(player, 'PoD Arena Main NW', Nrml).dir(No, 0x2a, Left, High).small_key().pos(1), create_door(player, 'PoD Arena Main NE', Nrml).dir(No, 0x2a, Right, High).no_exit().trap(0x4).pos(0), create_door(player, 'PoD Arena Main Crystal Path', Lgcl), @@ -353,14 +368,14 @@ def create_doors(world, player): create_door(player, 'PoD Map Balcony WS', Nrml).dir(We, 0x2b, Bot, High).pos(1), create_door(player, 'PoD Map Balcony South Stairs', StrS).dir(So, 0x2b, Left, High), create_door(player, 'PoD Conveyor North Stairs', StrS).dir(No, 0x3b, Left, High), - create_door(player, 'PoD Conveyor SW', Nrml).dir(So, 0x3b, Left, High).pos(0), + create_door(player, 'PoD Conveyor SW', Nrml).dir(So, 0x3b, Left, High).pos(0).portal(Z, 0x02), create_door(player, 'PoD Mimics 1 NW', Nrml).dir(No, 0x4b, Left, High).trap(0x4).pos(0), create_door(player, 'PoD Mimics 1 SW', Intr).dir(So, 0x4b, Left, High).pos(1), create_door(player, 'PoD Jelly Hall NW', Intr).dir(No, 0x4b, Left, High).pos(1), create_door(player, 'PoD Jelly Hall NE', Intr).dir(No, 0x4b, Right, High).pos(2), create_door(player, 'PoD Warp Hint SE', Intr).dir(So, 0x4b, Right, High).pos(2), create_door(player, 'PoD Warp Hint Warp', Warp), - create_door(player, 'PoD Falling Bridge SW', Nrml).dir(So, 0x1a, Left, High).small_key().pos(3), + create_door(player, 'PoD Falling Bridge SW', Nrml).dir(So, 0x1a, Left, High).small_key().pos(3).portal(Z, 0x02), create_door(player, 'PoD Falling Bridge WN', Nrml).dir(We, 0x1a, Top, High).small_key().pos(1), create_door(player, 'PoD Falling Bridge EN', Intr).dir(Ea, 0x1a, Top, High).pos(4), create_door(player, 'PoD Falling Bridge Path N', Lgcl), @@ -371,13 +386,13 @@ def create_doors(world, player): create_door(player, 'PoD Compass Room WN', Intr).dir(We, 0x1a, Top, High).pos(4), create_door(player, 'PoD Compass Room SE', Intr).dir(So, 0x1a, Mid, High).small_key().pos(0), create_door(player, 'PoD Harmless Hellway NE', Intr).dir(No, 0x1a, Right, High).small_key().pos(0), - create_door(player, 'PoD Harmless Hellway SE', Nrml).dir(So, 0x1a, Right, High).pos(5), + create_door(player, 'PoD Harmless Hellway SE', Nrml).dir(So, 0x1a, Right, High).pos(5).portal(X, 0x00), create_door(player, 'PoD Compass Room W Down Stairs', Sprl).dir(Dn, 0x1a, 0, HTH).ss(S, 0x12, 0x50, True, True), create_door(player, 'PoD Compass Room E Down Stairs', Sprl).dir(Dn, 0x1a, 1, HTH).ss(S, 0x11, 0xb0, True, True), create_door(player, 'PoD Dark Basement W Up Stairs', Sprl).dir(Up, 0x6a, 0, HTH).ss(S, 0x1b, 0x3c, True), create_door(player, 'PoD Dark Basement E Up Stairs', Sprl).dir(Up, 0x6a, 1, HTH).ss(S, 0x1b, 0x9c, True), create_door(player, 'PoD Dark Alley NE', Nrml).dir(No, 0x6a, Right, High).big_key().pos(0), - create_door(player, 'PoD Mimics 2 SW', Nrml).dir(So, 0x1b, Left, High).pos(1).kill(), + create_door(player, 'PoD Mimics 2 SW', Nrml).dir(So, 0x1b, Left, High).pos(1).kill().portal(Z, 0x00), create_door(player, 'PoD Mimics 2 NW', Intr).dir(No, 0x1b, Left, High).pos(0), create_door(player, 'PoD Bow Statue SW', Intr).dir(So, 0x1b, Left, High).pos(0), create_door(player, 'PoD Bow Statue Down Ladder', Lddr).no_entrance(), @@ -391,6 +406,7 @@ def create_doors(world, player): create_door(player, 'PoD Callback Warp', Warp), create_door(player, 'PoD Boss SE', Nrml).dir(So, 0x5a, Right, High).no_exit().trap(0x4).pos(0), + create_door(player, 'Swamp Lobby S', Nrml).dir(So, 0x28, Mid, High).pos(1).portal(Z, 0x22), create_door(player, 'Swamp Lobby Moat', Lgcl), create_door(player, 'Swamp Entrance Down Stairs', Sprl).dir(Dn, 0x28, 0, HTH).ss(A, 0x11, 0x80).small_key().pos(0), create_door(player, 'Swamp Entrance Moat', Lgcl), @@ -417,7 +433,7 @@ def create_doors(world, player): create_door(player, 'Swamp Hammer Switch SW', Intr).dir(So, 0x37, Left, High).small_key().pos(2), create_door(player, 'Swamp Hammer Switch WN', Nrml).dir(We, 0x37, Top, High).pos(0), create_door(player, 'Swamp Hub ES', Nrml).dir(Ea, 0x36, Bot, High).pos(4), - create_door(player, 'Swamp Hub S', Nrml).dir(So, 0x36, Mid, High).pos(5), + create_door(player, 'Swamp Hub S', Nrml).dir(So, 0x36, Mid, High).pos(5), # .portal(Z, 0x22, 1), couldn't figure this out create_door(player, 'Swamp Hub WS', Nrml).dir(We, 0x36, Bot, High).pos(3), create_door(player, 'Swamp Hub WN', Nrml).dir(We, 0x36, Top, High).small_key().pos(2), create_door(player, 'Swamp Hub Hook Path', Lgcl), @@ -458,7 +474,7 @@ def create_doors(world, player): create_door(player, 'Swamp Attic Down Stairs', Sprl).dir(Dn, 0x54, 0, HTH).ss(Z, 0x12, 0x80).kill(), create_door(player, 'Swamp Attic Left Pit', Hole), create_door(player, 'Swamp Attic Right Pit', Hole), - create_door(player, 'Swamp Push Statue S', Nrml).dir(So, 0x26, Mid, High).small_key().pos(0), + create_door(player, 'Swamp Push Statue S', Nrml).dir(So, 0x26, Mid, High).small_key().pos(0).portal(Z, 0x20), create_door(player, 'Swamp Push Statue NW', Intr).dir(No, 0x26, Left, High).pos(1), create_door(player, 'Swamp Push Statue NE', Intr).dir(No, 0x26, Right, High).pos(2), create_door(player, 'Swamp Push Statue Down Stairs', Sprl).dir(Dn, 0x26, 2, HTH).ss(X, 0x12, 0xc0, False, True), @@ -479,7 +495,7 @@ def create_doors(world, player): create_door(player, 'Swamp Basement Shallows NW', Nrml).dir(No, 0x76, Left, High).toggler().pos(2), create_door(player, 'Swamp Basement Shallows EN', Intr).dir(Ea, 0x76, Top, High).pos(0), create_door(player, 'Swamp Basement Shallows ES', Intr).dir(Ea, 0x76, Bot, High).pos(1), - create_door(player, 'Swamp Waterfall Room SW', Nrml).dir(So, 0x66, Left, Low).toggler().pos(1), + create_door(player, 'Swamp Waterfall Room SW', Nrml).dir(So, 0x66, Left, Low).toggler().pos(1).portal(Z, 0x20, 1), create_door(player, 'Swamp Waterfall Room NW', Intr).dir(No, 0x66, Left, Low).pos(3), create_door(player, 'Swamp Waterfall Room NE', Intr).dir(No, 0x66, Right, Low).pos(0), create_door(player, 'Swamp Refill SW', Intr).dir(So, 0x66, Left, Low).pos(3), @@ -495,10 +511,11 @@ def create_doors(world, player): create_door(player, 'Swamp T NW', Nrml).dir(No, 0x16, Left, High).pos(3), create_door(player, 'Swamp Boss SW', Nrml).dir(So, 0x06, Left, High).no_exit().trap(0x4).pos(0), + create_door(player, 'Skull 1 Lobby S', Nrml).dir(So, 0x58, Left, High).pos(4).portal(Z, 0x00), create_door(player, 'Skull 1 Lobby WS', Nrml).dir(We, 0x58, Bot, High).small_key().pos(1), create_door(player, 'Skull 1 Lobby ES', Intr).dir(Ea, 0x58, Bot, High).pos(5), create_door(player, 'Skull Map Room WS', Intr).dir(We, 0x58, Bot, High).pos(5), - create_door(player, 'Skull Map Room SE', Nrml).dir(So, 0x58, Right, High).small_key().pos(2), + create_door(player, 'Skull Map Room SE', Nrml).dir(So, 0x58, Right, High).small_key().pos(2).portal(X, 0x02), create_door(player, 'Skull Pot Circle WN', Intr).dir(We, 0x58, Top, High).pos(3), create_door(player, 'Skull Pull Switch EN', Intr).dir(Ea, 0x58, Top, High).pos(3), create_door(player, 'Skull Pot Circle Star Path', Lgcl), @@ -512,7 +529,8 @@ def create_doors(world, player): create_door(player, 'Skull Left Drop ES', Intr).dir(Ea, 0x67, Bot, High).pos(1), create_door(player, 'Skull Compass Room WS', Intr).dir(We, 0x67, Bot, High).pos(1), create_door(player, 'Skull Pot Prison ES', Nrml).dir(Ea, 0x57, Bot, High).small_key().pos(2), - create_door(player, 'Skull Pot Prison SE', Nrml).dir(So, 0x57, Right, High).pos(5), + create_door(player, 'Skull Pot Prison SE', Nrml).dir(So, 0x57, Right, High).pos(5).portal(X, 0x00), + create_door(player, 'Skull 2 East Lobby SW', Nrml).dir(So, 0x57, Left, High).pos(3).portal(Z, 0x00), create_door(player, 'Skull 2 East Lobby WS', Nrml).dir(We, 0x57, Bot, High).pos(4), create_door(player, 'Skull 2 East Lobby NW', Intr).dir(No, 0x57, Left, High).pos(1), create_door(player, 'Skull Big Key SW', Intr).dir(So, 0x57, Left, High).pos(1), @@ -520,26 +538,29 @@ def create_doors(world, player): create_door(player, 'Skull Lone Pot EN', Intr).dir(Ea, 0x57, Top, High).pos(0), create_door(player, 'Skull Small Hall ES', Nrml).dir(Ea, 0x56, Bot, High).pos(3), create_door(player, 'Skull Small Hall WS', Intr).dir(We, 0x56, Bot, High).pos(2), + create_door(player, 'Skull 2 West Lobby S', Nrml).dir(So, 0x56, Left, High).pos(1).portal(Z, 0x00), create_door(player, 'Skull 2 West Lobby ES', Intr).dir(Ea, 0x56, Bot, High).pos(2), create_door(player, 'Skull 2 West Lobby NW', Intr).dir(No, 0x56, Left, High).small_key().pos(0), create_door(player, 'Skull X Room SW', Intr).dir(So, 0x56, Left, High).small_key().pos(0), create_door(player, 'Skull Back Drop Star Path', Lgcl), + create_door(player, 'Skull 3 Lobby SW', Nrml).dir(So, 0x59, Left, High).pos(1).portal(Z, 0x02), create_door(player, 'Skull 3 Lobby NW', Nrml).dir(No, 0x59, Left, High).small_key().pos(0), create_door(player, 'Skull 3 Lobby EN', Intr).dir(Ea, 0x59, Top, High).pos(2), create_door(player, 'Skull East Bridge WN', Intr).dir(We, 0x59, Top, High).pos(2), create_door(player, 'Skull East Bridge WS', Intr).dir(We, 0x59, Bot, High).pos(3), create_door(player, 'Skull West Bridge Nook ES', Intr).dir(Ea, 0x59, Bot, High).pos(3), - create_door(player, 'Skull Star Pits SW', Nrml).dir(So, 0x49, Left, High).small_key().pos(2), + create_door(player, 'Skull Star Pits SW', Nrml).dir(So, 0x49, Left, High).small_key().pos(2).portal(Z, 0x00), create_door(player, 'Skull Star Pits ES', Intr).dir(Ea, 0x49, Bot, High).pos(3), create_door(player, 'Skull Torch Room WS', Intr).dir(We, 0x49, Bot, High).pos(3), create_door(player, 'Skull Torch Room WN', Intr).dir(We, 0x49, Top, High).pos(1), create_door(player, 'Skull Vines EN', Intr).dir(Ea, 0x49, Top, High).pos(1), create_door(player, 'Skull Vines NW', Nrml).dir(No, 0x49, Left, High).pos(0), - create_door(player, 'Skull Spike Corner SW', Nrml).dir(So, 0x39, Left, High).no_exit().trap(0x4).pos(0), + create_door(player, 'Skull Spike Corner SW', Nrml).dir(So, 0x39, Left, High).no_exit().trap(0x4).pos(0).portal(Z, 0x00), create_door(player, 'Skull Spike Corner ES', Intr).dir(Ea, 0x39, Bot, High).small_key().pos(1), create_door(player, 'Skull Final Drop WS', Intr).dir(We, 0x39, Bot, High).small_key().pos(1), create_door(player, 'Skull Final Drop Hole', Hole), + create_door(player, 'Thieves Lobby S', Nrml).dir(So, 0xdb, Mid, High).pos(1).portal(Z, 0x22), create_door(player, 'Thieves Lobby N Edge', Open).dir(No, 0xdb, None, Low).edge(7, A, 0x10), create_door(player, 'Thieves Lobby NE Edge', Open).dir(No, 0xdb, None, Low).edge(8, S, 0x18), create_door(player, 'Thieves Lobby E', Nrml).dir(Ea, 0xdb, Mid, High).no_exit().trap(0x4).pos(0), @@ -561,10 +582,10 @@ def create_doors(world, player): create_door(player, 'Thieves Compass Room N Edge', Open).dir(No, 0xdc, None, Low).edge(10, A, 0x10), create_door(player, 'Thieves Compass Room WS Edge', Open).dir(We, 0xdc, None, Low).edge(8, Z, 0x50), create_door(player, 'Thieves Compass Room W', Nrml).dir(We, 0xdc, Mid, High).pos(0), - create_door(player, 'Thieves Hallway SE', Nrml).dir(So, 0xbc, Right, High).small_key().pos(1), + create_door(player, 'Thieves Hallway SE', Nrml).dir(So, 0xbc, Right, High).small_key().pos(1).portal(X, 0x02), create_door(player, 'Thieves Hallway NE', Nrml).dir(No, 0xbc, Right, High).pos(7), create_door(player, 'Thieves Pot Alcove Mid WS', Nrml).dir(We, 0xbc, Bot, High).pos(5), - create_door(player, 'Thieves Pot Alcove Bottom SW', Nrml).dir(So, 0xbc, Left, High).pos(3), + create_door(player, 'Thieves Pot Alcove Bottom SW', Nrml).dir(So, 0xbc, Left, High).pos(3).portal(Z, 0x00), create_door(player, 'Thieves Conveyor Maze WN', Nrml).dir(We, 0xbc, Top, High).pos(4), create_door(player, 'Thieves Hallway WS', Intr).dir(We, 0xbc, Bot, High).small_key().pos(0), create_door(player, 'Thieves Pot Alcove Mid ES', Intr).dir(Ea, 0xbc, Bot, High).small_key().pos(0), @@ -587,7 +608,7 @@ def create_doors(world, player): create_door(player, 'Thieves Triple Bypass SE', Intr).dir(So, 0xbb, Right, High).pos(3), create_door(player, 'Thieves Hellway Crystal EN', Intr).dir(Ea, 0xbb, Top, High).pos(1), create_door(player, 'Thieves Triple Bypass WN', Intr).dir(We, 0xbb, Top, High).pos(1), - create_door(player, 'Thieves Spike Switch SW', Nrml).dir(So, 0xab, Left, High).pos(1), + create_door(player, 'Thieves Spike Switch SW', Nrml).dir(So, 0xab, Left, High).pos(1).portal(Z, 0x00), create_door(player, 'Thieves Spike Switch Up Stairs', Sprl).dir(Up, 0xab, 0, HTH).ss(Z, 0x1a, 0x6c, True, True).small_key().pos(0), create_door(player, 'Thieves Attic Down Stairs', Sprl).dir(Dn, 0x64, 0, HTH).ss(Z, 0x11, 0x80, True, True), create_door(player, 'Thieves Attic ES', Intr).dir(Ea, 0x64, Bot, High).pos(0), @@ -607,6 +628,8 @@ def create_doors(world, player): create_door(player, 'Thieves Lonely Zazak NW', Intr).dir(No, 0x45, Left, High).pos(1), create_door(player, 'Thieves Lonely Zazak ES', Intr).dir(Ea, 0x45, Right, High).pos(3), create_door(player, 'Thieves Blind\'s Cell WS', Intr).dir(We, 0x45, Right, High).pos(3), + create_door(player, "Thieves Blind's Cell Door", Lgcl).big_key(), + create_door(player, "Thieves Blind's Cell Exit", Lgcl), create_door(player, 'Thieves Conveyor Bridge EN', Nrml).dir(Ea, 0x44, Top, High).pos(2), create_door(player, 'Thieves Conveyor Bridge ES', Nrml).dir(Ea, 0x44, Bot, High).pos(3), create_door(player, 'Thieves Conveyor Bridge Block Path', Lgcl), @@ -616,6 +639,7 @@ def create_doors(world, player): create_door(player, 'Thieves Conveyor Block WN', Intr).dir(We, 0x44, Top, High).pos(0), create_door(player, 'Thieves Trap EN', Intr).dir(Ea, 0x44, Left, Top).pos(0), + create_door(player, 'Ice Lobby SE', Nrml).dir(So, 0x0e, Right, High).pos(2).portal(X, 0x00), create_door(player, 'Ice Lobby WS', Intr).dir(We, 0x0e, Bot, High).pos(1), create_door(player, 'Ice Jelly Key ES', Intr).dir(Ea, 0x0e, Bot, High).pos(1), create_door(player, 'Ice Jelly Key Down Stairs', Sprl).dir(Dn, 0x0e, 0, HTH).ss(Z, 0x11, 0x80, True, True).small_key().pos(0), @@ -631,7 +655,7 @@ def create_doors(world, player): create_door(player, 'Ice Cross Right Push Block Bottom', Lgcl), # dynamic create_door(player, 'Ice Cross Top Push Block Bottom', Lgcl), # dynamic create_door(player, 'Ice Cross Top Push Block Right', Lgcl), # dynamic - create_door(player, 'Ice Cross Bottom SE', Nrml).dir(So, 0x1e, Right, High).pos(3), + create_door(player, 'Ice Cross Bottom SE', Nrml).dir(So, 0x1e, Right, High).pos(3).portal(X, 0x00), create_door(player, 'Ice Cross Right ES', Nrml).dir(Ea, 0x1e, Bot, High).trap(0x4).pos(0), create_door(player, 'Ice Bomb Drop Hole', Hole), create_door(player, 'Ice Compass Room NE', Nrml).dir(No, 0x2e, Right, High).pos(0), @@ -642,7 +666,7 @@ def create_doors(world, player): create_door(player, 'Ice Big Key Down Ladder', Lddr), create_door(player, 'Ice Stalfos Hint SE', Intr).dir(So, 0x3e, Right, High).pos(0), create_door(player, 'Ice Conveyor NE', Intr).dir(No, 0x3e, Right, High).no_exit().pos(0), - create_door(player, 'Ice Conveyor SW', Nrml).dir(So, 0x3e, Left, High).small_key().pos(1), + create_door(player, 'Ice Conveyor SW', Nrml).dir(So, 0x3e, Left, High).small_key().pos(1).portal(Z, 0x20), create_door(player, 'Ice Bomb Jump NW', Nrml).dir(No, 0x4e, Left, High).small_key().pos(1), create_door(player, 'Ice Bomb Jump Ledge Orange Barrier', Lgcl), create_door(player, 'Ice Bomb Jump Catwalk Orange Barrier', Lgcl), @@ -651,7 +675,7 @@ def create_doors(world, player): create_door(player, 'Ice Narrow Corridor Down Stairs', Sprl).dir(Dn, 0x4e, 0, HTH).ss(S, 0x52, 0xc0, True, True), create_door(player, 'Ice Pengator Trap Up Stairs', Sprl).dir(Up, 0x6e, 0, HTH).ss(S, 0x5a, 0xac, True, True), create_door(player, 'Ice Pengator Trap NE', Nrml).dir(No, 0x6e, Right, High).trap(0x4).pos(0), - create_door(player, 'Ice Spike Cross SE', Nrml).dir(So, 0x5e, Right, High).pos(2), + create_door(player, 'Ice Spike Cross SE', Nrml).dir(So, 0x5e, Right, High).pos(2).portal(X, 0x00), create_door(player, 'Ice Spike Cross ES', Nrml).dir(Ea, 0x5e, Bot, High).small_key().pos(0), create_door(player, 'Ice Spike Cross WS', Intr).dir(We, 0x5e, Bot, High).pos(3), create_door(player, 'Ice Firebar ES', Intr).dir(Ea, 0x5e, Bot, High).pos(3), @@ -673,7 +697,7 @@ def create_doors(world, player): create_door(player, 'Ice Freezors Ledge ES', Intr).dir(Ea, 0x7e, Bot, High).pos(2), create_door(player, 'Ice Tall Hint WS', Intr).dir(We, 0x7e, Bot, High).pos(1), create_door(player, 'Ice Tall Hint EN', Nrml).dir(Ea, 0x7e, Top, High).pos(2), - create_door(player, 'Ice Tall Hint SE', Nrml).dir(So, 0x7e, Right, High).small_key().pos(0), + create_door(player, 'Ice Tall Hint SE', Nrml).dir(So, 0x7e, Right, High).small_key().pos(0).portal(X, 0x02), create_door(player, 'Ice Hookshot Ledge WN', Nrml).dir(We, 0x7f, Top, High).no_exit().trap(0x4).pos(0).kill(), create_door(player, 'Ice Hookshot Ledge Path', Lgcl), create_door(player, 'Ice Hookshot Balcony Path', Lgcl), @@ -686,7 +710,7 @@ def create_doors(world, player): create_door(player, 'Iced T Up Stairs', Sprl).dir(Up, 0xae, 0, HTH).ss(S, 0x1a, 0x3c, True, True), create_door(player, 'Ice Catwalk WN', Nrml).dir(We, 0xaf, Top, High).pos(1), create_door(player, 'Ice Catwalk NW', Nrml).dir(No, 0xaf, Left, High).pos(0), - create_door(player, 'Ice Many Pots SW', Nrml).dir(So, 0x9f, Left, High).trap(0x2).pos(1), + create_door(player, 'Ice Many Pots SW', Nrml).dir(So, 0x9f, Left, High).trap(0x2).pos(1).portal(Z, 0x00), create_door(player, 'Ice Many Pots WS', Nrml).dir(We, 0x9f, Bot, High).trap(0x4).pos(0), create_door(player, 'Ice Crystal Right ES', Nrml).dir(Ea, 0x9e, Bot, High).pos(3), create_door(player, 'Ice Crystal Right Orange Barrier', Lgcl), @@ -706,18 +730,19 @@ def create_doors(world, player): create_door(player, 'Ice Anti-Fairy SE', Intr).dir(So, 0xbe, Right, High).pos(2), create_door(player, 'Ice Switch Room NE', Intr).dir(No, 0xbe, Right, High).pos(2), create_door(player, 'Ice Switch Room ES', Nrml).dir(Ea, 0xbe, Bot, High).small_key().pos(1), - create_door(player, 'Ice Switch Room SE', Nrml).dir(So, 0xbe, Right, High).trap(0x4).pos(0), + create_door(player, 'Ice Switch Room SE', Nrml).dir(So, 0xbe, Right, High).trap(0x4).pos(0).portal(X, 0x00), create_door(player, 'Ice Refill WS', Nrml).dir(We, 0xbf, Bot, High).small_key().pos(0), create_door(player, 'Ice Fairy Warp', Warp), create_door(player, 'Ice Antechamber NE', Nrml).dir(No, 0xce, Right, High).trap(0x4).pos(0), create_door(player, 'Ice Antechamber Hole', Hole), + create_door(player, 'Mire Lobby S', Nrml).dir(So, 0x98, Left, High).pos(0).portal(Z, 0x20), create_door(player, 'Mire Lobby Gap', Lgcl), create_door(player, 'Mire Post-Gap Gap', Lgcl), create_door(player, 'Mire Post-Gap Down Stairs', Sprl).dir(Dn, 0x98, 0, HTH).ss(X, 0x11, 0x90, False, True), create_door(player, 'Mire 2 Up Stairs', Sprl).dir(Up, 0xd2, 0, HTH).ss(X, 0x1a, 0x7c, False, True), create_door(player, 'Mire 2 NE', Nrml).dir(No, 0xd2, Right, High).trap(0x4).pos(0), - create_door(player, 'Mire Hub SE', Nrml).dir(So, 0xc2, Right, High).pos(5), + create_door(player, 'Mire Hub SE', Nrml).dir(So, 0xc2, Right, High).pos(5).portal(X, 0x22), create_door(player, 'Mire Hub ES', Nrml).dir(Ea, 0xc2, Bot, High).pos(6), create_door(player, 'Mire Hub E', Nrml).dir(Ea, 0xc2, Mid, High).pos(4), create_door(player, 'Mire Hub NE', Nrml).dir(No, 0xc2, Right, High).pos(7), @@ -746,7 +771,7 @@ def create_doors(world, player): create_door(player, 'Mire Map Spot Blue Barrier', Lgcl), create_door(player, 'Mire Crystal Dead End Left Barrier', Lgcl), create_door(player, 'Mire Crystal Dead End Right Barrier', Lgcl), - create_door(player, 'Mire Hidden Shooters SE', Nrml).dir(So, 0xb2, Right, High).pos(6), + create_door(player, 'Mire Hidden Shooters SE', Nrml).dir(So, 0xb2, Right, High).pos(6).portal(X, 0x00), create_door(player, 'Mire Hidden Shooters ES', Nrml).dir(Ea, 0xb2, Bot, High).pos(7), create_door(player, 'Mire Hidden Shooters WS', Intr).dir(We, 0xb2, Bot, High).pos(1), create_door(player, 'Mire Cross ES', Intr).dir(Ea, 0xb2, Bot, High).pos(1), @@ -754,22 +779,22 @@ def create_doors(world, player): create_door(player, 'Mire Hidden Shooters Block Path N', Lgcl), create_door(player, 'Mire Hidden Shooters NE', Intr).dir(No, 0xb2, Right, High).pos(2), create_door(player, 'Mire Minibridge SE', Intr).dir(So, 0xb2, Right, High).pos(2), - create_door(player, 'Mire Cross SW', Nrml).dir(So, 0xb2, Left, High).pos(5), + create_door(player, 'Mire Cross SW', Nrml).dir(So, 0xb2, Left, High).pos(5).portal(Z, 0x00), create_door(player, 'Mire Minibridge NE', Nrml).dir(No, 0xb2, Right, High).pos(4), create_door(player, 'Mire BK Door Room EN', Nrml).dir(Ea, 0xb2, Top, Low).pos(3), create_door(player, 'Mire BK Door Room N', Nrml).dir(No, 0xb2, Mid, High).big_key().pos(0), create_door(player, 'Mire Spikes WS', Nrml).dir(We, 0xb3, Bot, High).pos(3), - create_door(player, 'Mire Spikes SW', Nrml).dir(So, 0xb3, Left, High).pos(4), + create_door(player, 'Mire Spikes SW', Nrml).dir(So, 0xb3, Left, High).pos(4).portal(Z, 0x00), create_door(player, 'Mire Spikes NW', Intr).dir(No, 0xb3, Left, High).small_key().pos(0), create_door(player, 'Mire Ledgehop SW', Intr).dir(So, 0xb3, Left, High).small_key().pos(0), create_door(player, 'Mire Ledgehop WN', Nrml).dir(We, 0xb3, Top, Low).pos(1), create_door(player, 'Mire Ledgehop NW', Nrml).dir(No, 0xb3, Left, High).pos(2), - create_door(player, 'Mire Bent Bridge SW', Nrml).dir(So, 0xa3, Left, High).pos(1), + create_door(player, 'Mire Bent Bridge SW', Nrml).dir(So, 0xa3, Left, High).pos(1).portal(Z, 0x02), create_door(player, 'Mire Bent Bridge W', Nrml).dir(We, 0xa3, Mid, High).pos(0), create_door(player, 'Mire Over Bridge E', Nrml).dir(Ea, 0xa2, Mid, High).pos(2), create_door(player, 'Mire Over Bridge W', Nrml).dir(We, 0xa2, Mid, High).pos(1), - create_door(player, 'Mire Right Bridge SE', Nrml).dir(So, 0xa2, Right, High).pos(3), - create_door(player, 'Mire Left Bridge S', Nrml).dir(So, 0xa2, Mid, High).small_key().pos(0), + create_door(player, 'Mire Right Bridge SE', Nrml).dir(So, 0xa2, Right, High).pos(3).portal(X, 0x22), + create_door(player, 'Mire Left Bridge S', Nrml).dir(So, 0xa2, Mid, High).small_key().pos(0).portal(Z, 0x22), create_door(player, 'Mire Left Bridge Hook Path', Lgcl), create_door(player, 'Mire Left Bridge Down Stairs', Sprl).dir(Dn, 0xa2, 0, HTL).ss(A, 0x12, 0x00), create_door(player, 'Mire Fishbone E', Nrml).dir(Ea, 0xa1, Mid, High).pos(1), @@ -777,7 +802,7 @@ def create_doors(world, player): create_door(player, 'Mire South Fish Blue Barrier', Lgcl), create_door(player, 'Mire Fishbone SE', Nrml).dir(So, 0xa1, Right, High).small_key().pos(0), create_door(player, 'Mire Spike Barrier NE', Nrml).dir(No, 0xb1, Right, High).small_key().pos(1), - create_door(player, 'Mire Spike Barrier SE', Nrml).dir(So, 0xb1, Right, High).pos(2), + create_door(player, 'Mire Spike Barrier SE', Nrml).dir(So, 0xb1, Right, High).pos(2).portal(X, 0x02), create_door(player, 'Mire Spike Barrier ES', Intr).dir(Ea, 0xb1, Bot, High).pos(3), create_door(player, 'Mire Square Rail WS', Intr).dir(We, 0xb1, Bot, High).pos(3), create_door(player, 'Mire Square Rail NW', Intr).dir(No, 0xb1, Left, High).big_key().pos(0), @@ -786,10 +811,10 @@ def create_doors(world, player): create_door(player, 'Mire Wizzrobe Bypass EN', Nrml).dir(Ea, 0xc1, Top, High).pos(5), create_door(player, 'Mire Wizzrobe Bypass NE', Nrml).dir(No, 0xc1, Right, High).pos(6), create_door(player, 'Mire Conveyor Crystal ES', Nrml).dir(Ea, 0xc1, Bot, High).small_key().pos(1), - create_door(player, 'Mire Conveyor Crystal SE', Nrml).dir(So, 0xc1, Right, High).pos(7), + create_door(player, 'Mire Conveyor Crystal SE', Nrml).dir(So, 0xc1, Right, High).pos(7).portal(X, 0x00), create_door(player, 'Mire Conveyor Crystal WS', Intr).dir(We, 0xc1, Bot, High).small_key().pos(0), create_door(player, 'Mire Tile Room ES', Intr).dir(Ea, 0xc1, Bot, High).small_key().pos(0), - create_door(player, 'Mire Tile Room SW', Nrml).dir(So, 0xc1, Left, High).pos(4), + create_door(player, 'Mire Tile Room SW', Nrml).dir(So, 0xc1, Left, High).pos(4).portal(Z, 0x00), create_door(player, 'Mire Tile Room NW', Intr).dir(No, 0xc1, Left, High).pos(3), create_door(player, 'Mire Compass Room SW', Intr).dir(So, 0xc1, Left, High).pos(3), create_door(player, 'Mire Compass Room EN', Intr).dir(Ea, 0xc1, Top, High).pos(2), @@ -838,12 +863,13 @@ def create_doors(world, player): create_door(player, 'Mire Antechamber NW', Nrml).dir(No, 0xa0, Left, High).big_key().pos(0), create_door(player, 'Mire Boss SW', Nrml).dir(So, 0x90, Left, High).no_exit().trap(0x4).pos(0), + create_door(player, 'TR Main Lobby SE', Nrml).dir(So, 0xd6, Right, High).pos(1).portal(X, 0x02), create_door(player, 'TR Lobby Ledge NE', Nrml).dir(No, 0xd6, Right, High).pos(2), create_door(player, 'TR Main Lobby Gap', Lgcl), create_door(player, 'TR Lobby Ledge Gap', Lgcl), create_door(player, 'TR Compass Room NW', Nrml).dir(No, 0xd6, Left, High).pos(0), - create_door(player, 'TR Hub SW', Nrml).dir(So, 0xc6, Left, High).pos(4), - create_door(player, 'TR Hub SE', Nrml).dir(So, 0xc6, Right, High).pos(5), + create_door(player, 'TR Hub SW', Nrml).dir(So, 0xc6, Left, High).pos(4).portal(Z, 0x22), + create_door(player, 'TR Hub SE', Nrml).dir(So, 0xc6, Right, High).pos(5).portal(X, 0x22), create_door(player, 'TR Hub ES', Nrml).dir(Ea, 0xc6, Bot, High).pos(3), create_door(player, 'TR Hub EN', Nrml).dir(Ea, 0xc6, Top, High).pos(2), create_door(player, 'TR Hub NW', Nrml).dir(No, 0xc6, Left, High).small_key().pos(0), @@ -851,9 +877,9 @@ def create_doors(world, player): create_door(player, 'TR Torches Ledge WS', Nrml).dir(We, 0xc7, Bot, High).pos(2), create_door(player, 'TR Torches WN', Nrml).dir(We, 0xc7, Top, High).pos(1), create_door(player, 'TR Torches NW', Nrml).dir(No, 0xc7, Left, High).trap(0x4).pos(0), - create_door(player, 'TR Roller Room SW', Nrml).dir(So, 0xb7, Left, High).pos(0), - create_door(player, 'TR Pokey 1 SW', Nrml).dir(So, 0xb6, Left, High).small_key().pos(2), - create_door(player, 'TR Tile Room SE', Nrml).dir(So, 0xb6, Right, High).pos(4), + create_door(player, 'TR Roller Room SW', Nrml).dir(So, 0xb7, Left, High).pos(0).portal(Z, 0x02), + create_door(player, 'TR Pokey 1 SW', Nrml).dir(So, 0xb6, Left, High).small_key().pos(2).portal(Z, 0x00), + create_door(player, 'TR Tile Room SE', Nrml).dir(So, 0xb6, Right, High).pos(4).portal(X, 0x00), create_door(player, 'TR Tile Room NE', Intr).dir(No, 0xb6, Right, High).pos(1), create_door(player, 'TR Refill SE', Intr).dir(So, 0xb6, Right, High).pos(1), create_door(player, 'TR Pokey 1 NW', Intr).dir(No, 0xb6, Left, High).small_key().pos(3), @@ -865,7 +891,7 @@ def create_doors(world, player): create_door(player, 'TR Pipe Ledge Drop Down', Lgcl), create_door(player, 'TR Lava Dual Pipes EN', Nrml).dir(Ea, 0x14, Top, High).pos(5), create_door(player, 'TR Lava Dual Pipes WN', Nrml).dir(We, 0x14, Top, High).pos(3), - create_door(player, 'TR Lava Dual Pipes SW', Nrml).dir(So, 0x14, Left, High).pos(4), + create_door(player, 'TR Lava Dual Pipes SW', Nrml).dir(So, 0x14, Left, High).pos(4).portal(Z, 0x22), create_door(player, 'TR Lava Island WS', Nrml).dir(We, 0x14, Bot, High).small_key().pos(1), create_door(player, 'TR Lava Island ES', Nrml).dir(Ea, 0x14, Bot, High).pos(6), create_door(player, 'TR Lava Escape SE', Nrml).dir(So, 0x14, Right, High).small_key().pos(0), @@ -881,12 +907,14 @@ def create_doors(world, player): create_door(player, 'TR Hallway ES', Intr).dir(Ea, 0x24, Bot, High).pos(7), create_door(player, 'TR Big View WS', Intr).dir(We, 0x24, Bot, High).pos(7), create_door(player, 'TR Big Chest Gap', Lgcl), + create_door(player, 'TR Big Chest Entrance SE', Nrml).dir(So, 0x24, Right, High).pos(4).kill().portal(X, 0x00), create_door(player, 'TR Big Chest Entrance Gap', Lgcl), create_door(player, 'TR Big Chest NE', Intr).dir(No, 0x24, Right, High).pos(3), create_door(player, 'TR Dodgers SE', Intr).dir(So, 0x24, Right, High).no_exit().pos(3), create_door(player, 'TR Dodgers NE', Nrml).dir(No, 0x24, Right, High).big_key().pos(0), + create_door(player, 'TR Lazy Eyes SE', Nrml).dir(So, 0x23, Right, High).pos(0).portal(X, 0x00), create_door(player, 'TR Lazy Eyes ES', Nrml).dir(Ea, 0x23, Bot, High).pos(1), - create_door(player, 'TR Dash Room SW', Nrml).dir(So, 0x04, Left, High).pos(4), + create_door(player, 'TR Dash Room SW', Nrml).dir(So, 0x04, Left, High).pos(4).portal(Z, 0x00), create_door(player, 'TR Dash Room ES', Intr).dir(Ea, 0x04, Bot, High).pos(2), create_door(player, 'TR Tongue Pull WS', Intr).dir(We, 0x04, Bot, High).pos(2), create_door(player, 'TR Tongue Pull NE', Intr).dir(No, 0x04, Right, High).pos(3), @@ -895,11 +923,12 @@ def create_doors(world, player): create_door(player, 'TR Crystaroller SW', Intr).dir(So, 0x04, Left, High).pos(1), create_door(player, 'TR Crystaroller Down Stairs', Sprl).dir(Dn, 0x04, 0, HTH).ss(A, 0x12, 0x80, True, True).small_key().pos(0), create_door(player, 'TR Dark Ride Up Stairs', Sprl).dir(Up, 0xb5, 0, HTH).ss(A, 0x1b, 0x6c), - create_door(player, 'TR Dark Ride SW', Nrml).dir(So, 0xb5, Left, High).trap(0x4).pos(0), + create_door(player, 'TR Dark Ride SW', Nrml).dir(So, 0xb5, Left, High).trap(0x4).pos(0).portal(Z, 0x22), create_door(player, 'TR Dash Bridge NW', Nrml).dir(No, 0xc5, Left, High).pos(1), - create_door(player, 'TR Dash Bridge SW', Nrml).dir(So, 0xc5, Left, High).pos(2), + create_door(player, 'TR Dash Bridge SW', Nrml).dir(So, 0xc5, Left, High).pos(2).portal(Z, 0x02), create_door(player, 'TR Dash Bridge WS', Nrml).dir(We, 0xc5, Bot, High).small_key().pos(0), create_door(player, 'TR Eye Bridge NW', Nrml).dir(No, 0xd5, Left, High).pos(1), + create_door(player, 'TR Eye Bridge SW', Nrml).dir(So, 0xd5, Left, High).pos(0).portal(Z, 0x02), create_door(player, 'TR Crystal Maze ES', Nrml).dir(Ea, 0xc4, Bot, High).small_key().pos(0), create_door(player, 'TR Crystal Maze Forwards Path', Lgcl), create_door(player, 'TR Crystal Maze Blue Path', Lgcl), @@ -907,8 +936,9 @@ def create_doors(world, player): create_door(player, 'TR Crystal Maze North Stairs', StrS).dir(No, 0xc4, Mid, High), create_door(player, 'TR Final Abyss South Stairs', StrS).dir(So, 0xb4, Mid, High), create_door(player, 'TR Final Abyss NW', Nrml).dir(No, 0xb4, Left, High).big_key().pos(0), - create_door(player, 'TR Boss SW', Nrml).dir(So, 0xa4, Left, High).no_exit().trap(0x4).pos(0), + create_door(player, 'TR Boss SW', Nrml).dir(So, 0xa4, Left, High).no_exit().trap(0x4).pos(0), # .portal(Z, 0x00), -enemizer doesn't work + create_door(player, 'GT Lobby S', Nrml).dir(So, 0x0c, Mid, High).pos(0).portal(Z, 0x22), create_door(player, 'GT Lobby Left Down Stairs', Sprl).dir(Dn, 0x0c, 1, HTL).ss(A, 0x0f, 0x80), create_door(player, 'GT Lobby Up Stairs', Sprl).dir(Up, 0x0c, 2, HTH).ss(A, 0x1b, 0xec), create_door(player, 'GT Lobby Right Down Stairs', Sprl).dir(Dn, 0x0c, 0, HTL).ss(S, 0x12, 0x80), @@ -922,8 +952,8 @@ def create_doors(world, player): create_door(player, 'GT Big Chest NW', Intr).dir(No, 0x8c, Left, High).pos(1), create_door(player, 'GT Blocked Stairs Down Stairs', Sprl).dir(Dn, 0x8c, 3, HTH).ss(Z, 0x12, 0x40, True, True).kill(), create_door(player, 'GT Blocked Stairs Block Path', Lgcl), - create_door(player, 'GT Big Chest SW', Nrml).dir(So, 0x8c, Left, High).pos(4), - create_door(player, 'GT Bob\'s Room SE', Nrml).dir(So, 0x8c, Right, High).pos(5).kill(), + create_door(player, 'GT Big Chest SW', Nrml).dir(So, 0x8c, Left, High).pos(4).portal(Z, 0x00), + create_door(player, 'GT Bob\'s Room SE', Nrml).dir(So, 0x8c, Right, High).pos(5).kill().portal(X, 0x00), create_door(player, 'GT Bob\'s Room Hole', Hole), create_door(player, 'GT Tile Room WN', Nrml).dir(We, 0x8d, Top, High).pos(2), create_door(player, 'GT Tile Room EN', Intr).dir(Ea, 0x8d, Top, High).small_key().pos(1), @@ -933,7 +963,7 @@ def create_doors(world, player): create_door(player, 'GT Speed Torch North Path', Lgcl), create_door(player, 'GT Speed Torch WS', Intr).dir(We, 0x8d, Bot, High).pos(4), create_door(player, 'GT Pots n Blocks ES', Intr).dir(Ea, 0x8d, Bot, High).pos(4), - create_door(player, 'GT Speed Torch SE', Nrml).dir(So, 0x8d, Right, High).trap(0x4).pos(0), + create_door(player, 'GT Speed Torch SE', Nrml).dir(So, 0x8d, Right, High).trap(0x4).pos(0).portal(X, 0x02), create_door(player, 'GT Crystal Conveyor NE', Nrml).dir(No, 0x9d, Right, High).pos(0).kill(), create_door(player, 'GT Crystal Conveyor WN', Intr).dir(We, 0x9d, Top, High).pos(2), create_door(player, 'GT Compass Room EN', Intr).dir(Ea, 0x9d, Top, High).pos(2), @@ -954,10 +984,11 @@ def create_doors(world, player): create_door(player, 'GT Hookshot South-North Path', Lgcl), create_door(player, 'GT Hookshot Platform Blue Barrier', Lgcl), create_door(player, 'GT Hookshot Entry Blue Barrier', Lgcl), + create_door(player, 'GT Hookshot Entry Boomerang Path', Lgcl), create_door(player, 'GT Hookshot NW', Nrml).dir(No, 0x8b, Left, High).pos(4), create_door(player, 'GT Hookshot ES', Intr).dir(Ea, 0x8b, Bot, High).small_key().pos(1), create_door(player, 'GT Map Room WS', Intr).dir(We, 0x8b, Bot, High).small_key().pos(1), - create_door(player, 'GT Hookshot SW', Nrml).dir(So, 0x8b, Left, High).pos(3), + create_door(player, 'GT Hookshot SW', Nrml).dir(So, 0x8b, Left, High).pos(3).portal(Z, 0x02), create_door(player, 'GT Double Switch NW', Nrml).dir(No, 0x9b, Left, High).pos(1).kill(), create_door(player, 'GT Double Switch Orange Barrier', Lgcl), create_door(player, 'GT Double Switch Orange Barrier 2', Lgcl), @@ -991,11 +1022,11 @@ def create_doors(world, player): create_door(player, 'GT Warp Maze - Main Rails Right Mid Warp', Warp), create_door(player, 'GT Warp Maze - Pot Rail Warp', Warp), create_door(player, 'GT Warp Maze (Rails) WS', Nrml).dir(We, 0x7d, Bot, High).pos(1), - create_door(player, 'GT Petting Zoo SE', Nrml).dir(So, 0x7d, Right, High).trap(0x4).pos(0), + create_door(player, 'GT Petting Zoo SE', Nrml).dir(So, 0x7d, Right, High).trap(0x4).pos(0).portal(X, 0x00), create_door(player, 'GT Conveyor Star Pits EN', Nrml).dir(Ea, 0x7b, Top, High).small_key().pos(1), create_door(player, 'GT Hidden Star ES', Nrml).dir(Ea, 0x7b, Bot, High).pos(2).kill(), create_door(player, 'GT Hidden Star Warp', Warp), - create_door(player, 'GT DMs Room SW', Nrml).dir(So, 0x7b, Left, High).trap(0x4).pos(0), + create_door(player, 'GT DMs Room SW', Nrml).dir(So, 0x7b, Left, High).trap(0x4).pos(0).portal(Z, 0x00), create_door(player, 'GT Falling Bridge WN', Nrml).dir(We, 0x7c, Top, High).small_key().pos(2), create_door(player, 'GT Falling Bridge WS', Nrml).dir(We, 0x7c, Bot, High).pos(3), create_door(player, 'GT Randomizer Room ES', Nrml).dir(Ea, 0x7c, Bot, High).pos(1), @@ -1014,7 +1045,7 @@ def create_doors(world, player): create_door(player, 'GT Mimics 2 NE', Intr).dir(No, 0x6b, Right, High).pos(1), create_door(player, 'GT Dash Hall SE', Intr).dir(So, 0x6b, Right, High).pos(1), create_door(player, 'GT Dash Hall NE', Nrml).dir(No, 0x6b, Right, High).big_key().pos(0), - create_door(player, 'GT Hidden Spikes SE', Nrml).dir(So, 0x5b, Right, High).small_key().pos(0), + create_door(player, 'GT Hidden Spikes SE', Nrml).dir(So, 0x5b, Right, High).small_key().pos(0).portal(X, 0x02), create_door(player, 'GT Hidden Spikes EN', Nrml).dir(Ea, 0x5b, Top, High).trap(0x2).pos(1), create_door(player, 'GT Cannonball Bridge WN', Nrml).dir(We, 0x5c, Top, High).pos(1), create_door(player, 'GT Cannonball Bridge SE', Intr).dir(So, 0x5c, Right, High).pos(0), @@ -1025,7 +1056,7 @@ def create_doors(world, player): create_door(player, 'GT Gauntlet 2 EN', Intr).dir(Ea, 0x5d, Top, High).pos(2), create_door(player, 'GT Gauntlet 2 SW', Intr).dir(So, 0x5d, Left, High).pos(0), create_door(player, 'GT Gauntlet 3 NW', Intr).dir(No, 0x5d, Left, High).pos(0), - create_door(player, 'GT Gauntlet 3 SW', Nrml).dir(So, 0x5d, Left, High).trap(0x2).pos(1), + create_door(player, 'GT Gauntlet 3 SW', Nrml).dir(So, 0x5d, Left, High).trap(0x2).pos(1).portal(Z, 0x00), create_door(player, 'GT Gauntlet 4 NW', Nrml).dir(No, 0x6d, Left, High).trap(0x4).pos(0), create_door(player, 'GT Gauntlet 4 SW', Intr).dir(So, 0x6d, Left, High).pos(1), create_door(player, 'GT Gauntlet 5 NW', Intr).dir(No, 0x6d, Left, High).pos(1), @@ -1042,7 +1073,7 @@ def create_doors(world, player): create_door(player, 'GT Dashing Bridge NE', Intr).dir(No, 0xa5, Right, High).pos(1), create_door(player, 'GT Wizzrobes 2 SE', Intr).dir(So, 0xa5, Right, High).pos(1), create_door(player, 'GT Wizzrobes 2 NE', Nrml).dir(No, 0xa5, Right, High).trap(0x4).pos(0), - create_door(player, 'GT Conveyor Bridge SE', Nrml).dir(So, 0x95, Right, High).pos(0), + create_door(player, 'GT Conveyor Bridge SE', Nrml).dir(So, 0x95, Right, High).pos(0).portal(X, 0x02), create_door(player, 'GT Conveyor Bridge EN', Nrml).dir(Ea, 0x95, Top, High).pos(1), create_door(player, 'GT Torch Cross WN', Nrml).dir(We, 0x96, Top, High).pos(1), create_door(player, 'GT Torch Cross ES', Intr).dir(Ea, 0x96, Bot, High).pos(0), @@ -1056,7 +1087,7 @@ def create_doors(world, player): create_door(player, 'GT Bomb Conveyor EN', Intr).dir(Ea, 0x3d, Top, High).small_key().pos(1), create_door(player, 'GT Bomb Conveyor SW', Intr).dir(So, 0x3d, Left, High).pos(3), create_door(player, 'GT Crystal Circles NW', Intr).dir(No, 0x3d, Left, High).pos(3), - create_door(player, 'GT Crystal Circles SW', Nrml).dir(So, 0x3d, Left, High).small_key().pos(2), + create_door(player, 'GT Crystal Circles SW', Nrml).dir(So, 0x3d, Left, High).small_key().pos(2).portal(Z, 0x00), create_door(player, 'GT Left Moldorm Ledge NW', Nrml).dir(No, 0x4d, Left, High).small_key().pos(0).kill(), create_door(player, 'GT Left Moldorm Ledge Drop Down', Lgcl), create_door(player, 'GT Right Moldorm Ledge Drop Down', Lgcl), @@ -1209,6 +1240,7 @@ def create_doors(world, player): world.get_door('GT Hookshot South-East Path', player).c_switch() world.get_door('GT Hookshot ES', player).c_switch() world.get_door('GT Hookshot Platform Blue Barrier', player).c_switch() + world.get_door('GT Hookshot Entry Boomerang Path', player).c_switch() world.get_door('GT Double Switch Orange Path', player).c_switch() world.get_door('GT Double Switch Blue Path', player).c_switch() world.get_door('GT Spike Crystals WN', player).c_switch() @@ -1239,6 +1271,70 @@ def create_doors(world, player): assign_entrances(world, player) + dungeon_portals = [ + create_portal(player, 'Sanctuary', world.get_door('Sanctuary S', player), 0x02, 0x02), + create_portal(player, 'Hyrule Castle West', world.get_door('Hyrule Castle West Lobby S', player), 0x03, 0x04), + create_portal(player, 'Hyrule Castle South', world.get_door('Hyrule Castle Lobby S', player), 0x04, 0x06), + create_portal(player, 'Hyrule Castle East', world.get_door('Hyrule Castle East Lobby S', player), 0x05, 0x08), + create_portal(player, 'Eastern', world.get_door('Eastern Lobby S', player), 0x08, 0x12, 0), + create_portal(player, 'Desert South', world.get_door('Desert Main Lobby S', player), 0x09, 0x14), + create_portal(player, 'Desert East', world.get_door('Desert East Lobby S', player), 0x0a, 0x16), + create_portal(player, 'Desert West', world.get_door('Desert West S', player), 0x0b, 0x18), + create_portal(player, 'Desert Back', world.get_door('Desert Back Lobby S', player), 0x0c, 0x1a, 1), + create_portal(player, 'Turtle Rock Lazy Eyes', world.get_door('TR Lazy Eyes SE', player), 0x15, 0x2c), + create_portal(player, 'Turtle Rock Eye Bridge', world.get_door('TR Eye Bridge SW', player), 0x18, 0x32), + create_portal(player, 'Turtle Rock Chest', world.get_door('TR Big Chest Entrance SE', player), 0x19, 0x34), + create_portal(player, 'Agahnims Tower', world.get_door('Tower Lobby S', player), 0x24, 0x4a), + create_portal(player, 'Swamp', world.get_door('Swamp Lobby S', player), 0x25, 0x4c, 4), + create_portal(player, 'Palace of Darkness', world.get_door('PoD Lobby S', player), 0x26, 0x4e, 5), + create_portal(player, 'Mire', world.get_door('Mire Lobby S', player), 0x27, 0x50, 7), + create_portal(player, 'Skull 2 West', world.get_door('Skull 2 West Lobby S', player), 0x28, 0x52), + create_portal(player, 'Skull 2 East', world.get_door('Skull 2 East Lobby SW', player), 0x29, 0x54), + create_portal(player, 'Skull 1', world.get_door('Skull 1 Lobby S', player), 0x2a, 0x56), + create_portal(player, 'Skull 3', world.get_door('Skull 3 Lobby SW', player), 0x2b, 0x58, 6), + create_portal(player, 'Ice', world.get_door('Ice Lobby SE', player), 0x2d, 0x5c, 8), + create_portal(player, 'Hera', world.get_door('Hera Lobby S', player), 0x33, 0x5a, 2), + create_portal(player, 'Thieves Town', world.get_door('Thieves Lobby S', player), 0x34, 0x6a, 10), + create_portal(player, 'Turtle Rock Main', world.get_door('TR Main Lobby SE', player), 0x35, 0x68, 9), + create_portal(player, 'Ganons Tower', world.get_door('GT Lobby S', player), 0x37, 0x70), + ] + world.dungeon_portals[player] += dungeon_portals + + world.get_door('Sanctuary S', player).dead_end(allowPassage=True) + world.get_door('TR Big Chest Entrance SE', player).passage = False + world.get_door('Sewers Secret Room Key Door S', player).dungeonLink = 'Hyrule Castle' + world.get_door('Desert Cannonball S', player).dead_end() + # world.get_door('Desert Boss SW', player).dead_end() + # world.get_door('Desert Boss SW', player).dungeonLink = 'Desert Palace' + world.get_door('Skull 1 Lobby S', player).dungeonLink = 'Skull Woods' + world.get_door('Skull Map Room SE', player).dungeonLink = 'Skull Woods' + world.get_door('Skull Spike Corner SW', player).dungeonLink = 'Skull Woods' + world.get_door('Skull Spike Corner SW', player).dead_end() + world.get_door('Thieves Pot Alcove Bottom SW', player).dead_end() + world.get_door('Ice Conveyor SW', player).dead_end(allowPassage=True) + world.get_door('Mire Right Bridge SE', player).dead_end(allowPassage=True) + world.get_door('TR Roller Room SW', player).dead_end() + world.get_door('TR Tile Room SE', player).dead_end() + # world.get_door('TR Boss SW', player).dead_end() + # world.get_door('TR Boss SW', player).dungeonLink = 'Turtle Rock' + world.get_door('GT Petting Zoo SE', player).dead_end() + world.get_door('GT DMs Room SW', player).dead_end() + world.get_door("GT Bob\'s Room SE", player).passage = False + world.get_door('PoD Mimics 2 SW', player).bk_shuffle_req = True + world.get_door('Desert Tiles 2 SE', player).bk_shuffle_req = True # key-drop note (todo) + + # can't unlink from boss right now + world.get_door('Hera Lobby S', player).dungeonLink = 'Tower of Hera' + # can't unlink from skull woods right now + world.get_door('Skull 2 West Lobby S', player).dungeonLink = 'Skull Woods' + + world.get_door('Ice Spike Cross SE', player).dungeonLink = 'linkIceFalls' + world.get_door('Ice Tall Hint SE', player).dungeonLink = 'linkIceFalls' + world.get_door('Ice Switch Room SE', player).dungeonLink = 'linkIceFalls' + + world.get_door('Ice Cross Bottom SE', player).dungeonLink = 'linkIceFalls2' + world.get_door('Ice Conveyor SW', player).dungeonLink = 'linkIceFalls2' + def create_paired_doors(world, player): world.paired_doors[player] = [ @@ -1304,3 +1400,8 @@ def create_door(player, name, door_type): def ugly_door(door): door.ugly = True return door + + +def create_portal(player, name, door, ent, ext, boss_exit_idx=-1): + door.entranceFlag = True + return Portal(player, name, door, ent, ext, boss_exit_idx) diff --git a/DungeonGenerator.py b/DungeonGenerator.py index 84c42a86..d14715b2 100644 --- a/DungeonGenerator.py +++ b/DungeonGenerator.py @@ -9,9 +9,9 @@ import operator as op import time from typing import List -from BaseClasses import DoorType, Direction, CrystalBarrier, RegionType, Polarity, PolSlot, flooded_keys +from BaseClasses import DoorType, Direction, CrystalBarrier, RegionType, Polarity, PolSlot, flooded_keys, Sector from BaseClasses import Hook, hook_from_door -from Regions import key_only_locations, dungeon_events, flooded_keys_reverse +from Regions import dungeon_events, flooded_keys_reverse from Dungeons import dungeon_regions, split_region_starts from RoomData import DoorKind @@ -30,6 +30,12 @@ class GraphPiece: # Dungeons shouldn't be generated until all entrances are appropriately accessible def pre_validate(builder, entrance_region_names, split_dungeon, world, player): entrance_regions = convert_regions(entrance_region_names, world, player) + excluded = {} + for region in entrance_regions: + portal = next((x for x in world.dungeon_portals[player] if x.door.entrance.parent_region == region), None) + if portal and portal.destination: + excluded[region] = None + entrance_regions = [x for x in entrance_regions if x not in excluded.keys()] proposed_map = {} doors_to_connect = {} all_regions = set() @@ -41,11 +47,11 @@ def pre_validate(builder, entrance_region_names, split_dungeon, world, player): all_regions.update(sector.regions) bk_needed = bk_needed or determine_if_bk_needed(sector, split_dungeon, world, player) bk_special = bk_special or check_for_special(sector) - paths = determine_required_paths(world, player, split_dungeon, all_regions, builder.name)[builder.name] + paths = determine_paths_for_dungeon(world, player, all_regions, builder.name) dungeon, hangers, hooks = gen_dungeon_info(builder.name, builder.sectors, entrance_regions, all_regions, proposed_map, doors_to_connect, bk_needed, bk_special, world, player) - return check_valid(dungeon, hangers, hooks, proposed_map, doors_to_connect, all_regions, - bk_needed, paths, entrance_regions) + return check_valid(builder.name, dungeon, hangers, hooks, proposed_map, doors_to_connect, all_regions, + bk_needed, bk_special, paths, entrance_regions, world, player) def generate_dungeon(builder, entrance_region_names, split_dungeon, world, player): @@ -69,11 +75,14 @@ def generate_dungeon_main(builder, entrance_region_names, split_dungeon, world, proposed_map = builder.valid_proposal else: proposed_map = generate_dungeon_find_proposal(builder, entrance_region_names, split_dungeon, world, player) + builder.valid_proposal = proposed_map queue = collections.deque(proposed_map.items()) while len(queue) > 0: a, b = queue.popleft() connect_doors(a, b) queue.remove((b, a)) + if len(builder.sectors) == 0: + return Sector() available_sectors = list(builder.sectors) master_sector = available_sectors.pop() for sub_sector in available_sectors: @@ -87,6 +96,12 @@ def generate_dungeon_find_proposal(builder, entrance_region_names, split_dungeon logger = logging.getLogger('') name = builder.name entrance_regions = convert_regions(entrance_region_names, world, player) + excluded = {} + for region in entrance_regions: + portal = next((x for x in world.dungeon_portals[player] if x.door.entrance.parent_region == region), None) + if portal and portal.destination: + excluded[region] = None + entrance_regions = [x for x in entrance_regions if x not in excluded.keys()] doors_to_connect = {} all_regions = set() bk_needed = False @@ -106,7 +121,7 @@ def generate_dungeon_find_proposal(builder, entrance_region_names, split_dungeon attempt = 1 finished = False # flag if standard and this is hyrule castle - paths = determine_required_paths(world, player, split_dungeon, all_regions, name)[name] + paths = determine_paths_for_dungeon(world, player, all_regions, name) while not finished: # what are my choices? itr += 1 @@ -125,8 +140,8 @@ def generate_dungeon_find_proposal(builder, entrance_region_names, split_dungeon dungeon, hangers, hooks = gen_dungeon_info(name, builder.sectors, entrance_regions, all_regions, proposed_map, doors_to_connect, bk_needed, bk_special, world, player) dungeon_cache[depth] = dungeon, hangers, hooks - valid = check_valid(dungeon, hangers, hooks, proposed_map, doors_to_connect, all_regions, - bk_needed, paths, entrance_regions) + valid = check_valid(name, dungeon, hangers, hooks, proposed_map, doors_to_connect, all_regions, + bk_needed, bk_special, paths, entrance_regions, world, player) else: dungeon, hangers, hooks = dungeon_cache[depth] valid = True @@ -181,7 +196,11 @@ def determine_if_bk_needed(sector, split_dungeon, world, player): def check_for_special(sector): - return 'Hyrule Dungeon Cellblock' in sector.region_set() + for region in sector.regions: + for loc in region.locations: + if loc.forced_big_key(): + return True + return False def gen_dungeon_info(name, available_sectors, entrance_regions, all_regions, proposed_map, valid_doors, bk_needed, bk_special, world, player): @@ -190,11 +209,12 @@ def gen_dungeon_info(name, available_sectors, entrance_regions, all_regions, pro start = ExplorationState(dungeon=name) start.big_key_special = bk_special group_flags, door_map = find_bk_groups(name, available_sectors, proposed_map, bk_special) + bk_flag = False if world.bigkeyshuffle[player] and not bk_special else bk_needed def exception(d): return name == 'Skull Woods 2' and d.name == 'Skull Pinball WS' original_state = extend_reachable_state_improved(entrance_regions, start, proposed_map, all_regions, - valid_doors, bk_needed, world, player, exception) + valid_doors, bk_flag, world, player, exception) dungeon['Origin'] = create_graph_piece_from_state(None, original_state, original_state, proposed_map, exception) either_crystal = True # if all hooks from the origin are either, explore all bits with either for hook, crystal in dungeon['Origin'].hooks.items(): @@ -206,7 +226,7 @@ def gen_dungeon_info(name, available_sectors, entrance_regions, all_regions, pro o_state_cache = {} for sector in available_sectors: for door in sector.outstanding_doors: - if not door.stonewall and door not in proposed_map.keys(): + if door not in proposed_map.keys(): hanger_set.add(door) bk_flag = group_flags[door_map[door]] parent = door.entrance.parent_region @@ -385,21 +405,22 @@ def filter_choices(next_hanger, door, orig_hang, prev_choices, hook_candidates): return next_hanger != door and orig_hang != next_hanger and door not in hook_candidates -def check_valid(dungeon, hangers, hooks, proposed_map, doors_to_connect, all_regions, - bk_needed, paths, entrance_regions): +def check_valid(name, dungeon, hangers, hooks, proposed_map, doors_to_connect, all_regions, + bk_needed, bk_special, paths, entrance_regions, world, player): # evaluate if everything is still plausible # only origin is left in the dungeon and not everything is connected if len(dungeon.keys()) <= 1 and len(proposed_map.keys()) < len(doors_to_connect): return False # origin has no more hooks, but not all doors have been proposed - possible_bks = len(dungeon['Origin'].possible_bk_locations) - true_origin_hooks = [x for x in dungeon['Origin'].hooks.keys() if not x.bigKey or possible_bks > 0 or not bk_needed] - if len(true_origin_hooks) == 0 and len(proposed_map.keys()) < len(doors_to_connect): - return False - if len(true_origin_hooks) == 0 and bk_needed and possible_bks == 0 and len(proposed_map.keys()) == len( - doors_to_connect): - return False + if not world.bigkeyshuffle[player]: + possible_bks = len(dungeon['Origin'].possible_bk_locations) + true_origin_hooks = [x for x in dungeon['Origin'].hooks.keys() if not x.bigKey or possible_bks > 0 or not bk_needed] + if len(true_origin_hooks) == 0 and len(proposed_map.keys()) < len(doors_to_connect): + return False + if len(true_origin_hooks) == 0 and bk_needed and possible_bks == 0 and len(proposed_map.keys()) == len( + doors_to_connect): + return False for key in hangers.keys(): if len(hooks[key]) > 0 and len(hangers[key]) == 0: return False @@ -425,7 +446,7 @@ def check_valid(dungeon, hangers, hooks, proposed_map, doors_to_connect, all_reg if len(outstanding_doors[key]) > 0 and len(hangers[key]) == 0 and len(hooks[opp_key]) == 0: return False all_visited = set() - bk_possible = not bk_needed + bk_possible = not bk_needed or (world.bigkeyshuffle[player] and not bk_special) for piece in dungeon.values(): all_visited.update(piece.visited_regions) if not bk_possible and len(piece.possible_bk_locations) > 0: @@ -434,7 +455,8 @@ def check_valid(dungeon, hangers, hooks, proposed_map, doors_to_connect, all_reg return False if not bk_possible: return False - if not valid_paths(paths, entrance_regions, doors_to_connect, all_regions, proposed_map): + if not valid_paths(name, paths, entrance_regions, doors_to_connect, all_regions, proposed_map, + bk_needed, bk_special, world, player): return False new_hangers_found = True accessible_hook_types = [] @@ -463,7 +485,8 @@ def check_valid(dungeon, hangers, hooks, proposed_map, doors_to_connect, all_reg return len(all_hangers.difference(hanger_matching)) == 0 -def valid_paths(paths, entrance_regions, valid_doors, all_regions, proposed_map): +def valid_paths(name, paths, entrance_regions, valid_doors, all_regions, proposed_map, + bk_needed, bk_special, world, player): for path in paths: if type(path) is tuple: target = path[1] @@ -475,76 +498,84 @@ def valid_paths(paths, entrance_regions, valid_doors, all_regions, proposed_map) else: target = path start_regions = entrance_regions - if not valid_path(start_regions, target, valid_doors, proposed_map): + if not valid_path(name, start_regions, target, valid_doors, proposed_map, all_regions, + bk_needed, bk_special, world, player): return False return True -def valid_path(starting_regions, target, valid_doors, proposed_map): - queue = deque(starting_regions) - visited = set(starting_regions) - while len(queue) > 0: - region = queue.popleft() - if region.name == target: +def valid_path(name, starting_regions, target, valid_doors, proposed_map, all_regions, + bk_needed, bk_special, world, player): + target_regions = set() + if type(target) is not list: + for region in all_regions: + if target == region.name: + target_regions.add(region) + break + else: + for region in all_regions: + if region.name in target: + target_regions.add(region) + + start = ExplorationState(dungeon=name) + start.big_key_special = bk_special + bk_flag = False if world.bigkeyshuffle[player] and not bk_special else bk_needed + + def exception(d): + return name == 'Skull Woods 2' and d.name == 'Skull Pinball WS' + original_state = extend_reachable_state_improved(starting_regions, start, proposed_map, all_regions, + valid_doors, bk_flag, world, player, exception) + + for exp_door in original_state.unattached_doors: + if not exp_door.door.blocked: + return True # outstanding connection possible + for target in target_regions: + if original_state.visited_at_all(target): return True - for ext in region.exits: - connect = ext.connected_region - if connect is None and ext.name in valid_doors: - door = valid_doors[ext.name] - if not door.blocked: - if door in proposed_map: - new_region = proposed_map[door].entrance.parent_region - if new_region not in visited: - visited.add(new_region) - queue.append(new_region) - else: - return True # outstanding connection possible - elif connect is not None: - door = ext.door - if door is not None and not door.blocked and connect not in visited: - visited.add(connect) - queue.append(connect) return False # couldn't find an outstanding door or the target -def determine_required_paths(world, player, split_dungeon=False, all_regions=None, name=None): - if all_regions is None: - all_regions = set() - paths = { - 'Hyrule Castle': ['Hyrule Castle Lobby', 'Hyrule Castle West Lobby', 'Hyrule Castle East Lobby'], - 'Eastern Palace': ['Eastern Boss'], - 'Desert Palace': ['Desert Main Lobby', 'Desert East Lobby', 'Desert West Lobby', 'Desert Boss'], - 'Tower of Hera': ['Hera Boss'], - 'Agahnims Tower': ['Tower Agahnim 1'], - 'Palace of Darkness': ['PoD Boss'], - 'Swamp Palace': ['Swamp Boss'], - 'Skull Woods': ['Skull 1 Lobby', 'Skull 2 East Lobby', 'Skull 2 West Lobby', 'Skull Boss'], - 'Thieves Town': ['Thieves Boss', ('Thieves Blind\'s Cell', 'Thieves Boss')], - 'Ice Palace': ['Ice Boss'], - 'Misery Mire': ['Mire Boss'], - 'Turtle Rock': ['TR Main Lobby', 'TR Lazy Eyes', 'TR Big Chest Entrance', 'TR Eye Bridge', 'TR Boss'], - 'Ganons Tower': ['GT Agahnim 2'], - 'Skull Woods 1': ['Skull 1 Lobby'], - 'Skull Woods 2': ['Skull 2 East Lobby', 'Skull 2 West Lobby'], - 'Skull Woods 3': [], - 'Desert Palace Main': ['Desert Main Lobby', 'Desert East Lobby', 'Desert West Lobby'], - 'Desert Palace Back': [] - } - if world.mode[player] == 'standard': - paths['Hyrule Castle'].append('Hyrule Dungeon Cellblock') - # noinspection PyTypeChecker - paths['Hyrule Castle'].append(('Hyrule Dungeon Cellblock', 'Sanctuary')) - if world.doorShuffle[player] in ['basic']: - paths['Thieves Town'].append('Thieves Attic Window') - if split_dungeon: - if world.get_region('Desert Boss', player) in all_regions: - paths[name].append('Desert Boss') - if world.get_region('Skull Boss', player) in all_regions: - paths[name].append('Skull Boss') +def determine_required_paths(world, player): + paths = {} + for name, builder in world.dungeon_layouts[player].items(): + all_regions = builder.master_sector.regions + paths[name] = determine_paths_for_dungeon(world, player, all_regions, name) return paths +boss_path_checks = ['Eastern Boss', 'Desert Boss', 'Hera Boss', 'Tower Agahnim 1', 'PoD Boss', 'Swamp Boss', + 'Skull Boss', 'Ice Boss', 'Mire Boss', 'TR Boss', 'GT Agahnim 2'] +# pinball is allowed to orphan you +drop_path_checks = ['Skull Pot Circle', 'Skull Left Drop', 'Skull Back Drop', 'Sewers Rat Path'] + + +def determine_paths_for_dungeon(world, player, all_regions, name): + all_r_names = set(x.name for x in all_regions) + paths = [] + non_hole_portals = [] + for portal in world.dungeon_portals[player]: + if portal.door.entrance.parent_region in all_regions: + non_hole_portals.append(portal.door.entrance.parent_region.name) + if portal.destination: + paths.append(portal.door.entrance.parent_region.name) + if world.mode[player] == 'standard' and name == 'Hyrule Castle': + paths.append('Hyrule Dungeon Cellblock') + paths.append(('Hyrule Dungeon Cellblock', 'Sanctuary')) + if world.doorShuffle[player] in ['basic'] and name == 'Thieves Town': + paths.append('Thieves Attic Window') + elif 'Thieves Attic Window' in all_r_names: + paths.append('Thieves Attic Window') + for boss in boss_path_checks: + if boss in all_r_names: + paths.append(boss) + if 'Thieves Boss' in all_r_names: + paths.append('Thieves Boss') + paths.append(('Thieves Blind\'s Cell', 'Thieves Boss')) + for drop_check in drop_path_checks: + if drop_check in all_r_names: + paths.append((drop_check, non_hole_portals)) + return paths def winnow_hangers(hangers, hooks): @@ -588,7 +619,7 @@ def stonewall_valid(stonewall): return False # you can get stuck from an entrance else: door = entrance.door - if door is not None and door != stonewall and not door.blocked and parent not in visited: + if (door is None or (door != stonewall and not door.blocked)) and parent not in visited: visited.add(parent) queue.append(parent) # we didn't find anything bad @@ -636,7 +667,7 @@ def create_graph_piece_from_state(door, o_state, b_state, proposed_map, exceptio def filter_for_potential_bk_locations(locations): return [x for x in locations if '- Big Chest' not in x.name and '- Prize' not in x.name and x.name not in dungeon_events - and x.name not in key_only_locations.keys() and x.name not in ['Agahnim 1', 'Agahnim 2']] + and not x.forced_item and x.name not in ['Agahnim 1', 'Agahnim 2']] type_map = { @@ -738,6 +769,9 @@ def connect_simple_door(exit_door, region): exit_door.dest = region +special_big_key_doors = ['Hyrule Dungeon Cellblock Door', "Thieves Blind's Cell Door"] + + class ExplorationState(object): def __init__(self, init_crystal=CrystalBarrier.Orange, dungeon=None): @@ -819,7 +853,7 @@ class ExplorationState(object): if region.type == RegionType.Dungeon: for location in region.locations: if key_checks and location not in self.found_locations: - if location.name in key_only_locations and 'Small Key' in location.item.name: + if location.forced_item and 'Small Key' in location.item.name: self.key_locations += 1 if location.name not in dungeon_events and '- Prize' not in location.name and location.name not in ['Agahnim 1', 'Agahnim 2']: self.ttl_locations += 1 @@ -833,10 +867,6 @@ class ExplorationState(object): if location.name in flooded_keys_reverse.keys() and self.location_found( flooded_keys_reverse[location.name]): self.perform_event(flooded_keys_reverse[location.name], key_region) - if key_checks and region.name == 'Hyrule Dungeon Cellblock' and not self.big_key_opened: - self.big_key_opened = True - self.avail_doors.extend(self.big_doors) - self.big_doors.clear() def flooded_key_check(self, location): if location.name not in flooded_keys.keys(): @@ -934,7 +964,7 @@ class ExplorationState(object): if door in key_door_proposal and door not in self.opened_doors: if not self.in_door_list(door, self.small_doors): self.append_door_to_list(door, self.small_doors) - elif door.bigKey and not self.big_key_opened: + elif (door.bigKey or door.name in special_big_key_doors) and not self.big_key_opened: if not self.in_door_list(door, self.big_doors): self.append_door_to_list(door, self.big_doors) elif door.req_event is not None and door.req_event not in self.events: @@ -955,6 +985,12 @@ class ExplorationState(object): def visited_at_all(self, region): return region in self.visited_blue or region in self.visited_orange + def found_forced_bk(self): + for location in self.found_locations: + if location.forced_big_key(): + return True + return False + def can_traverse(self, door, exception=None): if door.blocked: return exception(door) if exception else False @@ -962,18 +998,10 @@ class ExplorationState(object): return self.crystal == CrystalBarrier.Either or door.crystal == self.crystal return True - def can_traverse_bk_check(self, door, isOrigin): - if door.blocked: - return False - if door.crystal not in [CrystalBarrier.Null, CrystalBarrier.Either]: - return self.crystal == CrystalBarrier.Either or door.crystal == self.crystal - return not isOrigin or not door.bigKey or self.count_locations_exclude_specials() > 0 - # return not door.bigKey or len([x for x in self.found_locations if '- Prize' not in x.name]) > 0 - def count_locations_exclude_specials(self): cnt = 0 for loc in self.found_locations: - if '- Big Chest' not in loc.name and '- Prize' not in loc.name and loc.name not in dungeon_events and loc.name not in key_only_locations.keys(): + if '- Big Chest' not in loc.name and '- Prize' not in loc.name and loc.name not in dungeon_events and not loc.forced_item: cnt += 1 return cnt @@ -1039,7 +1067,7 @@ def extend_reachable_state_improved(search_regions, state, proposed_map, all_reg explorable_door = local_state.next_avail_door() if explorable_door.door.bigKey: if bk_flag: - big_not_found = not special_big_key_found(local_state, world, player) if local_state.big_key_special else local_state.count_locations_exclude_specials() == 0 + big_not_found = not special_big_key_found(local_state) if local_state.big_key_special else local_state.count_locations_exclude_specials() == 0 if big_not_found: continue # we can't open this door if explorable_door.door in proposed_map: @@ -1055,22 +1083,28 @@ def extend_reachable_state_improved(search_regions, state, proposed_map, all_reg return local_state -def special_big_key_found(state, world, player): - cellblock = world.get_region('Hyrule Dungeon Cellblock', player) - return state.visited(cellblock) +def special_big_key_found(state): + for location in state.found_locations: + if location.forced_item and location.forced_item.bigkey: + return True + return False def valid_region_to_explore_in_regions(region, all_regions, world, player): if region is None: return False - return (region.type == RegionType.Dungeon and region in all_regions) or region.name in world.inaccessible_regions[player] + return (region.type == RegionType.Dungeon and region in all_regions)\ + or region.name in world.inaccessible_regions[player]\ + or (region.name == 'Hyrule Castle Ledge' and world.mode[player] == 'standard') # cross-utility methods def valid_region_to_explore(region, name, world, player): if region is None: return False - return (region.type == RegionType.Dungeon and region.dungeon.name in name) or region.name in world.inaccessible_regions[player] + return (region.type == RegionType.Dungeon and region.dungeon.name in name)\ + or region.name in world.inaccessible_regions[player]\ + or (region.name == 'Hyrule Castle Ledge' and world.mode[player] == 'standard') def get_doors(world, region, player): @@ -1146,9 +1180,7 @@ class DungeonBuilder(object): self.key_door_proposal = None self.allowance = None - if name in dungeon_dead_end_allowance.keys(): - self.allowance = dungeon_dead_end_allowance[name] - elif 'Stonewall' in name: + if 'Stonewall' in name: self.allowance = 1 elif 'Prewall' in name: orig_name = name[:-8] @@ -1232,11 +1264,27 @@ def create_dungeon_builders(all_sectors, connections_tuple, world, player, sector = find_sector(r_name, all_sectors) reverse_d_map[sector] = key + complete_dungeons = {x: y for x, y in dungeon_map.items() if sum(len(sector.outstanding_doors) for sector in y.sectors) <= 0} + [dungeon_map.pop(key) for key in complete_dungeons.keys()] + # categorize sectors identify_destination_sectors(accessible_sectors, reverse_d_map, dungeon_map, connections, dungeon_entrances, split_dungeon_entrances) for name, builder in dungeon_map.items(): - calc_allowance_and_dead_ends(builder, connections_tuple) + calc_allowance_and_dead_ends(builder, connections_tuple, world, player) + + if world.mode[player] == 'open' and world.shuffle[player] not in ['crossed', 'insanity']: + sanc = find_sector('Sanctuary', candidate_sectors) + if sanc: # only run if sanc if a candidate + lw_builders = [] + for name, portal_list in dungeon_portals.items(): + for portal_name in portal_list: + if world.get_portal(portal_name, player).light_world: + lw_builders.append(dungeon_map[name]) + break + # portals only - not drops for mirror stuff + sanc_builder = random.choice(lw_builders) + assign_sector(sanc, sanc_builder, candidate_sectors, global_pole) free_location_sectors = {} crystal_switches = {} @@ -1270,10 +1318,11 @@ def create_dungeon_builders(all_sectors, connections_tuple, world, player, # restart raise NeutralizingException('Either free location/crystal assignment is already globally invalid') logger.info(world.fish.translate("cli", "cli", "balance.doors")) - builder_info = dungeon_entrances, split_dungeon_entrances, world, player + builder_info = dungeon_entrances, split_dungeon_entrances, connections_tuple, world, player assign_polarized_sectors(dungeon_map, polarized_sectors, global_pole, builder_info) # the rest assign_the_rest(dungeon_map, neutral_sectors, global_pole, builder_info) + dungeon_map.update(complete_dungeons) finished = True except NeutralizingException: pass @@ -1327,34 +1376,44 @@ def identify_destination_sectors(accessible_sectors, reverse_d_map, dungeon_map, break -def calc_allowance_and_dead_ends(builder, connections_tuple): +# todo: split version that adds allowance for potential entrances +def calc_allowance_and_dead_ends(builder, connections_tuple, world, player): + portals = world.dungeon_portals[player] entrances_map, potentials, connections = connections_tuple - needed_connections = [x for x in builder.all_entrances if x not in entrances_map[builder.name]] + name = builder.name if not builder.split_flag else builder.name.rsplit(' ', 1)[0] + needed_connections = [x for x in builder.all_entrances if x not in entrances_map[name]] starting_allowance = 0 used_sectors = set() - for entrance in entrances_map[builder.name]: + destination_entrances = [x.door.entrance.parent_region.name for x in portals if x.destination] + dead_ends = [x.door.entrance.parent_region.name for x in portals if x.deadEnd] + for entrance in entrances_map[name]: sector = find_sector(entrance, builder.sectors) - outflow_target = 0 if entrance not in drop_entrances_allowance else 1 - if sector not in used_sectors and sector.adj_outflow() > outflow_target: - if entrance not in destination_entrances: - starting_allowance += 1 - else: - builder.branches -= 1 - used_sectors.add(sector) - elif sector not in used_sectors: - if entrance in destination_entrances and sector.branches() > 0: - builder.branches -= 1 - if entrance not in drop_entrances_allowance: - needed_connections.append(entrance) + if sector: + outflow_target = 0 if entrance not in drop_entrances_allowance else 1 + if sector not in used_sectors and (sector.adj_outflow() > outflow_target or entrance in dead_ends): + if entrance not in destination_entrances: + starting_allowance += 1 + else: + builder.branches -= 1 + used_sectors.add(sector) + elif sector not in used_sectors: + if entrance in destination_entrances and sector.branches() > 0: + builder.branches -= 1 + if entrance not in drop_entrances_allowance: + needed_connections.append(entrance) builder.allowance = starting_allowance for entrance in needed_connections: sector = find_sector(entrance, builder.sectors) - if sector not in used_sectors: # ignore things on same sector + if sector and sector not in used_sectors: # ignore things on same sector is_destination = entrance in destination_entrances connect_able = False if entrance in connections.keys(): enabling_region = connections[entrance] - connecting_entrances = [x for x in potentials[enabling_region] if x != entrance and x not in dead_entrances and x not in drop_entrances_allowance] + check_list = list(potentials[enabling_region]) + if enabling_region.name in ['Desert Ledge', 'Desert Palace Entrance (North) Spot']: + alternate = 'Desert Palace Entrance (North) Spot' if enabling_region.name == 'Desert Ledge' else 'Desert Ledge' + check_list.extend(potentials[world.get_region(alternate, player)]) + connecting_entrances = [x for x in check_list if x != entrance and x not in dead_entrances and x not in drop_entrances_allowance] connect_able = len(connecting_entrances) > 0 if is_destination and sector.branches() == 0: # builder.dead_ends += 1 @@ -1367,21 +1426,19 @@ def calc_allowance_and_dead_ends(builder, connections_tuple): def define_sector_features(sectors): for sector in sectors: - if 'Hyrule Dungeon Cellblock' in sector.region_set(): - sector.bk_provided = True - if 'Thieves Blind\'s Cell' in sector.region_set(): - sector.bk_required = True for region in sector.regions: for loc in region.locations: - if '- Prize' in loc.name or loc.name in ['Agahnim 1', 'Agahnim 2', 'Hyrule Castle - Big Key Drop']: + if '- Prize' in loc.name or loc.name in ['Agahnim 1', 'Agahnim 2']: pass - elif loc.event and 'Small Key' in loc.item.name: + elif loc.forced_item and 'Small Key' in loc.item.name: sector.key_only_locations += 1 - elif loc.name not in dungeon_events: + elif loc.forced_item and loc.forced_item.bigkey: + sector.bk_provided = True + elif loc.name not in dungeon_events and not loc.forced_item: sector.chest_locations += 1 - if '- Big Chest' in loc.name: + if '- Big Chest' in loc.name or loc.name in ["Hyrule Castle - Zelda's Chest", + "Thieves' Town - Blind's Cell"]: sector.bk_required = True - sector.big_chest_present = True for ext in region.exits: door = ext.door if door is not None: @@ -1518,6 +1575,8 @@ def assign_crystal_switch_sectors(dungeon_map, crystal_switches, crystal_barrier valid = global_pole.is_valid_choice(dungeon_map, builder_choice, test_set) assign_sector(switch_choice, builder_choice, crystal_switches, global_pole) return crystal_switches + if len(crystal_switches) == 0: + raise GenerationException('No crystal switches to assign') sector_list = list(crystal_switches) choices = random.sample(sector_list, k=len(population)) for i, choice in enumerate(choices): @@ -1775,16 +1834,6 @@ def loop_present(hook, opp, h_mag, other_mag): return h_mag[opp] >= h_mag[hook.value] - other_mag[opp] -def is_entrance_sector(builder, sector): - if builder is None: - return False - for entrance in builder.all_entrances: - r_set = sector.region_set() - if entrance in r_set: - return True - return False - - def is_satisfied(door_dict_list): for door_dict in door_dict_list: for door_list in door_dict.values(): @@ -2580,6 +2629,8 @@ def categorize_groupings(sectors): def valid_assignment(builder, sector_list, builder_info): + if not valid_entrance(builder, sector_list, builder_info): + return False if not valid_c_switch(builder, sector_list): return False if not valid_polarized_assignment(builder, sector_list): @@ -2588,6 +2639,34 @@ def valid_assignment(builder, sector_list, builder_info): return resolved +def valid_entrance(builder, sector_list, builder_info): + is_dead_end = False + if len(builder.sectors) == 0: + is_dead_end = True + else: + entrances, splits, c_tuple, world, player = builder_info + if builder.name not in entrances.keys(): + name_parts = builder.name.rsplit(' ', 1) + entrance_list = splits[name_parts[0]][name_parts[1]] + entrances = [] + for sector in builder.sectors: + if sector.is_entrance_sector(): + sector.region_set() + entrances.append(sector) + all_dead = True + for sector in entrances: + for region in entrance_list: + if region in sector.region_set(): + portal = next((x for x in world.dungeon_portals[player] if x.door.entrance.parent_region.name == region), None) + if portal and not portal.deadEnd: + all_dead = False + break + if not all_dead: + break + is_dead_end = all_dead + return len(sector_list) == 0 if is_dead_end else True + + def valid_c_switch(builder, sector_list): if builder.c_switch_present: return True @@ -2604,7 +2683,11 @@ def valid_c_switch(builder, sector_list): def valid_connected_assignment(builder, sector_list): full_list = sector_list + builder.sectors + if len(full_list) == 1 and sum_magnitude(full_list) == [0, 0, 0]: + return True for sector in full_list: + if sector.is_entrance_sector(): + continue others = [x for x in full_list if x != sector] other_mag = sum_magnitude(others) sector_mag = sector.magnitude() @@ -2678,17 +2761,40 @@ def split_dungeon_builder(builder, split_list, builder_info): builder.split_dungeon_map[name].valid_proposal = proposal return builder.split_dungeon_map # we made this earlier in gen, just use it - attempts, comb_w_replace = 0, None + attempts, comb_w_replace, merge_attempt, merge_limit = 0, None, 0, len(split_list) - 1 while attempts < 5: # does not solve coin flips 3% of the time try: candidate_sectors = dict.fromkeys(builder.sectors) global_pole = GlobalPolarity(candidate_sectors) - dungeon_map = {} + dungeon_map, sub_builder, merge_keys = {}, None, [] + if merge_attempt > 0: + candidates = [] + for name, split_entrances in split_list.items(): + if len(split_entrances) > 1: + candidates.append(name) + continue + elif len(split_entrances) <= 0: + continue + ents, splits, c_tuple, world, player = builder_info + r_name = split_entrances[0] + p = next((x for x in world.dungeon_portals[player] if x.door.entrance.parent_region.name == r_name), None) + if p and not p.deadEnd: + candidates.append(name) + merge_keys = random.sample(candidates, merge_attempt+1) if len(candidates) >= merge_attempt+1 else [] for name, split_entrances in split_list.items(): key = builder.name + ' ' + name - dungeon_map[key] = sub_builder = DungeonBuilder(key) - sub_builder.all_entrances = split_entrances + if merge_keys and name in merge_keys: + other_keys = [builder.name + ' ' + x for x in merge_keys if x != name] + other_key = next((x for x in other_keys if x in dungeon_map), None) + if other_key: + key = other_key + sub_builder = dungeon_map[other_key] + sub_builder.all_entrances.extend(split_entrances) + if key not in dungeon_map: + dungeon_map[key] = sub_builder = DungeonBuilder(key) + sub_builder.split_flag = True + sub_builder.all_entrances = list(split_entrances) for r_name in split_entrances: assign_sector(find_sector(r_name, candidate_sectors), sub_builder, candidate_sectors, global_pole) comb_w_replace = len(dungeon_map) ** len(candidate_sectors) @@ -2698,10 +2804,16 @@ def split_dungeon_builder(builder, split_list, builder_info): attempts += 5 # all the combinations were tried already, no use repeating else: attempts += 1 + if attempts >= 5 and merge_attempt < merge_limit: + merge_attempt, attempts = merge_attempt + 1, 0 + raise GenerationException('Unable to resolve in 5 attempts') def balance_split(candidate_sectors, dungeon_map, global_pole, builder_info): + dungeon_entrances, split_dungeon_entrances, connections_tuple, world, player = builder_info + for name, builder in dungeon_map.items(): + calc_allowance_and_dead_ends(builder, connections_tuple, world, player) comb_w_replace = len(dungeon_map) ** len(candidate_sectors) if comb_w_replace <= 10000: combinations = list(itertools.product(dungeon_map.keys(), repeat=len(candidate_sectors))) @@ -2714,8 +2826,8 @@ def balance_split(candidate_sectors, dungeon_map, global_pole, builder_info): for i, choice in enumerate(choices): chosen_sectors[choice].append(main_sector_list[i]) all_valid = True - for name, sector_list in chosen_sectors.items(): - if not valid_assignment(dungeon_map[name], sector_list, builder_info): + for name, builder in dungeon_map.items(): + if not valid_assignment(builder, chosen_sectors[name], builder_info): all_valid = False break if all_valid: @@ -2831,6 +2943,8 @@ def check_for_forced_crystal_single(builder, candidate_sectors): for sector in builder.sectors: for door in sector.outstanding_doors: builder_doors[hook_from_door(door)][door] = sector + if len(builder_doors) == 0: + return False candidate_doors = defaultdict(dict) for sector in candidate_sectors: for door in sector.outstanding_doors: @@ -2838,12 +2952,13 @@ def check_for_forced_crystal_single(builder, candidate_sectors): for hook in builder_doors.keys(): for door in builder_doors[hook].keys(): opp = opposite_h_type(hook) - for d, sector in builder_doors[opp].items(): - if d != door and (not sector.blue_barrier or sector.c_switch): - return False - for d, sector in candidate_doors[opp].items(): - if not sector.blue_barrier or sector.c_switch: - return False + if opp in builder_doors.keys(): + for d, sector in builder_doors[opp].items(): + if d != door and (not sector.blue_barrier or sector.c_switch): + return False + for d, sector in candidate_doors[opp].items(): + if not sector.blue_barrier or sector.c_switch: + return False return True @@ -3118,21 +3233,33 @@ def identify_branching_issues(dungeon_map, builder_info): def check_for_valid_layout(builder, sector_list, builder_info): - dungeon_entrances, split_dungeon_entrances, world, player = builder_info + dungeon_entrances, split_dungeon_entrances, c_tuple, world, player = builder_info if builder.name in split_dungeon_entrances.keys(): try: temp_builder = DungeonBuilder(builder.name) for s in sector_list + builder.sectors: assign_sector_helper(s, temp_builder) - split_list = split_region_starts[builder.name] + split_list = split_dungeon_entrances[builder.name] builder.split_dungeon_map = split_dungeon_builder(temp_builder, split_list, builder_info) builder.valid_proposal = {} + possible_regions = set() + for portal in world.dungeon_portals[player]: + if not portal.destination and portal.name in dungeon_portals[builder.name]: + possible_regions.add(portal.door.entrance.parent_region.name) + if builder.name in dungeon_drops.keys(): + possible_regions.update(dungeon_drops[builder.name]) for name, split_build in builder.split_dungeon_map.items(): name_bits = name.split(" ") orig_name = " ".join(name_bits[:-1]) entrance_regions = split_dungeon_entrances[orig_name][name_bits[-1]] # todo: this is hardcoded information for random entrances - entrance_regions = [x for x in entrance_regions if x not in split_check_entrance_invalid] + for sector in split_build.sectors: + match_set = set(sector.region_set()).intersection(possible_regions) + if len(match_set) > 0: + for r_name in match_set: + if r_name not in entrance_regions: + entrance_regions.append(r_name) + # entrance_regions = [x for x in entrance_regions if x not in split_check_entrance_invalid] proposal = generate_dungeon_find_proposal(split_build, entrance_regions, True, world, player) # record split proposals builder.valid_proposal[name] = proposal @@ -3150,7 +3277,7 @@ def check_for_valid_layout(builder, sector_list, builder_info): def resolve_equations(builder, sector_list): unreached_doors = defaultdict(list) - equations = copy_door_equations(builder, sector_list) + equations = {x: y for x, y in copy_door_equations(builder, sector_list).items() if len(y) > 0} current_access = {} sector_split = {} # those sectors that belong to a certain sector if builder.name in split_region_starts.keys(): @@ -3252,7 +3379,7 @@ def find_priority_equation(equations, access_id, current_access): if len(filtered_candidates) == 1: return filtered_candidates[0] - neutral_candidates = [x for x in filtered_candidates if x[0].neutral_profit() or x[0].neutral()] + neutral_candidates = [x for x in filtered_candidates if (x[0].neutral_profit() or x[0].neutral()) and x[0].profit(current_access) == local_profit_map[x[2]]] if len(neutral_candidates) == 0: neutral_candidates = filtered_candidates if len(neutral_candidates) == 1: @@ -3531,7 +3658,7 @@ def copy_door_equations(builder, sector_list): def calc_sector_equations(sector, builder): equations = [] - is_entrance = is_entrance_sector(builder, sector) and not sector.destination_entrance + is_entrance = sector.is_entrance_sector() and not sector.destination_entrance if is_entrance: flagged_equations = [] for door in sector.outstanding_doors: @@ -3693,6 +3820,22 @@ default_dungeon_entrances = { 'Ganons Tower': ['GT Lobby'] } +drop_entrances = { + 'Hyrule Castle': ['Sewers Rat Path'], + 'Eastern Palace': [], + 'Desert Palace': [], + 'Tower of Hera': [], + 'Agahnims Tower': [], + 'Palace of Darkness': [], + 'Swamp Palace': [], + 'Skull Woods': ['Skull Pinball', 'Skull Left Drop', 'Skull Pot Circle', 'Skull Back Drop'], + 'Thieves Town': [], + 'Ice Palace': [], + 'Misery Mire': [], + 'Turtle Rock': [], + 'Ganons Tower': [] +} + # todo: calculate these for ER - the multi entrance dungeons anyway dungeon_dead_end_allowance = { @@ -3724,14 +3867,28 @@ dead_entrances = [ 'TR Big Chest Entrance' ] -destination_entrances = [ - 'Sanctuary', 'Hyrule Castle West Lobby', 'Hyrule Castle East Lobby', 'Sewers Rat Path', 'Desert East Lobby', - 'Desert West Lobby', 'Skull Pinball', 'Skull Pot Circle', 'Skull Left Drop', 'Skull 2 West Lobby', - 'Skull Back Drop', 'TR Big Chest Entrance', 'TR Eye Bridge', 'TR Lazy Eyes' -] - split_check_entrance_invalid = [ 'Desert East Lobby', 'Skull 2 West Lobby' ] +dungeon_portals = { + 'Hyrule Castle': ['Hyrule Castle South', 'Hyrule Castle West', 'Hyrule Castle East', 'Sanctuary'], + 'Eastern Palace': ['Eastern'], + 'Desert Palace': ['Desert Back', 'Desert South', 'Desert West', 'Desert East'], + 'Tower of Hera': ['Hera'], + 'Agahnims Tower': ['Agahnims Tower'], + 'Palace of Darkness': ['Palace of Darkness'], + 'Swamp Palace': ['Swamp'], + 'Skull Woods': ['Skull 1', 'Skull 2 East', 'Skull 2 West', 'Skull 3'], + 'Thieves Town': ['Thieves Town'], + 'Ice Palace': ['Ice'], + 'Misery Mire': ['Mire'], + 'Turtle Rock': ['Turtle Rock Main', 'Turtle Rock Lazy Eyes', 'Turtle Rock Chest', 'Turtle Rock Eye Bridge'], + 'Ganons Tower': ['Ganons Tower'] +} + +dungeon_drops = { + 'Hyrule Castle': ['Sewers Rat Path'], + 'Skull Woods': ['Skull Pot Circle', 'Skull Pinball', 'Skull Left Drop', 'Skull Back Drop'], +} diff --git a/Dungeons.py b/Dungeons.py index 007392f5..c33b38e8 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -7,27 +7,28 @@ from Items import ItemFactory def create_dungeons(world, player): - def make_dungeon(name, default_boss, dungeon_regions, big_key, small_keys, dungeon_items): - dungeon = Dungeon(name, dungeon_regions, big_key, [] if world.retro[player] else small_keys, dungeon_items, player) + def make_dungeon(name, id, default_boss, dungeon_regions, big_key, small_keys, dungeon_items): + dungeon = Dungeon(name, dungeon_regions, big_key, [] if world.retro[player] else small_keys, + dungeon_items, player, id) dungeon.boss = BossFactory(default_boss, player) for region in dungeon.regions: world.get_region(region, player).dungeon = dungeon dungeon.world = world return dungeon - ES = make_dungeon('Hyrule Castle', None, hyrule_castle_regions, None, [ItemFactory('Small Key (Escape)', player)], [ItemFactory('Map (Escape)', player)]) - EP = make_dungeon('Eastern Palace', 'Armos Knights', eastern_regions, ItemFactory('Big Key (Eastern Palace)', player), [], ItemFactory(['Map (Eastern Palace)', 'Compass (Eastern Palace)'], player)) - DP = make_dungeon('Desert Palace', 'Lanmolas', desert_regions, ItemFactory('Big Key (Desert Palace)', player), [ItemFactory('Small Key (Desert Palace)', player)], ItemFactory(['Map (Desert Palace)', 'Compass (Desert Palace)'], player)) - ToH = make_dungeon('Tower of Hera', 'Moldorm', hera_regions, ItemFactory('Big Key (Tower of Hera)', player), [ItemFactory('Small Key (Tower of Hera)', player)], ItemFactory(['Map (Tower of Hera)', 'Compass (Tower of Hera)'], player)) - PoD = make_dungeon('Palace of Darkness', 'Helmasaur King', pod_regions, ItemFactory('Big Key (Palace of Darkness)', player), ItemFactory(['Small Key (Palace of Darkness)'] * 6, player), ItemFactory(['Map (Palace of Darkness)', 'Compass (Palace of Darkness)'], player)) - TT = make_dungeon('Thieves Town', 'Blind', thieves_regions, ItemFactory('Big Key (Thieves Town)', player), [ItemFactory('Small Key (Thieves Town)', player)], ItemFactory(['Map (Thieves Town)', 'Compass (Thieves Town)'], player)) - SW = make_dungeon('Skull Woods', 'Mothula', skull_regions, ItemFactory('Big Key (Skull Woods)', player), ItemFactory(['Small Key (Skull Woods)'] * 3, player), ItemFactory(['Map (Skull Woods)', 'Compass (Skull Woods)'], player)) - SP = make_dungeon('Swamp Palace', 'Arrghus', swamp_regions, ItemFactory('Big Key (Swamp Palace)', player), [ItemFactory('Small Key (Swamp Palace)', player)], ItemFactory(['Map (Swamp Palace)', 'Compass (Swamp Palace)'], player)) - IP = make_dungeon('Ice Palace', 'Kholdstare', ice_regions, ItemFactory('Big Key (Ice Palace)', player), ItemFactory(['Small Key (Ice Palace)'] * 2, player), ItemFactory(['Map (Ice Palace)', 'Compass (Ice Palace)'], player)) - MM = make_dungeon('Misery Mire', 'Vitreous', mire_regions, ItemFactory('Big Key (Misery Mire)', player), ItemFactory(['Small Key (Misery Mire)'] * 3, player), ItemFactory(['Map (Misery Mire)', 'Compass (Misery Mire)'], player)) - TR = make_dungeon('Turtle Rock', 'Trinexx', tr_regions, ItemFactory('Big Key (Turtle Rock)', player), ItemFactory(['Small Key (Turtle Rock)'] * 4, player), ItemFactory(['Map (Turtle Rock)', 'Compass (Turtle Rock)'], player)) - AT = make_dungeon('Agahnims Tower', 'Agahnim', tower_regions, None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) - GT = make_dungeon('Ganons Tower', 'Agahnim2', gt_regions, ItemFactory('Big Key (Ganons Tower)', player), ItemFactory(['Small Key (Ganons Tower)'] * 4, player), ItemFactory(['Map (Ganons Tower)', 'Compass (Ganons Tower)'], player)) + ES = make_dungeon('Hyrule Castle', 1, None, hyrule_castle_regions, None, [ItemFactory('Small Key (Escape)', player)], [ItemFactory('Map (Escape)', player)]) + EP = make_dungeon('Eastern Palace', 2, 'Armos Knights', eastern_regions, ItemFactory('Big Key (Eastern Palace)', player), [], ItemFactory(['Map (Eastern Palace)', 'Compass (Eastern Palace)'], player)) + DP = make_dungeon('Desert Palace', 3, 'Lanmolas', desert_regions, ItemFactory('Big Key (Desert Palace)', player), [ItemFactory('Small Key (Desert Palace)', player)], ItemFactory(['Map (Desert Palace)', 'Compass (Desert Palace)'], player)) + ToH = make_dungeon('Tower of Hera', 10, 'Moldorm', hera_regions, ItemFactory('Big Key (Tower of Hera)', player), [ItemFactory('Small Key (Tower of Hera)', player)], ItemFactory(['Map (Tower of Hera)', 'Compass (Tower of Hera)'], player)) + PoD = make_dungeon('Palace of Darkness', 6, 'Helmasaur King', pod_regions, ItemFactory('Big Key (Palace of Darkness)', player), ItemFactory(['Small Key (Palace of Darkness)'] * 6, player), ItemFactory(['Map (Palace of Darkness)', 'Compass (Palace of Darkness)'], player)) + TT = make_dungeon('Thieves Town', 11, 'Blind', thieves_regions, ItemFactory('Big Key (Thieves Town)', player), [ItemFactory('Small Key (Thieves Town)', player)], ItemFactory(['Map (Thieves Town)', 'Compass (Thieves Town)'], player)) + SW = make_dungeon('Skull Woods', 8, 'Mothula', skull_regions, ItemFactory('Big Key (Skull Woods)', player), ItemFactory(['Small Key (Skull Woods)'] * 3, player), ItemFactory(['Map (Skull Woods)', 'Compass (Skull Woods)'], player)) + SP = make_dungeon('Swamp Palace', 5, 'Arrghus', swamp_regions, ItemFactory('Big Key (Swamp Palace)', player), [ItemFactory('Small Key (Swamp Palace)', player)], ItemFactory(['Map (Swamp Palace)', 'Compass (Swamp Palace)'], player)) + IP = make_dungeon('Ice Palace', 9, 'Kholdstare', ice_regions, ItemFactory('Big Key (Ice Palace)', player), ItemFactory(['Small Key (Ice Palace)'] * 2, player), ItemFactory(['Map (Ice Palace)', 'Compass (Ice Palace)'], player)) + MM = make_dungeon('Misery Mire', 7, 'Vitreous', mire_regions, ItemFactory('Big Key (Misery Mire)', player), ItemFactory(['Small Key (Misery Mire)'] * 3, player), ItemFactory(['Map (Misery Mire)', 'Compass (Misery Mire)'], player)) + TR = make_dungeon('Turtle Rock', 12, 'Trinexx', tr_regions, ItemFactory('Big Key (Turtle Rock)', player), ItemFactory(['Small Key (Turtle Rock)'] * 4, player), ItemFactory(['Map (Turtle Rock)', 'Compass (Turtle Rock)'], player)) + AT = make_dungeon('Agahnims Tower', 4, 'Agahnim', tower_regions, None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) + GT = make_dungeon('Ganons Tower', 13, 'Agahnim2', gt_regions, ItemFactory('Big Key (Ganons Tower)', player), ItemFactory(['Small Key (Ganons Tower)'] * 4, player), ItemFactory(['Map (Ganons Tower)', 'Compass (Ganons Tower)'], player)) GT.bosses['bottom'] = BossFactory('Armos Knights', player) GT.bosses['middle'] = BossFactory('Lanmolas', player) @@ -166,9 +167,11 @@ hyrule_castle_regions = [ 'Hyrule Dungeon Map Room', 'Hyrule Dungeon North Abyss', 'Hyrule Dungeon North Abyss Catwalk', 'Hyrule Dungeon South Abyss', 'Hyrule Dungeon South Abyss Catwalk', 'Hyrule Dungeon Guardroom', 'Hyrule Dungeon Armory Main', 'Hyrule Dungeon Armory Boomerang', 'Hyrule Dungeon Armory North Branch', - 'Hyrule Dungeon Staircase', 'Hyrule Dungeon Cellblock', 'Sewers Behind Tapestry', 'Sewers Rope Room', - 'Sewers Dark Cross', 'Sewers Water', 'Sewers Key Rat', 'Sewers Rat Path', 'Sewers Secret Room Blocked Path', - 'Sewers Secret Room', 'Sewers Yet More Rats', 'Sewers Pull Switch', 'Sanctuary' + 'Hyrule Dungeon Staircase', 'Hyrule Dungeon Cellblock', 'Hyrule Dungeon Cell', 'Sewers Behind Tapestry', + 'Sewers Rope Room', 'Sewers Dark Cross', 'Sewers Water', 'Sewers Key Rat', 'Sewers Rat Path', + 'Sewers Secret Room Blocked Path', 'Sewers Secret Room', 'Sewers Yet More Rats', 'Sewers Pull Switch', 'Sanctuary', + 'Sanctuary Portal', 'Hyrule Castle West Portal', 'Hyrule Castle South Portal', 'Hyrule Castle East Portal' + ] eastern_regions = [ @@ -178,7 +181,7 @@ eastern_regions = [ 'Eastern Compass Room', 'Eastern Hint Tile', 'Eastern Hint Tile Blocked Path', 'Eastern Courtyard', 'Eastern Fairies', 'Eastern Map Valley', 'Eastern Dark Square', 'Eastern Dark Pots', 'Eastern Big Key', 'Eastern Darkness', 'Eastern Rupees', 'Eastern Attic Start', 'Eastern False Switches', 'Eastern Cannonball Hell', - 'Eastern Single Eyegore', 'Eastern Duo Eyegores', 'Eastern Boss' + 'Eastern Single Eyegore', 'Eastern Duo Eyegores', 'Eastern Boss', 'Eastern Portal' ] desert_regions = [ @@ -187,20 +190,21 @@ desert_regions = [ 'Desert North Hall', 'Desert Map Room', 'Desert Sandworm Corner', 'Desert Bonk Torch', 'Desert Circle of Pots', 'Desert Big Chest Room', 'Desert West Wing', 'Desert West Lobby', 'Desert Fairy Fountain', 'Desert Back Lobby', 'Desert Tiles 1', 'Desert Bridge', 'Desert Four Statues', 'Desert Beamos Hall', 'Desert Tiles 2', - 'Desert Wall Slide', 'Desert Boss' + 'Desert Wall Slide', 'Desert Boss', 'Desert West Portal', 'Desert South Portal', 'Desert East Portal', + 'Desert Back Portal' ] hera_regions = [ 'Hera Lobby', 'Hera Basement Cage', 'Hera Tile Room', 'Hera Tridorm', 'Hera Torches', 'Hera Beetles', 'Hera Startile Corner', 'Hera Startile Wide', 'Hera 4F', 'Hera Big Chest Landing', 'Hera 5F', - 'Hera Fairies', 'Hera Boss' + 'Hera Fairies', 'Hera Boss', 'Hera Portal' ] tower_regions = [ 'Tower Lobby', 'Tower Gold Knights', 'Tower Room 03', 'Tower Lone Statue', 'Tower Dark Maze', 'Tower Dark Chargers', 'Tower Dual Statues', 'Tower Dark Pits', 'Tower Dark Archers', 'Tower Red Spears', 'Tower Red Guards', 'Tower Circle of Pots', 'Tower Pacifist Run', 'Tower Push Statue', 'Tower Catwalk', 'Tower Antechamber', - 'Tower Altar', 'Tower Agahnim 1' + 'Tower Altar', 'Tower Agahnim 1', 'Agahnims Tower Portal' ] pod_regions = [ @@ -210,7 +214,7 @@ pod_regions = [ 'PoD Stalfos Basement', 'PoD Basement Ledge', 'PoD Big Key Landing', 'PoD Falling Bridge', 'PoD Falling Bridge Ledge', 'PoD Dark Maze', 'PoD Big Chest Balcony', 'PoD Compass Room', 'PoD Dark Basement', 'PoD Harmless Hellway', 'PoD Mimics 2', 'PoD Bow Statue', 'PoD Dark Pegs', 'PoD Lonely Turtle', 'PoD Turtle Party', - 'PoD Dark Alley', 'PoD Callback', 'PoD Boss' + 'PoD Dark Alley', 'PoD Callback', 'PoD Boss', 'Palace of Darkness Portal' ] swamp_regions = [ @@ -222,7 +226,8 @@ swamp_regions = [ 'Swamp West Shallows', 'Swamp West Block Path', 'Swamp West Ledge', 'Swamp Barrier Ledge', 'Swamp Barrier', 'Swamp Attic', 'Swamp Push Statue', 'Swamp Shooters', 'Swamp Left Elbow', 'Swamp Right Elbow', 'Swamp Drain Left', 'Swamp Drain Right', 'Swamp Flooded Room', 'Swamp Flooded Spot', 'Swamp Basement Shallows', 'Swamp Waterfall Room', - 'Swamp Refill', 'Swamp Behind Waterfall', 'Swamp C', 'Swamp Waterway', 'Swamp I', 'Swamp T', 'Swamp Boss' + 'Swamp Refill', 'Swamp Behind Waterfall', 'Swamp C', 'Swamp Waterway', 'Swamp I', 'Swamp T', 'Swamp Boss', + 'Swamp Portal' ] skull_regions = [ @@ -230,7 +235,8 @@ skull_regions = [ 'Skull Pot Prison', 'Skull Compass Room', 'Skull Left Drop', 'Skull 2 East Lobby', 'Skull Big Key', 'Skull Lone Pot', 'Skull Small Hall', 'Skull Back Drop', 'Skull 2 West Lobby', 'Skull X Room', 'Skull 3 Lobby', 'Skull East Bridge', 'Skull West Bridge Nook', 'Skull Star Pits', 'Skull Torch Room', 'Skull Vines', - 'Skull Spike Corner', 'Skull Final Drop', 'Skull Boss' + 'Skull Spike Corner', 'Skull Final Drop', 'Skull Boss', 'Skull 1 Portal', 'Skull 2 East Portal', + 'Skull 2 West Portal', 'Skull 3 Portal' ] thieves_regions = [ @@ -238,9 +244,10 @@ thieves_regions = [ 'Thieves Big Chest Nook', 'Thieves Hallway', 'Thieves Boss', 'Thieves Pot Alcove Mid', 'Thieves Pot Alcove Bottom', 'Thieves Pot Alcove Top', 'Thieves Conveyor Maze', 'Thieves Spike Track', 'Thieves Hellway', 'Thieves Hellway N Crystal', 'Thieves Hellway S Crystal', 'Thieves Triple Bypass', 'Thieves Spike Switch', - 'Thieves Attic', 'Thieves Attic Hint', 'Thieves Cricket Hall Left', 'Thieves Cricket Hall Right', 'Thieves Attic Window', - 'Thieves Basement Block', 'Thieves Blocked Entry', 'Thieves Lonely Zazak', 'Thieves Blind\'s Cell', - 'Thieves Conveyor Bridge', 'Thieves Conveyor Block', 'Thieves Big Chest Room', 'Thieves Trap' + 'Thieves Attic', 'Thieves Attic Hint', 'Thieves Cricket Hall Left', 'Thieves Cricket Hall Right', + 'Thieves Attic Window', 'Thieves Basement Block', 'Thieves Blocked Entry', 'Thieves Lonely Zazak', + "Thieves Blind's Cell", "Thieves Blind's Cell Interior", 'Thieves Conveyor Bridge', 'Thieves Conveyor Block', + 'Thieves Big Chest Room', 'Thieves Trap', 'Thieves Town Portal' ] ice_regions = [ @@ -251,7 +258,8 @@ ice_regions = [ 'Ice Tongue Pull', 'Ice Freezors', 'Ice Freezors Ledge', 'Ice Tall Hint', 'Ice Hookshot Ledge', 'Ice Hookshot Balcony', 'Ice Spikeball', 'Ice Lonely Freezor', 'Iced T', 'Ice Catwalk', 'Ice Many Pots', 'Ice Crystal Right', 'Ice Crystal Left', 'Ice Crystal Block', 'Ice Big Chest View', 'Ice Big Chest Landing', - 'Ice Backwards Room', 'Ice Anti-Fairy', 'Ice Switch Room', 'Ice Refill', 'Ice Fairy', 'Ice Antechamber', 'Ice Boss' + 'Ice Backwards Room', 'Ice Anti-Fairy', 'Ice Switch Room', 'Ice Refill', 'Ice Fairy', 'Ice Antechamber', 'Ice Boss', + 'Ice Portal' ] mire_regions = [ @@ -265,7 +273,7 @@ mire_regions = [ 'Mire Torches Top', 'Mire Torches Bottom', 'Mire Attic Hint', 'Mire Dark Shooters', 'Mire Key Rupees', 'Mire Block X', 'Mire Tall Dark and Roomy', 'Mire Crystal Right', 'Mire Crystal Mid', 'Mire Crystal Left', 'Mire Crystal Top', 'Mire Shooter Rupees', 'Mire Falling Foes', 'Mire Firesnake Skip', 'Mire Antechamber', - 'Mire Boss' + 'Mire Boss', 'Mire Portal' ] tr_regions = [ @@ -274,7 +282,8 @@ tr_regions = [ 'TR Lava Island', 'TR Lava Escape', 'TR Pokey 2', 'TR Twin Pokeys', 'TR Hallway', 'TR Dodgers', 'TR Big View', 'TR Big Chest', 'TR Big Chest Entrance', 'TR Lazy Eyes', 'TR Dash Room', 'TR Tongue Pull', 'TR Rupees', 'TR Crystaroller', 'TR Dark Ride', 'TR Dash Bridge', 'TR Eye Bridge', 'TR Crystal Maze', 'TR Crystal Maze End', - 'TR Final Abyss', 'TR Boss' + 'TR Final Abyss', 'TR Boss', 'Turtle Rock Main Portal', 'Turtle Rock Lazy Eyes Portal', 'Turtle Rock Chest Portal', + 'Turtle Rock Eye Bridge Portal' ] gt_regions = [ @@ -294,7 +303,7 @@ gt_regions = [ 'GT Dashing Bridge', 'GT Wizzrobes 2', 'GT Conveyor Bridge', 'GT Torch Cross', 'GT Staredown', 'GT Falling Torches', 'GT Mini Helmasaur Room', 'GT Bomb Conveyor', 'GT Crystal Circles', 'GT Left Moldorm Ledge', 'GT Right Moldorm Ledge', 'GT Moldorm', 'GT Moldorm Pit', 'GT Validation', 'GT Validation Door', 'GT Frozen Over', - 'GT Brightly Lit Hall', 'GT Agahnim 2' + 'GT Brightly Lit Hall', 'GT Agahnim 2', 'Ganons Tower Portal' ] @@ -332,7 +341,7 @@ region_starts = { } standard_starts = { - 'Hyrule Castle': ['Hyrule Castle Lobby'] + 'Hyrule Castle': ['Hyrule Castle South'] } split_region_starts = { diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 7915728c..710767f6 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -18,6 +18,8 @@ def link_entrances(world, player): for exitname, regionname in mandatory_connections: connect_simple(world, exitname, regionname, player) + connect_custom(world, player) + # if we do not shuffle, set default connections if world.shuffle[player] == 'vanilla': for exitname, regionname in default_connections: @@ -316,7 +318,7 @@ def link_entrances(world, player): caves.remove(old_man_house[0]) except ValueError: pass - else: #if the cave wasn't placed we get here + else: # if the cave wasn't placed we get here connect_caves(world, lw_entrances, [], old_man_house, player) if world.mode[player] == 'standard': # rest of hyrule castle must be in light world @@ -325,7 +327,6 @@ def link_entrances(world, player): elif world.doorShuffle[player] != 'vanilla': connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)', 'Hyrule Castle Exit (South)')], player) - # place old man, has limited options # exit has to come from specific set of doors, the entrance is free to move about old_man_entrances = [door for door in old_man_entrances if door in lw_entrances] @@ -711,7 +712,7 @@ def link_entrances(world, player): # handle remaining caves while caves: - # connect highest exit count caves first, prevent issue where we have 2 or 3 exits accross worlds left to fill + # connect highest exit count caves first, prevent issue where we have 2 or 3 exits across worlds left to fill cave_candidate = (None, 0) for i, cave in enumerate(caves): if isinstance(cave, str): @@ -1062,7 +1063,7 @@ def link_entrances(world, player): raise NotImplementedError('Shuffling not supported yet') # check for swamp palace fix - if world.get_entrance('Dam', player).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', player).connected_region.name != 'Swamp Lobby': + if world.get_entrance('Dam', player).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', player).connected_region.name != 'Swamp Portal': world.swamp_patch_required[player] = True # check for potion shop location @@ -1074,7 +1075,7 @@ def link_entrances(world, player): world.ganon_at_pyramid[player] = False # check for Ganon's Tower location - if world.get_entrance('Ganons Tower', player).connected_region.name != 'GT Lobby': + if world.get_entrance('Ganons Tower', player).connected_region.name != 'Ganons Tower Portal': world.ganonstower_vanilla[player] = False def link_inverted_entrances(world, player): @@ -1781,6 +1782,15 @@ def link_inverted_entrances(world, player): if world.get_entrance('Inverted Ganons Tower', player).connected_region.name != 'GT Lobby': world.ganonstower_vanilla[player] = False + +def connect_custom(world, player): + if hasattr(world, 'custom_entrances') and world.custom_entrances[player]: + for exit_name, region_name in world.custom_entrances[player]: + # doesn't actually change addresses + connect_simple(world, exit_name, region_name, player) + # this needs to remove custom connections from the pool + + def connect_simple(world, exitname, regionname, player): world.get_entrance(exitname, player).connect(world.get_region(regionname, player)) @@ -2864,6 +2874,7 @@ mandatory_connections = [('Links House S&Q', 'Links House'), ('Spectacle Rock Cave Drop', 'Spectacle Rock Cave (Bottom)'), ('Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave (Bottom)'), ('Death Mountain Return Ledge Drop', 'Light World'), + ('Old Man Cave Dropdown', 'Old Man Cave'), ('Old Man House Front to Back', 'Old Man House Back'), ('Old Man House Back to Front', 'Old Man House'), ('Broken Bridge (West)', 'East Death Mountain (Bottom)'), @@ -2973,6 +2984,7 @@ inverted_mandatory_connections = [('Links House S&Q', 'Inverted Links House'), ('Spectacle Rock Cave Drop', 'Spectacle Rock Cave (Bottom)'), ('Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave (Bottom)'), ('Death Mountain Return Ledge Drop', 'Light World'), + ('Old Man Cave Dropdown', 'Old Man Cave'), ('Old Man House Front to Back', 'Old Man House Back'), ('Old Man House Back to Front', 'Old Man House'), ('Broken Bridge (West)', 'East Death Mountain (Bottom)'), @@ -3165,7 +3177,7 @@ default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing'), ('Two Brothers House Exit (East)', 'Light World'), ('Two Brothers House Exit (West)', 'Maze Race Ledge'), - ('Sanctuary', 'Sanctuary'), + ('Sanctuary', 'Sanctuary Portal'), ('Sanctuary Grave', 'Sewer Drop'), ('Sanctuary Exit', 'Light World'), @@ -3400,114 +3412,114 @@ inverted_default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing' ('Inverted Pyramid Entrance', 'Bottom of Pyramid')] # non shuffled dungeons -default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Main Lobby'), - ('Desert Palace Entrance (West)', 'Desert West Lobby'), - ('Desert Palace Entrance (North)', 'Desert Back Lobby'), - ('Desert Palace Entrance (East)', 'Desert East Lobby'), +default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert South Portal'), + ('Desert Palace Entrance (West)', 'Desert West Portal'), + ('Desert Palace Entrance (North)', 'Desert Back Portal'), + ('Desert Palace Entrance (East)', 'Desert East Portal'), ('Desert Palace Exit (South)', 'Desert Palace Stairs'), ('Desert Palace Exit (West)', 'Desert Ledge'), ('Desert Palace Exit (East)', 'Desert Palace Lone Stairs'), ('Desert Palace Exit (North)', 'Desert Palace Entrance (North) Spot'), - ('Eastern Palace', 'Eastern Lobby'), + ('Eastern Palace', 'Eastern Portal'), ('Eastern Palace Exit', 'Light World'), - ('Tower of Hera', 'Hera Lobby'), + ('Tower of Hera', 'Hera Portal'), ('Tower of Hera Exit', 'Death Mountain (Top)'), - ('Hyrule Castle Entrance (South)', 'Hyrule Castle Lobby'), - ('Hyrule Castle Entrance (West)', 'Hyrule Castle West Lobby'), - ('Hyrule Castle Entrance (East)', 'Hyrule Castle East Lobby'), + ('Hyrule Castle Entrance (South)', 'Hyrule Castle South Portal'), + ('Hyrule Castle Entrance (West)', 'Hyrule Castle West Portal'), + ('Hyrule Castle Entrance (East)', 'Hyrule Castle East Portal'), ('Hyrule Castle Exit (South)', 'Hyrule Castle Courtyard'), ('Hyrule Castle Exit (West)', 'Hyrule Castle Ledge'), ('Hyrule Castle Exit (East)', 'Hyrule Castle Ledge'), - ('Agahnims Tower', 'Tower Lobby'), + ('Agahnims Tower', 'Agahnims Tower Portal'), ('Agahnims Tower Exit', 'Hyrule Castle Ledge'), - ('Thieves Town', 'Thieves Lobby'), + ('Thieves Town', 'Thieves Town Portal'), ('Thieves Town Exit', 'West Dark World'), ('Skull Woods First Section Hole (East)', 'Skull Pinball'), ('Skull Woods First Section Hole (West)', 'Skull Left Drop'), ('Skull Woods First Section Hole (North)', 'Skull Pot Circle'), - ('Skull Woods First Section Door', 'Skull 1 Lobby'), + ('Skull Woods First Section Door', 'Skull 1 Portal'), ('Skull Woods First Section Exit', 'Skull Woods Forest'), ('Skull Woods Second Section Hole', 'Skull Back Drop'), - ('Skull Woods Second Section Door (East)', 'Skull 2 East Lobby'), - ('Skull Woods Second Section Door (West)', 'Skull 2 West Lobby'), + ('Skull Woods Second Section Door (East)', 'Skull 2 East Portal'), + ('Skull Woods Second Section Door (West)', 'Skull 2 West Portal'), ('Skull Woods Second Section Exit (East)', 'Skull Woods Forest'), ('Skull Woods Second Section Exit (West)', 'Skull Woods Forest (West)'), - ('Skull Woods Final Section', 'Skull 3 Lobby'), + ('Skull Woods Final Section', 'Skull 3 Portal'), ('Skull Woods Final Section Exit', 'Skull Woods Forest (West)'), - ('Ice Palace', 'Ice Lobby'), + ('Ice Palace', 'Ice Portal'), ('Ice Palace Exit', 'Dark Lake Hylia Central Island'), - ('Misery Mire', 'Mire Lobby'), + ('Misery Mire', 'Mire Portal'), ('Misery Mire Exit', 'Dark Desert'), - ('Palace of Darkness', 'PoD Lobby'), + ('Palace of Darkness', 'Palace of Darkness Portal'), ('Palace of Darkness Exit', 'East Dark World'), - ('Swamp Palace', 'Swamp Lobby'), # requires additional patch for flooding moat if moved + ('Swamp Palace', 'Swamp Portal'), # requires additional patch for flooding moat if moved ('Swamp Palace Exit', 'South Dark World'), - ('Turtle Rock', 'TR Main Lobby'), + ('Turtle Rock', 'Turtle Rock Main Portal'), ('Turtle Rock Exit (Front)', 'Dark Death Mountain (Top)'), ('Turtle Rock Ledge Exit (West)', 'Dark Death Mountain Ledge'), ('Turtle Rock Ledge Exit (East)', 'Dark Death Mountain Ledge'), - ('Dark Death Mountain Ledge (West)', 'TR Lazy Eyes'), - ('Dark Death Mountain Ledge (East)', 'TR Big Chest Entrance'), + ('Dark Death Mountain Ledge (West)', 'Turtle Rock Lazy Eyes Portal'), + ('Dark Death Mountain Ledge (East)', 'Turtle Rock Chest Portal'), ('Turtle Rock Isolated Ledge Exit', 'Dark Death Mountain Isolated Ledge'), - ('Turtle Rock Isolated Ledge Entrance', 'TR Eye Bridge'), + ('Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Eye Bridge Portal'), - ('Ganons Tower', 'GT Lobby'), + ('Ganons Tower', 'Ganons Tower Portal'), ('Ganons Tower Exit', 'Dark Death Mountain (Top)') - ] + ] -inverted_default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Main Lobby'), - ('Desert Palace Entrance (West)', 'Desert West Lobby'), - ('Desert Palace Entrance (North)', 'Desert Back Lobby'), - ('Desert Palace Entrance (East)', 'Desert East Lobby'), +inverted_default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert South Portal'), + ('Desert Palace Entrance (West)', 'Desert West Portal'), + ('Desert Palace Entrance (North)', 'Desert Back Portal'), + ('Desert Palace Entrance (East)', 'Desert East Portal'), ('Desert Palace Exit (South)', 'Desert Palace Stairs'), ('Desert Palace Exit (West)', 'Desert Ledge'), ('Desert Palace Exit (East)', 'Desert Palace Lone Stairs'), ('Desert Palace Exit (North)', 'Desert Palace Entrance (North) Spot'), - ('Eastern Palace', 'Eastern Lobby'), + ('Eastern Palace', 'Eastern Portal'), ('Eastern Palace Exit', 'Light World'), - ('Tower of Hera', 'Hera Lobby'), + ('Tower of Hera', 'Hera Portal'), ('Tower of Hera Exit', 'Death Mountain (Top)'), - ('Hyrule Castle Entrance (South)', 'Hyrule Castle Lobby'), - ('Hyrule Castle Entrance (West)', 'Hyrule Castle West Lobby'), - ('Hyrule Castle Entrance (East)', 'Hyrule Castle East Lobby'), + ('Hyrule Castle Entrance (South)', 'Hyrule Castle South Portal'), + ('Hyrule Castle Entrance (West)', 'Hyrule Castle West Portal'), + ('Hyrule Castle Entrance (East)', 'Hyrule Castle East Portal'), ('Hyrule Castle Exit (South)', 'Light World'), ('Hyrule Castle Exit (West)', 'Hyrule Castle Ledge'), ('Hyrule Castle Exit (East)', 'Hyrule Castle Ledge'), - ('Thieves Town', 'Thieves Lobby'), + ('Thieves Town', 'Thieves Town Portal'), ('Thieves Town Exit', 'West Dark World'), ('Skull Woods First Section Hole (East)', 'Skull Pinball'), ('Skull Woods First Section Hole (West)', 'Skull Left Drop'), ('Skull Woods First Section Hole (North)', 'Skull Pot Circle'), - ('Skull Woods First Section Door', 'Skull 1 Lobby'), + ('Skull Woods First Section Door', 'Skull 1 Portal'), ('Skull Woods First Section Exit', 'Skull Woods Forest'), ('Skull Woods Second Section Hole', 'Skull Back Drop'), - ('Skull Woods Second Section Door (East)', 'Skull 2 East Lobby'), - ('Skull Woods Second Section Door (West)', 'Skull 2 West Lobby'), + ('Skull Woods Second Section Door (East)', 'Skull 2 East Portal'), + ('Skull Woods Second Section Door (West)', 'Skull 2 West Portal'), ('Skull Woods Second Section Exit (East)', 'Skull Woods Forest'), ('Skull Woods Second Section Exit (West)', 'Skull Woods Forest (West)'), - ('Skull Woods Final Section', 'Skull 3 Lobby'), + ('Skull Woods Final Section', 'Skull 3 Portal'), ('Skull Woods Final Section Exit', 'Skull Woods Forest (West)'), - ('Ice Palace', 'Ice Lobby'), - ('Misery Mire', 'Mire Lobby'), + ('Ice Palace', 'Ice Portal'), + ('Misery Mire', 'Mire Portal'), ('Misery Mire Exit', 'Dark Desert'), - ('Palace of Darkness', 'PoD Lobby'), + ('Palace of Darkness', 'Palace of Darkness Portal'), ('Palace of Darkness Exit', 'East Dark World'), - ('Swamp Palace', 'Swamp Lobby'), # requires additional patch for flooding moat if moved + ('Swamp Palace', 'Swamp Portal'), # requires additional patch for flooding moat if moved ('Swamp Palace Exit', 'South Dark World'), - ('Turtle Rock', 'TR Main Lobby'), + ('Turtle Rock', 'Turtle Rock Main Portal'), ('Turtle Rock Ledge Exit (West)', 'Dark Death Mountain Ledge'), ('Turtle Rock Ledge Exit (East)', 'Dark Death Mountain Ledge'), - ('Dark Death Mountain Ledge (West)', 'TR Lazy Eyes'), - ('Dark Death Mountain Ledge (East)', 'TR Big Chest Entrance'), + ('Dark Death Mountain Ledge (West)', 'Turtle Rock Lazy Eyes Portal'), + ('Dark Death Mountain Ledge (East)', 'Turtle Rock Chest Portal'), ('Turtle Rock Isolated Ledge Exit', 'Dark Death Mountain Isolated Ledge'), - ('Turtle Rock Isolated Ledge Entrance', 'TR Eye Bridge'), - ('Inverted Ganons Tower', 'GT Lobby'), + ('Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Eye Bridge Portal'), + ('Inverted Ganons Tower', 'Ganons Tower Portal'), ('Inverted Ganons Tower Exit', 'Hyrule Castle Ledge'), - ('Inverted Agahnims Tower', 'Tower Lobby'), + ('Inverted Agahnims Tower', 'Agahnims Tower Portal'), ('Inverted Agahnims Tower Exit', 'Dark Death Mountain'), ('Turtle Rock Exit (Front)', 'Dark Death Mountain'), ('Ice Palace Exit', 'Dark Lake Hylia') diff --git a/InvertedRegions.py b/InvertedRegions.py index 0c64cf4c..71c26fc9 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -1,12 +1,12 @@ import collections from BaseClasses import RegionType -from Regions import create_lw_region, create_dw_region, create_cave_region, create_dungeon_region +from Regions import create_lw_region, create_dw_region, create_cave_region, create_dungeon_region, create_menu_region def create_inverted_regions(world, player): world.regions += [ - create_dw_region(player, 'Menu', None, ['Links House S&Q', 'Dark Sanctuary S&Q', 'Old Man S&Q', 'Castle Ledge S&Q']), + create_menu_region(player, 'Menu', None, ['Links House S&Q', 'Dark Sanctuary S&Q', 'Old Man S&Q', 'Castle Ledge S&Q']), create_lw_region(player, 'Light World', ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest', 'Bombos Tablet'], ["Blinds Hideout", "Hyrule Castle Secret Entrance Drop", 'Kings Grave Outer Rocks', 'Dam', 'Inverted Big Bomb Shop', 'Tavern North', 'Chicken House', 'Aginahs Cave', 'Sahasrahlas Hut', 'Kakariko Well Drop', 'Kakariko Well Cave', @@ -107,7 +107,8 @@ def create_inverted_regions(world, player): create_lw_region(player, 'Master Sword Meadow', ['Master Sword Pedestal']), create_cave_region(player, 'Lost Woods Gamble', 'a game of chance'), create_lw_region(player, 'Hyrule Castle Ledge', None, ['Hyrule Castle Entrance (East)', 'Hyrule Castle Entrance (West)', 'Inverted Ganons Tower', 'Hyrule Castle Ledge Courtyard Drop', 'Inverted Pyramid Hole']), - create_cave_region(player, 'Old Man Cave', 'a connector', ['Old Man'], ['Old Man Cave Exit (East)', 'Old Man Cave Exit (West)']), + create_cave_region(player, 'Old Man Cave', 'a connector', ['Old Man'], ['Old Man Cave Exit (East)']), + create_cave_region(player, 'Old Man Cave Ledge', 'a connector', None, ['Old Man Cave Exit (West)', 'Old Man Cave Dropdown']), create_cave_region(player, 'Old Man House', 'a connector', None, ['Old Man House Exit (Bottom)', 'Old Man House Front to Back']), create_cave_region(player, 'Old Man House Back', 'a connector', None, ['Old Man House Exit (Top)', 'Old Man House Back to Front']), create_lw_region(player, 'Death Mountain', None, ['Old Man Cave (East)', 'Old Man House (Bottom)', 'Old Man House (Top)', 'Death Mountain Return Cave (East)', 'Spectacle Rock Cave', diff --git a/ItemList.py b/ItemList.py index b822a49b..ddb629ab 100644 --- a/ItemList.py +++ b/ItemList.py @@ -6,7 +6,7 @@ from BaseClasses import Region, RegionType, Shop, ShopType, Location from Bosses import place_bosses from Dungeons import get_dungeon_item_pool from EntranceShuffle import connect_entrance -from Fill import FillError, fill_restrictive +from Fill import FillError, fill_restrictive, fast_fill from Items import ItemFactory import source.classes.constants as CONST @@ -266,7 +266,7 @@ def generate_itempool(world, player): amt = world.pool_adjustment[player] if amt < 0: for _ in range(amt, 0): - pool.remove('Rupees (20)') + pool.remove(next(iter([x for x in pool if x in ['Rupees (20)', 'Rupees (5)', 'Rupee (1)']]))) elif amt > 0: for _ in range(0, amt): pool.append('Rupees (20)') @@ -355,9 +355,12 @@ def generate_itempool(world, player): if world.retro[player]: set_up_take_anys(world, player) + if world.keydropshuffle[player]: + world.itempool += [ItemFactory('Small Key (Universal)', player)] * 32 create_dynamic_shop_locations(world, player) + take_any_locations = [ 'Snitch Lady (East)', 'Snitch Lady (West)', 'Bush Covered House', 'Light World Bomb Hut', 'Fortune Teller (Light)', 'Lake Hylia Fortune Teller', 'Lumberjack House', 'Bonk Fairy (Light)', @@ -735,3 +738,27 @@ def test(): if __name__ == '__main__': test() + + +def fill_specific_items(world): + keypool = [item for item in world.itempool if item.smallkey] + cage = world.get_location('Tower of Hera - Basement Cage', 1) + c_dungeon = cage.parent_region.dungeon + key_item = next(x for x in keypool if c_dungeon.name in x.name or (c_dungeon.name == 'Hyrule Castle' and 'Escape' in x.name)) + world.itempool.remove(key_item) + all_state = world.get_all_state(True) + fill_restrictive(world, all_state, [cage], [key_item]) + + location = world.get_location('Tower of Hera - Map Chest', 1) + key_item = next(x for x in world.itempool if 'Byrna' in x.name) + world.itempool.remove(key_item) + fast_fill(world, [key_item], [location]) + + + # somaria = next(item for item in world.itempool if item.name == 'Cane of Somaria') + # shooter = world.get_location('Palace of Darkness - Shooter Room', 1) + # world.itempool.remove(somaria) + # all_state = world.get_all_state(True) + # fill_restrictive(world, all_state, [shooter], [somaria]) + + diff --git a/KeyDoorShuffle.py b/KeyDoorShuffle.py index 277b1dcf..5b690c22 100644 --- a/KeyDoorShuffle.py +++ b/KeyDoorShuffle.py @@ -3,9 +3,9 @@ import logging from collections import defaultdict, deque from BaseClasses import DoorType -from Regions import dungeon_events, key_only_locations +from Regions import dungeon_events from Dungeons import dungeon_keys, dungeon_bigs -from DungeonGenerator import ExplorationState +from DungeonGenerator import ExplorationState, special_big_key_doors class KeyLayout(object): @@ -169,28 +169,18 @@ class KeyCounter(object): self.big_key_opened = False self.important_location = False self.other_locations = {} + self.important_locations = {} def used_smalls_loc(self, reserve=0): return max(self.used_keys + reserve - len(self.key_only_locations), 0) - def copy(self): - ret = KeyCounter(self.max_chests) - ret.free_locations.update(self.free_locations) - ret.key_only_locations.update(self.key_only_locations) - ret.child_doors.update(self.child_doors) - ret.used_keys = self.used_keys - ret.open_doors.update(self.open_doors) - ret.big_key_opened = self.big_key_opened - ret.important_location = self.important_location - return ret - def build_key_layout(builder, start_regions, proposal, world, player): key_layout = KeyLayout(builder.master_sector, start_regions, proposal) key_layout.flat_prop = flatten_pair_list(key_layout.proposal) key_layout.max_drops = count_key_drops(key_layout.sector) key_layout.max_chests = calc_max_chests(builder, key_layout, world, player) - key_layout.big_key_special = 'Hyrule Dungeon Cellblock' in key_layout.sector.region_set() + key_layout.big_key_special = check_bk_special(key_layout.sector.region_set(), world, player) key_layout.all_locations = find_all_locations(key_layout.sector) return key_layout @@ -199,7 +189,7 @@ def count_key_drops(sector): cnt = 0 for region in sector.regions: for loc in region.locations: - if loc.event and 'Small Key' in loc.item.name: + if loc.forced_item and 'Small Key' in loc.item.name: cnt += 1 return cnt @@ -243,18 +233,17 @@ def analyze_dungeon(key_layout, world, player): possible_smalls = count_unique_small_doors(key_counter, key_layout.flat_prop) avail_bigs = exist_relevant_big_doors(key_counter, key_layout) or exist_big_chest(key_counter) non_big_locs = count_locations_big_optional(key_counter.free_locations) - if not key_counter.big_key_opened: + big_avail = key_counter.big_key_opened or (key_layout.big_key_special and any(x for x in key_counter.other_locations.keys() if x.forced_item and x.forced_item.bigkey)) + if not big_avail: if chest_keys == non_big_locs and chest_keys > 0 and available <= possible_smalls and not avail_bigs: key_logic.bk_restricted.update(filter_big_chest(key_counter.free_locations)) # try to relax the rules here? - smallest requirement that doesn't force a softlock child_queue = deque() for child in key_counter.child_doors.keys(): - if not child.bigKey or not key_layout.big_key_special or key_counter.big_key_opened: + if not child.bigKey or not key_layout.big_key_special or big_avail: odd_counter = create_odd_key_counter(child, key_counter, key_layout, world, player) empty_flag = empty_counter(odd_counter) child_queue.append((child, odd_counter, empty_flag)) - if child in doors_completed and child in key_logic.door_rules.keys(): - rule = key_logic.door_rules[child] while len(child_queue) > 0: child, odd_counter, empty_flag = child_queue.popleft() if not child.bigKey and child not in doors_completed: @@ -541,6 +530,9 @@ def relative_empty_counter(odd_counter, key_counter): return False if len(set(odd_counter.free_locations).difference(key_counter.free_locations)) > 0: return False + # important only + if len(set(odd_counter.important_locations).difference(key_counter.important_locations)) > 0: + return False new_child_door = False for child in odd_counter.child_doors: if unique_child_door(child, key_counter): @@ -556,6 +548,9 @@ def relative_empty_counter_2(odd_counter, key_counter): return False if len(set(odd_counter.free_locations).difference(key_counter.free_locations)) > 0: return False + # important only + if len(set(odd_counter.important_locations).difference(key_counter.important_locations)) > 0: + return False for child in odd_counter.child_doors: if unique_child_door_2(child, key_counter): return False @@ -650,17 +645,17 @@ def find_worst_counter(door, odd_counter, key_counter, key_layout, skip_bk): # def find_potential_open_doors(key_counter, ignored_doors, key_layout, skip_bk, reserve=1): small_doors = [] big_doors = [] + if key_layout.big_key_special: + big_key_available = any(x for x in key_counter.other_locations.keys() if x.forced_item and x.forced_item.bigkey) + else: + big_key_available = len(key_counter.free_locations) - key_counter.used_smalls_loc(reserve) > 0 for other in key_counter.child_doors: if other not in ignored_doors and other.dest not in ignored_doors: if other.bigKey: - if not skip_bk and (not key_layout.big_key_special or key_counter.big_key_opened): + if not skip_bk and (not key_layout.big_key_special or big_key_available): big_doors.append(other) elif other.dest not in small_doors: small_doors.append(other) - if key_layout.big_key_special: - big_key_available = key_counter.big_key_opened - else: - big_key_available = len(key_counter.free_locations) - key_counter.used_smalls_loc(reserve) > 0 if len(small_doors) == 0 and (not skip_bk and (len(big_doors) == 0 or not big_key_available)): return None return small_doors + big_doors @@ -832,6 +827,13 @@ def available_chest_small_keys_logic(key_counter, world, player, sm_restricted): return key_counter.max_chests +def big_key_drop_available(key_counter): + for loc in key_counter.other_locations: + if loc.forced_big_key(): + return True + return False + + def bk_restricted_rules(rule, door, odd_counter, empty_flag, key_counter, key_layout, world, player): if key_counter.big_key_opened: return @@ -878,7 +880,7 @@ def find_worst_counter_wo_bk(small_key_num, accessible_set, door, odd_ctr, key_c def open_a_door(door, child_state, flat_proposal): - if door.bigKey: + if door.bigKey or door.name in special_big_key_doors: child_state.big_key_opened = True child_state.avail_doors.extend(child_state.big_doors) child_state.opened_doors.extend(set([d.door for d in child_state.big_doors])) @@ -972,22 +974,35 @@ def filter_big_chest(locations): return [x for x in locations if '- Big Chest' not in x.name] +def count_locations_exclude_logic(locations, key_logic): + cnt = 0 + for loc in locations: + if not location_is_bk_locked(loc, key_logic) and not loc.forced_item and not prize_or_event(loc): + cnt += 1 + return cnt + + +def location_is_bk_locked(loc, key_logic): + return loc in key_logic.bk_chests or loc in key_logic.bk_locked + + +def prize_or_event(loc): + return loc.name in dungeon_events or '- Prize' in loc.name or loc.name in ['Agahnim 1', 'Agahnim 2'] + + def count_free_locations(state): cnt = 0 for loc in state.found_locations: - if '- Prize' not in loc.name and loc.name not in dungeon_events and not loc.forced_item: - if loc.name not in ['Agahnim 1', 'Agahnim 2']: - cnt += 1 + if not prize_or_event(loc) and not loc.forced_item: + cnt += 1 return cnt def count_locations_exclude_big_chest(state): cnt = 0 for loc in state.found_locations: - if '- Big Chest' not in loc.name and '- Prize' not in loc.name and loc.name not in dungeon_events: - if not loc.forced_item and loc.name not in ['Agahnim 1', 'Agahnim 2', "Hyrule Castle - Zelda's Chest", - "Thieves' Town - Blind's Cell"]: - cnt += 1 + if '- Big Chest' not in loc.name and not loc.forced_item and not prize_or_event(loc): + cnt += 1 return cnt @@ -1138,16 +1153,20 @@ def check_rules_deep(original_counter, key_layout, world, player): bail = 0 last_counter = counter chest_keys = available_chest_small_keys_logic(counter, world, player, key_logic.sm_restricted) - big_avail = counter.big_key_opened - big_maybe_not_found = not counter.big_key_opened + bk_drop = big_key_drop_available(counter) + big_avail = counter.big_key_opened or bk_drop + big_maybe_not_found = not counter.big_key_opened and not bk_drop # better named as big_missing? if not key_layout.big_key_special and not big_avail: - for location in counter.free_locations: - if location not in key_logic.bk_restricted: - big_avail = True - break + if world.bigkeyshuffle[player]: + big_avail = True + else: + for location in counter.free_locations: + if location not in key_logic.bk_restricted: + big_avail = True + break outstanding_big_locs = {x for x in big_locations if x not in counter.free_locations} if big_maybe_not_found: - if len(outstanding_big_locs) == 0: + if len(outstanding_big_locs) == 0 and not key_layout.big_key_special: big_maybe_not_found = False big_uses_chest = big_avail and not key_layout.big_key_special collected_alt = len(counter.key_only_locations) + chest_keys @@ -1155,7 +1174,7 @@ def check_rules_deep(original_counter, key_layout, world, player): chest_keys -= 1 collected = len(counter.key_only_locations) + chest_keys can_progress = len(counter.child_doors) == 0 - smalls_opened = False + smalls_opened, big_opened = False, False small_rules = [] for door in counter.child_doors.keys(): can_open = False @@ -1229,6 +1248,15 @@ def set_paired_rules(key_logic, world, player): rule.opposite = key_logic.door_rules[door.dest.name] +def check_bk_special(regions, world, player): + for r_name in regions: + region = world.get_region(r_name, player) + for loc in region.locations: + if loc.forced_big_key(): + return True + return False + + # Soft lock stuff def validate_key_layout(key_layout, world, player): # retro is all good - except for hyrule castle in standard mode @@ -1237,7 +1265,7 @@ def validate_key_layout(key_layout, world, player): flat_proposal = key_layout.flat_prop state = ExplorationState(dungeon=key_layout.sector.name) state.key_locations = key_layout.max_chests - state.big_key_special = world.get_region('Hyrule Dungeon Cellblock', player) in key_layout.sector.regions + state.big_key_special = check_bk_special(key_layout.sector.regions, world, player) for region in key_layout.start_regions: state.visit_region(region, key_checks=True) state.add_all_doors_check_keys(region, flat_proposal, world, player) @@ -1259,7 +1287,10 @@ def validate_key_layout_sub_loop(key_layout, state, checked_states, flat_proposa return False # todo: allow more key shuffles - refine placement rules # if (not smalls_avail or available_small_locations == 0) and (state.big_key_opened or num_bigs == 0 or available_big_locations == 0): - if (not smalls_avail or not enough_small_locations(state, available_small_locations)) and (state.big_key_opened or num_bigs == 0 or available_big_locations == 0): + found_forced_bk = state.found_forced_bk() + smalls_done = not smalls_avail or not enough_small_locations(state, available_small_locations) + bk_done = state.big_key_opened or num_bigs == 0 or (available_big_locations == 0 and not found_forced_bk) + if smalls_done and bk_done: return False else: if smalls_avail and available_small_locations > 0: @@ -1278,10 +1309,11 @@ def validate_key_layout_sub_loop(key_layout, state, checked_states, flat_proposa valid = checked_states[code] if not valid: return False - if not state.big_key_opened and available_big_locations >= num_bigs > 0: + if not state.big_key_opened and (available_big_locations >= num_bigs > 0 or (found_forced_bk and num_bigs > 0)): state_copy = state.copy() open_a_door(state.big_doors[0].door, state_copy, flat_proposal) - state_copy.used_locations += 1 + if not found_forced_bk: + state_copy.used_locations += 1 code = state_id(state_copy, flat_proposal) if code not in checked_states.keys(): valid = validate_key_layout_sub_loop(key_layout, state_copy, checked_states, flat_proposal, @@ -1347,7 +1379,12 @@ def create_key_counters(key_layout, world, player): state.key_locations = len(world.get_dungeon(key_layout.sector.name, player).small_keys) else: state.key_locations = world.dungeon_layouts[player][key_layout.sector.name].key_doors_num - state.big_key_special = world.get_region('Hyrule Dungeon Cellblock', player) in key_layout.sector.regions + state.big_key_special, special_region = False, None + for region in key_layout.sector.regions: + for location in region.locations: + if location.forced_big_key(): + state.big_key_special = True + special_region = region for region in key_layout.start_regions: state.visit_region(region, key_checks=True) state.add_all_doors_check_keys(region, flat_proposal, world, player) @@ -1359,10 +1396,10 @@ def create_key_counters(key_layout, world, player): next_key_counter, parent_state = queue.popleft() for door in next_key_counter.child_doors: child_state = parent_state.copy() - if door.bigKey: + if door.bigKey or door.name in special_big_key_doors: key_layout.key_logic.bk_doors.add(door) # open the door, if possible - if not door.bigKey or not child_state.big_key_special or child_state.big_key_opened: + if not door.bigKey or not child_state.big_key_special or child_state.visited_at_all(special_region): open_a_door(door, child_state, flat_proposal) expand_key_state(child_state, flat_proposal, world, player) code = state_id(child_state, key_layout.flat_prop) @@ -1380,6 +1417,7 @@ def create_key_counter(state, key_layout, world, player): if important_location(loc, world, player): key_counter.important_location = True key_counter.other_locations[loc] = None + key_counter.important_locations[loc] = None elif loc.forced_item and loc.item.name == key_layout.key_logic.small_key_name: key_counter.key_only_locations[loc] = None elif loc.forced_item and loc.item.name == key_layout.key_logic.bk_name: @@ -1390,10 +1428,7 @@ def create_key_counter(state, key_layout, world, player): key_counter.other_locations[loc] = None key_counter.open_doors.update(dict.fromkeys(state.opened_doors)) key_counter.used_keys = count_unique_sm_doors(state.opened_doors) - if state.big_key_special: - key_counter.big_key_opened = state.visited(world.get_region('Hyrule Dungeon Cellblock', player)) - else: - key_counter.big_key_opened = state.big_key_opened + key_counter.big_key_opened = state.big_key_opened return key_counter @@ -1412,7 +1447,7 @@ def imp_locations_factory(world, player): def important_location(loc, world, player): - return '- Prize' in loc.name or loc.name in imp_locations_factory(world, player) or (loc.forced_item is not None and loc.item.bigkey) + return '- Prize' in loc.name or loc.name in imp_locations_factory(world, player) or (loc.forced_big_key()) def create_odd_key_counter(door, parent_counter, key_layout, world, player): @@ -1422,6 +1457,7 @@ def create_odd_key_counter(door, parent_counter, key_layout, world, player): odd_counter.key_only_locations = dict_difference(next_counter.key_only_locations, parent_counter.key_only_locations) odd_counter.child_doors = dict_difference(next_counter.child_doors, parent_counter.child_doors) odd_counter.other_locations = dict_difference(next_counter.other_locations, parent_counter.other_locations) + odd_counter.important_locations = dict_difference(next_counter.important_locations, parent_counter.important_locations) for loc in odd_counter.other_locations: if important_location(loc, world, player): odd_counter.important_location = True @@ -1679,13 +1715,13 @@ def validate_key_placement(key_layout, world, player): max_counter = find_max_counter(key_layout) keys_outside = 0 big_key_outside = False - dungeon = world.get_dungeon(key_layout.sector.name, player) - smallkey_name = 'Small Key (%s)' % (key_layout.sector.name if key_layout.sector.name != 'Hyrule Castle' else 'Escape') + smallkey_name = dungeon_keys[key_layout.sector.name] + bigkey_name = dungeon_bigs[key_layout.sector.name] if world.keyshuffle[player]: keys_outside = key_layout.max_chests - sum(1 for i in max_counter.free_locations if i.item is not None and i.item.name == smallkey_name and i.item.player == player) if world.bigkeyshuffle[player]: max_counter = find_max_counter(key_layout) - big_key_outside = dungeon.big_key not in (l.item for l in max_counter.free_locations) + big_key_outside = bigkey_name not in (l.item.name for l in max_counter.free_locations if l.item) for code, counter in key_layout.key_counters.items(): if len(counter.child_doors) == 0: @@ -1693,7 +1729,7 @@ def validate_key_placement(key_layout, world, player): if key_layout.big_key_special: big_found = any(i.forced_item is not None and i.item.bigkey for i in counter.other_locations) or big_key_outside else: - big_found = any(i.item is not None and i.item == dungeon.big_key for i in counter.free_locations if "- Big Chest" not in i.name) or big_key_outside + big_found = any(i.item is not None and i.item.name == bigkey_name for i in counter.free_locations if "- Big Chest" not in i.name) or big_key_outside if counter.big_key_opened and not big_found: continue # Can't get to this state found_locations = set(i for i in counter.free_locations if big_found or "- Big Chest" not in i.name) @@ -1703,7 +1739,7 @@ def validate_key_placement(key_layout, world, player): found_keys > counter.used_keys and any(not d.bigKey for d in counter.child_doors) if not can_progress: missing_locations = set(max_counter.free_locations.keys()).difference(found_locations) - missing_items = [l for l in missing_locations if l.item is None or (l.item.name != smallkey_name and l.item != dungeon.big_key) or "- Boss" in l.name] + missing_items = [l for l in missing_locations if l.item is None or (l.item.name != smallkey_name and l.item.name != bigkey_name) or "- Boss" in l.name] # missing_key_only = set(max_counter.key_only_locations.keys()).difference(counter.key_only_locations.keys()) # do freestanding keys matter for locations? if len(missing_items) > 0: # world.accessibility[player]=='locations' and (len(missing_locations)>0 or len(missing_key_only) > 0): logging.getLogger('').error("Keylock - can't open locations: ") diff --git a/Main.py b/Main.py index a80713cb..03af476f 100644 --- a/Main.py +++ b/Main.py @@ -11,20 +11,21 @@ import zlib from BaseClasses import World, CollectionState, Item, Region, Location, Shop, Entrance from Items import ItemFactory from KeyDoorShuffle import validate_key_placement -from Regions import create_regions, create_shops, mark_light_world_regions, create_dungeon_regions +from PotShuffle import shuffle_pots +from Regions import create_regions, create_shops, mark_light_world_regions, create_dungeon_regions, adjust_locations from InvertedRegions import create_inverted_regions, mark_dark_world_regions from EntranceShuffle import link_entrances, link_inverted_entrances from Rom import patch_rom, patch_race_rom, patch_enemizer, apply_rom_settings, LocalRom, JsonRom, get_hash_string from Doors import create_doors -from DoorShuffle import link_doors +from DoorShuffle import link_doors, connect_portal_copy from RoomData import create_rooms from Rules import set_rules from Dungeons import create_dungeons, fill_dungeons, fill_dungeons_restrictive from Fill import distribute_items_cutoff, distribute_items_staleness, distribute_items_restrictive, flood_items, balance_multiworld_progression -from ItemList import generate_itempool, difficulties, fill_prizes +from ItemList import generate_itempool, difficulties, fill_prizes, fill_specific_items from Utils import output_path, parse_player_names -__version__ = '0.1.1-dev' +__version__ = '0.2.0-dev' class EnemizerError(RuntimeError): pass @@ -56,6 +57,8 @@ def main(args, seed=None, fish=None): world.bigkeyshuffle = args.bigkeyshuffle.copy() world.crystals_needed_for_ganon = {player: random.randint(0, 7) if args.crystals_ganon[player] == 'random' else int(args.crystals_ganon[player]) for player in range(1, world.players + 1)} world.crystals_needed_for_gt = {player: random.randint(0, 7) if args.crystals_gt[player] == 'random' else int(args.crystals_gt[player]) for player in range(1, world.players + 1)} + world.crystals_ganon_orig = args.crystals_ganon.copy() + world.crystals_gt_orig = args.crystals_gt.copy() world.open_pyramid = args.openpyramid.copy() world.boss_shuffle = args.shufflebosses.copy() world.enemy_shuffle = args.shuffleenemies.copy() @@ -65,7 +68,11 @@ def main(args, seed=None, fish=None): world.intensity = {player: random.randint(1, 3) if args.intensity[player] == 'random' else int(args.intensity[player]) for player in range(1, world.players + 1)} world.experimental = args.experimental.copy() world.dungeon_counters = args.dungeon_counters.copy() + world.potshuffle = args.shufflepots.copy() world.fish = fish + world.keydropshuffle = args.keydropshuffle.copy() + world.mixed_travel = args.mixed_travel.copy() + world.standardize_palettes = args.standardize_palettes.copy() world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} @@ -105,6 +112,13 @@ def main(args, seed=None, fish=None): create_doors(world, player) create_rooms(world, player) create_dungeons(world, player) + adjust_locations(world, player) + + if any(world.potshuffle.values()): + logger.info(world.fish.translate("cli", "cli", "shuffling.pots")) + for player in range(1, world.players + 1): + if world.potshuffle[player]: + shuffle_pots(world, player) logger.info(world.fish.translate("cli","cli","shuffling.world")) @@ -123,6 +137,7 @@ def main(args, seed=None, fish=None): else: mark_dark_world_regions(world, player) logger.info(world.fish.translate("cli","cli","generating.itempool")) + logger.info(world.fish.translate("cli","cli","generating.itempool")) for player in range(1, world.players + 1): generate_itempool(world, player) @@ -136,6 +151,9 @@ def main(args, seed=None, fish=None): fill_prizes(world) + # used for debugging + # fill_specific_items(world) + logger.info(world.fish.translate("cli","cli","placing.dungeon.items")) shuffled_locations = None @@ -199,7 +217,10 @@ def main(args, seed=None, fish=None): sprite_random_on_hit = type(args.sprite[player]) is str and args.sprite[player].lower() == 'randomonhit' use_enemizer = (world.boss_shuffle[player] != 'none' or world.enemy_shuffle[player] != 'none' or world.enemy_health[player] != 'default' or world.enemy_damage[player] != 'default' - or args.shufflepots[player] or sprite_random_on_hit) + or sprite_random_on_hit) + + if use_enemizer: + base_patch = LocalRom(args.rom) # update base2current.json rom = JsonRom() if args.jsonout or use_enemizer else LocalRom(args.rom) @@ -207,7 +228,7 @@ def main(args, seed=None, fish=None): if args.rom and not(os.path.isfile(args.rom)): raise RuntimeError("Could not find valid base rom for enemizing at expected path %s." % args.rom) if os.path.exists(args.enemizercli): - patch_enemizer(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) + patch_enemizer(world, player, rom, args.rom, args.enemizercli, sprite_random_on_hit) enemized = True if not args.jsonout: rom = LocalRom.fromJsonRom(rom, args.rom, 0x400000) @@ -330,6 +351,7 @@ def main(args, seed=None, fish=None): return world + def copy_world(world): # ToDo: Not good yet ret = World(world.players, world.shuffle, world.doorShuffle, world.logic, world.mode, world.swords, @@ -363,6 +385,8 @@ def copy_world(world): ret.bigkeyshuffle = world.bigkeyshuffle.copy() ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon.copy() ret.crystals_needed_for_gt = world.crystals_needed_for_gt.copy() + ret.crystals_ganon_orig = world.crystals_ganon_orig.copy() + ret.crystals_gt_orig = world.crystals_gt_orig.copy() ret.open_pyramid = world.open_pyramid.copy() ret.boss_shuffle = world.boss_shuffle.copy() ret.enemy_shuffle = world.enemy_shuffle.copy() @@ -371,6 +395,9 @@ def copy_world(world): ret.beemizer = world.beemizer.copy() ret.intensity = world.intensity.copy() ret.experimental = world.experimental.copy() + ret.keydropshuffle = world.keydropshuffle.copy() + ret.mixed_travel = world.mixed_travel.copy() + ret.standardize_palettes = world.standardize_palettes.copy() for player in range(1, world.players + 1): if world.mode[player] != 'inverted': @@ -405,20 +432,26 @@ def copy_world(world): copied_region = ret.get_region(region.name, region.player) copied_region.is_light_world = region.is_light_world copied_region.is_dark_world = region.is_dark_world + copied_region.dungeon = region.dungeon + copied_region.locations = [Location(location.player, location.name, parent=copied_region) for location in region.locations] for entrance in region.entrances: ret.get_entrance(entrance.name, entrance.player).connect(copied_region) # fill locations for location in world.get_locations(): + new_location = ret.get_location(location.name, location.player) if location.item is not None: item = Item(location.item.name, location.item.advancement, location.item.priority, location.item.type, player = location.item.player) - ret.get_location(location.name, location.player).item = item - item.location = ret.get_location(location.name, location.player) + new_location.item = item + item.location = new_location item.world = ret if location.event: - ret.get_location(location.name, location.player).event = True + new_location.event = True if location.locked: - ret.get_location(location.name, location.player).locked = True + new_location.locked = True + # these need to be modified properly by set_rules + new_location.access_rule = lambda state: True + new_location.item_rule = lambda state: True # copy remaining itempool. No item in itempool should have an assigned location for item in world.itempool: @@ -441,6 +474,11 @@ def copy_world(world): ret.inaccessible_regions = world.inaccessible_regions ret.dungeon_layouts = world.dungeon_layouts ret.key_logic = world.key_logic + ret.dungeon_portals = world.dungeon_portals + for player, portals in world.dungeon_portals.items(): + for portal in portals: + connect_portal_copy(portal, ret, player) + ret.sanc_portal = world.sanc_portal for player in range(1, world.players + 1): set_rules(ret, player) @@ -502,11 +540,11 @@ def create_playthrough(world): state_cache.append(state.copy()) - logging.getLogger('').debug(world.fish.translate("cli","cli","building.calculating.spheres"), len(collection_spheres), len(sphere), len(prog_locations)) + logging.getLogger('').debug(world.fish.translate("cli", "cli", "building.calculating.spheres"), len(collection_spheres), len(sphere), len(prog_locations)) if not sphere: - logging.getLogger('').error(world.fish.translate("cli","cli","cannot.reach.items"), [world.fish.translate("cli","cli","cannot.reach.item") % (location.item.name, location.item.player, location.name, location.player) for location in sphere_candidates]) + logging.getLogger('').error(world.fish.translate("cli", "cli", "cannot.reach.items"), [world.fish.translate("cli","cli","cannot.reach.item") % (location.item.name, location.item.player, location.name, location.player) for location in sphere_candidates]) if any([world.accessibility[location.item.player] != 'none' for location in sphere_candidates]): - raise RuntimeError(world.fish.translate("cli","cli","cannot.reach.progression")) + raise RuntimeError(world.fish.translate("cli", "cli", "cannot.reach.progression")) else: old_world.spoiler.unreachables = sphere_candidates.copy() break @@ -579,7 +617,7 @@ def create_playthrough(world): old_world.spoiler.paths = dict() for player in range(1, world.players + 1): - old_world.spoiler.paths.update({ str(location) : get_path(state, location.parent_region) for sphere in collection_spheres for location in sphere if location.player == player}) + old_world.spoiler.paths.update({location.gen_name(): get_path(state, location.parent_region) for sphere in collection_spheres for location in sphere if location.player == player}) for _, path in dict(old_world.spoiler.paths).items(): if any(exit == 'Pyramid Fairy' for (_, exit) in path): if world.mode[player] != 'inverted': @@ -590,4 +628,4 @@ def create_playthrough(world): # we can finally output our playthrough old_world.spoiler.playthrough = OrderedDict([("0", [str(item) for item in world.precollected_items if item.advancement])]) for i, sphere in enumerate(collection_spheres): - old_world.spoiler.playthrough[str(i + 1)] = {str(location): str(location.item) for location in sphere} + old_world.spoiler.playthrough[str(i + 1)] = {location.gen_name(): str(location.item) for location in sphere} diff --git a/MultiClient.py b/MultiClient.py index 58c2682e..15840488 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -126,23 +126,34 @@ location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), 'Desert Palace - Map Chest': (0x74, 0x10), 'Desert Palace - Compass Chest': (0x85, 0x10), 'Desert Palace - Big Key Chest': (0x75, 0x10), + 'Desert Palace - Desert Tiles 1 Pot Key': (0x63, 0x400), + 'Desert Palace - Beamos Hall Pot Key': (0x53, 0x400), + 'Desert Palace - Desert Tiles 2 Pot Key': (0x43, 0x400), 'Desert Palace - Boss': (0x33, 0x800), 'Eastern Palace - Compass Chest': (0xa8, 0x10), 'Eastern Palace - Big Chest': (0xa9, 0x10), + 'Eastern Palace - Dark Square Pot Key': (0xba, 0x400), + 'Eastern Palace - Dark Eyegore Key Drop': (0x99, 0x400), 'Eastern Palace - Cannonball Chest': (0xb9, 0x10), 'Eastern Palace - Big Key Chest': (0xb8, 0x10), 'Eastern Palace - Map Chest': (0xaa, 0x10), 'Eastern Palace - Boss': (0xc8, 0x800), 'Hyrule Castle - Boomerang Chest': (0x71, 0x10), + 'Hyrule Castle - Boomerang Guard Key Drop': (0x71, 0x400), 'Hyrule Castle - Map Chest': (0x72, 0x10), + 'Hyrule Castle - Map Guard Key Drop': (0x72, 0x400), "Hyrule Castle - Zelda's Chest": (0x80, 0x10), + 'Hyrule Castle - Big Key Drop': (0x80, 0x400), 'Sewers - Dark Cross': (0x32, 0x10), + 'Hyrule Castle - Key Rat Key Drop': (0x21, 0x400), 'Sewers - Secret Room - Left': (0x11, 0x10), 'Sewers - Secret Room - Middle': (0x11, 0x20), 'Sewers - Secret Room - Right': (0x11, 0x40), 'Sanctuary': (0x12, 0x10), 'Castle Tower - Room 03': (0xe0, 0x10), 'Castle Tower - Dark Maze': (0xd0, 0x10), + 'Castle Tower - Dark Archer Key Drop': (0xc0, 0x400), + 'Castle Tower - Circle of Pots Key Drop': (0xb0, 0x400), 'Spectacle Rock Cave': (0xea, 0x400), 'Paradox Cave Lower - Far Left': (0xef, 0x10), 'Paradox Cave Lower - Left': (0xef, 0x20), @@ -181,18 +192,25 @@ location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), 'Mimic Cave': (0x10c, 0x10), 'Swamp Palace - Entrance': (0x28, 0x10), 'Swamp Palace - Map Chest': (0x37, 0x10), + 'Swamp Palace - Pot Row Pot Key': (0x38, 0x400), + 'Swamp Palace - Trench 1 Pot Key': (0x37, 0x400), + 'Swamp Palace - Hookshot Pot Key': (0x36, 0x400), 'Swamp Palace - Big Chest': (0x36, 0x10), 'Swamp Palace - Compass Chest': (0x46, 0x10), + 'Swamp Palace - Trench 2 Pot Key': (0x35, 0x400), 'Swamp Palace - Big Key Chest': (0x35, 0x10), 'Swamp Palace - West Chest': (0x34, 0x10), 'Swamp Palace - Flooded Room - Left': (0x76, 0x10), 'Swamp Palace - Flooded Room - Right': (0x76, 0x20), 'Swamp Palace - Waterfall Room': (0x66, 0x10), + 'Swamp Palace - Waterway Pot Key': (0x16, 0x400), 'Swamp Palace - Boss': (0x6, 0x800), "Thieves' Town - Big Key Chest": (0xdb, 0x20), "Thieves' Town - Map Chest": (0xdb, 0x10), "Thieves' Town - Compass Chest": (0xdc, 0x10), "Thieves' Town - Ambush Chest": (0xcb, 0x10), + "Thieves' Town - Hallway Pot Key": (0xbc, 0x400), + "Thieves' Town - Spike Switch Pot Key": (0xab, 0x400), "Thieves' Town - Attic": (0x65, 0x10), "Thieves' Town - Big Chest": (0x44, 0x10), "Thieves' Town - Blind's Cell": (0x45, 0x10), @@ -203,28 +221,39 @@ location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), 'Skull Woods - Pot Prison': (0x57, 0x20), 'Skull Woods - Pinball Room': (0x68, 0x10), 'Skull Woods - Big Key Chest': (0x57, 0x10), + 'Skull Woods - West Lobby Pot Key': (0x56, 0x400), 'Skull Woods - Bridge Room': (0x59, 0x10), + 'Skull Woods - Spike Corner Key Drop': (0x39, 0x400), 'Skull Woods - Boss': (0x29, 0x800), + 'Ice Palace - Jelly Key Drop': (0x0e, 0x400), 'Ice Palace - Compass Chest': (0x2e, 0x10), + 'Ice Palace - Conveyor Key Drop': (0x3e, 0x400), 'Ice Palace - Freezor Chest': (0x7e, 0x10), 'Ice Palace - Big Chest': (0x9e, 0x10), 'Ice Palace - Iced T Room': (0xae, 0x10), + 'Ice Palace - Many Pots Pot Key': (0x9f, 0x400), 'Ice Palace - Spike Room': (0x5f, 0x10), 'Ice Palace - Big Key Chest': (0x1f, 0x10), + 'Ice Palace - Hammer Block Key Drop': (0x3f, 0x400), 'Ice Palace - Map Chest': (0x3f, 0x10), 'Ice Palace - Boss': (0xde, 0x800), 'Misery Mire - Big Chest': (0xc3, 0x10), 'Misery Mire - Map Chest': (0xc3, 0x20), 'Misery Mire - Main Lobby': (0xc2, 0x10), 'Misery Mire - Bridge Chest': (0xa2, 0x10), + 'Misery Mire - Spikes Pot Key': (0xb3, 0x400), 'Misery Mire - Spike Chest': (0xb3, 0x10), + 'Misery Mire - Fishbone Pot Key': (0xa1, 0x400), + 'Misery Mire - Conveyor Crystal Key Drop': (0xc1, 0x400), 'Misery Mire - Compass Chest': (0xc1, 0x10), 'Misery Mire - Big Key Chest': (0xd1, 0x10), 'Misery Mire - Boss': (0x90, 0x800), 'Turtle Rock - Compass Chest': (0xd6, 0x10), 'Turtle Rock - Roller Room - Left': (0xb7, 0x10), 'Turtle Rock - Roller Room - Right': (0xb7, 0x20), + 'Turtle Rock - Pokey 1 Key Drop': (0xb6, 0x400), 'Turtle Rock - Chain Chomps': (0xb6, 0x10), + 'Turtle Rock - Pokey 2 Key Drop': (0x13, 0x400), 'Turtle Rock - Big Key Chest': (0x14, 0x10), 'Turtle Rock - Big Chest': (0x24, 0x10), 'Turtle Rock - Crystaroller Room': (0x4, 0x10), @@ -247,6 +276,7 @@ location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), 'Palace of Darkness - Big Chest': (0x1a, 0x10), 'Palace of Darkness - Harmless Hellway': (0x1a, 0x40), 'Palace of Darkness - Boss': (0x5a, 0x800), + 'Ganons Tower - Conveyor Cross Pot Key': (0x8b, 0x400), "Ganons Tower - Bob's Torch": (0x8c, 0x400), 'Ganons Tower - Hope Room - Left': (0x8c, 0x20), 'Ganons Tower - Hope Room - Right': (0x8c, 0x40), @@ -255,11 +285,13 @@ location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), 'Ganons Tower - Compass Room - Top Right': (0x9d, 0x20), 'Ganons Tower - Compass Room - Bottom Left': (0x9d, 0x40), 'Ganons Tower - Compass Room - Bottom Right': (0x9d, 0x80), + 'Ganons Tower - Conveyor Star Pits Pot Key': (0x7b, 0x400), 'Ganons Tower - DMs Room - Top Left': (0x7b, 0x10), 'Ganons Tower - DMs Room - Top Right': (0x7b, 0x20), 'Ganons Tower - DMs Room - Bottom Left': (0x7b, 0x40), 'Ganons Tower - DMs Room - Bottom Right': (0x7b, 0x80), 'Ganons Tower - Map Chest': (0x8b, 0x10), + 'Ganons Tower - Double Switch Pot Key': (0x9b, 0x400), 'Ganons Tower - Firesnake Room': (0x7d, 0x10), 'Ganons Tower - Randomizer Room - Top Left': (0x7c, 0x10), 'Ganons Tower - Randomizer Room - Top Right': (0x7c, 0x20), @@ -272,6 +304,7 @@ location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), 'Ganons Tower - Big Key Chest': (0x1c, 0x10), 'Ganons Tower - Mini Helmasaur Room - Left': (0x3d, 0x10), 'Ganons Tower - Mini Helmasaur Room - Right': (0x3d, 0x20), + 'Ganons Tower - Mini Helmasaur Key Drop': (0x3d, 0x400), 'Ganons Tower - Pre-Moldorm Chest': (0x3d, 0x40), 'Ganons Tower - Validation Chest': (0x4d, 0x10)} location_table_npc = {'Mushroom': 0x1000, @@ -630,7 +663,7 @@ async def process_server_cmd(ctx : Context, cmd, args): ctx.player_names = {p: n for p, n in args[1]} msgs = [] if ctx.locations_checked: - msgs.append(['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]) + msgs.append(['LocationChecks', [Regions.lookup_name_to_id[loc] for loc in ctx.locations_checked]]) if ctx.locations_scouted: msgs.append(['LocationScouts', list(ctx.locations_scouted)]) if msgs: @@ -643,7 +676,7 @@ async def process_server_cmd(ctx : Context, cmd, args): elif start_index != len(ctx.items_received): sync_msg = [['Sync']] if ctx.locations_checked: - sync_msg.append(['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]) + sync_msg.append(['LocationChecks', [Regions.lookup_name_to_id[loc] for loc in ctx.locations_checked]]) await send_msgs(ctx.socket, sync_msg) if start_index == len(ctx.items_received): for item in items: @@ -655,7 +688,7 @@ async def process_server_cmd(ctx : Context, cmd, args): if location not in ctx.locations_info: replacements = {0xA2: 'Small Key', 0x9D: 'Big Key', 0x8D: 'Compass', 0x7D: 'Map'} item_name = replacements.get(item, get_item_name_from_id(item)) - logging.info(f"Saw {color(item_name, 'red', 'bold')} at {list(Regions.location_table.keys())[location - 1]}") + logging.info(f"Saw {color(item_name, 'red', 'bold')} at {list(Regions.lookup_id_to_name.keys())[location - 1]}") ctx.locations_info[location] = (item, player) ctx.watcher_event.set() @@ -736,7 +769,7 @@ async def console_loop(ctx : Context): get_location_name_from_address(item.location), index, len(ctx.items_received))) if command[0] == '/missing': - for location in [k for k, v in Regions.location_table.items() if type(v[0]) is int]: + for location in [k for k, v in Regions.lookup_name_to_id.items() if type(v) is int]: if location not in ctx.locations_checked: logging.info('Missing: ' + location) if command[0] == '/getitem' and len(command) > 1: @@ -751,23 +784,26 @@ async def console_loop(ctx : Context): await snes_flush_writes(ctx) + def get_item_name_from_id(code): items = [k for k, i in Items.item_table.items() if type(i[3]) is int and i[3] == code] - return items[0] if items else 'Unknown item' + return items[0] if items else f'Unknown item (ID:{code})' + def get_location_name_from_address(address): if type(address) is str: return address - locs = [k for k, l in Regions.location_table.items() if type(l[0]) is int and l[0] == address] - return locs[0] if locs else 'Unknown location' + return Regions.lookup_id_to_name.get(address, f'Unknown location (ID:{address})') + async def track_locations(ctx : Context, roomid, roomdata): new_locations = [] + def new_check(location): ctx.locations_checked.add(location) logging.info("New check: %s (%d/216)" % (location, len(ctx.locations_checked))) - new_locations.append(Regions.location_table[location][0]) + new_locations.append(Regions.lookup_name_to_id[location]) for location, (loc_roomid, loc_mask) in location_table_uw.items(): if location not in ctx.locations_checked and loc_roomid == roomid and (roomdata << 4) & loc_mask != 0: @@ -882,7 +918,7 @@ async def game_watcher(ctx : Context): if scout_location > 0 and scout_location not in ctx.locations_scouted: ctx.locations_scouted.add(scout_location) - logging.info(f'Scouting item at {list(Regions.location_table.keys())[scout_location - 1]}') + logging.info(f'Scouting item at {list(Regions.lookup_id_to_name.keys())[scout_location - 1]}') await send_msgs(ctx.socket, [['LocationScouts', [scout_location]]]) await track_locations(ctx, roomid, roomdata) diff --git a/MultiServer.py b/MultiServer.py index f81ad629..cd333edf 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -154,7 +154,8 @@ def send_new_items(ctx : Context): client.send_index = len(items) def forfeit_player(ctx : Context, team, slot): - all_locations = [values[0] for values in Regions.location_table.values() if type(values[0]) is int] + all_locations = {values[0] for values in Regions.location_table.values() if type(values[0]) is int} + all_locations.update({values[1] for values in Regions.key_drop_data.values()}) notify_all(ctx, "%s (Team #%d) has forfeited" % (ctx.player_names[(team, slot)], team + 1)) register_location_checks(ctx, team, slot, all_locations) @@ -248,11 +249,11 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): return locs = [] for location in args: - if type(location) is not int or 0 >= location > len(Regions.location_table): + if type(location) is not int or 0 >= location > len(Regions.lookup_id_to_name.keys()): await send_msgs(client.socket, [['InvalidArguments', 'LocationScouts']]) return - loc_name = list(Regions.location_table.keys())[location - 1] - target_item, target_player = ctx.locations[(Regions.location_table[loc_name][0], client.slot)] + loc_name = list(Regions.lookup_id_to_name.keys())[location - 1] + target_item, target_player = ctx.locations[(Regions.lookup_name_to_id[loc_name], client.slot)] replacements = {'SmallKey': 0xA2, 'BigKey': 0x9D, 'Compass': 0x8D, 'Map': 0x7D} item_type = [i[2] for i in Items.item_table.values() if type(i[3]) is int and i[3] == target_item] diff --git a/PotShuffle.py b/PotShuffle.py new file mode 100644 index 00000000..5fb99a86 --- /dev/null +++ b/PotShuffle.py @@ -0,0 +1,335 @@ +from collections import defaultdict + +from BaseClasses import PotItem, Pot, PotFlags, CrystalBarrier +from Regions import key_drop_data + +movable_switch_rooms = defaultdict(lambda: [], + {'PoD Stalfos Basement': ['PoD Basement Ledge'], + 'Thieves Attic': ['Thieves Attic Hint'], + 'Mire Hub Switch': ['Mire Hub', 'Mire Hub Right']}) + +invalid_key_rooms = { + 'Swamp Big Key Ledge', + 'Swamp Trench 2 Departure', + 'Desert Wall Slide', + 'Skull X Room', # only required for 100% locations + 'GT Map Room', + 'GT Warp Maze - Mid Section' +} + +vanilla_pots = { + 2: [Pot(80, 6, PotItem.Nothing, 'Sewers Yet More Rats'), Pot(80, 8, PotItem.Nothing, 'Sewers Yet More Rats'), Pot(44, 8, PotItem.Nothing, 'Sewers Yet More Rats'), Pot(44, 10, PotItem.Nothing, 'Sewers Yet More Rats')], + 4: [Pot(162, 25, PotItem.Nothing, 'TR Dash Room'), Pot(152, 25, PotItem.Nothing, 'TR Dash Room'), Pot(152, 22, PotItem.Nothing, 'TR Dash Room'), Pot(162, 22, PotItem.Nothing, 'TR Dash Room'), Pot(204, 19, PotItem.Bomb, 'TR Tongue Pull'), + Pot(240, 19, PotItem.Bomb, 'TR Tongue Pull')], + 9: [Pot(12, 4, PotItem.OneRupee, 'PoD Shooter Room'), Pot(48, 4, PotItem.Heart, 'PoD Shooter Room'), Pot(12, 12, PotItem.Switch, 'PoD Shooter Room')], + 10: [Pot(96, 8, PotItem.Heart, 'PoD Stalfos Basement'), Pot(104, 8, PotItem.Heart, 'PoD Stalfos Basement'), Pot(204, 11, PotItem.Switch, 'PoD Stalfos Basement'), Pot(100, 9, PotItem.Nothing, 'PoD Stalfos Basement'), + Pot(156, 17, PotItem.Bomb, 'PoD Basement Ledge', PotFlags.SwitchLogicChange), Pot(160, 17, PotItem.FiveArrows, 'PoD Basement Ledge', PotFlags.SwitchLogicChange)], + 11: [Pot(202, 3, PotItem.Bomb, 'PoD Dark Pegs'), Pot(202, 12, PotItem.Bomb, 'PoD Dark Pegs')], + 17: [Pot(152, 19, PotItem.Nothing, 'Sewers Secret Room'), Pot(152, 15, PotItem.Nothing, 'Sewers Secret Room'), Pot(144, 15, PotItem.Heart, 'Sewers Secret Room'), Pot(160, 15, PotItem.Heart, 'Sewers Secret Room'), + Pot(144, 19, PotItem.Heart, 'Sewers Secret Room'), Pot(160, 19, PotItem.Heart, 'Sewers Secret Room')], + 21: [Pot(96, 4, PotItem.Bomb, 'TR Pipe Pit'), Pot(100, 4, PotItem.SmallMagic, 'TR Pipe Pit'), Pot(104, 4, PotItem.Heart, 'TR Pipe Pit'), Pot(108, 4, PotItem.SmallMagic, 'TR Pipe Pit'), Pot(112, 4, PotItem.FiveArrows, 'TR Pipe Pit'), + Pot(12, 6, PotItem.OneRupee, 'TR Pipe Pit'), Pot(16, 6, PotItem.FiveArrows, 'TR Pipe Pit'), Pot(20, 6, PotItem.FiveRupees, 'TR Pipe Pit'), Pot(70, 11, PotItem.BigMagic, 'TR Pipe Ledge')], + 22: [Pot(188, 3, PotItem.Heart, 'Swamp I'), Pot(192, 3, PotItem.Heart, 'Swamp I'), Pot(188, 4, PotItem.SmallMagic, 'Swamp I'), Pot(192, 4, PotItem.SmallMagic, 'Swamp I'), Pot(188, 5, PotItem.FiveArrows, 'Swamp I'), + Pot(192, 5, PotItem.FiveArrows, 'Swamp I'), Pot(188, 6, PotItem.Bomb, 'Swamp I'), Pot(192, 6, PotItem.Bomb, 'Swamp I'), Pot(240, 19, PotItem.Key, 'Swamp Waterway')], + 23: [Pot(100, 13, PotItem.Heart, 'Hera 5F'), Pot(100, 14, PotItem.Heart, 'Hera 5F'), Pot(100, 15, PotItem.Heart, 'Hera 5F'), Pot(100, 16, PotItem.Heart, 'Hera 5F'), Pot(100, 17, PotItem.Heart, 'Hera 5F'), Pot(100, 18, PotItem.Heart, 'Hera 5F'), + Pot(104, 13, PotItem.Heart, 'Hera 5F'), Pot(104, 14, PotItem.Heart, 'Hera 5F'), Pot(104, 15, PotItem.Heart, 'Hera 5F'), Pot(104, 16, PotItem.Heart, 'Hera 5F'), Pot(104, 17, PotItem.Heart, 'Hera 5F'), Pot(104, 18, PotItem.Heart, 'Hera 5F')], + 26: [Pot(28, 5, PotItem.Bomb, 'PoD Falling Bridge Ledge'), Pot(32, 5, PotItem.Bomb, 'PoD Falling Bridge Ledge'), Pot(28, 27, PotItem.Bomb, 'PoD Falling Bridge'), Pot(32, 27, PotItem.Bomb, 'PoD Falling Bridge'), + Pot(232, 19, PotItem.Nothing, 'PoD Harmless Hellway'), Pot(212, 19, PotItem.Nothing, 'PoD Harmless Hellway')], + 27: [Pot(20, 23, PotItem.FiveArrows, 'PoD Mimics 2'), Pot(40, 23, PotItem.FiveArrows, 'PoD Mimics 2')], + 30: [Pot(84, 9, PotItem.Bomb, 'Ice Bomb Drop')], + 31: [Pot(28, 25, PotItem.Switch, 'Ice Pengator Switch'), Pot(28, 23, PotItem.Nothing, 'Ice Pengator Switch'), Pot(86, 26, PotItem.Nothing, 'Ice Big Key'), Pot(86, 27, PotItem.Nothing, 'Ice Big Key')], + 33: [Pot(160, 20, PotItem.Nothing, 'Sewers Key Rat'), Pot(168, 24, PotItem.SmallMagic, 'Sewers Key Rat'), Pot(48, 28, PotItem.Heart, 'Sewers Key Rat'), Pot(82, 28, PotItem.SmallMagic, 'Sewers Key Rat'), + Pot(100, 28, PotItem.Nothing, 'Sewers Key Rat'), Pot(104, 28, PotItem.Nothing, 'Sewers Key Rat')], + 35: [Pot(86, 26, PotItem.OneRupee, 'TR Lazy Eyes'), Pot(90, 26, PotItem.Heart, 'TR Lazy Eyes'), Pot(94, 26, PotItem.OneRupee, 'TR Lazy Eyes'), Pot(98, 26, PotItem.Bomb, 'TR Lazy Eyes'), Pot(102, 26, PotItem.OneRupee, 'TR Lazy Eyes')], + 36: [Pot(12, 4, PotItem.FiveRupees, 'TR Twin Pokeys'), Pot(48, 4, PotItem.Heart, 'TR Twin Pokeys'), Pot(12, 12, PotItem.SmallMagic, 'TR Twin Pokeys'), Pot(48, 12, PotItem.OneRupee, 'TR Twin Pokeys')], + 38: [Pot(28, 4, PotItem.Bomb, 'Swamp Shooters'), Pot(12, 8, PotItem.SmallMagic, 'Swamp Shooters'), Pot(150, 19, PotItem.Switch, 'Swamp Push Statue'), Pot(22, 26, PotItem.FiveRupees, 'Swamp Push Statue'), + Pot(220, 26, PotItem.FiveArrows, 'Swamp Push Statue', PotFlags.SwitchLogicChange)], + 39: [Pot(214, 19, PotItem.Nothing, 'Hera 4F'), Pot(214, 20, PotItem.Nothing, 'Hera 4F'), Pot(166, 20, PotItem.Bomb, 'Hera 4F'), Pot(214, 21, PotItem.Heart, 'Hera 4F'), Pot(40, 28, PotItem.OneRupee, 'Hera 4F'), + Pot(44, 28, PotItem.OneRupee, 'Hera 4F'), Pot(80, 28, PotItem.FiveRupees, 'Hera 4F'), Pot(84, 28, PotItem.FiveRupees, 'Hera 4F'), Pot(102, 17, PotItem.Nothing, 'Hera 4F'), Pot(98, 17, PotItem.Nothing, 'Hera 4F'), + Pot(106, 17, PotItem.Nothing, 'Hera 4F'), Pot(166, 21, PotItem.Nothing, 'Hera 4F'), Pot(166, 19, PotItem.Nothing, 'Hera 4F'), Pot(92, 12, PotItem.Nothing, 'Hera 4F'), Pot(160, 12, PotItem.Nothing, 'Hera 4F')], + 42: [Pot(80, 12, PotItem.OneRupee, 'PoD Arena Main'), Pot(80, 19, PotItem.Heart, 'PoD Arena Main')], + 43: [Pot(16, 5, PotItem.Heart, 'PoD Sexy Statue'), Pot(44, 5, PotItem.Switch, 'PoD Sexy Statue'), Pot(16, 6, PotItem.Heart, 'PoD Sexy Statue'), Pot(44, 6, PotItem.Bomb, 'PoD Sexy Statue'), Pot(16, 7, PotItem.Heart, 'PoD Sexy Statue'), + Pot(44, 7, PotItem.Bomb, 'PoD Sexy Statue'), Pot(146, 21, PotItem.Bomb, 'PoD Map Balcony'), Pot(170, 21, PotItem.FiveArrows, 'PoD Map Balcony'), Pot(146, 22, PotItem.Bomb, 'PoD Map Balcony'), + Pot(170, 22, PotItem.FiveArrows, 'PoD Map Balcony')], + 44: [Pot(108, 24, PotItem.Heart, 'Hookshot Cave'), Pot(112, 24, PotItem.Heart, 'Hookshot Cave')], + 47: [Pot(28, 7, PotItem.Heart, 'Kakariko Well (top)'), Pot(32, 7, PotItem.Heart, 'Kakariko Well (top)'), Pot(28, 9, PotItem.FiveRupees, 'Kakariko Well (top)'), Pot(32, 9, PotItem.FiveRupees, 'Kakariko Well (top)'), + Pot(172, 19, PotItem.FiveRupees, 'Kakariko Well (top)'), Pot(180, 19, PotItem.FiveRupees, 'Kakariko Well (top)'), Pot(104, 27, PotItem.Heart, 'Kakariko Well (bottom)'), Pot(104, 28, PotItem.Heart, 'Kakariko Well (bottom)')], + 49: [Pot(92, 28, PotItem.Bomb, 'Hera Beetles'), Pot(96, 28, PotItem.Nothing, 'Hera Beetles')], + 50: [Pot(28, 13, PotItem.SmallMagic, 'Sewers Dark Cross')], + 52: [Pot(78, 8, PotItem.FiveRupees, 'Swamp Barrier Ledge'), Pot(92, 8, PotItem.FiveRupees, 'Swamp Barrier Ledge')], + 53: [Pot(60, 6, PotItem.Key, 'Swamp Trench 2 Alcove'), Pot(20, 8, PotItem.FiveRupees, 'Swamp Big Key Ledge'), Pot(24, 8, PotItem.FiveRupees, 'Swamp Big Key Ledge'), Pot(28, 8, PotItem.FiveRupees, 'Swamp Big Key Ledge'), + Pot(32, 8, PotItem.FiveRupees, 'Swamp Big Key Ledge'), Pot(36, 8, PotItem.FiveRupees, 'Swamp Big Key Ledge'), Pot(48, 20, PotItem.Heart, 'Swamp Trench 2 Departure'), Pot(76, 23, PotItem.Nothing, 'Swamp Trench 2 Pots'), + Pot(88, 23, PotItem.Nothing, 'Swamp Trench 2 Pots'), Pot(100, 27, PotItem.Nothing, 'Swamp Trench 2 Pots'), Pot(242, 28, PotItem.Nothing, 'Swamp Trench 2 Pots'), Pot(240, 22, PotItem.Heart, 'Swamp Trench 2 Pots'), + Pot(76, 28, PotItem.Heart, 'Swamp Trench 2 Pots')], + 54: [Pot(108, 4, PotItem.Bomb, 'Swamp Hub Dead Ledge'), Pot(112, 4, PotItem.FiveRupees, 'Swamp Hub Dead Ledge'), Pot(10, 16, PotItem.Heart, 'Swamp Hub'), Pot(154, 15, PotItem.Nothing, 'Swamp Hub'), Pot(114, 16, PotItem.Key, 'Swamp Hub'), + Pot(222, 15, PotItem.Nothing, 'Swamp Hub'), Pot(188, 5, PotItem.Nothing, 'Swamp Hub North Ledge'), Pot(192, 5, PotItem.Nothing, 'Swamp Hub North Ledge')], + 55: [Pot(60, 6, PotItem.Key, 'Swamp Trench 1 Alcove'), Pot(48, 20, PotItem.Nothing, 'Swamp Trench 1 Key Ledge')], + 56: [Pot(164, 12, PotItem.Bomb, 'Swamp Pot Row'), Pot(164, 13, PotItem.FiveRupees, 'Swamp Pot Row'), Pot(164, 18, PotItem.Bomb, 'Swamp Pot Row'), Pot(164, 19, PotItem.Key, 'Swamp Pot Row')], + 57: [Pot(12, 20, PotItem.Heart, 'Skull Spike Corner'), Pot(48, 28, PotItem.FiveArrows, 'Skull Spike Corner'), Pot(100, 22, PotItem.SmallMagic, 'Skull Final Drop'), Pot(100, 26, PotItem.FiveArrows, 'Skull Final Drop')], + 60: [Pot(24, 8, PotItem.SmallMagic, 'Hookshot Cave'), Pot(64, 12, PotItem.FiveRupees, 'Hookshot Cave'), Pot(20, 14, PotItem.OneRupee, 'Hookshot Cave'), Pot(20, 19, PotItem.Nothing, 'Hookshot Cave'), + Pot(68, 18, PotItem.FiveRupees, 'Hookshot Cave'), Pot(96, 19, PotItem.Heart, 'Hookshot Cave'), Pot(64, 20, PotItem.FiveRupees, 'Hookshot Cave'), Pot(64, 26, PotItem.FiveRupees, 'Hookshot Cave')], + 61: [Pot(76, 12, PotItem.Bomb, 'GT Mini Helmasaur Room'), Pot(112, 12, PotItem.Bomb, 'GT Mini Helmasaur Room'), Pot(24, 22, PotItem.Heart, 'GT Crystal Circles'), Pot(40, 22, PotItem.FiveArrows, 'GT Crystal Circles'), + Pot(32, 24, PotItem.Heart, 'GT Crystal Circles'), Pot(20, 26, PotItem.FiveRupees, 'GT Crystal Circles'), Pot(36, 26, PotItem.BigMagic, 'GT Crystal Circles')], + 62: [Pot(96, 6, PotItem.Bomb, 'Ice Stalfos Hint'), Pot(100, 6, PotItem.SmallMagic, 'Ice Stalfos Hint'), Pot(88, 10, PotItem.Heart, 'Ice Stalfos Hint'), Pot(92, 10, PotItem.SmallMagic, 'Ice Stalfos Hint')], + 63: [Pot(12, 25, PotItem.OneRupee, 'Ice Hammer Block'), Pot(20, 25, PotItem.OneRupee, 'Ice Hammer Block'), Pot(12, 26, PotItem.Bomb, 'Ice Hammer Block'), Pot(20, 26, PotItem.Bomb, 'Ice Hammer Block'), + Pot(12, 27, PotItem.Switch, 'Ice Hammer Block'), Pot(20, 27, PotItem.Heart, 'Ice Hammer Block'), Pot(28, 23, PotItem.Key, 'Ice Hammer Block')], + 65: [Pot(100, 10, PotItem.Heart, 'Sewers Behind Tapestry'), Pot(52, 15, PotItem.OneRupee, 'Sewers Behind Tapestry'), Pot(52, 16, PotItem.SmallMagic, 'Sewers Behind Tapestry'), Pot(148, 22, PotItem.SmallMagic, 'Sewers Behind Tapestry')], + 67: [Pot(66, 4, PotItem.FiveArrows, 'Desert Wall Slide'), Pot(78, 4, PotItem.SmallMagic, 'Desert Wall Slide'), Pot(66, 9, PotItem.Heart, 'Desert Wall Slide'), Pot(78, 9, PotItem.Heart, 'Desert Wall Slide'), + Pot(112, 28, PotItem.Nothing, 'Desert Tiles 2'), Pot(76, 28, PotItem.Nothing, 'Desert Tiles 2'), Pot(76, 20, PotItem.Nothing, 'Desert Tiles 2'), Pot(112, 20, PotItem.Key, 'Desert Tiles 2')], + 69: [Pot(12, 4, PotItem.FiveArrows, 'Thieves Basement Block'), Pot(48, 12, PotItem.FiveArrows, 'Thieves Basement Block'), Pot(92, 11, PotItem.Nothing, "Thieves Blind's Cell"), Pot(108, 11, PotItem.Heart, "Thieves Blind's Cell"), + Pot(220, 16, PotItem.SmallMagic, "Thieves Blind's Cell"), Pot(236, 16, PotItem.Heart, "Thieves Blind's Cell")], + 70: [Pot(96, 5, PotItem.Heart, 'Swamp Donut Top'), Pot(28, 27, PotItem.Heart, 'Swamp Donut Bottom')], + 73: [Pot(104, 15, PotItem.SmallMagic, 'Skull Torch Room'), Pot(104, 16, PotItem.SmallMagic, 'Skull Torch Room'), Pot(156, 27, PotItem.Nothing, 'Skull Star Pits'), Pot(172, 24, PotItem.Nothing, 'Skull Star Pits'), + Pot(172, 23, PotItem.Nothing, 'Skull Star Pits'), Pot(144, 20, PotItem.Nothing, 'Skull Star Pits'), Pot(144, 19, PotItem.SmallMagic, 'Skull Star Pits'), Pot(172, 20, PotItem.Heart, 'Skull Star Pits'), + Pot(144, 27, PotItem.Heart, 'Skull Star Pits'), Pot(172, 28, PotItem.SmallMagic, 'Skull Star Pits'), Pot(160, 27, PotItem.Nothing, 'Skull Star Pits')], + 74: [Pot(14, 5, PotItem.Switch, 'PoD Left Cage'), Pot(32, 5, PotItem.Bomb, 'PoD Left Cage'), Pot(14, 11, PotItem.Heart, 'PoD Left Cage'), Pot(32, 11, PotItem.OneRupee, 'PoD Left Cage'), Pot(56, 8, PotItem.Bomb, 'PoD Middle Cage'), + Pot(68, 8, PotItem.Bomb, 'PoD Middle Cage'), Pot(92, 5, PotItem.Bomb, 'PoD Middle Cage'), Pot(110, 5, PotItem.Switch, 'PoD Middle Cage'), Pot(92, 11, PotItem.OneRupee, 'PoD Middle Cage'), Pot(110, 11, PotItem.Heart, 'PoD Middle Cage')], + 75: [Pot(20, 6, PotItem.FiveArrows, 'PoD Mimics 1'), Pot(40, 6, PotItem.Heart, 'PoD Mimics 1')], + 78: [Pot(140, 7, PotItem.Nothing, 'Ice Bomb Jump Catwalk'), Pot(48, 10, PotItem.Nothing, 'Ice Bomb Jump Catwalk'), Pot(140, 11, PotItem.Switch, 'Ice Bomb Jump Catwalk'), Pot(28, 12, PotItem.Heart, 'Ice Bomb Jump Catwalk'), + Pot(112, 12, PotItem.SmallMagic, 'Ice Narrow Corridor')], + 80: [Pot(96, 38, PotItem.Heart, 'Hyrule Castle West Hall'), Pot(100, 38, PotItem.Heart, 'Hyrule Castle West Hall')], + 82: [Pot(138, 3, PotItem.Heart, 'Hyrule Castle East Hall'), Pot(194, 26, PotItem.Heart, 'Hyrule Castle East Hall')], + 83: [Pot(92, 11, PotItem.Heart, 'Desert Beamos Hall'), Pot(96, 11, PotItem.SmallMagic, 'Desert Beamos Hall'), Pot(100, 11, PotItem.Key, 'Desert Beamos Hall'), Pot(104, 11, PotItem.Heart, 'Desert Beamos Hall')], + 84: [Pot(186, 25, PotItem.FiveRupees, 'Swamp Attic'), Pot(186, 26, PotItem.Heart, 'Swamp Attic'), Pot(186, 27, PotItem.Heart, 'Swamp Attic'), Pot(186, 28, PotItem.Heart, 'Swamp Attic')], + 85: [Pot(230, 24, PotItem.SmallMagic, 'Secret Passage'), Pot(230, 25, PotItem.SmallMagic, 'Secret Passage')], + 86: [Pot(100, 6, PotItem.Nothing, 'Skull Back Drop'), Pot(96, 10, PotItem.Nothing, 'Skull Back Drop'), Pot(92, 10, PotItem.Nothing, 'Skull Back Drop'), Pot(20, 6, PotItem.SmallMagic, 'Skull X Room'), + Pot(40, 6, PotItem.SmallMagic, 'Skull X Room'), Pot(24, 7, PotItem.SmallMagic, 'Skull X Room'), Pot(36, 7, PotItem.SmallMagic, 'Skull X Room'), Pot(12, 8, PotItem.Heart, 'Skull X Room'), Pot(48, 8, PotItem.Heart, 'Skull X Room'), + Pot(24, 9, PotItem.SmallMagic, 'Skull X Room'), Pot(36, 9, PotItem.SmallMagic, 'Skull X Room'), Pot(20, 10, PotItem.FiveRupees, 'Skull X Room'), Pot(40, 10, PotItem.FiveRupees, 'Skull X Room'), Pot(12, 20, PotItem.Key, 'Skull 2 West Lobby'), + Pot(48, 20, PotItem.Nothing, 'Skull 2 West Lobby')], + 87: [Pot(92, 7, PotItem.BigMagic, 'Skull Lone Pot'), Pot(32, 4, PotItem.Nothing, 'Skull Big Key'), Pot(92, 23, PotItem.Bomb, 'Skull Pot Prison'), Pot(100, 23, PotItem.SmallMagic, 'Skull Pot Prison'), + Pot(84, 25, PotItem.FiveRupees, 'Skull Pot Prison'), Pot(76, 27, PotItem.Heart, 'Skull Pot Prison'), Pot(12, 20, PotItem.SmallMagic, 'Skull 2 East Lobby'), Pot(48, 20, PotItem.SmallMagic, 'Skull 2 East Lobby'), + Pot(30, 22, PotItem.Switch, 'Skull 2 East Lobby')], + 88: [Pot(12, 7, PotItem.SmallMagic, 'Skull Pull Switch'), Pot(16, 7, PotItem.Nothing, 'Skull Pull Switch'), Pot(16, 8, PotItem.SmallMagic, 'Skull Pull Switch'), Pot(12, 12, PotItem.Nothing, 'Skull Pull Switch'), + Pot(96, 9, PotItem.Nothing, 'Skull Pot Circle'), Pot(92, 8, PotItem.Nothing, 'Skull Pot Circle'), Pot(108, 8, PotItem.Nothing, 'Skull Pot Circle'), Pot(108, 6, PotItem.Nothing, 'Skull Pot Circle'), + Pot(104, 5, PotItem.Nothing, 'Skull Pot Circle'), Pot(92, 6, PotItem.Nothing, 'Skull Pot Circle'), Pot(96, 5, PotItem.Bomb, 'Skull Pot Circle'), Pot(100, 5, PotItem.SmallMagic, 'Skull Pot Circle'), + Pot(92, 7, PotItem.Heart, 'Skull Pot Circle'), Pot(108, 7, PotItem.Heart, 'Skull Pot Circle'), Pot(100, 9, PotItem.SmallMagic, 'Skull Pot Circle'), Pot(104, 9, PotItem.Bomb, 'Skull Pot Circle')], + 89: [Pot(26, 43, PotItem.Heart, 'Skull 3 Lobby'), Pot(32, 40, PotItem.Nothing, 'Skull 3 Lobby'), Pot(76, 28, PotItem.Nothing, 'Skull East Bridge'), Pot(112, 28, PotItem.Nothing, 'Skull East Bridge')], + 91: [Pot(218, 37, PotItem.Nothing, 'GT Hidden Spikes'), Pot(222, 37, PotItem.Switch, 'GT Hidden Spikes'), Pot(226, 37, PotItem.Nothing, 'GT Hidden Spikes')], + 92: [Pot(228, 25, PotItem.Nothing, 'GT Refill'), Pot(104, 24, PotItem.Nothing, 'GT Refill'), Pot(228, 22, PotItem.Nothing, 'GT Refill'), Pot(216, 25, PotItem.Nothing, 'GT Refill'), Pot(84, 24, PotItem.Nothing, 'GT Refill'), + Pot(216, 22, PotItem.Nothing, 'GT Refill'), Pot(94, 22, PotItem.Bomb, 'GT Refill'), Pot(94, 26, PotItem.BigMagic, 'GT Refill')], + 93: [Pot(16, 5, PotItem.Bomb, 'GT Gauntlet 2'), Pot(44, 5, PotItem.FiveRupees, 'GT Gauntlet 2'), Pot(16, 11, PotItem.OneRupee, 'GT Gauntlet 2'), Pot(44, 11, PotItem.FiveArrows, 'GT Gauntlet 2'), Pot(12, 20, PotItem.FiveArrows, 'GT Gauntlet 3'), + Pot(48, 20, PotItem.Bomb, 'GT Gauntlet 3'), Pot(12, 28, PotItem.SmallMagic, 'GT Gauntlet 3'), Pot(48, 28, PotItem.Bomb, 'GT Gauntlet 3')], + 94: [Pot(92, 4, PotItem.SmallMagic, 'Ice Falling Square'), Pot(96, 4, PotItem.SmallMagic, 'Ice Falling Square'), Pot(76, 8, PotItem.Heart, 'Ice Falling Square'), Pot(112, 8, PotItem.Heart, 'Ice Falling Square')], + 95: [Pot(44, 27, PotItem.Switch, 'Ice Spike Room')], + 96: [Pot(76, 4, PotItem.Heart, 'Hyrule Castle West Lobby'), Pot(112, 4, PotItem.Heart, 'Hyrule Castle West Lobby')], + 98: [Pot(208, 21, PotItem.Heart, 'Hyrule Castle East Lobby')], + 99: [Pot(48, 4, PotItem.Nothing, 'Desert Tiles 1'), Pot(12, 4, PotItem.Nothing, 'Desert Tiles 1'), Pot(12, 8, PotItem.Nothing, 'Desert Tiles 1'), Pot(48, 12, PotItem.Nothing, 'Desert Tiles 1'), Pot(48, 8, PotItem.Heart, 'Desert Tiles 1'), + Pot(12, 12, PotItem.Key, 'Desert Tiles 1')], + 100: [Pot(12, 22, PotItem.Bomb, 'Thieves Attic Hint', PotFlags.SwitchLogicChange), Pot(16, 22, PotItem.Bomb, 'Thieves Attic Hint', PotFlags.SwitchLogicChange), Pot(20, 22, PotItem.Bomb, 'Thieves Attic Hint', PotFlags.SwitchLogicChange), + Pot(36, 28, PotItem.Bomb, 'Thieves Attic'), Pot(40, 28, PotItem.SmallMagic, 'Thieves Attic'), + Pot(44, 28, PotItem.SmallMagic, 'Thieves Attic'), Pot(48, 28, PotItem.Switch, 'Thieves Attic')], + 101: [Pot(100, 28, PotItem.Bomb, 'Thieves Attic Window'), Pot(104, 28, PotItem.Bomb, 'Thieves Attic Window')], + 102: [Pot(48, 37, PotItem.FiveArrows, 'Swamp Refill'), Pot(52, 37, PotItem.Bomb, 'Swamp Refill'), Pot(56, 37, PotItem.FiveRupees, 'Swamp Refill'), Pot(48, 38, PotItem.FiveArrows, 'Swamp Refill'), Pot(52, 38, PotItem.Bomb, 'Swamp Refill'), + Pot(56, 38, PotItem.FiveRupees, 'Swamp Refill'), Pot(84, 5, PotItem.Heart, 'Swamp Behind Waterfall'), Pot(104, 5, PotItem.FiveArrows, 'Swamp Behind Waterfall'), Pot(84, 6, PotItem.Heart, 'Swamp Behind Waterfall'), + Pot(104, 6, PotItem.Bomb, 'Swamp Behind Waterfall')], + 103: [Pot(22, 26, PotItem.Nothing, 'Skull Left Drop'), Pot(18, 22, PotItem.Nothing, 'Skull Left Drop'), Pot(12, 7, PotItem.FiveArrows, 'Skull Left Drop'), Pot(48, 7, PotItem.SmallMagic, 'Skull Left Drop'), + Pot(18, 23, PotItem.SmallMagic, 'Skull Left Drop'), Pot(18, 26, PotItem.Heart, 'Skull Left Drop'), Pot(96, 19, PotItem.Heart, 'Skull Compass Room'), Pot(74, 20, PotItem.SmallMagic, 'Skull Compass Room'), + Pot(92, 9, PotItem.Nothing, 'Skull Compass Room'), Pot(84, 28, PotItem.Nothing, 'Skull Compass Room'), Pot(104, 28, PotItem.Heart, 'Skull Compass Room')], + 104: [Pot(84, 14, PotItem.Nothing, 'Skull Pinball'), Pot(84, 13, PotItem.Nothing, 'Skull Pinball'), Pot(88, 12, PotItem.Nothing, 'Skull Pinball'), Pot(88, 6, PotItem.Nothing, 'Skull Pinball'), Pot(88, 5, PotItem.Nothing, 'Skull Pinball'), + Pot(88, 4, PotItem.Nothing, 'Skull Pinball'), Pot(64, 17, PotItem.Nothing, 'Skull Pinball'), Pot(64, 15, PotItem.Nothing, 'Skull Pinball'), Pot(64, 7, PotItem.Heart, 'Skull Pinball'), Pot(88, 7, PotItem.SmallMagic, 'Skull Pinball'), + Pot(64, 16, PotItem.Heart, 'Skull Pinball'), Pot(64, 24, PotItem.SmallMagic, 'Skull Pinball'), Pot(64, 25, PotItem.Heart, 'Skull Pinball')], + 107: [Pot(28, 5, PotItem.Heart, 'GT Crystal Paths'), Pot(44, 5, PotItem.Nothing, 'GT Crystal Paths'), Pot(28, 8, PotItem.Nothing, 'GT Crystal Paths'), Pot(44, 8, PotItem.SmallMagic, 'GT Crystal Paths'), + Pot(28, 11, PotItem.SmallMagic, 'GT Crystal Paths'), Pot(44, 11, PotItem.Nothing, 'GT Crystal Paths'), Pot(94, 25, PotItem.Nothing, 'GT Mimics 2'), Pot(98, 25, PotItem.FiveArrows, 'GT Mimics 2')], + 108: [Pot(20, 6, PotItem.Heart, 'GT Quad Pot'), Pot(40, 6, PotItem.FiveArrows, 'GT Quad Pot'), Pot(20, 10, PotItem.Bomb, 'GT Quad Pot'), Pot(40, 10, PotItem.SmallMagic, 'GT Quad Pot')], + 109: [Pot(28, 26, PotItem.Heart, 'GT Gauntlet 5'), Pot(32, 26, PotItem.Heart, 'GT Gauntlet 5'), Pot(28, 27, PotItem.SmallMagic, 'GT Gauntlet 5'), Pot(32, 27, PotItem.SmallMagic, 'GT Gauntlet 5')], + 115: [Pot(154, 21, PotItem.FiveArrows, 'Desert Circle of Pots'), Pot(158, 21, PotItem.OneRupee, 'Desert Circle of Pots'), Pot(20, 23, PotItem.Switch, 'Desert Circle of Pots'), Pot(36, 23, PotItem.FiveRupees, 'Desert Circle of Pots'), + Pot(144, 24, PotItem.Heart, 'Desert Circle of Pots'), Pot(168, 24, PotItem.FiveArrows, 'Desert Circle of Pots'), Pot(20, 26, PotItem.SmallMagic, 'Desert Circle of Pots'), Pot(36, 26, PotItem.Heart, 'Desert Circle of Pots'), + Pot(154, 27, PotItem.OneRupee, 'Desert Circle of Pots'), Pot(158, 27, PotItem.FiveRupees, 'Desert Circle of Pots')], + 116: [Pot(30, 5, PotItem.SmallMagic, 'Desert Map Room'), Pot(62, 5, PotItem.Switch, 'Desert Map Room'), Pot(94, 5, PotItem.SmallMagic, 'Desert Map Room'), Pot(14, 11, PotItem.Heart, 'Desert Map Room'), + Pot(46, 11, PotItem.FiveArrows, 'Desert Map Room'), Pot(78, 11, PotItem.FiveArrows, 'Desert Map Room'), Pot(110, 11, PotItem.Heart, 'Desert Map Room')], + 117: [Pot(148, 22, PotItem.SmallMagic, 'Desert Arrow Pot Corner'), Pot(160, 22, PotItem.FiveArrows, 'Desert Arrow Pot Corner'), Pot(172, 22, PotItem.Heart, 'Desert Arrow Pot Corner')], + 118: [Pot(112, 12, PotItem.Heart, 'Swamp Drain Right'), Pot(84, 23, PotItem.Heart, 'Swamp Flooded Spot'), Pot(96, 23, PotItem.Heart, 'Swamp Flooded Spot')], + 123: [Pot(48, 10, PotItem.Nothing, 'GT Conveyor Star Pits'), Pot(88, 10, PotItem.Nothing, 'GT Conveyor Star Pits'), Pot(76, 7, PotItem.Nothing, 'GT Conveyor Star Pits'), Pot(60, 4, PotItem.Heart, 'GT Conveyor Star Pits'), + Pot(64, 4, PotItem.Key, 'GT Conveyor Star Pits')], + 124: [Pot(36, 21, PotItem.Nothing, 'GT Falling Bridge'), Pot(24, 11, PotItem.Nothing, 'GT Falling Bridge'), Pot(28, 4, PotItem.Heart, 'GT Falling Bridge'), Pot(32, 4, PotItem.Heart, 'GT Falling Bridge')], + 125: [Pot(44, 12, PotItem.Nothing, 'GT Firesnake Room'), Pot(44, 6, PotItem.Nothing, 'GT Firesnake Room'), Pot(112, 6, PotItem.Heart, 'GT Firesnake Room'), Pot(108, 20, PotItem.FiveArrows, 'GT Warp Maze - Pot Rail'), + Pot(114, 20, PotItem.Bomb, 'GT Petting Zoo'), Pot(76, 28, PotItem.Bomb, 'GT Petting Zoo')], + 126: [Pot(86, 15, PotItem.Heart, 'Ice Tall Hint'), Pot(82, 26, PotItem.SmallMagic, 'Ice Tall Hint'), Pot(100, 26, PotItem.Switch, 'Ice Tall Hint'), Pot(104, 26, PotItem.Nothing, 'Ice Tall Hint')], + 128: [Pot(48, 4, PotItem.Heart, 'Hyrule Dungeon Cellblock'), Pot(52, 4, PotItem.Heart, 'Hyrule Dungeon Cellblock'), Pot(56, 4, PotItem.Heart, 'Hyrule Dungeon Cellblock')], + 130: [Pot(50, 5, PotItem.Nothing, 'Hyrule Dungeon South Abyss'), Pot(50, 10, PotItem.Nothing, 'Hyrule Dungeon South Abyss'), Pot(76, 50, PotItem.Heart, 'Hyrule Dungeon South Abyss')], + 131: [Pot(76, 4, PotItem.FiveArrows, 'Desert West Wing'), Pot(80, 4, PotItem.OneRupee, 'Desert West Wing'), Pot(76, 28, PotItem.FiveRupees, 'Desert West Wing'), Pot(80, 28, PotItem.FiveArrows, 'Desert West Wing')], + 132: [Pot(64, 17, PotItem.Nothing, 'Desert Main Lobby'), Pot(60, 17, PotItem.Nothing, 'Desert Main Lobby'), Pot(80, 14, PotItem.Nothing, 'Desert Main Lobby'), Pot(44, 14, PotItem.Nothing, 'Desert Main Lobby'), + Pot(100, 6, PotItem.Nothing, 'Desert Main Lobby'), Pot(24, 6, PotItem.Nothing, 'Desert Main Lobby'), Pot(24, 7, PotItem.FiveArrows, 'Desert Main Lobby'), Pot(100, 7, PotItem.FiveArrows, 'Desert Main Lobby')], + 133: [Pot(44, 28, PotItem.Heart, 'Desert East Wing'), Pot(48, 28, PotItem.FiveArrows, 'Desert East Wing')], + 135: [Pot(12, 11, PotItem.Nothing, 'Hera Tile Room'), Pot(16, 12, PotItem.Nothing, 'Hera Tile Room'), Pot(40, 12, PotItem.Nothing, 'Hera Tile Room'), Pot(32, 12, PotItem.Nothing, 'Hera Tile Room'), Pot(24, 12, PotItem.Nothing, 'Hera Tile Room'), + Pot(16, 11, PotItem.Nothing, 'Hera Tile Room'), Pot(76, 20, PotItem.SmallMagic, 'Hera Torches'), Pot(112, 20, PotItem.BigMagic, 'Hera Torches')], + 139: [Pot(76, 12, PotItem.Nothing, 'GT Conveyor Cross'), Pot(112, 12, PotItem.Key, 'GT Conveyor Cross'), Pot(32, 23, PotItem.Nothing, 'GT Hookshot South Platform'), Pot(28, 23, PotItem.Nothing, 'GT Hookshot South Platform'), + Pot(32, 9, PotItem.SmallMagic, 'GT Hookshot East Platform'), Pot(76, 20, PotItem.Nothing, 'GT Map Room'), Pot(76, 28, PotItem.Heart, 'GT Map Room')], + 140: [Pot(76, 12, PotItem.Switch, 'GT Hope Room'), Pot(112, 12, PotItem.SmallMagic, 'GT Hope Room'), Pot(76, 20, PotItem.Bomb, "GT Bob's Room"), Pot(92, 20, PotItem.Bomb, "GT Bob's Room"), Pot(100, 21, PotItem.FiveArrows, "GT Bob's Room"), + Pot(104, 26, PotItem.Bomb, "GT Bob's Room"), Pot(88, 27, PotItem.Bomb, "GT Bob's Room")], + 141: [Pot(204, 11, PotItem.Nothing, 'GT Speed Torch Upper'), Pot(204, 14, PotItem.BigMagic, 'GT Speed Torch Upper'), Pot(28, 23, PotItem.Heart, 'GT Pots n Blocks'), Pot(36, 23, PotItem.Heart, 'GT Pots n Blocks'), + Pot(32, 24, PotItem.BigMagic, 'GT Pots n Blocks')], + 142: [Pot(80, 5, PotItem.FiveArrows, 'Ice Lonely Freezor'), Pot(80, 6, PotItem.Nothing, 'Ice Lonely Freezor')], + 145: [Pot(84, 4, PotItem.Heart, 'Mire Falling Foes'), Pot(104, 4, PotItem.SmallMagic, 'Mire Falling Foes')], + 146: [Pot(86, 23, PotItem.Nothing, 'Mire Tall Dark and Roomy'), Pot(92, 23, PotItem.Nothing, 'Mire Tall Dark and Roomy'), Pot(98, 23, PotItem.Nothing, 'Mire Tall Dark and Roomy'), Pot(104, 23, PotItem.Nothing, 'Mire Tall Dark and Roomy')], + 147: [Pot(28, 7, PotItem.Switch, 'Mire Dark Shooters'), Pot(96, 7, PotItem.Heart, 'Mire Dark Shooters', PotFlags.NoSwitch)], + 150: [Pot(14, 18, PotItem.Nothing, 'GT Torch Cross'), Pot(32, 5, PotItem.Nothing, 'GT Torch Cross'), Pot(32, 17, PotItem.SmallMagic, 'GT Torch Cross'), Pot(32, 24, PotItem.SmallMagic, 'GT Torch Cross'), + Pot(14, 24, PotItem.Nothing, 'GT Torch Cross'), Pot(76, 21, PotItem.Heart, 'GT Staredown'), Pot(112, 21, PotItem.BigMagic, 'GT Staredown')], + 153: [Pot(40, 20, PotItem.SmallMagic, 'Eastern Darkness'), Pot(84, 20, PotItem.Heart, 'Eastern Darkness')], + 155: [Pot(48, 4, PotItem.SmallMagic, 'GT Double Switch Key Spot'), Pot(48, 12, PotItem.Key, 'GT Double Switch Key Spot'), Pot(28, 24, PotItem.Nothing, 'GT Warp Maze - Mid Section'), Pot(32, 24, PotItem.Nothing, 'GT Warp Maze - Mid Section')], + 156: [Pot(56, 8, PotItem.SmallMagic, 'GT Invisible Catwalk'), Pot(56, 9, PotItem.FiveArrows, 'GT Invisible Catwalk')], + 157: [Pot(76, 4, PotItem.Bomb, 'GT Crystal Conveyor'), Pot(84, 4, PotItem.SmallMagic, 'GT Crystal Conveyor'), Pot(32, 7, PotItem.Nothing, 'GT Compass Room'), Pot(40, 9, PotItem.Nothing, 'GT Compass Room')], + 159: [Pot(138, 20, PotItem.Nothing, 'Ice Many Pots'), Pot(138, 19, PotItem.Heart, 'Ice Many Pots'), Pot(178, 19, PotItem.Heart, 'Ice Many Pots'), Pot(40, 21, PotItem.Switch, 'Ice Many Pots'), Pot(138, 21, PotItem.Key, 'Ice Many Pots'), + Pot(20, 27, PotItem.Heart, 'Ice Many Pots'), Pot(138, 27, PotItem.Heart, 'Ice Many Pots'), Pot(178, 28, PotItem.Heart, 'Ice Many Pots'), Pot(178, 21, PotItem.Nothing, 'Ice Many Pots'), Pot(178, 20, PotItem.Nothing, 'Ice Many Pots'), + Pot(40, 27, PotItem.Nothing, 'Ice Many Pots'), Pot(178, 27, PotItem.Nothing, 'Ice Many Pots'), Pot(178, 26, PotItem.Nothing, 'Ice Many Pots'), Pot(138, 28, PotItem.Nothing, 'Ice Many Pots'), Pot(138, 26, PotItem.Nothing, 'Ice Many Pots'), + Pot(20, 21, PotItem.Nothing, 'Ice Many Pots')], + 161: [Pot(150, 6, PotItem.Key, 'Mire Fishbone'), Pot(100, 11, PotItem.SmallMagic, 'Mire Fishbone'), Pot(104, 12, PotItem.Heart, 'Mire Fishbone'), Pot(108, 13, PotItem.SmallMagic, 'Mire Fishbone'), Pot(112, 14, PotItem.Heart, 'Mire Fishbone'), + Pot(96, 27, PotItem.Nothing, 'Mire South Fish'), Pot(92, 21, PotItem.Nothing, 'Mire South Fish'), Pot(96, 23, PotItem.Heart, 'Mire South Fish'), Pot(92, 25, PotItem.Nothing, 'Mire South Fish'), + Pot(76, 28, PotItem.Nothing, 'Mire South Fish'), Pot(112, 28, PotItem.Nothing, 'Mire South Fish')], + 162: [Pot(12, 28, PotItem.BigMagic, 'Mire Left Bridge')], + 168: [Pot(138, 28, PotItem.Nothing, 'Eastern Stalfos Spawn'), Pot(178, 28, PotItem.Nothing, 'Eastern Stalfos Spawn'), Pot(178, 19, PotItem.Nothing, 'Eastern Stalfos Spawn'), Pot(138, 19, PotItem.Heart, 'Eastern Stalfos Spawn'), + Pot(30, 24, PotItem.OneRupee, 'Eastern Stalfos Spawn')], + 169: [Pot(144, 43, PotItem.FiveArrows, 'Eastern Courtyard'), Pot(236, 43, PotItem.FiveArrows, 'Eastern Courtyard'), Pot(144, 44, PotItem.FiveArrows, 'Eastern Courtyard'), Pot(236, 44, PotItem.Heart, 'Eastern Courtyard'), + Pot(12, 19, PotItem.Nothing, 'Eastern Courtyard Ledge'), Pot(112, 19, PotItem.Nothing, 'Eastern Courtyard Ledge'), Pot(16, 20, PotItem.Heart, 'Eastern Courtyard Ledge'), Pot(108, 20, PotItem.Heart, 'Eastern Courtyard Ledge')], + 170: [Pot(212, 10, PotItem.Nothing, 'Eastern Pot Switch'), Pot(232, 10, PotItem.Nothing, 'Eastern Pot Switch'), Pot(232, 5, PotItem.Nothing, 'Eastern Pot Switch'), Pot(212, 5, PotItem.Heart, 'Eastern Pot Switch'), + Pot(94, 8, PotItem.Switch, 'Eastern Pot Switch'), Pot(108, 55, PotItem.Heart, 'Eastern Map Balcony'), Pot(108, 56, PotItem.Heart, 'Eastern Map Balcony'), Pot(108, 57, PotItem.Heart, 'Eastern Map Balcony')], + 171: [Pot(20, 24, PotItem.Key, 'Thieves Spike Switch')], + 174: [Pot(76, 12, PotItem.Switch, 'Iced T')], + 176: [Pot(20, 27, PotItem.Nothing, 'Tower Circle of Pots'), Pot(24, 24, PotItem.Nothing, 'Tower Circle of Pots'), Pot(44, 25, PotItem.Nothing, 'Tower Circle of Pots'), Pot(20, 21, PotItem.Bomb, 'Tower Circle of Pots'), + Pot(28, 21, PotItem.OneRupee, 'Tower Circle of Pots'), Pot(32, 21, PotItem.FiveRupees, 'Tower Circle of Pots'), Pot(40, 21, PotItem.FiveArrows, 'Tower Circle of Pots'), Pot(16, 23, PotItem.FiveRupees, 'Tower Circle of Pots'), + Pot(44, 23, PotItem.OneRupee, 'Tower Circle of Pots'), Pot(36, 24, PotItem.Heart, 'Tower Circle of Pots'), Pot(16, 25, PotItem.Heart, 'Tower Circle of Pots'), Pot(28, 27, PotItem.FiveArrows, 'Tower Circle of Pots'), + Pot(40, 27, PotItem.Bomb, 'Tower Circle of Pots'), Pot(32, 27, PotItem.Nothing, 'Tower Circle of Pots')], + 177: [Pot(76, 4, PotItem.Heart, 'Mire Spike Barrier'), Pot(112, 4, PotItem.OneRupee, 'Mire Spike Barrier')], + 178: [Pot(48, 40, PotItem.OneRupee, 'Mire BK Door Room'), Pot(76, 40, PotItem.OneRupee, 'Mire BK Door Room'), Pot(48, 41, PotItem.Nothing, 'Mire BK Door Room'), Pot(76, 41, PotItem.Heart, 'Mire BK Door Room'), + Pot(48, 42, PotItem.Nothing, 'Mire BK Door Room'), Pot(76, 40, PotItem.Nothing, 'Mire BK Door Room')], + 179: [Pot(12, 20, PotItem.Key, 'Mire Spikes'), Pot(48, 20, PotItem.SmallMagic, 'Mire Spikes'), Pot(48, 28, PotItem.Switch, 'Mire Spikes')], + 180: [Pot(44, 28, PotItem.BigMagic, 'TR Final Abyss'), Pot(48, 28, PotItem.Heart, 'TR Final Abyss')], + 181: [Pot(112, 4, PotItem.FiveRupees, 'TR Dark Ride'), Pot(112, 15, PotItem.Heart, 'TR Dark Ride'), Pot(76, 16, PotItem.Switch, 'TR Dark Ride'), Pot(112, 16, PotItem.BigMagic, 'TR Dark Ride'), Pot(112, 17, PotItem.Heart, 'TR Dark Ride'), + Pot(112, 28, PotItem.Bomb, 'TR Dark Ride')], + 182: [Pot(94, 9, PotItem.BigMagic, 'TR Refill')], + 183: [Pot(30, 5, PotItem.SmallMagic, 'TR Roller Room')], + 184: [Pot(96, 13, PotItem.Switch, 'Eastern Big Key'), Pot(88, 16, PotItem.Heart, 'Eastern Big Key'), Pot(104, 16, PotItem.Heart, 'Eastern Big Key')], + 185: [Pot(92, 18, PotItem.OneRupee, 'Eastern Cannonball'), Pot(96, 18, PotItem.FiveRupees, 'Eastern Cannonball'), Pot(104, 18, PotItem.FiveRupees, 'Eastern Cannonball'), Pot(108, 18, PotItem.OneRupee, 'Eastern Cannonball')], + 186: [Pot(100, 8, PotItem.Nothing, 'Eastern Dark Pots'), Pot(88, 8, PotItem.Nothing, 'Eastern Dark Pots'), Pot(94, 4, PotItem.OneRupee, 'Eastern Dark Pots'), Pot(76, 6, PotItem.Heart, 'Eastern Dark Pots'), + Pot(112, 6, PotItem.Key, 'Eastern Dark Pots'), Pot(76, 10, PotItem.Heart, 'Eastern Dark Pots'), Pot(112, 10, PotItem.SmallMagic, 'Eastern Dark Pots'), Pot(94, 12, PotItem.OneRupee, 'Eastern Dark Pots')], + 188: [Pot(86, 4, PotItem.Heart, 'Thieves Hallway'), Pot(102, 4, PotItem.Key, 'Thieves Hallway'), Pot(138, 3, PotItem.Bomb, 'Thieves Conveyor Maze'), Pot(178, 3, PotItem.Switch, 'Thieves Conveyor Maze'), + Pot(138, 12, PotItem.Heart, 'Thieves Conveyor Maze'), Pot(178, 12, PotItem.Bomb, 'Thieves Conveyor Maze'), Pot(12, 20, PotItem.Nothing, 'Thieves Pot Alcove Mid'), Pot(48, 20, PotItem.Bomb, 'Thieves Pot Alcove Mid'), + Pot(12, 28, PotItem.Bomb, 'Thieves Pot Alcove Mid'), Pot(48, 28, PotItem.Bomb, 'Thieves Pot Alcove Mid'), Pot(28, 21, PotItem.FiveRupees, 'Thieves Pot Alcove Top'), Pot(32, 21, PotItem.FiveRupees, 'Thieves Pot Alcove Top'), + Pot(28, 27, PotItem.FiveRupees, 'Thieves Pot Alcove Bottom'), Pot(32, 27, PotItem.FiveRupees, 'Thieves Pot Alcove Bottom')], + 190: [Pot(92, 25, PotItem.Switch, 'Ice Switch Room')], + 191: [Pot(40, 20, PotItem.FiveArrows, 'Ice Refill'), Pot(44, 20, PotItem.Heart, 'Ice Refill'), Pot(48, 20, PotItem.Bomb, 'Ice Refill'), Pot(40, 28, PotItem.SmallMagic, 'Ice Refill'), Pot(44, 28, PotItem.SmallMagic, 'Ice Refill'), + Pot(48, 28, PotItem.SmallMagic, 'Ice Refill')], + 192: [Pot(48, 10, PotItem.Bomb, 'Tower Dark Pits'), Pot(12, 14, PotItem.FiveRupees, 'Tower Dark Pits'), Pot(12, 26, PotItem.Heart, 'Tower Dark Pits'), Pot(28, 27, PotItem.OneRupee, 'Tower Dark Pits')], + 194: [Pot(180, 7, PotItem.Switch, 'Mire Hub Switch'), Pot(100, 46, PotItem.SmallMagic, 'Mire Hub Right'), Pot(68, 48, PotItem.OneRupee, 'Mire Hub'), Pot(64, 52, PotItem.FiveArrows, 'Mire Hub')], + 196: [Pot(84, 9, PotItem.Bomb, 'TR Crystal Maze'), Pot(24, 14, PotItem.Heart, 'TR Crystal Maze'), Pot(56, 17, PotItem.FiveRupees, 'TR Crystal Maze'), Pot(84, 17, PotItem.Bomb, 'TR Crystal Maze'), + Pot(12, 21, PotItem.FiveArrows, 'TR Crystal Maze'), Pot(76, 23, PotItem.OneRupee, 'TR Crystal Maze'), Pot(48, 25, PotItem.SmallMagic, 'TR Crystal Maze'), Pot(12, 26, PotItem.Heart, 'TR Crystal Maze')], + 198: [Pot(12, 7, PotItem.BigMagic, 'TR Hub'), Pot(12, 25, PotItem.Heart, 'TR Hub')], + 199: [Pot(12, 10, PotItem.Heart, 'TR Torches'), Pot(12, 11, PotItem.BigMagic, 'TR Torches'), Pot(12, 22, PotItem.SmallMagic, 'TR Torches Ledge'), Pot(12, 28, PotItem.FiveArrows, 'TR Torches Ledge')], + 201: [Pot(30, 22, PotItem.OneRupee, 'Eastern Lobby'), Pot(94, 22, PotItem.OneRupee, 'Eastern Lobby'), Pot(60, 22, PotItem.Switch, 'Eastern Lobby')], + 203: [Pot(80, 4, PotItem.Nothing, 'Thieves Ambush'), Pot(80, 28, PotItem.Nothing, 'Thieves Ambush'), Pot(88, 16, PotItem.Heart, 'Thieves Ambush'), Pot(88, 28, PotItem.FiveRupees, 'Thieves Ambush')], + 204: [Pot(36, 4, PotItem.FiveRupees, 'Thieves Rail Ledge'), Pot(36, 28, PotItem.FiveRupees, 'Thieves Rail Ledge'), Pot(112, 4, PotItem.Heart, 'Thieves BK Corner'), Pot(112, 28, PotItem.Bomb, 'Thieves BK Corner')], + 206: [Pot(76, 8, PotItem.SmallMagic, 'Ice Antechamber'), Pot(80, 8, PotItem.SmallMagic, 'Ice Antechamber'), Pot(108, 12, PotItem.Bomb, 'Ice Antechamber'), Pot(112, 12, PotItem.FiveArrows, 'Ice Antechamber'), + Pot(204, 11, PotItem.Hole, 'Ice Antechamber')], + 208: [Pot(158, 5, PotItem.SmallMagic, 'Tower Dark Maze'), Pot(140, 11, PotItem.OneRupee, 'Tower Dark Maze'), Pot(42, 13, PotItem.SmallMagic, 'Tower Dark Maze'), Pot(48, 16, PotItem.Heart, 'Tower Dark Maze'), + Pot(176, 20, PotItem.OneRupee, 'Tower Dark Maze'), Pot(146, 23, PotItem.FiveRupees, 'Tower Dark Maze'), Pot(12, 28, PotItem.Heart, 'Tower Dark Maze')], + 209: [Pot(48, 4, PotItem.BigMagic, 'Mire Conveyor Barrier'), Pot(168, 7, PotItem.OneRupee, 'Mire Conveyor Barrier'), Pot(76, 4, PotItem.OneRupee, 'Mire Neglected Room'), Pot(112, 4, PotItem.FiveArrows, 'Mire Neglected Room'), + Pot(76, 12, PotItem.Nothing, 'Mire Neglected Room'), Pot(112, 12, PotItem.OneRupee, 'Mire Neglected Room')], + 214: [Pot(92, 22, PotItem.BigMagic, 'TR Main Lobby'), Pot(96, 22, PotItem.Bomb, 'TR Main Lobby')], + 216: [Pot(202, 8, PotItem.Heart, 'Eastern Duo Eyegores'), Pot(242, 8, PotItem.FiveArrows, 'Eastern Duo Eyegores'), Pot(202, 10, PotItem.FiveArrows, 'Eastern Duo Eyegores'), Pot(242, 10, PotItem.FiveArrows, 'Eastern Duo Eyegores'), + Pot(202, 12, PotItem.FiveArrows, 'Eastern Duo Eyegores'), Pot(242, 12, PotItem.Heart, 'Eastern Duo Eyegores'), Pot(92, 24, PotItem.Heart, 'Eastern Single Eyegore'), Pot(96, 24, PotItem.FiveArrows, 'Eastern Single Eyegore')], + 217: [Pot(92, 20, PotItem.FiveArrows, 'Eastern False Switches'), Pot(92, 28, PotItem.Heart, 'Eastern False Switches')], + 218: [Pot(24, 23, PotItem.FiveArrows, 'Eastern Attic Start'), Pot(36, 23, PotItem.FiveArrows, 'Eastern Attic Start'), Pot(24, 25, PotItem.Switch, 'Eastern Attic Start'), Pot(36, 25, PotItem.Heart, 'Eastern Attic Start')], + 219: [Pot(12, 4, PotItem.Nothing, 'Thieves Lobby'), Pot(62, 19, PotItem.Nothing, 'Thieves Lobby'), Pot(112, 4, PotItem.FiveRupees, 'Thieves Lobby'), Pot(88, 16, PotItem.Heart, 'Thieves Lobby')], + 220: [Pot(56, 4, PotItem.FiveRupees, 'Thieves Compass Room'), Pot(112, 4, PotItem.Bomb, 'Thieves Compass Room'), Pot(68, 16, PotItem.Heart, 'Thieves Compass Room'), Pot(12, 28, PotItem.FiveArrows, 'Thieves Compass Room')], + 227: [Pot(88, 55, PotItem.Nothing, 'Bat Cave (right)'), Pot(100, 57, PotItem.OneRupee, 'Bat Cave (right)')], + 228: [Pot(32, 9, PotItem.FiveRupees, 'Old Man House'), Pot(112, 10, PotItem.OneRupee, 'Old Man House')], + 229: [Pot(48, 4, PotItem.OneRupee, 'Old Man House Back'), Pot(76, 4, PotItem.OneRupee, 'Old Man House Back'), Pot(112, 16, PotItem.OneRupee, 'Old Man House Back'), Pot(64, 18, PotItem.FiveRupees, 'Old Man House Back')], + 230: [Pot(108, 12, PotItem.FiveArrows, 'Death Mountain Return Cave'), Pot(88, 16, PotItem.Heart, 'Death Mountain Return Cave'), Pot(72, 20, PotItem.Nothing, 'Death Mountain Return Cave'), + Pot(56, 24, PotItem.OneRupee, 'Death Mountain Return Cave')], + 231: [Pot(68, 5, PotItem.OneRupee, 'Death Mountain Return Cave'), Pot(72, 5, PotItem.OneRupee, 'Death Mountain Return Cave')], + 232: [Pot(96, 4, PotItem.Heart, 'Superbunny Cave')], + 235: [Pot(206, 8, PotItem.FiveRupees, 'Bumper Cave'), Pot(210, 8, PotItem.FiveRupees, 'Bumper Cave'), Pot(88, 14, PotItem.SmallMagic, 'Bumper Cave'), Pot(92, 14, PotItem.Heart, 'Bumper Cave'), Pot(96, 14, PotItem.SmallMagic, 'Bumper Cave')], + 241: [Pot(64, 5, PotItem.Heart, 'Old Man Cave')], + 248: [Pot(242, 13, PotItem.BigMagic, 'Superbunny Cave')], + 253: [Pot(88, 6, PotItem.FiveRupees, 'Fairy Ascension Cave (Top)'), Pot(100, 6, PotItem.FiveRupees, 'Fairy Ascension Cave (Top)'), Pot(84, 23, PotItem.FiveRupees, 'Fairy Ascension Cave (Bottom)'), + Pot(84, 24, PotItem.FiveRupees, 'Fairy Ascension Cave (Bottom)')], + 255: [Pot(92, 8, PotItem.Heart, 'Paradox Cave'), Pot(96, 8, PotItem.Heart, 'Paradox Cave'), Pot(112, 28, PotItem.OneRupee, 'Paradox Cave Front')], + 257: [Pot(12, 20, PotItem.Heart, 'Snitch Lady (East)'), Pot(224, 19, PotItem.Chicken, 'Snitch Lady (West)'), Pot(228, 19, PotItem.Heart, 'Snitch Lady (West)')], + 258: [Pot(146, 19, PotItem.Heart, 'Sick Kids House'), Pot(150, 19, PotItem.Heart, 'Sick Kids House')], + 259: [Pot(140, 7, PotItem.Chicken, 'Tavern'), Pot(140, 9, PotItem.Nothing, 'Tavern'), Pot(12, 12, PotItem.Heart, 'Tavern (Front)')], + 260: [Pot(202, 21, PotItem.Heart, 'Links House'), Pot(202, 22, PotItem.Heart, 'Links House'), Pot(202, 23, PotItem.Heart, 'Links House')], + 261: [Pot(30, 20, PotItem.Heart, 'Sahasrahlas Hut'), Pot(28, 21, PotItem.Heart, 'Sahasrahlas Hut'), Pot(32, 21, PotItem.Heart, 'Sahasrahlas Hut')], + 263: [Pot(214, 23, PotItem.Bomb, 'Light World Bomb Hut'), Pot(222, 23, PotItem.FiveArrows, 'Light World Bomb Hut'), Pot(230, 23, PotItem.Bomb, 'Light World Bomb Hut'), Pot(214, 25, PotItem.OneRupee, 'Light World Bomb Hut'), + Pot(222, 25, PotItem.Nothing, 'Light World Bomb Hut'), Pot(230, 25, PotItem.OneRupee, 'Light World Bomb Hut'), Pot(214, 27, PotItem.Bomb, 'Light World Bomb Hut'), Pot(230, 27, PotItem.Bomb, 'Light World Bomb Hut')], + 264: [Pot(166, 19, PotItem.Chicken, 'Chicken House')], + 268: [Pot(88, 14, PotItem.Heart, 'Hookshot Fairy')], + 276: [Pot(92, 4, PotItem.Heart, 'Dark Desert Hint'), Pot(96, 4, PotItem.Heart, 'Dark Desert Hint'), Pot(92, 5, PotItem.Bomb, 'Dark Desert Hint'), Pot(96, 5, PotItem.Bomb, 'Dark Desert Hint'), Pot(92, 10, PotItem.FiveArrows, 'Dark Desert Hint'), + Pot(96, 10, PotItem.Heart, 'Dark Desert Hint')], + 279: [Pot(138, 3, PotItem.Heart, 'Spike Cave'), Pot(142, 3, PotItem.Heart, 'Spike Cave'), Pot(166, 3, PotItem.Heart, 'Spike Cave'), Pot(170, 3, PotItem.Heart, 'Spike Cave'), Pot(138, 4, PotItem.Heart, 'Spike Cave'), + Pot(142, 4, PotItem.Heart, 'Spike Cave'), Pot(166, 4, PotItem.Heart, 'Spike Cave'), Pot(170, 4, PotItem.Heart, 'Spike Cave')], + 281: [Pot(44, 28, PotItem.Heart, 'Blinds Hideout'), Pot(48, 28, PotItem.OneRupee, 'Blinds Hideout'), Pot(76, 28, PotItem.Heart, 'Blinds Hideout'), Pot(80, 28, PotItem.Heart, 'Blinds Hideout')], + 282: [Pot(214, 10, PotItem.Heart, 'Palace of Darkness Hint'), Pot(218, 10, PotItem.Heart, 'Palace of Darkness Hint'), Pot(226, 10, PotItem.Heart, 'Palace of Darkness Hint'), Pot(230, 10, PotItem.Heart, 'Palace of Darkness Hint')], + 283: [Pot(24, 53, PotItem.Nothing, 'Cave 45'), Pot(24, 54, PotItem.Heart, 'Cave 45'), Pot(32, 54, PotItem.Heart, 'Cave 45'), Pot(40, 54, PotItem.Heart, 'Cave 45'), Pot(24, 55, PotItem.Heart, 'Cave 45'), Pot(28, 56, PotItem.Heart, 'Cave 45'), + Pot(92, 22, PotItem.Bomb, 'Graveyard Cave'), Pot(96, 22, PotItem.Heart, 'Graveyard Cave'), Pot(92, 23, PotItem.Bomb, 'Graveyard Cave'), Pot(96, 23, PotItem.Heart, 'Graveyard Cave'), Pot(92, 24, PotItem.Bomb, 'Graveyard Cave'), + Pot(96, 24, PotItem.Heart, 'Graveyard Cave'), Pot(92, 25, PotItem.Bomb, 'Graveyard Cave'), Pot(96, 25, PotItem.Heart, 'Graveyard Cave')], + 285: [Pot(60, 6, PotItem.FiveRupees, 'Blinds Hideout'), Pot(64, 6, PotItem.FiveRupees, 'Blinds Hideout'), Pot(60, 7, PotItem.FiveRupees, 'Blinds Hideout'), Pot(64, 7, PotItem.FiveRupees, 'Blinds Hideout'), + Pot(60, 8, PotItem.FiveRupees, 'Blinds Hideout'), Pot(64, 8, PotItem.FiveRupees, 'Blinds Hideout')], + 287: [Pot(174, 28, PotItem.Heart, 'Lumberjack House'), Pot(178, 28, PotItem.Heart, 'Lumberjack House')], + 292: [Pot(20, 20, PotItem.FiveRupees, '50 Rupee Cave'), Pot(40, 20, PotItem.FiveRupees, '50 Rupee Cave'), Pot(20, 21, PotItem.FiveRupees, '50 Rupee Cave'), Pot(40, 21, PotItem.FiveRupees, '50 Rupee Cave'), + Pot(20, 22, PotItem.FiveRupees, '50 Rupee Cave'), Pot(40, 22, PotItem.FiveRupees, '50 Rupee Cave'), Pot(24, 24, PotItem.FiveRupees, '50 Rupee Cave'), Pot(28, 24, PotItem.FiveRupees, '50 Rupee Cave'), + Pot(32, 24, PotItem.FiveRupees, '50 Rupee Cave'), Pot(36, 24, PotItem.FiveRupees, '50 Rupee Cave')], + 293: [Pot(24, 25, PotItem.FiveRupees, '20 Rupee Cave'), Pot(28, 25, PotItem.FiveRupees, '20 Rupee Cave'), Pot(32, 25, PotItem.FiveRupees, '20 Rupee Cave'), Pot(36, 25, PotItem.FiveRupees, '20 Rupee Cave'), + Pot(88, 22, PotItem.Heart, 'Dev Cave Hint'), Pot(100, 22, PotItem.Heart, 'Dev Cave Hint'), Pot(88, 28, PotItem.Heart, 'Dev Cave Hint'), Pot(100, 28, PotItem.Heart, 'Dev Cave Hint')], + 295: [Pot(24, 25, PotItem.Nothing, 'Hammer Pegs Cave'), Pot(28, 25, PotItem.Nothing, 'Hammer Pegs Cave'), Pot(32, 25, PotItem.Nothing, 'Hammer Pegs Cave'), Pot(36, 25, PotItem.Nothing, 'Hammer Pegs Cave')], +} + + +def shuffle_pots(world, player): + import random + + new_pot_contents = {} + + for supertile in vanilla_pots: + old_pots = vanilla_pots[supertile] + new_pots = [Pot(pot.x, pot.y, PotItem.Nothing, pot.room, pot.flags) for pot in old_pots] + # sort in the order Hole, Switch, Key, Other, Nothing + sort_order = {PotItem.Hole: 4, PotItem.Switch: 3, PotItem.Key: 2, PotItem.Nothing: 0} + old_pots = sorted(old_pots, key=lambda pot: sort_order.get(pot.item, 1), reverse=True) + + for old_pot in old_pots: + if old_pot.item == PotItem.Nothing: + break + elif old_pot.item == PotItem.Hole: + # Can only go in vanilla position (or the other big rock) + available_pots = (pot for pot in new_pots if pot.x == old_pot.x and pot.y == old_pot.y) + elif old_pot.item == PotItem.Switch: + available_pots = (pot for pot in new_pots if (pot.room == old_pot.room or pot.room in movable_switch_rooms[old_pot.room]) and not (pot.flags & PotFlags.NoSwitch)) + elif old_pot.item == PotItem.Key: + if world.doorShuffle[player] == 'vanilla' and not world.retro[player] and not world.keydropshuffle[player] and world.logic != 'nologic': + available_pots = (pot for pot in new_pots if pot.room not in invalid_key_rooms) + else: + available_pots = new_pots + else: + available_pots = new_pots + + available_pots = [pot for pot in available_pots if pot.item == PotItem.Nothing] + + new_pot = random.choice(available_pots) + new_pot.item = old_pot.item + if world.retro[player] and new_pot.item == PotItem.FiveArrows: + new_pot.item = PotItem.FiveRupees + + if new_pot.item == PotItem.Key and new_pot.room != old_pot.room: + # Move pot key to new room + key = next(location for location in world.get_region(old_pot.room, player).locations if location.name in key_drop_data) + world.get_region(old_pot.room, player).locations.remove(key) + world.get_region(new_pot.room, player).locations.append(key) + key.parent_region = world.get_region(new_pot.room, player) + elif new_pot.item == PotItem.Switch and (new_pot.flags & PotFlags.SwitchLogicChange): + if new_pot.room == 'PoD Basement Ledge': + basement = world.get_region(old_pot.room, player) + ledge = world.get_region(new_pot.room, player) + ledge.locations.append(basement.locations.pop()) + elif new_pot.room == 'Swamp Push Statue': + from Rules import set_rule + set_rule(world.get_entrance('Swamp Push Statue NE', player), lambda state: state.has('Cane of Somaria', player)) + world.get_door('Swamp Push Statue NW', player).blocked = True + elif new_pot.room == 'Thieves Attic Hint': + # Rule is created based on barrier + world.get_door('Thieves Attic ES', player).barrier(CrystalBarrier.Orange) + else: + raise Exception("Switch locattion in room %s requires logic change" % new_pot.room) + + new_pot_contents[supertile] = new_pots + + world.pot_contents[player] = new_pot_contents diff --git a/README.md b/README.md index 4bf368f8..5e3292e2 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,11 @@ Please just DM me on discord for now. I (Aerinon) can be found at the [ALTTP Ran # Installation -Clone this repository and then run ```DungeonRandomizer.py``` (requires Python 3). +Install Python 3 + +Run ```pip install python-bps-continued```. On Linux, you should use pip3. On Windows, you may need to run ```python -m pip install python-bps-continued``` or ```py -m pip install python-bps-continued```. + +Clone this repository then run ```DungeonRandomizer.py```. Alternatively, run ```Gui.py``` for a simple graphical user interface. (WIP) @@ -22,7 +26,7 @@ Alternatively, run ```Gui.py``` for a simple graphical user interface. (WIP) Only extra settings are found here. All entrance randomizer settings are supported. See their [readme](https://github.com/KevinCathcart/ALttPEntranceRandomizer/blob/master/README.md) -## Door Shuffle +## Door Shuffle (--doorShuffle) ### Basic @@ -36,15 +40,52 @@ Doors are shuffled between dungeons as well. Doors are not shuffled. -## Intensity +## Intensity (--intensity number) #### Level 1 Normal door and spiral staircases are shuffled #### Level 2 Same as Level 1 plus open edges and straight staircases are shuffled. -#### Level 3 (Coming soon) +#### Level 3 Same as Level 2 plus Dungeon Lobbies are shuffled +## KeyDropShuffle (--keydropshuffle) + +Adds 33 new locations to the randomization pool. The 32 small keys found under pots and dropped by enemies and the Big +Key drop location are added to the pool. The keys normally found there are added to the item pool. Retro adds +32 generic keys to the pool instead. + +## Crossed Dungeon Specific Settings + +### Mixed Travel (--mixed_travel value) + +Due to Hammerjump, Hovering in PoD Arena, and the Mire Big Key Chest bomb jump two sections of a supertile that are +otherwise unconnected logically can be reached using these glitches. To prevent the player from unintentionally changing +dungeons while doing these tricks, you may use one of the following options. + +#### Prevent (default) + +Rails are added the 3 spots to prevent this tricks. This setting is recommend for those learning crossed dungeon mode to +learn what is dangerous and what is not. No logic seeds ignore this setting. + +#### Allow + +The rooms are left alone and it is up to the discretion of the player whether to use these tricks or not. + +#### Force + +The two disjointed sections are forced to be in the same dungeon but the glitches are never logically required to complete that game. + +### Standardize Palettes (--standardize_palettes) +No effect if door shuffle is not on crossed + +#### Standardize (default) +Rooms in the same dungeon have their palettes changed to match. Hyrule Castle is split between Sewer and HC palette. +Rooms adjacent to sanctuary get their coloring to match the Sanctuary's original palette. + +#### Original +Rooms/supertiles keep their original palettes. + ## Map/Compass/Small Key/Big Key shuffle (aka Keysanity) @@ -81,13 +122,31 @@ Use to batch generate multiple seeds with same settings. If a seed number is pro Show the help message and exit. ``` ---door_shuffle +--door_shuffle ``` For specifying the door shuffle you want as above. (default: basic) ``` ---intensity +--intensity ``` For specifying the door shuffle intensity level you want as above. (default: 2) + +``` +--keydropshuffle +``` + +Include mobs and pots drop in the item pool. (default: not enabled) + +``` +--mixed_travel +``` + +How to handle certain glitches in crossed dungeon mode. (default: prevent) + +``` +--standardize_palettes (mode) +``` + +Whether to standardize dungeon palettes in crossed dungeon mode. (default: standardize) \ No newline at end of file diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 82494a81..26fdf9fe 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,38 +1,165 @@ # New Features -* Crossed Dungeon generation improvements -* Standard mode generation improvements -* Spoiler lists bosses (multiworld compatible) -* Bombs escape not valid for Crossed Dungeon -* Graph algorithm speed improvement for placements and playthrough -* TT Attic Hint tile should have a crystal switch accessible now -* Updated to v.31.0.5 +## Lobby shuffle added as Intensity level 3 + +* Standard notes: + * The sanctuary is vanilla, and will be missing the exit door until Zelda is rescued + * In entrance shuffle the hyrule castle left and right exit door will be missing until Zelda is rescued. This + replaces the rails that used to block those lobby exits + * In non-entrance shuffle, Agahnims tower can be in logic if you have cape and/or Master sword, but you are never + required to beat Agahnim 1 until Zelda is rescued. +* Open notes: + * The Sanctuary is limited to be in a LW dungeon unless you have ER Crossed or higher enabled + * Mirroring from the Sanctuary to the new "Sanctuary" lobby is now in logic, as is exiting there. + * In ER crossed or higher, if the Sanctuary is in the Dark World, Link starts as Bunny there until the Moon Pearl + is found. Nothing inside that dungeon is in logic until the Moon Pearl is found. (Unless it is a multi-entrance + dungeon that you can access from some LW entrance) +* Lobby list is found in the spoiler +* Exits for Multi-entrance dungeons after beating bosses now makes more sense. Generally you'll exit from a entrance + from which the boss can logically be reached. If there are multiple, ones that do not lead to regions only accessible + by connector are preferred. The exit is randomly chosen if there's no obvious preference. However, In certain poor + cases like Skull Woods in ER, sometimes an exit is chosen not because you can reach the boss from there, but to + prevent a potential forced S&Q. +* Palette changes: + * Certain doors/transition no longer have an effect on the palette choice (dead ends mostly or just bridges) + * Sanctuary palette used on the adjacent rooms to Sanctuary (Sanctuary stays the dungeon color for now) + * Sewer palette comes back for part of Hyrule Castle for areas "near" the sewer dropdown + * There is a setting to keep original palettes (--standardize_palettes original) +* Known issues: + * Palettes are not perfect + * Some ugly colors + * Invisible floors can be see in many palettes + +## Key Drop Shuffle + +--keydropshuffle added. This add 33 new locations to the game where keys are found under pots +and where enemies drop keys. This includes 32 small key location and the ball and chain guard who normally drop the HC +Big Key. + +* Overall location count updated +* Setting mentioned in spoiler +* Minor change: if a key is Universal or for that dungeon, then if will use the old mechanics of picking up the key without +an entire pose and should be obtainable with the hookshot or boomerang as before + +## --mixed_travel setting +* Due to Hammerjump, Hovering in PoD Arena, and the Mire Big Key Chest bomb jump two sections of a supertile that are +otherwise unconnected logically can be reach using these glitches. To prevent the player from unintentionally + * prevent: Rails are added to the 3 spots to prevent these tricks. This setting is recommend for those learning + crossed dungeon mode to learn what is dangerous and what is not. No logic seeds ignore this setting. + * allow: The rooms are left alone and it is up to the discretion of the player whether to use these tricks or not. + * force: The two disjointed sections are forced to be in the same dungeon but performing the glitches is never + logically required to complete that game. + +## Keysanity menu redesign + +Redesign of Keysanity Menu complete for crossed dungeon and moved out of experimental. +* First screen about Big Keys and Small Keys + * 1st Column: The map is required for information about the Big Key + * If you don't have the map, it'll be blank until you obtain the Big Key + * If have the map: + * 0 indicates there is no Big Key for that dungeon + * A red symbol indicates the Ball N Chain guard has the big key for that dungeon (does not apply in + --keydropshuffle) + * Blank if there a big key but you haven't found it yet + * 2nd Column displays the current number of keys for that dungeon. Suppressed in retro (always blank) + * 3rd Column only displays if you have the map. It shows the number of keys left to collect for that dungeon. If + --keydropshuffle is off, this does not count key drops. If on, it does. + * (Note: the key columns can display up to 35 using the letters A-Z after 9) +* Second screen about Maps / Compass + * 1st Column: indicates if you have found the map or not for that dungeon + * 2nd and 3rd Column: You must have the compass to see these columns. A two-digit display that shows you how + many chests are left in the dungeon. If --keydropshuffle is off, this does not count key drops. If on, it does. + +## Potshuffle by compiling + +Same flag as before but uses python logic written by compiling instead of the enemizer logic-less version. + +## Other features + +### Spoiler log improvements + +* In crossed mode, the new dungeon is listed along with the location designated by a '@' sign +* Random gt crystals and ganon crystal are noted in the settings for better reproduction of seeds ### Experimental features -* Moved BK information and total chest keys per dungeon to keysanity menu. The info there requires compass for all info. -* Map still required for on-hud key counter. -* Added total counter to keysanity the compass/map screen when you have the compass for the dungeon. -* Open "Edge" transitions can now be linked with normal doors -* "Straight" staircases (the ones similar to normal doors) can be linked with both normal doors and edges +* Only the item counter is currently experimental + * Item counter is suppressed in Triforce Hunt -#### Couple of temporary debug features added: +#### Temporary debug features -* Total item count displays where TFH's goal usually does -* A red square appears in the upper right corner of the hud if the castle gate is closed +* Removed the red square in the upper right corner of the hud if the castle gate is closed # Bug Fixes -* Fix for Animated Tiles in crossed dungeon -* Stonewall hardlock no longer reachable from certain drops (Sewer Drop, some Skull Woods drops) that were previously possible -* No logic uses less key door logic -* Spoiler log encoding -* Enemizer settings made consistent with website -* Swamp flooded ladders in the basement now requires Flippers -* PoD EG Glitch gets killed on transitions (Only when DR is on) -* Problem with standard logic fixed wanting you to pass through the tapestry backwards to rescue Zelda -* Fixed SRAM corruption issues -* Problem with the dungeons requiring you to take Blind through her attic fixed. (Maiden no longer despawns) -* Hyrule Castle will not be your DW access in various Entrance Shuffles: simple, restricted, dungeonssimple, dungeonsfull -(Also prevents getting stuck in TR opening) -* Beatable only (accessibility: none) no longer fails when there are unplaced items \ No newline at end of file +* 2.0.20u + * Problem with Desert Wall not being pre-opened in intensity 3 fixed +* 2.0.19u + * Generation improvement + * Possible fix for shop vram corruption + * The Cane of Byrna does not count as a chest key anymore +* 2.0.18u + * Generation improvements + * Bombs/Dash doors more consistent with the amount in vanilla. +* 2.0.17u + * Generation improvements +* 2.0.16u + * Prevent HUD from showing key counter when in the overworld. (Aga 2 doesn't always clear the dungeon indicator) + * Fixed key logic regarding certain isolated "important" locations + * Fixed a problem with keydropshuffle thinking certain progression items are keys + * A couple of inverted rules fixed + * A more accurate count of which locations are blocked by teh big key in Ganon's Tower + * Updated base rom to 31.0.7 (includes potential hera basement cage fix) +* 2.0.15u + * Allow Aga Tower lobby door as a a paired keydoor (typo) + * Fix portal check for multi-entrance dungeons +* 2.0.14u + * Removal of key doors no longer messes up certain lobbies + * Fixed ER entrances when Desert Back is a connector +* 2.0.13u + * Minor portal re-work for certain logic and spoiler information + * Repaired certain exits wrongly affected by Sanctuary placement (ER crossed + intensity 3) + * Fix for inverted ER + intensity 3 + * Fix for current small keys missing on keysanity menu + * Logic added for cases where you can flood Swamp Trench 1 before finding flippers and lock yourself out of getting + something behind the trench that leads to the flippers +* 2.0.12u + * Another fix for animated tiles (fairy fountains) + * GT Big Key stat fixed on credits + * Any denomination of rupee 20 or below can be removed to make room for Crossed Dungeon's extra dungeon items. This + helps retro generate more often. + * Fix for TR Lobbies in intensity 3 and ER shuffles that was causing a hardlock + * Standard ER logic revised for lobby shuffle and rain state considerations. +* 2.0.11u + * Fix output path setting in settings.json + * Fix trock entrances when intensity <= 2 +* 2.0.10u + * Fix POD, TR, GT and SKULL 3 entrances if sanc ends up in that dungeon in crossed ER+ + * TR Lobbies that need a bomb and can be entered before bombing should be pre-opened + * Animated tiles are loaded correctly in lobbies + * If a wallmaster grabs you and the lobby is dark, the lamp turns on now + * Certain key rules no longer override item requirements (e.g. Somaria behind TR Hub) + * Old Man Cave is correctly one way in the graph + * Some key logic fixes +* 2.0.9-u + * /missing command in MultiClient fixed +* 2.0.8-u + * Player sprite disappears after picking up a key drop in keydropshuffle + * Sewers and Hyrule Castle compass problems + * Double count of the Hera Basement Cage item (both overall and compass) + * Unnecessary/inconsistent rug cutoff + * TR Crystal Maze thought you get through backwards without Somaria + * Ensure Thieves Attic Window area can always be reached + * Fixed where HC big key was not counted +* Prior fixes + * Fixed a situation where logic did not account properly for Big Key doors in standard Hyrule Castle + * Fixed a problem ER shuffle generation that did not account for lobbies moving around + * Fixed a problem with camera unlock (GT Mimics and Mire Minibridge) + * Fixed a problem with bad-pseudo layer at PoD map Balcony (unable to hit switch with Bomb) + * Fixed a problem with the Ganon hint when hints are turned off + +# Known Issues + +* Potenial keylocks in multi-entrance dungeons +* Incorrect vanilla keylogic for Mire +* ER - Potential for Skull Woods West to be completely inaccessible in non-beatable logic \ No newline at end of file diff --git a/Regions.py b/Regions.py index babb0897..ce4281c0 100644 --- a/Regions.py +++ b/Regions.py @@ -4,7 +4,7 @@ from BaseClasses import Region, Location, Entrance, RegionType, Shop, ShopType def create_regions(world, player): world.regions += [ - create_lw_region(player, 'Menu', None, ['Links House S&Q', 'Sanctuary S&Q', 'Old Man S&Q']), + create_menu_region(player, 'Menu', None, ['Links House S&Q', 'Sanctuary S&Q', 'Old Man S&Q']), create_lw_region(player, 'Light World', ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest'], ["Blinds Hideout", "Hyrule Castle Secret Entrance Drop", 'Zoras River', 'Kings Grave Outer Rocks', 'Dam', 'Links House', 'Tavern North', 'Chicken House', 'Aginahs Cave', 'Sahasrahlas Hut', 'Kakariko Well Drop', 'Kakariko Well Cave', @@ -100,7 +100,8 @@ def create_regions(world, player): create_lw_region(player, 'Hyrule Castle Ledge', None, ['Hyrule Castle Entrance (East)', 'Hyrule Castle Entrance (West)', 'Agahnims Tower', 'Hyrule Castle Ledge Courtyard Drop']), create_dungeon_region(player, 'Sewer Drop', 'a drop\'s exit', None, ['Sewer Drop']), # This exists only to be referenced for access checks - create_cave_region(player, 'Old Man Cave', 'a connector', ['Old Man'], ['Old Man Cave Exit (East)', 'Old Man Cave Exit (West)']), + create_cave_region(player, 'Old Man Cave', 'a connector', ['Old Man'], ['Old Man Cave Exit (East)']), + create_cave_region(player, 'Old Man Cave Ledge', 'a connector', None, ['Old Man Cave Exit (West)', 'Old Man Cave Dropdown']), create_cave_region(player, 'Old Man House', 'a connector', None, ['Old Man House Exit (Bottom)', 'Old Man House Front to Back']), create_cave_region(player, 'Old Man House Back', 'a connector', None, ['Old Man House Exit (Top)', 'Old Man House Back to Front']), create_lw_region(player, 'Death Mountain', None, ['Old Man Cave (East)', 'Old Man House (Bottom)', 'Old Man House (Top)', 'Death Mountain Return Cave (East)', 'Spectacle Rock Cave', 'Spectacle Rock Cave Peak', 'Spectacle Rock Cave (Bottom)', 'Broken Bridge (West)', 'Death Mountain Teleporter']), @@ -198,18 +199,45 @@ def create_regions(world, player): create_dw_region(player, 'Pyramid Ledge', None, ['Pyramid Entrance', 'Pyramid Drop']), ] + def create_dungeon_regions(world, player): std_flag = world.mode[player] == 'standard' inv_flag = world.mode[player] == 'inverted' world.regions += [ - create_dungeon_region(player, 'Hyrule Castle Lobby', 'Hyrule Castle', None, ['Hyrule Castle Lobby W', 'Hyrule Castle Lobby E', - 'Hyrule Castle Lobby WN', 'Hyrule Castle Lobby North Stairs', 'Hyrule Castle Exit (South)']), - create_dungeon_region(player, 'Hyrule Castle West Lobby', 'Hyrule Castle', None, ['Hyrule Castle West Lobby E', 'Hyrule Castle West Lobby N', - 'Hyrule Castle West Lobby EN', 'Hyrule Castle Exit (West)']), - create_dungeon_region(player, 'Hyrule Castle East Lobby', 'Hyrule Castle', None, ['Hyrule Castle East Lobby W', 'Hyrule Castle East Lobby N', - 'Hyrule Castle East Lobby NW', 'Hyrule Castle Exit (East)']), - create_dungeon_region(player, 'Hyrule Castle East Hall', 'Hyrule Castle', None, ['Hyrule Castle East Hall W', 'Hyrule Castle East Hall S', - 'Hyrule Castle East Hall SW']), + create_dungeon_region(player, 'Sanctuary Portal', 'Hyrule Castle', None, ['Sanctuary Exit', 'Enter HC (Sanc)']), + create_dungeon_region(player, 'Hyrule Castle West Portal', 'Hyrule Castle', None, ['Hyrule Castle Exit (West)', 'Enter HC (West)']), + create_dungeon_region(player, 'Hyrule Castle South Portal', 'Hyrule Castle', None, ['Hyrule Castle Exit (South)', 'Enter HC (South)']), + create_dungeon_region(player, 'Hyrule Castle East Portal', 'Hyrule Castle', None, ['Hyrule Castle Exit (East)', 'Enter HC (East)']), + create_dungeon_region(player, 'Eastern Portal', 'Eastern Palace', None, ['Eastern Palace Exit', 'Enter Eastern Palace']), + create_dungeon_region(player, 'Desert West Portal', 'Desert Palace', None, ['Desert Palace Exit (West)', 'Enter Desert (West)']), + create_dungeon_region(player, 'Desert South Portal', 'Desert Palace', None, ['Desert Palace Exit (South)', 'Enter Desert (South)']), + create_dungeon_region(player, 'Desert East Portal', 'Desert Palace', None, ['Desert Palace Exit (East)', 'Enter Desert (East)']), + create_dungeon_region(player, 'Desert Back Portal', 'Desert Palace', None, ['Desert Palace Exit (North)', 'Enter Desert (North)']), + create_dungeon_region(player, 'Hera Portal', 'Tower of Hera', None, ['Tower of Hera Exit', 'Enter Hera']), + create_dungeon_region(player, 'Agahnims Tower Portal', 'Castle Tower', None, [inv_flag and 'Inverted Agahnims Tower Exit' or 'Agahnims Tower Exit', 'Enter Agahnims Tower']), + create_dungeon_region(player, 'Palace of Darkness Portal', 'Palace of Darkness', None, ['Palace of Darkness Exit', 'Enter Palace of Darkness']), + create_dungeon_region(player, 'Swamp Portal', 'Swamp Palace', None, ['Swamp Palace Exit', 'Enter Swamp']), + create_dungeon_region(player, 'Skull 1 Portal', 'Skull Woods', None, ['Skull Woods First Section Exit', 'Enter Skull Woods 1']), + create_dungeon_region(player, 'Skull 2 East Portal', 'Skull Woods', None, ['Skull Woods Second Section Exit (East)', 'Enter Skull Woods 2 (East)']), + create_dungeon_region(player, 'Skull 2 West Portal', 'Skull Woods', None, ['Skull Woods Second Section Exit (West)', 'Enter Skull Woods 2 (West)']), + create_dungeon_region(player, 'Skull 3 Portal', 'Skull Woods', None, ['Skull Woods Final Section Exit', 'Enter Skull Woods 3']), + create_dungeon_region(player, 'Thieves Town Portal', "Thieves' Town", None, ['Thieves Town Exit', 'Enter Thieves Town']), + create_dungeon_region(player, 'Ice Portal', 'Ice Palace', None, ['Ice Palace Exit', 'Enter Ice Palace']), + create_dungeon_region(player, 'Mire Portal', 'Misery Mire', None, ['Misery Mire Exit', 'Enter Misery Mire']), + create_dungeon_region(player, 'Turtle Rock Main Portal', 'Turtle Rock', None, ['Turtle Rock Exit (Front)', 'Enter Turtle Rock (Main)']), + create_dungeon_region(player, 'Turtle Rock Lazy Eyes Portal', 'Turtle Rock', None, ['Turtle Rock Ledge Exit (West)', 'Enter Turtle Rock (Lazy Eyes)']), + create_dungeon_region(player, 'Turtle Rock Chest Portal', 'Turtle Rock', None, ['Turtle Rock Ledge Exit (East)', 'Enter Turtle Rock (Chest)']), + create_dungeon_region(player, 'Turtle Rock Eye Bridge Portal', 'Turtle Rock', None, ['Turtle Rock Isolated Ledge Exit', 'Enter Turtle Rock (Laser Bridge)']), + create_dungeon_region(player, 'Ganons Tower Portal', "Ganon's Tower", None, [inv_flag and 'Inverted Ganons Tower Exit' or 'Ganons Tower Exit', 'Enter Ganons Tower']), + + create_dungeon_region(player, 'Hyrule Castle Lobby', 'Hyrule Castle', None, + ['Hyrule Castle Lobby W', 'Hyrule Castle Lobby E', 'Hyrule Castle Lobby WN', 'Hyrule Castle Lobby North Stairs', 'Hyrule Castle Lobby S']), + create_dungeon_region(player, 'Hyrule Castle West Lobby', 'Hyrule Castle', None, + ['Hyrule Castle West Lobby E', 'Hyrule Castle West Lobby N', 'Hyrule Castle West Lobby EN', 'Hyrule Castle West Lobby S']), + create_dungeon_region(player, 'Hyrule Castle East Lobby', 'Hyrule Castle', None, + ['Hyrule Castle East Lobby W', 'Hyrule Castle East Lobby N', 'Hyrule Castle East Lobby NW', 'Hyrule Castle East Lobby S']), + create_dungeon_region(player, 'Hyrule Castle East Hall', 'Hyrule Castle', None, + ['Hyrule Castle East Hall W', 'Hyrule Castle East Hall S', 'Hyrule Castle East Hall SW']), create_dungeon_region(player, 'Hyrule Castle West Hall', 'Hyrule Castle', None, ['Hyrule Castle West Hall E', 'Hyrule Castle West Hall S']), create_dungeon_region(player, 'Hyrule Castle Back Hall', 'Hyrule Castle', None, ['Hyrule Castle Back Hall E', 'Hyrule Castle Back Hall W', 'Hyrule Castle Back Hall Down Stairs']), create_dungeon_region(player, 'Hyrule Castle Throne Room', 'Hyrule Castle', None, ['Hyrule Castle Throne Room Tapestry', 'Hyrule Castle Throne Room South Stairs']), @@ -225,10 +253,11 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Hyrule Dungeon Armory Boomerang', 'Hyrule Castle', ['Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Boomerang Guard Key Drop'], ['Hyrule Dungeon Armory Boomerang WS']), create_dungeon_region(player, 'Hyrule Dungeon Armory North Branch', 'Hyrule Castle', None, ['Hyrule Dungeon Armory Interior Key Door S', 'Hyrule Dungeon Armory Down Stairs']), create_dungeon_region(player, 'Hyrule Dungeon Staircase', 'Hyrule Castle', None, ['Hyrule Dungeon Staircase Up Stairs', 'Hyrule Dungeon Staircase Down Stairs']), - create_dungeon_region(player, 'Hyrule Dungeon Cellblock', 'Hyrule Castle', - ['Hyrule Castle - Big Key Drop', 'Hyrule Castle - Zelda\'s Chest'] if not std_flag else - ['Hyrule Castle - Big Key Drop', 'Hyrule Castle - Zelda\'s Chest', 'Zelda Pickup'], - ['Hyrule Dungeon Cellblock Up Stairs']), + create_dungeon_region(player, 'Hyrule Dungeon Cellblock', 'Hyrule Castle', ['Hyrule Castle - Big Key Drop'], ['Hyrule Dungeon Cellblock Up Stairs', 'Hyrule Dungeon Cellblock Door']), + create_dungeon_region(player, 'Hyrule Dungeon Cell', 'Hyrule Castle', + ["Hyrule Castle - Zelda's Chest"] if not std_flag else + ["Hyrule Castle - Zelda's Chest", 'Zelda Pickup'], + ['Hyrule Dungeon Cell Exit']), create_dungeon_region(player, 'Sewers Behind Tapestry', 'Hyrule Castle', None, ['Sewers Behind Tapestry S', 'Sewers Behind Tapestry Down Stairs']), @@ -244,10 +273,10 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Sewers Pull Switch', 'Hyrule Castle', None, ['Sewers Pull Switch N', 'Sewers Pull Switch S']), create_dungeon_region(player, 'Sanctuary', 'Hyrule Castle', ['Sanctuary'] if not std_flag else ['Sanctuary', 'Zelda Drop Off'], - ['Sanctuary Exit', 'Sanctuary N']), + ['Sanctuary S', 'Sanctuary N', 'Sanctuary Mirror Route']), # Eastern Palace - create_dungeon_region(player, 'Eastern Lobby', 'Eastern Palace', None, ['Eastern Lobby N', 'Eastern Palace Exit', 'Eastern Lobby NW', 'Eastern Lobby NE']), + create_dungeon_region(player, 'Eastern Lobby', 'Eastern Palace', None, ['Eastern Lobby N', 'Eastern Lobby S', 'Eastern Lobby NW', 'Eastern Lobby NE']), create_dungeon_region(player, 'Eastern Lobby Bridge', 'Eastern Palace', None, ['Eastern Lobby Bridge S', 'Eastern Lobby Bridge N']), create_dungeon_region(player, 'Eastern Lobby Left Ledge', 'Eastern Palace', None, ['Eastern Lobby Left Ledge SW']), create_dungeon_region(player, 'Eastern Lobby Right Ledge', 'Eastern Palace', None, ['Eastern Lobby Right Ledge SE']), @@ -279,11 +308,11 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Eastern Boss', 'Eastern Palace', ['Eastern Palace - Boss', 'Eastern Palace - Prize'], ['Eastern Boss SE']), # Desert Palace - create_dungeon_region(player, 'Desert Main Lobby', 'Desert Palace', None, ['Desert Palace Exit (South)', 'Desert Main Lobby N Edge', 'Desert Main Lobby Left Path', 'Desert Main Lobby Right Path']), + create_dungeon_region(player, 'Desert Main Lobby', 'Desert Palace', None, ['Desert Main Lobby S', 'Desert Main Lobby N Edge', 'Desert Main Lobby Left Path', 'Desert Main Lobby Right Path']), create_dungeon_region(player, 'Desert Left Alcove', 'Desert Palace', None, ['Desert Main Lobby NW Edge', 'Desert Left Alcove Path']), create_dungeon_region(player, 'Desert Right Alcove', 'Desert Palace', None, ['Desert Main Lobby NE Edge', 'Desert Main Lobby E Edge', 'Desert Right Alcove Path']), create_dungeon_region(player, 'Desert Dead End', 'Desert Palace', None, ['Desert Dead End Edge']), - create_dungeon_region(player, 'Desert East Lobby', 'Desert Palace', None, ['Desert East Lobby WS', 'Desert Palace Exit (East)']), + create_dungeon_region(player, 'Desert East Lobby', 'Desert Palace', None, ['Desert East Lobby WS', 'Desert East Lobby S']), create_dungeon_region(player, 'Desert East Wing', 'Desert Palace', None, ['Desert East Wing ES', 'Desert East Wing Key Door EN', 'Desert East Wing W Edge', 'Desert East Wing N Edge']), create_dungeon_region(player, 'Desert Compass Room', 'Desert Palace', ['Desert Palace - Compass Chest'], ['Desert Compass Key Door WN', 'Desert Compass NW']), create_dungeon_region(player, 'Desert Cannonball', 'Desert Palace', ['Desert Palace - Big Key Chest'], ['Desert Cannonball S']), @@ -296,9 +325,9 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Desert Circle of Pots', 'Desert Palace', None, ['Desert Circle of Pots ES', 'Desert Circle of Pots NW']), create_dungeon_region(player, 'Desert Big Chest Room', 'Desert Palace', ['Desert Palace - Big Chest'], ['Desert Big Chest SW']), create_dungeon_region(player, 'Desert West Wing', 'Desert Palace', None, ['Desert West Wing N Edge', 'Desert West Wing WS']), - create_dungeon_region(player, 'Desert West Lobby', 'Desert Palace', None, ['Desert West Lobby ES', 'Desert Palace Exit (West)', 'Desert West Lobby NW']), + create_dungeon_region(player, 'Desert West Lobby', 'Desert Palace', None, ['Desert West Lobby ES', 'Desert West S', 'Desert West Lobby NW']), create_dungeon_region(player, 'Desert Fairy Fountain', 'Desert Palace', None, ['Desert Fairy Fountain SW']), - create_dungeon_region(player, 'Desert Back Lobby', 'Desert Palace', None, ['Desert Palace Exit (North)', 'Desert Back Lobby NW']), + create_dungeon_region(player, 'Desert Back Lobby', 'Desert Palace', None, ['Desert Back Lobby S', 'Desert Back Lobby NW']), create_dungeon_region(player, 'Desert Tiles 1', 'Desert Palace', ['Desert Palace - Desert Tiles 1 Pot Key'], ['Desert Tiles 1 SW', 'Desert Tiles 1 Up Stairs']), create_dungeon_region(player, 'Desert Bridge', 'Desert Palace', None, ['Desert Bridge Down Stairs', 'Desert Bridge SW']), create_dungeon_region(player, 'Desert Four Statues', 'Desert Palace', None, ['Desert Four Statues NW', 'Desert Four Statues ES']), @@ -308,7 +337,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Desert Boss', 'Desert Palace', ['Desert Palace - Boss', 'Desert Palace - Prize'], ['Desert Boss SW']), # Hera - create_dungeon_region(player, 'Hera Lobby', 'Tower of Hera', ['Tower of Hera - Map Chest'], ['Hera Lobby Down Stairs', 'Hera Lobby Key Stairs', 'Hera Lobby Up Stairs', 'Tower of Hera Exit']), + create_dungeon_region(player, 'Hera Lobby', 'Tower of Hera', ['Tower of Hera - Map Chest'], ['Hera Lobby Down Stairs', 'Hera Lobby Key Stairs', 'Hera Lobby Up Stairs', 'Hera Lobby S']), create_dungeon_region(player, 'Hera Basement Cage', 'Tower of Hera', ['Tower of Hera - Basement Cage'], ['Hera Basement Cage Up Stairs']), create_dungeon_region(player, 'Hera Tile Room', 'Tower of Hera', None, ['Hera Tile Room Up Stairs', 'Hera Tile Room EN']), create_dungeon_region(player, 'Hera Tridorm', 'Tower of Hera', None, ['Hera Tridorm WN', 'Hera Tridorm SE']), @@ -323,7 +352,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Hera Boss', 'Tower of Hera', ['Tower of Hera - Boss', 'Tower of Hera - Prize'], ['Hera Boss Down Stairs', 'Hera Boss Outer Hole', 'Hera Boss Inner Hole']), # AgaTower - create_dungeon_region(player, 'Tower Lobby', 'Castle Tower', None, ['Tower Lobby NW', inv_flag and 'Inverted Agahnims Tower Exit' or 'Agahnims Tower Exit']), + create_dungeon_region(player, 'Tower Lobby', 'Castle Tower', None, ['Tower Lobby NW', 'Tower Lobby S']), create_dungeon_region(player, 'Tower Gold Knights', 'Castle Tower', None, ['Tower Gold Knights SW', 'Tower Gold Knights EN']), create_dungeon_region(player, 'Tower Room 03', 'Castle Tower', ['Castle Tower - Room 03'], ['Tower Room 03 WN', 'Tower Room 03 Up Stairs']), create_dungeon_region(player, 'Tower Lone Statue', 'Castle Tower', None, ['Tower Lone Statue Down Stairs', 'Tower Lone Statue WN']), @@ -343,7 +372,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Tower Agahnim 1', 'Castle Tower', ['Agahnim 1'], ['Tower Agahnim 1 SW']), # pod - create_dungeon_region(player, 'PoD Lobby', 'Palace of Darkness', None, ['PoD Lobby N', 'PoD Lobby NW', 'PoD Lobby NE', 'Palace of Darkness Exit']), + create_dungeon_region(player, 'PoD Lobby', 'Palace of Darkness', None, ['PoD Lobby N', 'PoD Lobby NW', 'PoD Lobby NE', 'PoD Lobby S']), create_dungeon_region(player, 'PoD Left Cage', 'Palace of Darkness', None, ['PoD Left Cage SW', 'PoD Left Cage Down Stairs']), create_dungeon_region(player, 'PoD Middle Cage', 'Palace of Darkness', None, ['PoD Middle Cage S', 'PoD Middle Cage SE', 'PoD Middle Cage N', 'PoD Middle Cage Down Stairs']), create_dungeon_region(player, 'PoD Shooter Room', 'Palace of Darkness', ['Palace of Darkness - Shooter Room'], ['PoD Shooter Room Up Stairs']), @@ -381,7 +410,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'PoD Boss', 'Palace of Darkness', ['Palace of Darkness - Boss', 'Palace of Darkness - Prize'], ['PoD Boss SE']), # swamp - create_dungeon_region(player, 'Swamp Lobby', 'Swamp Palace', None, ['Swamp Palace Exit', 'Swamp Lobby Moat']), + create_dungeon_region(player, 'Swamp Lobby', 'Swamp Palace', None, ['Swamp Lobby S', 'Swamp Lobby Moat']), create_dungeon_region(player, 'Swamp Entrance', 'Swamp Palace', ['Swamp Palace - Entrance'], ['Swamp Entrance Down Stairs', 'Swamp Entrance Moat']), create_dungeon_region(player, 'Swamp Pot Row', 'Swamp Palace', ['Swamp Palace - Pot Row Pot Key'], ['Swamp Pot Row Up Stairs', 'Swamp Pot Row WN', 'Swamp Pot Row WS']), create_dungeon_region(player, 'Swamp Map Ledge', 'Swamp Palace', ['Swamp Palace - Map Chest'], ['Swamp Map Ledge EN']), @@ -416,9 +445,9 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Swamp Right Elbow', 'Swamp Palace', None, ['Swamp Right Elbow SE', 'Swamp Right Elbow Down Stairs']), create_dungeon_region(player, 'Swamp Drain Left', 'Swamp Palace', None, ['Swamp Drain Left Up Stairs', 'Swamp Drain WN']), create_dungeon_region(player, 'Swamp Drain Right', 'Swamp Palace', ['Swamp Drain'], ['Swamp Drain Right Switch', 'Swamp Drain Right Up Stairs']), - # This is intentionally odd so I don't have to treat the WS door in the Flooded Room oddly (because of how it works when going backward) - create_dungeon_region(player, 'Swamp Flooded Room', 'Swamp Palace', None, ['Swamp Flooded Room Up Stairs', 'Swamp Flooded Room Ladder', 'Swamp Flooded Room WS']), - create_dungeon_region(player, 'Swamp Flooded Spot', 'Swamp Palace', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right'], ['Swamp Flooded Spot Ladder']), + create_dungeon_region(player, 'Swamp Flooded Room', 'Swamp Palace', None, ['Swamp Flooded Room Up Stairs', 'Swamp Flooded Room Ladder']), + # this is more normal and allows getting the chests from doing this room backward in logic + create_dungeon_region(player, 'Swamp Flooded Spot', 'Swamp Palace', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right'], ['Swamp Flooded Room WS', 'Swamp Flooded Spot Ladder']), create_dungeon_region(player, 'Swamp Basement Shallows', 'Swamp Palace', None, ['Swamp Basement Shallows NW', 'Swamp Basement Shallows EN', 'Swamp Basement Shallows ES']), create_dungeon_region(player, 'Swamp Waterfall Room', 'Swamp Palace', ['Swamp Palace - Waterfall Room'], ['Swamp Waterfall Room SW', 'Swamp Waterfall Room NW', 'Swamp Waterfall Room NE']), create_dungeon_region(player, 'Swamp Refill', 'Swamp Palace', None, ['Swamp Refill SW']), @@ -430,7 +459,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Swamp Boss', 'Swamp Palace', ['Swamp Palace - Boss', 'Swamp Palace - Prize'], ['Swamp Boss SW']), # sw - create_dungeon_region(player, 'Skull 1 Lobby', 'Skull Woods', None, ['Skull Woods First Section Exit', 'Skull 1 Lobby WS', 'Skull 1 Lobby ES']), + create_dungeon_region(player, 'Skull 1 Lobby', 'Skull Woods', None, ['Skull 1 Lobby S', 'Skull 1 Lobby WS', 'Skull 1 Lobby ES']), create_dungeon_region(player, 'Skull Map Room', 'Skull Woods', ['Skull Woods - Map Chest'], ['Skull Map Room WS', 'Skull Map Room SE']), create_dungeon_region(player, 'Skull Pot Circle', 'Skull Woods', None, ['Skull Pot Circle WN', 'Skull Pot Circle Star Path']), create_dungeon_region(player, 'Skull Pull Switch', 'Skull Woods', None, ['Skull Pull Switch EN', 'Skull Pull Switch S']), @@ -439,14 +468,14 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Skull Pot Prison', 'Skull Woods', ['Skull Woods - Pot Prison'], ['Skull Pot Prison ES', 'Skull Pot Prison SE']), create_dungeon_region(player, 'Skull Compass Room', 'Skull Woods', ['Skull Woods - Compass Chest'], ['Skull Compass Room NE', 'Skull Compass Room ES', 'Skull Compass Room WS']), create_dungeon_region(player, 'Skull Left Drop', 'Skull Woods', None, ['Skull Left Drop ES']), - create_dungeon_region(player, 'Skull 2 East Lobby', 'Skull Woods', None, ['Skull 2 East Lobby NW', 'Skull 2 East Lobby WS', 'Skull Woods Second Section Exit (East)']), + create_dungeon_region(player, 'Skull 2 East Lobby', 'Skull Woods', None, ['Skull 2 East Lobby NW', 'Skull 2 East Lobby WS', 'Skull 2 East Lobby SW']), create_dungeon_region(player, 'Skull Big Key', 'Skull Woods', ['Skull Woods - Big Key Chest'], ['Skull Big Key SW', 'Skull Big Key WN']), create_dungeon_region(player, 'Skull Lone Pot', 'Skull Woods', None, ['Skull Lone Pot EN']), create_dungeon_region(player, 'Skull Small Hall', 'Skull Woods', None, ['Skull Small Hall ES', 'Skull Small Hall WS']), create_dungeon_region(player, 'Skull Back Drop', 'Skull Woods', None, ['Skull Back Drop Star Path', ]), - create_dungeon_region(player, 'Skull 2 West Lobby', 'Skull Woods', ['Skull Woods - West Lobby Pot Key'], ['Skull 2 West Lobby ES', 'Skull 2 West Lobby NW', 'Skull Woods Second Section Exit (West)']), + create_dungeon_region(player, 'Skull 2 West Lobby', 'Skull Woods', ['Skull Woods - West Lobby Pot Key'], ['Skull 2 West Lobby ES', 'Skull 2 West Lobby NW', 'Skull 2 West Lobby S']), create_dungeon_region(player, 'Skull X Room', 'Skull Woods', None, ['Skull X Room SW']), - create_dungeon_region(player, 'Skull 3 Lobby', 'Skull Woods', None, ['Skull 3 Lobby NW', 'Skull 3 Lobby EN', 'Skull Woods Final Section Exit']), + create_dungeon_region(player, 'Skull 3 Lobby', 'Skull Woods', None, ['Skull 3 Lobby NW', 'Skull 3 Lobby EN', 'Skull 3 Lobby SW']), create_dungeon_region(player, 'Skull East Bridge', 'Skull Woods', None, ['Skull East Bridge WN', 'Skull East Bridge WS']), create_dungeon_region(player, 'Skull West Bridge Nook', 'Skull Woods', ['Skull Woods - Bridge Room'], ['Skull West Bridge Nook ES']), create_dungeon_region(player, 'Skull Star Pits', 'Skull Woods', None, ['Skull Star Pits SW', 'Skull Star Pits ES']), @@ -457,7 +486,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Skull Boss', 'Skull Woods', ['Skull Woods - Boss', 'Skull Woods - Prize']), # tt - create_dungeon_region(player, 'Thieves Lobby', 'Thieves\' Town', ['Thieves\' Town - Map Chest'], ['Thieves Town Exit', 'Thieves Lobby N Edge', 'Thieves Lobby NE Edge', 'Thieves Lobby E']), + create_dungeon_region(player, 'Thieves Lobby', 'Thieves\' Town', ['Thieves\' Town - Map Chest'], ['Thieves Lobby S', 'Thieves Lobby N Edge', 'Thieves Lobby NE Edge', 'Thieves Lobby E']), create_dungeon_region(player, 'Thieves Ambush', 'Thieves\' Town', ['Thieves\' Town - Ambush Chest'], ['Thieves Ambush S Edge', 'Thieves Ambush SE Edge', 'Thieves Ambush ES Edge', 'Thieves Ambush EN Edge', 'Thieves Ambush E']), create_dungeon_region(player, 'Thieves Rail Ledge', 'Thieves\' Town', None, ['Thieves Rail Ledge NW', 'Thieves Rail Ledge W', 'Thieves Rail Ledge Drop Down']), create_dungeon_region(player, 'Thieves BK Corner', 'Thieves\' Town', None, ['Thieves BK Corner WN Edge', 'Thieves BK Corner WS Edge', 'Thieves BK Corner S Edge', 'Thieves BK Corner SW Edge', 'Thieves BK Corner NE']), @@ -483,14 +512,15 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Thieves Basement Block', 'Thieves\' Town', None, ['Thieves Basement Block Up Stairs', 'Thieves Basement Block WN', 'Thieves Basement Block Path']), create_dungeon_region(player, 'Thieves Blocked Entry', 'Thieves\' Town', None, ['Thieves Blocked Entry Path', 'Thieves Blocked Entry SW']), create_dungeon_region(player, 'Thieves Lonely Zazak', 'Thieves\' Town', None, ['Thieves Lonely Zazak WS', 'Thieves Lonely Zazak ES', 'Thieves Lonely Zazak NW']), - create_dungeon_region(player, 'Thieves Blind\'s Cell', 'Thieves\' Town', ['Thieves\' Town - Blind\'s Cell', 'Suspicious Maiden'], ['Thieves Blind\'s Cell WS']), + create_dungeon_region(player, "Thieves Blind's Cell", 'Thieves\' Town', None, ["Thieves Blind's Cell WS", "Thieves Blind's Cell Door"]), + create_dungeon_region(player, "Thieves Blind's Cell Interior", 'Thieves\' Town', ['Thieves\' Town - Blind\'s Cell', 'Suspicious Maiden'], ["Thieves Blind's Cell Exit"]), create_dungeon_region(player, 'Thieves Conveyor Bridge', 'Thieves\' Town', None, ['Thieves Conveyor Bridge EN', 'Thieves Conveyor Bridge ES', 'Thieves Conveyor Bridge WS', 'Thieves Conveyor Bridge Block Path']), create_dungeon_region(player, 'Thieves Conveyor Block', 'Thieves\' Town', None, ['Thieves Conveyor Block Path', 'Thieves Conveyor Block WN']), create_dungeon_region(player, 'Thieves Big Chest Room', 'Thieves\' Town', ['Thieves\' Town - Big Chest'], ['Thieves Big Chest Room ES']), create_dungeon_region(player, 'Thieves Trap', 'Thieves\' Town', None, ['Thieves Trap EN']), # ice - create_dungeon_region(player, 'Ice Lobby', 'Ice Palace', None, ['Ice Palace Exit', 'Ice Lobby WS']), + create_dungeon_region(player, 'Ice Lobby', 'Ice Palace', None, ['Ice Lobby SE', 'Ice Lobby WS']), create_dungeon_region(player, 'Ice Jelly Key', 'Ice Palace', ['Ice Palace - Jelly Key Drop'], ['Ice Jelly Key ES', 'Ice Jelly Key Down Stairs']), create_dungeon_region(player, 'Ice Floor Switch', 'Ice Palace', None, ['Ice Floor Switch Up Stairs', 'Ice Floor Switch ES']), create_dungeon_region(player, 'Ice Cross Left', 'Ice Palace', None, ['Ice Cross Left WS', 'Ice Cross Left Push Block']), @@ -538,7 +568,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Ice Boss', 'Ice Palace', ['Ice Palace - Boss', 'Ice Palace - Prize']), # mire - create_dungeon_region(player, 'Mire Lobby', 'Misery Mire', None, ['Misery Mire Exit', 'Mire Lobby Gap']), + create_dungeon_region(player, 'Mire Lobby', 'Misery Mire', None, ['Mire Lobby S', 'Mire Lobby Gap']), create_dungeon_region(player, 'Mire Post-Gap', 'Misery Mire', None, ['Mire Post-Gap Gap', 'Mire Post-Gap Down Stairs']), create_dungeon_region(player, 'Mire 2', 'Misery Mire', None, ['Mire 2 Up Stairs', 'Mire 2 NE']), create_dungeon_region(player, 'Mire Hub', 'Misery Mire', None, ['Mire Hub SE', 'Mire Hub ES', 'Mire Hub E', 'Mire Hub NE', 'Mire Hub WN', 'Mire Hub WS', 'Mire Hub Upper Blue Barrier', 'Mire Hub Lower Blue Barrier']), @@ -595,7 +625,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'Mire Boss', 'Misery Mire', ['Misery Mire - Boss', 'Misery Mire - Prize'], ['Mire Boss SW']), # tr - create_dungeon_region(player, 'TR Main Lobby', 'Turtle Rock', None, ['TR Main Lobby Gap', 'Turtle Rock Exit (Front)']), + create_dungeon_region(player, 'TR Main Lobby', 'Turtle Rock', None, ['TR Main Lobby Gap', 'TR Main Lobby SE']), create_dungeon_region(player, 'TR Lobby Ledge', 'Turtle Rock', None, ['TR Lobby Ledge NE', 'TR Lobby Ledge Gap']), create_dungeon_region(player, 'TR Compass Room', 'Turtle Rock', ['Turtle Rock - Compass Chest'], ['TR Compass Room NW']), create_dungeon_region(player, 'TR Hub', 'Turtle Rock', None, ['TR Hub SW', 'TR Hub SE', 'TR Hub ES', 'TR Hub EN', 'TR Hub NW', 'TR Hub NE']), @@ -617,8 +647,8 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'TR Dodgers', 'Turtle Rock', None, ['TR Dodgers WN', 'TR Dodgers SE', 'TR Dodgers NE']), create_dungeon_region(player, 'TR Big View', 'Turtle Rock', None, ['TR Big View WS']), create_dungeon_region(player, 'TR Big Chest', 'Turtle Rock', ['Turtle Rock - Big Chest'], ['TR Big Chest Gap', 'TR Big Chest NE']), - create_dungeon_region(player, 'TR Big Chest Entrance', 'Turtle Rock', None, ['Turtle Rock Ledge Exit (East)', 'TR Big Chest Entrance Gap']), - create_dungeon_region(player, 'TR Lazy Eyes', 'Turtle Rock', None, ['Turtle Rock Ledge Exit (West)', 'TR Lazy Eyes ES']), + create_dungeon_region(player, 'TR Big Chest Entrance', 'Turtle Rock', None, ['TR Big Chest Entrance SE', 'TR Big Chest Entrance Gap']), + create_dungeon_region(player, 'TR Lazy Eyes', 'Turtle Rock', None, ['TR Lazy Eyes SE', 'TR Lazy Eyes ES']), create_dungeon_region(player, 'TR Dash Room', 'Turtle Rock', None, ['TR Dash Room SW', 'TR Dash Room ES', 'TR Dash Room NW']), create_dungeon_region(player, 'TR Tongue Pull', 'Turtle Rock', None, ['TR Tongue Pull WS', 'TR Tongue Pull NE']), create_dungeon_region(player, 'TR Rupees', 'Turtle Rock', None, ['TR Rupees SE']), @@ -627,14 +657,14 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'TR Dash Bridge', 'Turtle Rock', None, ['TR Dash Bridge NW', 'TR Dash Bridge SW', 'TR Dash Bridge WS']), create_dungeon_region(player, 'TR Eye Bridge', 'Turtle Rock', ['Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'], - ['Turtle Rock Isolated Ledge Exit', 'TR Eye Bridge NW']), + ['TR Eye Bridge SW', 'TR Eye Bridge NW']), create_dungeon_region(player, 'TR Crystal Maze', 'Turtle Rock', None, ['TR Crystal Maze ES', 'TR Crystal Maze Forwards Path']), create_dungeon_region(player, 'TR Crystal Maze End', 'Turtle Rock', None, ['TR Crystal Maze Blue Path', 'TR Crystal Maze Cane Path', 'TR Crystal Maze North Stairs']), create_dungeon_region(player, 'TR Final Abyss', 'Turtle Rock', None, ['TR Final Abyss South Stairs', 'TR Final Abyss NW']), create_dungeon_region(player, 'TR Boss', 'Turtle Rock', ['Turtle Rock - Boss', 'Turtle Rock - Prize'], ['TR Boss SW']), # gt - create_dungeon_region(player, 'GT Lobby', 'Ganon\'s Tower', None, ['GT Lobby Left Down Stairs', 'GT Lobby Up Stairs', 'GT Lobby Right Down Stairs', inv_flag and 'Inverted Ganons Tower Exit' or 'Ganons Tower Exit']), + create_dungeon_region(player, 'GT Lobby', 'Ganon\'s Tower', None, ['GT Lobby Left Down Stairs', 'GT Lobby Up Stairs', 'GT Lobby Right Down Stairs', 'GT Lobby S']), create_dungeon_region(player, 'GT Bob\'s Torch', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Torch'], ['GT Torch Up Stairs', 'GT Torch WN', 'GT Torch EN', 'GT Torch SW']), create_dungeon_region(player, 'GT Hope Room', 'Ganon\'s Tower', ['Ganons Tower - Hope Room - Left', 'Ganons Tower - Hope Room - Right'], ['GT Hope Room Up Stairs', 'GT Hope Room WN', 'GT Hope Room EN']), create_dungeon_region(player, 'GT Big Chest', 'Ganon\'s Tower', ['Ganons Tower - Big Chest'], ['GT Big Chest NW', 'GT Big Chest SW']), @@ -653,7 +683,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'GT Hookshot East Platform', 'Ganon\'s Tower', None, ['GT Hookshot EN', 'GT Hookshot East-North Path', 'GT Hookshot East-South Path']), create_dungeon_region(player, 'GT Hookshot North Platform', 'Ganon\'s Tower', None, ['GT Hookshot NW', 'GT Hookshot North-East Path', 'GT Hookshot North-South Path']), create_dungeon_region(player, 'GT Hookshot South Platform', 'Ganon\'s Tower', None, ['GT Hookshot ES', 'GT Hookshot South-East Path', 'GT Hookshot South-North Path', 'GT Hookshot Platform Blue Barrier']), - create_dungeon_region(player, 'GT Hookshot South Entry', 'Ganon\'s Tower', None, ['GT Hookshot SW', 'GT Hookshot Entry Blue Barrier']), + create_dungeon_region(player, 'GT Hookshot South Entry', 'Ganon\'s Tower', None, ['GT Hookshot SW', 'GT Hookshot Entry Blue Barrier', 'GT Hookshot Entry Boomerang Path']), create_dungeon_region(player, 'GT Map Room', 'Ganon\'s Tower', ['Ganons Tower - Map Chest'], ['GT Map Room WS']), create_dungeon_region(player, 'GT Double Switch Entry', 'Ganon\'s Tower', None, ['GT Double Switch NW', 'GT Double Switch Orange Barrier', 'GT Double Switch Orange Barrier 2']), create_dungeon_region(player, 'GT Double Switch Switches', 'Ganon\'s Tower', None, ['GT Double Switch Blue Path', 'GT Double Switch Orange Path']), @@ -709,7 +739,7 @@ def create_dungeon_regions(world, player): create_dungeon_region(player, 'GT Staredown', 'Ganon\'s Tower', None, ['GT Staredown WS', 'GT Staredown Up Ladder']), create_dungeon_region(player, 'GT Falling Torches', 'Ganon\'s Tower', None, ['GT Falling Torches Down Ladder', 'GT Falling Torches NE', 'GT Falling Torches Hole']), create_dungeon_region(player, 'GT Mini Helmasaur Room', 'Ganon\'s Tower', ['Ganons Tower - Mini Helmasaur Room - Left', - 'Ganons Tower - Mini Helmasaur Room - Right', 'Ganons Tower - Mini Helmasuar Key Drop'], ['GT Mini Helmasaur Room SE', 'GT Mini Helmasaur Room WN']), + 'Ganons Tower - Mini Helmasaur Room - Right', 'Ganons Tower - Mini Helmasaur Key Drop'], ['GT Mini Helmasaur Room SE', 'GT Mini Helmasaur Room WN']), create_dungeon_region(player, 'GT Bomb Conveyor', 'Ganon\'s Tower', None, ['GT Bomb Conveyor EN', 'GT Bomb Conveyor SW']), create_dungeon_region(player, 'GT Crystal Circles', 'Ganon\'s Tower', ['Ganons Tower - Pre-Moldorm Chest'], ['GT Crystal Circles NW', 'GT Crystal Circles SW']), create_dungeon_region(player, 'GT Left Moldorm Ledge', 'Ganon\'s Tower', None, ['GT Left Moldorm Ledge Drop Down', 'GT Left Moldorm Ledge NW']), @@ -758,15 +788,22 @@ def create_dungeon_regions(world, player): world.get_region('GT Crystal Circles', player).crystal_switch = True +def create_menu_region(player, name, locations=None, exits=None): + return _create_region(player, name, RegionType.Menu, 'Menu', locations, exits) + + def create_lw_region(player, name, locations=None, exits=None): return _create_region(player, name, RegionType.LightWorld, 'Light World', locations, exits) + def create_dw_region(player, name, locations=None, exits=None): return _create_region(player, name, RegionType.DarkWorld, 'Dark World', locations, exits) + def create_cave_region(player, name, hint='Hyrule', locations=None, exits=None): return _create_region(player, name, RegionType.Cave, hint, locations, exits) + def create_dungeon_region(player, name, hint='Hyrule', locations=None, exits=None): return _create_region(player, name, RegionType.Dungeon, hint, locations, exits) @@ -780,9 +817,9 @@ def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None for exit in exits: ret.exits.append(Entrance(player, exit, ret)) for location in locations: - if location in key_only_locations: - ko_hint = 'in a pot' if 'Pot' in location else 'with an enemy' - ret.locations.append(Location(player, location, None, False, ko_hint, ret, key_only_locations[location])) + if location in key_drop_data: + ko_hint = key_drop_data[location][2] + ret.locations.append(Location(player, location, None, False, ko_hint, ret, key_drop_data[location][3])) else: address, player_address, crystal, hint_text = location_table[location] ret.locations.append(Location(player, location, address, crystal, hint_text, ret, None, player_address)) @@ -831,6 +868,29 @@ def create_shops(world, player): for index, item in enumerate(inventory): shop.add_inventory(index, *item) + +def adjust_locations(world, player): + if world.keydropshuffle[player]: + for location in key_drop_data.keys(): + loc = world.get_location(location, player) + key_item = loc.item + key_item.location = None + + loc.forced_item = None + loc.item = None + loc.event = False + loc.address = key_drop_data[location][1] + loc.player_address = key_drop_data[location][0] + + item_dungeon = key_item.name.split('(')[1][:-1] + item_dungeon = 'Hyrule Castle' if item_dungeon == 'Escape' else item_dungeon + dungeon = world.get_dungeon(item_dungeon, player) + if key_item.smallkey and not world.retro[player]: + dungeon.small_keys.append(key_item) + elif key_item.bigkey: + dungeon.big_key = key_item + + # (type, room_id, shopkeeper, custom, locked, [items]) # item = (item, price, max=0, replacement=None, replacement_price=0) _basic_shop_defaults = [('Red Potion', 150), ('Small Heart', 10), ('Bombs (10)', 50)] @@ -849,40 +909,40 @@ shop_table = { 'Capacity Upgrade': (0x0115, ShopType.UpgradeShop, 0x04, True, True, [('Bomb Upgrade (+5)', 100, 7), ('Arrow Upgrade (+5)', 100, 7)]) } -key_only_locations = { - 'Hyrule Castle - Map Guard Key Drop': 'Small Key (Escape)', - 'Hyrule Castle - Boomerang Guard Key Drop': 'Small Key (Escape)', - 'Hyrule Castle - Key Rat Key Drop': 'Small Key (Escape)', - 'Hyrule Castle - Big Key Drop': 'Big Key (Escape)', - 'Eastern Palace - Dark Square Pot Key': 'Small Key (Eastern Palace)', - 'Eastern Palace - Dark Eyegore Key Drop': 'Small Key (Eastern Palace)', - 'Desert Palace - Desert Tiles 1 Pot Key': 'Small Key (Desert Palace)', - 'Desert Palace - Beamos Hall Pot Key': 'Small Key (Desert Palace)', - 'Desert Palace - Desert Tiles 2 Pot Key': 'Small Key (Desert Palace)', - 'Castle Tower - Dark Archer Key Drop': 'Small Key (Agahnims Tower)', - 'Castle Tower - Circle of Pots Key Drop': 'Small Key (Agahnims Tower)', - 'Swamp Palace - Pot Row Pot Key': 'Small Key (Swamp Palace)', - 'Swamp Palace - Trench 1 Pot Key': 'Small Key (Swamp Palace)', - 'Swamp Palace - Hookshot Pot Key': 'Small Key (Swamp Palace)', - 'Swamp Palace - Trench 2 Pot Key': 'Small Key (Swamp Palace)', - 'Swamp Palace - Waterway Pot Key': 'Small Key (Swamp Palace)', - 'Skull Woods - West Lobby Pot Key': 'Small Key (Skull Woods)', - 'Skull Woods - Spike Corner Key Drop': 'Small Key (Skull Woods)', - 'Thieves\' Town - Hallway Pot Key': 'Small Key (Thieves Town)', - 'Thieves\' Town - Spike Switch Pot Key': 'Small Key (Thieves Town)', - 'Ice Palace - Jelly Key Drop': 'Small Key (Ice Palace)', - 'Ice Palace - Conveyor Key Drop': 'Small Key (Ice Palace)', - 'Ice Palace - Hammer Block Key Drop': 'Small Key (Ice Palace)', - 'Ice Palace - Many Pots Pot Key': 'Small Key (Ice Palace)', - 'Misery Mire - Spikes Pot Key': 'Small Key (Misery Mire)', - 'Misery Mire - Fishbone Pot Key': 'Small Key (Misery Mire)', - 'Misery Mire - Conveyor Crystal Key Drop': 'Small Key (Misery Mire)', - 'Turtle Rock - Pokey 1 Key Drop': 'Small Key (Turtle Rock)', - 'Turtle Rock - Pokey 2 Key Drop': 'Small Key (Turtle Rock)', - 'Ganons Tower - Conveyor Cross Pot Key': 'Small Key (Ganons Tower)', - 'Ganons Tower - Double Switch Pot Key': 'Small Key (Ganons Tower)', - 'Ganons Tower - Conveyor Star Pits Pot Key': 'Small Key (Ganons Tower)', - 'Ganons Tower - Mini Helmasuar Key Drop': 'Small Key (Ganons Tower)' +key_drop_data = { + 'Hyrule Castle - Map Guard Key Drop': [0x140036, 0x140037, 'in Hyrule Castle', 'Small Key (Escape)'], + 'Hyrule Castle - Boomerang Guard Key Drop': [0x140033, 0x140034, 'in Hyrule Castle', 'Small Key (Escape)'], + 'Hyrule Castle - Key Rat Key Drop': [0x14000c, 0x14000d, 'in Hyrule Castle', 'Small Key (Escape)'], + 'Hyrule Castle - Big Key Drop': [0x14003c, 0x14003d, 'in Hyrule Castle', 'Big Key (Escape)'], + 'Eastern Palace - Dark Square Pot Key': [0x14005a, 0x14005b, 'in Eastern Palace', 'Small Key (Eastern Palace)'], + 'Eastern Palace - Dark Eyegore Key Drop': [0x140048, 0x140049, 'in Eastern Palace', 'Small Key (Eastern Palace)'], + 'Desert Palace - Desert Tiles 1 Pot Key': [0x140030, 0x140031, 'in Desert Palace', 'Small Key (Desert Palace)'], + 'Desert Palace - Beamos Hall Pot Key': [0x14002a, 0x14002b, 'in Desert Palace', 'Small Key (Desert Palace)'], + 'Desert Palace - Desert Tiles 2 Pot Key': [0x140027, 0x140028, 'in Desert Palace', 'Small Key (Desert Palace)'], + 'Castle Tower - Dark Archer Key Drop': [0x140060, 0x140061, 'in Castle Tower', 'Small Key (Agahnims Tower)'], + 'Castle Tower - Circle of Pots Key Drop': [0x140051, 0x140052, 'in Castle Tower', 'Small Key (Agahnims Tower)'], + 'Swamp Palace - Pot Row Pot Key': [0x140018, 0x140019, 'in Swamp Palace', 'Small Key (Swamp Palace)'], + 'Swamp Palace - Trench 1 Pot Key': [0x140015, 0x140016, 'in Swamp Palace', 'Small Key (Swamp Palace)'], + 'Swamp Palace - Hookshot Pot Key': [0x140012, 0x140013, 'in Swamp Palace', 'Small Key (Swamp Palace)'], + 'Swamp Palace - Trench 2 Pot Key': [0x14000f, 0x140010, 'in Swamp Palace', 'Small Key (Swamp Palace)'], + 'Swamp Palace - Waterway Pot Key': [0x140009, 0x14000a, 'in Swamp Palace', 'Small Key (Swamp Palace)'], + 'Skull Woods - West Lobby Pot Key': [0x14002d, 0x14002e, 'in Skull Woods', 'Small Key (Skull Woods)'], + 'Skull Woods - Spike Corner Key Drop': [0x14001b, 0x14001c, 'near Mothula', 'Small Key (Skull Woods)'], + "Thieves' Town - Hallway Pot Key": [0x14005d, 0x14005e, "in Thieves' Town", 'Small Key (Thieves Town)'], + "Thieves' Town - Spike Switch Pot Key": [0x14004e, 0x14004f, "in Thieves' Town", 'Small Key (Thieves Town)'], + 'Ice Palace - Jelly Key Drop': [0x140003, 0x140004, 'in Ice Palace', 'Small Key (Ice Palace)'], + 'Ice Palace - Conveyor Key Drop': [0x140021, 0x140022, 'in Ice Palace', 'Small Key (Ice Palace)'], + 'Ice Palace - Hammer Block Key Drop': [0x140024, 0x140025, 'in Ice Palace', 'Small Key (Ice Palace)'], + 'Ice Palace - Many Pots Pot Key': [0x140045, 0x140046, 'in Ice Palace', 'Small Key (Ice Palace)'], + 'Misery Mire - Spikes Pot Key': [0x140054, 0x140055 , 'in Misery Mire', 'Small Key (Misery Mire)'], + 'Misery Mire - Fishbone Pot Key': [0x14004b, 0x14004c, 'in forgotten Mire', 'Small Key (Misery Mire)'], + 'Misery Mire - Conveyor Crystal Key Drop': [0x140063, 0x140064 , 'in Misery Mire', 'Small Key (Misery Mire)'], + 'Turtle Rock - Pokey 1 Key Drop': [0x140057, 0x140058, 'in Turtle Rock', 'Small Key (Turtle Rock)'], + 'Turtle Rock - Pokey 2 Key Drop': [0x140006, 0x140007, 'in Turtle Rock', 'Small Key (Turtle Rock)'], + 'Ganons Tower - Conveyor Cross Pot Key': [0x14003f, 0x140040, "in Ganon's Tower", 'Small Key (Ganons Tower)'], + 'Ganons Tower - Double Switch Pot Key': [0x140042, 0x140043, "in Ganon's Tower", 'Small Key (Ganons Tower)'], + 'Ganons Tower - Conveyor Star Pits Pot Key': [0x140039, 0x14003a, "in Ganon's Tower", 'Small Key (Ganons Tower)'], + 'Ganons Tower - Mini Helmasaur Key Drop': [0x14001e, 0x14001f, "atop Ganon's Tower", 'Small Key (Ganons Tower)'] } dungeon_events = [ @@ -1143,3 +1203,8 @@ location_table = {'Mushroom': (0x180013, 0x186338, False, 'in the woods'), 'Ice Palace - Prize': ([0x120A4, 0x53F5A, 0x53F5B, 0x180059, 0x180073, 0xC705], None, True, 'Ice Palace'), 'Misery Mire - Prize': ([0x120A2, 0x53F48, 0x53F49, 0x180057, 0x180075, 0xC703], None, True, 'Misery Mire'), 'Turtle Rock - Prize': ([0x120A7, 0x53F24, 0x53F25, 0x18005C, 0x180079, 0xC708], None, True, 'Turtle Rock')} + +lookup_id_to_name = {data[0]: name for name, data in location_table.items() if type(data[0]) == int} +lookup_id_to_name = {**lookup_id_to_name, **{data[1]: name for name, data in key_drop_data.items()}} +lookup_name_to_id = {name: data[0] for name, data in location_table.items() if type(data[0]) == int} +lookup_name_to_id = {**lookup_name_to_id, **{name: data[1] for name, data in key_drop_data.items()}} diff --git a/Rom.py b/Rom.py index 3af7222f..7cef05f5 100644 --- a/Rom.py +++ b/Rom.py @@ -1,5 +1,6 @@ import bisect import io +import itertools import json import hashlib import logging @@ -8,11 +9,15 @@ import random import struct import sys import subprocess +import bps.apply +import bps.io -from BaseClasses import CollectionState, ShopType, Region, Location, DoorType +from BaseClasses import CollectionState, ShopType, Region, Location, Door, DoorType, RegionType, PotItem from DoorShuffle import compass_data, DROptions, boss_indicator from Dungeons import dungeon_music_addresses +from KeyDoorShuffle import count_locations_exclude_logic from Regions import location_table +from RoomData import DoorKind from Text import MultiByteTextMapper, CompressedTextMapper, text_addresses, Credits, TextTable from Text import Uncle_texts, Ganon1_texts, TavernMan_texts, Sahasrahla2_texts, Triforce_texts, Blind_texts, BombShop2_texts, junk_texts from Text import KingsReturn_texts, Sanctuary_texts, Kakariko_texts, Blacksmiths_texts, DeathMountain_texts, LostWoods_texts, WishingWell_texts, DesertPalace_texts, MountainTower_texts, LinksHouse_texts, Lumberjacks_texts, SickKid_texts, FluteBoy_texts, Zora_texts, MagicShop_texts, Sahasrahla_names @@ -22,7 +27,7 @@ from EntranceShuffle import door_addresses, exit_ids JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = 'b9e578ef0af231041070bd9049a55646' +RANDOMIZERBASEHASH = '30147375153cc57197805eddf38c2a23' class JsonRom(object): @@ -112,16 +117,16 @@ class LocalRom(object): if JAP10HASH != basemd5.hexdigest(): logging.getLogger('').warning('Supplied Base Rom does not match known MD5 for JAP(1.0) release. Will try to patch anyway.') + orig_buffer = self.buffer.copy() + # extend to 2MB self.buffer.extend(bytearray([0x00] * (0x200000 - len(self.buffer)))) # load randomizer patches - with open(local_path('data/base2current.json'), 'r') as stream: - patches = json.load(stream) - for patch in patches: - if isinstance(patch, dict): - for baseaddress, values in patch.items(): - self.write_bytes(int(baseaddress), values) + with open(local_path('data/base2current.bps'), 'rb') as stream: + bps.apply.apply_to_bytearrays(bps.io.read_bps(stream), orig_buffer, self.buffer) + + self.create_json_patch(orig_buffer) # verify md5 patchedmd5 = hashlib.md5() @@ -129,6 +134,29 @@ class LocalRom(object): if RANDOMIZERBASEHASH != patchedmd5.hexdigest(): raise RuntimeError('Provided Base Rom unsuitable for patching. Please provide a JAP(1.0) "Zelda no Densetsu - Kamigami no Triforce (Japan).sfc" rom to use as a base.') + def create_json_patch(self, orig_buffer): + # extend to 2MB + orig_buffer.extend(bytearray([0x00] * (len(self.buffer) - len(orig_buffer)))) + + i = 0 + patches = [] + + while i < len(self.buffer): + if self.buffer[i] == orig_buffer[i]: + i += 1 + continue + + patch_start = i + patch_contents = [] + while self.buffer[i] != orig_buffer[i]: + patch_contents.append(self.buffer[i]) + i += 1 + patches.append({patch_start: patch_contents}) + + with open(local_path('data/base2current.json'), 'w') as fp: + json.dump(patches, fp, separators=(',', ':')) + + def write_crc(self): crc = (sum(self.buffer[:0x7FDC] + self.buffer[0x7FE0:]) + 0x01FE) & 0xFFFF inv = crc ^ 0xFFFF @@ -160,7 +188,7 @@ def read_rom(stream): buffer = buffer[0x200:] return buffer -def patch_enemizer(world, player, rom, baserom_path, enemizercli, shufflepots, random_sprite_on_hit): +def patch_enemizer(world, player, rom, baserom_path, enemizercli, random_sprite_on_hit): baserom_path = os.path.abspath(baserom_path) basepatch_path = os.path.abspath(local_path(os.path.join("data","base2current.json"))) enemizer_basepatch_path = os.path.join(os.path.dirname(enemizercli), "enemizerBasePatch.json") @@ -207,7 +235,7 @@ def patch_enemizer(world, player, rom, baserom_path, enemizercli, shufflepots, r 'GrayscaleMode': False, 'GenerateSpoilers': False, 'RandomizeLinkSpritePalette': False, - 'RandomizePots': shufflepots, + 'RandomizePots': False, 'ShuffleMusic': False, 'BootlegMagic': True, 'CustomBosses': False, @@ -256,14 +284,23 @@ def patch_enemizer(world, player, rom, baserom_path, enemizercli, shufflepots, r with open(options_path, 'w') as f: json.dump(options, f) - subprocess.check_call([os.path.abspath(enemizercli), - '--rom', baserom_path, - '--seed', str(world.rom_seeds[player]), - '--base', basepatch_path, - '--randomizer', randopatch_path, - '--enemizer', options_path, - '--output', enemizer_output_path], - cwd=os.path.dirname(enemizercli), stdout=subprocess.DEVNULL) + try: + subprocess.run([os.path.abspath(enemizercli), + '--rom', baserom_path, + '--seed', str(world.rom_seeds[player]), + '--base', basepatch_path, + '--randomizer', randopatch_path, + '--enemizer', options_path, + '--output', enemizer_output_path], + cwd=os.path.dirname(enemizercli), + check=True, + capture_output=True) + except subprocess.CalledProcessError as e: + from Main import EnemizerError + enemizerMsg = world.fish.translate("cli","cli","Enemizer returned exit code: ") + str(e.returncode) + "\n" + enemizerMsg += world.fish.translate("cli","cli","enemizer.nothing.applied") + logging.error(f'Enemizer error output: {e.stderr.decode("utf-8")}\n') + raise EnemizerError(enemizerMsg) with open(enemizer_basepatch_path, 'r') as f: for patch in json.load(f): @@ -503,7 +540,7 @@ def patch_rom(world, rom, player, team, enemized): if not location.crystal: if location.item is not None: - # Keys in their native dungeon should use the orignal item code for keys + # Keys in their native dungeon should use the original item code for keys if location.parent_region.dungeon: if location.parent_region.dungeon.is_dungeon_item(location.item): if location.item.bigkey: @@ -541,6 +578,9 @@ def patch_rom(world, rom, player, team, enemized): if world.mapshuffle[player]: rom.write_byte(0x155C9, random.choice([0x11, 0x16])) # Randomize GT music too with map shuffle + if world.pot_contents[player]: + write_pots_to_rom(rom, world.pot_contents[player]) + # patch entrance/exits/holes for region in world.regions: for exit in region.exits: @@ -596,43 +636,62 @@ def patch_rom(world, rom, player, team, enemized): # setup dr option flags based on experimental, etc. dr_flags = DROptions.Eternal_Mini_Bosses if world.doorShuffle[player] == 'vanilla' else DROptions.Town_Portal - if world.experimental[player]: + if world.doorShuffle[player] == 'crossed': dr_flags |= DROptions.Map_Info + if world.experimental[player] and world.goal[player] != 'triforcehunt': dr_flags |= DROptions.Debug + if world.doorShuffle[player] == 'crossed' and world.logic[player] != 'nologic'\ + and world.mixed_travel[player] == 'prevent': + dr_flags |= DROptions.Rails + if world.standardize_palettes[player] == 'original': + dr_flags |= DROptions.OriginalPalettes + + + # fix hc big key problems (map and compass too) + if world.doorShuffle[player] == 'crossed' or world.keydropshuffle[player]: + rom.write_byte(0x151f1, 2) + rom.write_byte(0x15270, 2) + sanctuary = world.get_region('Sanctuary', player) + rom.write_byte(0x1597b, sanctuary.dungeon.dungeon_id*2) + update_compasses(rom, world, player) # patch doors if world.doorShuffle[player] == 'crossed': rom.write_byte(0x138002, 2) for name, layout in world.key_layout[player].items(): offset = compass_data[name][4]//2 - rom.write_byte(0x13f01c+offset, layout.max_chests + layout.max_drops) - rom.write_byte(0x13f02a+offset, layout.max_chests) + if world.retro[player]: + rom.write_byte(0x13f030+offset, layout.max_chests + layout.max_drops) + else: + rom.write_byte(0x13f020+offset, layout.max_chests + layout.max_drops) # not currently used + rom.write_byte(0x13f030+offset, layout.max_chests) builder = world.dungeon_layouts[player][name] - rom.write_byte(0x13f070+offset, builder.location_cnt % 10) - rom.write_byte(0x13f07e+offset, builder.location_cnt // 10) + rom.write_byte(0x13f080+offset, builder.location_cnt % 10) + rom.write_byte(0x13f090+offset, builder.location_cnt // 10) + rom.write_byte(0x13f0a0+offset, builder.location_cnt) bk_status = 1 if builder.bk_required else 0 bk_status = 2 if builder.bk_provided else bk_status - rom.write_byte(0x13f038+offset*2, bk_status) - rom.write_byte(0x151f1, 2) - rom.write_byte(0x15270, 2) - rom.write_byte(0x1597b, 2) - if compass_code_good(rom): - update_compasses(rom, world, player) - else: - logging.getLogger('').warning('Randomizer rom update! Compasses in crossed are borken') + rom.write_byte(0x13f040+offset*2, bk_status) + if player in world.sanc_portal.keys(): + rom.write_byte(0x159a6, world.sanc_portal[player].ent_offset) + sanc_region = world.sanc_portal[player].door.entrance.parent_region + if sanc_region.is_dark_world and not sanc_region.is_light_world: + rom.write_byte(0x13ff00, 1) + for room in world.rooms: + if room.player == player and room.palette is not None: + rom.write_byte(0x13f200+room.index, room.palette) if world.doorShuffle[player] == 'basic': rom.write_byte(0x138002, 1) for door in world.doors: - if door.dest is not None and door.player == player and door.type in [DoorType.Normal, DoorType.SpiralStairs, - DoorType.Open, DoorType.StraightStairs]: + if door.dest is not None and isinstance(door.dest, Door) and\ + door.player == player and door.type in [DoorType.Normal, DoorType.SpiralStairs, + DoorType.Open, DoorType.StraightStairs]: rom.write_bytes(door.getAddress(), door.dest.getTarget(door)) - for room in world.rooms: - if room.player == player and room.modified: - rom.write_bytes(room.address(), room.rom_data()) for paired_door in world.paired_doors[player]: rom.write_bytes(paired_door.address_a(world, player), paired_door.rom_data_a(world, player)) rom.write_bytes(paired_door.address_b(world, player), paired_door.rom_data_b(world, player)) if world.doorShuffle[player] != 'vanilla': + for builder in world.dungeon_layouts[player].values(): if builder.pre_open_stonewall: if builder.pre_open_stonewall.name == 'Desert Wall Slide NW': @@ -640,7 +699,7 @@ def patch_rom(world, rom, player, team, enemized): for name, pair in boss_indicator.items(): dungeon_id, boss_door = pair opposite_door = world.get_door(boss_door, player).dest - if opposite_door.roomIndex > -1: + if opposite_door and opposite_door.roomIndex > -1: dungeon_name = opposite_door.entrance.parent_region.dungeon.name dungeon_id = boss_indicator[dungeon_name][0] rom.write_byte(0x13f000+dungeon_id, opposite_door.roomIndex) @@ -650,12 +709,72 @@ def patch_rom(world, rom, player, team, enemized): if dr_flags & DROptions.Town_Portal and world.mode[player] == 'inverted': rom.write_byte(0x138006, 1) - # fix skull woods exit, if not fixed during exit patching + for portal in world.dungeon_portals[player]: + if not portal.default: + offset = portal.ent_offset + rom.write_byte(0x14577 + offset*2, portal.current_room()) + rom.write_bytes(0x14681 + offset*8, portal.relative_coords()) + rom.write_bytes(0x14aa9 + offset*2, portal.scroll_x()) + rom.write_bytes(0x14bb3 + offset*2, portal.scroll_y()) + rom.write_bytes(0x14cbd + offset*2, portal.link_y()) + rom.write_bytes(0x14dc7 + offset*2, portal.link_x()) + rom.write_bytes(0x14fdb + offset*2, portal.camera_x()) + rom.write_byte(0x152f9 + offset, portal.bg_setting()) + rom.write_byte(0x1537e + offset, portal.hv_scroll()) + rom.write_byte(0x15403 + offset, portal.scroll_quad()) + rom.write_byte(0x15aee + portal.exit_offset, portal.current_room()) + if portal.boss_exit_idx > -1: + rom.write_byte(0x7939 + portal.boss_exit_idx, portal.current_room()) + + # fix exits, if not fixed during exit patching if world.fix_skullwoods_exit[player] and world.shuffle[player] == 'vanilla': write_int16(rom, 0x15DB5 + 2 * exit_ids['Skull Woods Final Section Exit'][1], 0x00F8) + elif world.force_fix[player]['sw']: + write_int16(rom, 0x15DB5 + world.force_fix[player]['sw'].exit_offset, 0x00F8) + if world.force_fix[player]['pod']: + write_int16(rom, 0x15DB5 + world.force_fix[player]['pod'].exit_offset, 0x0640) + if world.force_fix[player]['tr']: + write_int16(rom, 0x15DB5 + world.force_fix[player]['tr'].exit_offset, 0x0134) + if world.force_fix[player]['gt']: + write_int16(rom, 0x15DB5 + world.force_fix[player]['gt'].exit_offset, 0x00A4) write_custom_shops(rom, world, player) + def credits_digit(num): + # top: $54 is 1, 55 2, etc , so 57=4, 5C=9 + # bot: $7A is 1, 7B is 2, etc so 7D=4, 82=9 (zero unknown...) + return 0x53+num, 0x79+num + + if world.keydropshuffle[player]: + rom.write_byte(0x140000, 1) + rom.write_byte(0x187010, 249) # dynamic credits + # collection rate address: 238C37 + mid_top, mid_bot = credits_digit(4) + last_top, last_bot = credits_digit(9) + # top half + rom.write_byte(0x118C53, mid_top) + rom.write_byte(0x118C54, last_top) + # bottom half + rom.write_byte(0x118C71, mid_bot) + rom.write_byte(0x118C72, last_bot) + + if world.keydropshuffle[player] or world.doorShuffle[player] != 'vanilla': + gt = world.dungeon_layouts[player]['Ganons Tower'] + gt_logic = world.key_logic[player]['Ganons Tower'] + total = 0 + for region in gt.master_sector.regions: + total += count_locations_exclude_logic(region.locations, gt_logic) + rom.write_byte(0x187012, total) # dynamic credits + # gt big key address: 238B59 + mid_top, mid_bot = credits_digit(total // 10) + last_top, last_bot = credits_digit(total % 10) + # top half + rom.write_byte(0x118B75, mid_top) + rom.write_byte(0x118B76, last_top) + # bottom half + rom.write_byte(0x118B93, mid_bot) + rom.write_byte(0x118B94, last_bot) + # patch medallion requirements if world.required_medallions[player][0] == 'Bombos': rom.write_byte(0x180022, 0x00) # requirement @@ -709,7 +828,7 @@ def patch_rom(world, rom, player, team, enemized): TRIFORCE_PIECE = ItemFactory('Triforce Piece', player).code GREEN_CLOCK = ItemFactory('Green Clock', player).code - rom.write_byte(0x18004F, 0x01) # Byrna Invulnerability: on + rom.write_byte(0x18004F, 0x01) # Byrna Invulnerability: on # handle difficulty_adjustments if world.difficulty_adjustments[player] == 'hard': @@ -1178,7 +1297,20 @@ def patch_rom(world, rom, player, team, enemized): rom.write_byte(0x18005F, world.crystals_needed_for_ganon[player]) # block HC upstairs doors in rain state in standard mode - rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" and world.shuffle[player] != 'vanilla' else 0x00) + prevent_rain = world.mode[player] == "standard" and world.shuffle[player] != 'vanilla' + rom.write_byte(0x18008A, 0x01 if prevent_rain else 0x00) + # block sanc door in rain state and the dungeon is not vanilla + rom.write_byte(0x13f0fa, 0x01 if world.mode[player] == "standard" and world.doorShuffle[player] != 'vanilla' else 0x00) + + if prevent_rain: + portals = [world.get_portal('Hyrule Castle East', player), world.get_portal('Hyrule Castle West', player)] + for idx, portal in enumerate(portals): + x = idx*2 + room_idx = portal.door.roomIndex + room = world.get_room(room_idx, player) + write_int16(rom, 0x13f0f0+x, room_idx) + rom.write_byte(0x13f0f6+x, room.position(portal.door).value) + rom.write_byte(0x13f0f7+x, room.kind(portal.door).value) rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle[player] else 0x00) | (0x02 if world.compassshuffle[player] else 0x00) @@ -1252,38 +1384,42 @@ def patch_rom(world, rom, player, team, enemized): rom.write_bytes(0x6D2FB, [0x00, 0x00, 0xf7, 0xff, 0x02, 0x0E]) rom.write_bytes(0x6D313, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) - rom.write_byte(0x18004E, 0) # Escape Fill (nothing) - write_int16(rom, 0x180183, 300) # Escape fill rupee bow - rom.write_bytes(0x180185, [0,0,0]) # Uncle respawn refills (magic, bombs, arrows) - rom.write_bytes(0x180188, [0,0,0]) # Zelda respawn refills (magic, bombs, arrows) - rom.write_bytes(0x18018B, [0,0,0]) # Mantle respawn refills (magic, bombs, arrows) + rom.write_byte(0x18004E, 0) # Escape Fill (nothing) + write_int16(rom, 0x180183, 300) # Escape fill rupee bow + rom.write_bytes(0x180185, [0, 0, 0]) # Uncle respawn refills (magic, bombs, arrows) + rom.write_bytes(0x180188, [0, 0, 0]) # Zelda respawn refills (magic, bombs, arrows) + rom.write_bytes(0x18018B, [0, 0, 0]) # Mantle respawn refills (magic, bombs, arrows) bow_max, bomb_max, magic_max = 0, 0, 0 + bow_small, magic_small = 0, 0 if world.mode[player] == 'standard': if uncle_location.item is not None and uncle_location.item.name in ['Bow', 'Progressive Bow']: - rom.write_byte(0x18004E, 1) # Escape Fill (arrows) - write_int16(rom, 0x180183, 300) # Escape fill rupee bow - rom.write_bytes(0x180185, [0,0,70]) # Uncle respawn refills (magic, bombs, arrows) - rom.write_bytes(0x180188, [0,0,10]) # Zelda respawn refills (magic, bombs, arrows) - rom.write_bytes(0x18018B, [0,0,10]) # Mantle respawn refills (magic, bombs, arrows) - bow_max = 70 + rom.write_byte(0x18004E, 1) # Escape Fill (arrows) + write_int16(rom, 0x180183, 300) # Escape fill rupee bow + rom.write_bytes(0x180185, [0, 0, 70]) # Uncle respawn refills (magic, bombs, arrows) + rom.write_bytes(0x180188, [0, 0, 10]) # Zelda respawn refills (magic, bombs, arrows) + rom.write_bytes(0x18018B, [0, 0, 10]) # Mantle respawn refills (magic, bombs, arrows) + bow_max, bow_small = 70, 10 elif uncle_location.item is not None and uncle_location.item.name in ['Bombs (10)']: - rom.write_byte(0x18004E, 2) # Escape Fill (bombs) - rom.write_bytes(0x180185, [0,50,0]) # Uncle respawn refills (magic, bombs, arrows) - rom.write_bytes(0x180188, [0,3,0]) # Zelda respawn refills (magic, bombs, arrows) - rom.write_bytes(0x18018B, [0,3,0]) # Mantle respawn refills (magic, bombs, arrows) + rom.write_byte(0x18004E, 2) # Escape Fill (bombs) + rom.write_bytes(0x180185, [0, 50, 0]) # Uncle respawn refills (magic, bombs, arrows) + rom.write_bytes(0x180188, [0, 3, 0]) # Zelda respawn refills (magic, bombs, arrows) + rom.write_bytes(0x18018B, [0, 3, 0]) # Mantle respawn refills (magic, bombs, arrows) bomb_max = 50 elif uncle_location.item is not None and uncle_location.item.name in ['Cane of Somaria', 'Cane of Byrna', 'Fire Rod']: - rom.write_byte(0x18004E, 4) # Escape Fill (magic) - rom.write_bytes(0x180185, [0x80,0,0]) # Uncle respawn refills (magic, bombs, arrows) - rom.write_bytes(0x180188, [0x20,0,0]) # Zelda respawn refills (magic, bombs, arrows) - rom.write_bytes(0x18018B, [0x20,0,0]) # Mantle respawn refills (magic, bombs, arrows) - magic_max = 0x80 + rom.write_byte(0x18004E, 4) # Escape Fill (magic) + rom.write_bytes(0x180185, [0x80, 0, 0]) # Uncle respawn refills (magic, bombs, arrows) + rom.write_bytes(0x180188, [0x20, 0, 0]) # Zelda respawn refills (magic, bombs, arrows) + rom.write_bytes(0x18018B, [0x20, 0, 0]) # Mantle respawn refills (magic, bombs, arrows) + magic_max, magic_small = 0x80, 0x20 if world.doorShuffle[player] == 'crossed': # Uncle respawn refills (magic, bombs, arrows) rom.write_bytes(0x180185, [max(0x20, magic_max), max(3, bomb_max), max(10, bow_max)]) rom.write_bytes(0x180188, [0x20, 3, 10]) # Zelda respawn refills (magic, bombs, arrows) rom.write_bytes(0x18018B, [0x20, 3, 10]) # Mantle respawn refills (magic, bombs, arrows) - + elif world.doorShuffle[player] == 'basic': # just in case a bomb is needed to get to a chest + rom.write_bytes(0x180185, [max(0x00, magic_max), max(3, bomb_max), max(0, bow_max)]) + rom.write_bytes(0x180188, [magic_small, 3, bow_small]) # Zelda respawn refills (magic, bombs, arrows) + rom.write_bytes(0x18018B, [magic_small, 3, bow_small]) # Mantle respawn refills (magic, bombs, arrows) # patch swamp: Need to enable permanent drain of water as dam or swamp were moved rom.write_byte(0x18003D, 0x01 if world.swamp_patch_required[player] else 0x00) @@ -1298,20 +1434,31 @@ def patch_rom(world, rom, player, team, enemized): # set correct flag for hera basement item hera_basement = world.get_location('Tower of Hera - Basement Cage', player) - if hera_basement.item is not None and hera_basement.item.name == 'Small Key (Tower of Hera)' and hera_basement.item.player == player: + is_small_key_this_dungeon = False + if hera_basement.item is not None and hera_basement.item.smallkey: + item_dungeon = hera_basement.item.name.split('(')[1][:-1] + if item_dungeon == 'Escape': + item_dungeon = 'Hyrule Castle' + is_small_key_this_dungeon = hera_basement.parent_region.dungeon.name == item_dungeon + if is_small_key_this_dungeon: rom.write_byte(0x4E3BB, 0xE4) else: rom.write_byte(0x4E3BB, 0xEB) # fix trock doors for reverse entrances if world.fix_trock_doors[player]: + if world.get_door('TR Lazy Eyes SE', player).entranceFlag: + world.get_room(0x23, player).change(0, DoorKind.CaveEntrance) + if world.get_door('TR Eye Bridge SW', player).entranceFlag: + world.get_room(0xd5, player).change(0, DoorKind.CaveEntrance) + # do this unconditionally - gets overwritten by RoomData in doorShufflemodes rom.write_byte(0xFED31, 0x0E) # preopen bombable exit rom.write_byte(0xFEE41, 0x0E) # preopen bombable exit - # included unconditionally in base2current - #rom.write_byte(0xFE465, 0x1E) # remove small key door on backside of big key door - else: - rom.write_byte(0xFED31, 0x2A) # preopen bombable exit - rom.write_byte(0xFEE41, 0x2A) # preopen bombable exit + + if world.doorShuffle[player] != 'vanilla' or world.keydropshuffle[player]: + for room in world.rooms: + if room.player == player and room.modified: + rom.write_bytes(room.address(), room.rom_data()) write_strings(rom, world, player, team) @@ -1631,7 +1778,10 @@ def write_strings(rom, world, player, team): if ped_hint: hint = dest.pedestal_hint_text if dest.pedestal_hint_text else "unknown item" else: - hint = dest.hint_text if dest.hint_text else "something" + if isinstance(dest, Region) and dest.type == RegionType.Dungeon and dest.dungeon: + hint = dest.dungeon.name + else: + hint = dest.hint_text if dest.hint_text else "something" if dest.player != player: if ped_hint: hint += f" for {world.player_names[dest.player][team]}!" @@ -2139,66 +2289,20 @@ def patch_shuffled_dark_sanc(world, rom, player): rom.write_bytes(0x180262, [unknown_1, unknown_2, 0x00]) -# 24B118 and 20BB32 -compass_r_addr = 0x123118 # a9 90 24 8f 9a c7 7e -compass_w_addr = 0x103b32 # e2 20 ad 0c 04 c9 00 d0 - - -def compass_code_good(rom): - if isinstance(rom, LocalRom): - # a990248f9ac77e - if rom.buffer[compass_r_addr] != 0xa9 or rom.buffer[compass_r_addr+1] != 0x90 or rom.buffer[compass_r_addr+2] != 0x24: - return False - if rom.buffer[compass_r_addr+3] != 0x8f or rom.buffer[compass_r_addr+4] != 0x9a or rom.buffer[compass_r_addr+5] != 0xc7: - return False - if rom.buffer[compass_w_addr] != 0xe2 or rom.buffer[compass_w_addr+1] != 0x20 or rom.buffer[compass_w_addr+2] != 0xad: - return False - if rom.buffer[compass_w_addr+3] != 0x0c or rom.buffer[compass_w_addr+4] != 0x04 or rom.buffer[compass_w_addr+5] != 0xc9: - return False - return True - - def update_compasses(rom, world, player): layouts = world.dungeon_layouts[player] - # cmp XX : bne escape - # cpy 32 : bne escape - # brl .itemCounts - # c9 02 d0 eastern - # nop #2 - new_code = [0x07, 0xC0, 0x32, 0xD0, 0x03, 0x82, 0xB9, 0x01, 0xC9, 0x02, 0xD0, 0x10, 0xEA, 0xEA] - rom.write_bytes(compass_w_addr + 8, new_code) - # 05 06 07 08 - # C9 00 D0 02 80 04 C9 02 D0 15 C0 32 D0 03 82 B3 01 - # C9 XX D0 07 C0 32 D0 03 82 B9 01 C9 02 D0 10 EA EA - + provided_dungeon = False for name, builder in layouts.items(): - digit_offset, sram_byte, write_offset, jmp_nop_flag, dungeon_id = compass_data[name] - digit1 = builder.location_cnt // 10 - digit2 = builder.location_cnt % 10 - rom.write_byte(compass_r_addr+digit_offset, 0x90+digit1) - rom.write_byte(compass_r_addr+digit_offset+7, 0x90+digit2) - - # read compass count code - start_address = compass_r_addr+digit_offset+15 - - # -0x59 relative to compass_r_addr, +8000 because rom -120000 to get rid of high byte - jmp_address = compass_r_addr-0x118059 - # lda $7ef4(sb); jmp $jmp_address - rom.write_bytes(start_address, [0xaf, sram_byte, 0xf4, 0x7e, 0x4c, jmp_address % 0x100, jmp_address // 0x100]) - - # write compass count code - write_address = compass_w_addr+write_offset - # 0x186 relative to compass_r_addr, +8000 because rom -100000 to get rid of high byte - jmp_address = compass_w_addr-0xf7e7a - # lda $7ef4(sb); inc; sta $7ef4(sb) - rom.write_bytes(write_address, [0xaf, sram_byte, 0xf4, 0x7e, 0x1a, 0x8f, sram_byte, 0xf4, 0x7e]) - if jmp_nop_flag == 0: - rom.write_bytes(write_address+9, [0x4c, jmp_address % 0x100, jmp_address // 0x100]) # jmp $jmp_address - else: - for i in range(0, jmp_nop_flag): - rom.write_byte(write_address+9+i, 0xea) # nop + dungeon_id = compass_data[name][4] + rom.write_byte(0x187000 + dungeon_id//2, builder.location_cnt) if builder.bk_provided: - rom.write_byte(compass_w_addr+6, dungeon_id) + if provided_dungeon: + logging.getLogger('').warning('Multiple dungeons have forced BKs! Compass code might need updating?') + rom.write_byte(0x186FFF, dungeon_id) + provided_dungeon = True + if not provided_dungeon: + rom.write_byte(0x186FFF, 0xff) + InconvenientDungeonEntrances = {'Turtle Rock': 'Turtle Rock Main', @@ -2459,3 +2563,29 @@ hash_alphabet = [ "Lamp", "Hammer", "Shovel", "Ocarina", "Bug Net", "Book", "Bottle", "Potion", "Cane", "Cape", "Mirror", "Boots", "Gloves", "Flippers", "Pearl", "Shield", "Tunic", "Heart", "Map", "Compass", "Key" ] + +pot_item_room_table_lookup = 0xDB67 + +### +# Pointer to pot location and contents for each non-empty pot in a supertile +# Format: [(x, y, item)] FF FF (Note: x,y are bit packed to include layer) +pot_item_table = 0xDDE7 +pot_item_table_end = 0xE6B0 + +def write_pots_to_rom(rom, pot_contents): + n = pot_item_table + rom.write_bytes(n, [0xFF,0xFF]) + n += 2 + for i in range(0x140): + if i in pot_contents: + pots = [pot for pot in pot_contents[i] if pot.item != PotItem.Nothing] + if len(pots) > 0: + write_int16(rom, pot_item_room_table_lookup + 2*i, n) + rom.write_bytes(n, itertools.chain(*((pot.x,pot.y,pot.item) for pot in pots))) + n += 3*len(pots) + 2 + rom.write_bytes(n - 2, [0xFF,0xFF]) + else: + write_int16(rom, pot_item_room_table_lookup + 2*i, n-2) + else: + write_int16(rom, pot_item_room_table_lookup + 2*i, n-2) + assert n <= pot_item_table_end diff --git a/RoomData.py b/RoomData.py index 1039f8a7..ac740c90 100644 --- a/RoomData.py +++ b/RoomData.py @@ -9,7 +9,9 @@ def create_rooms(world, player): # Room(player, 0x03, 0x509cf).door(Position.SouthW, DoorKind.CaveEntrance), Room(player, 0x04, 0xfe25c).door(Position.NorthW, DoorKind.StairKey2).door(Position.InteriorW, DoorKind.Dashable).door(Position.InteriorS, DoorKind.Dashable).door(Position.InteriorE, DoorKind.TrapTriggerable).door(Position.SouthW, DoorKind.Normal), Room(player, 0x06, 0xfa192).door(Position.SouthW, DoorKind.Trap), + Room(player, 0x07, None), # Room(player, 0x08, 0x5064f).door(Position.InteriorS2, DoorKind.CaveEntranceLow08).door(Position.SouthE, DoorKind.CaveEntrance).door(Position.SouthW2, DoorKind.NormalLow2).door(Position.SouthW2, DoorKind.ToggleFlag), + Room(player, 0x09, None), Room(player, 0x0a, 0xfa734).door(Position.North, DoorKind.StairKey), Room(player, 0x0b, 0xfabf0).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.InteriorS, DoorKind.Trap2).door(Position.InteriorN, DoorKind.SmallKey), Room(player, 0x0c, 0xfef53).door(Position.South, DoorKind.DungeonEntrance), @@ -23,6 +25,7 @@ def create_rooms(world, player): Room(player, 0x14, 0xfe464).door(Position.SouthE, DoorKind.SmallKey).door(Position.WestS, DoorKind.SmallKey).door(Position.NorthW, DoorKind.Normal).door(Position.WestN, DoorKind.Normal).door(Position.SouthW, DoorKind.Normal).door(Position.EastN, DoorKind.Normal).door(Position.EastS, DoorKind.Normal), Room(player, 0x15, 0xfe63e).door(Position.WestS, DoorKind.Trap).door(Position.WestN, DoorKind.Normal), Room(player, 0x16, 0xfa150).door(Position.InteriorV, DoorKind.Bombable).door(Position.InteriorW, DoorKind.SmallKey).door(Position.InteriorE, DoorKind.Normal).door(Position.NorthW, DoorKind.Normal), + Room(player, 0x17, None), # Room(player, 0x18, 0x506e5).door(Position.NorthW2, DoorKind.NormalLow).door(Position.NorthW2, DoorKind.ToggleFlag), Room(player, 0x19, 0xfacc6).door(Position.East, DoorKind.Bombable).door(Position.EastN, DoorKind.SmallKey), Room(player, 0x1a, 0xfa670).door(Position.InteriorE, DoorKind.SmallKey).door(Position.WestN, DoorKind.SmallKey).door(Position.West, DoorKind.Bombable).door(Position.SouthW, DoorKind.SmallKey).door(Position.InteriorN, DoorKind.Normal).door(Position.SouthE, DoorKind.Normal), @@ -38,6 +41,7 @@ def create_rooms(world, player): Room(player, 0x23, 0xfed30).door(Position.SouthE, DoorKind.BombableEntrance).door(Position.EastS, DoorKind.Normal), Room(player, 0x24, 0xfe6ee).door(Position.NorthE, DoorKind.BigKey).door(Position.InteriorN, DoorKind.Trap2).door(Position.InteriorW, DoorKind.Trap2).door(Position.InteriorE, DoorKind.Trap2).door(Position.SouthE, DoorKind.DungeonEntrance).door(Position.NorthW, DoorKind.Normal).door(Position.WestS, DoorKind.Normal).door(Position.InteriorS, DoorKind.Normal), Room(player, 0x26, 0xf9cbb).door(Position.South, DoorKind.SmallKey).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.InteriorE, DoorKind.TrapTriggerable).door(Position.InteriorN, DoorKind.Normal), + Room(player, 0x27, None), Room(player, 0x28, 0xf92a8).door(Position.NorthW, DoorKind.StairKey2).door(Position.South, DoorKind.DungeonEntrance), Room(player, 0x2a, 0xfa594).door(Position.NorthE, DoorKind.Trap).door(Position.NorthW, DoorKind.SmallKey).door(Position.EastS, DoorKind.Bombable).door(Position.East2, DoorKind.NormalLow).door(Position.SouthW, DoorKind.Normal).door(Position.SouthE, DoorKind.Normal), Room(player, 0x2b, 0xfaaa7).door(Position.InteriorS, DoorKind.Bombable).door(Position.WestS, DoorKind.Bombable).door(Position.NorthW, DoorKind.Trap).door(Position.West2, DoorKind.NormalLow), @@ -66,6 +70,7 @@ def create_rooms(world, player): Room(player, 0x40, 0xf8eea).door(Position.InteriorS2, DoorKind.NormalLow2), Room(player, 0x41, 0x50f15).door(Position.South, DoorKind.Trap), + Room(player, 0x42, None), Room(player, 0x43, 0xf87f8).door(Position.NorthW, DoorKind.BigKey).door(Position.InteriorE, DoorKind.SmallKey).door(Position.SouthE, DoorKind.SmallKey), Room(player, 0x44, 0xfdbcd).door(Position.InteriorN, DoorKind.Trap2).door(Position.InteriorS, DoorKind.SmallKey).door(Position.EastN, DoorKind.Normal).door(Position.EastS, DoorKind.Normal), Room(player, 0x45, 0xfdcae).door(Position.WestN, DoorKind.Trap).door(Position.InteriorW, DoorKind.Normal).door(Position.WestS, DoorKind.Normal).door(Position.InteriorS, DoorKind.Normal), @@ -82,6 +87,7 @@ def create_rooms(world, player): Room(player, 0x51, 0x51029).door(Position.North, DoorKind.Normal).door(Position.North, DoorKind.DungeonChanger), Room(player, 0x52, 0x51230).door(Position.WestN2, DoorKind.Warp).door(Position.SouthW2, DoorKind.NormalLow2).door(Position.South, DoorKind.Normal), Room(player, 0x53, 0xf88ad).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.InteriorS, DoorKind.Trap2).door(Position.NorthE, DoorKind.SmallKey), + Room(player, 0x54, None), # Room(player, 0x55, 0x50166).door(Position.InteriorW2, DoorKind.NormalLow).door(Position.SouthW, DoorKind.Normal).door(Position.SouthW, DoorKind.IncognitoEntrance), Room(player, 0x56, 0xfbb4e).door(Position.InteriorW, DoorKind.SmallKey).door(Position.SouthW, DoorKind.DungeonEntrance).door(Position.InteriorS, DoorKind.Normal).door(Position.EastS, DoorKind.Normal), Room(player, 0x57, 0xfbbd2).door(Position.InteriorN, DoorKind.Bombable).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.EastS, DoorKind.SmallKey).door(Position.SouthW, DoorKind.DungeonEntrance).door(Position.WestS, DoorKind.Normal).door(Position.SouthE, DoorKind.Normal), @@ -109,6 +115,7 @@ def create_rooms(world, player): Room(player, 0x6d, 0xffa4e).door(Position.NorthW, DoorKind.Trap).door(Position.InteriorW, DoorKind.Trap).door(Position.WestS, DoorKind.Trap), Room(player, 0x6e, 0xfc74b).door(Position.NorthE, DoorKind.Trap), + Room(player, 0x70, None), Room(player, 0x71, 0x52341).door(Position.InteriorW, DoorKind.SmallKey).door(Position.SouthW2, DoorKind.TrapTriggerableLow).door(Position.InteriorS2, DoorKind.TrapTriggerableLow), Room(player, 0x72, 0x51fda).door(Position.InteriorV, DoorKind.SmallKey), Room(player, 0x73, 0xf8972).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.InteriorS, DoorKind.Trap2).door(Position.InteriorE, DoorKind.Normal), @@ -122,11 +129,14 @@ def create_rooms(world, player): Room(player, 0x7e, 0xfc7c6).door(Position.SouthE, DoorKind.SmallKey).door(Position.InteriorS, DoorKind.TrapTriggerable).door(Position.EastN, DoorKind.Normal), Room(player, 0x7f, 0xfc827).door(Position.WestN, DoorKind.Trap).door(Position.InteriorW, DoorKind.Normal), + Room(player, 0x80, None), Room(player, 0x81, 0x5224b).door(Position.NorthW2, DoorKind.NormalLow2), + Room(player, 0x82, None), Room(player, 0x83, 0xf8bba).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.SouthW, DoorKind.DungeonEntrance).door(Position.InteriorS, DoorKind.Normal), Room(player, 0x84, 0xf8cb7).door(Position.South, DoorKind.DungeonEntrance), Room(player, 0x85, 0xf8d7d).door(Position.NorthE, DoorKind.Trap).door(Position.InteriorN, DoorKind.SmallKey).door(Position.SouthE, DoorKind.DungeonEntrance).door(Position.InteriorS, DoorKind.Normal), Room(player, 0x87, 0xfd1b7).door(Position.InteriorN, DoorKind.Trap2).door(Position.InteriorE, DoorKind.Normal), + Room(player, 0x89, None), Room(player, 0x8b, 0xff33f).door(Position.InteriorN, DoorKind.TrapTriggerable).door(Position.InteriorS, DoorKind.SmallKey).door(Position.EastN, DoorKind.Normal).door(Position.SouthW, DoorKind.Normal).door(Position.NorthW, DoorKind.Normal), Room(player, 0x8c, 0xff3ef).door(Position.EastN, DoorKind.Trap).door(Position.InteriorW, DoorKind.Trap2).door(Position.InteriorN, DoorKind.SmallKey).door(Position.WestN, DoorKind.Normal).door(Position.SouthW, DoorKind.Normal).door(Position.SouthE, DoorKind.Normal), Room(player, 0x8d, 0xff4e0).door(Position.SouthE, DoorKind.Trap).door(Position.InteriorN, DoorKind.SmallKey).door(Position.WestN, DoorKind.Normal).door(Position.NorthE, DoorKind.Normal).door(Position.InteriorS, DoorKind.Normal), @@ -153,6 +163,7 @@ def create_rooms(world, player): Room(player, 0xa3, 0xfb667).door(Position.West, DoorKind.Normal).door(Position.SouthW, DoorKind.Normal), Room(player, 0xa4, 0xfe741).door(Position.SouthW, DoorKind.Trap), Room(player, 0xa5, 0xffb7f).door(Position.NorthE, DoorKind.Trap).door(Position.InteriorE, DoorKind.Trap2).door(Position.InteriorW, DoorKind.Trap2), + Room(player, 0xa6, None), Room(player, 0xa8, 0x51887).door(Position.InteriorS, DoorKind.Trap2).door(Position.InteriorW, DoorKind.TrapTriggerable).door(Position.SouthE, DoorKind.SmallKey).door(Position.InteriorN2, DoorKind.NormalLow2).door(Position.EastN2, DoorKind.NormalLow2).door(Position.East, DoorKind.Normal), Room(player, 0xa9, 0x519c9).door(Position.West, DoorKind.Trap).door(Position.East, DoorKind.Trap).door(Position.North, DoorKind.BigKey).door(Position.WestN2, DoorKind.NormalLow2).door(Position.EastN2, DoorKind.NormalLow2).door(Position.South, DoorKind.Normal), Room(player, 0xaa, 0x51b29).door(Position.InteriorE, DoorKind.Trap2).door(Position.WestN2, DoorKind.NormalLow2).door(Position.InteriorN, DoorKind.Normal).door(Position.InteriorS, DoorKind.Normal).door(Position.West, DoorKind.Normal).door(Position.SouthW, DoorKind.Normal), @@ -250,6 +261,10 @@ class Room(object): self.doorListAddress = address self.doorList = [] self.modified = False + self.palette = None + + def position(self, door): + return self.doorList[door.doorListPos][0] def kind(self, door): return self.doorList[door.doorListPos][1] diff --git a/Rules.py b/Rules.py index 8f8278fc..ceeeecbf 100644 --- a/Rules.py +++ b/Rules.py @@ -1,8 +1,7 @@ import logging from collections import deque -from BaseClasses import CollectionState, RegionType, DoorType, Entrance -from Regions import key_only_locations +from BaseClasses import CollectionState, RegionType, DoorType, Entrance, CrystalBarrier from RoomData import DoorKind @@ -42,7 +41,7 @@ def set_rules(world, player): elif world.goal[player] == 'ganon': # require aga2 to beat ganon add_rule(world.get_location('Ganon', player), lambda state: state.has('Beat Agahnim 2', player)) - + if world.mode[player] != 'inverted': set_big_bomb_rules(world, player) else: @@ -75,6 +74,10 @@ def add_rule(spot, rule, combine='and'): spot.access_rule = lambda state: rule(state) and old_rule(state) +def or_rule(rule1, rule2): + return lambda state: rule1(state) or rule2(state) + + def add_lamp_requirement(spot, player): add_rule(spot, lambda state: state.has('Lamp', player, state.world.lamps_needed_for_dark_rooms)) @@ -124,13 +127,12 @@ def global_rules(world, player): set_rule(world.get_location('Mimic Cave', player), lambda state: state.has('Hammer', player)) set_rule(world.get_location('Sahasrahla', player), lambda state: state.has('Green Pendant', player)) - set_rule(world.get_location('Spike Cave', player), lambda state: - state.has('Hammer', player) and state.can_lift_rocks(player) and - ((state.has('Cape', player) and state.can_extend_magic(player, 16, True)) or - (state.has('Cane of Byrna', player) and - (state.can_extend_magic(player, 12, True) or - (state.world.can_take_damage and (state.has_Boots(player) or state.has_hearts(player, 4)))))) + state.has('Hammer', player) and state.can_lift_rocks(player) and + ((state.has('Cape', player) and state.can_extend_magic(player, 16, True)) or + (state.has('Cane of Byrna', player) and + (state.can_extend_magic(player, 12, True) or + (state.world.can_take_damage and (state.has_Boots(player) or state.has_hearts(player, 4)))))) ) set_rule(world.get_location('Hookshot Cave - Top Right', player), lambda state: state.has('Hookshot', player)) @@ -184,9 +186,13 @@ def global_rules(world, player): set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) set_rule(world.get_entrance('Swamp Lobby Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) + set_rule(world.get_entrance('Swamp Entrance Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) set_rule(world.get_entrance('Swamp Trench 1 Approach Dry', player), lambda state: not state.has('Trench 1 Filled', player)) set_rule(world.get_entrance('Swamp Trench 1 Key Ledge Dry', player), lambda state: not state.has('Trench 1 Filled', player)) set_rule(world.get_entrance('Swamp Trench 1 Departure Dry', player), lambda state: not state.has('Trench 1 Filled', player)) + # these two are here so that, if they flood the area before finding flippers, nothing behind there can lock out the flippers + set_rule(world.get_entrance('Swamp Trench 1 Nexus Approach', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_entrance('Swamp Trench 1 Nexus Key', player), lambda state: state.has('Flippers', player)) set_rule(world.get_entrance('Swamp Trench 1 Approach Key', player), lambda state: state.has('Flippers', player) and state.has('Trench 1 Filled', player)) set_rule(world.get_entrance('Swamp Trench 1 Approach Swim Depart', player), lambda state: state.has('Flippers', player) and state.has('Trench 1 Filled', player)) set_rule(world.get_entrance('Swamp Trench 1 Key Approach', player), lambda state: state.has('Flippers', player) and state.has('Trench 1 Filled', player)) @@ -203,10 +209,9 @@ def global_rules(world, player): set_rule(world.get_entrance('Swamp Barrier Ledge Hook Path', player), lambda state: state.has('Hookshot', player)) set_rule(world.get_entrance('Swamp Drain Right Switch', player), lambda state: state.has('Drained Swamp', player)) set_rule(world.get_entrance('Swamp Drain WN', player), lambda state: state.has('Drained Swamp', player)) + # this might be unnecesssary for an insanity style shuffle set_rule(world.get_entrance('Swamp Flooded Room WS', player), lambda state: state.has('Drained Swamp', player)) set_rule(world.get_entrance('Swamp Flooded Room Ladder', player), lambda state: state.has('Drained Swamp', player)) - set_rule(world.get_location('Swamp Palace - Flooded Room - Left', player), lambda state: state.has('Drained Swamp', player)) - set_rule(world.get_location('Swamp Palace - Flooded Room - Right', player), lambda state: state.has('Drained Swamp', player)) set_rule(world.get_entrance('Swamp Flooded Spot Ladder', player), lambda state: state.has('Flippers', player) or state.has('Drained Swamp', player)) set_rule(world.get_entrance('Swamp Drain Left Up Stairs', player), lambda state: state.has('Flippers', player) or state.has('Drained Swamp', player)) set_rule(world.get_entrance('Swamp Waterway NW', player), lambda state: state.has('Flippers', player)) @@ -248,7 +253,8 @@ def global_rules(world, player): set_rule(world.get_location('Ice Palace - Freezor Chest', player), lambda state: state.can_melt_things(player)) set_rule(world.get_entrance('Ice Hookshot Ledge Path', player), lambda state: state.has('Hookshot', player)) set_rule(world.get_entrance('Ice Hookshot Balcony Path', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_entrance('Ice Switch Room SE', player), lambda state: state.has('Cane of Somaria', player) or state.has('Convenient Block', player)) + if not world.get_door('Ice Switch Room SE', player).entranceFlag: + set_rule(world.get_entrance('Ice Switch Room SE', player), lambda state: state.has('Cane of Somaria', player) or state.has('Convenient Block', player)) set_defeat_dungeon_boss_rule(world.get_location('Ice Palace - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Ice Palace - Prize', player)) @@ -291,13 +297,15 @@ def global_rules(world, player): set_rule(world.get_entrance('GT Hope Room EN', player), lambda state: state.has('Cane of Somaria', player)) set_rule(world.get_entrance('GT Conveyor Cross WN', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('GT Conveyor Cross EN', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_entrance('GT Speed Torch SE', player), lambda state: state.has('Fire Rod', player)) + if not world.get_door('GT Speed Torch SE', player).entranceFlag: + set_rule(world.get_entrance('GT Speed Torch SE', player), lambda state: state.has('Fire Rod', player)) set_rule(world.get_entrance('GT Hookshot East-North Path', player), lambda state: state.has('Hookshot', player)) set_rule(world.get_entrance('GT Hookshot South-East Path', player), lambda state: state.has('Hookshot', player)) set_rule(world.get_entrance('GT Hookshot South-North Path', player), lambda state: state.has('Hookshot', player)) set_rule(world.get_entrance('GT Hookshot East-South Path', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) set_rule(world.get_entrance('GT Hookshot North-East Path', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) set_rule(world.get_entrance('GT Hookshot North-South Path', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) + set_rule(world.get_entrance('GT Hookshot Entry Boomerang Path', player), lambda state: state.has('Blue Boomerang', player) or state.has('Red Boomerang', player)) set_rule(world.get_entrance('GT Firesnake Room Hook Path', player), lambda state: state.has('Hookshot', player)) # I am tempted to stick an invincibility rule for getting across falling bridge set_rule(world.get_entrance('GT Ice Armos NE', player), lambda state: world.get_region('GT Ice Armos', player).dungeon.bosses['bottom'].can_defeat(state)) @@ -312,7 +320,8 @@ def global_rules(world, player): set_rule(world.get_entrance('GT Gauntlet 2 EN', player), lambda state: state.can_kill_most_things(player)) set_rule(world.get_entrance('GT Gauntlet 2 SW', player), lambda state: state.can_kill_most_things(player)) set_rule(world.get_entrance('GT Gauntlet 3 NW', player), lambda state: state.can_kill_most_things(player)) - set_rule(world.get_entrance('GT Gauntlet 3 SW', player), lambda state: state.can_kill_most_things(player)) + if not world.get_door('GT Gauntlet 3 SW', player).entranceFlag: + set_rule(world.get_entrance('GT Gauntlet 3 SW', player), lambda state: state.can_kill_most_things(player)) set_rule(world.get_entrance('GT Gauntlet 4 NW', player), lambda state: state.can_kill_most_things(player)) set_rule(world.get_entrance('GT Gauntlet 4 SW', player), lambda state: state.can_kill_most_things(player)) set_rule(world.get_entrance('GT Gauntlet 5 NW', player), lambda state: state.can_kill_most_things(player)) @@ -328,10 +337,14 @@ def global_rules(world, player): set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2', player)) # crystal switch rules + if world.get_door('Thieves Attic ES', player).crystal == CrystalBarrier.Blue: + set_rule(world.get_entrance('Thieves Attic ES', player), lambda state: state.can_reach_blue(world.get_region('Thieves Attic', player), player)) + else: + set_rule(world.get_entrance('Thieves Attic ES', player), lambda state: state.can_reach_orange(world.get_region('Thieves Attic', player), player)) + set_rule(world.get_entrance('PoD Arena Crystal Path', player), lambda state: state.can_reach_blue(world.get_region('PoD Arena Crystal', player), player)) set_rule(world.get_entrance('Swamp Trench 2 Pots Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('Swamp Trench 2 Pots', player), player)) set_rule(world.get_entrance('Swamp Shortcut Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('Swamp Shortcut', player), player)) - set_rule(world.get_entrance('Thieves Attic ES', player), lambda state: state.can_reach_blue(world.get_region('Thieves Attic', player), player)) set_rule(world.get_entrance('Thieves Hellway Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('Thieves Hellway', player), player)) set_rule(world.get_entrance('Thieves Hellway Crystal Blue Barrier', player), lambda state: state.can_reach_blue(world.get_region('Thieves Hellway N Crystal', player), player)) set_rule(world.get_entrance('Thieves Triple Bypass SE', player), lambda state: state.can_reach_blue(world.get_region('Thieves Triple Bypass', player), player)) @@ -457,7 +470,7 @@ def default_rules(world, player): set_rule(world.get_entrance('East Dark World Bridge', player), lambda state: state.has_Pearl(player) and state.has('Hammer', player)) set_rule(world.get_entrance('Lake Hylia Island Mirror Spot', player), lambda state: state.has_Pearl(player) and state.has_Mirror(player) and state.has('Flippers', player)) set_rule(world.get_entrance('Lake Hylia Central Island Mirror Spot', player), lambda state: state.has_Mirror(player)) - set_rule(world.get_entrance('East Dark World River Pier', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) # ToDo any fake flipper set up? + set_rule(world.get_entrance('East Dark World River Pier', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('Graveyard Ledge Mirror Spot', player), lambda state: state.has_Pearl(player) and state.has_Mirror(player)) set_rule(world.get_entrance('Bumper Cave Entrance Rock', player), lambda state: state.has_Pearl(player) and state.can_lift_rocks(player)) set_rule(world.get_entrance('Bumper Cave Ledge Mirror Spot', player), lambda state: state.has_Mirror(player)) @@ -503,6 +516,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Castle Ledge S&Q', player), lambda state: state.has_Mirror(player) and state.has('Beat Agahnim 1', player)) # overworld requirements + set_rule(world.get_location('Ice Rod Cave', player), lambda state: state.has_Pearl(player)) set_rule(world.get_location('Maze Race', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('Mini Moldorm Cave', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('Light Hype Fairy', player), lambda state: state.has_Pearl(player)) @@ -549,7 +563,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Bomb Hut Outer Bushes', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('North Fairy Cave Drop', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('Lost Woods Hideout Drop', player), lambda state: state.has_Pearl(player)) - set_rule(world.get_location('Potion Shop', player), lambda state: state.has('Mushroom', player) and (state.can_reach('Potion Shop Area', 'Region', player))) # new inverted region, need pearl for bushes or access to potion shop door/waterfall fairy + set_rule(world.get_location('Potion Shop', player), lambda state: state.has('Mushroom', player) and (state.can_reach('Potion Shop Area', 'Region', player))) # new inverted region, need pearl for bushes or access to potion shop door/waterfall fairy set_rule(world.get_entrance('Desert Palace Entrance (North) Rocks', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) set_rule(world.get_entrance('Desert Ledge Return Rocks', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) # should we decide to place something that is not a dungeon end up there at some point set_rule(world.get_entrance('Checkerboard Cave', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) @@ -591,7 +605,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Bumper Cave Exit (Top)', player), lambda state: state.has('Cape', player)) set_rule(world.get_entrance('Bumper Cave Exit (Bottom)', player), lambda state: state.has('Cape', player) or state.has('Hookshot', player)) - set_rule(world.get_entrance('Skull Woods Final Section', player), lambda state: state.has('Fire Rod', player)) + set_rule(world.get_entrance('Skull Woods Final Section', player), lambda state: state.has('Fire Rod', player)) set_rule(world.get_entrance('Misery Mire', player), lambda state: state.has_sword(player) and state.has_misery_mire_medallion(player)) # sword required to cast magic (!) set_rule(world.get_entrance('Hookshot Cave', player), lambda state: state.can_lift_rocks(player)) @@ -606,7 +620,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Superbunny Cave Exit (Bottom)', player), lambda state: False) # Cannot get to bottom exit from top. Just exists for shuffling set_rule(world.get_entrance('Floating Island Mirror Spot', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Turtle Rock', player), lambda state: state.has_sword(player) and state.has_turtle_rock_medallion(player) and state.can_reach('Turtle Rock (Top)', 'Region', player)) # sword required to cast magic (!) - + # new inverted spots set_rule(world.get_entrance('Post Aga Teleporter', player), lambda state: state.has('Beat Agahnim 1', player)) set_rule(world.get_entrance('Mire Mirror Spot', player), lambda state: state.has_Mirror(player)) @@ -624,7 +638,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Graveyard Cave Mirror Spot', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Bomb Hut Mirror Spot', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Skull Woods Mirror Spot', player), lambda state: state.has_Mirror(player)) - + # inverted flute spots set_rule(world.get_entrance('DDM Flute', player), lambda state: state.can_flute(player)) @@ -637,7 +651,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('EDDM Flute', player), lambda state: state.can_flute(player)) set_rule(world.get_entrance('Dark Grassy Lawn Flute', player), lambda state: state.can_flute(player)) set_rule(world.get_entrance('Hammer Peg Area Flute', player), lambda state: state.can_flute(player)) - + set_rule(world.get_entrance('Inverted Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid[player]) set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. @@ -654,6 +668,7 @@ def no_glitches_rules(world, player): add_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) add_rule(world.get_entrance('Dark Lake Hylia Teleporter', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player) and (state.has('Hammer', player) or state.can_lift_rocks(player))) add_rule(world.get_entrance('Dark Lake Hylia Ledge Drop', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) + add_rule(world.get_entrance('East Dark World River Pier', player), lambda state: state.has('Flippers', player)) else: add_rule(world.get_entrance('Zoras River', player), lambda state: state.has_Pearl(player) and (state.has('Flippers', player) or state.can_lift_rocks(player))) add_rule(world.get_entrance('Lake Hylia Central Island Pier', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) # can be fake flippered to @@ -663,6 +678,7 @@ def no_glitches_rules(world, player): add_rule(world.get_entrance('Dark Lake Hylia Teleporter', player), lambda state: state.has('Flippers', player) and (state.has('Hammer', player) or state.can_lift_rocks(player))) add_rule(world.get_entrance('Dark Lake Hylia Ledge Drop', player), lambda state: state.has('Flippers', player)) add_rule(world.get_entrance('East Dark World Pier', player), lambda state: state.has('Flippers', player)) + add_rule(world.get_entrance('East Dark World River Pier', player), lambda state: state.has('Flippers', player)) # todo: move some dungeon rules to no glictes logic - see these for examples # add_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) @@ -755,8 +771,8 @@ def no_glitches_rules(world, player): def open_rules(world, player): # softlock protection as you can reach the sewers small key door with a guard drop key - set_rule(world.get_location('Hyrule Castle - Boomerang Chest', player), lambda state: state.has_key('Small Key (Escape)', player)) - set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest', player), lambda state: state.has_key('Small Key (Escape)', player)) + set_rule(world.get_location('Hyrule Castle - Boomerang Chest', player), lambda state: state.has_sm_key('Small Key (Escape)', player)) + set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest', player), lambda state: state.has_sm_key('Small Key (Escape)', player)) def swordless_rules(world, player): @@ -774,7 +790,7 @@ def swordless_rules(world, player): set_rule(world.get_entrance('Agahnims Tower', player), lambda state: state.has('Cape', player) or state.has('Hammer', player) or state.has('Beat Agahnim 1', player)) # barrier gets removed after killing agahnim, relevant for entrance shuffle set_rule(world.get_entrance('Turtle Rock', player), lambda state: state.has_Pearl(player) and state.has_turtle_rock_medallion(player) and state.can_reach('Turtle Rock (Top)', 'Region', player)) # sword not required to use medallion for opening in swordless (!) set_rule(world.get_entrance('Misery Mire', player), lambda state: state.has_Pearl(player) and state.has_misery_mire_medallion(player)) # sword not required to use medallion for opening in swordless (!) - set_rule(world.get_location('Bombos Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has('Hammer', player) and state.has_Mirror(player)) + set_rule(world.get_location('Bombos Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has('Hammer', player) and state.has_Mirror(player)) else: # only need ddm access for aga tower in inverted set_rule(world.get_entrance('Turtle Rock', player), lambda state: state.has_turtle_rock_medallion(player) and state.can_reach('Turtle Rock (Top)', 'Region', player)) # sword not required to use medallion for opening in swordless (!) @@ -828,8 +844,13 @@ def standard_rules(world, player): set_rule(world.get_entrance('Sanctuary S&Q', player), lambda state: state.can_reach('Sanctuary', 'Region', player)) # these are because of rails if world.shuffle[player] != 'vanilla': - set_rule(world.get_entrance('Hyrule Castle Exit (East)', player), lambda state: state.has('Zelda Delivered', player)) - set_rule(world.get_entrance('Hyrule Castle Exit (West)', player), lambda state: state.has('Zelda Delivered', player)) + # where ever these happen to be + for portal_name in ['Hyrule Castle East', 'Hyrule Castle West']: + entrance = world.get_portal(portal_name, player).door.entrance + set_rule(entrance, lambda state: state.has('Zelda Delivered', player)) + set_rule(world.get_entrance('Sanctuary Exit', player), lambda state: state.has('Zelda Delivered', player)) + # zelda should be saved before agahnim is in play + set_rule(world.get_location('Agahnim 1', player), lambda state: state.has('Zelda Delivered', player)) # too restrictive for crossed? def uncle_item_rule(item): @@ -870,7 +891,7 @@ def standard_rules(world, player): rule_list, debug_path = find_rules_for_zelda_delivery(world, player) set_rule(world.get_location('Zelda Drop Off', player), lambda state: state.has('Zelda Herself', player) and check_rule_list(state, rule_list)) - for location in ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest']: + for location in ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest', 'Maze Race']: add_rule(world.get_location(location, player), lambda state: state.has('Zelda Delivered', player)) # Bonk Fairy (Light) is a notable omission in ER shuffles/Retro @@ -902,7 +923,9 @@ def find_rules_for_zelda_delivery(world, player): region, path_rules, path = queue.popleft() for ext in region.exits: connect = ext.connected_region - if connect and connect.type == RegionType.Dungeon and connect not in visited: + valid_region = connect and connect not in visited and\ + (connect.type == RegionType.Dungeon or connect.name == 'Hyrule Castle Ledge') + if valid_region: rule = ext.access_rule rule_list = list(path_rules) next_path = list(path) @@ -1260,7 +1283,7 @@ def set_inverted_big_bomb_rules(world, player): LW_bush_entrances = ['Bush Covered House', 'Light World Bomb Hut', 'Graveyard Cave'] - + set_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_reach('East Dark World', 'Region', player) and state.can_reach('Inverted Big Bomb Shop', 'Region', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player)) # crossing peg bridge starting from the southern dark world @@ -1324,7 +1347,7 @@ def set_bunny_rules(world, player): # Note spiral cave may be technically passible, but it would be too absurd to require since OHKO mode is a thing. bunny_impassable_caves = ['Bumper Cave', 'Two Brothers House', 'Hookshot Cave', 'Pyramid', 'Spiral Cave (Top)', 'Fairy Ascension Cave (Drop)'] - bunny_accessible_locations = ['Link\'s Uncle', 'Sahasrahla', 'Sick Kid', 'Lost Woods Hideout', 'Lumberjack Tree', + bunny_accessible_locations = ['Link\'s House', 'Link\'s Uncle', 'Sahasrahla', 'Sick Kid', 'Lost Woods Hideout', 'Lumberjack Tree', 'Checkerboard Cave', 'Potion Shop', 'Spectacle Rock Cave', 'Pyramid', 'Hype Cave - Generous Guy', 'Peg Cave', 'Bumper Cave Ledge', 'Dark Blacksmith Ruins'] @@ -1408,7 +1431,7 @@ def set_inverted_bunny_rules(world, player): # Note spiral cave may be technically passible, but it would be too absurd to require since OHKO mode is a thing. bunny_impassable_caves = ['Bumper Cave', 'Two Brothers House', 'Hookshot Cave', 'Pyramid', 'Spiral Cave (Top)', 'Fairy Ascension Cave (Drop)', 'The Sky'] - bunny_accessible_locations = ['Link\'s Uncle', 'Sahasrahla', 'Sick Kid', 'Lost Woods Hideout', 'Lumberjack Tree', + bunny_accessible_locations = ['Link\'s House', 'Link\'s Uncle', 'Sahasrahla', 'Sick Kid', 'Lost Woods Hideout', 'Lumberjack Tree', 'Checkerboard Cave', 'Potion Shop', 'Spectacle Rock Cave', 'Pyramid', 'Hype Cave - Generous Guy', 'Peg Cave', 'Bumper Cave Ledge', 'Dark Blacksmith Ruins', 'Bombos Tablet', 'Ether Tablet', 'Purple Chest'] @@ -1528,10 +1551,10 @@ bunny_impassible_doors = { 'Ice Backwards Room Hole', 'Ice Switch Room SE', 'Ice Antechamber NE', 'Ice Antechamber Hole', 'Mire Lobby Gap', 'Mire Post-Gap Gap', 'Mire 2 NE', 'Mire Hub Upper Blue Barrier', 'Mire Hub Lower Blue Barrier', 'Mire Hub Right Blue Barrier', 'Mire Hub Top Blue Barrier', 'Mire Hub Switch Blue Barrier N', - 'Mire Hub Switch Blue Barrier S', 'Mire Falling Bridge WN', - 'Mire Map Spike Side Blue Barrier', 'Mire Map Spot Blue Barrier', 'Mire Crystal Dead End Left Barrier', - 'Mire Crystal Dead End Right Barrier', 'Mire Cross ES', 'Mire Hidden Shooters Block Path S', - 'Mire Hidden Shooters Block Path N', 'Mire Left Bridge Hook Path', 'Mire Fishbone Blue Barrier', + 'Mire Hub Switch Blue Barrier S', 'Mire Falling Bridge WN', 'Mire Map Spike Side Blue Barrier', + 'Mire Map Spot Blue Barrier', 'Mire Crystal Dead End Left Barrier', 'Mire Crystal Dead End Right Barrier', + 'Mire Cross ES', 'Mire Hidden Shooters Block Path S', 'Mire Hidden Shooters Block Path N', + 'Mire Left Bridge Hook Path', 'Mire Fishbone Blue Barrier', 'Mire South Fish Blue Barrier', 'Mire Tile Room NW', 'Mire Compass Blue Barrier', 'Mire Attic Hint Hole', 'Mire Dark Shooters SW', 'Mire Crystal Mid Blue Barrier', 'Mire Crystal Left Blue Barrier', 'TR Main Lobby Gap', 'TR Lobby Ledge Gap', 'TR Hub SW', 'TR Hub SE', 'TR Hub ES', 'TR Hub EN', 'TR Hub NW', 'TR Hub NE', 'TR Torches NW', @@ -1543,14 +1566,15 @@ bunny_impassible_doors = { 'GT Crystal Conveyor NE', 'GT Crystal Conveyor WN', 'GT Conveyor Cross EN', 'GT Conveyor Cross WN', 'GT Hookshot East-North Path', 'GT Hookshot East-South Path', 'GT Hookshot North-East Path', 'GT Hookshot North-South Path', 'GT Hookshot South-East Path', 'GT Hookshot South-North Path', - 'GT Hookshot Platform Blue Barrier', 'GT Hookshot Entry Blue Barrier', 'GT Double Switch Blue Path', - 'GT Double Switch Key Blue Path', 'GT Double Switch Blue Barrier', 'GT Double Switch Transition Blue', - 'GT Firesnake Room Hook Path', 'GT Falling Bridge WN', 'GT Falling Bridge WS', 'GT Ice Armos NE', 'GT Ice Armos WS', - 'GT Crystal Paths SW', 'GT Mimics 1 NW', 'GT Mimics 1 ES', 'GT Mimics 2 WS', 'GT Mimics 2 NE', - 'GT Hidden Spikes EN', 'GT Cannonball Bridge SE', 'GT Gauntlet 1 WN', 'GT Gauntlet 2 EN', 'GT Gauntlet 2 SW', - 'GT Gauntlet 3 NW', 'GT Gauntlet 3 SW', 'GT Gauntlet 4 NW', 'GT Gauntlet 4 SW', 'GT Gauntlet 5 NW', - 'GT Gauntlet 5 WS', 'GT Lanmolas 2 ES', 'GT Lanmolas 2 NW', 'GT Wizzrobes 1 SW', 'GT Wizzrobes 2 SE', - 'GT Wizzrobes 2 NE', 'GT Torch Cross ES', 'GT Falling Torches NE', 'GT Moldorm Gap', 'GT Validation Block Path' + 'GT Hookshot Platform Blue Barrier', 'GT Hookshot Entry Blue Barrier', 'GT Hookshot Entry Boomerang Path', + 'GT Double Switch Blue Path', 'GT Double Switch Key Blue Path', 'GT Double Switch Blue Barrier', + 'GT Double Switch Transition Blue', 'GT Firesnake Room Hook Path', 'GT Falling Bridge WN', 'GT Falling Bridge WS', + 'GT Ice Armos NE', 'GT Ice Armos WS', 'GT Crystal Paths SW', 'GT Mimics 1 NW', 'GT Mimics 1 ES', 'GT Mimics 2 WS', + 'GT Mimics 2 NE', 'GT Hidden Spikes EN', 'GT Cannonball Bridge SE', 'GT Gauntlet 1 WN', 'GT Gauntlet 2 EN', + 'GT Gauntlet 2 SW', 'GT Gauntlet 3 NW', 'GT Gauntlet 3 SW', 'GT Gauntlet 4 NW', 'GT Gauntlet 4 SW', + 'GT Gauntlet 5 NW', 'GT Gauntlet 5 WS', 'GT Lanmolas 2 ES', 'GT Lanmolas 2 NW', 'GT Wizzrobes 1 SW', + 'GT Wizzrobes 2 SE', 'GT Wizzrobes 2 NE', 'GT Torch Cross ES', 'GT Falling Torches NE', 'GT Moldorm Gap', + 'GT Validation Block Path' } @@ -1559,11 +1583,13 @@ def add_key_logic_rules(world, player): for d_name, d_logic in key_logic.items(): for door_name, keys in d_logic.door_rules.items(): spot = world.get_entrance(door_name, player) - add_rule(spot, create_advanced_key_rule(d_logic, player, keys)) - if keys.opposite: - add_rule(spot, create_advanced_key_rule(d_logic, player, keys.opposite), 'or') + if not world.retro[player] or world.mode[player] != 'standard' or not retro_in_hc(spot): + rule = create_advanced_key_rule(d_logic, player, keys) + if keys.opposite: + rule = or_rule(rule, create_advanced_key_rule(d_logic, player, keys.opposite)) + add_rule(spot, rule) for location in d_logic.bk_restricted: - if location.name not in key_only_locations.keys(): + if not location.forced_item: forbid_item(location, d_logic.bk_name, player) for location in d_logic.sm_restricted: forbid_item(location, d_logic.small_key_name, player) @@ -1573,28 +1599,32 @@ def add_key_logic_rules(world, player): add_rule(world.get_location(chest.name, player), create_rule(d_logic.bk_name, player)) +def retro_in_hc(spot): + return spot.parent_region.dungeon.name == 'Hyrule Castle' if spot.parent_region.dungeon else False + + def create_rule(item_name, player): return lambda state: state.has(item_name, player) def create_key_rule(small_key_name, player, keys): - return lambda state: state.has_key(small_key_name, player, keys) + return lambda state: state.has_sm_key(small_key_name, player, keys) def create_key_rule_allow_small(small_key_name, player, keys, location): loc = location.name - return lambda state: state.has_key(small_key_name, player, keys) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_key(small_key_name, player, keys-1)) + return lambda state: state.has_sm_key(small_key_name, player, keys) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_sm_key(small_key_name, player, keys-1)) def create_key_rule_bk_exception(small_key_name, big_key_name, player, keys, bk_keys, bk_locs): chest_names = [x.name for x in bk_locs] - return lambda state: (state.has_key(small_key_name, player, keys) and not item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names)))) or (item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names))) and state.has_key(small_key_name, player, bk_keys)) + return lambda state: (state.has_sm_key(small_key_name, player, keys) and not item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names)))) or (item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names))) and state.has_sm_key(small_key_name, player, bk_keys)) def create_key_rule_bk_exception_or_allow(small_key_name, big_key_name, player, keys, location, bk_keys, bk_locs): loc = location.name chest_names = [x.name for x in bk_locs] - return lambda state: (state.has_key(small_key_name, player, keys) and not item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names)))) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_key(small_key_name, player, keys-1)) or (item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names))) and state.has_key(small_key_name, player, bk_keys)) + return lambda state: (state.has_sm_key(small_key_name, player, keys) and not item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names)))) or (item_name(state, loc, player) in [(small_key_name, player)] and state.has_sm_key(small_key_name, player, keys-1)) or (item_in_locations(state, big_key_name, player, zip(chest_names, [player] * len(chest_names))) and state.has_sm_key(small_key_name, player, bk_keys)) def create_advanced_key_rule(key_logic, player, rule): diff --git a/Tables.py b/Tables.py index edfc15bc..5365e69c 100644 --- a/Tables.py +++ b/Tables.py @@ -20,7 +20,10 @@ normal_offset_table = { 0xc1: 0x81, 0xc2: 0x82, 0xc3: 0x83, 0xc4: 0x84, 0xc5: 0x85, 0xc6: 0x86, 0xc7: 0x87, 0xc8: 0x88, 0xc9: 0x89, 0xcb: 0x8A, 0xcc: 0x8B, 0xce: 0x8C, 0xd1: 0x8D, 0xd2: 0x8E, 0xd5: 0x8F, 0xd6: 0x90, 0xd8: 0x91, 0xd9: 0x92, 0xda: 0x93, 0xdb: 0x94, 0xdc: 0x95, - 0x40: 0x96, 0x42: 0x97 # newcomers for str stairs + 0x40: 0x96, 0x42: 0x97, # newcomers for str stairs + # newcomers for entrances + 0x28: 0x98, 0x0e: 0x99, 0x0c: 0x9a, 0x98: 0x9b, 0x83: 0x9c, 0x84: 0x9d, 0x77: 0x9e, 0xe0: 0x9f, + 0x63: 0xa0 } @@ -59,7 +62,7 @@ door_pair_offset_table = { 0xb8: 0x01a4, 0xb9: 0x01a6, 0xba: 0x01aa, 0xbb: 0x01ad, 0xbc: 0x01b3, 0xbe: 0x01bb, 0xbf: 0x01be, 0xc0: 0x01bf, 0xc1: 0x01c2, 0xc2: 0x01ca, 0xc3: 0x01d2, 0xc4: 0x01d9, 0xc5: 0x01da, 0xc6: 0x01dd, 0xc7: 0x01e3, 0xc8: 0x01e6, 0xc9: 0x01e7, 0xcb: 0x01ec, 0xcc: 0x01ed, 0xce: 0x01f0, 0xd0: 0x01f1, 0xd1: 0x01f3, 0xd2: 0x01f7, 0xd5: 0x01f8, - 0xd6: 0x01fa, 0xd8: 0x01fd, 0xd9: 0x0200, 0xda: 0x0203, 0xdb: 0x0204, 0xdc: 0x0206, 0xe0: 0x020 + 0xd6: 0x01fa, 0xd8: 0x01fd, 0xd9: 0x0200, 0xda: 0x0203, 0xdb: 0x0204, 0xdc: 0x0206, 0xe0: 0x0207 } # Note: 0-7 correspond to 1,2,3,4,5,6,a,14 respectively, see doortables.asm : MultDivInfo @@ -84,3 +87,40 @@ divisor_lookup = { 0xa0: {0x8: 7, 0x10: 6, 0x18: 7, 0x20: 4, 0x30: 6, 0x50: 1, 0xa0: 0}, } +# I don't need this right now, but I don't want to throw it away either +# Note: this value + 0x028000 is where the header is for the room (PC not SNES addressing) + +# room_header_lookup = { +# 0x0: 0x462, 0x1: 0x46c, 0x2: 0x47a, 0x3: 0x5dd, 0x4: 0x485, 0x5: 0x490, 0x6: 0x490, 0x7: 0x497, +# 0x8: 0x4a2, 0x9: 0x4a9, 0xa: 0x4b5, 0xb: 0x4c0, 0xc: 0x4cb, 0xd: 0x4d8, 0xe: 0x4df, 0xf: 0x4ea, +# 0x10: 0x4ea, 0x11: 0x4f1, 0x12: 0x4fc, 0x13: 0x503, 0x14: 0x511, 0x15: 0x518, 0x16: 0x523, 0x17: 0x52e, +# 0x18: 0xc73, 0x19: 0x53a, 0x1a: 0x541, 0x1b: 0x54d, 0x1c: 0x558, 0x1d: 0x563, 0x1e: 0x56e, 0x1f: 0x579, +# 0x20: 0x584, 0x21: 0x58b, 0x22: 0x58b, 0x23: 0x503, 0x24: 0x592, 0x25: 0x599, 0x26: 0x599, 0x27: 0x5a6, +# 0x28: 0x5b2, 0x29: 0x5bd, 0x2a: 0x5c4, 0x2b: 0x5cb, 0x2c: 0xc73, 0x2d: 0x5d6, 0x2e: 0x5d6, 0x2f: 0x5dd, +# 0x30: 0x5e4, 0x31: 0x5ef, 0x32: 0x5fb, 0x33: 0x606, 0x34: 0x60d, 0x35: 0x618, 0x36: 0x61f, 0x37: 0x618, +# 0x38: 0x626, 0x39: 0x631, 0x3a: 0x63b, 0x3b: 0x646, 0x3c: 0x651, 0x3d: 0x658, 0x3e: 0x663, 0x3f: 0x66e, +# 0x40: 0x67a, 0x41: 0x686, 0x42: 0x691, 0x43: 0x69d, 0x44: 0x6a4, 0x45: 0x6ab, 0x46: 0x6b6, 0x47: 0x6bd, +# 0x48: 0x6bd, 0x49: 0x6bd, 0x4a: 0x6c4, 0x4b: 0x6d0, 0x4c: 0x6da, 0x4d: 0x6e5, 0x4e: 0x6f0, 0x4f: 0x6fb, +# 0x50: 0x705, 0x51: 0x713, 0x52: 0x71e, 0x53: 0x72c, 0x54: 0x737, 0x55: 0x742, 0x56: 0x749, 0x57: 0x750, +# 0x58: 0x757, 0x59: 0x75e, 0x5a: 0x765, 0x5b: 0x76c, 0x5c: 0x773, 0x5d: 0x77e, 0x5e: 0x789, 0x5f: 0x794, +# 0x60: 0x7a0, 0x61: 0x7a7, 0x62: 0x7a0, 0x63: 0x7b2, 0x64: 0x7bd, 0x65: 0x7c8, 0x66: 0x7d2, 0x67: 0x7dd, +# 0x68: 0x7e4, 0x69: 0x7eb, 0x6a: 0x7eb, 0x6b: 0x7f7, 0x6c: 0x802, 0x6d: 0x80d, 0x6e: 0x814, 0x6f: 0x81f, +# 0x70: 0x81f, 0x71: 0x82b, 0x72: 0x836, 0x73: 0x841, 0x74: 0x848, 0x75: 0x84f, 0x76: 0x856, 0x77: 0x863, +# 0x78: 0x870, 0x79: 0x870, 0x7a: 0x870, 0x7b: 0x870, 0x7c: 0x87a, 0x7d: 0x881, 0x7e: 0x88b, 0x7f: 0x896, +# 0x80: 0x8a1, 0x81: 0x8ac, 0x82: 0x8ac, 0x83: 0x8b3, 0x84: 0x8ba, 0x85: 0x8c1, 0x86: 0x8c8, 0x87: 0x8c8, +# 0x88: 0x8d4, 0x89: 0x8d4, 0x8a: 0x8de, 0x8b: 0x8de, 0x8c: 0x8e5, 0x8d: 0x8f2, 0x8e: 0x8f9, 0x8f: 0x904, +# 0x90: 0x904, 0x91: 0x90b, 0x92: 0x916, 0x93: 0x91d, 0x94: 0x928, 0x95: 0x928, 0x96: 0x92f, 0x97: 0x93a, +# 0x98: 0x945, 0x99: 0x950, 0x9a: 0x95b, 0x9b: 0x95b, 0x9c: 0x965, 0x9d: 0x96c, 0x9e: 0x976, 0x9f: 0x981, +# 0xa0: 0x988, 0xa1: 0x993, 0xa2: 0x99a, 0xa3: 0x993, 0xa4: 0x9a5, 0xa5: 0x9ac, 0xa6: 0x9b7, 0xa7: 0x9c2, +# 0xa8: 0x9cc, 0xa9: 0x9d3, 0xaa: 0x9dd, 0xab: 0x9e4, 0xac: 0x9ef, 0xad: 0x9f6, 0xae: 0x9f6, 0xaf: 0xa01, +# 0xb0: 0xa08, 0xb1: 0xa14, 0xb2: 0xa1e, 0xb3: 0xa25, 0xb4: 0xa2c, 0xb5: 0xa37, 0xb6: 0xa42, 0xb7: 0x50a, +# 0xb8: 0xa4d, 0xb9: 0xa54, 0xba: 0xa5b, 0xbb: 0xa62, 0xbc: 0xa69, 0xbd: 0xa74, 0xbe: 0xa74, 0xbf: 0xa7f, +# 0xc0: 0xa86, 0xc1: 0xa92, 0xc2: 0xa99, 0xc3: 0xaa0, 0xc4: 0xaa7, 0xc5: 0xab2, 0xc6: 0x50a, 0xc7: 0xab9, +# 0xc8: 0xac0, 0xc9: 0xac7, 0xca: 0xace, 0xcb: 0xace, 0xcc: 0xace, 0xcd: 0xad5, 0xce: 0xad5, 0xcf: 0xadf, +# 0xd0: 0xadf, 0xd1: 0xaeb, 0xd2: 0xaf6, 0xd3: 0xb01, 0xd4: 0xb01, 0xd5: 0xab2, 0xd6: 0x50a, 0xd7: 0xb01, +# 0xd8: 0xb01, 0xd9: 0xb08, 0xda: 0xb0f, 0xdb: 0xace, 0xdc: 0xace, 0xdd: 0xb1a, 0xde: 0xb1a, 0xdf: 0xb21, +# 0xe0: 0xb2c, 0xe1: 0xb37, 0xe2: 0xb3e, 0xe3: 0xb45, 0xe4: 0xb4c, 0xe5: 0xb4c, 0xe6: 0xb53, 0xe7: 0xb53, +# 0xe8: 0xb5a, 0xe9: 0xb68, 0xea: 0xb68, 0xeb: 0xb73, 0xec: 0xb7e, 0xed: 0xb7e, 0xee: 0xb8a, 0xef: 0xb94, +# 0xf0: 0xb53, 0xf1: 0xb53, 0xf2: 0xba0, 0xf3: 0xba0, 0xf4: 0xba5, 0xf5: 0xba5, 0xf6: 0xbac, 0xf7: 0xbac, +# 0xf8: 0xbac, 0xf9: 0xbba, 0xfa: 0xbc1, 0xfb: 0xbcc, 0xfc: 0xbd7, 0xfd: 0xbd7, 0xfe: 0xbba, 0xff: 0xbe3 +# } diff --git a/TestSuite.py b/TestSuite.py new file mode 100644 index 00000000..000f7de4 --- /dev/null +++ b/TestSuite.py @@ -0,0 +1,135 @@ +import subprocess +import sys +import multiprocessing +import concurrent.futures +import argparse +from collections import OrderedDict + +cpu_threads = multiprocessing.cpu_count() +py_version = f"{sys.version_info.major}.{sys.version_info.minor}" + + +def main(args=None): + successes = [] + errors = [] + task_mapping = [] + tests = OrderedDict() + + successes.append(f"Testing {args.dr} DR with {args.count} Tests" + (f" (intensity={args.tense})" if args.dr in ['basic', 'crossed'] else "")) + print(successes[0]) + + max_attempts = args.count + pool = concurrent.futures.ThreadPoolExecutor(max_workers=cpu_threads) + dead_or_alive = 0 + alive = 0 + + def test(testname: str, command: str): + tests[testname] = [command] + for mode in [['Open', ''], + ['Std ', ' --mode standard'], + ['Inv ', ' --mode inverted']]: + + basecommand = f"python3.8 DungeonRandomizer.py --door_shuffle {args.dr} --intensity {args.tense} --suppress_rom --suppress_spoiler" + + def gen_seed(): + taskcommand = basecommand + " " + command + mode[1] + return subprocess.run(taskcommand, capture_output=True, shell=True, text=True) + + for x in range(1, max_attempts + 1): + task = pool.submit(gen_seed) + task.success = False + task.name = testname + task.mode = mode[0] + task.cmd = basecommand + " " + command + mode[1] + task_mapping.append(task) + + test("Vanilla ", "--shuffle vanilla") + test("Retro ", "--retro --shuffle vanilla") + test("Keysanity ", "--shuffle vanilla --keydropshuffle --keysanity") + test("Simple ", "--shuffle simple") + test("Full ", "--shuffle full") + test("Crossed ", "--shuffle crossed") + test("Insanity ", "--shuffle insanity") + + from tqdm import tqdm + with tqdm(concurrent.futures.as_completed(task_mapping), + total=len(task_mapping), unit="seed(s)", + desc=f"Success rate: 0.00%") as progressbar: + for task in progressbar: + dead_or_alive += 1 + try: + result = task.result() + if result.returncode: + errors.append([task.name + task.mode, task.cmd, result.stderr]) + else: + alive += 1 + task.success = True + except Exception as e: + raise e + + progressbar.set_description(f"Success rate: {(alive/dead_or_alive)*100:.2f}% - {task.name}{task.mode}") + + def get_results(testname: str): + result = "" + for mode in ['Open', 'Std ', 'Inv ']: + dead_or_alive = [task.success for task in task_mapping if task.name == testname and task.mode == mode] + alive = [x for x in dead_or_alive if x] + success = f"{testname}{mode} Rate: {(len(alive) / len(dead_or_alive)) * 100:.2f}%" + successes.append(success) + print(success) + result += f"{(len(alive)/len(dead_or_alive))*100:.2f}%\t" + return result.strip() + + results = [] + for t in tests.keys(): + results.append(get_results(t)) + + for result in results: + print(result) + successes.append(result) + + return successes, errors + + +if __name__ == "__main__": + successes = [] + + parser = argparse.ArgumentParser(add_help=False) + parser.add_argument('--count', default=0, type=lambda value: max(int(value), 0)) + parser.add_argument('--cpu_threads', default=cpu_threads, type=lambda value: max(int(value), 1)) + parser.add_argument('--help', default=False, action='store_true') + + args = parser.parse_args() + + if args.help: + parser.print_help() + exit(0) + + cpu_threads = args.cpu_threads + + for dr in [['vanilla', args.count if args.count else 2, 1], + ['basic', args.count if args.count else 5, 3], + ['crossed', args.count if args.count else 10, 3]]: + + for tense in range(1, dr[2] + 1): + args = argparse.Namespace() + args.dr = dr[0] + args.tense = tense + args.count = dr[1] + s, errors = main(args=args) + if successes: + successes += [""] * 2 + successes += s + print() + + if errors: + with open(f"{dr[0]}{(f'-{tense}' if dr[0] in ['basic', 'crossed'] else '')}-errors.txt", 'w') as stream: + for error in errors: + stream.write(error[0] + "\n") + stream.write(error[1] + "\n") + stream.write(error[2] + "\n\n") + + with open("success.txt", "w") as stream: + stream.write(str.join("\n", successes)) + + input("Press enter to continue") diff --git a/Utils.py b/Utils.py index cc5bc74c..18d46667 100644 --- a/Utils.py +++ b/Utils.py @@ -4,6 +4,7 @@ import re import subprocess import sys import xml.etree.ElementTree as ET +from collections import defaultdict def int16_as_bytes(value): value = value & 0xFFFF @@ -225,6 +226,47 @@ def read_entrance_data(old_rom='Zelda no Densetsu - Kamigami no Triforce (Japan) print(string) +def room_palette_data(old_rom): + with open(old_rom, 'rb') as stream: + old_rom_data = bytearray(stream.read()) + + offset = defaultdict(list) + for i in range(0, 256): + pointer_offset = 0x0271e2+i*2 + header_offset = old_rom_data[pointer_offset + 1] << 8 + header_offset += old_rom_data[pointer_offset] + header_offset -= 0x8000 + header_offset += 0x020000 + offset[header_offset].append(i) + # print(f'{hex(i)}: {hex(old_rom_data[header_offset+1])}') + for header_offset, rooms in offset.items(): + print(f'{hex(header_offset)}: {[hex(x) for x in rooms]}') + + + +# Palette notes: +# HC: 0 +# Sewer/Dungeon: 1 +# AT: 0xc near boss, 0x0 (other) 26 (f4, f1) +# Sanc: 0x1d +# Hera: 0x6 +# Desert: 0x4 (boss and near boss), 0x9 (desert tiles 1 + desert main) +# Eastern: 0xb +# Pod: 0xf, x10 (boss) +# Swamp: 0x8 (boss), 0xa (other) +# Skull: 0xe (boss), 0xd (other) +# TT: 0x17, 0x23 (attic) +# Ice: 0x13, 0x14 (boss) +# Mire: 0x11 (other) , 0x12 (boss/preroom) +# TR: 0x18, 0x19 (boss+pre) +# GT: 0x28 (entrance + B1), 0x1a (other) 0x24 (Gauntlet - Lanmo) 0x25 (conveyor-torch-wizzrode moldorm pit f5?) +# Aga2: 0x1b, 0x1b (Pre aga2) +# Caves: 0x7, 0x20 +# Uncle: 0x1 +# Ganon: 0x21 +# Houses: 0x2 + + def print_wiki_doors_by_region(d_regions, world, player): for d, region_list in d_regions.items(): tile_map = {} @@ -415,7 +457,202 @@ def print_graph(world): ET.dump(root) +def extract_data_from_us_rom(rom): + with open(rom, 'rb') as stream: + rom_data = bytearray(stream.read()) + + rooms = [0x9a, 0x69, 0x78, 0x79, 0x7a, 0x88, 0x8a, 0xad] + for room in rooms: + b2idx = room*2 + b3idx = room*3 + headerptr = 0x110000 + b2idx # zscream specific + headerloc = rom_data[headerptr] + rom_data[headerptr+1]*0x100 + 0x108000 # zscream specific + header, objectdata, spritedata, secretdata = [], [], [], [] + for i in range(0, 14): + header.append(rom_data[headerloc+i]) + objectptr = 0xF8000 + b3idx + objectloc = rom_data[objectptr] + rom_data[objectptr+1]*0x100 + rom_data[objectptr+2]*0x10000 + objectloc -= 0x100000 + stop, idx = False, 0 + ffcnt = 0 + mode = 0 + while ffcnt < 2: + b1 = rom_data[objectloc+idx] + b2 = rom_data[objectloc+idx+1] + b3 = rom_data[objectloc+idx+2] + objectdata.append(b1) + objectdata.append(b2) + if b1 == 0xff and b2 == 0xff: + ffcnt += 1 + mode = 0 + if b1 == 0xf0 and b2 == 0xff: + mode = 1 + if not mode and ffcnt < 2: + objectdata.append(b3) + idx += 3 + else: + idx += 2 + spriteptr = 0x4d62e + b2idx + spriteloc = rom_data[spriteptr] + rom_data[spriteptr+1]*0x100 + 0x40000 + done, idx = False, 0 + while not done: + b1 = rom_data[spriteloc+idx] + spritedata.append(b1) + if b1 == 0xff: + done = True + idx += 1 + secretptr = 0xdb69 + b2idx + secretloc = rom_data[secretptr] + rom_data[secretptr+1]*0x100 + done, idx = False, 0 + while not done: + b1 = rom_data[secretloc+idx] + b2 = rom_data[secretloc+idx+1] + b3 = rom_data[secretloc+idx+2] + secretdata.append(b1) + secretdata.append(b2) + if b1 == 0xff and b2 == 0xff: + done = True + else: + secretdata.append(b3) + idx += 3 + + print(f'Room {room:02x}') + print(f'db {",".join([f"${x:02x}" for x in header])}') + print(f'Obj Length: {len(objectdata)}') + print_data_block(objectdata) + print('Sprites') + print_data_block(spritedata) + print('Secrets') + print_data_block(secretdata) + + blockdata, torchdata = [], [] + blockloc = 0x271de + for i in range(0, 128): + idx = i*4 + b1 = rom_data[blockloc+idx] + b2 = rom_data[blockloc+idx+1] + room_idx = b1 + b2*0x100 + if room_idx in rooms: + blockdata.append(b1) + blockdata.append(b2) + blockdata.append(rom_data[blockloc+idx+2]) + blockdata.append(rom_data[blockloc+idx+3]) + torchloc = 0x2736A + nomatch = False + append = False + for i in range(0, 192): + idx = i*2 + b1 = rom_data[torchloc+idx] + b2 = rom_data[torchloc+idx+1] + if nomatch: + if b1 == 0xff and b2 == 0xff: + nomatch = False + elif not append: + room_idx = b1 + b2*0x100 + if room_idx in rooms: + append = True + else: + nomatch = True + if append: + torchdata.append(b1) + torchdata.append(b2) + if b1 == 0xff and b2 == 0xff: + append = False + print('Blocks') + print_data_block(blockdata) + print('Torches') + print_data_block(torchdata) + print() + + +def print_data_block(block): + for i in range(0, len(block)//16 + 1): + slice = block[i*16:i*16+16] + print(f'db {",".join([f"${x:02x}" for x in slice])}') + + +def extract_data_from_jp_rom(rom): + with open(rom, 'rb') as stream: + rom_data = bytearray(stream.read()) + + # rooms = [0x7b, 0x7c, 0x7d, 0x8b, 0x8c, 0x8d, 0x9b, 0x9c, 0x9d] + rooms = [0x1a, 0x2a, 0xd1] + for room in rooms: + b2idx = room*2 + b3idx = room*3 + headerptr = 0x271e2 + b2idx + headerloc = rom_data[headerptr] + rom_data[headerptr+1]*0x100 + 0x18000 + header, objectdata, spritedata, secretdata = [], [], [], [] + for i in range(0, 14): + header.append(rom_data[headerloc+i]) + objectptr = 0xF8000 + b3idx + objectloc = rom_data[objectptr] + rom_data[objectptr+1]*0x100 + rom_data[objectptr+2]*0x10000 + objectloc -= 0x100000 + stop, idx = False, 0 + ffcnt = 0 + mode = 0 + while ffcnt < 2: + b1 = rom_data[objectloc+idx] + b2 = rom_data[objectloc+idx+1] + b3 = rom_data[objectloc+idx+2] + objectdata.append(b1) + objectdata.append(b2) + if b1 == 0xff and b2 == 0xff: + ffcnt += 1 + mode = 0 + if b1 == 0xf0 and b2 == 0xff: + mode = 1 + if not mode and ffcnt < 2: + objectdata.append(b3) + idx += 3 + else: + idx += 2 + spriteptr = 0x4d62e + b2idx + spriteloc = rom_data[spriteptr] + rom_data[spriteptr+1]*0x100 + 0x40000 + secretptr = 0xdb67 + b2idx + secretloc = rom_data[secretptr] + rom_data[secretptr+1]*0x100 + done, idx = False, 0 + while not done: + b1 = rom_data[spriteloc+idx] + spritedata.append(b1) + if b1 == 0xff: + done = True + idx += 1 + done, idx = False, 0 + while not done: + b1 = rom_data[secretloc+idx] + b2 = rom_data[secretloc+idx+1] + b3 = rom_data[secretloc+idx+2] + secretdata.append(b1) + secretdata.append(b2) + if b1 == 0xff and b2 == 0xff: + done = True + else: + secretdata.append(b3) + idx += 3 + print(f'Room {room:02x}') + print(f'HeaderPtr {headerptr:06x}') + print(f'HeaderLoc {headerloc:06x}') + print(f'db {",".join([f"${x:02x}" for x in header])}') + print(f'Obj Length: {len(objectdata)}') + print(f'ObjectPtr {objectptr:06x}') + print(f'ObjectLoc {objectloc:06x}') + for i in range(0, len(objectdata)//16 + 1): + slice = objectdata[i*16:i*16+16] + print(f'db {",".join([f"${x:02x}" for x in slice])}') + print(f'SpritePtr {spriteptr:06x}') + print(f'SpriteLoc {spriteloc:06x}') + print_data_block(spritedata) + print(f'SecretPtr {secretptr:06x}') + print(f'SecretLoc {secretloc:06x}') + print_data_block(secretdata) + print() + + if __name__ == '__main__': # make_new_base2current() # read_entrance_data(old_rom=sys.argv[1]) - read_layout_data(old_rom=sys.argv[1]) + # room_palette_data(old_rom=sys.argv[1]) + # extract_data_from_us_rom(sys.argv[1]) + extract_data_from_jp_rom(sys.argv[1]) + diff --git a/asm/doorrando.asm b/asm/doorrando.asm index 3dcbfa68..7de554fd 100644 --- a/asm/doorrando.asm +++ b/asm/doorrando.asm @@ -1,4 +1,5 @@ !add = "clc : adc" +!addl = "clc : adc.l" !sub = "sec : sbc" !bge = "bcs" !blt = "bcc" @@ -33,6 +34,11 @@ incsrc overrides.asm incsrc edges.asm incsrc math.asm incsrc hudadditions.asm +incsrc dr_lobby.asm warnpc $279700 incsrc doortables.asm +warnpc $288000 + +; deals with own hooks +incsrc keydropshuffle.asm diff --git a/asm/doortables.asm b/asm/doortables.asm index 5807a6b9..40276be2 100644 --- a/asm/doortables.asm +++ b/asm/doortables.asm @@ -39,21 +39,22 @@ db $70 org $279F00 DoorOffset: -db $00,$01,$02,$00,$03,$00,$04,$00,$00,$00,$00,$00,$00,$05,$00,$00 +db $00,$01,$02,$00,$03,$00,$04,$00,$00,$00,$00,$00,$9A,$05,$99,$00 db $00,$06,$07,$08,$09,$0A,$0B,$00,$00,$0C,$0D,$0E,$00,$0F,$10,$11 -db $12,$13,$14,$15,$16,$00,$17,$00,$00,$00,$18,$19,$00,$00,$1A,$00 +db $12,$13,$14,$15,$16,$00,$17,$00,$98,$00,$18,$19,$00,$00,$1A,$00 db $1B,$00,$1C,$1D,$1E,$1F,$20,$21,$22,$23,$24,$25,$00,$26,$27,$00 db $96,$28,$97,$29,$2A,$2B,$2C,$00,$00,$2D,$2E,$2F,$30,$31,$32,$00 db $33,$34,$35,$36,$00,$00,$37,$38,$39,$3A,$3B,$3C,$3D,$3E,$3F,$40 -db $41,$42,$43,$00,$00,$00,$44,$45,$46,$00,$47,$48,$49,$4A,$4B,$00 -db $00,$4C,$00,$00,$00,$4D,$4E,$00,$00,$00,$00,$4F,$50,$51,$52,$53 -db $00,$54,$00,$00,$00,$55,$00,$00,$00,$00,$00,$56,$57,$58,$59,$00 -db $5A,$5B,$5C,$5D,$00,$5E,$5F,$00,$00,$60,$00,$61,$62,$63,$64,$65 +db $41,$42,$43,$A0,$00,$00,$44,$45,$46,$00,$47,$48,$49,$4A,$4B,$00 +; 0 1 2 3 4 5 6 7 8 9 a b c d e f --Offset Ruler +db $00,$4C,$00,$00,$00,$4D,$4E,$9E,$00,$00,$00,$4F,$50,$51,$52,$53 +db $00,$54,$00,$9C,$9D,$55,$00,$00,$00,$00,$00,$56,$57,$58,$59,$00 +db $5A,$5B,$5C,$5D,$00,$5E,$5F,$00,$9B,$60,$00,$61,$62,$63,$64,$65 db $66,$67,$68,$69,$6A,$6B,$00,$00,$6C,$6D,$6E,$6F,$70,$00,$71,$72 db $00,$73,$74,$75,$76,$77,$78,$79,$7A,$7B,$7C,$7D,$7E,$00,$7F,$80 db $00,$81,$82,$83,$84,$85,$86,$87,$88,$89,$00,$8A,$8B,$00,$8C,$00 db $00,$8D,$8E,$00,$00,$8F,$90,$00,$91,$92,$93,$94,$95,$00,$00,$00 -db $00 +db $9f org $27A000 DoorTable: @@ -210,7 +211,16 @@ dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; TT SE Quad dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Aga 6F dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Sewers Rope -; this should end at 27AE40 about (152 * 24 bytes = 3648 or E40) +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Swamp Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Ice Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; GT Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Mire Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Desert West Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Desert Main Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Hera Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Tower Lobby +dw $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003, $0003 ; Desert Back Lobby +; this should end at 27AF18 about (160 * 24 bytes = 3840 or F18) ; some values you can hardcode for spirals ;dw $0070, $36a0 ; ->HC Stairwell ;dw $0072, $4ff8 ; ->HC Map Room @@ -552,23 +562,26 @@ db $01, $02, $03, $04, $05, $06, $0a, $14 ; HC HC EP DP AT SP PD MM SW IP TH TT TR GT org $27f000 CompassBossIndicator: -dw $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000 -TotalKeys: ;27f01c -db $04, $04, $02, $04, $04, $06, $06, $06, $05, $06, $01, $03, $06, $08 -ChestKeys: ;27f02a -db $01, $01, $00, $01, $02, $01, $06, $03, $03, $02, $01, $01, $04, $04 -BigKeyStatus: ;27f038 (status 2 indicate BnC guard) -dw $0002, $0002, $0001, $0001, $0000, $0001, $0001, $0001, $0001, $0001, $0001, $0001, $0001, $0001 -DungeonReminderTable: ;27f054 -dw $2D50, $2D50, $2D51, $2D52, $2D54, $2D56, $2D55, $2D5A, $2D57, $2D59, $2D53, $2D58, $2D5B, $2D5C -TotalLocationsLow: ;27f070 -db $08, $08, $06, $06, $02, $00, $04, $08, $08, $08, $06, $08, $02, $07 -TotalLocationsHigh: ;27f07e -db $00, $00, $00, $00, $00, $01, $01, $00, $00, $00, $00, $00, $01, $02 -;27F08C +dw $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000, $0000 +TotalKeys: ;27f020 +db $04, $04, $02, $04, $04, $06, $06, $06, $05, $06, $01, $03, $06, $08, $00, $00 +ChestKeys: ;27f030 +db $01, $01, $00, $01, $02, $01, $06, $03, $03, $02, $01, $01, $04, $04, $00, $00 +BigKeyStatus: ;27f040 (status 2 indicate BnC guard) +dw $0002, $0002, $0001, $0001, $0000, $0001, $0001, $0001, $0001, $0001, $0001, $0001, $0001, $0001, $0000, $0000 +DungeonReminderTable: ;27f060 +dw $2D50, $2D50, $2D51, $2D52, $2D54, $2D56, $2D55, $2D5A, $2D57, $2D59, $2D53, $2D58, $2D5B, $2D5C, $0000, $0000 +TotalLocationsLow: ;27f080 +db $08, $08, $06, $06, $02, $00, $04, $08, $08, $08, $06, $08, $02, $07, $00, $00 +TotalLocationsHigh: ;27f090 +db $00, $00, $00, $00, $00, $01, $01, $00, $00, $00, $00, $00, $01, $02, $00, $00 +org $27f0a0 +TotalLocations: +db $08, $08, $06, $06, $02, $0a, $0e, $08, $08, $08, $06, $08, $0c, $1b, $00, $00 +; no more room here ; Vert 0,6,0 Horz 2,0,8 -org $27f090 +org $27f0b0 CoordIndex: ; Horizontal 1st db 2, 0 ; Coordinate Index $20-$23 OppCoordIndex: @@ -588,7 +601,16 @@ dw $007f, $0077 ; Left/Top camera bounds when at edge or layout frozen dw $0007, $000b ; Left/Top camera bounds when not frozen + appropriate low byte $22/$20 (preadj. by #$78/#$6c) dw $00ff, $010b ; Right/Bot camera bounds when not frozen + appropriate low byte $20/$22 dw $017f, $0187 ; Right/Bot camera bound when at edge or layout frozen -;27f0ae next free byte +;27f0ce next free byte + +org $27f0f0 +RemoveRainDoorsRoom: +dw $0060, $0062, $ffff ; ffff indicates end of list +RainDoorMatch: ; org $27f0f6 and f8 for now +dw $0081, $0061 ; not xba'd +BlockSanctuaryDoorInRain: ;27f0fa +dw $0000 + org $27f100 TilesetTable: @@ -609,5 +631,30 @@ db $04,$0c,$0c,$0c,$0d,$0d,$0d,$0d,$05,$05,$ff,$0a,$0a,$ff,$0b,$ff db $04,$0c,$0c,$ff,$ff,$0d,$0d,$ff,$05,$05,$05,$0a,$0a,$ff,$0b,$06 db $04,$06,$06,$06,$06,$06,$06,$06,$06,$ff,$06,$06,$ff,$06,$06,$06 db $06,$06,$03,$03,$03,$03,$ff,$ff,$06,$06,$06,$06,$ff,$06,$06,$06 -;27f200 +;27f200 +PaletteTable: +db $21,$00,$00,$07,$00,$08,$00,$00,$07,$00,$00,$00,$00,$00,$00,$21 +db $21,$00,$00,$00,$00,$00,$00,$00,$07,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$0e,$00,$00,$07,$00,$00,$07 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$07,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$13 +db $00,$00,$00,$00,$00,$01,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +; 0 1 2 3 4 5 6 7 8 9 a b c d e f --Offset Ruler +db $00,$00,$00,$00,$00,$00,$00,$06,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 +db $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$14,$20 +db $00,$07,$20,$20,$07,$07,$07,$07,$07,$20,$20,$07,$20,$20,$20,$20 +db $07,$07,$02,$02,$02,$02,$07,$07,$07,$20,$20,$07,$20,$20,$20,$07 + +;27f300 + +; +org $27ff00 +SancDarkWorldFlag: +db 0 diff --git a/asm/dr_lobby.asm b/asm/dr_lobby.asm new file mode 100644 index 00000000..c2f08fa6 --- /dev/null +++ b/asm/dr_lobby.asm @@ -0,0 +1,9 @@ +CheckDarkWorldSanc: + STA $A0 : STA $048E ; what we wrote over + LDA.l SancDarkWorldFlag : BEQ + + SEP #$30 + LDA $A0 : CMP #$12 : BNE ++ + LDA.l $7EF357 : BNE ++ ; moon pearl? + LDA #$17 : STA $5D : INC $02E0 : LDA.b #$40 : STA !DARK_WORLD + ++ REP #$30 ++ RTL diff --git a/asm/drhooks.asm b/asm/drhooks.asm index 24eb0aa6..43802ce7 100644 --- a/asm/drhooks.asm +++ b/asm/drhooks.asm @@ -59,6 +59,15 @@ rts nop #5 .done +org $01b618 ; Bank01.asm : 7963 Dungeon_LoadHeader (REP #$20 : INY : LDA [$0D], Y) +nop : jsl OverridePaletteHeader + +org $02817e ; Bank02.asm : 414 (LDA $02811E, X) +jsl FixAnimatedTiles + +org $028a06 ; Bank02.asm : 1941 Dungeon_ResetTorchBackgroundAndPlayer +JSL FixWallmasterLamp + org $00d377 ;Bank 00 line 3185 DecompDungAnimatedTiles: org $00fda4 ;Bank 00 line 8882 @@ -101,10 +110,6 @@ nop : stz $0dd0, X : rts .not_in_ganons_tower -org $208206 -jsl MirrorCheckOverride2 -org $208270 -jsl MirrorCheckOverride2 org $07a955 ; <- Bank07.asm : around 6564 (JP is a bit different) (STZ $05FC : STZ $05FD) jsl BlockEraseFix nop #2 @@ -123,19 +128,36 @@ nop #3 org $028fc9 nop #2 : jsl BlindAtticFix -; also rando's hooks.asm line 1360 -; 106e4e -> goes to a0ee4e -org $a0ee8a ; <- 6FC4C - headsup_display.asm : 836 (LDA $7EF36E : AND.w #$00FF : ADD.w #$0007 : AND.w #$FFF8 : TAX) -jsl DrHudOverride +org $028409 +jsl SuctionOverworldFix + org $0ded04 ; <- rando's hooks.asm line 2192 - 6ED04 - equipment.asm : 1963 (REP #$30) jsl DrHudDungeonItemsAdditions -org $098638 ; rando's hooks.asm line 2192 -jsl CountChestKeys +;org $098638 ; rando's hooks.asm line 2192 +;jsl CountChestKeys org $06D192 ; rando's hooks.asm line 457 jsl CountAbsorbedKeys ; rando's hooks.asm line 1020 -org $05FC7E ; <- 2FC7E - sprite_dash_item.asm : 118 (LDA $7EF36F : INC A : STA $7EF36F) -jsl CountBonkItem +;org $05FC7E ; <- 2FC7E - sprite_dash_item.asm : 118 (LDA $7EF36F : INC A : STA $7EF36F) +;jsl CountBonkItem + +org $019dbd ; <- Bank01.asm : 4465 of Object_Draw8xN (LDA $9B52, Y : STA $7E2000, X) +jsl CutoffEntranceRug : bra .nextTile : nop +.nextTile + +;maybe set 02e2 to 0 + +org $0799de ; <- Bank07.asm : 4088 (LDA.b #$15 : STA $5D) +JSL StoreTempBunnyState +; +org $08c450 ; <- ancilla_receive_item.asm : 146-148 (STY $5D : STZ $02D8) +JSL RetrieveBunnyState : NOP + +org $02d9ce ; <- Bank02.asm : Dungeon_LoadEntrance 10829 (STA $A0 : STA $048E) +JSL CheckDarkWorldSanc : NOP + +org $01891e ; <- Bank 01.asm : 991 Dungeon_LoadType2Object (LDA $00 : XBA : AND.w #$00FF) +JSL RainPrevention : NOP #2 ; These two, if enabled together, have implications for vanilla BK doors in IP/Hera/Mire ; IPBJ is common enough to consider not doing this. Mire is not a concern for vanilla - maybe glitched modes diff --git a/asm/gfx.asm b/asm/gfx.asm index 71925068..b22fba62 100644 --- a/asm/gfx.asm +++ b/asm/gfx.asm @@ -33,6 +33,23 @@ GfxFixer: rtl } +FixAnimatedTiles: + LDA.L DRMode : CMP #$02 : BNE + + LDA $040C : CMP.b #$FF : BEQ + + PHX + LDX $A0 : LDA.l TilesetTable, x + CMP $0AA1 : beq ++ + TAX : PLA : BRA + + ++ + PLX + + LDA $02802E, X ; what we wrote over + RTL + +FixWallmasterLamp: +ORA $0458 +STY $1C : STA $1D : RTL ; what we wrote over + + CgramAuxToMain: ; ripped this from bank02 because it ended with rts { rep #$20 @@ -54,4 +71,15 @@ CgramAuxToMain: ; ripped this from bank02 because it ended with rts ; tell NMI to upload new CGRAM data inc $15 rts -} \ No newline at end of file +} + +OverridePaletteHeader: + lda.l DRMode : cmp #$02 : bne + + lda.l DRFlags : and #$20 : bne + + cpx #$01c2 : !bge + + rep #$20 + txa : lsr : tax + lda.l PaletteTable, x + iny : rtl + + rep #$20 : iny : lda [$0D], Y ; what we wrote over +rtl \ No newline at end of file diff --git a/asm/hudadditions.asm b/asm/hudadditions.asm index 75e75e3e..9b78a0a4 100644 --- a/asm/hudadditions.asm +++ b/asm/hudadditions.asm @@ -13,15 +13,11 @@ HudAdditions: LDX.b $05 : TXA : ORA.w #$2400 : STA !GOAL_DRAW_ADDRESS+10 ; draw 100's digit LDX.b $06 : TXA : ORA.w #$2400 : STA !GOAL_DRAW_ADDRESS+12 ; draw 10's digit LDX.b $07 : TXA : ORA.w #$2400 : STA !GOAL_DRAW_ADDRESS+14 ; draw 1's digit - - lda $7ef29b : and #$0020 : beq + - lda #$207f : bra .drawthing - + lda #$345e - .drawthing STA !GOAL_DRAW_ADDRESS+16 ; castle gate indicator ++ - ldx $040c : cpx #$ff : bne + : rts : + - lda.l DRMode : bne + : rts : + + LDX $1B : BNE + : RTS : + ; Skip if outdoors + ldx $040c : cpx #$ff : bne + : rts : + ; Skip if not in dungeon + lda.l DRMode : bne + : rts : + ; Skip if not door rando phb : phk : plb lda $7ef364 : and.l $0098c0, x : beq + lda.w CompassBossIndicator, x : and #$00ff : cmp $a0 : bne + @@ -35,35 +31,32 @@ HudAdditions: .reminder sta $7ec702 + lda.w DRFlags : and #$0004 : beq .restore lda $7ef368 : and.l $0098c0, x : beq .restore - -; lda #$2811 : sta $7ec740 -; lda $7ef366 : and.l $0098c0, x : bne .check -; lda.w BigKeyStatus, x : bne + ; change this, if bk status changes to one byte -; lda #$2574 : bra ++ -; + cmp #$0002 : bne + -; lda #$2420 : bra ++ -; + lda #$207f : bra ++ -; .check lda #$2826 -; ++ sta $7ec742 txa : lsr : tax - lda $7ef4e0, x : jsr ConvertToDisplay : sta $7ec7a2 - lda #$2830 : sta $7ec7a4 + lda.l GenericKeys : and #$00ff : bne + + lda $7ef4e0, x : jsr ConvertToDisplay : sta $7ec7a2 + lda #$2830 : sta $7ec7a4 + + lda.w ChestKeys, x : jsr ConvertToDisplay : sta $7ec7a6 - -; lda #$2871 : sta $7ec780 -; lda.w TotalKeys, x -; sep #$20 : !sub $7ef4b0, x : rep #$20 ; todo 4b0 no longer in use -; jsr ConvertToDisplay : sta $7ec782 + ; todo 4b0 no longer in use .restore plb : rts } +;column distance for BK/Smalls HudOffsets: ; none hc east desert aga swamp pod mire skull ice hera tt tr gt dw $fffe, $0000, $0006, $0008, $0002, $0010, $000e, $0018, $0012, $0016, $000a, $0014, $001a, $001e +; offset from 1644 +RowOffsets: +dw $0000, $0000, $0040, $0080, $0000, $0080, $0040, $0080, $00c0, $0040, $00c0, $0000, $00c0, $0000 + +ColumnOffsets: +dw $0000, $0000, $0000, $0000, $000a, $000a, $000a, $0014, $000a, $0014, $0000, $0014, $0014, $001e + + DrHudDungeonItemsAdditions: { jsl DrawHUDDungeonItems @@ -73,34 +66,90 @@ DrHudDungeonItemsAdditions: phx : phy : php rep #$30 - lda !HUD_FLAG : and.w #$0020 : beq + : bra ++ : + - lda HUDDungeonItems : and.w #$0003 : bne + : bra ++ : + - lda.w #$2810 : sta $1684 ; small keys icon - lda.w #$2811 : sta $16c4 ; big key icon - lda.w #$2810 : sta $1704 ; small keys icon + lda.w #$24f5 : sta $1606 : sta $1610 : sta $161a : sta $1624 + sta $1644 : sta $164a : sta $1652 : sta $1662 : sta $1684 : sta $16c4 + ldx #$0000 + - sta $1704, x : sta $170e, x : sta $1718, x + inx #2 : cpx #$0008 : !blt - + + lda !HUD_FLAG : and.w #$0020 : beq + : brl ++ : + + lda HUDDungeonItems : and.w #$0007 : bne + : brl ++ : + + ; bk symbols + lda.w #$2811 : sta $1606 : sta $1610 : sta $161a : sta $1624 + ; sm symbols + lda.w #$2810 : sta $160a : sta $1614 : sta $161e : sta $16e4 + ; blank out stuff + lda.w #$24f5 : sta $1724 + ldx #$0002 - - lda $7ef364 : and.l $0098c0, x : beq + ; must have compass - lda.l HudOffsets, x : tay - jsr BkStatus : sta $16C6, y ; big key status - phx - txa : lsr : tax - lda.l ChestKeys, x : jsr ConvertToDisplay2 : sta $1706, y ; small key totals - plx - + inx #2 : cpx #$001b : bcc - + - lda #$0000 : !addl RowOffsets,x : !addl ColumnOffsets, x : tay + lda.l DungeonReminderTable, x : sta $1644, y : iny #2 + lda.w #$24f5 : sta $1644, y + lda $7ef368 : and.l $0098c0, x : beq + ; must have map + jsr BkStatus : sta $1644, y : bra .smallKey ; big key status + + lda $7ef366 : and.l $0098c0, x : beq .smallKey + lda.w #$2826 : sta $1644, y + .smallKey + + iny #2 + cpx #$001a : bne + + tya : !add #$003c : tay + + stx $00 + txa : lsr : tax + lda.w #$24f5 : sta $1644, y + lda.l GenericKeys : and #$00FF : bne + + lda.l $7ef37c, x : and #$00FF : beq + + jsr ConvertToDisplay2 : sta $1644, y + + iny #2 : lda.w #$24f5 : sta $1644, y + phx : ldx $00 + lda $7ef368 : and.l $0098c0, x : beq + ; must have map + plx : sep #$30 : lda.l ChestKeys, x : sta $02 + lda.l GenericKeys : bne +++ + lda $02 : !sub $7ef4e0, x : sta $02 + +++ lda $02 + rep #$30 + jsr ConvertToDisplay2 : sta $1644, y ; small key totals + bra .skipStack + + plx + .skipStack iny #2 + cpx #$000d : beq + + lda.w #$24f5 : sta $1644, y + + + ldx $00 + + inx #2 : cpx #$001b : bcs ++ : brl - ++ - lda !HUD_FLAG : and.w #$0020 : bne + : bra ++ : + - lda HUDDungeonItems : and.w #$000c : bne + : bra ++ : + - lda.w #$24f5 : sta $1704 ; blank + lda !HUD_FLAG : and.w #$0020 : bne + : brl ++ : + + lda HUDDungeonItems : and.w #$000c : bne + : brl ++ : + + ; map symbols (do I want these) ; note compass symbol is 2c20 + lda.w #$2821 : sta $1606 : sta $1610 : sta $161a : sta $1624 + ; blank out a couple thing from old hud + lda.w #$24f5 : sta $16e4 : sta $1724 + sta $160a : sta $1614 : sta $161e ; blank out sm key indicators ldx #$0002 - - lda $7ef364 : and.l $0098c0, x : beq + ; must have compass - lda.l HudOffsets, x : tay + - lda #$0000 ; start of hud area + !addl RowOffsets, x : !addl ColumnOffsets, x : tay + lda.l DungeonReminderTable, x : sta $1644, y + iny #2 + lda.w #$24f5 : sta $1644, y ; blank out map spot + lda $7ef368 : and.l $0098c0, x : beq + ; must have map + lda #$2826 : sta $1644, y ; check mark + + iny #2 + cpx #$001a : bne + + tya : !add #$003c : tay + + lda $7ef364 : and.l $0098c0, x : beq + ; must have compass phx ; total chest counts txa : lsr : tax - lda.l TotalLocationsLow, x : jsr ConvertToDisplay2 : sta $1706, y - lda.l TotalLocationsHigh, x : jsr ConvertToDisplay2 : sta $16c6, y + sep #$30 + lda.l TotalLocations, x : !sub $7EF4BF, x : JSR HudHexToDec2DigitCopy + rep #$30 + lda $06 : jsr ConvertToDisplay2 : sta $1644, y : iny #2 + lda $07 : jsr ConvertToDisplay2 : sta $1644, y plx - + - + inx #2 : cpx #$001b : bcc - + bra .skipBlanks + + lda.w #$24f5 : sta $1644, y : iny #2 : sta $1644, y + .skipBlanks iny #2 + cpx #$001a : beq + + lda.w #$24f5 : sta $1644, y ; blank out spot + + inx #2 : cpx #$001b : !bge ++ : brl - ++ plp : ply : plx : rtl } @@ -108,7 +157,7 @@ DrHudDungeonItemsAdditions: BkStatus: lda $7ef366 : and.l $0098c0, x : bne +++ ; has the bk already lda.l BigKeyStatus, x : bne ++ - lda #$2482 : rts ; 0/O for no BK + lda #$2827 : rts ; 0/O for no BK ++ cmp #$0002 : bne + lda #$2420 : rts ; symbol for BnC + lda #$24f5 : rts ; black otherwise @@ -124,29 +173,7 @@ ConvertToDisplay2: cmp #$000a : !blt + !add #$2553 : rts + !add #$2816 : rts - ++ lda #$2483 : rts ; 0/O for 0 or placeholder digit - -CountChestKeys: - jsl ItemDowngradeFix - jsr CountChest - rtl - -CountChest: - lda !MULTIWORLD_ITEM_PLAYER_ID : bne .end - cpy #$24 : beq + - cpy #$a0 : !blt .end - cpy #$ae : !bge .end - pha : phx - tya : and #$0f : bne ++ - inc a - ++ tax : bra .count - + pha : phx - lda $040c : lsr : tax - .count - lda $7ef4b0, x : inc : sta $7ef4b0, x - lda $7ef4e0, x : inc : sta $7ef4e0, x - .restore plx : pla - .end rts + ++ lda #$2827 : rts ; 0/O for 0 or placeholder digit ;2483 CountAbsorbedKeys: jsl IncrementSmallKeysNoPrimary : phx @@ -155,20 +182,6 @@ CountAbsorbedKeys: lda $7ef4b0, x : inc : sta $7ef4b0, x + plx : rtl -CountBonkItem: - jsl GiveBonkItem - lda $a0 ; check room ID - only bonk keys in 2 rooms so we're just checking the lower byte - cmp #115 : bne + ; Desert Bonk Key - lda.l BonkKey_Desert - bra ++ - + : cmp #140 : bne + ; GTower Bonk Key - lda.l BonkKey_GTower - bra ++ - + lda.b #$24 ; default to small key - ++ cmp #$24 : bne + - phy : tay : jsr CountChest : ply - + rtl - ;================================================================================ ; 16-bit A, 8-bit X ; in: A(b) - Byte to Convert @@ -200,4 +213,27 @@ HudHexToDec4DigitCopy: DEC : BNE - + STY $07 ; Store 1s digit +RTS + +;================================================================================ +; 8-bit registers +; in: A(b) - Byte to Convert +; out: $06 - $07 (high - low) +;================================================================================ +HudHexToDec2DigitCopy: ; modified + PHY + LDY.b #$00 + - + CMP.b #10 : !BLT + + INY + SBC.b #10 : BRA - + + + STY $06 : LDY #$00 ; Store 10s digit and reset Y + CMP.b #1 : !BLT + + - + INY + DEC : BNE - + + + STY $07 ; Store 1s digit + PLY RTS \ No newline at end of file diff --git a/asm/keydropshuffle.asm b/asm/keydropshuffle.asm new file mode 100644 index 00000000..a150774f --- /dev/null +++ b/asm/keydropshuffle.asm @@ -0,0 +1,181 @@ +org $06926e ; <- 3126e - sprite_prep.asm : 2664 (LDA $0B9B : STA $0CBA, X) +jsl SpriteKeyPrep : nop #2 + +org $06d049 ; <- 35049 sprite_absorbable : 31-32 (JSL Sprite_DrawRippleIfInWater : JSR Sprite_DrawAbsorbable) +jsl SpriteKeyDrawGFX : bra + : nop : + + +org $06d180 +jsl BigKeyGet : bcs $07 : nop #5 + +org $06d18d ; <- 3518D - sprite_absorbable.asm : 274 (LDA $7EF36F : INC A : STA $7EF36F) +jsl KeyGet + +org $06f9f3 ; bank06.asm : 6732 (JSL Sprite_LoadProperties) +jsl LoadProperties_PreserveItemMaybe + + + + +org $06d23a +Sprite_DrawAbsorbable: +org $1eff81 +Sprite_DrawRippleIfInWater: +org $0db818 +Sprite_LoadProperties: + +org $288000 ;140000 +ShuffleKeyDrops: +db 0 +ShuffleKeyDropsReserved: +db 0 + +LootTable: ;PC: 140002 +db $0e, $00, $24 ;; ice jelly key +db $13, $00, $24 ;; pokey 2 +db $16, $00, $24 ;; swamp waterway pot +db $21, $00, $24 ;; key rat +db $35, $00, $24 ;; swamp trench 2 pot +db $36, $00, $24 ;; hookshot pot +db $37, $00, $24 ;; trench 1 pot +db $38, $00, $24 ;; pot row pot +db $39, $00, $24 ;; skull gibdo +db $3d, $00, $24 ;; gt minihelma +db $3e, $00, $24 ;; ice conveyor +db $3f, $00, $24 ;; ice hammer block ??? is this a dungeon secret? +db $43, $00, $24 ;; tiles 2 pot +db $53, $00, $24 ;; beamos hall pot +db $56, $00, $24 ;; skull west lobby pot +db $63, $00, $24 ;; desert tiles 1 pot +db $71, $00, $24 ;; boomerang guard +db $72, $00, $24 ;; hc map guard +db $7b, $00, $24 ;; gt star pits pot +db $80, $00, $32 ;; a big key (for the current dungeon) +db $8b, $00, $24 ;; gt conv cross block +db $9b, $00, $24 ;; gt dlb switch pot +db $9f, $00, $24 ;; ice many pots +db $99, $00, $24 ;; eastern eyegore +db $a1, $00, $24 ;; mire fishbone pot +db $ab, $00, $24 ;; tt spike switch pot +db $b0, $00, $24 ;; tower circle of pots usain +db $b3, $00, $24 ;; mire spikes pot +db $b6, $00, $24 ;; pokey 1 +db $ba, $00, $24 ;; eastern dark pot +db $bc, $00, $24 ;; tt hallway pot +db $c0, $00, $24 ;; tower dark archer +db $c1, $00, $24 ;; mire glitchy jelly +db $ff, $00, $ff +;140068 + +KeyTable: +db $a0, $a0, $a2, $a3, $a4, $a5, $a6, $a7, $a8, $a9, $aa, $ab, $ac, $ad + +SpriteKeyPrep: +{ + lda $0b9b : sta $0cba, x ; what we wrote over + pha + lda.l ShuffleKeyDrops : beq + + phx + ldx #$fd + - inx #3 : lda.l LootTable, x : cmp #$ff : beq ++ : cmp $a0 : bne - + inx : lda.l LootTable, x : sta !MULTIWORLD_SPRITEITEM_PLAYER_ID + inx : lda.l LootTable, x + plx : sta $0e80, x + cmp #$24 : bne +++ + lda $a0 : cmp #$80 : bne + : lda #$24 + +++ jsl PrepDynamicTile : bra + + ++ plx : lda #$24 : sta $0e80, x + + pla + rtl +} + +SpriteKeyDrawGFX: +{ + jsl Sprite_DrawRippleIfInWater + pha + lda.l ShuffleKeyDrops : bne + + - pla + phk : pea.w .jslrtsreturn-1 + pea.w $068014 ; an rtl address - 1 in Bank06 + jml Sprite_DrawAbsorbable + .jslrtsreturn + rtl + + lda $0e80, x + cmp #$24 : bne + + lda $a0 : cmp #$80 : bne - : lda #$24 + + jsl DrawDynamicTile ; see DrawHeartPieceGFX if problems + cmp #$03 : bne + + pha : lda $0e60, x : ora.b #$20 : sta $0E60, x : pla + + + jsl.l Sprite_DrawShadowLong + + pla : rtl +} + +KeyGet: +{ + lda $7ef36f ; what we wrote over + pha + lda.l ShuffleKeyDrops : bne + + - pla : rtl + + ldy $0e80, x + lda $a0 : cmp #$87 : bne + + jsr ShouldKeyBeCountedForDungeon : bcc - + jsl CountChestKeyLong : bra - + + sty $00 + jsr KeyGetPlayer : sta !MULTIWORLD_ITEM_PLAYER_ID + lda !MULTIWORLD_ITEM_PLAYER_ID : bne .receive + phx + lda $040c : lsr : tax + lda $00 : CMP.l KeyTable, x : bne + + - JSL.l FullInventoryExternal : jsl CountChestKeyLong : plx : pla : rtl + + cmp #$af : beq - ; universal key + cmp #$24 : beq - ; small key for this dungeon + plx + .receive + jsl.l $0791b3 ; Player_HaltDashAttackLong + jsl.l Link_ReceiveItem + pla : dec : rtl +} + +; Input Y - the item type +ShouldKeyBeCountedForDungeon: +{ + phx + lda $040c : lsr : tax + tya : cmp KeyTable, x : bne + + - plx : sec : rts + + cmp #$24 : beq - + plx : clc : rts +} + +BigKeyGet: +{ + lda.l ShuffleKeyDrops : bne + + - stz $02e9 : ldy.b #$32 ; what we wrote over + phx : jsl Link_ReceiveItem : plx ; what we wrote over + clc : rtl + + + ldy $0e80, x + cpy #$32 : beq - + + sec : rtl +} + +KeyGetPlayer: +{ + phx + ldx #$fd + - inx #3 : lda.l LootTable, x : cmp #$ff : beq ++ : cmp $a0 : bne - + ++ inx : lda.l LootTable, x + plx + rts +} + +LoadProperties_PreserveItemMaybe: +{ + lda.l ShuffleKeyDrops : bne + + jsl Sprite_LoadProperties : rtl + + lda $0e80, x : pha + jsl Sprite_LoadProperties + pla : sta $0e80, x + rtl +} diff --git a/asm/normal.asm b/asm/normal.asm index 51df4f45..5d8b6043 100644 --- a/asm/normal.asm +++ b/asm/normal.asm @@ -190,8 +190,9 @@ PrepScrollToEdge: + sta $05 lda $01 : and #$10 : beq + lda #01 - + sta $ee - rts + + sta $ee : bne + + stz $0476 + + rts } ; Normal Flags should be in $01 @@ -199,7 +200,9 @@ PrepScrollToEdge: PrepScrollToNormal: { lda $01 : sta $fe : and #$04 : lsr #2 : sta $ee ; trap door and layer - stz $05 : lda #$78 : sta $04 + bne + + stz $0476 + + stz $05 : lda #$78 : sta $04 lda $01 : and #$03 : beq .end cmp #$02 : !bge + lda #$f8 : sta $04 : bra .end diff --git a/asm/overrides.asm b/asm/overrides.asm index 90ba11cb..b29c6bc1 100644 --- a/asm/overrides.asm +++ b/asm/overrides.asm @@ -11,7 +11,7 @@ LampCheckOverride: LDA $7EF3CA : BNE + .lightWorld - LDA $040C : CMP.b #$02 : BNE ++ ; check if we're in HC + LDA $040C : CMP.b #$04 : !BGE ++ ; check if we're in HC LDA LampConeSewers : BRA .done ++ LDA LampConeLightWorld : BRA .done @@ -49,10 +49,6 @@ MirrorCheckOverride: rtl + lda.l DRScroll : rtl -MirrorCheckOverride2: - lda $7ef353 : and #$02 : rtl - - BlockEraseFix: lda $7ef353 : and #$02 : beq + stz $05fc : stz $05fd @@ -79,4 +75,68 @@ BlindAtticFix: lda.l DRMode : beq + lda #$01 : rtl + lda $7EF3CC : cmp.b #$06 - rtl \ No newline at end of file + rtl + +SuctionOverworldFix: + stz $50 : stz $5e + lda.l DRMode : beq + + stz $49 + + rtl + +; TT Alcove, Mire bridges, pod falling, SW torch room, TR Pipe room, Bob's Room, Ice Many Pots, Mire Hub +; swamp waterfall, Gauntlet 3, Eastern Push block +CutoffRooms: +db $bc, $a2, $1a, $49, $14, $8c, $9f, $c2 +db $66, $5d, $a8 +; Don't forget CutoffRoomCount!!! + +CutoffEntranceRug: + pha : phx + lda.l DRMode : beq .norm + lda $04 : cmp #$000A : beq + + cmp #$000C : bne .norm + + lda $a0 : sep #$20 : ldx #$0000 + - cmp.l CutoffRooms, x : beq .check + inx : cpx #$000B : !blt - ; CutoffRoomCount is here! + rep #$20 + .norm plx : pla : lda $9B52, y : sta $7E2000, x ; what we wrote over +rtl + .check + rep #$20 + lda $0c : cmp #$0006 : !bge .skip + lda $0e : cmp #$0008 : !bge .skip + cmp #$0004 : !blt .skip + bra .norm +.skip plx : pla : rtl + + +StoreTempBunnyState: + LDA $5D : CMP #$1C : BNE + + STA $5F + + LDA #$15 : STA $5D ; what we wrote over +RTL + +RetrieveBunnyState: + STY $5D : STZ $02D8 ; what we wrote over + LDA $5F : BEQ + + STA $5D ++ RTL + +RainPrevention: + LDA $00 : XBA : AND #$00FF ; what we wrote over + PHA + LDA $7EF3C5 : AND #$00FF : CMP #$0002 : !BGE .done ; only in rain states (0 or 1) + LDA.l $7EF3C6 : AND #$0004 : BNE .done ; zelda's been rescued + LDA.l BlockSanctuaryDoorInRain : BEQ .done ;flagged + LDA $A0 : CMP #$0012 : BNE + ;we're in the sanctuary + LDA.l $7EF3CC : AND #$00FF : CMP #$0001 : BEQ .done ; zelda is following + LDA $00 : CMP #$02A1 : BNE .done + PLA : LDA #$0008 : RTL + + LDA.l BlockCastleDoorsInRain : BEQ .done ;flagged + LDX #$FFFE + - INX #2 : LDA.l RemoveRainDoorsRoom, X : CMP #$FFFF : BEQ .done + CMP $A0 : BNE - + LDA.l RainDoorMatch, X : CMP $00 : BNE - + PLA : LDA #$0008 : RTL + .done PLA : RTL + diff --git a/asm/scroll.asm b/asm/scroll.asm index 44314532..299b995a 100644 --- a/asm/scroll.asm +++ b/asm/scroll.asm @@ -177,11 +177,11 @@ ScrollX: ;change the X offset variables rts LimitXCamera: - cmp #$0080 : !bge + + cmp #$0079 : !bge + lda #$0000 : bra .end - + cmp #$0181 : !blt + - lda #$0180 - + !sub #$0080 + + cmp #$0178 : !blt + + lda #$0178 + + !sub #$0078 .end rts CheckRoomLayoutX: diff --git a/data/base2current.bps b/data/base2current.bps new file mode 100644 index 00000000..74ee4e9a Binary files /dev/null and b/data/base2current.bps differ diff --git a/data/base2current.json b/data/base2current.json deleted file mode 100644 index f5bbe34c..00000000 --- a/data/base2current.json +++ /dev/null @@ -1 +0,0 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[194]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,232,225,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,164,133,164]},{"2027":[128,50]},{"2314":[52]},{"2379":[34,234,129,160]},{"2385":[162,2,0]},{"2404":[234,234,234]},{"2414":[234,234,234]},{"2424":[234,234,234]},{"2434":[234,234,234]},{"2444":[234,234,234]},{"2456":[34,70,179,164]},{"2561":[165,188]},{"3097":[34,127,132,164,234]},{"4993":[4]},{"5002":[184]},{"5011":[164]},{"20581":[49]},{"20594":[51]},{"20636":[49,49]},{"20804":[168]},{"20817":[144]},{"20859":[160,176]},{"21027":[0]},{"21040":[0]},{"21082":[0,0]},{"21809":[92,79,200,160]},{"21847":[34,39,201,160,234]},{"21854":[34,38,152]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,176,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,67,253,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[56,164,160]},{"30994":[186,164,160]},{"31001":[56,164,160]},{"31011":[186,164,160]},{"31046":[6,188,164]},{"31102":[34,165,154,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"32732":[158,7,97,248]},{"46868":[34,205,137,39,176,1,96]},{"50088":[237,187,164]},{"50132":[34,33,134,39,234]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,236,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,138,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,176,150,164,234]},{"60423":[34,206,195,164]},{"60790":[9,189,164]},{"61077":[241,181,160]},{"61133":[34,65,197,160,234]},{"62723":[34,72,132,160]},{"65511":[34,70,240,160]},{"65607":[134,138,39]},{"65778":[34,98,143,160,234,234]},{"65879":[34,44,195,160,234]},{"65894":[34,90,195,160]},{"66284":[34,125,195,160]},{"66292":[92,122,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,72,242,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,215,130,164]},{"67619":[34,143,128,160]},{"67793":[34,154,189,164,234,234]},{"67934":[8,137,39,165,177,240,6,96,234,234,234,234,234]},{"68474":[34,201,224]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[84,249,160]},{"69577":[234,234,34,8,139,39]},{"69737":[34,31,225]},{"69777":[15,240]},{"69780":[208,4,234]},{"69881":[34,249,136,39,234]},{"70067":[34,249,136,39,234]},{"70410":[84,249,160]},{"70505":[34,79,130,39,234,234]},{"70531":[34,200,130,39,234]},{"70550":[34,212,130,39]},{"70570":[34,200,130,39,234]},{"70609":[34,200,130,39,234]},{"70682":[34,254,130,39,96]},{"71576":[234,234,234,234,234,234]},{"71853":[34,115,247,160,234]},{"72216":[191,187,164]},{"72241":[34,90,195,160]},{"72246":[192,154,160]},{"73041":[34,188,155,160]},{"73263":[73,239,160]},{"73340":[34,241,128,160,234]},{"73937":[34,106,195,160]},{"74215":[34,66,134,39]},{"74833":[34,215,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,75,240,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"77216":[34,50,249,160,234]},{"78138":[3,248,160]},{"78172":[34,53,189,164,34,165,154,160,234,234]},{"79272":[34,136,128,39,144,8]},{"79300":[34,43,128,39]},{"79433":[34,152,128,39,144,8]},{"79461":[34,11,128,39]},{"79603":[34,243,187,164]},{"79635":[34,104,128,39]},{"79767":[34,169,189,164]},{"79796":[34,75,128,39]},{"79914":[34,225,138,39]},{"81280":[34,58,131,39,234]},{"82029":[34,226,130,39,234]},{"82376":[234,234]},{"82676":[84,249,160]},{"87784":[234,234,234]},{"87892":[34,80,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,133,241,160]},{"90651":[34,169,238,160,234,234]},{"93230":[34,240,157,164,234,234]},{"93325":[34,172,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,240,157,164,234,234]},{"97647":[34,142,129,160,107]},{"97776":[34,166,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,207,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[24,196,164]},{"166331":[34,188,155,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[52,182,160]},{"173058":[52,182,160]},{"173307":[52,182,160]},{"173320":[52,182,160]},{"183384":[34,40,249,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,188,155,160]},{"187902":[34,211,155,160]},{"188153":[0]},{"188234":[211,238,160]},{"188261":[34,145,130,164,96]},{"188337":[34,170,152,160]},{"188959":[34,208,237,160,128,13]},{"189655":[34,225,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[223,195,164]},{"191439":[34,254,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,18,198,160,234,234]},{"192037":[34,211,155,160]},{"192083":[34,171,143,160,234,234]},{"192095":[34,38,196,160,234]},{"192121":[126,196,160]},{"192140":[34,138,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,167,133,160]},{"192327":[34,100,138,39,176,5,234]},{"192350":[255,133,160]},{"192378":[71,133,160]},{"192463":[2,133,160]},{"192506":[34,186,133,160,234,234,234,234,234,234]},{"192561":[20,133,160]},{"192650":[34,186,132,160,176,24,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192877":[0,128,162]},{"192887":[34,157,143,160]},{"192893":[34,211,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,188,155,160]},{"193025":[71,144,160]},{"193033":[34,188,155,160]},{"193140":[34,223,179,160]},{"193157":[34,216,179,160]},{"193440":[34,50,221,160]},{"193472":[101,237,160]},{"193546":[34,50,221,160]},{"193578":[45,237,160]},{"193854":[34,180,143,160]},{"193859":[32]},{"193888":[166,195,160]},{"194141":[34,150,196,160,234,234,234,234,234]},{"194177":[34,252,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,208,237,160]},{"195327":[34,91,143,160,240,2,96,234]},{"195539":[34,252,199,160]},{"195589":[42,177,160]},{"195710":[34,212,145,39,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[252,176,160]},{"195909":[6,177,160]},{"196477":[34,211,155,160]},{"196497":[34,188,155,160]},{"197750":[125,193,160]},{"198721":[34,20,220,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,40,187,164]},{"198942":[34,79,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,128,143,160]},{"199659":[34,210,166,160,96,234]},{"199950":[34,164,143,160]},{"199964":[189,176,160]},{"199993":[34,16,177,160]},{"200070":[34,114,143,160]},{"200470":[34,107,143,160]},{"200845":[34,121,143,160,201]},{"200851":[240]},{"200853":[34,121,143,160]},{"200858":[8]},{"200893":[34,128,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,130,199,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[137,143,160]},{"208994":[34,128,143,160,234,234]},{"209010":[139]},{"209098":[44,144,160]},{"209199":[41,247]},{"210057":[92,102,221,160,234,234,234,234]},{"210164":[207,143,160]},{"211413":[17,144,160]},{"212333":[242,195,164]},{"212610":[5,196,164]},{"213139":[181,192,164]},{"213169":[209,133,160]},{"214205":[34,125,181,160]},{"214972":[15,181,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,187,145,39]},{"217579":[34,31,194,160]},{"224597":[34,50,220,160]},{"224693":[34,70,220,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,84,221,160,234]},{"226304":[34,135,220,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,41,240,160]},{"229634":[34,34,194,164]},{"230302":[32,169,181,144,9,32,244,255,208,4,32,219,180,234]},{"230816":[249,179,160]},{"230955":[249,179,160]},{"233256":[235,153,160]},{"233266":[34,165,128,160]},{"233297":[34,50,240,160,234]},{"233987":[92,187,164]},{"234731":[34,185,187,164]},{"234747":[34,61,240,160]},{"235953":[34,97,133,160,144,3]},{"236024":[182,205,160]},{"236047":[255,193,160]},{"236578":[34,85,134,164]},{"237653":[34,110,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,2,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[206,198,160]},{"238498":[34,87,197,160,128,3]},{"238562":[34,154,199,160,240,4,234]},{"238751":[34,200,221,160]},{"238964":[34,200,221,160]},{"239190":[34,200,221,160]},{"239935":[34,177,138,39]},{"239957":[34,210,138,39,234,234]},{"239964":[79,189,164]},{"240044":[92,225,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,168,220,160]},{"241165":[34,168,220,160]},{"241175":[34,235,128,164]},{"241294":[34,168,220,160]},{"241304":[34,235,128,164]},{"241814":[34,168,220,160,24,125,139,176]},{"241869":[202,237,160]},{"241877":[34,168,220,160,24,125,139,176]},{"242942":[34,62,238,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,0,220,160,234,234,234,144]},{"243069":[34,225,217,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,198,220,160,234]},{"250478":[34,252,220,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,31,154,164,96]},{"262132":[32,108,211,169,128,20,59,224,4,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,71,243,160,234]},{"273608":[34,121,183,160,76,230,172]},{"275716":[34,93,183,160,234]},{"276202":[34,154,183,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,165,227,160,234]},{"279601":[34,156,128,160,234]},{"279644":[43,134,160,92,140,240,160,234,234]},{"279880":[92,183,196,164]},{"280037":[34,94,236,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[202,237,160]},{"280106":[92,248,227,160,234]},{"280264":[34,92,193,164]},{"280287":[212,210,160]},{"280313":[34,92,193,164]},{"280335":[34,153,180,160]},{"282028":[34,100,156,164,234,234,234,234,234]},{"282124":[92,34,130,164,234,234,234]},{"282393":[34,75,130,164]},{"282569":[107]},{"283541":[34,25,195,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,168,220,160]},{"285891":[34,182,128,164]},{"295207":[34,200,132,164]},{"295219":[34,225,132,164]},{"296429":[34,158,201,160,234]},{"296453":[92,43,196,164,234]},{"296466":[212,212]},{"296471":[213,212]},{"296480":[212,214]},{"296488":[212,212]},{"296493":[213,212]},{"296502":[212,214,34,122,145,39]},{"296583":[34,188,155,160]},{"296619":[212,215]},{"296810":[228,209]},{"296882":[34,214,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[4,208]},{"297052":[244,208]},{"297087":[34,131,133,160,234,176]},{"297120":[92,146,227,160,234]},{"297144":[212,210]},{"297200":[4,208]},{"297225":[244,208]},{"297263":[213,216]},{"297292":[34,233,195,160]},{"297309":[220,216]},{"297904":[34,111,129,160,234]},{"301947":[34,128,130,164,234,234,234,234,144]},{"302146":[92,201,196,164,234,234]},{"304330":[240]},{"304340":[240]},{"304350":[240]},{"304360":[240]},{"304370":[240]},{"304380":[240]},{"304390":[240]},{"304400":[240]},{"304410":[240]},{"304420":[240]},{"304430":[240]},{"304440":[240]},{"305387":[5]},{"313527":[189,247]},{"313655":[176]},{"313943":[37]},{"315565":[15,67,255,18,25,22]},{"316450":[15,69,255,18,25,22]},{"324263":[34,74,225,160]},{"324619":[34,213,153,160]},{"324675":[34,184,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,154,238,160,34,160,188,164,234,234,234,234,234,234]},{"324996":[34,106,195,160]},{"325098":[169,2,0,234]},{"325131":[34,202,238,160]},{"325203":[34,157,178,164]},{"325565":[6,31,64,18,1,63,20,1,63,19,31,66,26,31,75,26,32,75,37,45,63,41,32,63,42,60,63]},{"341871":[98,240,160]},{"342245":[34,79,132,160,34,33,188,164,156,0,16,156,1,16,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"342345":[34,179,248,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,211,155,160]},{"344119":[34,211,155,160]},{"344185":[34,211,155,160]},{"344248":[34,211,155,160]},{"344312":[34,211,155,160]},{"344375":[34,211,155,160]},{"344441":[34,211,155,160]},{"344499":[34,211,155,160]},{"344565":[34,211,155,160]},{"344623":[34,211,155,160]},{"344689":[34,211,155,160]},{"344747":[34,211,155,160]},{"344813":[34,211,155,160]},{"344871":[34,211,155,160]},{"344937":[34,211,155,160]},{"345406":[34,241,154,160]},{"345531":[34,4,155,160,96]},{"345560":[34,4,155,160,96]},{"393133":[237,187,164]},{"410028":[94,255,161]},{"410347":[34,157,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[31,240,160]},{"412876":[92,107,178,164]},{"413015":[107]},{"413094":[128,148,164]},{"413109":[34,114,238,160]},{"413141":[34,144,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,37,149,164,234,234,234,234]},{"413264":[34,76,149,164,234,234,234,234,234,234]},{"413297":[92,115,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,206,178,164]},{"414010":[76,29]},{"414014":[104]},{"414018":[105]},{"414022":[130]},{"414026":[136,1]},{"414032":[92,29]},{"414036":[120]},{"414040":[121]},{"414044":[146]},{"414048":[136,1]},{"414472":[66,0,0]},{"414504":[77]},{"414506":[78,29,101]},{"414510":[78,29,109]},{"414514":[78,29,136,1]},{"414522":[136,1]},{"414526":[136,1]},{"414532":[93]},{"414534":[94,29,117]},{"414538":[94,29,125]},{"414542":[94,29,136,1]},{"414550":[136,1]},{"414554":[136,1]},{"414611":[34,144,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,108,178,164,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"414988":[204]},{"414990":[74,1,202,1,42]},{"414996":[146,1,18,1]},{"415015":[34,253,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,108,178,164]},{"415678":[34,165,149,164]},{"416378":[24,150,164]},{"416491":[34,239,149,164,234]},{"416529":[34,202,149,164]},{"416588":[234,234,234,234]},{"416912":[34,230,149,164]},{"416937":[34,216,149,164]},{"417380":[136,1]},{"417384":[136,1]},{"417388":[136,1]},{"417392":[136,1]},{"417396":[136,1]},{"417400":[136,1]},{"417406":[136,1]},{"417410":[136,1]},{"417414":[136,1]},{"417418":[136,1]},{"417422":[136,1]},{"417426":[136,1]},{"417432":[77]},{"417434":[78,29,101]},{"417438":[78,29,109]},{"417442":[78,29,136,1,79,29,98]},{"417450":[101,29,78]},{"417456":[136,1]},{"417462":[93]},{"417464":[94,29,117]},{"417468":[94,29,125]},{"417472":[94,29,136,1,95,29,114]},{"417480":[117,29,94]},{"417486":[136,1]},{"417798":[77]},{"417800":[78,29,101]},{"417804":[78,29,109]},{"417808":[78,29,136,1,79,29,98]},{"417816":[101,29,78]},{"417822":[139]},{"417826":[136,1]},{"417836":[93]},{"417838":[94,29,117]},{"417842":[94,29,125]},{"417846":[94,29,136,1,95,29,114]},{"417854":[117,29,94]},{"417860":[155]},{"417864":[136,1]},{"417870":[136,1]},{"417874":[136,1]},{"417878":[136,1]},{"417882":[136,1]},{"417886":[136,1]},{"417890":[136,1]},{"417894":[136,1]},{"417898":[136,1]},{"417902":[136,1]},{"417906":[136,1]},{"417910":[136,1]},{"417914":[136,1]},{"417918":[136,1]},{"417924":[136,1]},{"417928":[136,1]},{"417932":[136,1]},{"417936":[136,1]},{"417940":[136,1]},{"417944":[136,1]},{"417948":[136,1]},{"417952":[136,1]},{"417956":[136,1]},{"417960":[136,1]},{"417964":[136,1]},{"417968":[136,1]},{"417972":[136,1]},{"417978":[76,29,74,29,103,29,76,29,78,29,101,29,136,1]},{"417996":[136,1]},{"418000":[136,1]},{"418004":[136,1]},{"418010":[92,29,90,29,119,29,92,29,94,29,117,29,136,1]},{"418028":[136,1]},{"418032":[136,1]},{"418036":[136,1]},{"418348":[136,1,76,29,104]},{"418354":[105,29,130]},{"418360":[79]},{"418362":[98,29,101]},{"418366":[78,29,136,1]},{"418382":[136,1,92,29,120]},{"418388":[121,29,146]},{"418394":[95]},{"418396":[114,29,117]},{"418400":[94,29,136,1]},{"418458":[76,29]},{"418462":[74,29]},{"418466":[103,29]},{"418470":[76,29]},{"418474":[78,29,136,1,101,29,136,1]},{"418484":[136,1]},{"418490":[92,29]},{"418494":[90,29]},{"418498":[119,29]},{"418502":[92,29]},{"418506":[94,29,136,1,117,29,136,1]},{"418516":[136,1]},{"418523":[128,13,97,13,98,13,76,13,97,13,134,13,136,1]},{"418541":[144,13,113,13,114,13,92,13,113,13,150,13,136,1]},{"418716":[128,13,97,13,78,13,107,13,78,13,134,13,136,1]},{"418734":[144,13,113,13,94,13,123,13,94,13,150,13,136,1]},{"418842":[9]},{"418848":[9]},{"418854":[9]},{"418860":[9]},{"418866":[9]},{"418872":[9]},{"418874":[44]},{"418878":[73]},{"418880":[73]},{"418882":[73]},{"418884":[73]},{"418886":[201]},{"418888":[45]},{"418890":[30]},{"418892":[9]},{"418898":[9]},{"418900":[9]},{"418902":[9]},{"418904":[9]},{"418906":[137]},{"418908":[77]},{"418910":[30,128,9]},{"418914":[109]},{"418916":[30,128,9]},{"418920":[141]},{"418922":[30,128,9]},{"418926":[173]},{"418928":[30]},{"418930":[137]},{"418936":[73]},{"418942":[9]},{"418948":[9]},{"418954":[73]},{"418960":[9]},{"418966":[201]},{"418972":[137]},{"418978":[137]},{"418984":[9]},{"418986":[9]},{"418988":[9]},{"418990":[9]},{"418992":[9]},{"418994":[9]},{"418996":[9]},{"418998":[9]},{"419004":[9]},{"419006":[9]},{"419008":[9]},{"419010":[9]},{"419012":[9]},{"419014":[9]},{"419016":[9]},{"419018":[9]},{"419024":[5]},{"421983":[43]},{"422780":[123,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,211,155,160]},{"449502":[34,112,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,160]},{"449578":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,190]},{"449612":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,139,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,225,155,160,96]},{"450208":[4]},{"450227":[34,182,132,164]},{"450334":[34,52,156,160]},{"450360":[34,181,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,33,185,160,234]},{"450492":[34,20,156,160,234,234,234]},{"450861":[34,55,185,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,242,132,164]},{"451775":[34,211,132,164]},{"452340":[128]},{"452537":[34,167,156,160,234]},{"452559":[34,149,156,160,234]},{"452581":[34,185,156,160,234]},{"452634":[96]},{"453064":[34,212,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,55,194,160,234,234,76,230,236]},{"453867":[34,203,156,160,234]},{"453892":[34,104,144,39]},{"454092":[34,70,156,160,234,234,234,234,234]},{"454233":[34,70,156,160,234,234,234,234,234]},{"454256":[34,159,195,160,234]},{"454282":[34,70,156,160,234,234,234,234,234]},{"454459":[34,70,156,160,234,234,234,234,234]},{"456591":[19]},{"456599":[18]},{"456607":[20]},{"456631":[21]},{"456871":[75,60]},{"456879":[79,44]},{"456887":[47,36]},{"457299":[34,49,138,39]},{"457344":[34,215,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,253,217,160]},{"457513":[34,35,218,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,253,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,134,238,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,226,48,162,255]},{"477379":[55]},{"478834":[71]},{"478858":[7]},{"478866":[7]},{"478882":[71]},{"478890":[7]},{"478906":[71]},{"479162":[118]},{"480090":[55]},{"480098":[55]},{"480106":[55]},{"480851":[9]},{"480868":[0]},{"484946":[74,179,35]},{"485100":[34,92,228,160]},{"485416":[34,156,175,35,183,124,234]},{"485439":[183,124,234]},{"485459":[183,124,234]},{"485466":[34,163,179,35]},{"485485":[34,178,176,35,76,253,232]},{"486667":[34,189,131,164,234,234]},{"486677":[34,189,131,164,234,234]},{"486698":[34,202,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[86,236,160]},{"487403":[169,2,0,234]},{"487935":[34,132,228,160]},{"488156":[34,132,228,160]},{"488213":[34,132,228,160]},{"488242":[34,132,228,160]},{"488309":[34,132,228,160]},{"488340":[34,132,228,160]},{"488721":[34,132,228,160]},{"489560":[34,132,228,160]},{"490022":[34,132,228,160]},{"490060":[34,132,228,160]},{"490164":[34,132,228,160]},{"490184":[34,132,228,160]},{"490209":[34,132,228,160]},{"490257":[34,132,228,160]},{"490438":[34,148,228,160,96]},{"561458":[12]},{"561460":[30]},{"561462":[63]},{"561464":[127]},{"561466":[127]},{"561468":[63]},{"561470":[19]},{"561473":[12,18,45,94,82,46,19,0]},{"561482":[112]},{"561484":[248,0,252,0,238,0,254,0,254,0,252,0,0,112,136,116,234,154,234,100]},{"561840":[7]},{"561842":[15]},{"561844":[10]},{"561846":[9,1,12,4,7,3,3]},{"561856":[5,8,13,14,11,4,3]},{"561864":[184,0,120,96,254,192,62,0,127,0,254]},{"561876":[254]},{"561878":[8]},{"561880":[248,144,28,246,162,54,220]},{"859925":[0,43]},{"882113":[34,158,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,56,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,134,242,160]},{"900244":[34,218,240,160,208,39,234,234,234,234,234,234]},{"900357":[92,209,242,160,234]},{"900437":[92,107,241,160,234]},{"900447":[34,66,247,160,234,234,234]},{"900458":[34,243,187,164]},{"901799":[34,112,153,164,107,32,222,201,107]},{"903876":[34,19,243,160,208,3,107,234,234]},{"912889":[34,27,128,191,107,234]},{"912923":[34]},{"912925":[128,191,107]},{"917533":[188,170,191,174,201,172,184,183,189,178,183,190,174,248,188,170,191,174,201,186,190,178,189,249,172,184,183,189,178,183,190,174,251]},{"917567":[223]},{"917575":[223]},{"917582":[223]},{"917590":[223]},{"917596":[172,170,183,216,189,255,194,184,190]},{"917606":[189,170,180,174,248,182,174,255,188,184,182,174]},{"917619":[185,181,170,172,174,249,183,178,172,174,205,251,252,0,247,228,248,255,249]},{"917639":[254,113,251,252,0,247,255,248,228,249,255,254,113,251,252,0,247,255,248]},{"917659":[249]},{"917662":[113]},{"917664":[252,0,247,228,248,255,254,114,251,252,0,247,255,248,228,254,114,251,178,216,182,255,179,190,188,189,255,176,184,178,183,176,248,184,190,189,255,175,184,187,255,170,255,185,170,172,180,249,184,175,255,188,182,184,180,174,188,205,251,254,110,0,254,107,4,251,184,183,181,194,255,170,173,190,181,189,188,248,188,177,184,190,181,173,255,189,187,170,191,174,181,249,170,189,255,183,178,176,177,189,205,251,194,184,190,255,172,170,183,255,185,187,174,188,188,248,193,255,189,184,255,188,174,174,255,189,177,174,249,182,170,185,205,251,185,187,174,188,188,255,189,177,174,255,170,248,171,190,189,189,184,183,255,189,184,255,181,178,175,189,249,189,177,178,183,176,188,255,171,194,255,194,184,190,205,251,192,177,174,183,255,194,184,190,255,177,170,188,255,170,248,188,192,184,187,173,200,255,185,187,174,188,188,255,171,249,189,184,255,188,181,170,188,177,255,178,189,205,251,12,36,131,154,99,255,117,40,113,124,95,110,54,20,251,170,187,174,255,192,174,255,187,174,170,181,181,194,248,188,189,178,181,181,255,187,174,170,173,178,183,176,249,189,177,174,188,174,198,251,179,174,174,195,174,199,255,189,177,174,187,174,248,187,174,170,181,181,194,255,170,187,174,255,170,249,181,184,189,255,184,175,255,189,177,178,183,176,188,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4]},{"917988":[254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,189,177,174,194,255,189,184,184,180,255,177,174,187,248,189,184,255,189,177,174,255,172,170,188,189,181,174,199,249,189,170,180,174,255,194,184,190,187,250,246,188,192,184,187,173,255,170,183,173,255,188,170,191,174,246,177,174,187,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,107,2,252,6,178,216,182,255,178,183,255,189,177,174,248,172,170,188,189,181,174,249,171,170,188,174,182,174,183,189,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,107,2,252,6,177,178,255,254,106,200,248,177,170,191,174,255,194,184,190,255,171,174,174,183,249,189,177,178,183,180,178,183,176,255,170,171,184,190,189,250,246,182,174,198,246,170,187,187,187,187,187,176,176,177,177,204,246,204,255,204,255,204,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,177,174,194,170,200,255,254,106]},{"918267":[181,184,183,176,255,189,178,182,174,255,183,184,249,188,174,174,205,250,246,194,184,190,255,192,170,183,189,255,170,246,182,170,188,189,174,187,255,188,192,184,187,173,198,246,250,246,192,174,181,181,255,176,184,184,173,255,181,190,172,180,246,192,178,189,177,255,189,177,170,189,205,251,178,189,255,184,172,172,190,187,188,255,189,184,248,182,174,255,189,177,170,189,255,178,255,181,178,180,174,249,189,184,170,188,189,255,170,183,173,255,179,170,182,200,250,246,171,190,189,255,172,177,174,174,188,174,255,170,183,173,246,172,187,170,172,180,174,187,188,255,178,188,246,171,174,189,189,174,187,205,250,246,194,184,190,255,181,178,180,174,198,246]},{"918430":[255,228,255,172,177,174,174,188,174,246,255,255,255,255,179,170,182,254,104,251,170,183,194,192,177,184,200,255,178,255,177,170,191,174,248,189,177,178,183,176,188,255,189,184,255,173,184,205,249,194,184,190,255,188,174,174,255,189,177,184,188,174,250,246,162,255,184,191,174,183,188,198,246,246,194,174,170,177,200,255,162,199,250,246,192,177,184,255,177,170,188,255,162,246,184,191,174,183,188,246,183,184,192,170,173,170,194,188,198,199,251,172,184,184,181,255,188,192,184,187,173,199,248,249,250,246,204,246,246,250,246,204,246,246,250,246,185,181,174,170,188,174]},{"918573":[188,170,191,174,255,190,188,251,176,190,170,187,173,188,199,255,177,174,181,185,199,248,189,177,174]},{"918599":[172,187,174,174,185,174,187,249,254,106,255,178,188,255,177,174,187,174,199,251,254,109,1,172,184,184,181,255,171,174,170,183,188,200,248,171,190,189,255,178,255,189,177,178,183,180,249,194,184,190,255,188,177,184,190,181,173,250,246,182,184,188,174,194,255,184,183,255,184,191,174,187,246,189,184,255,189,177,174,255,181,184,188,189,246,192,184,184,173,188,205,251,254,110,0,254,107,4,251,254,109,1,188,170,177,170,188,187,170,177,181,170,200,255,178,248,170,182,205,255,194,184,190,255,192,184,190,181,173,249,173,184,255,192,174,181,181,255,189,184,250,246,175,178,183,173,255,189,177,174,255,163,246,185,174,183,173,170,183,189,188,255,175,187,184,182,246,189,177,174,255,163,255,173,190,183,176,174,184,183,188,250,246,178,183,255,189,177,174,255,181,178,176,177,189,246,192,184,187,181,173,205,246,190,183,173,174,187,188,189,170,183,173,198,250,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,254,110,0,254,107,4,251,254,109,1,181,178,180,174,200,255,178,255,188,178,189,248,177,174,187,174,200]},{"918860":[170,183,173,255,189,174,181,181,249,194,184,190,255,192,177,170,189,255,189,184,250,246,173,184,198,246,246,250,246,170,181,187,178,176,177,189,200,255,176,184,246,170,183,173,255,175,178,183,173,255,170,181,181,246,189,177,174,255,182,170,178,173,174,183,188,200,250,246,189,177,174,187,174,255,170,187,174,200,246,181,178,180,174,200,255,182,170,194,171,174,255,167,246,184,175,255,189,177,174,182,205,255,178,250,246,173,190,183,183,184,255,170,183,194,182,184,187,174,205,246,178,216,182,255,184,181,173,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,224,255,173,194,178,183,176,255,190,183,172,181,174,248,255,255,189,177,178,188,255,192,170,194,204,251,210,211]},{"919053":[187,170,183,173,184,182,178,195,174,187,248,189,177,174,255,189,174,181,174,185,170,189,177,178,172,249,189,178,181,174,188,255,172,170,183,255,177,170,191,174,250,246,177,178,183,189,188,199,251,172,170,191,174,255,189,184]},{"919110":[181,184,188,189,200,248,184,181,173,255,182,170,183,205,249,176,184,184,173,255,181,190,172,180,205,251,248,224,255,181,184,188,189,255,192,184,184,173,188]},{"919150":[173,170,183,176,174,187,199,248,173,174,174,185,255,192,170,189,174,187,199,249,195,184,187,170,188,199,251,192,174,181,172,184,182,174,255,189,184,255,189,177,174,248,182,170,176,178,172,255,188,177,184,185,185,174,251,172,170,191,174,255,170,192,170,194,255,175,187,184,182,248,188,180,194,255,172,170,171,171,170,176,174,188,251,225,255,181,170,180,174,255,177,194,181,178,170,248,249,255,170,181,188,184,200,255,170,255,188,177,184,185,251,227,255,180,170,180,170,187,178,180,184,248,255,255,191,178,181,181,170,176,174,251,227,255,173,174,188,174,187,189,248,249,255,255,255,255,255,178,189,216,188,255,177,184,189,205,251,224,226,255,185,184,189,178,184,183,188,199,248,249,192,178,188,177,255,192,170,189,174,187,175,170,181,181,251,226,255,174,170,188,189,255,185,170,181,170,172,174,248,249,227,255,172,170,188,189,181,174,251,248,255,181,170,180,174,255,255,177,178,187,178,170,177,251,173,184,183,216,189,255,189,170,181,180,255,189,184,248,182,174,255,184,187,255,189,184,190,172,177,255,182,194,249,188,178,176,183,199,251,181,190,182,171,174,187,179,170,172,180,188,200,248,178,183,172,205,249,194,184,190,255,188,174,174,255,216,174,182,200,250,246,192,174,255,188,170,192,255,216,174,182,205,251,225,255,180,170,180,170,187,178,180,184,248,255,255,191,178,181,181,170,176,174,251,173,184,190,171,181,174,200,255,173,184,190,171,181,174,248,189,184,178,181,255,170,183,173,249,189,187,184,190,171,181,174,199,250,246,171,187,178,183,176,255,182,174,255,170,246,182,190,188,177,187,184,184,182,199,251,254,110,0,254,107,4,251,194,184,190,255,176,184,189,255,189,184,248,176,178,191,174,255,182,174,255,189,177,174,249,182,190,188,177,187,184,184,182,200,250,246,183,190,182,185,189,194,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,178,175,255,184,183,181,194,255,194,184,190,248,177,170,173,255,188,184,182,174,189,177,178,183,176,249,189,184,255,185,190,189,255,189,177,170,189,250,246,178,183,200,255,181,178,180,174,255,170,246,171,184,189,189,181,174,204,251,192,177,184,170,200,255,171,190,172,180,184,199,248,183,184,255,174,182,185,189,194,249,171,184,189,189,181,174,188,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0]},{"919706":[107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110]},{"919747":[254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4]},{"919793":[254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4]},{"919849":[254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0]},{"919909":[107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,188,184,182,174,189,177,178,183,176,255,178,188,248,182,178,188,188,178,183,176,204,249,189,177,174,255,171,178,176,255,180,174,194,198,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,192,177,184,170,199,255,178,255,172,170,183,248,189,170,181,180,255,170,176,170,178,183,199,251,194,170,183,180,255,184,183,255,189,177,174,248,185,178,189,172,177,175,184,187,180,255,178,183,249,189,177,174,255,172,174,183,189,174,187,255,184,175,250,246,189,184,192,183,200,255,194,170,255,177,174,170,187,173,246,178,189,255,177]},{"920101":[187,174]},{"920104":[251,176,170,183,184,183,255,178,188,255,188,190,172,177,248,170,255,173,178,183,176,190,188,200,255,183,184,249,184,183,174,255,181,178,180,174,188,255,177,178,182,200,250,246,194,170,255,177,174,170,187,173,255,178,189,246,177,174,187,174,205,251,189,177,174,187,174,255,178,188,255,170,248,185,184,187,189,170,181,255,183,174,170,187,249,189,177,174,255,181,184,188,189,250,246,192,184,184,173,188,200]},{"920206":[194,170,246,177,174,170,187,173,255,178,189,255,177,174,187,174,205,251,190,188,174,255,171,184,182,171,188,255,189,184,248,186,190,178,172,180,181,194,255,180,178,181,181,249,189,177,174,255,177,178,183,184,193,200,255,194,170,250,246,177,174,170,187,173,255,178,189,255,177,174,187,174,205,251,178,255,172,170,183,255,171,187,174,170,189,177,174,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,162,160,255,187,190,185,174,174,188,205,248,165,255,170,187,187,184,192,188]},{"920329":[249,192,178,183,255,187,190,185,174,174,188,199,250,246,192,170,183,189,255,189,184,255,185,181,170,194,198,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,181,174,189,216,188,255,173,184,255,189,177,178,188,199,251,192,177,174,187,174,255,170,187,174,255,194,184,190,248,176,184,178,183,176,198,249,188,189,187,170,178,176,177,189]},{"920419":[190,185,199,251,180,174,174,185,255,185,181,170,194,178,183,176]},{"920436":[248]},{"920441":[194,174,188,249,255]},{"920449":[183,184,254,104,251,201,192,178,188,177,178,183,176,255,185,184,183,173,201,248,249,255,184,183,255,191,170,172,170,189,178,184,183,251,185,178,172,180,255,188,184,182,174,189,177,178,183,176,248,189,184,255,189,177,187,184,192,255,178,183,205,254,105,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,194,184,190,255,188,190,187,174,198,248,255,255,228,255,184,177,255,194,174,170,177,249,255,255,255,255,190,182,254,104,251,192,174,181,181,200,255,178,255,173,184,183,216,189,248,192,170,183,189,255,178,189,200,255,188,184,249,189,170,180,174,255,178,189,255,171,170,172,180,205,251,254,110,0,254,107,4,251,178,255,176,187,170,183,189]},{"920613":[194,184,190,248,189,177,174,255,170,171,178,181,178,189,194,255,189,184,249,171,181,184,172,180,250,246,175,178,187,174,171,170,181,181,188,205,246,173,184,183,216,189,255,181,184,188,174,246,189,177,178,188,255,189,184,255,170,250,246,185,178,180,178,189,199,251,188,184,200,255,192,184,190,181,173,183,216,189,248,178,189,255,171,174,255,183,178,172,174,255,189,184,249,180,178,181,181]},{"920711":[176,170,183,184,183,198,250,246,189,177,174,188,174,255,188,177,184,190,181,173,246,177,174,181,185,255,178,183,255,189,177,174,246,175,178,183,170,181,255,185,177,170,188,174,205,251,171,184,189,189,181,174,255,175,178,181,181,174,173,199,248,182,184,183,174,194,255,188,170,191,174,173,199,251,189,177,170,183,180,255,194,184,190,255,175,184,187,248,189,177,174]},{"920803":[188,192,184,187,173,200,249,177,174,187,174,255,178,188,255,170,250,246,188,189,178,172,180,255,184,175,246,171,190,189,189,174,187,205,251,177,170,185,185,178,183,174,188,188,255,190,185,199,248,194,184,190,255,170,187,174,255,183,184,192,249,254,108,1,254,108,0,255,177,170,185,185,194,199,251,194,184,190,187,255,192,178,188,177,198,248,255,255,228,182,184,187,174,255,171,184,182,171,188,249,255,255,255,182,184,187,174,255,170,187,187,184,192,188,254,104,251,192,184,184,201,177,184,184,199,248,194,184,190,255,172,170,183,255,183,184,192,249,172,170,187,187,194]},{"920947":[254,108,1,254,108,0,255,171,184,182,171,188,251,192,184,184,201,177,184,184,199,248,194,184,190,255,172,170,183,255,183,184,192,249,177,184,181,173,255,254,108,1,254,108,0,255,170,187,187,184,192,188,251,194,184,190,255,177,170,191,174,255,170,181,181,255,178,248,172,170,183,255,176,178,191,174,255,194,184,190,200,249,177,174,187,174,255,170,187,174,255,194,184,190,187,250,246,187,190,185,174,174,188,255,171,170,172,180,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,181,178,175,174,198,255,181,184,191,174,198,248,177,170,185,185,178,183,174,188,188,198,255,189,177,174,249,186,190,174,188,189,178,184,183,255,194,184,190,250,246,188,177,184,190,181,173,255,187,174,170,181,181,194,246,170,188,180,255,178,188,255,255,192,170,188]},{"921180":[189,177,178,188,255,176,174,183,174,187,170,189,174,173,250,246,171,194,255,188,189,184,184,185,188,255,170,181,190,246,184,187,255,188,189,184,184,185,188,255,179,174,189,198,251,194,184,190,255,188,177,184,190,181,173,248,185,181,170,194,255,189,177,170,189,249,175,181,190,189,174,255,175,184,187,255,189,177,174,250,246,192,174,170,189,177,174,187,191,170,183,174,200]},{"921274":[172,170,190,188,174,255,187,174,170,188,184,183,188]},{"921288":[251,194,184,190,255,188,177,184,190,181,173,248,185,181,170,194,255,189,177,170,189,249,175,181,190,189,174,255,175,184,187,255,189,177,174,250,246,192,174,170,189,177,174,187,191,170,183,174,200,246,172,170,190,188,174,255,187,174,170,188,184,183,188,205,251,181,178,175,174,198,255,181,184,191,174,198,248,177,170]},{"921368":[185,178,183,174,188,188,198,255,189,177,174,249,186,190,174,188,189,178,184,183,255,194,184,190,250,246,188,177,184,190,181,173,255,187,174,170,181,181,194,246,170,188,180,255,178,188,255,255,192,170,188,246,189,177,178,188,255,176,174,183,174,187,170,189,174,173,250,246,171,194,255,188,189,184,184,185,188,255,170,181,190,246,184,187,255,188,189,184,184,185,188,255,179,174,189,198,251,189,177,178,188,255,178,188,248,172,177,187,178,188,189,184,188,216,255,177,190,189,205,249,250,246,177,174,216,188,255,184,190,189,200,246,188,174,170,187,172,177,178,183,176,255,175,184,187,246,170,255,171,184,192,205,251,177,178,200,255,173,184,255,194,184,190,248,180,183,184,192,255,191,174,174,189,184,187,185,198,249,250,246,194,184,190,255,187,174,170,181,181,194,246,188,177,184,190,181,173,205,255,170,183,173,246,170,181,181,255,189,177,174,255,184,189,177,174,187,250,246,176,187,174,170,189,255,176,190,194,188,255,192,177,184,246,182,170,173,174,255,189,177,178,188,246,185,184,188,188,178,171,181,174,205,250,246,176,184,255,189,177,170,183,180,255,189,177,174,182,205,246,246,250,246,178,175,255,194,184,190,255,172,170,183,246,172,170,189,172,177,255,189,177,174,182,204,251,192,177,194,255,170,187,174,255,194,184,190,248,187,174,170,173,178,183,176,255,189,177,178,188,249,188,178,176,183,198,255,187,190,183,199,199,199,251,194,184,190,255,183,174,174,173,255,172,170,185,174,200,248,171,190,189,255,183,184,189,249,177,184,184,180,188,177,184,189,251,189,184,188,188,255,187,184,172,180,188,248,189,184,188,188,255,178,189,174,182,188,249,189,184,188,188,255,172,184,184,180,178,174,188,251,224,255,188,180,190,181,181,255,192,184,184,173,188,248,249,225,255,188,189,174,191,174,216,188,255,189,184,192,183,251,248,226,255,180,170,187,180,170,189,188,255,172,170,191,174,251,248,226,255,173,170,187,180,255,185,170,181,170,172,174,251,248,227,255,171,184,182,171,255,188,177,184,185,185,174,251,248,227,255,182,178,188,174,187,194,255,182,178,187,174,249,255,183,184,255,192,170,194,255,178,183,205]},{"921873":[183,184,255,192,170,194,255,184,190,189,205,251,177,170,191,174,255,170,255,189,187,190,181,178,174,248,170,192,174,188,184,182,174,255,173,170,194,199,251,192,170,189,174,187,175,170,181,181,248,190,185,255,170,177,174,170,173,249,182,170,180,174,255,192,178,188,177,174,188,251,226,224,255,177,170,191,174,255,194,184,190,248,182,174,189,255,192,184,174,175,190,181,249,178,180,174,198,251,181,184,184,180,178,183,176,255,175,184,187,255,170,248,185,187,178,183,172,174,188,188,198,255,181,184,184,180,249,173,184,192,183,188,189,170,178,187,188,205,251,183,184,255,181,184,183,180,188,248,170,181,181,184,192,174,173,199,251,254,107,2,194,184,190,255,183,174,174,173,255,170,255,171,184,192,248,189,184,255,176,174,189]},{"922055":[185,170,188,189,249,189,177,174,255,187,174,173,250]},{"922069":[174,194,174,176,184,187,174,205,255,173,174,187,185,194,251,254,107,2,178,175,255,194,184,190,255,175,178,183,173,255,170,248,188,177,178,183,194,255,171,170,181,181,200,249,194,184,190,255,172,170,183,255,171,174,255,194,184,190,250,246,178,183,255,189,177,174,255,173,170,187,180,246,192,184,187,181,173,205,251,221,223,223,255,221,223,223,255,221,223,223,248,255,222,255,221,223,223,221,255,222,249,221,223,223,255,222,221,221,222,255,223,223,222,251,170,255,189,174,188,189,255,184,175,248,188,189,187,174,183,176,189,177,255,255,178,175,249,194,184,190,255,177,170,191,174,255,163,250,246,185,174,183,173,170,183,189,188,200,255,178,216,182,246,194,184,190,187,188,205,251,254,107,2,190,188,174,255,189,177,174,248,182,178,187,187,184,187,200,255,184,187,255,189,177,174,249,177,184,184,180,188,177,184,189,255,170,183,173,250,246,177,170,182,182,174,187,200,255,189,184,255,176,174,189]},{"922294":[189,184,255,189,184,192,174,187,255,184,175,246,177,174,187,170,199,251,254,107,2,173,187,170,178,183,255,189,177,174,248,175,181,184,184,173,176,170,189,174,255,189,184,249,187,170,178,188,174,255,189,177,174,250,246,192,170,189,174,187,255,177,174,187,174,199,251,254,107,2,171,181,178,183,173,255,177,170,189,174,216,188,248,171,187,178,176,177,189,255,181,178,176,177,189,205,251,254,107,2,181,178,176,177,189,178,183,176,255,164,248,189,184,187,172,177,174,188,255,192,178,181,181,249,184,185,174,183,255,194,184,190,187,255,192,170,194,250,246,175,184,187,192,170,187,173,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,188,174,172,184,183,173,170,187,194,248,189,184,190,187,183,170,182,174,183,189,249,192,178,183,183,174,187,188,250,254,121,45,246,255,255,206,206,206,162,160,161,167,206,206,206,246,170,255,255,195,170,174,183,251,254,107,2,189,177,178,188,255,178,188,255,170,248,175,190,183,183,194,255,181,184,184,180,178,183,176]},{"922537":[174,183,174,182,178,195,174,187,251,254,107,2,189,177,178,183,176,188,255,172,170,183,255,171,174,248,180,183,184,172,180,174,173,255,173,184,192,183,200,249,178,175,255,194,184,190,255,175,170,183,172,194,250,246,194,184,190,187,188,174,181,175,255,170,246,173,170,188,177,178,183,176,255,173,190,173,174,205,251,254,107,2,194,184,190]},{"922623":[172,170,183,248,187,174,175,181,174,172,189,249,170,176,170,177,183,178,182,216,188,250,246,174,183,174,187,176,194,255,192,178,189,177,246,188,192,184,187,173,200,255,171,190,176,201,183,174,189,246,184,187,255,177,170,182,182,174,187,205,251,254,107,2,170,181,181,255,187,178,176,177,189,255,188,189,184,185,248,172,184,181,181,170,171,184,187,170,189,174,249,170,183,173,255,181,178,188,189,174,183,250,246,178,172,174,255,178,188]},{"922733":[171,170,172,180,246,192,178,189,177,255,182,194,255,171,187,170,183,173,246,183,174,192,255,178,183,191,174,183,189,178,184,183,205,251,254,107,2,194,184,190,255,188,177,170,181,181]},{"922780":[183,184,189,248,185,170,188,188,204,255,192,178,189,177,184,190,189,249,189,177,174,255,187,174,173]},{"922806":[172,170,183,174,205,251,254,107,2,194,184,190,255,172,170,183,255,190,188,174,248,175,178,187,174,255,187,184,173,255,184,187,249,171,184,182,171,184,188,255,189,184,250,246,185,170,188,188,205,251,254,107,2,180,183,184,172,180,255,216,174,182,255,173,184,192,183,248,170,183,173,255,189,177,174,183]},{"922883":[171,184,182,171,249,189,177,174,182,255,173,174,170,173,205,251,254,107,2,189,177,178,188,255,178,188,255,170,255,171,170,173,248,185,181,170,172,174,200,255,192,178,189,177,255,170,249,176,190,194,255,192,177,184,255,192,178,181,181,250,246,182,170,180,174,255,194,184,190,255,175,170,181,181,204,246,246,250,246,170,255,181,184,189,205,251,187,170,183,173,184,182,178,195,174,187,248,189,184,190,187,183,170,182,174,183,189,249,192,178,183,183,174,187,188,250,254,121,45,246,255,255,206,206,206,162,160,161,168,206,206,206,246,188,255,255,170,183,173,194,246,250,246,255,255,206,206,206,162,160,161,167,206,206,206,246,170,255,255,170,179,183,174,171,161,167,164,246,188,255,255,170,179,183,174,171,161,167,164]},{"923063":[172,170,190,176,177,189,255,170,255,171,174,174,248,255,255,228,255,180,174,174,185,249,255]},{"923087":[255,255,187,174,181,174,170,188,174,254,104,251,172,170,190,176,177,189,255,175,170,178,187,194,199,248,255,255,228,255,180,174,174,185,249,255,255,255,255,187,174,181,174,170,188,174,254,104,251,192,177,184,170,200,255,171,190,172,180,184,199,248,183,184,255,174,182,185,189,194,249,171,184,189,189,181,174,188,205,251,194,184,190,187,255,189,178,182,174,255,192,170,188,248,254,108,3,254,108,2,255,182,178,183,255,254,108,1,254,108,0,255,188,174,172,205,251,194,184,190,255,177,170,191,174,255,161,165,248,188,174,172,184,183,173,188,200,249,176,184,204,255,176,184,204,255,176,184,204,251,183,178,172,174,199,248,194,184,190,255,172,170,183,255,177,170,191,174,249,189,177,178]},{"923260":[255,189]},{"923263":[170,188,177,199,251,189,184,184,255,188,181,184,192,199,248,178,255,180,174,174,185,255,182,194,249,185,187,174,172,178,184,190,188,199,251,194,184,190,255,170,181,187,174,170,173,194,248,177,170,191,174,255,194,184,190,187,249,185,187,178,195,174]},{"923326":[255,173,178,183,176,190,188,199,251,189,177,184,190,176,177,189,255,194,184,190,248,172,184,190,181,173,255,188,183,174,170,180,249,178,183,200,255,174,177,198,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,175,178,183,174,199,255,178,255,173,178,173,183,216,189,248,192,170,183,189,255,194,184,190,187,249,182,184,183,174,194,255,170,183,194,192,170,194,205,251,173,190,173,174,199,255,194,184,190,248,170,181,187,174,170,173,194,255,177,170,191,174,249,178,189,205,251,172,184,184,181,199,255,170,255,171,174,174,199,248,177,174,187,174,216,188,255,161,160,160,249,187,190,185,174,174,188,205,251,192,177,184,170,199,255,170,255,175,178,188,177,199,248,194,184,190,255,192,170,181,180,174,173,249,189,177,178,188,255,170,181,181,255,189,177,174,250,246,192,170,194,255,177,174,187,174,198,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,184,177,200,255,172,184,182,174,255,171,194,248,170,183,194,255,189,178,182,174,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,178,255,181,184,188,189,255,182,194,248,175,187,178,174,183,173,205,255,177,174,181,185,249,182,174,255,175,178,183,173,255,177,178,182]},{"923635":[254,110,0,254,107,4,251,254,110,0,254,107,4,251,188,184,182,174,189,177,178,183,176,255,189,177,178,188,248,185,187,174,172,178,184,190,188,255,189,170,180,174,188,249,189,178,182,174,204,255,172,184,182,174,250,246,171,170,172,180,255,181,170,189,174,187,205,251,189,177,170,183,180,188,199,248,249,189,177,170,183,180,188,199,251,173,174,187,183,189,255,189,170,180,174,255,174,187,248,179,174,187,171,188,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,184,177,255,178,255,188,174,174,200,255,183,184,189,248,176,184,184,173,255,174,183,184,190,176,177,249,175,184,187,255,194,184,190,204]},{"923790":[175,178,183,174]},{"923795":[251,188,189,178,181,181,255,177,170,191,174,183,216,189,248,175,184,190,183,173,255,189,177,174,249,178,189,174,182,198,255,173,178,176,255,178,183,250,246,189,177,174,255,181,178,176,177,189,246,192,184,187,181,173,255,170,187,184,190,183,173,246,177,174,187,174,200,255,173,178,183,176,190,188,199,251,188,184]},{"923874":[178,255,176,170,191,174,255,194,184,190,248,170,183,255,178,189,174,182,200,255,170,183,173,249,194,184,190,216,187,174,255,188,189,178,181,181,250,246,177,174,187,174,205,246,246,250,246,246,246,250,246,178,255,182,174,170,183,200,255,192,174,255,172,170,183,246,188,178,189,255,177,174,187,174,255,170,183,173,246,188,189,170,187,174,255,170,189,255,174,170,172,177,250,246,184,189,177,174,187,200,255,178,175,255,194,184,190,246,181,178,180,174,204,246,250,246,246,246,250,246,246,246,250,246,175,178,183,174,200,255,178,255,176,190,174,188,188,246,194,184,190,255,188,177,184,190,181,173,246,179,190,188,189,255,176,184,205,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,189,177,174,255,171,184,184,180,249,184,185,174,183,188,255,189,177,174,250,246,173,174,188,174,187,189,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,183,184,189,177,178,183,176,249,173,184,178,183,176,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,178,216,182,249,172,177,174,170,185,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,170,182,255,178,249,172,177,174,170,185,198,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,195,184,187,170,249,181,178,191,174,188,255,170,189,255,189,177,174,250,246,174,183,173,255,184,175,255,189,177,174,246,187,178,191,174,187,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,189,177,174,255,172,170,185,174,249,172,170,183,255,185,170,188,188,250,246,189,177,187,184,190,176,177,255,189,177,174,246,171,170,187,187,178,174,187,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200]},{"924324":[188,185,178,183,200,249,177,170,182,182,174,187,200,255,184,187,255,183,174,189,250,246,189,184,255,177,190,187,189,246,170,176,170,177,183,178,182,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,194,184,190,255,172]},{"924390":[183,249,179,190,182,185,255,178,183,255,189,177,174,250,246,192,174,181,181,255,171,194,255,189,177,174,246,171,181,170,172,180,188,182,178,189,177,188,251,254,109,1,189,177,174,255,171,181,170,172,180,255,172,170,189,188,248,170,187,174,255,177,190,183,176,187,194,200,249,172,184,182,174,255,171,170,172,180,255,192,178,189,177]},{"924474":[246,187,190,185,174,174,188,251,254,109,1,192,174,181,172,184,182,174,255,189,184,255,189,177,174,248,175,184,187,189,190,183,174,249,188,177,184,185,185,174,199,250,246,175,170,183,172,194,255,170,255,187,174,170,173,198,246,255,255,228,178,255,182,190,188,189,255,180,183,184,192,246,255,255,255,183,174,176,170,189,178,191,174,254,104,251,254,109,1,175,184,187,255,254,108,0,254,108,1,255,187,190,185,174,174,188,248,178,189,255,178,188,255,173,184,183,174,205,249,171,174,255,176,184,183,174,199,251,254,109,1,192,174,181,181,255,189,177,174,183,200,255,192,177,194,248,173,178,173,255,194,184,190,255,174,191,174,183,249,172,184,182,174,255,178,183,255,177,174,187,174,198,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,192,177,194]},{"924673":[194,184,190,249,173,184,198,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,185,170,183,173,170,249,172,187,170,172,180,174,187,188,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,189,177,174,249,182,178,188,188,178,183,176,250,246,171,181,170,172,180,188,182,178,189,177,255,178,188,246,188,184,190,189,177,255,184,175,255,189,177,174,246,191,178,181,181,170,176,174,255,184,175,250,246,184,190,189,172,170,188,189,188]},{"924801":[254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,184,185,174,183,249,172,177,174,188,189,188,255,189,184,255,176,174,189,250,246,188,189,190,175,175,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,194,184,190,255,172,170,183,249,171,190,194,255,170,255,183,174,192,255,171,184,182,171,250,246,170,189,255,189,177,174,255,171,184,182,171,246,188,177,184,185,185,174,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,171,178,176,249,171,184,182,171,188,255,171,181,184,192,255,190,185,250,246,172,187,170,172,180,174,173,255,192,170,181,181,188,246,178,183,255,185,194,187,170,182,178,173,188,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,194,184,190,255,183,174,174,173,249,170,181,181,255,189,177,174,250,246,172,187,194,188,189,170,181,188,255,189,184,246,184,185,174,183,255,176,170,183,184,183,216,188,246,189,184,192,174,187,251,254,109]},{"925055":[171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200]},{"925074":[188,178,181,191,174,187,249,170,187,187,184,192,188,255,192,178,181,181,250,246,173,174,175,174,170,189,255,176,170,183,184,183,246,178,183,255,177,178,188,255,175,178,183,170,181,246,185,177,170,188,174,251,175,184,187,255,162,160,255,187,190,185,174,174,188,248,178,216,181,181,255,189,174,181,181,255,194,184,190,249,188,184,182,174,189,177,178,183,176,198,250,246,177,184,192,255,170,171,184,190,189,255,178,189,198,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,178,255,184,183,172,174,255,192,170,188,255,170,248,189,174,170,255,180,174,189,189,181,174,200,249,171,190,189,255,189,177,174,183,255,178,250,246,182,184,191,174,173,255,190,185,255,178,183,246,189,177,174,255,192,184,187,181,173,200,255,170,183,173,246,183,184,192,255,194,184,190,255,172,170,183,250,246,188,174,174,255,182,174,255,170,188,246,189,177,178,188,205,255,182,170,180,174,188,246,194,184,190,255,192,184,183,173,174,187,205,250,246,192,177,170,189,255,178,255,172,184,190,181,173,246,171,174,255,183,174,193,189,255,189,178,182,174,205,251,189,177,174,183,255,176,184,255,170,192,170,194,199,251,189,177,174,187,174,255,178,188,255,170,248,189,177,178,174,175,255,178,183,255,189,177,174,249,173,174,188,174,187,189,200,255,177,174,255,172,170,183,250,246,184,185,174,183,255,172,187,174,174,185,194,246,172,177,174,188,189,188,255,189,177,170,189,246,175,184,181,181,184,192,255,194,184,190,205,250,246,171,190,189,255,183,184,192,255,189,177,170,189,246,192,174,255,177,170,191,174,255,189,177,170,189,246,184,190,189,255,184,175,255,189,177,174,250,246,192,170,194,200,255,173,184,255,194,184,190,246,181,178,180,174,255,182,194,255,177,170,178,187,198,246,178,216,191,174,255,188,185,174,183,189,250,246,174,184,183,188,255,176,174,189,189,178,183,176,246,178,189,255,189,177,178,188,255,192,170,194,205,251,192,178,189,177,255,172,187,194,188,189,170,181,188,248,165,255,166,200,255,194,184,190,255,172,170,183,249,175,178,183,173,255,170,255,176,187,174,170,189,250,246,175,170,178,187,194,255,178,183,255,189,177,174,246,185,194,187,170,182,178,173,205,246,250,246,175,181,184,182,185,255,175,181,184,182,185,200,246,192,177,178,195,195,181,174,255,192,177,184,182,185,251,170,181,181,255,178,255,172,170,183,255,188,170,194,248,178,188,255,189,177,170,189,255,182,194,249,181,178,175,174,255,178,188,255,185,187,174,189,189,194,250,246,185,181,170,178,183,200]},{"925669":[178,255,181,178,180,174,246,192,170,189,172,177,178,183,216,255,189,177,174,250,246,185,190,173,173,181,174,188,255,176,170,189,177,174,187,246,187,170,178,183,200,246,170,183,173,255,170,181,181,255,178,255,172,170,183,250,246,173,184,255,178,188,255,179,190,188,189,246,185,184,190,187,255,188,184,182,174,255,189,174,170,246,175,184,187,255,189,192,184,200,250,246,170,183,173,255,188,185,174,170,180,255,182,194,246,185,184,178,183,189,255,184,175,255,191,178,174,192,246,171,190,189,255,178,189,216,188,255,183,184,189,250,246,188,170,183,174,200,246,178,189,216,188,255,183,184,189,255,188,170,183,174,251,254,109,1,178,216,182,255,188,178,172,180,199,255,188,177,184,192,248,182,174,255,170,255,171,184,189,189,181,174,200,249,176,174,189,255,188,184,182,174,189,177,178,183,176,199,251,254,110,0,254,107,4,251,254,109,1,181,174,170,191,174,255,182,174,255,170,181,184,183,174,248,178,216,182,255,188,178,172,180,205,255,194,184,190,249,177,170,191,174,255,182,194,255,178,189,174,182,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,222,222,255,222,221,223,222,223]},{"925972":[223,221,223,248,223,221,221]},{"925980":[223,221,221,223,222,249,223,223,221,222,223,255,221,223,222,222,221,251,172,170,183]},{"926002":[194,184,190,255,182,170,180,174,248,189,177,178,183,176,188,255,175,170,181,181,249,184,190,189,255,184,175,255,189,177,174,250,246,188,180,194,198,255,192,178,189,177,255,189,177,174,246,182,170,188,189,174,187,255,188,192,184,187,173,200,246,194,184,190,255,172,170,183,199,251,172,170,183]},{"926076":[194,184,190,255,182,170,180,174,248,189,177,178,183,176,188,255,175,170,181,181,249,184,190,189,255,184,175,255,189,177,174,250,246,188,180,194,198,255,192,178,189,177,255,189,177,174,246,182,170,188,189,174,187,255,188,192,184,187,173,200,246,194,184,190,255,172,170,183,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,119,7,252,3,254,107,2,254,103,255,174,185,178,188,184,173,174,255,255,178,178,178,255,254,120,3,248,255,170,255,181,178,183,180]},{"926199":[189,184,255]},{"926203":[255,255,249]},{"926209":[189,177,174,255,185,170,188,189,255,255,255,254,120,3,246,255,255,187,170,183,173,184,182,178,195,174,187,254,120,3,246,170,175,189,174,187,255,182,184,188,189,181,194,246,173,178,188,187,174,176,170,187,173,178,183,176,246,192,177,170,189,255,177,170,185,185,174,183,174,173,246,178,183,255,189,177,174,255,175,178,187,188,189,246,189,192,184,255,176,170,182,174,188,205,254,120,3,246,181,178,183,180]},{"926312":[170,192,170,180,174,183,188,246,189,184,255,177,178,188,255,190,183,172,181,174,246,181,174,170,191,178,183,176,255,189,177,174,246,177,184,190,188,174,205,254,120,3,246,177,174,255,179,190,188,189,255,187,190,183,188,246,184,190,189,255,189,177,174,255,173,184,184,187,200,254,120,3,246,178,183,189,184,255,189,177,174,255,187,170,178,183,194,246,183,178,176,177,189,205,254,120,3,254,103,254,103,246,176,170,183,184,183,255,177,170,188,246,182,184,191,174,173,255,170,187,184,190,183,173,246,170,181,181,255,189,177,174,255,178,189,174,182,188,246,178,183,255,177,194,187,190,181,174,205,254,120,7,246,194,184,190,255,192,178,181,181,255,177,170,191,174,246,189,184,255,175,178,183,173,255,170,181,181,246,189,177,174,255,178,189,174,182,188,246,183,174,172,174,188,188,170,187,194,255,189,184,246,171,174,170,189,255,176,170,183,184,183,205,254,120,7,246,189,177,178,188,255,178,188,255,194,184,190,187,246,172,177,170,183,172,174,255,189,184,255,171,174,255,170,246,177,174,187,184,205,254,120,3,254,103,254,103,246,194,184,190,255,182,190,188,189]},{"926579":[176,174,189,246,174,183,184,190,176,177,246,172,187,194,188,189,170,181,188,255,189,184,246,171,174,170,189,255,176,170,183,184,183,205,254,120,9,254,103,254,103,251,254,107,2,254,119,7,252,3,247,181,184,184,180,255,170,189,255,189,177,178,188,248,188,189,170,181,175,184,188,255,184,183,255,189,177,174,249,189,177,187,184,183,174,205,251,254,107]},{"926669":[254,119,7,252,3,247,178,189,255,178,188,255,194,184,190,187,248,189,178,182,174,255,189,184,255,188,177,178,183,174,199,251,254,107,2,254,119,7,252,3,247,170,181,188,184,200,255,194,184,190,255,183,174,174,173,248,189,184,255,173,174,175,174,170,189,255,189,177,178,188,249,176,190,194,199,251,254,110,0,254,107,4,251,163,160,255,171,184,182,171,188,255,175,184,187,248,161,160,160,255,187,190,185,174,174,188,205,249,176,184,184,173,255,173,174,170,181,188,255,170,181,181,250,246,173,170,194,199,251,163,160,255,171,184,182,171,188]},{"926807":[175,184,187,248,161,160,160,255,187,190,185,174,174,188,200,249,161,160,160,255,187,190,185,174,174,188,255,161,250,246,171,178,176,255,171,184,182,171,205,255,176,184,184,173,246,173,174,170,181,188,255,170,181,181,255,173,170,194,199,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,177,174,177,200,255,176,184,184,173,255,181,190,172,180,248,176,174,189,189,178,183,176,255,178,183,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,185,175,175,189,205,255,178,255,177,170,191,174,248,183,184,255,187,174,170,188,184,183,255,189,184,249,177,170,183,176,205,255,188,174,174,255,194,170,199,251,183,184,255,183,184,255,183,184,255,183,184,248,183,184,199,255,192]},{"926994":[255,188,177,184,190,181,173,249,185,181,170,194,255,171,194,255,182,194,250,246,187,190,181,174,188,199,246,176,184,184,173,171,194,174,204,251,254,110]},{"927033":[254,107,4,251,170,170,170,170,177,177,177,177,206,199,248,188,201,188,184,255,171,187,178,176,177,189,206,199,251,254,110,0,254,107,4,251,178,255,184,183,172,174,255,177,170,173,255,170,248,175,178,188,177,255,173,178,183,183,174,187,205,255,178,249,188,189,178,181,181,255,187,174,182,174,182,171,174,187,250,246,178,189,255,189,184,255,189,177,178,188,246,173,170,194,205,251,173,184,255,194,184,190,248,187,174,182,174,182,171,174,187,255,192,177,174,183,249,178,255,192,170,188,255,194,184,190,183,176,198,250,246,246,178,255,188,190,187,174,255,173,184,183,216,189,205,251,188,184,200,255,178,216,191,174,255,171,174,174,183,248,181,178,191,178,183,176,255,178,183,255,189,177,178,188,249,172,170,191,174,255,175,184,187,250,246,194,174,170,187,188,200,255,170,183,173,255,194,184,190,246,189,177,178,183,180,255,194,184,190,255,172,170,183,246,179,190,188,189,255,172,184,182,174,250,246,170,181,184,183,176,255,170,183,173,255,171,184,182,171,246,184,185,174,183,255,192,170,181,181,188,198,251,184,183,172,174,200,255,178,255,175,170,187,189,174,173,248,178,183,255,189,177,178,188,255,172,170,191,174,249,188,184,255,171,170,173,255,170,181,181,255,189,177,174,250,246,179,170,195,195,255,177,170,183,173,188,246,176,190,194,188,255,187,170,183]},{"927349":[170,192,170,194,246,170,183,173,255,177,178,173,255,178,183,255,189,177,174,250,246,188,170,183,173,205,251,185,170,183,173,170,188,255,170,187,174,248,191,174,187,194,255,191,178,172,178,184,190,188]},{"927400":[170,183,178,182,170,181,188,205,255,183,174,191,174,187]},{"927416":[175,184,187,176,174,189,204,246,246,250,246,246,246,178,255,183,174,191,174,187,255,192,178,181,181,204,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,184,183,174,255,184,175,255,190,188,248,170,181,192,170,194,188,255,181,178,174,188,205,251,184,183,174,255,184,175,255,190,188,248,170,181,192,170,194,188,255,189,174,181,181,188,249,189,177,174,255,189,187,190,189,177,205,251,184,183,174,255,184,175,255,190,188,248,181,178,180,174,188,255,185,174,170,183,190,189,249,171,190,189,189,174,187,205,251,178,255,192,170,181,181,174,173,255,184,175,175,248,182,194,255,171,187,184,189,177,174,187,255,181,174,184,249,250,246,192,177,170,189,255,170,255,173,178,183,176,190,188,205,251,183,184,192,255,178,255,188,177,184,190,181,173,248,185,187,184,171,170,171,181,194,255,189,170,181,180,249,189,184,255,177,178,182,204,251,173,178,173,255,194,184,190,255,172,184,182,174,248,175,187,184,182,255,182,194,249,171,187,184,189,177,174,187,188,255,187,184,184,182,198,250,246,246,170,187,174,255,192,174,255,172,184,184,181,198,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,175,178,183,174,199,248,176,184,255,176,174,189,255,188,184,182,174,249,182,184,187,174]},{"927832":[182,184,183,174,194,250,246,175,178,187,188,189,205,251,254,110,0,254,107,4,251,182,194,255,176,187,170,183,173,185,170,255,178,188,248,184,191,174,187,255,178,183,255,189,177,174,249,174,170,188,189,205,255,178,216,182,255,171,170,173,250,246,192,178,189,177,246,173,178,187,174,172,189,178,184,183,188,205,246,178,216,181,181,255,182,170,187,180,255,194,184,190,187,250,246,182,170,185,205,255,171,174,188,189,255,184,175,246,181,190,172,180,199,254,121,45,251,188,184,182,174,173,170,194,255,178,216,181,181,248,171,174,255,178,183,255,170,255,177,178,176,177,249,188,172,177,184,184,181,255,171,170,183,173,199,251,173,178,173,255,194,184,190,255,180,183,184,192,204,248,249,250,246,170,255,189,187,174,174,246,189,194,185,178,172,170,181,181,194,255,177,170,188,246,182,170,183,194,255,188,174,172,184,183,173,170,187,194,250,246,171,187,170,183,172,177,174,188,246,188,190,185,185,184,187,189,174,173,246,172,181,174,170,187,255,184,175,255,189,177,174,250,246,176,187,184,190,183,173,255,171,194,255,189,177,174,246,189,187,190,183,180,205,255,189,177,178,188,246,189,187,190,183,180,250,246,189,194,185,178,172,170,181,181,194,246,172,184,183,189,170,178,183,188,255,192,184,184,173,194,246,189,178,188,188,190,174,255,175,184,187,250,246,188,189,187,174,183,176,189,177,200,255,170,183,173,246,191,170,188,172,190,181,170,187,246,189,178,188,188,190,174,255,189,184,250,246,172,170,187,187,194,246,182,170,189,174,187,178,170,181,188,255,175,187,184,182,246,184,183,174,255,185,170,187,189,255,184,175,250]},{"928213":[189,177,174,255,189,187,174,174,255,189,184,246,170,183,184,189,177,174,187,205,251,248,201,192,178,188,177,178,183,176,255,185,184,183,173,201,249,250,246,189,177,187,184,192,255,178,189,174,182]},{"928263":[178,183,198,246,255,255,228,255,194,174,188,177,246,255,255]},{"928279":[255,183,184,254,104,251]},{"928286":[255,255,255,188,189,184,185,255,178,189,199,251,248,255,255,175,178,183,174,255,189,177,174,183,199,251,184,180,170,194]},{"928317":[255,177,174,187,174,216,188,248,194,184,190,187,255,178,189,174,182,249,171,170,172,180,200,255,172,170,190,188,174,255,178,250,246,172,170,183,216,189,255,190,188,174,255,178,189,205,246,178,216,182,255,188,189,190,172,180,255,178,183,246,189,177,178,188,255,175,184,190,183,189,170,178,183,205,251,177,184,192,255,182,170,183,194,198,248,255,255,228,254,108,1,254,108,0,255,187,190,185,174,174,188,249,255,255,255,254,108,3,254,108,2,255,187,190,185,174,174,188,254,104,251,178,255,181,178,180,174,255,194,184,190,200,255,188,184,248,177,174,187,174,216,188,255,170,255,189,177,178,183,176,249,194,184,190,255,172,170,183,255,190,188,174,255,189,184,250,246,171,174,170,189,255,190,185,255,176,170,183,184,183,205,251,248,178,188,255,176,187,174,170,189,255,181,190,172,180,251,248,255,178,188,255,176,184,184,173]},{"928524":[181,190,172,180,251,248,255,178,188,255,182,174,177]},{"928538":[181,190,172,180,251,192,177,194,255,194,184,190,255,172,184,182,174,248,178,183,255,177,174,187,174,255,170,183,173,249,185,187,174,189,174,183,173,255,181,178,180,174,250,246,194,184,190,255,177,170,191,174,246,188,184,182,174,189,177,178,183,176,255,189,177,178,188,246,175,184,190,183,189,170,178,183,250,246,192,170,183,189,188,198,255,172,184,182,174,246,171,170,172,180]},{"928633":[192,178,189,177,246,171,184,189,189,181,174,188,199,251,171,194,255,189,177,174,255,192,170,194,200,248,194,184,190,187,255,175,184,187,189,190,183,174,200,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,192,174,181,181,255,173,184,183,174,200,248,181,174,189,189,190,172,174,255,177,170,191,174,255,170,249,172,190,185,255,184,175]},{"928741":[189,174,170,204,251,178,255,192,187,184,189,174,255,170,248,192,184,187,173,205,255,179,190,188,189,249,184,183,174,205,255,184,183,255,170,250,246,188,189,184,183,174,255,170,183,173,246,189,177,187,174,192,255,178,189,255,178,183,189,184,246,189,177,174,255,184,172,174,170,183,205,255,178,189,250,246,192,170,188,255,182,194,255,192,184,187,173,205,246,178,189,255,192,170,188,255,192,177,170,189,246,192,184,190,181,173,255,188,170,191,174,255,182,174,205,250,246,178,255,177,184,185,174,255,188,184,182,174,173,170,194,246,188,184,182,174,184,183,174,255,175,178,183,173,188,246,189,177,170,189,255,192,184,187,173,255,170,183,173,250,246,171,187,178,183,176,188,255,178,189,255,189,184,246,182,174]},{"928918":[255,189,177,174,255,192,184,187,173,246,178,188,255,189,177,174,250,246,171,174,176,178,183,183,178,183,176,255,184,175,246,182,194,255,188,184,183,176,205,251,178,255,192,187,184,189,174,255,170,248,188,184,183,176,205,255,179,190,188,189,249,184,183,174,205,255,184,183,255,170,250,246,176,190,178,189,170,187,255,170,183,173,246,189,177,187,174,192,255,178,189,255,178,183,189,184,246,189,177,174,255,188,180,194,205,255,178,189,250,246,192,170,188,255,182,194,255,188,184,183,176,205,246,178,189,255,172,184,190,181,173,255,189,170,182,174,246,171,174,170,188,189,188,255,170,183,173,250,246,175,187,174,174]},{"929072":[182,178,183,173,188,205,255,178,189,246,175,181,178,189,189,174,187,188]},{"929091":[184,183,246,189,177,174,255,192,178,183,173,255,170,183,173,250,246,181,190,187,180,188,255,178,183,255,184,190,187,246,182,178,183,173,188,205,255,178,189,255,178,188,246,189,177,174,255,188,184,183,176,255,184,175,250,246,183,170,189,190,187,174,200,255,184,175,246,177,190,182,170,183,178,189,194,200,255,184,175,246,173,187,174,170,182,188,255,170,183,173,250,246,173,187,174,170,182,174,187,188,205,251,170,173,173,255,176,170,187,181,178,172,200,248,176,178,183,176,174,187,255,170,183,173,249,170,185,185,181,174,255,170,183,173,255,172,184,184,180,250,246,175,184,187,255,162,255,182,178,183,190,189,174,188,205,246,170,173,173,255,172,170,187,187,184,189,188,200,246,185,184,189,170,189,184,174,188,200,250,246,176,170,187,170,182,255,182,170,188,170,181,170,246,170,183,173,255,172,190,187,187,194,246,185,184,192,173,174,187,255,170,183,173,250,246,188,189,178,187,255,192,174,181,181,205,255,170,173,173,246,189,184,182,170,189,184,255,185,170,188,189,174,200,246,188,189,178,187,255,192,174,181,181,255,170,183,173,250,246,188,181,184,192,181,194,255,170,173,173,255,187,174,173,246,192,178,183,174,255,170,183,173,255,171,187,178,183,176,246,189,184,255,170,255,171,184,178,181,205,255,170,173,173,250,246,188,190,176,170,187,200,255,188,184,194,246,188,170,190,172,174,255,170,183,173,246,192,170,189,174,187,200,255,188,189,178,187,250,246,170,183,173,255,171,187,178,183,176,255,189,184,255,170,246,171,184,178,181,255,170,176,170,178,183,205,251,178,255,189,177,178,183,180,255,178,248,175,184,187,176,184,189,255,177,184,192,255,189,184,249,188,182,178,181,174,204,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,188,184,200,255,181,178,180,174,200,255,194,184,190,248,183,174,174,173,255,163,160,249,187,190,185,174,174,188,205,250,246,188,178,181,181,194,199,251,194,184,190,255,192,170,183,189,255,189,184,248,185,181,170,194,255,170,255,176,170,182,174,198,249,189,170,181,180,255,189,184,255,182,174,205,251,194,184,190,216,191,174,255,184,185,174,183,174,173,248,189,177,174,255,172,177,174,188,189,188,199,249,189,178,182,174,255,189,184,255,176,184,205,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,188,184,200,255,181,178,180,174,200,255,194,184,190,248,170,181,187,174,170,173,194,255,177,170,191,174,249,184,183,174,255,184,175,255,189,177,184,188,174]},{"929669":[251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251]},{"929699":[110,0,254,107,4,251,254,110,0,254,107,4,251,192,177,194,255,173,184,174,188,255,183,184,248,184,183,174,255,184,192,183,249,171,184,189,189,181,174,188,198,255,176,184,250,246,175,178,183,173,255,184,183,174,246,175,178,187,188,189,199,251,194,184,190,255,170,187,174,248,172,170,187,187,194,178,183,176,255,189,184,249,182,190,172,177,255,172,187,170,185,200,255,176,184,250,246,190,188,174,255,188,184,182,174,255,184,175,255,178,189,246,175,178,187,188,189,199,251,194,184,190,255,173,187,184,191,174,248,170,192,170,194,255,182,194,255,184,189,177,174,187,249,188,174,181,175,200,255,170,176,170,177,183,178,182,200,250,246,189,192,184,255,189,178,182,174,188,204,246,171,190,189,200,255,178,255,192,184,183,216,189,246,176,178,191,174,255,194,184,190,255,189,177,174,250,246,189,187,178,175,184,187,172,174,205,246,178,216,181,181,255,173,174,175,174,170,189,246,194,184,190,199,251,172,170,183,255,194,184,190,255,171,174,170,189,248,182,194,255,173,170,187,180,183,174,188,188,249,189,174,172,177,183,178,186,190,174,198,251,177,170,191,174,255,194,184,190,255,188,174,174,183,248,170,183,173,194,198,249,250,246,177,174,255,192,170,188,255,184,190,189,246,181,184,184,180,178,183,176,255,175,184,187,246,184,190,187,255,185,187,178,195,174,173,250,246,174,189,177,174,187,246,182,174,173,170,181,181,178,184,183,205,246,178,255,192,184,183,173,174,187,255,192,177,174,183,250,246,177,174,255,192,178,181,181,255,171,174,246,171,170,172,180,198,251,178,216,182,255,179,190,188,189,255,188,184,182,174,248,173,190,173,174,205,255,189,177,178,188,255,178,188,249,171,181,178,183,173,216,188,255,177,190,189,205,251,252,2,254,109,0,254,107,2,255,255,255,255,255,176,255,176,251,184,190,172,177,199,248,249,194,184,190,255,179,174,187,180,199,251,173,184]},{"930143":[216,189,255,170,187,176,190,174,248,192,178,189,177,255,170,255,175,187,184,195,174,183,249,173,174,170,173,187,184,172,180]},{"930175":[250,246,177,174,216,181,181]},{"930183":[183,174,191,174,187,246,172,177,170,183,176,174,255,177,178,188,246,185,184,188,178,189,178,184,183,199,251,254,110,0,254,107,4,251,188,184,255,194,184,190,200]},{"930225":[181,178,180,174,200,248,171,190,188,189,174,173,255,173,184,192,183]},{"930243":[182,194,249,173,184,184,187,200,255,170,183,173,255,170,187,174,250,246,171,174,178,183,176,255,170,255,179,174,187,180,246,171,194,255,189,170,181,180,178,183,176,255,189,184,246,182,174,198,255,183,184,187,182,170,181,181,194,255,178,250,246,192,184,190,181,173,255,171,174,255,170,183,176,187,194,246,170,183,173,255,182,170,180,174,255,194,184,190,246,185,170,194,255,175,184,187,255,178,189,200,250,246,171,190,189,255,178,255,171,174,189,246,194,184,190,216,187,174]},{"930362":[179,190,188,189,246,176,184,178,183,176,255,189,184,255,171,187,174,170,180,250,246,170,181,181,255,182,194,255,185,184,189,188,246,170,183,173,255,188,189,174,170,181,255,182,194,246,165,160,255,187,190,185,174,174,188,205,251,178,216,182,255,170,255,187,190,185,174,174,248,185,184,189,255,175,170,187,182,174,187,205,249,184,183,174,255,173,170,194,255,178,255,192,178,181,181,250,246,189,170,180,174,255,184,191,174,187,255,189,177,174,246,192,184,187,181,173,255,192,178,189,177]},{"930484":[182,194,246,188,180,178,181,181,195,205,255,177,170,191,174,250,246,194,184,190,255,182,174,189,255,182,194,246,171,187,184,189,177,174,187,255,178,183,255,189,177,174,246,173,174,188,174,187,189,198,255,177,174,216,188,250,246,192,170,194,255,187,178,172,177,174,187]},{"930552":[189,177,170,183,255,178]},{"930559":[170,182,205,251,206,206,255,173,174,191,255,172,170,191,174]},{"930575":[206,206,248,255,255,183,184,255,175,170,187,182,178,183,176,249,255,255,255,187,174,186,190,178,187,174,173,251,173,178,173,255,194,184,190,255,177,174,170,187,248,189,177,170,189,255,191,174,174,189,184,187,185,249,171,174,170,189,255,170,179,183,174,171,161,167,164,250,246,178,183,255,170,255,161,255,184,183,255,161,246,187,170,172,174,255,170,189,255,170,176,173,186,198,251,194,184,190,255,175,184,190,183,173,248,188,177,170,171,170,173,184,184,200,255,177,190,177,198,249,183,178,178,178,178,178,172,174,205,251,194,184,199,255,178,216,182,255,183,184,189,248,187,190,183,183,178,183,176,255,170,249,172,177,170,187,178,189,194,255,177,174,187,174,205,251,188,182,170,181,181,177,170,172,180,174,187,204,248,249,250,246,192,170,188,255,177,178,173,178,183,176,200,246,194,184,190,255,175,184,190,183,173,255,182,174,199,246,250,246,246,184,180,170,194,200,255,194,184,190,255,172,170,183,246,181,174,170,191,174,255,183,184,192,205,251,185,170,194,255,162,160,255,187,190,185,174,174,188,200,248,184,185,174,183,255,161,255,172,177,174,188,189,205,249,170,187,174,255,194,184,190,255,181,190,172,180,194,198,250,246,188,184,200,255,185,181,170,194,255,176,170,182,174,198,246,255]},{"930873":[228]},{"930875":[185,181,170,194,246,255]},{"930884":[183,174,191,174,187,199,254,104,251,176,184,184,173,255,181,190,172,180,255,189,177,174,183,251,192,174,181,181,255,175,178,183,174,200]},{"930919":[178,248,173,178,173,183,216,189,255,192,170,183,189,249,194,184,190,187,255,187,190,185,174,174,188,205,251,185,170,194,255,161,160,160]},{"930954":[187,190,185,174,174,188,248,184,185,174,183,255,161,255,172,177,174,188,189,205,249,170,187,174]},{"930979":[194,184,190,255,181,190,172,180,194,198,250,246,188,184,200,255,185,181,170,194,255,176,170,182,174,198,246,255,255,228,255,185,181,170,194,246,255,255,255,255,183,174,191,174,187,199,254,104,251,178,255,188,190,187,174,255,173,184,255,177,170,191,174,248,170,255,181,184,189,255,184,175,255,171,174,173,188,205,249,250,246,195,184,187,170,255,178,188,255,170,246,172,177,174,170,185,188,180,170,189,174,255,170,183,173,246,192,178,181,181,255,189,187,194,255,189,184,250,246,188,174,181,181,255,194,184,190,255,177,178,188,246,189,187,170,188,177,255,175,184,187,255,165,160,160,246,187,190,185,174,174,188,204,251,178,255,188,190,187,174,255,173,184,255,177,170,191,174,248,170,255,181,184,189,255,184,175,255,171,174,173,188,205,249,250,246,173,178,173,255,194,184,190,255,180,183,184,192,246,178,175,255,194,184,190,255,185,181,170,194,174,173,246,189,177,174,255,175,181,190,189,174,255,178,183,250,246,189,177,174,255,172,174,183,189,174,187,255,184,175,246,189,184,192,183,255,189,177,178,183,176,188,246,172,184,190,181,173,255,177,170,185,185,174,183,198,251,254,109,0,252,0,228,254,106,216,188,255,177,184,190,188,174,248,255,188,170,183,172,189,190,170,187,194,254,114,251,254,109,0,252,0,228,254,106,216,188,255,177,184,190,188,174,248,255,188,170,183,172,189,190,170,187,194,249,255,182,184,190,183,189,170,178,183,255,172,170,191,174,254,113,251,252,0,228,172,184,183,189,178,183,190,174,248,255,188,170,191,174,255,170,183,173]},{"931343":[186,190,178,189,254,114,251,254,110,0,254,107,4,251,254,110,0,254,107,4,251,188,177,184,191,174,181,255,187,174,183,189,170,181,248,178,188,255,168,160,255,187,190,185,174,174,188,205,249,178,255,177,170,191,174,255,170,181,181,255,173,170,194,251,189,178,182,174,216,188,255,190,185,199]},{"931418":[189,178,182,174,255,175,184,187,255,194,184,190,249,189,184]},{"931434":[176,184,205,251,172,184,182,174,255,171,170,172,180,248,181,170,189,174,187,200,255,178,255,177,170,191,174,249,189,184,255,171,190,187,194,250,246,189,177,178,183,176,188,205,251,188,184,182,174,189,177,178,183,176,255,178,188,248,175,184,181,181,184,192,178,183,176,255,194,184,190,205,249,178,255,173,184,183,216,189,255,181,178,180,174,205,251,254,109,0,252,0,228,254,106,216,188,255,177,184,190,188,174,248,255,182,184,190,183,189,170,178,183,255,172,170,191,174,254,114,251,194,184,190,255,189,177,178,183,180]},{"931565":[194,184,190,248,170,187,174,255,187,174,170,173,194,255,189,184,249,175,170,172,174,255,182,174,198,250,246,246,178,255,192,178,181,181,255,183,184,189,255,173,178,174,246,250,246,190,183,181,174,188,188,255,194,184,190,246,172,184,182,185,181,174,189,174,255,194,184,190,187,246,176,184,170,181,188,205,255,173,178,183,176,190,188,199,251,176,184,189]},{"931654":[192,170,193]},{"931658":[178,183,248,194,184,190,187,255,174,170,187,188,198,255,178,249,172,170,183,183,184,189,255,173,178,174,199,251,177,184,192,255,173,178,173]},{"931694":[194,184,190,248,176,174,189,255,190,185,255,177,174,187,174,198,251,178,189,216,188,255,170,255,188,174,172,187,174,189,248,189,184,255,174,191,174,187,194,184,183,174,205,251,194,184,190,255,183,174,174,173,255,170,181,181,255,167,248,172,187,194,188,189,170,181,188,255,189,184,249,174,183,189,174,187,205,251,194,184,190,255,183,174,174,173,255,170,181,181,255,167,248,172,187,194,188,189,170,181,188,255,189,184,249,171,174,170,189,255,176,170,183,184,183,205,251,194,184,190,255,177,170,191,174,255,183,184,248,171,184,192,205,255,173,178,183,176,190,188,199,251,194,184,190,255,172,170,183,216,189,255,171,174,188,189,248,182,174,255,192,178,189,177,184,190,189,249,188,178,181,191,174,187,255,170,187,187,184,192,188,199,251,194,184,190,255,172,170,183,216,189,255,171,174,188,189,248,182,174,255,192,178,189,177,184,190,189,249,188,178,181,191,174,187,255,170,187,187,184,192,188,199,251,184,177,255,183,184,199,255,188,178,181,191,174,187,199,248,182,194,255,184,183,174,255,189,187,190,174,249,192,174,170,180,183,174,188,188,199,251,177,174,181,181,184,255,254,106,205,255,178,248,170,182,255,182,190,187,170,177,173,170,177,181,170,200,249,171,187,184,189,177,174,187,255,184,175,250,246,188,170,177,170,188,187,170,177,181,170,255,170,183,173,246,170,176,178,183,170,177,205,255,171,174,177,184,181,173,246,189,177,174,255,185,184,192,174,187,255,184,175,250,246,178,183,191,178,188,178,171,178,181,178,189,194,205,254,120,3,246,204,255,204,255,204,246,192,170,178,189,199,255,194,184,190,255,172,170,183,250,246,188,174,174,255,182,174,198]},{"932084":[178,255,180,183,174,192,246,178,255,188,177,184,190,181,173,255,177,170,191,174,246,177,178,173,173,174,183,255,178,183,255,255,170,250,246,177,184,181,181,184,192,255,189,187,174,174,205,251,255]},{"932134":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932251":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932333":[255]},{"932335":[255,255,255,255,255,255,255,255,255]},{"932348":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932364":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932544":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932636":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932725":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932864":[255]},{"932866":[255,255,255,255,255,255,255,255]},{"932878":[255,255,255,255,255,255,255,255,255,255,255,255]},{"932891":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"932938":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933050":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933207":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933260":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933322":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933413":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933485":[255,255]},{"933488":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933595":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933615":[255,255]},{"933618":[255,255]},{"933621":[255,255,255,255,255,255,255,255,255,255]},{"933632":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933726":[255]},{"933728":[255,255,255,255,255,255,255]},{"933739":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933820":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933842":[255,255,255,255,255]},{"933848":[255,255,255,255,255,255,255]},{"933856":[255,255,255,255,255,255,255,255,255,255,255]},{"933868":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933883":[255,255,255,255,255,255,255,255]},{"933892":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933918":[255,255,255,255,255,255,255,255]},{"933927":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933966":[255,255,255,255,255,255,255]},{"933974":[255]},{"933976":[255,255,255]},{"933980":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"933998":[255,255,255,255,255,255,255,255,255,255,255]},{"934010":[255,255,255,255,255,255,255]},{"934018":[255]},{"934020":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934040":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934094":[255,255,255,255,255,255]},{"934101":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934128":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934145":[255,255,255,255,255,255,255,255,255,255]},{"934157":[255]},{"934172":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934198":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934215":[255,255,255,255,255,255,255,255,255,255,255]},{"934231":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934255":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934274":[255,255,255,255,255,255,255,255,255,255]},{"934291":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934312":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934330":[255]},{"934345":[255,255,255,255,255,255,255]},{"934353":[255,255,255,255,255,255,255,255,255,255,255]},{"934365":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934382":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934398":[255,255,255,255,255,255,255,255,255,255,255]},{"934410":[255,255,255,255,255,255]},{"934422":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934443":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934462":[255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934476":[255,255,255,255,255,255,255,255,255,255,255,255]},{"934489":[255,255,255,255,255,255,255,255]},{"934504":[255]},{"934519":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934555":[255]},{"934570":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934743":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934790":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934833":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935013":[255]},{"935015":[255,255,255,255,255,255,255,255]},{"935027":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935044":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935076":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935109":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935168":[255]},{"935170":[255,255,255,255,255,255,255,255,255]},{"935183":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935199":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935230":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935268":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935307":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935372":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935498":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935516":[255]},{"935518":[255]},{"935520":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935922":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"935975":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936045":[255,255,255]},{"936049":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936123":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936202":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936231":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936288":[255]},{"936302":[255]},{"936316":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936376":[255]},{"936391":[255]},{"936399":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936471":[255]},{"936486":[255]},{"936501":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936571":[255]},{"936584":[255]},{"936597":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936674":[255]},{"936689":[255]},{"936704":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936773":[255]},{"936787":[255]},{"936800":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936866":[255]},{"936881":[255]},{"936893":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"936970":[255]},{"936985":[255]},{"937000":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937031":[255]},{"937033":[255]},{"937035":[255]},{"937037":[255]},{"937039":[255,255,255,255,255,255,255,255,255,255,255,255]},{"937052":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937109":[255]},{"937123":[255]},{"937137":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937204":[255]},{"937219":[255]},{"937234":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937296":[255]},{"937311":[255]},{"937321":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937366":[255]},{"937380":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937441":[255]},{"937455":[255]},{"937466":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937538":[255]},{"937553":[255]},{"937564":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937624":[255]},{"937639":[255]},{"937646":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937696":[255]},{"937708":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937781":[255]},{"937795":[255]},{"937807":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937870":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937927":[255]},{"937941":[255]},{"937955":[255,255,255,255,255,255,255,255,255,255]},{"937966":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938020":[255]},{"938032":[255]},{"938046":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938117":[255]},{"938132":[255]},{"938145":[255,255,255,255,255,255,255,255,255,255,255]},{"938157":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938196":[255]},{"938211":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938284":[255]},{"938299":[255]},{"938314":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938385":[255]},{"938399":[255]},{"938414":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938437":[255,255,255,255]},{"938442":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938468":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938525":[255]},{"938539":[255]},{"938553":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938632":[255]},{"938646":[255]},{"938660":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938727":[255]},{"938742":[255]},{"938756":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938813":[255]},{"938828":[255]},{"938839":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938902":[255]},{"938916":[255]},{"938924":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938959":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939016":[255]},{"939030":[255]},{"939044":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939114":[255]},{"939129":[255]},{"939144":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939220":[255]},{"939234":[255]},{"939249":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939324":[255]},{"939339":[255]},{"939354":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939423":[255]},{"939434":[255]},{"939448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939516":[255]},{"939531":[255]},{"939544":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939577":[255]},{"939579":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939598":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939655":[255]},{"939669":[255]},{"939683":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939752":[255]},{"939767":[255]},{"939780":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939854":[255]},{"939868":[255]},{"939882":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939953":[255]},{"939967":[255]},{"939982":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940050":[255]},{"940065":[255]},{"940078":[255,255,255,255,255,255,255,255,255,255]},{"940089":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940153":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940197":[255]},{"940212":[255]},{"940226":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940258":[255]},{"940260":[255]},{"940262":[255,255,255,255,255]},{"940281":[255]},{"940291":[255]},{"940298":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940371":[255]},{"940386":[255]},{"940401":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940467":[255]},{"940482":[255]},{"940491":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940557":[255]},{"940572":[255]},{"940581":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940653":[255]},{"940668":[255]},{"940683":[255,255,255]},{"940687":[255,255]},{"940690":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940715":[255]},{"940717":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940787":[255]},{"940789":[255]},{"940792":[255,255]},{"940798":[255,255,255,255,255,255,255,255,255,255]},{"940809":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940867":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940911":[255]},{"940926":[255]},{"940940":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940972":[255]},{"940974":[255]},{"940976":[255,255,255,255,255]},{"940995":[255]},{"941005":[255]},{"941012":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941085":[255]},{"941100":[255]},{"941115":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941181":[255]},{"941196":[255]},{"941205":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941271":[255]},{"941286":[255]},{"941295":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941362":[255]},{"941371":[255]},{"941385":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941457":[255]},{"941472":[255]},{"941484":[255,255,255]},{"941488":[255,255]},{"941491":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941516":[255]},{"941518":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941563":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941611":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941628":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941742":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941775":[255,255,255,255,255,255,255,255,255]},{"941785":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941954":[255]},{"941956":[255,255,255,255,255,255,255,255,255]},{"941969":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942030":[255]},{"942032":[255,255,255,255,255,255,255,255,255,255]},{"942046":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942076":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942170":[255,255,255,255,255,255,255]},{"942179":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942789":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942832":[255]},{"942834":[255,255,255,255,255,255,255]},{"942845":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942899":[255]},{"942901":[255]},{"942903":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942923":[255]},{"942925":[255,255,255,255,255,255,255,255,255,255]},{"942939":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943097":[255,255,255,255,255]},{"943104":[255,255,255,255,255]},{"943112":[255,255,255,255,255]},{"943119":[255,255,255,255,255]},{"943127":[255,255,255,255,255]},{"943134":[255,255,255,255,255]},{"943142":[255,255,255,255,255,255]},{"943150":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943187":[255,255]},{"943195":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943211":[255,255]},{"943219":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943235":[255,255]},{"943243":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943259":[255,255]},{"943267":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943298":[255,255]},{"943306":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943346":[255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943360":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943570":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943586":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943830":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943882":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943936":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943957":[255]},{"943959":[255,255,255,255,255,255,255]},{"943970":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944480":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944607":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944909":[255]},{"944911":[255]},{"944913":[255,255,255,255,255]},{"944930":[255]},{"944945":[255]},{"944952":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944981":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945024":[255]},{"945039":[255]},{"945053":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945121":[255]},{"945134":[255]},{"945148":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945213":[255]},{"945227":[255]},{"945241":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945317":[255]},{"945332":[255]},{"945347":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945418":[255]},{"945433":[255]},{"945448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945517":[255]},{"945532":[255]},{"945545":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945616":[255]},{"945631":[255]},{"945646":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945682":[255]},{"945684":[255]},{"945686":[255]},{"945688":[255,255,255,255,255,255,255]},{"945696":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945924":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945941":[255,255,255,255,255,255,255]},{"945949":[255]},{"945951":[255]},{"945953":[255]},{"945955":[255,255,255,255,255,255,255,255,255]},{"945965":[255,255,255,255,255,255,255]},{"945973":[255]},{"945975":[255]},{"945977":[255,255,255,255,255,255,255,255]},{"945987":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946002":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946074":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946091":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946110":[255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946124":[255,255,255,255,255,255,255,255,255,255,255,255]},{"946137":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946210":[255]},{"946213":[255,255,255,255,255,255,255]},{"946225":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946346":[255]},{"946349":[255,255,255,255,255,255,255]},{"946361":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946376":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946558":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946679":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946711":[255,255,255,255,255,255,255,255,255,255,255]},{"946723":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946743":[255,255,255,255,255,255,255,255,255,255]},{"946755":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946826":[255]},{"946828":[255,255,255,255,255]},{"946837":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946864":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946908":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"947006":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"950962":[143]},{"954488":[34,188,236,160,96]},{"954852":[144,182,160]},{"955117":[155,236,160]},{"955529":[140,182,160]},{"962925":[105,182,160]},{"962951":[105,182,160]},{"963167":[105,182,160]},{"963214":[105,182,160]},{"965041":[105,182,160]},{"965069":[105,182,160]},{"965214":[105,182,160]},{"965298":[105,182,160]},{"965316":[105,182,160]},{"967797":[34,209,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,235,180,160]},{"972824":[56,182,160]},{"972834":[56,182,160]},{"972851":[56,182,160]},{"974571":[235,138,39]},{"974665":[92,106,198,160,234]},{"974706":[167,198,160]},{"974722":[140,198,160]},{"975106":[34,187,143,160]},{"975132":[34,187,143,160]},{"975265":[34,123,198,160,234,234]},{"975332":[34,89,198,160,234,234]},{"975401":[255]},{"976357":[101,182,160]},{"976423":[101,182,160]},{"978658":[85,182,160]},{"979078":[34,70,221,160]},{"979173":[204]},{"979181":[234]},{"979189":[250]},{"979197":[234]},{"979205":[250]},{"979213":[206]},{"979221":[206]},{"979229":[206]},{"979237":[206]},{"979245":[236]},{"979253":[235]},{"979261":[251]},{"979269":[235]},{"979277":[251]},{"979285":[236]},{"979293":[236]},{"979301":[236]},{"979309":[236]},{"979317":[236]},{"979325":[235]},{"979333":[251]},{"979341":[235]},{"979349":[251]},{"979357":[206]},{"979365":[206]},{"979373":[206]},{"979381":[206]},{"979389":[204]},{"979397":[234]},{"979405":[250]},{"979413":[234]},{"979421":[250]},{"979429":[204]},{"979437":[204]},{"979445":[204]},{"979453":[204]},{"979461":[235]},{"979469":[251]},{"979477":[235]},{"979485":[251]},{"979493":[251]},{"979501":[251]},{"979509":[251]},{"979517":[251]},{"979525":[251]},{"982376":[217,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,53,197,160]},{"983466":[85,182,160]},{"983651":[85,182,160]},{"988539":[97,182,160]},{"988657":[97,182,160]},{"988668":[97,182,160]},{"988874":[97,182,160]},{"988902":[97,182,160]},{"989142":[97,182,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[126,129,160]},{"996856":[89,182,160]},{"999246":[93,182,160]},{"999265":[93,182,160]},{"999359":[93,182,160]},{"999574":[93,182,160]},{"1002731":[92,57,205,30]},{"1003079":[92,47,198,160]},{"1003229":[34,188,155,160]},{"1003277":[34,188,155,160]},{"1003556":[34,249,138,39,128,3,234,234,234]},{"1004410":[240,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[60,182,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[60,182,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,220]},{"1008028":[160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,98,143,160,234,234]},{"1010175":[233,143,160]},{"1011427":[34,68,170,160,96,234]},{"1011808":[34,228,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,98,185,160,48,66,192,27,240,63,192,5,240,59,192,4,240,55,192,12,240,51,192,11,240,47,192,58,240,43,192,73,240,57,192,1,240,53,192,80,240,49,192,2,240,45,192,59,240,30,192,42,240,26,192,13,240,22,192,20,240,18,192,19,240,14,192,41,240,10,135]},{"1048648":[107,199]},{"1048651":[176,249,167]},{"1048655":[107,72,167]},{"1048659":[208,4,104,135]},{"1048664":[107,104,107,72,152,201,73,208,2,169]},{"1048675":[201,80,208,2,169,1,26,207,23,244,126,176,14,175,23,244,126,58,168,104,175,23,244,126,130,200,255,104,130,196,255,169]},{"1048708":[143,211,243,126,169,10,143,204,243,126,107,175,197,243,126,240,6,175,145,80,127,73,1,107,165,138,201,128,208,2,165,35,107,175,87,243,126,240,1,107,175,202,243,126,41,64,72,175,74,128,48,208,5,104,73,64,128,1,104,107,165,27,240,1,107,175,87,243,126,240,1,107,165,138,41,64,72,175,74,128,48,208,5,104,73,64,128,1,104,107,173,224,2,240,13,34,165,128,160,240,7,100,93,156,224,2,100,86,96,175,116,129,48,240,36,175,74,128,48,240,8,169]},{"1048831":[143,202,243,126,128,6,169,64,143,202,243,126,34,165,128,160,208,10,32,33,129,169,4,141,44,1,128,5,169,9,141,44,1,107,218,90,169,23,133,93,169,1,141,224,2,133,86,34,138,253,2,122,250,96,175,202,243,126,208,16,175,204,243,126,201,7,208,26,169,8,143,204,243,126,128,14,175,204,243,126,201,8,208,10,169,7,143,204,243,126,34,99,212]},{"1048925":[96,175,164,128,48,208,10,173,12,4,201,12,208,3,156,122,4,107,142,216,2,34,4,157,9,144,1,107,100,174,100,175,107,100,167,194,32,156,24,6,156,26,6,226,32,92,138,187,13,194,32,175,89,243,126,133,12,175,91,243,126,41,255]},{"1048989":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1049012":[159]},{"1049014":[195,126,159]},{"1049018":[197,126,230]},{"1049022":[230]},{"1049024":[232,232,136,16,237,107,167]},{"1049032":[159]},{"1049034":[197,126,230]},{"1049038":[230]},{"1049040":[232,232,136,16,241,107,169,9,157,159,3,165,27,208,10,165,138,201,128,208,4,165,140,201,151,107,169,112,72,171,34,224,130,160,34,139,187,164,107,175,74,128,48,240,3,76,106,130,175,160,128,48,240,6,34,203,138,39,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049112":[143,202,243,126,175,204,243,126,201,7,208,6,169,8,143,204,243,126,107,175,74,128,48,240,3,76,155,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,247,129,175,162,128,48,208,23,76,12,130,169,64,143,202,243,126,175,204,243,126,201,8,208,6,169,7,143,204,243,126,107,175,160,128,48,240,6,34,203,138,39,240,10,175,197,243,126,201,3,144,2,128,26,169,64,143,202,243,126,175,204,243,126,201,7,240,6,201,8,240,2,128,6,169]},{"1049238":[143,204,243,126,107,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,247,129,175,162,128,48,208,23,76,118,130,169]},{"1049278":[143,202,243,126,175,204,243,126,201,7,208,6,169,8,143,204,243,126,107,175,116,129,48,240,8,165,138,41,64,143,202,243,126,107,175,204,243,126,201,14,240,1,107,169]},{"1049323":[143,204,243,126,107,169]},{"1049330":[143,204,243,126,34,69,249]},{"1049338":[107,175,197,243,126,201,1,240,1,107,175,200,243,126,201,3,208,47,175,133,129,48,56,239,110,243,126,144,4,143,115,243,126,175,134,129,48,56,239,67,243,126,144,4,143,117,243,126,175,135,129,48,56,239,119,243,126,144,4,143,118,243,126,128,100,201,2,208,47,175,136,129,48,56,239,110,243,126,144,4,143,115,243,126,175,137,129,48,56,239,67,243,126,144,4,143,117,243,126,175,138,129,48,56,239,119,243,126,144,4,143,118,243,126,128,49,201,4,208,45,175,139,129,48,56,239,110,243,126,144,4,143,115,243,126,175,140,129,48,56,239,67,243,126,144,4,143,117,243,126,175,141,129,48,56,239,119,243,126,144,4,143,118,243,126,107,175,197,243,126,201,1,208,30,175,77,128,48,137,4,240,4,143,202,80,127,137,2,240,4,143,201,80,127,137,1,240,4,143,200,80,127,128,42,175,77,128,48,137,4,240,6,169]},{"1049552":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049566":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049580":[143,200,80,127,107,175,129,129,48,240,15,175,64,243,126,201,3,144,7,56,233,2,143,64,243,126,107,175,196,80,127,201,1,208,1,107,201,255,208,2,26,107,175,74,243,126,208,27,175,202,243,126,208,17,173,12,4,208,6,175,56,128,48,128,10,175,57,128,48,128,4,175,58,128,48,107,175,197,243,126,201,2,144,3,169,1,107,175,204,243,126,107,34,7,132,160,133,29,107,34,224,130,160,175,61,128,48,208,40,175,187,242,126,41,223,143,187,242,126,175,251,242,126,41,223,143,251,242,126,175,22,242,126,41,127,143,22,242,126,175,81,240,126,41,254,143,81,240,126,175,161,128,48,240,50,175,4,144,39,240,26,175,111,240,126,41,4,240,8,175,86,243,126,41,1,208,10,175,110,240,126,41,127,143,110,240,126,175,107,240,126,41,4,208,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,27,134,160,168,34,67,134,160,34,165,141,160,143,152,192,126,156,233,2,192,38,208,21,175,152,192,126,208,15,175,107,243,126,26,41,3,143,107,243,126,208,14,128]},{"1049838":[34,179,145,7,34,157,153,7,24,130,1]},{"1049850":[56,34,69,180,160,122,250,107,218,90,34,125,193,160,188,128,14,208,5,34,16,139,160,168,128,182,8,34,66,152,160,144,42,72,90,175]},{"1049887":[80,127,240,7,34,209,133,160,130,25]},{"1049898":[189,128,14,34,67,151,160,201,3,208,10,72,189,96,14,9,32,157,96,14,104,34,92,220,6,122,104,40,107,8,34,66,152,160,144,247,72,90,175]},{"1049938":[80,127,240,6,34,255,133,160,128,231,189,128,14,128,204,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,67,141,160,144,4,169,46,56,107,24,107,175,152,192,126,240,2,56,107,189,94,12,192,32,240,19,192,55,240,15,192,56,240,11,192,57,240,7,72,34,67,141,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1050036":[107,191,128,242,126,107,175,52,80,127,240,6,58,143,52,80,127,107,191,128,242,126,9,64,159,128,242,126,107,72,175,147,129,48,240]},{"1050072":[169,1,143]},{"1050076":[80,127,165,93,201,20,240,25,169]},{"1050086":[143]},{"1050088":[80,127,34,165,141,160,143,153,192,126,34,27,134,160,157,128,14,34,173,150,160,104,107,72,169]},{"1050114":[143]},{"1050116":[80,127,34,165,141,160,143,153,192,126,34,16,139,160,157,128,14,34,173,150,160,104,107,165,27,240,7,34,96,134,160,130,4]},{"1050150":[34,253,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050175":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050192":[208,11,175,22,244,126,9,1]},{"1050201":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050216":[208,50,175,135,128,48,208,6,175]},{"1050226":[128,48,128,35,218,8,194,48,165]},{"1050236":[72,165,2,72,169]},{"1050242":[128,133]},{"1050245":[169,48]},{"1050248":[133,2,169]},{"1050253":[34,61,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050271":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050291":[72,165,2,72,169]},{"1050297":[128,133]},{"1050300":[169,48]},{"1050303":[133,2,169,1]},{"1050308":[34,61,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050326":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050346":[72,165,2,72,169]},{"1050352":[128,133]},{"1050355":[169,48]},{"1050358":[133,2,169,2]},{"1050363":[34,61,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050378":[201,27,1,208,108,165,34,235,41,1]},{"1050389":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050409":[72,165,2,72,169]},{"1050415":[128,133]},{"1050418":[169,48]},{"1050421":[133,2,169,3]},{"1050426":[34,61,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050441":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050459":[72,165,2,72,169]},{"1050465":[128,133]},{"1050468":[169,48]},{"1050471":[133,2,169,4]},{"1050476":[34,61,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050491":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050514":[72,165,2,72,169]},{"1050520":[128,133]},{"1050523":[169,48]},{"1050526":[133,2,169,5]},{"1050531":[34,61,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050546":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050569":[72,165,2,72,169]},{"1050575":[128,133]},{"1050578":[169,48]},{"1050581":[133,2,169,6]},{"1050586":[34,61,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050601":[201,135]},{"1050604":[208,7,175,98,129,48,130,3]},{"1050613":[169,23]},{"1050616":[41,255]},{"1050619":[40,107,8,194,32,165,138,201,3]},{"1050629":[208,107,165,34,201,98,7,144,50,175,135,128,48,208,6,175,64,129,48,128,35,218,8,194,48,165]},{"1050656":[72,165,2,72,169,64,129,133]},{"1050665":[169,48]},{"1050668":[133,2,169]},{"1050673":[34,61,150,164,250,134,2,250,134,1,40,250,130,203,2,175,135,128,48,208,6,175,22,128,48,128,35,218,8,194,48,165]},{"1050706":[72,165,2,72,169,16,128,133]},{"1050715":[169,48]},{"1050718":[133,2,169,6]},{"1050723":[34,61,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050741":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050761":[72,165,2,72,169,64,129,133]},{"1050770":[169,48]},{"1050773":[133,2,169,1]},{"1050778":[34,61,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050796":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050816":[72,165,2,72,169,64,129,133]},{"1050825":[169,48]},{"1050828":[133,2,169,2]},{"1050833":[34,61,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050851":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050871":[72,165,2,72,169,64,129,133]},{"1050880":[169,48]},{"1050883":[133,2,169,10]},{"1050888":[34,61,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050906":[208,107,165,34,201]},{"1050912":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050933":[72,165,2,72,169,64,129,133]},{"1050942":[169,48]},{"1050945":[133,2,169,3]},{"1050950":[34,61,150,164,250,134,2,250,134,1,40,250,130,182,1,175,135,128,48,208,6,175,23,128,48,128,35,218,8,194,48,165]},{"1050983":[72,165,2,72,169,16,128,133]},{"1050992":[169,48]},{"1050995":[133,2,169,7]},{"1051000":[34,61,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1051018":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1051038":[72,165,2,72,169,64,129,133]},{"1051047":[169,48]},{"1051050":[133,2,169,4]},{"1051055":[34,61,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051073":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051093":[72,165,2,72,169,64,129,133]},{"1051102":[169,48]},{"1051105":[133,2,169,5]},{"1051110":[34,61,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051128":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051148":[72,165,2,72,169,64,129,133]},{"1051157":[169,48]},{"1051160":[133,2,169,6]},{"1051165":[34,61,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051180":[201,74]},{"1051183":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051203":[72,165,2,72,169,64,129,133]},{"1051212":[169,48]},{"1051215":[133,2,169,6]},{"1051220":[34,61,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051235":[201,91]},{"1051238":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051258":[72,165,2,72,169,64,129,133]},{"1051267":[169,48]},{"1051270":[133,2,169,7]},{"1051275":[34,61,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051290":[201,104]},{"1051293":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051313":[72,165,2,72,169,64,129,133]},{"1051322":[169,48]},{"1051325":[133,2,169,8]},{"1051330":[34,61,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051345":[201,129]},{"1051348":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051368":[72,165,2,72,169,64,129,133]},{"1051377":[169,48]},{"1051380":[133,2,169,9]},{"1051385":[34,61,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051400":[169,23]},{"1051403":[41,255]},{"1051406":[40,107,8,194,32,165,160,201,200]},{"1051416":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051436":[72,165,2,72,169,80,129,133]},{"1051445":[169,48]},{"1051448":[133,2,169]},{"1051453":[34,61,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051471":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051491":[72,165,2,72,169,80,129,133]},{"1051500":[169,48]},{"1051503":[133,2,169,1]},{"1051508":[34,61,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051526":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051546":[72,165,2,72,169,80,129,133]},{"1051555":[169,48]},{"1051558":[133,2,169,2]},{"1051563":[34,61,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051581":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051601":[72,165,2,72,169,80,129,133]},{"1051610":[169,48]},{"1051613":[133,2,169,3]},{"1051618":[34,61,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051636":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051656":[72,165,2,72,169,80,129,133]},{"1051665":[169,48]},{"1051668":[133,2,169,4]},{"1051673":[34,61,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051691":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051711":[72,165,2,72,169,80,129,133]},{"1051720":[169,48]},{"1051723":[133,2,169,5]},{"1051728":[34,61,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051743":[201,172]},{"1051746":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051766":[72,165,2,72,169,80,129,133]},{"1051775":[169,48]},{"1051778":[133,2,169,6]},{"1051783":[34,61,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051798":[201,222]},{"1051801":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051821":[72,165,2,72,169,80,129,133]},{"1051830":[169,48]},{"1051833":[133,2,169,7]},{"1051838":[34,61,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051853":[201,144]},{"1051856":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051876":[72,165,2,72,169,80,129,133]},{"1051885":[169,48]},{"1051888":[133,2,169,8]},{"1051893":[34,61,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051908":[201,164]},{"1051911":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051931":[72,165,2,72,169,80,129,133]},{"1051940":[169,48]},{"1051943":[133,2,169,9]},{"1051948":[34,61,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051963":[169,62]},{"1051966":[41,255]},{"1051969":[40,107,194,32,165,160,201,200]},{"1051978":[208,4,56,130,82]},{"1051984":[201,51]},{"1051987":[208,4,56,130,73]},{"1051993":[201,7]},{"1051996":[208,4,56,130,64]},{"1052002":[201,90]},{"1052005":[208,4,56,130,55]},{"1052011":[201,6]},{"1052014":[208,4,56,130,46]},{"1052020":[201,41]},{"1052023":[208,4,56,130,37]},{"1052029":[201,172]},{"1052032":[208,4,56,130,28]},{"1052038":[201,222]},{"1052041":[208,4,56,130,19]},{"1052047":[201,144]},{"1052050":[208,4,56,130,10]},{"1052056":[201,164]},{"1052059":[208,4,56,130,1]},{"1052065":[24,226,32,107,90,165,27,208,3,130,230]},{"1052077":[8,194,32,165,160,201,135]},{"1052085":[208,7,175,58,227,48,130,137,1,201,200]},{"1052097":[208,7,175,62,227,48,130,125,1,201,51]},{"1052109":[208,7,175,63,227,48,130,113,1,201,7]},{"1052121":[208,7,175,64,227,48,130,101,1,201,90]},{"1052133":[208,7,175,65,227,48,130,89,1,201,6]},{"1052145":[208,7,175,66,227,48,130,77,1,201,41]},{"1052157":[208,7,175,67,227,48,130,65,1,201,172]},{"1052169":[208,7,175,68,227,48,130,53,1,201,222]},{"1052181":[208,7,175,69,227,48,130,41,1,201,144]},{"1052193":[208,7,175,70,227,48,130,29,1,201,164]},{"1052205":[208,7,175,71,227,48,130,17,1,201,225]},{"1052217":[208,7,175,72,227,48,130,5,1,201,226]},{"1052229":[208,7,175,73,227,48,130,249]},{"1052238":[201,234]},{"1052241":[208,7,175,74,227,48,130,237]},{"1052250":[201,27,1,208,22,165,34,235,41,1]},{"1052261":[208,7,175,75,227,48,130,217]},{"1052270":[175,76,227,48,130,210]},{"1052277":[201,38,1,208,7,175,77,227,48,130,198]},{"1052289":[201,39,1,208,44,175,78,227,48,130,186]},{"1052301":[169]},{"1052304":[130,180]},{"1052307":[8,194,32,165,138,201,3]},{"1052315":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052331":[175,59,227,48,130,149]},{"1052338":[201,5]},{"1052341":[208,7,175,80,227,48,130,137]},{"1052350":[201,40]},{"1052353":[208,7,175,81,227,48,130,125]},{"1052362":[201,42]},{"1052365":[208,7,175,61,227,48,130,113]},{"1052374":[201,48]},{"1052377":[208,21,165,34,201]},{"1052383":[2,176,7,175,82,227,48,130,94]},{"1052393":[175,60,227,48,130,87]},{"1052400":[201,53]},{"1052403":[208,7,175,83,227,48,130,75]},{"1052412":[201,59]},{"1052415":[208,7,175,84,227,48,130,63]},{"1052424":[201,66]},{"1052427":[208,7,175,85,227,48,130,51]},{"1052436":[201,74]},{"1052439":[208,7,175,85,227,48,130,39]},{"1052448":[201,91]},{"1052451":[208,7,175,86,227,48,130,27]},{"1052460":[201,104]},{"1052463":[208,7,175,87,227,48,130,15]},{"1052472":[201,129]},{"1052475":[208,7,175,88,227,48,130,3]},{"1052484":[169]},{"1052487":[41,255]},{"1052490":[40,122,107,175,17,244,126,41,8,107,175,17,244,126,41,4,107,175,17,244,126,41,128,107,175,16,244,126,41,1,201,1,107,175,16,244,126,41,2,107,175,16,244,126,41,4,107,175,16,244,126,41,8,107,175,16,244,126,41,8,74,74,107,34,48,208,13,175,16,244,126,41,8,240,4,128,5,169,5,189,128,13,107,175,16,244,126,41,16,107,175,16,244,126,41,128,107,175,17,244,126,42,42,42,42,107,175,17,244,126,41,32,107,175,16,244,126,41,32,107,72,175,17,244,126,9,8,143,17,244,126,104,107,72,175,17,244,126,9,4,143,17,244,126,104,107,72,175,17,244,126,9,128,143,17,244,126,104,107,72,175,100,227,48,143,152,192,126,104,34,157,153,7,72,175,16,244,126,9,1,143,16,244,126,104,107,72,175,16,244,126,9,2,143,16,244,126,104,107,72,175,103,227,48,143,152,192,126,104,34,157,153,7,72,175,16,244,126,9,4,143,16,244,126,104,107,72,175,106,227,48,143,152,192,126,104,34,157,153,7,72,175,16,244,126,9,8,143,16,244,126,104,107,72,175,101,227,48,143,152,192,126,104,34,157,153,7,72,175,16,244,126,9,16,143,16,244,126,104,107,72,175,16,244,126,9,32,143,16,244,126,104,107,72,175,92,227,48,143,152,192,126,104,34,157,153,7,72,175,16,244,126,9,128,143,16,244,126,104,107,72,175,17,244,126,9,16,143,17,244,126,188,128,14,208,48,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1052844":[72,165,2,72,169,16,128,133]},{"1052853":[169,48]},{"1052856":[133,2,169,3]},{"1052861":[34,61,150,164,250,134,2,250,134,1,40,250,168,175,56,227,48,143,152,192,126,104,156,233,2,107,72,175,17,244,126,9,32,143,17,244,126,104,107,254,128,13,72,8,194,32,165,160,201,35,1,208,54,175,135,128,48,208,6,175,16,128,48,128,35,218,8,194,48,165]},{"1052932":[72,165,2,72,169,16,128,133]},{"1052941":[169,48]},{"1052944":[133,2,169]},{"1052949":[34,61,150,164,250,134,2,250,134,1,40,250,168,175,90,227,48,128,64,201,30,1,208,54,175,135,128,48,208,6,175,17,128,48,128,35,218,8,194,48,165]},{"1052991":[72,165,2,72,169,16,128,133]},{"1053000":[169,48]},{"1053003":[133,2,169,1]},{"1053008":[34,61,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1053030":[160,70,226,32,143,152,192,126,40,104,107,201,22,240,38,201,43,240,34,201,44,240,30,201,45,240,26,201,60,240,22,201,61,240,18,201,72,240,14,201,109,240,39,201,110,240,41,201,111,240,43,128,45,72,32,214,219,207,150,128,48,144,16,175,153,192,126,208,10,104,175,151,128,48,34,113,145,160,107,104,128,16,34,249,190,164,128,10,34,56,191,164,128,4,34,119,191,164,218,139,75,171,170,191,208,146,160,171,250,201,248,176,1,107,201,249,208,12,175,123,243,126,208,3,169,59,107,169,60,107,201,250,208,7,34,142,218,160,76,113,145,201,251,208,7,34,74,219,160,76,113,145,201,253,208,28,175,153,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,113,145,160,107,169,4,107,201,254,208,60,175,153,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,113,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053256":[208,3,169,67,107,201,1,208,3,169,68,107,201,2,208,3,169,69,107,169,70,107,201,255,208,62,175,153,192,126,208,27,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,21,175,147,128,48,34,113,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053329":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,153,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,113,145,160,107,175,64,243,126,26,74,201]},{"1053383":[208,3,169,41,107,169,42,107,107,6,68,69,70,45,32,46,9,9,10,8,5,16,11,44,27,26,28,20,25,12,7,29,47,7,21,18,13,13,14,17,23,40,39,4,4,15,22,3,19,1,30,16]},{"1053441":[48,34,33,36,36,36,35,35,35,41,42,44,43,3,3,52,53,49,51,2,50,54,55,44,67,12,56,57,58,249,60,68,61,62,63,64,44]},{"1053480":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,255,255,255,255,73,74,73,57,57,57,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,44,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,21,72,32,214,219,207,150,128,48,144,10,104,175,151,128,48,34,208,147,160,107,104,218,139,75,171,170,191,202,148,160,171,250,201,248,176,1,107,201,253,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,208,147,160,107,201]},{"1053740":[208,3,169,4,107,201,1,208,3,169,4,107,201,2,208,3,169,2,107,169,8,107,201,254,208,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,208,147,160,107,201]},{"1053795":[208,3,169,4,107,201,1,208,3,169,2,107,169,8,107,201,255,208,29,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,208,147,160,107,201]},{"1053835":[208,3,169,4,107,169,2,107,201,252,208,12,175,84,243,126,208,3,169,2,107,169,8,107,201,248,208,12,175,84,243,126,208,3,169,8,107,169,2,107,201,250,208,7,34,142,218,160,76,208,147,201,251,208,7,34,74,219,160,76,208,147,107]},{"1053899":[4,2,8,4,2,8,2,4,2,2,2,4,4,4,8,8,8,2,2,4,2,2,2,4,2,4,2,8,8,4,2,10,2,4,2,4,4]},{"1053937":[4,4,8,2,2,8,4,2,8,4,4,8,8,8,4,2,8,2,4,8,2,4,4,2,2,8,8,2,4,4,8,8,8,4,4,4,2,8,8,8,8,4,8,8,8,8,4]},{"1053986":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1054004":[8,8,8,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,72,218,139,75,171,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,22,32,214,219,207,150,128,48,144,11,175,151,128,48,34,202,149,160,130,128]},{"1054209":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,202,149,160,128,102,128,81,201,95,208,35,175,22,244,126,41,192,208,25,56,128,85,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,34,202,149,160,128,63,128,60,201,96,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,34,202,149,160,128,37,201,98,208,6,34,142,218,160,128,8,201,99,208,4,34,74,219,160,162]},{"1054320":[224,36,176,12,223,133,150,160,208,3,56,128,4,232,128,240,24,171,250,104,107,4,7,8,9,10,11,12,19,21,24,36,42,52,53,54,66,67,69,89,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,255,255,255,255,255,72,218,90,170,175,108,227,48,240,34,138,207,216,244,126,208,15,175,218,244,126,143,153,192,126,175,217,244,126,170,128,12,143,215,244,126,169]},{"1054419":[143,153,192,126,162,107,138,32,239,150,34,113,145,160,34,45,213]},{"1054437":[169]},{"1054439":[143,153,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054455":[143,37,192,126,143,39,192,126,169]},{"1054465":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,208,147,160,143,42,192,126,143,50,192,126,104,34,202,149,160,176,2,128,27,194,32,169]},{"1054506":[143,44,192,126,143,51,192,126,169]},{"1054516":[8,143,46,192,126,169]},{"1054523":[52,143,48,192,126,40,104,96,32,234,151,34,202,149,160,176,15,169,1,133,6,169,12,34,136,186,13,169,2,72,128,13,169,2,133,6,169,16,34,136,186,13,169,3,72,169,37,133,8,169,192,133,9,100,7,169,126,139,72,171,169,1,143,8,80,127,34,112,223,5,169]},{"1054595":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,32,234,151,34,202,149,160,176,12,169,1,133,6,169,4,34,136,186,13,128,10,169,2,133,6,169,8,34,136,186,13,169,37,133,8,169,192,133,9,100,7,169,126,139,72,171,169,1,143,8,80,127,34,112,223,5,175,115,129,48,208,6,169]},{"1054679":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,108,227,48,240,51,104,207,216,244,126,208,31,175,215,244,126,240,12,175,216,244,126,34,173,150,160,169]},{"1054728":[128,13,175,218,244,126,143,153,192,126,175,217,244,126,96,143,215,244,126,169]},{"1054749":[143,153,192,126,169,107,96,104,96,72,175,66,80,127,240,13,170,160,2]},{"1054769":[169]},{"1054772":[143,66,80,127,128,6,162,64,45,160,2]},{"1054784":[104,107,32,107,152,176,35,194,32,165,226,72,56,233,15]},{"1054800":[133,226,165,232,72,56,233,15]},{"1054809":[133,232,226,32,32,107,152,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054841":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054861":[13,133]},{"1054864":[56,229,232,133,6,189,32,13,133,1,189,16,13,133,2,56,229,226,133,7,189,48,13,133,3,107,175,8,80,127,240,14,169]},{"1054899":[143,8,80,127,165,4,41,255,240,133,4,177,8,69,4,107,72,72,169,144,144,133,4,133,6,104,201,232,3,144,8,230,4,56,233,232,3,128,243,201,100]},{"1054941":[144,8,230,5,56,233,100]},{"1054949":[128,243,201,10]},{"1054954":[144,8,230,6,56,233,10]},{"1054962":[128,243,201,1]},{"1054967":[144,8,230,7,56,233,1]},{"1054975":[128,243,165,4,143,4,80,127,165,6,143,6,80,127,104,107,139,75,171,170,74,74,74,74,168,138,41,7,170,185,37,153,127,37,153,160,171,107]},{"1055014":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1055032":[16,41,127]},{"1055036":[157,2,16,232,232,104,10,41,255,127,9]},{"1055048":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1055069":[16,169,1,133,20,194,32,107,218,174]},{"1055080":[16,41,127]},{"1055084":[157,2,16,232,232,104,10,41,255,63,157,2,16,232,232,218,187,72,138,24,105,2,16,168,104,84,126,127,24,99,1,250,170,226,32,169,255,157,2,16,142]},{"1055126":[16,169,1,133,20,194,32,107,8,165,93,201,4,208,42,175,86,243,126,208,36,175,1,80,127,240,30,165,138,207,152,80,127,240,22,175,22,244,126,9,4,143,22,244,126,169]},{"1055173":[143,109,243,126,169]},{"1055179":[143,1,80,127,40,175,109,243,126,107,162]},{"1055191":[175,22,244,126,137,4,240,9,41,251,143,22,244,126,169,240,107,169,6,107,34,232,152,9,169]},{"1055217":[143,1,80,127,107,165,93,201,4,208,20,175,86,243,126,208,8,169,1,143,1,80,127,128,6,169]},{"1055244":[143,1,80,127,107,72,165,138,143,152,80,127,104,107,169,32,141,226,2,156,123,3,100,85,156,96,3,107,175,48,128,48,47,20,130,48,240,4,34,55,154,160,107,72,173]},{"1055290":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141]},{"1055320":[67,141,1,67,169,64,141,129,33,169,243,141,130,33,169,126,141,131,33,156,2,67,169,30,141,3,67,169,112,141,4,67,169,128,141,5,67,169,1,141,6,67,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1055394":[67,104,107,8,226,32,175,202,243,126,73,64,143,202,243,126,240,4,169,7,128,2,169,3,143,199,243,126,40,107,72,175,114,129,48,240,10,104,175,139,243,126,34,136,250,13,107,104,34,136,250,13,107,175,114,129,48,240,11,169]},{"1055455":[143,23,192,126,175,139,243,126,107,169]},{"1055466":[143,23,192,126,169,255,107,218,138,10,170,175,202,243,126,73,64,208,1,232,191,96,128,48,250,107,218,175,202,243,126,41,64,208,54,175,59,128,48,240,36,175,104,243,126,15,20,244,126,41,1,208,24,218,191,167,155,160,170,191,104,243,126,31,20,244,126,250,63,177,155,160,208,3,130,98]},{"1055543":[191,156,155,160,16,3,24,128,90,170,128,52,175,59,128,48,240,36,175,104,243,126,15,20,244,126,41,2,208,24,218,191,170,155,160,170,191,104,243,126,31,20,244,126,250,63,181,155,160,208,3,130,44]},{"1055597":[191,160,155,160,170,128,3,56,250,107,191,80,128,48,41,64,208,13,175,116,243,126,63,155,160,2,208,16,24,128,14,175,122,243,126,63,155,160,2,208,3,24,128,1,56,250,107,2,10,3,255,6,8,12,11,7,9,5,1]},{"1055657":[1,1]},{"1055662":[1]},{"1055664":[1,32,32,16]},{"1055669":[2,128,8,16,1,64,4,8,226,32,175,202,243,126,73,64,208,4,169,7,128,2,169,3,143,199,243,126,40,107,175,202,243,126,41,64,240,3,169,7,107,169,3,107,194,32,175,19,130,48,41,255]},{"1055722":[240,5,169,8]},{"1055727":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055740":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055762":[2,107,175,19,130,48,41,255]},{"1055771":[240,5,169,8]},{"1055776":[128,7,175,72,128,48,41,255]},{"1055785":[24,101,234,48,3,169]},{"1055793":[133,234,107,175,73,128,48,208,5,165,244,41,16,107,165,240,41,16,73,16,107,173,12,4,41,255]},{"1055820":[201,255]},{"1055823":[208,1,107,175,22,244,126,41,32]},{"1055833":[240,4,169]},{"1055838":[107,173,12,4,41,255]},{"1055845":[201,255]},{"1055848":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055872":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,135,240,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055904":[107,169,136,21,133]},{"1055910":[107,175,69,128,48,208,6,169,16,22,133]},{"1055922":[107,169,144,21,133]},{"1055928":[107,175,69,128,48,208,6,169,24,22,133]},{"1055940":[107,169,152,21,133]},{"1055946":[107,175,69,128,48,208,6,169,32,22,133]},{"1055958":[107,169,160,21,133]},{"1055964":[107,175,69,128,48,208,1,107,8,194,48,169,80,45,141,70,22,169,84,45,141,72,22,169,81,45,141,76,22,169,82,45,141,78,22,169,83,45,141,80,22,169,85,45,141,84,22,169,86,45,141,86,22,169,87,45,141,88,22,169,88,45,141,90,22,169,89,45,141,92,22,169,90,45,141,94,22,169,91,45,141,96,22,169,92,45,141,100,22,162]},{"1056056":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1056070":[144,240,175,22,244,126,41,32]},{"1056079":[240,3,130,200,1,175,69,128,48,41,1]},{"1056091":[208,3,130,231]},{"1056096":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1056118":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1056135":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1056152":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056169":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056186":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056203":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056220":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056237":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056254":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056271":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056288":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056305":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056322":[141,165,22,194,32,175,69,128,48,41,2]},{"1056334":[208,3,130,201]},{"1056339":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056352":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056367":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056382":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056397":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056412":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056427":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056442":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056457":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056472":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056487":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056502":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056517":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056532":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056547":[208,3,130,170,1,175,69,128,48,41,4]},{"1056559":[208,3,130,201]},{"1056564":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056577":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056592":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056607":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056622":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056637":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056652":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056667":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056682":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056697":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056712":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056727":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056742":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056757":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056772":[208,3,130,201]},{"1056777":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056790":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056805":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056820":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056835":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056850":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056865":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056880":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056895":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056910":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056925":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056940":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056955":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056970":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056989":[191,28,162,160,157,234,18,191,48,162,160,157,42,19,191,68,162,160,157,106,19,191,88,162,160,157,170,19,191,108,162,160,157,234,19,191,128,162,160,157,42,20,191,148,162,160,157,106,20,191,168,162,160,157,170,20,191,188,162,160,157,234,20,232,232,224,20]},{"1057057":[144,186,175,116,243,126,41,4]},{"1057066":[240,24,169,43,61,141,50,19,169,44,61,141,52,19,169,45,61,141,114,19,169,46,61,141,116,19,175,116,243,126,41,2]},{"1057099":[240,24,169,43,45,141,174,19,169,44,45,141,176,19,169,45,45,141,238,19,169,46,45,141,240,19,175,116,243,126,41,1]},{"1057132":[240,24,169,43,37,141,182,19,169,44,37,141,184,19,169,45,37,141,246,19,169,46,37,141,248,19,175,122,243,126,41,2]},{"1057165":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057186":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057207":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057228":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057249":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057270":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057291":[240,12,169,68,45,141,184,20,169,69,45,141,186,20,171,40,107,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,245,36,245,36,245,36,43,49,44,49,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,61,49,46,49,245,36,245,36,245,36,252,104,252,40,245,36,43,49,44,49,245,36,245,36,43,49,44,49,245,36,252,104,252,40,245,36,61,49,46,49,245,36,245,36,61,49,46,49,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,70,49,71,49,70,49,71,49,70,49,71,49,245,36,252,104,252,40,70,49,71,49,70,49,71,49,70,49,71,49,70,49,71,49,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,33,37,34,37,35,37,36,37,63,37,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,59,33,60,33,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,61,33,62,33,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,59,33,60,33,245,36,245,36,59,33,60,33,245,36,252,104,252,40,245,36,61,33,62,33,245,36,245,36,61,33,62,33,245,36,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,47,37,52,37,53,37,54,37,55,37,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,70,49,71,49,70,49,71,49,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,70,49,71,49,70,49,71,49,70,49,71,49,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,70,49,71,49,70,49,71,49,245,36,245,36,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,194,32,165,160,201,23,1,208,6,226,32,169,160,128,76,226,32,175,132,128,48,201,160,176,66,175,146,80,127,208,23,175,132,128,48,24,111,109,243,126,207,108,243,126,144,4,175,108,243,126,143,146,80,127,175,109,243,126,207,146,80,127,144,19,169]},{"1057914":[143,114,243,126,173,10,2,208,14,169]},{"1057925":[143,146,80,127,56,107,169,8,143,114,243,126,24,107,175,109,243,126,207,108,243,126,144,21,175,108,243,126,143,109,243,126,169]},{"1057959":[143,114,243,126,173,10,2,208,8,56,107,169,160,143,114,243,126,24,107,194,32,165,160,201,23,1,208,6,226,32,169,128,128,61,226,32,175,133,128,48,201,128,176,51,175,147,80,127,208,19,175,133,128,48,24,111,110,243,126,201,128,144,2,169,128,143,147,80,127,175,110,243,126,207,147,80,127,144,8,169]},{"1058040":[143,147,80,127,56,107,169,1,143,115,243,126,24,107,226,48,175,110,243,126,201,128,176,9,169,128,143,115,243,126,226,48,107,226,49,107,218,90,8,160,255,162]},{"1058083":[165,12,201,232,3,144,3,130,24]},{"1058093":[201,100]},{"1058096":[144,3,130,97]},{"1058101":[201,10]},{"1058104":[144,3,130,170]},{"1058109":[201,1]},{"1058112":[144,3,130,243]},{"1058117":[100,10,165,12,201,232,3,144,8,56,233,232,3,230,10,128,243,133,12,192,255,208,10,160,6,165,14,24,121,202,166,133,14,165,14,159]},{"1058154":[201,126,232,232,169,56]},{"1058161":[159]},{"1058163":[201,126,232,232,164,10,152,10,168,185,182,166,159]},{"1058177":[201,126,232,232,169]},{"1058184":[159]},{"1058186":[201,126,232,232,165,14,24,105,8]},{"1058196":[133,14,100,10,165,12,201,100]},{"1058205":[144,8,56,233,100]},{"1058211":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,202,166,133,14,165,14,159]},{"1058235":[201,126,232,232,169,56]},{"1058242":[159]},{"1058244":[201,126,232,232,164,10,152,10,168,185,182,166,159]},{"1058258":[201,126,232,232,169]},{"1058265":[159]},{"1058267":[201,126,232,232,165,14,24,105,8]},{"1058277":[133,14,100,10,165,12,201,10]},{"1058286":[144,8,56,233,10]},{"1058292":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,202,166,133,14,165,14,159]},{"1058316":[201,126,232,232,169,56]},{"1058323":[159]},{"1058325":[201,126,232,232,164,10,152,10,168,185,182,166,159]},{"1058339":[201,126,232,232,169]},{"1058346":[159]},{"1058348":[201,126,232,232,165,14,24,105,8]},{"1058358":[133,14,100,10,165,12,201,1]},{"1058367":[144,8,56,233,1]},{"1058373":[230,10,128,243,133,12,192,255,208,10,160]},{"1058385":[165,14,24,121,202,166,133,14,165,14,159]},{"1058397":[201,126,232,232,169,56]},{"1058404":[159]},{"1058406":[201,126,232,232,164,10,152,10,168,185,182,166,159]},{"1058420":[201,126,232,232,169]},{"1058427":[159]},{"1058429":[201,126,232,232,165,14,24,105,8]},{"1058439":[133,14,226,32,138,74,74,74,133,6,10,10,72,165,34,207,34,80,127,144,13,207,35,80,127,176,7,104,34,132,186,13,128,5,104,34,128,186,13,138,74,74,74,40,122,250,96,48,2,49,2,2,2,3,2,18,2,19,2,34,2,35,2,50,2,51,2,4]},{"1058510":[252,255,248,255,218,90,8,194,48,162]},{"1058522":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058537":[208,13,175,153,80,127,41,255]},{"1058546":[223,3,200,48,208,44,226,32,191]},{"1058556":[200,48,143,80,80,127,191,5,200,48,143,81,80,127,41,3,10,10,143,96,80,127,191,6,200,48,143,99,80,127,191,7,200,48,143,98,80,127,128,33,191]},{"1058598":[200,48,41,255]},{"1058603":[201,255]},{"1058606":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058629":[226,32,162]},{"1058634":[160]},{"1058637":[152,207,96,80,127,144,3,130,172]},{"1058647":[191,1,201,48,201,255,208,3,130,161]},{"1058658":[191]},{"1058660":[201,48,207,80,80,127,240,3,130,137]},{"1058671":[191,1,201,48,218,187,159,82,80,127,250,191,2,201,48,218,187,159,83,80,127,250,191,3,201,48,218,187,159,84,80,127,250,90,218,169]},{"1058708":[235,152,74,74,24,111,98,80,127,170,191,2,243,126,187,159,85,80,127,168,250,191,4,201,48,240,43,152,223,4,201,48,144,36,122,191,5,201,48,218,187,159,82,80,127,250,191,6,201,48,218,187,159,83,80,127,250,191,7,201,48,218,187,159,84,80,127,250,128,1,122,218,90,218,187,191,82,80,127,250,168,194,32,163,1,170,191,126,168,160,170,32,157,168,122,250,200,200,200,200,232,232,232,232,232,232,232,232,130,74,255,169,1,143,70,80,127,143,68,80,127,175,81,80,127,137,32,240,14,169]},{"1058839":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058853":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,216,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,217,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,218,173,160,143,95,80,127,40,122,250,175,81,80,127,201,255,208,13,104,104,104,254,160,11,189,64,14,92,241,139,6,107]},{"1058946":[128]},{"1058951":[1]},{"1058954":[169,180,143,68,80,127,169,168,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,113,145,160,34,45,213]},{"1058993":[194,16,96,32,184,168,107,173]},{"1059002":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,1,141]},{"1059032":[67,169,24,141,1,67,169,128,141,21,33,169,128,141,2,67,169,161,141,3,67,169,126,141,4,67,175,81,80,127,41,16,208,3,130,141]},{"1059069":[169,64,141,5,67,156,6,67,169,64,141,22,33,169,90,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,64,141,22,33,169,91,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,96,141,22,33,169,90,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,96,141,22,33,169,91,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,128,141,22,33,169,90,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,128,141,22,33,169,91,141,23,33,169,1,141,11,66,130,138]},{"1059210":[169,64,141,5,67,156,6,67,169,96,141,22,33,169,92,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,96,141,22,33,169,93,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,128,141,22,33,169,92,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,128,141,22,33,169,93,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,160,141,22,33,169,92,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,160,141,22,33,169,93,141,23,33,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1059375":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059396":[175,81,80,127,201,255,208,3,76,49,170,139,75,171,34,231,244,30,32,127,170,175,81,80,127,137,128,240,22,137,32,208,18,218,175,98,80,127,170,191,2,243,126,240,3,250,128,9,250,128]},{"1059447":[32,156,174,32,156,172,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059470":[201,2,208,3,130,227]},{"1059477":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059492":[165,26,41,16,240,12,189,19,171,159]},{"1059503":[201,126,232,224,16,144,244,189,35,171,159]},{"1059515":[201,126,232,224,16,144,244,250,175,99,80,127,74,74,74,74,41,14,15,5,201,126,143,5,201,126,175,99,80,127,74,74,74,74,41,14,15,13,201,126,143,13,201,126,139,169,2,133,6,169,8,34,128,186,13,100,7,169]},{"1059574":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,171,96]},{"1059605":[248,255]},{"1059610":[2]},{"1059615":[16]},{"1059618":[2]},{"1059621":[248,255]},{"1059626":[2]},{"1059631":[16,64]},{"1059634":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,104,133,8,169,171,133,9,128,8,169,112,133,8,169,171,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059692":[70,10]},{"1059695":[2]},{"1059700":[70,74]},{"1059703":[2,218,162]},{"1059707":[165,26,41,64,240,12,189,234,171,159]},{"1059718":[201,126,232,224,16,144,244,189,250,171,159]},{"1059730":[201,126,232,224,16,144,244,250,175,99,80,127,74,74,74,74,41,14,15,5,201,126,143,5,201,126,175,99,80,127,74,74,74,74,41,14,15,13,201,126,143,13,201,126,139,169,2,133,6,169,8,34,128,186,13,100,7,169]},{"1059789":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,171,96]},{"1059820":[248,255,132]},{"1059825":[2]},{"1059830":[16]},{"1059833":[2]},{"1059836":[248,255,132]},{"1059841":[2]},{"1059846":[16,64]},{"1059849":[2,218,162]},{"1059853":[165,26,41,64,240,12,189,124,172,159]},{"1059864":[201,126,232,224,16,144,244,189,140,172,159]},{"1059876":[201,126,232,224,16,144,244,250,175,99,80,127,74,74,74,74,41,14,15,5,201,126,143,5,201,126,175,99,80,127,74,74,74,74,41,14,15,13,201,126,143,13,201,126,139,169,2,133,6,169,8,34,128,186,13,100,7,169]},{"1059935":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,171,96]},{"1059966":[248,255,142]},{"1059971":[2]},{"1059976":[16]},{"1059979":[2]},{"1059982":[248,255,142]},{"1059987":[2]},{"1059992":[16,64]},{"1059995":[2,218,90,8,160]},{"1060001":[90,152,74,74,168,175,95,80,127,57,216,173,240,3,122,128,48,122,173,238]},{"1060022":[221,32,15,208,39,32,111,174,32,219,173,34,230,131,6,144,3,32,143,174,32,69,174,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,241,172,200,200,200,200,152,207,96,80,127,144,180,40,122,250,96,218,90,187,191,82,80,127,201,14,240,14,201,46,240,10,201,47,240,6,201,48,240,2,128,6,34,40,222,30,48,38,175,81,80,127,41,128,208,46,194,32,175,96,243,126,223,83,80,127,226,32,176,32,169,122,160,1,34,25,226,5,169,60,141,46,1,130,159]},{"1060150":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1060166":[175,81,80,127,41,128,208,17,194,32,175,96,243,126,56,255,83,80,127,143,96,243,126,226,32,191,82,80,127,168,34,157,153,7,191,85,80,127,26,159,85,80,127,138,74,74,170,175,81,80,127,137,128,208,33,175,95,80,127,29,216,173,143,95,80,127,218,138,24,111,98,80,127,170,191,2,243,126,26,240,4,159,2,243,126,250,128,55,137,32,208,25,175,95,80,127,9,7,143,95,80,127,218,175,98,80,127,170,169,1,159,2,243,126,250,128,26,175,95,80,127,29,216,173,143,95,80,127,218,175,98,80,127,170,175,95,80,127,159,2,243,126,250,122,250,96,1,2,4,194,32,165]},{"1060319":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060340":[58,10,168,185,145,175,133]},{"1060348":[122,104,24,113]},{"1060353":[24,105,2]},{"1060357":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060370":[13,194,32,90,200,200,24,113]},{"1060379":[122,72,175,81,80,127,41,128]},{"1060388":[240,7,104,24,105,4]},{"1060395":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060418":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060435":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060448":[133,11,165,6,24,105,20,133,6,169,40,133,7,40,96,169,8,133,2,133,3,165,34,24,105,4,133]},{"1060476":[165,35,105]},{"1060480":[133,8,165,32,105,8,133,1,165,33,105]},{"1060492":[133,9,96,218,34]},{"1060498":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060520":[160]},{"1060522":[175,81,80,127,41,3,201,3,208,5,32,205,174,128,4,201,2,208,5,32,205,174,128,4,201,1,208,3,32,205,174,122,250,171,96,175,95,80,127,57,216,173,240,3,130,178]},{"1060569":[90,175,81,80,127,41,3,58,10,168,194,32,185,145,175,133]},{"1060586":[163,1,10,10,168,177]},{"1060593":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060606":[208,8,177]},{"1060610":[143,39,192,126,128,10,177]},{"1060618":[24,105,4]},{"1060622":[143,39,192,126,226,32,122,191,82,80,127,201,46,208,2,128,15,201,47,208,2,128,9,201,48,240,5,185,175,175,128,2,169,192,235,175,81,80,127,41,16,240,5,235,56,233,34,235,235,143,41,192,126,191,82,80,127,34,208,147,160,143,42,192,126,169]},{"1060689":[143,43,192,126,191,82,80,127,34,202,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060715":[143,44,192,126,32,132,176,169,2,218,72,175,97,80,127,170,104,32,59,176,250,175,81,80,127,41,128,208,3,32,178,175,200,232,232,232,232,96,151,175,155,175,163,175,8]},{"1060761":[40]},{"1060763":[240,255,40]},{"1060767":[32]},{"1060769":[40]},{"1060771":[216,255,40]},{"1060775":[8]},{"1060777":[40]},{"1060779":[56]},{"1060781":[40]},{"1060783":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060802":[58,10,168,185,145,175,133]},{"1060810":[185,41,176,133,2,122,90,152,10,10,168,177]},{"1060823":[133,14,152,74,168,177,2,143,34,80,127,200,177,2,143,35,80,127,122,191,83,80,127,133,12,240,50,32,28,165,226,32,133,6,100,7,72,169]},{"1060862":[133,8,169,201,133,9,169,126,72,171,218,72,175,97,80,127,170,104,34,112,223,5,250,163,1,10,10,24,101,144,133,144,104,24,101,146,133,146,40,122,250,171,96,47,176,49,176,53,176]},{"1060912":[255]},{"1060914":[128,128,255]},{"1060918":[96,96,144,144,255,218,90,72,133,6,165,32,201,98,176,10,163,1,10,10,34,128,186,13,128,8,163,1,10,10,34,132,186,13,163,1,133,6,100,7,169,37,133,8,169,192,133,9,169,126,139,72,171,34,112,223,5,171,163,1,10,10,24,101,144,133,144,165,146,24,99,1,133,146,104,122,250,96,218,162]},{"1060999":[194,32,191,37,192,126,24,105,4]},{"1061009":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1061025":[159,47,192,126,191,41,192,126,24,105,16]},{"1061037":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,153,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1061079":[72,165,2,72,169,16,128,133]},{"1061088":[169,48]},{"1061091":[133,2,169,2]},{"1061096":[34,61,150,164,250,134,2,250,134,1,40,250,157,128,14,34,173,150,160,107,72,189,128,14,34,67,151,160,104,107,72,188,128,14,104,34,111,144,160,107,169,8,157,80,15,169]},{"1061143":[143]},{"1061145":[80,127,32,135,177,143,153,192,126,32,110,177,34,173,150,160,107,72,175]},{"1061165":[80,127,240,6,34,21,177,160,128,7,32,110,177,34,151,151,160,104,107,32,135,177,143,152,192,126,32,110,177,201,36,208,24,90,160,36,34,98,185,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,90,168,34,157,153,7,122,107,165,160,201,115,208,6,175,96,129,48,128,12,201,140,208,6,175,97,129,48,128,2,169,36,96,165,160,201,115,208,6,175,98,227,48,128,12,201,140,208,6,175,99,227,48,128,2,169]},{"1061279":[96,185,121,55,158,218,173,228,80,133,8,173,230,80,133,10,24,165,10,106,133,10,165,8,106,133,8,24,165,10,106,133,10,165,8,106,133,8,24,165,10,106,133,10,165,8,106,133,8,24,165,10,106,133,10,165,8,106,133,8,24,165,10,106,133,10,165,8,106,133,8,173,224,80,133,12,173,226,80,133,14,24,165,12,42,133,12,165,14,42,133,14,24,165,12,42,133,12,165,14,42,133,14,165,8,69,12,141,242,80,165,10,69,14,141,244,80,173,228,80,133,8,173,230,80,133,10,24,165,8,42,133,8,165,10,42,133,10,24,165,8,42,133,8,165,10,42,133,10,24,165,8,42,133,8,165,10,42,133,10,24,165,8,42,133,8,165,10,42,133,10,173,224,80,133,12,173,226,80,133,14,24,165,14,106,133,14,165,12,106,133,12,24,165,14,106,133,14,165,12,106,133,12,24,165,14,106,133,14,165,12,106,133,12,165,8,69,12,141,246,80,165,10,69,14,141,248,80,173,242,80,24,109,246,80,141,242,80,173,244,80,109,248,80,141,244,80,173,232,80,77,224,80,133,8,173,234,80,77,226,80,133,10,173,236,80,41,3]},{"1061548":[77,240,80,10,10,170,189,208,80,77,228,80,133,12,189,210,80,77,230,80,133,14,165,8,24,101,12,141,246,80,165,10,101,14,141,248,80,173,242,80,77,246,80,133,8,173,244,80,77,248,80,133,10,250,96,8,139,226,48,169,127,72,171,100,5,162]},{"1061615":[191,184,179,160,197,4,144,3,232,128,245,191,185,179,160,133,6,100,7,194,32,138,10,10,170,191,186,179,160,141,232,80,191,188,179,160,141,234,80,173]},{"1061656":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061674":[141,240,80,165,4,58,141,236,80,240,56,10,10,170,189,252,80,141,228,80,189,254,80,141,230,80,32,164,177,173,236,80,10,10,170,189]},{"1061711":[81,56,229,8,157]},{"1061717":[81,141,224,80,189,2,81,229,10,157,2,81,141,226,80,173,236,80,58,141,236,80,128,198,165,4,58,10,10,170,189]},{"1061749":[81,141,228,80,189,2,81,141,230,80,32,164,177,173]},{"1061764":[81,56,229,8,141]},{"1061770":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,160,177,160,141,232,80,173,234,80,239,162,177,160,141,234,80,198,6,240,3,130,109,255,171,40,107,1,32,32,55,239,198,72,175,17,244,126,9,1,143,17,244,126,104,107,72,175,17,244,126,9,2,143,17,244,126,104,107,175,17,244,126,41,1,107,175,17,244,126,41,2,107,72,165,138,201,3,240,6,34,203,179,160,128,4,34,190,179,160,104,107,34,165,141,160,143,153,192,126,34,253,135,160,72,34,173,150,160,169,1,143,51,80,127,143,52,80,127,34,230,179,160,169,235,143]},{"1061916":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061940":[13,165,33,153,32,13,169]},{"1061948":[153,32,15,169,127,153,112,15,107,72,8,34,111,180,160,144,31,156,18,1,156,239,3,169]},{"1061973":[133,93,194,32,165,138,201,48]},{"1061982":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1062006":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1062019":[128,16,201,48]},{"1062024":[208,11,165,34,201]},{"1062030":[2,144,4,56,130,1]},{"1062037":[24,226,32,107,191,212,210,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1062058":[226,32,34,16,247,8,169,52,145,144,200,191,212,211,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1062093":[145,146,122,107,175,36,128,48,143,114,243,126,107,175,36,128,48,143,114,243,126,175,37,128,48,143,115,243,126,107,175,36,128,48,240,10,175,109,243,126,207,108,243,126,208,17,175,37,128,48,240,8,175,110,243,126,201,128,208,3,169]},{"1062155":[107,169,1,107,175,126,129,48,208,7,169,72,34,240,225,5,107,90,34,47,241,6,144,88,175,92,243,126,201,2,208,5,169,28,72,128,55,175,93,243,126,201,2,208,5,169,29,72,128,42,175,94,243,126,201,2,208,5,169,30,72,128,29,175,95,243,126,201,2,208,5,169,31,72,128,16,169,10,157,128,13,169,81,160,1,34,240,225,5,76,119,181,169,2,157,128,13,100,47,169,1,141,228,2,104,141,232,28,158,176,14,24,122,107,165,160,201,21,8,208,83,169,114,34,93,246,29,173,216,15,153,16,13,173,217,15,153,48,13,173,218,15,56,233,64,153]},{"1062302":[13,173,219,15,233]},{"1062308":[153,32,13,169,1,153,160,13,169,187,34,93,246,29,169,8,153,208,13,173,216,15,153,16,13,173,217,15,153,48,13,173,218,15,56,233,32,153]},{"1062347":[13,173,219,15,233]},{"1062353":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062378":[254,127,208,245,169,4,107,34,229,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,247,188,164,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,247,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062451":[107,169]},{"1062454":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,168,182,160,72,175,134,128,48,240,4,104,9,1,107,104,107,169,3,128,74,169,4,128,70,169,5,128,66,169,6,128,62,169,7,128,58,169,8,128,54,169,9,128,50,169,10,128,46,169,11,34,168,182,160,72,175,134,128,48,240,4,104,9,1,107,104,107,169,12,128,23,169,13,128,19,169,14,34,168,182,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,168,182,160,107,218,8,194,32,41,127]},{"1062575":[10,170,191]},{"1062579":[82,127,26,41,255,3,159]},{"1062587":[82,127,170,10,191]},{"1062593":[128,175,40,250,107,218,8,194,48,162]},{"1062605":[191,253,182,160,159]},{"1062611":[82,127,232,232,191,253,182,160,159]},{"1062621":[82,127,232,232,191,253,182,160,159]},{"1062631":[82,127,232,232,191,253,182,160,159]},{"1062641":[82,127,232,232,224,127]},{"1062648":[144,211,40,250,107]},{"1062655":[64]},{"1062657":[128]},{"1062659":[192]},{"1062662":[1,64,1,128,1,192,1]},{"1062670":[2,64,2,128,2,192,2]},{"1062678":[3,64,3,128,3,192,3,165,138,201,112,208,25,175,240,242,126,41,32,208,17,160,2,34,241,182,8,144,9,169,3,141,198,4,100,176,100,200,107,165,138,201,71,208,25,175,199,242,126,41,32,208,17,160,3,34,241,182,8,144,9,169,4,141,198,4,100,176,100,200,107,100,80,156,193,15,72,175,34,128,48,208,4,34,29,183,160,175,35,128,48,208,4,34,61,183,160,104,107,72,169]},{"1062780":[143,65,80,127,175,34,128,48,201,1,208,4,34,29,183,160,175,35,128,48,201,1,208,4,34,61,183,160,104,107,72,175,34,128,48,201,2,208,4,34,29,183,160,175,35,128,48,201,2,208,4,34,61,183,160,104,107,165,244,137,64,208,63,137,32,208,39,165,240,137,32,208,31,175,22,244,126,41,32,240,19,175,22,244,126,41,223,143,22,244,126,165,27,240,5,169,32,141,47,1,34,65,223,13,24,107,175,22,244,126,9,32,143,22,244,126,169,32,141,47,1,34,65,223,13,107,169,16,141,7,2,173,2,2,201,2,208,28,175,140,243,126,41,192,201,192,208,108,175,65,243,126,73,3,143,65,243,126,169,32,141,47,1,130,205]},{"1062946":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062963":[224,10,176,13,189,74,12,201,9,208,3,250,128,95,232,128,239,250,175,129,129,48,240,23,165,160,5,161,240,17,175,64,243,126,201,3,144,35,56,233,2,143,64,243,126,128,62,175,64,243,126,56,233,1,73,2,24,105,1,143,64,243,126,169,32,141,47,1,130,117]},{"1063034":[128,2,128,34,201,5,208,28,175,140,243,126,41,48,201,48,208,240,175,68,243,126,73,3,143,68,243,126,169,32,141,47,1,130,81]},{"1063070":[128,2,128,72,201,13,208,56,173,122,3,201,1,240,61,175,140,243,126,137,4,240,53,41,3,240,49,175,76,243,126,201,1,208,16,175,140,243,126,41,1,240,4,169,3,128,6,169,2,128,2,169,1,143,76,243,126,169,32,141,47,1,128,17,201,16,208,8,34,241,184,160,128,7,24,107,169,60,141,46,1,56,107,165,244,41,64,240,37,175,79,243,126,240,28,218,26,201,5,144,2,169,1,170,191,91,243,126,208,2,162,1,138,143,79,243,126,169,32,141,47,1,250,169]},{"1063195":[107,165,244,41,12,107,165,246,41,64,240,15,169,16,141,7,2,169,32,141,47,1,169,7,141]},{"1063221":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063241":[2,156,5,2,169]},{"1063247":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,83,186,72,218,8,175,152,192,126,240,3,130,229]},{"1063278":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063295":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063312":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063329":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063346":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063363":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063380":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063397":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063420":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063437":[192,59,208,29,175,142,243,126,9,64,143,142,243,126,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,37]},{"1063470":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063493":[192,88,208,10,175,142,243,126,9,64,143,142,243,126,175,67,244,126,240,3,130,245,4,175,152,192,126,240,3,130,187]},{"1063525":[192,32,208,3,130,143,2,192,38,208,3,130,136,2,192,46,208,3,130,129,2,192,47,208,3,130,122,2,192,48,208,3,130,115,2,192,55,208,3,130,108,2,192,56,208,3,130,101,2,192,57,208,3,130,94,2,192]},{"1063583":[208,3,130,87,2,192,4,144,14,192,73,240,10,192,80,240,6,192,94,240,2,128,3,130,103]},{"1063609":[192,59,208,3,130,96]},{"1063616":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063641":[201,15,1,208,3,130,59]},{"1063649":[201,16,1,208,3,130,51]},{"1063657":[201,28,1,208,3,130,43]},{"1063665":[201,31,1,208,3,130,35]},{"1063673":[201,255]},{"1063676":[208,3,130,27]},{"1063681":[201,20,1,208,3,130,19]},{"1063689":[201,21,1,208,3,130,11]},{"1063697":[201,22,1,208,3,130,3]},{"1063705":[40,128,4,40,130,49,4,175,87,192,126,201,1,208,3,130,141,1,165,27,208,3,130,134,1,226,32,173,12,4,201]},{"1063737":[208,2,128,4,201,2,208,21,192,50,208,3,130,179,1,175,52,244,126,24,105,16,143,52,244,126,130,98,1,201,4,208,30,175,54,244,126,26,41,7,170,175,54,244,126,41,248,143,54,244,126,138,15,54,244,126,143,54,244,126,130,64,1,201,6,208,14,175,53,244,126,24,105,32,143,53,244,126,130,46,1,201,8,208,30,175,53,244,126,26,41,3,170,175,53,244,126,41,252,143,53,244,126,138,15,53,244,126,143,53,244,126,130,12,1,201,10,208,34,72,218,175,57,244,126,26,41,15,170,175,57,244,126,41,240,143,57,244,126,138,15,57,244,126,143,57,244,126,250,104,130,230]},{"1063890":[201,12,208,34,72,218,175,52,244,126,26,41,15,170,175,52,244,126,41,240,143,52,244,126,138,15,52,244,126,143,52,244,126,250,104,130,192]},{"1063928":[201,14,208,34,72,218,175,56,244,126,26,41,15,170,175,56,244,126,41,240,143,56,244,126,138,15,56,244,126,143,56,244,126,250,104,130,154]},{"1063966":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063984":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1064002":[201,20,208,32,175,53,244,126,24,105,4,41,28,170,175,53,244,126,41,227,143,53,244,126,138,15,53,244,126,143,53,244,126,130,82]},{"1064038":[201,22,208,34,72,218,175,55,244,126,26,41,15,170,175,55,244,126,41,240,143,55,244,126,138,15,55,244,126,143,55,244,126,250,104,130,44]},{"1064076":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1064094":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,63,193,175,152,192,126,208,14,192,59,208,10,175,42,244,126,137,32,240,2,128,47,175,87,192,126,201,1,240,39,175,85,243,126,208,9,175,50,244,126,26,143,50,244,126,175,83,243,126,208,9,175,51,244,126,26,143,51,244,126,175,35,244,126,26,143,35,244,126,175,152,192,126,240,3,130,77,2,192]},{"1064198":[208,9,32,217,191,32,10,192,130,64,2,192,1,208,6,32,217,191,130,54,2,192,2,208,6,32,217,191,130,44,2,192,3,208,6,32,217,191,130,34,2,192,4,208,6,32,10,192,130,24,2,192,5,208,6,32,10,192,130,14,2,192,6,208,6,32,10,192,130,4,2,192,7,144,10,192,14,176,6,32,59,192,130,246,1,192,20,208,9,32,151,191,32,59,192,130,233,1,192,15,144,10,192,23,176,6,32,59,192,130,219,1,192,23,208,6,32,159,192,130,209,1,192,24,144,10,192,26,176,6,32,59,192,130,195,1,192,26,208,9,32,184,191,32,59,192,130,182,1,192,29,208,6,32,59,192,130,172,1,192,27,144,10,192,32,176,6,32,71,192,130,158,1,192,32,208,6,32,199,192,130,148,1,192,33,208,6,32,59,192,130,138,1,192,34,144,10,192,36,176,6,32,227,192,130,124,1,192,36,208,6,32,243,192,130,114,1,192,37,208,6,32,19,193,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,91,193,130,87,1,192,40,208,6,32,91,193,130,77,1,192,41,208,6,32,59,192,130,67,1,192,42,144,10,192,46,176,6,32,59,192,130,53,1,192,49,208,6,32,91,193,130,43,1,192,50,208,6,32,51,193,130,33,1,192,51,208,6,32,113,193,130,23,1,192,55,144,10,192,58,176,6,32,99,192,130,9,1,192,58,144,10,192,60,176,6,32,40,192,130,251]},{"1064534":[192,60,208,6,32,59,192,130,241]},{"1064544":[192,61,208,6,32,59,192,130,231]},{"1064554":[192,62,144,10,192,64,176,6,32,187,192,130,217]},{"1064568":[192,72,208,6,32,59,192,130,207]},{"1064578":[192,73,208,6,32,217,191,130,197]},{"1064588":[192,74,208,9,32,151,191,32,59,192,130,184]},{"1064601":[192,75,208,9,32,118,191,32,71,192,130,171]},{"1064614":[192,76,208,9,32,127,192,32,91,193,130,158]},{"1064627":[192,77,144,10,192,80,176,6,32,127,192,130,144]},{"1064641":[192,80,208,6,32,217,191,130,134]},{"1064651":[192,81,144,10,192,85,176,6,32,127,192,130,120]},{"1064665":[192,88,208,6,32,40,192,130,110]},{"1064675":[192,94,208,6,32,217,191,130,100]},{"1064685":[192,95,208,6,32,10,192,130,90]},{"1064695":[192,96,208,6,32,227,192,130,80]},{"1064705":[192,97,208,6,32,71,192,130,70]},{"1064715":[192,100,144,10,192,102,176,6,32,40,192,130,56]},{"1064729":[192,112,144,10,192,128,176,6,32,113,193,130,42]},{"1064743":[192,128,144,10,192,144,176,6,32,19,193,130,28]},{"1064757":[192,144,144,10,192,160,176,6,32,51,193,130,14]},{"1064771":[192,160,144,10,192,176,176,6,32,243,192,130]},{"1064785":[40,250,104,107,194,32,175,88,244,126,208,22,175,90,244,126,208,16,175,62,244,126,143,88,244,126,175,64,244,126,143,90,244,126,226,32,96,194,32,175,92,244,126,208,22,175,94,244,126,208,16,175,62,244,126,143,92,244,126,175,64,244,126,143,94,244,126,226,32,96,194,32,175,96,244,126,208,22,175,98,244,126,208,16,175,62,244,126,143,96,244,126,175,64,244,126,143,98,244,126,226,32,96,194,32,175,100,244,126,208,22,175,102,244,126,208,16,175,62,244,126,143,100,244,126,175,64,244,126,143,102,244,126,226,32,96,32,85,191,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064937":[26,207,23,244,126,144,14,72,175,23,244,126,41,248,3,1,143,23,244,126,104,175,34,244,126,24,105,32,143,34,244,126,96,175,34,244,126,24,105,8,41,24,170,175,34,244,126,41,231,143,34,244,126,138,15,34,244,126,143,34,244,126,96,192,59,208,15,175,42,244,126,137,32,240,1,96,9,32,143,42,244,126,175,33,244,126,24,105,8,143,33,244,126,96,175,33,244,126,26,41,7,170,175,33,244,126,41,248,143,33,244,126,138,15,33,244,126,143,33,244,126,96,175,41,244,126,26,41,3,170,175,41,244,126,41,252,143,41,244,126,138,15,41,244,126,143,41,244,126,96,72,218,175,82,244,126,26,41,15,170,175,82,244,126,41,240,143,82,244,126,138,15,82,244,126,143,82,244,126,250,104,96,175,72,244,126,26,41,31,170,175,72,244,126,41,224,143,72,244,126,138,15,72,244,126,143,72,244,126,96,175,41,244,126,24,105,16,143,41,244,126,96,175,34,244,126,26,41,7,170,175,34,244,126,41,248,143,34,244,126,138,15,34,244,126,143,34,244,126,96,175,36,244,126,24,105,64,143,36,244,126,96,32,243,192,107,72,218,175,36,244,126,26,41,63,170,175,36,244,126,41,192,143,36,244,126,138,15,36,244,126,143,36,244,126,250,104,96,72,218,175,40,244,126,26,41,15,170,175,40,244,126,41,240,143,40,244,126,138,15,40,244,126,143,40,244,126,250,104,96,175,39,244,126,24,105,16,143,39,244,126,96,175,42,244,126,26,41,31,170,175,42,244,126,41,224,143,42,244,126,138,15,42,244,126,143,42,244,126,96,175,42,244,126,41,128,208,13,175,42,244,126,9,128,143,42,244,126,32,59,192,96,175,40,244,126,24,105,16,143,40,244,126,96,32,129,193,107,175,89,243,126,208,12,175,82,244,126,24,105,16,143,82,244,126,96,201,255,240,240,201,1,208,12,175,37,244,126,24,105,16,143,37,244,126,96,201,2,208,32,72,218,175,37,244,126,26,41,15,170,175,37,244,126,41,240,143,37,244,126,138,15,37,244,126,143,37,244,126,250,104,96,201,3,208,12,175,38,244,126,24,105,16,143,38,244,126,96,201,4,208,31,72,218,175,38,244,126,26,41,15,170,175,38,244,126,41,240,143,38,244,126,138,15,38,244,126,143,38,244,126,250,104,96,175,67,243,126,208,17,175,117,243,126,240,11,58,143,117,243,126,169,1,143,67,243,126,34,127,219,13,34,135,240,160,107,143,117,243,126,173,3,3,208,14,169,4,141,2,2,169,1,141,3,3,34,120,250,13,107,173,2,2,41,255]},{"1065533":[201,2]},{"1065536":[208,14,175,140,243,126,41,192]},{"1065545":[201,192]},{"1065548":[240,79,128,64,201,1]},{"1065555":[208,14,175,142,243,126,41,192]},{"1065564":[201,192]},{"1065567":[240,60,128,45,201,5]},{"1065574":[208,14,175,140,243,126,41,48]},{"1065583":[201,48]},{"1065586":[240,41,128,26,201,13]},{"1065593":[208,16,175,140,243,126,137,4]},{"1065602":[240,12,41,3]},{"1065607":[208,20,128,5,201,16]},{"1065614":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065627":[208,5,169,79,61,128,6,32,172,194,169,62,45,153,196,255,107,185,192,255,41,255,239,153,192,255,185,194,255,41,255,239,153,194,255,185,254,255,41,255,239,153,254,255,185,4]},{"1065674":[41,255,239,153,4]},{"1065680":[185,62]},{"1065683":[41,255,239,153,62]},{"1065689":[185,68]},{"1065692":[41,255,239,153,68]},{"1065698":[185,128]},{"1065701":[41,255,239,153,128]},{"1065707":[185,130]},{"1065710":[41,255,239,153,130]},{"1065716":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065737":[41,255,239,153,132]},{"1065743":[185,126]},{"1065746":[41,255,239,153,126]},{"1065752":[96,175,140,243,126,41,252,9,1,143,140,243,126,169,3,143,76,243,126,107,175,114,129,48,240,1,107,173,12,4,201,255,107,165,4,41,255]},{"1065790":[201,144]},{"1065793":[208,3,169,127]},{"1065798":[9]},{"1065800":[36,143,100,199,126,165,5,41,255]},{"1065810":[9]},{"1065812":[36,143,102,199,126,107,175,114,129,48,240,5,175,139,243,126,107,191,124,243,126,107,72,175,114,129,48,240,6,104,143,139,243,126,107,104,159,124,243,126,107,72,34,252,242,160,34,209,130,160,32,222,128,175,114,129,48,240,10,104,175,139,243,126,143,111,243,126,107,104,143,111,243,126,107,100,2,100,3,194,48,107,34,93,246,29,175,93,227,48,143,153,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065924":[72,165,2,72,169,16,128,133]},{"1065933":[169,48]},{"1065936":[133,2,169,4]},{"1065941":[34,61,150,164,250,134,2,250,134,1,40,250,153,160,13,34,173,150,160,107,159,92,243,126,72,175,79,243,126,208,6,138,26,143,79,243,126,104,107,173,218,2,208,36,175]},{"1065987":[80,127,240,23,175,93,227,48,143,153,192,126,189,160,13,34,173,150,160,169]},{"1066008":[143]},{"1066010":[80,127,128,7,189,160,13,34,67,151,160,107,169]},{"1066024":[157,192,13,72,169,1,143]},{"1066032":[80,127,165,93,201,20,240,68,169]},{"1066042":[143]},{"1066044":[80,127,175,56,227,48,143,153,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1066072":[72,165,2,72,169,16,128,133]},{"1066081":[169,48]},{"1066084":[133,2,169,3]},{"1066089":[34,61,150,164,250,134,2,250,134,1,40,250,157,128,14,34,173,150,160,104,107,72,90,175]},{"1066114":[80,127,240,6,34,43,196,160,128,7,189,128,14,34,67,151,160,122,104,107,188,160,13,208,48,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1066157":[72,165,2,72,169,16,128,133]},{"1066166":[169,48]},{"1066169":[133,2,169,4]},{"1066174":[34,61,150,164,250,134,2,250,134,1,40,250,168,72,175,93,227,48,143,152,192,126,104,156,233,2,34,157,153,7,34,215,144,160,107,175,140,243,126,41,223,143,140,243,126,41,16,240,7,169,2,143,68,243,126,107,169]},{"1066232":[143,68,243,126,107,175,123,243,126,41,255]},{"1066244":[201,2]},{"1066247":[240,22,169,247,40,143,4,199,126,169,81,40,143,6,199,126,169,250,40,143,8,199,126,107,169,247,40,143,4,199,126,169]},{"1066280":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066295":[254,127,72,169,27,141,47,1,104,107,224,7,208,12,165,160,201,6,208,6,169,27,141,47,1,107,169,14,141,47,1,107,169,1,143]},{"1066331":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066345":[173,91,3,41,1,208,3,130,134]},{"1066355":[90,8,139,75,171,226,48,165,27,240,3,76,246,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066392":[129,48,143]},{"1066396":[254,127,34,93,246,29,162]},{"1066404":[165,47,201,4,240,1,232,191,250,197,160,153,80,13,169]},{"1066420":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,252,197,160,41,240,153,16,13,165,35,105]},{"1066454":[153,48,13,165,32,24,105,22,41,240,153]},{"1066466":[13,165,33,105]},{"1066471":[153,32,13,169]},{"1066476":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066493":[19,175,204,243,126,201,8,240,10,201,7,240,6,201,12,240,2,24,107,56,107,175,197,243,126,201,2,176,20,169]},{"1066524":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066545":[143,145,80,127,156,216,2,156,218,2,100,46,169,2,133,47,175,122,243,126,41,127,201,127,208,6,169,8,143,199,243,126,34,40,154,160,92,53,207,30,175,96,227,48,143,153,192,126,175,195,225,29,34,173,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066615":[92,82,223,29,175,97,227,48,143,153,192,126,175,133,225,29,34,173,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066646":[80,127,175,195,225,29,128,4,175,133,225,29,34,67,151,160,107,72,165,138,201,129,208,14,34,4,144,160,175,96,227,48,143,152,192,126,128,12,34,98,144,160,175,97,227,48,143,152,192,126,104,34,157,153,7,107,165,138,201,42,240,1,107,165,27,240,1,107,175,61,227,48,143,153,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066740":[72,165,2,72,169,64,129,133]},{"1066749":[169,48]},{"1066752":[133,2,169,10]},{"1066757":[34,61,150,164,250,134,2,250,134,1,40,250,34,173,150,160,169,235,143]},{"1066777":[254,127,34,93,246,29,162]},{"1066785":[165,47,201,4,240,1,232,191,126,199,160,153,80,13,169]},{"1066801":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,128,199,160,41,240,153,16,13,165,35,105]},{"1066835":[153,48,13,165,32,24,105,22,41,240,153]},{"1066847":[13,165,33,105]},{"1066852":[153,32,13,169]},{"1066857":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066881":[19,165,16,201,26,240,9,169,1,141,221,15,92,93,175,6,189,128,13,201,3,92,94,175,6,175,74,128,48,240,56,175,76,243,126,201,3,240,48,165,138,201,24,208,42,194,32,165,32,201,96,7,144,33,201,224,7,176,28,165,34,201,207,1,144,21,201,48,2,176,16,226,32,169,45,133,17,160]},{"1066960":[169,55,34,253,140,9,128,10,226,32,169,128,141,240,3,169,19,107,226,32,169,128,141,240,3,169]},{"1066987":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,220,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1067026":[72,165,2,72,169,16,128,133]},{"1067035":[169,48]},{"1067038":[133,2,169,5]},{"1067043":[34,61,150,164,250,134,2,250,134,1,40,250,201,255,240,19,168,72,175,94,227,48,143,152,192,126,104,156,233,2,34,157,153,7,107,175,210,251,5,143,123,243,126,107,201,12,208,6,160,92,92,71,213]},{"1067097":[201,35,208,6,160,93,92,71,213]},{"1067107":[201,72,208,6,160,96,92,71,213]},{"1067117":[201,36,176,6,160,91,92,71,213]},{"1067127":[201,55,176,6,160,92,92,71,213]},{"1067137":[201,57,176,6,160,93,92,71,213]},{"1067147":[160,50,92,71,213]},{"1067153":[192,9,48]},{"1067157":[96]},{"1067159":[144]},{"1067161":[192]},{"1067164":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067188":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067206":[9,48,9,96,9,144,9,240,9]},{"1067217":[240]},{"1067219":[32,10,80,10,96,6]},{"1067226":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067248":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067264":[6,48,6]},{"1067268":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067284":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067305":[127,145,200,160,107,165]},{"1067312":[72,165,1,72,165,2,72,90,8,139,169,175,72,171,173,216,2,201,224,208,74,194,48,175,80,244,126,10,170,191]},{"1067343":[132,175,24,105]},{"1067348":[136,133]},{"1067351":[226,32,169,175,133,2,34,166,228,160,175,80,244,126,26,143,80,244,126,226,16,175,103,129,48,240,25,175,24,244,126,26,143,24,244,126,207,103,129,48,144,10,175,148,129,48,208,4,34,248,219,160,162,1,128,2,162]},{"1067409":[171,40,122,104,133,2,104,133,1,104,133]},{"1067421":[96,218,173,216,2,34,220,228,160,72,175,152,192,126,240,4,104,130,254,3,104,201,11,208,23,175,142,243,126,41,64,240,12,175,129,129,48,208,6,169,3,143,64,243,126,130,226,3,201,59,208,43,175,129,129,48,208,24,175,130,129,48,41,1,240,16,175,118,243,126,208,4,169,3,128,2,169,4,143,64,243,126,175,142,243,126,9,64,143,142,243,126,130,179,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,155,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,131,3,201,78,208,22,175,123,243,126,201,2,176,5,26,143,123,243,126,169,128,143,115,243,126,130,105,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,86,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,65,3,201,81,208,22,175,112,243,126,24,105,5,143,112,243,126,175,128,128,48,143,117,243,126,130,39,3,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,13,3,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,243,2,201,84,208,22,175,113,243,126,24,105,10,143,113,243,126,175,131,128,48,143,118,243,126,130,217,2,201,85,208,27,175,97,128,48,208,14,175,98,128,48,208,8,175,99,128,48,208,2,128,4,34,96,128,48,130,186,2,201,86,208,27,175,102,128,48,208,14,175,103,128,48,208,8,175,104,128,48,208,2,128,4,34,101,128,48,130,155,2,201,87,208,27,175,107,128,48,208,14,175,108,128,48,208,8,175,109,128,48,208,2,128,4,34,106,128,48,130,124,2,201,88,208,43,175,129,129,48,208,25,175,130,129,48,41,1,240,17,175,64,243,126,240,11,201,3,176,7,24,105,2,143,64,243,126,175,117,129,48,240,6,169,1,143,118,243,126,201,89,208,20,194,32,175,96,243,126,56,239,54,128,48,143,96,243,126,226,32,130,53,2,201,90,208,3,130,46,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067918":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,10,2,201,92,208,32,194,32,175,84,244,126,24,111,4,130,48,143,84,244,126,175,86,244,126,111,6,130,48,143,86,244,126,226,32,130,230,1,201,93,208,32,194,32,175,84,244,126,24,111,8,130,48,143,84,244,126,175,86,244,126,111,10,130,48,143,86,244,126,226,32,130,194,1,201,94,208,3,130,187,1,201,95,208,3,130,180,1,201,96,208,3,130,173,1,201,97,208,3,130,166,1,201,98,208,3,130,159,1,201,99,208,3,130,152,1,201,100,208,3,130,145,1,201,101,208,3,130,138,1,201,106,208,7,34,248,219,160,130,127,1,201,107,208,2,128,4,201,108,208,34,175,103,129,48,240,25,175,24,244,126,26,143,24,244,126,207,103,129,48,144,10,175,148,129,48,208,4,34,248,219,160,130,83,1,201,109,208,7,34,248,191,164,130,72,1,201,110,208,7,34,55,192,164,130,61,1,201,111,208,7,34,118,192,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068176":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1068201":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068224":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068243":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068260":[56,233,8,170,169,1,224]},{"1068268":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068291":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068310":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068327":[56,233,8,170,169,1,224]},{"1068335":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068358":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068380":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,175,114,129,48,240,31,175,111,243,126,26,143,111,243,126,130,51]},{"1068412":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068431":[201,176,208,28,169,121,34,93,246,29,48,20,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1068457":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,175,108,227,48,240,58,175,152,192,126,240,52,173,233,2,240,4,201,3,208,23,173,69,3,240,2,169,4,133,93,156,218,2,156,123,3,156,228,2,169,14,141,47,1,156,216,2,156,217,2,156,233,2,90,160]},{"1068528":[34,98,185,160,122,250,104,107,34,128,240,160,175,152,192,126,208,12,173,216,2,32,165,219,141,216,2,32,123,219,173,216,2,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,25,32,214,219,207,150,128,48,144,13,175,152,192,126,208,7,175,151,128,48,141,216,2,130,180,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,162,1,201,94,208,86,175,152,192,126,208,20,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,132,1,175,89,243,126,201,255,208,8,169,73,141,216,2,130,116,1,201]},{"1068682":[208,8,169,73,141,216,2,130,104,1,201,1,208,8,169,80,141,216,2,130,92,1,201,2,208,8,169,2,141,216,2,130,80,1,169,3,141,216,2,130,72,1,201,95,208,107,175,152,192,126,240,36,175,22,244,126,41,192,208,8,169,4,141,216,2,130,46,1,201,64,208,8,169,5,141,216,2,130,34,1,169,6,141,216,2,130,26,1,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130]},{"1068795":[1,175,22,244,126,41,192,208,4,169,4,128,10,201,64,208,4,169,5,128,2,169,6,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,217]},{"1068835":[201,96,208,50,175,152,192,126,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,187]},{"1068865":[175,91,243,126,201]},{"1068871":[208,8,169,34,141,216,2,130,171]},{"1068881":[169,35,141,216,2,130,163]},{"1068889":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068907":[169,28,141,216,2,130,137]},{"1068915":[201,100,208,52,175,152,192,126,208,22,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,105]},{"1068947":[175,64,243,126,26,74,201]},{"1068955":[208,7,169,58,141,216,2,128,88,169,59,141,216,2,128,81,201,101,208,18,175,152,192,126,208,10,175,142,243,126,9,32,143,142,243,126,128,182,201,98,208,19,34,142,218,160,141,216,2,235,32,25,219,169,255,143,144,80,127,128,36,201,99,208,15,34,74,219,160,141,216,2,169,255,143,144,80,127,128,17,201,176,208,13,175,152,192,126,240,7,169,14,141,216,2,128]},{"1069052":[250,104,139,75,92,228,133,9,251,251,251,251,251,252,252,251,251,252,252,252,254,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,251,252,252,252,252,252,252,254,252,252,252,252,252,252,252,252,252,254,254,254,252,252,252,252,252,252,252,252,252,252,252,254,254,252,254,252,252,252,251,252,252,252,252,252,252,251,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,4,4,4,4,4]},{"1069307":[4,4,4,4,4,5]},{"1069319":[4]},{"1069321":[4]},{"1069324":[4]},{"1069336":[4]},{"1069342":[5]},{"1069352":[4,4,4]},{"1069366":[4,4]},{"1069369":[4]},{"1069373":[4]},{"1069380":[4]},{"1069389":[4]},{"1069460":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069540":[6,24,24,24,45,32,46,9,9,10,8,5,16,11,44,27,26,28,20,25,12,7,29,47,7,21,18,13,13,14,17,23,40,39,4,4,15,22,3,19,1,30,16]},{"1069589":[48,34,33,36,36,36,35,35,35,41,42,44,43,3,3,52,53,49,51,2,50,54,55,44,6,12,56,57,58,59,60,24,61,62,63,64]},{"1069628":[65,36,71,72,72,72,255,255,4,13,255,255,255,255,255,255,255,255,73,74,73,255,255,255,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,71,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73]},{"1069785":[2,2]},{"1069793":[2,2,2,2,2,2]},{"1069800":[2]},{"1069802":[2,2]},{"1069805":[2,2,2,2,2,2,2,2,2,2,2]},{"1069817":[2,2,2,2,2]},{"1069823":[2,2,2,2,2,2,2,2,2]},{"1069835":[2,2,2,2,2,2,2,2,2,2,2]},{"1069848":[2]},{"1069850":[2,2,2]},{"1069854":[2,2,2,2,2,2]},{"1069861":[2,2,2,2,2,2,2,2]},{"1069870":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]},{"1069956":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,255,5,5,5,5,5,1,2,1,1,1,2,2,2,4,4,4,1,1,2,1,1,1,2,1,2,1,4,4,2,1,6,1,2,1,2,2,1,2,2,4,1,1,4,2,1,4,2,2,4,4,4,2,1,4,1,2,2,1,2,2,1,1,4,4,1,2,2,4,4,4,2,5,2,1,4,4,4,4,5,4,4,4,4,4,4,4,1,3,1,1,2,4,255,255,255,255,255,255]},{"1070142":[4,4,4]},{"1070148":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,89,243,89,243,89,243,89,243,90,243,90,243,90,243,69,243,70,243,75,243,66,243,64,243,65,243,68,243,92,243,71,243,72,243,73,243,74,243,76,243,76,243,80,243,92,243,107,243,81,243,82,243,83,243,84,243,84,243,78,243,86,243,87,243,122,243,77,243,91,243,91,243,111,243,100,243,108,243,117,243,117,243,68,243,65,243,92,243,92,243,92,243,109,243,110,243,110,243,117,243,102,243,104,243,96,243,96,243,96,243,116,243,116,243,116,243,64,243,64,243,92,243,92,243,108,243,108,243,96,243,96,243,114,243,118,243,118,243,115,243,96,243,96,243,92,243,89,243,76,243,85,243,117,243,118,243,115,243,115,243,89,243,117,243,117,243,118,243,118,243,26,244,28,244,30,244,64,243,96,243,106,243,84,244,84,244,84,244,89,243,90,243,91,243,84,243,106,243,106,243,64,243,64,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,1,2,3,4,1,2,3,1,1,1,1,1,1,2,255,1,1,1,1,1,2,1,255,255,1,1,2,1,2,1,1,1,255,1,255,2,255,255,255,255,255,255,2,255,255,255,255,255,255,255,255,255,255,251,236,255,255,255,1,3,255,255,255,255,156,206,255,1,10,255,255,255,255,1,3,1,50,70,128,128,2,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1071061":[128]},{"1071063":[64]},{"1071065":[32]},{"1071067":[16]},{"1071069":[8]},{"1071071":[4]},{"1071073":[2]},{"1071075":[1,128]},{"1071078":[64]},{"1071080":[32]},{"1071082":[16]},{"1071084":[8]},{"1071086":[4]},{"1071317":[22,43,44,45,61,60,72,46,47,48,255,14,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,53,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,139,75,171,175,152,192,126,208,6,152,32,165,219,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,35,218,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,35,218,160,175,64,243,126,107,175,117,129,48,240,51,175,119,243,126,240,70,175,64,243,126,208,10,175,142,243,126,41,64,208,31,128,4,201,3,176,25,169,167,143,32,199,126,169,32,143,33,199,126,169,169,143,34,199,126,169,32,143,35,199,126,107,169,134,143,32,199,126,169,36,143,33,199,126,169,135,143,34,199,126,169,36,143,35,199,126,107,169,127,143,32,199,126,169,36,143,33,199,126,169,127,143,34,199,126,169,36,143,35,199,126,107,90,175,144,80,127,201,255,240,7,170,235,191]},{"1071771":[160,48,107,162]},{"1071776":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071789":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071803":[168,152,32,245,218,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071823":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071847":[160,48,235,175,32,80,127,143,144,80,127,235,122,107,74,74,74,170,191,80,244,126,143,34,80,127,218,175,32,80,127,41,7,170,175,34,80,127,224]},{"1071887":[240,4,74,202,128,248,250,41,1,96,74,74,74,143,33,80,127,170,191,80,244,126,143,34,80,127,175,32,80,127,41,7,170,169,1,224]},{"1071924":[240,4,10,202,128,248,72,175,33,80,127,170,104,15,34,80,127,159,80,244,126,96,175,144,80,127,201,255,240,7,170,235,191,128,160,48,107,162]},{"1071963":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071976":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071999":[191]},{"1072001":[192,48,201,255,240,27,195,1,208,17,218,138,74,74,170,191,144,243,126,26,159,144,243,126,250,240,6,232,232,232,232,128,221,104,250,96,218,72,162]},{"1072041":[191]},{"1072043":[192,48,201,255,240,34,195,1,208,24,218,138,74,74,170,191,144,243,126,250,223,1,192,48,144,6,191,2,192,48,131,1,240,6,232,232,232,232,128,214,104,250,96,218,162]},{"1072089":[175,92,243,126,240,1,232,175,93,243,126,240,1,232,175,94,243,126,240,1,232,175,95,243,126,240,1,232,138,250,96,100,17,100,176,92,169,189,164,169,1,141,233,2,175,147,129,48,240,5,34,182,191,164,107,164,12,56,107,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1072173":[13,24,105,3,107,189,32,14,201,136,208,9,32,106,220,201,4,144,1,58,107,32,106,220,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1072219":[200,49,74,74,74,74,107,40,191]},{"1072229":[200,49,41,15,107,175,192,80,127,240,18,24,111,89,243,126,208,3,169,1,96,201,5,144,3,169,4,96,96,175,89,243,126,96,72,175,91,243,126,24,111,194,80,127,201,255,208,2,169]},{"1072279":[201,3,144,2,169,2,143,32,80,127,104,24,111,32,80,127,107,175,195,80,127,240,19,24,111,123,243,126,201,255,208,3,169]},{"1072313":[107,201,3,144,2,169,2,107,175,123,243,126,107,165,160,201,145,240,42,201,146,240,38,201,147,240,34,165,93,201,1,240,28,201,23,240,24,201,28,240,20,165,94,201,2,240,14,165,91,208,10,173,72,3,15,199,80,127,41,17,107,173,72,3,41,17,107,165,160,201,145,240,42,201,146,240,38,201,147,240,34,165,93,201,1,240,28,201,23,240,24,201,28,240,20,165,94,201,2,240,14,165,91,208,10,173,72,3,15,199,80,127,41,1,107,173,72,3,41,1,107,175,68,128,48,240,9,175,75,243,126,240,3,169,2,107,175,89,243,126,107,175,93,128,48,240,3,169,255,107,175,89,243,126,107,175,63,128,48,240,6,189,32,14,201,216,107,189,32,14,201,214,107,34,84,143,160,240,4,92,157,180,6,175,41,128,48,208,4,92,145,180,6,194,32,175,96,243,126,201,10]},{"1072515":[226,32,176,19,194,16,169,122,160,1,34,25,226,5,169,60,141,46,1,226,16,128,42,175,102,227,48,143,152,192,126,175,42,128,48,168,156,233,2,218,34,157,153,7,250,194,32,175,96,243,126,56,233,10]},{"1072570":[143,96,243,126,226,32,34,207,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072596":[165,27,240,121,194,32,165,160,201,14]},{"1072607":[208,33,165,34,41,255,1,201,104,1,144,98,201,136,1,176,93,165,32,41,255,1,201,122,1,144,83,201,154,1,176,78,130,167]},{"1072642":[201,126]},{"1072645":[208,33,165,34,41,255,1,201,104]},{"1072655":[144,60,201,136]},{"1072660":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072680":[201,222]},{"1072683":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072708":[144,7,201,154]},{"1072713":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,177,222,160,205,3,3,208,60,175,240,242,126,41,32,208,52,169,8,72,171,160,2,34,241,182,8,176,48,128,38,201,71,208,34,175,35,128,48,170,191,177,222,160,205,3,3,208,20,175,199,242,126,41,32,208,12,169,8,72,171,160,3,34,241,182,8,176,8,122,250,171,175,89,243,126,107,226,32,122,250,171,169,2,107,15,16,17,8,194,16,72,218,90,173,44,1,240,28,48,26,205,51,1,208,32,201,22,208,14,173,11,1,201,59,208,7,169]},{"1072851":[141,51,1,128,14,173,44,1,141,43,1,156,44,1,122,250,104,40,107,175,19,130,48,208,57,175,172,80,127,207,171,80,127,240,47,207,170,80,127,144,33,201,254,144,21,143,171,80,127,226,16,169]},{"1072904":[162,7,159,160,80,127,202,16,249,194,16,128,16,175,171,80,127,143,172,80,127,143,171,80,127,34,170,225,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072957":[174,2,32,224,83,45,240,3,130,253]},{"1072968":[174,4,32,224,77,83,208,245,174,6,32,224,85,49,208,237,226,16,173,44,1,201,2,240,37,201,9,240,50,201,13,240,60,201,15,240,56,201,16,240,78,201,17,240,81,201,22,240,77,201,21,208,83,173,12,4,74,24,105,45,128,71,72,175]},{"1073033":[243,126,41,64,240,5,104,169,60,128,57,104,128,54,72,175,122,243,126,201,127,208,244,104,169,61,128,40,72,175,122,243,126,201,127,240,242,175,202,243,126,240,224,165,138,201,64,208,218,104,169,15,128,14,173,12,4,201,8,208,10,173,12,4,74,24,105,33,141,44,1,174,44,1,191,127,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1073133":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,63,216,48,218,170,191,127,216,48,250,205,44,1,240,55,224,35,144,4,224,47,144,5,141,44,1,128,181,139,194,16,174,12,4,169,2,72,171,164]},{"1073191":[90,194,32,191,192,216,48,133]},{"1073200":[226,32,178]},{"1073204":[122,132]},{"1073207":[226,16,171,170,191,127,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1073227":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1073248":[66,173,44,1,201,8,240,64,165,16,201,7,240,69,201,14,240,65,201,9,208,47,226,16,162,9,165,138,201,67,240,10,201,69,240,6,201,71,240,2,162,5,201,112,208,8,175,240,242,126,41,32,240,8,175,197,243,126,201,2,176,2,162,1,142,45,1,194,16,173,44,1,141,43,1,156,44,1,122,250,104,40,107,173,44,1,141,43,1,156,44,1,122,250,104,40,169,5,141,45,1,92,150,130,2,194,32,165,160,201,12]},{"1073360":[208,13,173,11,1,41,255]},{"1073368":[201,59]},{"1073371":[208,63,128,56,201,107]},{"1073378":[208,58,175,19,130,48,201,1]},{"1073387":[240,24,173,2,32,201,83,45,208,39,173,4,32,201,77,83,208,31,173,6,32,201,85,49,208,23,175,102,243,126,41,4]},{"1073420":[240,14,175,167,80,127,41,4]},{"1073429":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073444":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073463":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073488":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,175,26,130,48,208,124,194,32,173,2,32,201,83,45,208,114,173,4,32,201,77,83,208,106,173,6,32,201,85,49,208,98,169]},{"1073537":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073553":[232,226,32,168,173]},{"1073559":[32,137,64,208,249,173]},{"1073566":[32,137,8,240,228,138,143,170,80,127,128,9,8,226,16,175,26,130,48,208,45,169,64,162,7,160,7,141,4,32,156,5,32,72,24,173]},{"1073603":[32,137,64,208,249,173]},{"1073610":[32,137,8,208,1,56,191,160,80,127,42,159,160,80,127,136,16,8,202,16,3,104,40,107,160,7,104,58,128,209,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073661":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,153]},{"1073687":[175,169,80,127,240,85,173]},{"1073695":[32,137,64,240,4,92,220,128]},{"1073704":[173]},{"1073706":[32,137,8,240,4,92,220,128]},{"1073715":[169,255,141,41,1,141,39,1,141,6,32,173,11,1,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1073751":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073770":[143,169,80,127,92,220,128]},{"1073778":[173,39,1,205,41,1,208,4,92,220,128]},{"1073790":[144,22,233,2,144,10,205,41,1,176,29,173,41,1,128,24,156,39,1,156,7,32,128,16,105,16,176,10,205,41,1,144,7,173,41,1,128,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073840":[224,255,208,4,92,220,128]},{"1073848":[224,243,208,9,169,255,141,41,1,92,220,128]},{"1073861":[224,242,208,9,169,128,141,41,1,92,220,128]},{"1073874":[224,241,208,10,156,41,1,156,11,1,92,220,128]},{"1073888":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073902":[141,43,1,92,220,128]},{"1073909":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073928":[235,175,171,80,127,240,13,207,170,80,127,144,7,56,239,170,80,127,128,243,218,72,138,250,194,32,240,7,24,105,100]},{"1073960":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073985":[128,4,191,255,215,48,143,169,80,127,191,63,216,48,201,17,240,12,201,22,240,8,201,35,144,35,201,47,176,31,139,194,16,174,12,4,169,2,72,171,164]},{"1074027":[90,194,32,191,192,216,48,133]},{"1074036":[226,32,178]},{"1074040":[122,132]},{"1074043":[226,16,171,170,223,63,216,48,240,6,191,63,216,48,128,243,141,43,1,92,220,128]},{"1074066":[141,44,1,72,34,180,222,160,203,104,205,64,33,208,251,92,174,136,9,175,19,130,48,208,66,175,27,130,48,208,67,194,32,173,2,32,201,83,45,208,50,173,4,32,201,77,83,208,42,173,6,32,201,85,49,208,34,226,32,175,171,80,127,201,254,176,24,173]},{"1074135":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1074148":[32,137,16,240,11,92,38,196,8,226,32,173,64,33,208,245,92,43,196,8,175,19,130,48,208,66,175,27,130,48,208,67,194,32,173,2,32,201,83,45,208,50,173,4,32,201,77,83,208,42,173,6,32,201,85,49,208,34,226,32,175,171,80,127,201,254,176,24,173]},{"1074218":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1074231":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,165,17,201,4,144,10,173,64,33,240,4,201,1,240,1,24,107,194,32,173,2,32,201,83,45,208,25,173,4,32,201,77,83,208,17,173,6,32,201,85,49,208,9,226,32,173]},{"1074298":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1074316":[87,127,107,191]},{"1074321":[18,127,107,156,240,28,156,241,28,169]},{"1074332":[143,53,80,127,169,28,141,233,28,107,156,240,28,156,241,28,169,1,143,53,80,127,194,32,175,148,80,127,170,160]},{"1074364":[226,32,183]},{"1074368":[159]},{"1074370":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074389":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074413":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074431":[143,16,80,127,175,106,129,48,41,1,201,1,208,127,175,64,80,127,201,36,208,119,169,170,133]},{"1074457":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074475":[226,32,183]},{"1074479":[159]},{"1074481":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074500":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074520":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074538":[226,32,183]},{"1074542":[159]},{"1074544":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074563":[143,148,80,127,226,32,130,154,6,175,106,129,48,41,2,201,2,208,127,175,64,80,127,201,37,208,119,169,52,133]},{"1074594":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074612":[226,32,183]},{"1074616":[159]},{"1074618":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074637":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074657":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074675":[226,32,183]},{"1074679":[159]},{"1074681":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074700":[143,148,80,127,226,32,130,17,6,175,106,129,48,41,4,201,4,208,127,175,64,80,127,201,51,208,119,169]},{"1074729":[133]},{"1074731":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074749":[226,32,183]},{"1074753":[159]},{"1074755":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074774":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074794":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074812":[226,32,183]},{"1074816":[159]},{"1074818":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074837":[143,148,80,127,226,32,130,136,5,175,106,129,48,41,8,201,8,208,127,175,64,80,127,201,50,208,119,169,112,133]},{"1074868":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074886":[226,32,183]},{"1074890":[159]},{"1074892":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074911":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074931":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074949":[226,32,183]},{"1074953":[159]},{"1074955":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074974":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074995":[133]},{"1074997":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075015":[226,32,183]},{"1075019":[159]},{"1075021":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075040":[143,148,80,127,226,32,130,213]},{"1075049":[201,128,208,56,169,52,133]},{"1075057":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075075":[226,32,183]},{"1075079":[159]},{"1075081":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075100":[143,148,80,127,226,32,130,153]},{"1075109":[201,144,208,55,169,112,133]},{"1075117":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075135":[226,32,183]},{"1075139":[159]},{"1075141":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075160":[143,148,80,127,226,32,128,94,201,160,208,87,175,64,80,127,201,175,208,3,130,88,4,169,170,133]},{"1075187":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075205":[226,32,183]},{"1075209":[159]},{"1075211":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075230":[143,148,80,127,226,32,104,41,15,143,32,80,127,169,15,56,239,32,80,127,72,169,1,143,16,80,127,128,3,130,9,4,175,150,80,127,58,58,143,148,80,127,175,64,80,127,41,15,143,17,80,127,175,16,80,127,240,15,175,16,80,127,169,15,56,239,17,80,127,143,17,80,127,175,17,80,127,201]},{"1075309":[208,56,169,216,133]},{"1075315":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075333":[226,32,183]},{"1075337":[159]},{"1075339":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075358":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075375":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075393":[226,32,183]},{"1075397":[159]},{"1075399":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075418":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075435":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075453":[226,32,183]},{"1075457":[159]},{"1075459":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075478":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075495":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075513":[226,32,183]},{"1075517":[159]},{"1075519":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075538":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075555":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075573":[226,32,183]},{"1075577":[159]},{"1075579":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075598":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075615":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075633":[226,32,183]},{"1075637":[159]},{"1075639":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075658":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075675":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075693":[226,32,183]},{"1075697":[159]},{"1075699":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075718":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075735":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075753":[226,32,183]},{"1075757":[159]},{"1075759":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075778":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075795":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075813":[226,32,183]},{"1075817":[159]},{"1075819":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075838":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075855":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075873":[226,32,183]},{"1075877":[159]},{"1075879":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075898":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075915":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075933":[226,32,183]},{"1075937":[159]},{"1075939":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075958":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075975":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075993":[226,32,183]},{"1075997":[159]},{"1075999":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1076018":[143,148,80,127,226,32,130,235]},{"1076027":[201,12,208,56,169,12,133]},{"1076035":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1076053":[226,32,183]},{"1076057":[159]},{"1076059":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1076078":[143,148,80,127,226,32,130,175]},{"1076087":[201,13,208,55,169,41,133]},{"1076095":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1076113":[226,32,183]},{"1076117":[159]},{"1076119":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1076138":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1076154":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1076172":[226,32,183]},{"1076176":[159]},{"1076178":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1076197":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1076213":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1076231":[226,32,183]},{"1076235":[159]},{"1076237":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1076256":[143,148,80,127,226,32,156,240,28,156,241,28,169,1,143,53,80,127,169,1,143,159,80,127,104,133,2,104,133,1,104,133]},{"1076289":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1076304":[171,40,122,250,104,107,34,78,216]},{"1076314":[156,232,28,107,176,4,192,152,144,5,169,255,255,128,3,185,1,195,201,255,255,107,175,126,129,48,240,32,175,92,243,126,15,93,243,126,15,94,243,126,15,95,243,126,208,14,189,128,13,24,105,8,157,128,13,169,81,160,1,107,169,136,160]},{"1076378":[107,34,182,129,164,176,12,194,32,169,140,1,141,240,28,226,32,128,10,194,32,169,109,1,141,240,28,226,32,34,208,237,160,107,34,182,129,164,176,12,194,32,169,141,1,141,240,28,226,32,128,90,175,142,243,126,41,128,208,12,194,32,169,146,1,141,240,28,226,32,128,70,175,142,243,126,41,64,240,12,194,32,169,149,1,141,240,28,226,32,128,50,175,142,243,126,41,32,208,12,194,32,169,148,1,141,240,28,226,32,128,30,175,142,243,126,41,128,240,12,194,32,169,147,1,141,240,28,226,32,128,10,194,32,169,110,1,141,240,28,226,32,34,208,237,160,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,175,68,128,48,240,8,175,75,243,126,240,14,128,22,175,89,243,126,201,255,240,4,201,2,176,10,104,169,12,160,1,34,25,226,5,107,104,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,175,68,128,48,240,8,175,75,243,126,240,14,128,22,175,89,243,126,201,255,240,4,201,2,176,10,104,169,13,160,1,34,25,226,5,107,104,107,175,116,243,126,41,4,240,8,169,47,160]},{"1076649":[34,25,226,5,107,175,122,243,126,41,5,201,5,240,9,169,21,160,1,34,25,226,5,107,169,22,160,1,34,25,226,5,107,165,16,201,14,240,109,100,17,218,90,165]},{"1076694":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076718":[226,48,160]},{"1076722":[183]},{"1076724":[201,254,208,39,200,183]},{"1076731":[201,110,208,32,200,183]},{"1076738":[208,27,200,183]},{"1076743":[201,254,208,20,200,183]},{"1076750":[201,107,208,13,200,183]},{"1076757":[201,4,208,6,156,232,28,130,19]},{"1076767":[156,35,2,156,216,28,169,2,133,17,165,16,141,12,1,169,14,133,16,104,133,2,104,133,1,104,133]},{"1076795":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076812":[10,10,69,138,41,8]},{"1076819":[240,6,152,24,105,16]},{"1076826":[168,165,35,41,2]},{"1076832":[74,69,138,41,1]},{"1076838":[240,4,152,26,26,168,152,41,255]},{"1076848":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,11,151,164,34,1,148,164,107,34,28,246,160,34,111,143,39,34]},{"1076880":[128,191,34,93,190,164,92,21,253,13,72,34,43,130,160,34,241,131,160,34,251,130,160,104,107,72,8,226,32,34,94,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,129,132,160,34,241,131,160,40,104,107,34,94,129,160,169,16,133,28,107,72,175,77,128,48,137,4,240,4,143,202,80,127,137,2,240,4,143,201,80,127,137,1,240,4,143,200,80,127,175,95,227,48,143,152,192,126,104,34,157,153,7,175,78,128,48,137,4,240,6,169,128,143,115,243,126,175,78,128,48,137,2,240,6,169,50,143,117,243,126,175,78,128,48,137,1,240,39,169,70,143,118,243,126,175,117,129,48,240,27,175,142,243,126,9,128,143,142,243,126,194,32,175,96,243,126,24,111,131,129,48,143,96,243,126,226,32,107,34,190,160,2,34,147,188,164,107,194,16,34,61,137]},{"1077080":[169,7,141,12,33,175,240,244,126,208,10,34,185,239,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,247,129,160,34,224,130,160,34,159,130,164,169,255,143,144,80,127,169]},{"1077132":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,241,131,160,34,251,130,160,34,160,131,160,175,135,128,48,201,1,208,4,34,36,150,164,226,16,107,218,8,194,32,175,70,128,48,143,98,243,126,143,96,243,126,175,12,130,48,143,84,244,126,175,14,130,48,143,86,244,126,162,78]},{"1077212":[191]},{"1077214":[176,48,159,64,243,126,202,202,16,244,226,32,175,64,128,48,240,12,169,128,143,97,240,126,169,128,143,147,240,126,175,139,128,48,240,6,169,32,143,219,242,126,175,140,128,48,240,6,169,32,143,195,242,126,175,67,128,48,143,89,243,126,40,250,107,169,81,141,162,10,34,61,137]},{"1077288":[107,34,158,153,160,34,33,247,160,107,34,17,154,160,34,26,154,160,162,4,107,34,33,247,160,169,20,133,17,107,34,33,247,160,107,34,83,132,160,34,246,153,160,34,6,188,164,8,226,32,169,255,143,144,80,127,40,107,175,156,80,127,208,13,26,143,156,80,127,34,79,186,10,206]},{"1077363":[2,107,169]},{"1077367":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,40,154,160,107,169]},{"1077390":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,202,237,160,169]},{"1077412":[143,159,80,127,165,27,240,17,194,32,165,160,143,212,244,126,226,32,173,3,4,143,214,244,126,175,152,192,126,240,13,156,233,2,169]},{"1077448":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077473":[208,4,169]},{"1077478":[107,201,1]},{"1077482":[208,16,175,197,243,126,41,15]},{"1077491":[201,2]},{"1077494":[176,84,32,80,241,107,201,2]},{"1077503":[208,75,32,80,241,240,70,218,90,226,48,34,128,130,164,194,48,122,250,176,4,169,1]},{"1077527":[107,175,74,128,48,41,255]},{"1077535":[240,43,175,195,242,126,41,32]},{"1077544":[208,34,173,8,3,41,128]},{"1077552":[240,4,169,1]},{"1077557":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077579":[107,169]},{"1077583":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077606":[96,169]},{"1077610":[96,175,76,128,48,41,255]},{"1077618":[240,4,92,90,189,27,224,118]},{"1077627":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077644":[72,170,191,64,130,48,208,3,130,175]},{"1077655":[58,133]},{"1077658":[10,10,24,101]},{"1077663":[10,10,170,169,22]},{"1077669":[143,66,193,126,191,85,130,48,143,68,193,126,191,87,130,48,143,70,193,126,191,89,130,48,24,105,16]},{"1077697":[143,72,193,126,191,91,130,48,143,74,193,126,191,93,130,48,143,80,193,126,191,95,130,48,143,82,193,126,191,83,130,48,143,78,193,126,191,97,130,48,41,255]},{"1077740":[137,128]},{"1077743":[240,3,9]},{"1077747":[255,143,106,193,126,191,98,130,48,41,255]},{"1077759":[137,128]},{"1077762":[240,3,9]},{"1077766":[255,143,110,193,126,169]},{"1077774":[56,239,106,193,126,143,108,193,126,169]},{"1077786":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077802":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077820":[191,71,130,48,143,153,80,127,194,32,104,107,174,232,28,191,80,131,48,208,8,175,200,243,126,92,154,132,2,191,129,132,2,10,170,191,210,216,2,133,160,191,211,216,2,133,161,169,8,133,16,100,17,100,176,156,10,1,156,170,4,34,149,227,13,34,136,250,13,34,50,221,13,107,162,36]},{"1077897":[165]},{"1077899":[223]},{"1077901":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077921":[165]},{"1077923":[223]},{"1077925":[131,48,208,9,173,10,4,223,32,131,48,240,12,202,202,16,235,92,164,184,27,92,175,184,27,226,48,138,74,170,191,64,131,48,141,14,1,156,15,1,92,189,184,27,133]},{"1077971":[175,74,128,48,41,255]},{"1077978":[240,25,175,93]},{"1077984":[41,255]},{"1077987":[201,20]},{"1077990":[208,13,165,138,41,64]},{"1077997":[197,123,240,4,92,119,189,27,162,2,1,92,10,189,27,175,137,128,48,240,16,165,138,201,71,208,10,175,199,242,126,9,32,143,199,242,126,107,72,175,74,128,48,240,13,165,138,41,64,208,7,104,156,198,4,169]},{"1078054":[107,104,141,228,2,141,193,15,141,16,7,107,165,12,201,56,208,4,9,64,133,12,165,13,157,2,8,165,12,157,3,8,107,175,127,129,48,208,6,173,29,3,201,11,107,175,65,80,127,26,143,65,80,127,175,127,129,48,207,65,80,127,208,8,169]},{"1078120":[143,65,80,127,128,10,74,207,65,80,127,144,3,226,2,107,194,2,107,175,127,129,48,208,7,34,182,233,29,165,95,107,169]},{"1078154":[107,175,51,128,48,240,9,141,202,4,169,43,141,46,1,107,169,255,141,202,4,107,175,112,243,126,24,111,52,128,48,58,207,67,243,126,144,13,175,67,243,126,201,99,176,5,26,143,67,243,126,107,175,113,243,126,24,111,53,128,48,58,207,119,243,126,144,13,175,119,243,126,201,99,176,5,26,143,119,243,126,107,175,112,243,126,24,111,52,128,48,207,67,243,126,107,169]},{"1078253":[143,128,80,127,143,130,80,127,143,132,80,127,143,134,80,127,143,136,80,127,143,138,80,127,175,144,129,48,41,255]},{"1078284":[201,2]},{"1078287":[208,27,175,62,244,126,56,239,84,244,126,143,140,80,127,175,64,244,126,239,86,244,126,143,142,80,127,128,30,201,1]},{"1078319":[208,25,175,84,244,126,56,239,62,244,126,143,140,80,127,175,86,244,126,239,64,244,126,143,142,80,127,175,142,80,127,207,26,246,160,144,10,208,8,175,140,80,127,207,24,246,160,144,114,175,145,129,48,41,255]},{"1078375":[208,24,169,2]},{"1078380":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078404":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078417":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078431":[143,142,80,127,169,1]},{"1078438":[143,126,80,127,128,54,201,2]},{"1078447":[208,24,169,2]},{"1078452":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,248,219,160,194,48,96,175,146,129,48,41,255]},{"1078489":[240,7,169]},{"1078494":[143,126,80,127,175,142,80,127,207,14,246,160,144,10,208,8,175,140,80,127,207,12,246,160,144,53,175,128,80,127,26,201,10]},{"1078528":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078542":[143,128,80,127,175,140,80,127,56,239,12,246,160,143,140,80,127,175,142,80,127,239,14,246,160,143,142,80,127,128,181,175,142,80,127,207,18,246,160,144,10,208,8,175,140,80,127,207,16,246,160,144,53,175,132,80,127,26,201,10]},{"1078603":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078617":[143,132,80,127,175,140,80,127,56,239,16,246,160,143,140,80,127,175,142,80,127,239,18,246,160,143,142,80,127,128,181,175,142,80,127,207,22,246,160,144,10,208,8,175,140,80,127,207,20,246,160,144,53,175,136,80,127,26,201,10]},{"1078678":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078692":[143,136,80,127,175,140,80,127,56,239,20,246,160,143,140,80,127,175,142,80,127,239,22,246,160,143,142,80,127,128,181,175,128,80,127,24,105,144,36,143,128,80,127,175,130,80,127,24,105,144,36,143,130,80,127,175,132,80,127,24,105,144,36,143,132,80,127,175,134,80,127,24,105,144,36,143,134,80,127,175,136,80,127,24,105,144,36,143,136,80,127,175,138,80,127,24,105,144,36,143,138,80,127,96,192,75,3]},{"1078800":[16,14]},{"1078804":[60]},{"1078808":[255,255,255,127,175,204,80,127,41,255]},{"1078819":[240,29,169,7,40,143,144,199,126,169,10,40,143,146,199,126,169,11,40,143,148,199,126,169,12,40,143,150,199,126,107,169,127,36,143,144,199,126,143,146,199,126,143,148,199,126,143,150,199,126,175,144,129,48,208,1,107,169,7,40,143,146,199,126,175,126,80,127,41,2]},{"1078890":[240,93,175,145,129,48,41,255]},{"1078899":[208,27,169,8,40,143,148,199,126,169,9,40,143,150,199,126,169,127,36,143,152,199,126,143,154,199,126,128,28,169,10,40,143,148,199,126,169,11,40,143,150,199,126,169,12,40,143,152,199,126,169,127,36,143,154,199,126,143,156,199,126,143,158,199,126,143,160,199,126,143,162,199,126,143,164,199,126,175,146,129,48,208,1,107,128,77,175,126,80,127,41,1]},{"1078992":[24,105,4,40,143,148,199,126,175,130,80,127,143,150,199,126,175,128,80,127,143,152,199,126,169,6,40,143,154,199,126,175,134,80,127,143,156,199,126,175,132,80,127,143,158,199,126,169,6,40,143,160,199,126,175,138,80,127,143,162,199,126,175,136,80,127,143,164,199,126,165,26,41,31]},{"1079067":[208,3,32,234,243,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079097":[143,109,243,126,175,109,243,126,107,138,26,143,153,80,127,191,115,187,27,141,14,1,107,175,153,80,127,240,19,58,10,170,191]},{"1079131":[161,48,141,150,6,191,2,162,48,141,152,6,128,9,189,36,215,141,150,6,156,152,6,107,175,153,80,127,201,67,107,32,53,129,160,88,162,2,165,138,9,64,201,67,240,52,201,69,240,48,201,71,240,44,160,90,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079205":[243,126,41,64,240,2,162,2,165,138,240,12,162,2,175,197,243,126,201,2,176,2,162,3,175,202,243,126,240,28,162,15,165,138,201,64,240,16,162,13,201,67,240,10,201,69,240,6,201,71,240,2,162,9,175,202,243,126,24,42,42,42,207,74,128,48,240,8,175,87,243,126,208,2,162,4,173,50,1,201,242,208,7,236,48,1,208,2,162,243,92,137,131,2,194,32,169,65,38,141,112,67,162,62,169]},{"1079311":[255,157]},{"1079314":[27,157,64,27,157,128,27,157,192,27,157]},{"1079326":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079340":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079354":[169,128,133,155,162,4,175,202,243,126,24,42,42,42,207,74,128,48,240,6,175,87,243,126,240,32,162,9,165,138,201,64,176,24,162,2,201]},{"1079392":[208,12,175]},{"1079396":[243,126,41,64,208,10,162,5,128,6,201,24,208,2,162,7,142,44,1,165,138,201,64,208,4,162,15,128,19,201,67,240,8,201,69,240,4,201,71,208,22,169,9,141,45,1,162,13,175,87,243,126,15,74,128,48,208,2,162,4,142,44,1,165,17,141,12,1,100,17,100,176,156]},{"1079470":[2,156,16,7,107,165,138,201,67,240,28,201,64,176,12,162,7,165,138,201,24,240,16,165,138,240,12,162,2,175,197,243,126,201,2,176,2,162,3,175,202,243,126,240,58,162,9,165,138,201,112,208,20,175,240,242,126,41,32,208,12,169,1,205,49,1,240,3,141,45,1,128,26,201,67,240,7,169,5,141,45,1,128,15,175,122,243,126,201,127,240,2,162,13,169,9,141,45,1,175,202,243,126,24,42,42,42,207,74,128,48,240,8,175,87,243,126,208,2,162,4,107,173,10,4,201,24,208,2,165,27,107,201,64,240,12,201,66,240,8,201,80,240,4,201,81,208,8,175,122,243,126,201,127,240,5,169,241,141,44,1,107,34,151,189,164,34,58,135,1,194,16,166,160,191,244,251,160,226,16,34,156,135]},{"1079654":[120,249,160,121,249,160,6,250,160,147,250,160,32,251,160,138,251,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079690":[32,126,232,232,159]},{"1079696":[32,126,232,232,159]},{"1079702":[32,126,232,232,159]},{"1079708":[32,126,232,232,162,220,25,159]},{"1079717":[32,126,232,232,169,202,12,159]},{"1079726":[32,126,232,232,169,203,12,159]},{"1079735":[32,126,232,232,169,208,8,159]},{"1079744":[32,126,232,232,162,92,26,159]},{"1079753":[32,126,232,232,169,218,12,159]},{"1079762":[32,126,232,232,169,219,12,159]},{"1079771":[32,126,232,232,169,208,8,159]},{"1079780":[32,126,232,232,162,220,26,159]},{"1079789":[32,126,232,232,159]},{"1079795":[32,126,232,232,159]},{"1079801":[32,126,232,232,159]},{"1079807":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079831":[32,126,232,232,159]},{"1079837":[32,126,232,232,159]},{"1079843":[32,126,232,232,159]},{"1079849":[32,126,232,232,162,156,25,159]},{"1079858":[32,126,232,232,169,202,12,159]},{"1079867":[32,126,232,232,169,203,12,159]},{"1079876":[32,126,232,232,169,208,8,159]},{"1079885":[32,126,232,232,162,28,26,159]},{"1079894":[32,126,232,232,169,218,12,159]},{"1079903":[32,126,232,232,169,219,12,159]},{"1079912":[32,126,232,232,169,208,8,159]},{"1079921":[32,126,232,232,162,156,26,159]},{"1079930":[32,126,232,232,159]},{"1079936":[32,126,232,232,159]},{"1079942":[32,126,232,232,159]},{"1079948":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079972":[32,126,232,232,159]},{"1079978":[32,126,232,232,159]},{"1079984":[32,126,232,232,159]},{"1079990":[32,126,232,232,162,220,9,159]},{"1079999":[32,126,232,232,169,202,12,159]},{"1080008":[32,126,232,232,169,203,12,159]},{"1080017":[32,126,232,232,169,208,8,159]},{"1080026":[32,126,232,232,162,92,10,159]},{"1080035":[32,126,232,232,169,218,12,159]},{"1080044":[32,126,232,232,169,219,12,159]},{"1080053":[32,126,232,232,169,208,8,159]},{"1080062":[32,126,232,232,162,220,10,159]},{"1080071":[32,126,232,232,159]},{"1080077":[32,126,232,232,159]},{"1080083":[32,126,232,232,159]},{"1080089":[32,126,232,232,226,48,107,175,197,243,126,201,2,144,1,107,175,138,128,48,208,1,107,194,32,169,225,8,143,150,58,126,143,22,61,126,143,168,58,126,143,40,61,126,26,143,152,58,126,143,154,58,126,143,156,58,126,143,158,58,126,143,160,58,126,143,162,58,126,143,164,58,126,143,166,58,126,26,143,22,59,126,143,150,59,126,143,22,60,126,143,150,60,126,143,40,59,126,143,168,59,126,143,40,60,126,143,168,60,126,226,32,107,175,197,243,126,201,2,144,1,107,175,138,128,48,208,1,107,194,32,169,225,8,143,214,58,126,143,86,61,126,143,232,58,126,143,104,61,126,26,143,216,58,126,143,218,58,126,143,220,58,126,143,222,58,126,143,224,58,126,143,226,58,126,143,228,58,126,143,230,58,126,26,143,86,59,126,143,214,59,126,143,86,60,126,143,214,60,126,143,104,59,126,143,232,59,126,143,104,60,126,143,232,60,126,226,32,107]},{"1080322":[1]},{"1080404":[5]},{"1080406":[4]},{"1080434":[2]},{"1080530":[3]},{"1080628":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080645":[134,1,133,2,32,52,253,176,4,92,83,230]},{"1080658":[169,49,133,2,194,32,169]},{"1080666":[192,133]},{"1080669":[162,128,167]},{"1080673":[141,24,33,230]},{"1080678":[230]},{"1080680":[167]},{"1080682":[141,24,33,230]},{"1080687":[230]},{"1080689":[167]},{"1080691":[141,24,33,230]},{"1080696":[230]},{"1080698":[167]},{"1080700":[141,24,33,230]},{"1080705":[230]},{"1080707":[167]},{"1080709":[141,24,33,230]},{"1080714":[230]},{"1080716":[167]},{"1080718":[141,24,33,230]},{"1080723":[230]},{"1080725":[167]},{"1080727":[141,24,33,230]},{"1080732":[230]},{"1080734":[167]},{"1080736":[141,24,33,230]},{"1080741":[230]},{"1080743":[202,208,181,226,32,92,81,230]},{"1080752":[226,48,175,248,194,126,168,32,52,253,194,48,176,10,162]},{"1080769":[160,64]},{"1080772":[92,104,223]},{"1080776":[162]},{"1080778":[192,160]},{"1080782":[169]},{"1080784":[8,139,84,127,177,171,162]},{"1080792":[8,169]},{"1080795":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,180,222,160,72,8,175,67,244,126,208,51,194,32,175,46,244,126,26,143,46,244,126,208,9,175,48,244,126,26,143,48,244,126,165,16,201,14,1,208,20,175,68,244,126,26,143,68,244,126,208,9,175,70,244,126,26,143,70,244,126,226,32,40,104,107,72,218,90,11,175,68,80,127,240,42,8,226,48,169]},{"1081429":[143,68,80,127,175,69,80,127,240,10,169]},{"1081441":[143,69,80,127,34,147,193,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,180,168,160,40,175,67,244,126,41,255]},{"1081473":[208,20,175,62,244,126,26,143,62,244,126,208,9,175,64,244,126,26,143,64,244,126,92,208,128]},{"1083056":[127,32,127,32,80,40,86,168,82,40,91,40,91,40,92,40,127,32,2,60,3,60,127,32,127,32,136,44,137,44,127,32,167,32,169,32,127,32,113,40,127,32,127,32,139,40,143,40,171,36,172,36,143,104,139,104,127,32,127,32,127,32,127,32,127,32,127,32,84,40,113,40,88,40,127,32,127,32,93,40,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,78,48,88,40,127,32,127,32,93,40,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,94,48,89,40,91,168,91,168,92,168,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,94,48,84,104,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,80,168,86,40,80,232]},{"1083392":[226,40,169,255,24,105,255,201,100,216,240,10,194,32,169,255,1,27,92,39,128]},{"1083414":[226,48,169,128,141]},{"1083420":[33,169,3,141,5,33,156,6,33,169,1,141,11,33,156,13,33,156,13,33,169,1,141,44,33,169,255,141,14,33,141,14,33,156,46,33,156,47,33,169,48,141,48,33,156,49,33,169,224,141,50,33,156,51,33,156]},{"1083477":[66,194,16,156,22,33,169,12,141,7,33,141,23,33,169,128,141,21,33,162,1,24,142]},{"1083501":[67,162,64,224,142,2,67,169,56,141,4,67,162]},{"1083515":[8,142,5,67,169,1,141,11,66,162]},{"1083526":[128,142,2,67,169,55,141,4,67,162]},{"1083537":[128,142,5,67,169,1,141,11,66,162]},{"1083548":[128,142,2,67,169,56,141,4,67,162,64,96,142,5,67,169,1,141,11,66,156,33,33,162]},{"1083573":[34,142]},{"1083576":[67,162,64,232,142,2,67,169,56,141,4,67,162]},{"1083590":[2,142,5,67,169,1,141,11,66,169,15,141]},{"1083603":[33,219]},{"1089536":[226,32,165,138,201,71,240,8,191,148,253,15,92,114,136]},{"1089552":[191,79,154,164,92,114,136]},{"1113856":[169]},{"1113858":[162]},{"1113860":[159,37,192,126,159]},{"1113866":[80,127,232,224,16,144,243,162,16,159]},{"1113877":[80,127,232,224,255,144,247,162]},{"1113886":[191]},{"1113888":[32,112,223,192,255]},{"1113894":[208,7,232,224,21,144,241,128,32,194,48,169]},{"1113908":[159]},{"1113911":[112,232,224]},{"1113915":[32,144,246,226,48,162]},{"1113922":[191,192,255]},{"1113926":[159]},{"1113928":[32,112,232,224,21,144,243,169,1,141,13,66,169,16,133,188,169,129,141]},{"1113948":[66,107,34,93,225,160,92,99,212]},{"1114112":[141,240,28,140,241,28,34,47,241,6,144,107,34,170,244,7,176,101,165,246,16,97,189,16,15,208,92,165,77,201,2,240,86,34,166,234,6,218,187,191,163,225,5,250,197,47,208,71,90,173,240,28,172,241,28,165,160,201,5,240,6,201,28,240,24,128,42,194,32,175,122,129,48,15,20,244,126,143,20,244,126,226,32,34,157,237,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,174,237,160,169,64,157,16,15,104,73,3,56,107,189,224,13,24,107,90,72,34,47,241,6,144,56,34,170,244,7,176,50,165,246,16,46,189,16,15,208,41,165,77,201,2,240,35,34,166,234,6,218,187,191,163,225,5,250,197,47,208,20,104,235,104,90,168,235,34,25,226,5,169,64,157,16,15,104,73,3,56,107,122,104,189,224,13,24,107]},{"1146881":[1,159,6,37,40,43,34,32,34,39,26,37,159,32,26,38,30,159,44,45,26,31,31,7,35,60,79,60,58,76,75,64,77,60,159,71,73,70,59,76,58,60,73,8,31,100,101,110,107,111,100,101,159,117,93,105,93,113,95,100,101,8,31,138,139,148,145,149,138,139,159,155,131,143,131,151,133,138,139,12,15,41,43,40,29,46,28,30,43,8,31,111,100,101,99,97,110,113,159,105,101,117,93,105,107,112,107,8,31,149,138,139,137,135,148,151,159,143,139,155,131,143,145,150,145,12,15,3,8,17,4,2,19,14,17,9,27,112,93,103,93,111,100,101,159,112,97,118,113,103,93,9,27,150,131,141,131,149,138,139,159,150,135,156,151,141,131,9,25,74,58,73,64,71,75,159,78,73,64,75,60,73,9,27,103,97,106,111,113,103,97,159,112,93,106,93,94,97,9,27,141,135,144,149,151,141,135,159,150,131,144,131,132,135,6,37,26,44,44,34,44,45,26,39,45,159,29,34,43,30,28,45,40,43,44,7,33,117,93,111,113,100,101,111,93,159,117,93,105,93,105,113,110,93,7,33,155,131,149,151,138,139,149,131,159,155,131,143,131,143,151,148,131,9,25,117,107,101,95,100,101,159,117,93,105,93,96,93,9,25,155,145,139,133,138,139,159,155,131,143,131,134,131,3,49,74,58,73,60,60,69,159,62,73,56,71,63,64,58,74,159,59,60,74,64,62,69,60,73,74,8,31,40,27,35,30,28,45,159,29,30,44,34,32,39,30,43,44,8,29,111,107,101,95,100,101,110,107,159,112,107,105,101,112,93,8,29,149,145,139,133,138,139,148,145,159,150,145,143,139,150,131,9,27,112,93,103,93,117,93,159,101,105,93,105,113,110,93,9,27,150,131,141,131,155,131,159,139,143,131,143,151,148,131,5,41,27,26,28,36,159,32,43,40,46,39,29,159,29,30,44,34,32,39,30,43,44,8,29,105,93,111,93,106,93,107,159,93,110,101,105,107,112,107,8,29,143,131,149,131,144,131,145,159,131,148,139,143,145,150,145,7,33,112,111,113,117,107,111,100,101,159,115,93,112,93,106,93,94,97,7,33,150,149,151,155,145,149,138,139,159,153,131,150,131,144,131,132,135,8,31,15,17,14,6,17]},{"1147398":[12,159,3,8,17,4,2,19,14,17,8,31,112,107,111,100,101,100,101,103,107,159,106,93,103,93,99,107,8,31,150,145,149,138,139,138,139,141,145,159,144,131,141,131,137,145,8,29,68,56,64,69,159,71,73,70,62,73,56,68,68,60,73,8,31,117,93,111,113,106,93,110,101,159,111,107,97,102,101,105,93,8,31,155,131,149,151,144,131,148,139,159,149,145,135,140,139,143,131,7,33,70,57,65,60,58,75,159,71,73,70,62,73,56,68,68,60,73,9,27,103,93,118,113,93,103,101,159,105,107,110,101,112,93,9,27,141,131,156,151,131,141,139,159,143,145,148,139,150,131,10,21,41,43,40,32,43,26,38,38,30,43,44,8,31,112,93,112,111,113,107,159,106,101,111,100,101,117,93,105,93,8,31,150,131,150,149,151,145,159,144,139,149,138,139,155,131,143,131,8,29,117,113,101,95,100,101,159,117,93,105,93,105,107,112,107,8,29,155,151,139,133,138,139,159,155,131,143,131,143,145,150,145,8,31,117,107,111,100,101,100,101,110,107,159,106,107,105,107,112,107,8,31,155,145,149,138,139,138,139,148,145,159,144,145,143,145,150,145,11,17,97,101,102,101,159,106,107,112,107,11,17,135,139,140,139,159,144,145,150,145,8,29,111,93,112,107,110,113,159,112,93,103,93,100,93,112,93,8,29,149,131,150,145,148,151,159,150,131,141,131,138,131,150,131,9,27,112,107,111,100,101,107,159,101,115,93,115,93,103,101,9,27,150,145,149,138,139,145,159,139,153,131,153,131,141,139,6,37,111,100,101,99,97,100,101,110,107,159,103,93,111,93,105,93,112,111,113,6,37,149,138,139,137,135,138,139,148,145,159,141,131,149,131,143,131,150,149,151,8,31,117,93,111,113,106,93,110,101,159,106,101,111,100,101,96,93,8,31,155,131,149,151,144,131,148,139,159,144,139,149,138,139,134,131,9,27,18,14,20,13,3,159,2,14,12,15,14,18,4,17,11,19,103,107,102,101,159,103,107,106,96,107,11,19,141,145,140,139,159,141,145,144,134,145,10,23,58,70,70,73,59,64,69,56,75,70,73,74,11,19,103,97,101,118,107,159,103,93,112,107,11,19,141,135,139,156,145,159,141,131,150,145,9,25,112,93,103,93,107,159,111,100,101,105,101,118,113,9,25,150,131,141,131,145,159,149,138,139,143,139,156,151,8,31,41,43,34,39,45,30,29,159,26,43,45,159,48,40,43,36,9,25,117,107,101,95,100,101,159,103,107,112,93,94,97,9,25,155,145,139,133,138,139,159,141,145,150,131,132,135,10,23,100,101,96,97,103,101,159,98,113,102,101,101,10,23,138,139,134,135,141,139,159,136,151,140,139,139,8,31,117,107,111,100,101,93,103,101,159,103,107,101,118,113,105,101,8,31,155,145,149,138,139,131,141,139,159,141,145,139,156,151,143,139,9,27,117,93,111,113,100,101,110,107,159,111,93,103,93,101,9,27,155,131,149,151,138,139,148,145,159,149,131,141,131,139,8,29,112,107,105,107,93,103,101,159,103,113,110,107,113,105,97,8,29,150,145,143,145,131,141,139,159,141,151,148,145,151,143,135,7,33,18,15,4,2,8]},{"1148127":[11,159,19,7]},{"1148132":[13,10,18,159,19,14,9,25,106,107,94,113,107,159,107,103,93,102,101,105,93,9,25,144,145,132,151,145,159,145,141,131,140,139,143,131,7,33,117,93,111,113,106,107,110,101,159,112,93,103,97,112,93,106,101,7,33,155,131,149,151,144,145,148,139,159,150,131,141,135,150,131,144,139,10,23,103,101,117,107,111,100,101,159,103,107,96,93,10,23,141,139,155,145,149,138,139,159,141,145,134,131,7,35,112,93,103,93,105,101,112,111,113,159,103,113,118,113,100,93,110,93,7,35,150,131,141,131,143,139,150,149,151,159,141,151,156,151,138,131,148,131,9,27,100,101,110,107,106,107,94,113,159,103,93,103,113,101,9,27,138,139,148,145,144,145,132,151,159,141,131,141,151,139,7,33,111,100,101,99,97,103,101,159,117,93,105,93,111,100,101,110,107,7,33,149,138,139,137,135,141,139,159,155,131,143,131,149,138,139,148,145,4,45,17]},{"1148348":[13,3,14,12,8,25,4,17,159,2,14,13,19,17,8,1,20,19,14,17,18,8,29,34,45,30,38,159,43,26,39,29,40,38,34,51,30,43,2,55,103,93,112,96,97,114,111,99,93,105,97,111,159,159,159,159,159,159,159,159,159,114,97,97,112,107,110,108,2,55,141,131,150,134,135,152,149,137,131,143,135,149,159,159,159,159,159,159,159,159,159,152,135,135,150,145,148,146,2,55,95,100,110,101,111,112,107,111,107,115,97,106,159,159,159,159,159,159,159,96,97,111,111,117,110,97,109,112,2,55,133,138,148,139,149,150,145,149,145,153,135,144,159,159,159,159,159,159,159,134,135,149,149,155,148,135,147,150,10,21,111,105,93,104,104,100,93,95,103,97,110,10,21,149,143,131,142,142,138,131,133,141,135,148,6,37,60,69,75,73,56,69,58,60,159,73,56,69,59,70,68,64,81,60,73,2,55,93,105,93,118,101,106,99,93,105,108,100,93,110,107,111,159,159,159,104,104,95,107,107,104,96,93,114,97,2,55,131,143,131,156,139,144,137,131,143,146,138,131,148,145,149,159,159,159,142,142,133,145,145,142,134,131,152,135,9,25,103,97,114,101,106,95,93,112,100,95,93,110,112,9,25,141,135,152,139,144,133,131,150,138,133,131,148,150,8,31,30,39,30,38,50,159,43,26,39,29,40,38,34,51,30,43,2,55,118,93,110,94,117,91,92,159,159,159,159,159,159,159,159,159,159,159,159,159,159,111,107,111,113,103,97,86,2,55,156,131,148,132,155,129,130,159,159,159,159,159,159,159,159,159,159,159,159,159,159,149,145,149,151,141,135,124,10,23,97,106,96,97,110,107,98,99,93,105,97,111,10,23,135,144,134,135,148,145,136,137,131,143,135,149,7,35,74,71,73,64,75,60,159,59,60,77,60,67,70,71,68,60,69,75,2,55,105,101,103,97,112,110,97,112,100,97,115,97,117,159,159,159,159,159,159,159,159,159,101,94,93,118,104,117,2,55,143,139,141,135,150,148,135,150,138,135,153,135,155,159,159,159,159,159,159,159,159,159,139,132,131,156,142,155,2,55,98,101,111,100,166,115,93,98,98,104,97,89,87,159,159,159,98,93,112,105,93,106,111,108,93,106,96,93,2,55,136,139,149,138,198,153,131,136,136,142,135,127,125,159,159,159,136,131,150,143,131,144,149,146,131,144,134,131,2,55,103,110,97,104,94,97,104,159,159,159,159,159,159,159,159,159,159,159,159,159,159,112,115,110,107,116,93,111,2,55,141,148,135,142,132,135,142,159,159,159,159,159,159,159,159,159,159,159,159,159,159,150,153,148,145,154,131,149,14,7,99,104,93,106,14,7,137,142,131,144,9,27,18,15,4,2,8]},{"1148969":[11,159,19,7]},{"1148974":[13,10,18,2,55,111,113,108,97,110,111,103,113,102,159,159,159,159,159,159,159,159,159,159,97,114,101,104,93,111,100,85,88,2,55,149,151,146,135,148,149,141,151,140,159,159,159,159,159,159,159,159,159,159,135,152,139,142,131,149,138,123,126,2,55,105,117,110,93,105,107,106,99,159,159,159,159,159,159,159,159,159,159,159,159,159,102,107,111,100,110,112,93,2,55,143,155,148,131,143,145,144,137,159,159,159,159,159,159,159,159,159,159,159,159,159,140,145,149,138,148,150,131,2,55,115,93,104,103,101,106,99,97,117,97,159,159,159,159,159,105,93,112,100,107,106,106,93,108,103,101,106,111,2,55,153,131,142,141,139,144,137,135,155,135,159,159,159,159,159,143,131,150,138,145,144,144,131,146,141,139,144,149,9,25,111,93,103,113,110,93,112,111,113,94,93,111,93,9,25,149,131,141,151,148,131,150,149,151,132,131,149,131,13,11,93,106,96,160,160,160,13,11,131,144,134,192,192,192,1,59,112,100,97,159,93,104,112,112,108,159,110,93,106,96,107,105,101,118,97,110,159,95,107,105,105,113,106,101,112,117,1,59,150,138,135,159,131,142,150,150,146,159,148,131,144,134,145,143,139,156,135,148,159,133,145,143,143,151,144,139,150,155,7,33,58,70,68,68,76,69,64,75,80,159,59,64,74,58,70,73,59,3,51,100,112,112,108,111,163,162,162,96,101,111,95,107,110,96,160,99,99,162,112,95,95,89,117,87,85,3,51,138,150,150,146,149,195,194,194,134,139,149,133,145,148,134,192,137,137,194,150,133,133,127,155,125,123,6,37,45,33,30,159,34,38,41,40,43,45,26,39,45,159,44,45,46,31,31,11,19,75,64,68,60,159,61,70,76,69,59,2,21,98,101,110,111,112,159,111,115,107,110,96,2,21,136,139,148,149,150,159,149,153,145,148,134,2,25,108,97,99,93,111,113,111,159,94,107,107,112,111,2,25,146,135,137,131,149,151,149,159,132,145,145,150,149,2,9,98,104,113,112,97,2,9,136,142,151,150,135,2,11,105,101,110,110,107,110,2,11,143,139,148,148,145,148,11,19,27,40,44,44,159,36,34,37,37,44,2,55,111,115,107,110,96,104,97,111,111,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,149,153,145,148,134,142,135,149,149,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,98,101,99,100,112,97,110,119,111,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,136,139,137,138,150,135,148,157,149,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,105,93,111,112,97,110,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,143,131,149,150,135,148,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,112,97,105,108,97,110,97,96,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,150,135,143,146,135,148,135,134,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,99,107,104,96,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,137,145,142,134,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,11,19,6]},{"1149777":[12,4,159,18,19]},{"1149783":[19,18,2,55,99,112,159,94,101,99,159,103,97,117,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,85,85,2,55,137,150,159,132,139,137,159,141,135,155,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,123,123,2,9,94,107,106,103,111,2,9,132,145,144,141,149,2,27,111,93,114,97,159,93,106,96,159,109,113,101,112,111,2,27,149,131,152,135,159,131,144,134,159,147,151,139,150,149,2,11,96,97,93,112,100,111,2,11,134,135,131,150,138,149,2,29,98,93,97,110,101,97,159,110,97,114,101,114,93,104,111,2,29,136,131,135,148,139,135,159,148,135,152,139,152,131,142,149,2,29,112,107,112,93,104,159,105,97,106,113,159,112,101,105,97,2,29,150,145,150,131,142,159,143,135,144,151,159,150,139,143,135,2,27,112,107,112,93,104,159,104,93,99,159,112,101,105,97,2,27,150,145,150,131,142,159,142,131,137,159,150,139,143,135,2,55,95,107,104,104,97,95,112,101,107,106,159,110,93,112,97,159,159,159,159,159,159,159,159,159,162,85,84,89,2,55,133,145,142,142,135,133,150,139,145,144,159,148,131,150,135,159,159,159,159,159,159,159,159,159,194,123,122,127,2,19,112,107,112,93,104,159,112,101,105,97,2,19,150,145,150,131,142,159,150,139,143,135,255]},{"1150093":[128,3,128,139,140,139,140]},{"1150101":[128,24,128,139,140,139,140,44,128,62,128,139,140,139,140]},{"1150117":[128,80,128,139,140,139,140,90,128,108,128,139,140,139,140,126,128,139,140,139,140,136,128,152,128,139,140,139,140,168,128,139,140,139,140,183,128,199,128,139,140,139,140]},{"1150161":[128,215,128,139,140,139,140,236,128,255,128,139,140,18,129,33,129,139,140,139,140,48,129,139,140,139,140]},{"1150189":[128]},{"1150191":[128,75,129,139,140,139,140,93,129,110,129,139,140,127,129,143,129,139,140,139,140]},{"1150213":[128,159,129,139,140,139,140,182,129,199,129,139,140,216,129,235,129,139,140,139,140,254,129,139,140,139,140,16,130,34,130,139,140,139,140,52,130,139,140,139,140,69,130,87,130,139,140,139,140,105,130,139,140,139,140,124,130,140,130,139,140,139,140]},{"1150277":[128,156,130,139,140,139,140,169,130,187,130,139,140,205,130,222,130,139,140,239,130,1,131,139,140,19,131,30,131,139,140,41,131,58,131,139,140,75,131,91,131,139,140,107,131,128,131,139,140,149,131,167,131,139,140,139,140,185,131,139,140,139,140,201,131,213,131,139,140,139,140,225,131,139,140,139,140,239,131,251,131,139,140,7,132,22,132,139,140,139,140]},{"1150369":[128,37,132,139,140,139,140,55,132,70,132,139,140,85,132,99,132,139,140,113,132,131,132,139,140,149,132,165,132,139,140,181,132,198,132,139,140,139,140,215,132,139,140,139,140,234,132,249,132,139,140,8,133,27,133,139,140,46,133,60,133,139,140,74,133,94,133,139,140,114,133,130,133,139,140,146,133,165,133,139,140]},{"1150451":[128]},{"1150453":[128]},{"1150455":[128]},{"1150457":[128]},{"1150459":[128]},{"1150461":[128]},{"1150463":[128]},{"1150465":[128]},{"1150467":[128]},{"1150469":[128]},{"1150471":[128]},{"1150473":[128]},{"1150475":[128]},{"1150477":[128]},{"1150479":[128]},{"1150481":[128]},{"1150483":[128]},{"1150485":[128]},{"1150487":[128]},{"1150489":[128,184,133,139,140,139,140]},{"1150497":[128]},{"1150499":[128,209,133,139,140,139,140,226,133]},{"1150509":[134,139,140,30,134,60,134,139,140,90,134,103,134,139,140,139,140,116,134,139,140,139,140,137,134,167,134,139,140,197,134,212,134,139,140,139,140]},{"1150547":[128,227,134,139,140,139,140,245,134,19,135,139,140,49,135,63,135,139,140,139,140,77,135,139,140,139,140,97,135,127,135,139,140,157,135,187,135,139,140,217,135,247,135,139,140,21,136,27,136,139,140,139,140,33,136,139,140,139,140,49,136,79,136,139,140,109,136,139,136,139,140,169,136,199,136,139,140,229,136,244,136,139,140,3,137,11,137,139,140,19,137,51,137,139,140,139,140,83,137,139,140,139,140,102,137,130,137,139,140]},{"1150657":[128]},{"1150659":[128]},{"1150661":[128]},{"1150663":[128]},{"1150665":[128]},{"1150667":[128]},{"1150669":[128]},{"1150671":[128]},{"1150673":[128]},{"1150675":[128]},{"1150677":[128]},{"1150679":[128]},{"1150681":[128]},{"1150683":[128]},{"1150685":[128]},{"1150687":[128]},{"1150689":[128]},{"1150691":[128]},{"1150693":[128]},{"1150695":[128]},{"1150697":[128,158,137,139,140,139,140]},{"1150705":[128,179,137,139,140,139,140,191,137,204,137,139,140,217,137,232,137,139,140,247,137,254,137,139,140,5,138,13,138,139,140,139,140]},{"1150739":[128,21,138,139,140,139,140,33,138,63,138,139,140,93,138,123,138,139,140,153,138,183,138,139,140,213,138,243,138,139,140,17,139,47,139,139,140,139,140,77,139,139,140,139,140,89,139,119,139,139,140,149,139,156,139,139,140,163,139,179,139,139,140,195,139,203,139,139,140,211,139,228,139,139,140,245,139,6,140,139,140,23,140,39,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140,139,140]},{"1150843":[128]},{"1150845":[128]},{"1150847":[128]},{"1150849":[128]},{"1150851":[128,55,140,85,140,139,140,115,140,127,140,139,140]},{"1150865":[128]},{"1150867":[128]},{"1150869":[128]},{"1150871":[128]},{"1150873":[128]},{"1150875":[128]},{"1150884":[56]},{"1150886":[239,16,129,126,239,16]},{"1150902":[192]},{"1150904":[71,128,69,130]},{"1150916":[120]},{"1150918":[76,48,118,8,126]},{"1150932":[120]},{"1150934":[78,48,114,12,255]},{"1150948":[127]},{"1150950":[89,38,222,33,3,252]},{"1150964":[248]},{"1150966":[108,144,119,136,185,70]},{"1150980":[14]},{"1150982":[202,4,123,132,97,158]},{"1150996":[28]},{"1150998":[20,8,23,8,16,15]},{"1151012":[56]},{"1151014":[111,16,109,18,238,17]},{"1151028":[56]},{"1151030":[239,16,128,127,247,8]},{"1151044":[14]},{"1151046":[26,4,54,8,108,16]},{"1151058":[7]},{"1151060":[197,2,69,130,125,130,96,159]},{"1151078":[126]},{"1151080":[67,60,125,2]},{"1151092":[224]},{"1151094":[160,64,191,64,17,238]},{"1151106":[56]},{"1151108":[40,16,239,16,1,254,223,32]},{"1151124":[56]},{"1151126":[40,16,40,16,104,16,109,18,193,62,172,83,106,149,102,153,110,145,157,98,247]},{"1151148":[70,129,66,129,66,129,66,129,123,128,104,144,152,96,240]},{"1151164":[195,60,61,194,253,2,13,2,27,4,118,8,76,48,120]},{"1151180":[1,254,251,4,54,8,100,24,214,40,187,68,104,135,207]},{"1151196":[223,32,193,62,158,97,94,161,94,161,94,161,153,102,255]},{"1151212":[166,89,30,225,222,33,217,38,95,32,110,16,40,16,56]},{"1151228":[90,165,58,197,58,197,106,149,241,14,59,4,38,24,60]},{"1151244":[23,8,22,8,246,8,131,124,116,139,119,136,140,112,248]},{"1151260":[6,249,218,37,219,36,219,36,186,68,186,68,102,152,252]},{"1151276":[128,127,251,4,195,60,189,66,191,64,190,64,194,60,126]},{"1151292":[216,32,176,64,176,64,216,32,108,16,54,8,26,4,14]},{"1151308":[125,130,69,130,69,130,69,130,69,130,125,130,179,76,254]},{"1151324":[11,4,14]},{"1151332":[227]},{"1151334":[190,65,193,62,127]},{"1151340":[174,81,154,97,178,65,34,193,166,65,189,66,179,76,254]},{"1151356":[191,64,140,115,99,156,215,40,183,72,191,64,192,63,127]},{"1151372":[88,32,216,32,175,80,150,105,182,73,118,137,89,134,207]},{"1151396":[112]},{"1151398":[88,32,239,16]},{"1151403":[255]},{"1151412":[224]},{"1151414":[160,64,160,64,160,64]},{"1151426":[14]},{"1151428":[10,4,10,4,251,4]},{"1151435":[255]},{"1151444":[14]},{"1151446":[234,4,187,68,187,68]},{"1151460":[255]},{"1151462":[129,126,251,4,246,8]},{"1151472":[15]},{"1151474":[26,5,58,5,47,16,45,18,238,17]},{"1151488":[15]},{"1151490":[10,5,58,5,239,16,128,127,247,8]},{"1151504":[15]},{"1151506":[10,5,10,5,31]},{"1151512":[54,8,108,16]},{"1151524":[248]},{"1151526":[216,32,223,32,1,254]},{"1151540":[56]},{"1151542":[40,16,239,16]},{"1151547":[255]},{"1151560":[254]},{"1151562":[3,252]},{"1151574":[31]},{"1151576":[240,15,13,242]},{"1151588":[112]},{"1151590":[80,32,80,32,95,32]},{"1151600":[15]},{"1151602":[10,5,202,5,77,130,125,130,96,159]},{"1151616":[15]},{"1151618":[10,5,10,5,127]},{"1151624":[67,60,125,2]},{"1151632":[15]},{"1151634":[10,5,122,5,95,32,239,16]},{"1151643":[255,247,8,250,4,131,124,125,130,127,128,126,128,130,124,254]},{"1151660":[160,64,160,64,163,64,162,65,166,65,189,66,195,60,126]},{"1151676":[251,4,98,28,90,36,90,36,98,28,122,4,70,56,124]},{"1151692":[176,79,11,244,186,68,178,76,190,64,191,64,193,62,127]},{"1151708":[207,48]},{"1151711":[255,247,8,108,16,108,16,111,16,49,14,31]},{"1151724":[6,249,218,37,219,36,219,36,186,68,186,68,102,152,252]},{"1151740":[128,127,251,4,195,60,189,66,191,64,191,64,194,60,126]},{"1151756":[216,32,176,64,176,64,216,32,108,16,54,8,26,4,14]},{"1151772":[223,32,223,32,176,79,191,64,183,72,111,144,112,143,223]},{"1151788":[239,16,223,32,193,62,190,65,254,1,125,2,67,60,126]},{"1151804":[253,2,62,1,30,1,30,1,62,1,125,2,67,60,126]},{"1151820":[251,4,118,8,108,16,108,16,108,16,55,8,25,6,15]},{"1151836":[89,38,71,56,220,32,176,64,96,128,127,128,129,126,255]},{"1151852":[125,130,69,130,69,130,69,130,69,130,125,130,179,76,254]},{"1151868":[59,4,14]},{"1151876":[227]},{"1151878":[190,65,193,62,127]},{"1151884":[247,8,250,4,131,124,125,130,127,128,126,128,130,124,254]},{"1151908":[119]},{"1151910":[93,34,222,33,7,248]},{"1151924":[192]},{"1151926":[95,128,112,143,111,144]},{"1151940":[238]},{"1151942":[186,68,186,68,163,92]},{"1151956":[224]},{"1151958":[160,64,176,64,31,224]},{"1151974":[126]},{"1151976":[195,60,173,82]},{"1151984":[15]},{"1151986":[10,5,234,5,175,64,160,64,160,64]},{"1152000":[15]},{"1152002":[10,5,10,5,15]},{"1152008":[251,4]},{"1152011":[255]},{"1152016":[15]},{"1152018":[10,5,10,5,239]},{"1152024":[187,68,187,68]},{"1152036":[206]},{"1152038":[74,132,123,132,64,191]},{"1152052":[248]},{"1152054":[14,240,218,36,187,68]},{"1152068":[120]},{"1152070":[78,48,114,12,118,8]},{"1152086":[24]},{"1152088":[44,16,68,56]},{"1152100":[255]},{"1152102":[64,191,123,132,123,132]},{"1152112":[15]},{"1152114":[10,5,250,5,129,126,251,4,247,8]},{"1152128":[15]},{"1152130":[10,5,122,5,95,32,223,32,1,254]},{"1152144":[15]},{"1152146":[26,5,58,5,47,16,239,16]},{"1152155":[255,223,32,187,68,187,68,97,158,218,37,91,36,102,24,60]},{"1152172":[120,128,96,128,96,128,120,128,111,144,112,143,223]},{"1152188":[153,102,186,69,86,169,86,169,104,151,102,153,153,102,255]},{"1152204":[177,78,174,81,158,97,190,65,50,205,173,82,178,77,255]},{"1152220":[174,81,110,145,110,145,110,145,94,161,189,66,242,12,28]},{"1152236":[160,64,160,64,163,64,162,65,166,65,189,66,195,60,126]},{"1152252":[251,4,98,28,90,36,90,36,98,28,122,4,70,56,124]},{"1152268":[176,79,11,244,186,68,178,76,190,64,191,64,193,62,127]},{"1152284":[123,132,122,132,122,132,99,156,89,166,90,165,167,88,252]},{"1152300":[185,70,122,133,123,132,122,132,122,132,182,72,204,48,120]},{"1152316":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1152332":[214,40,186,68,59,196,109,130,197,2,6,1,2,1,3]},{"1152348":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1152364":[207,48]},{"1152367":[255,247,8,111,16,110,16,111,16,49,14,31]},{"1152380":[223,32,223,32,176,79,191,64,183,72,111,144,112,143,223]},{"1152396":[239,16,223,32,193,62,190,65,254,1,125,2,67,60,126]},{"1152420":[28]},{"1152422":[20,8,247,8,1,254]},{"1152436":[254]},{"1152438":[134,120,246,8,55,8]},{"1152452":[112]},{"1152454":[223,32,221,34,6,249]},{"1152468":[238]},{"1152470":[186,68,186,68,163,92]},{"1152484":[56]},{"1152486":[44,16,238,16,2,252]},{"1152496":[15]},{"1152498":[10,5,10,5,15]},{"1152504":[255]},{"1152506":[3,252]},{"1152512":[15]},{"1152514":[10,5,10,5,31]},{"1152520":[240,15,13,242]},{"1152528":[15]},{"1152530":[10,5,122,5,95,32,94,32,95,32]},{"1152548":[56]},{"1152550":[46,16,242,12,190,64]},{"1152564":[206]},{"1152566":[122,132,122,132,122,132]},{"1152580":[255]},{"1152582":[129,126,251,4,54,8]},{"1152596":[224]},{"1152598":[160,64,191,64,25,230]},{"1152612":[255]},{"1152614":[129,126,251,4,118,8]},{"1152624":[15]},{"1152626":[10,5,234,5,127,128,123,132,64,191]},{"1152640":[15]},{"1152642":[10,5,250,5,15,240,219,36,187,68]},{"1152656":[15]},{"1152658":[122,5,122,5,79,48,115,12,119,8,247,8,129,126,247,8,134,120,115,140,117,138,143,112,254]},{"1152684":[53,10,237,18,133,122,105,150,108,147,93,162,187,68,238]},{"1152700":[222,33,159,96,95,160,95,160,30,225,222,33,97,30,63]},{"1152716":[153,102,186,69,90,165,86,169,102,153,110,145,157,98,255]},{"1152732":[238,16,238,16,3,252,222,33,222,33,222,33,97,30,63]},{"1152748":[253,2,6,1,6,1,6,1,6,1,125,2,67,60,126]},{"1152764":[251,4,54,8,44,16,44,16,44,16,55,8,25,6,15]},{"1152780":[89,38,71,56,220,32,176,64,112,128,127,128,129,126,255]},{"1152796":[191,64,177,78,174,81,158,97,190,65,253,2,67,60,126]},{"1152812":[122,132,58,196,122,132,250,4,118,8,118,8,76,48,120]},{"1152828":[110,16,195,60,189,66,254,1,206,49,181,74,195,60,126]},{"1152844":[181,74,173,82,157,98,189,66,61,194,188,67,189,66,231]},{"1152860":[110,16,195,60,189,66,230,1,6,1,61,2,35,28,62]},{"1152876":[123,132,123,132,123,132,99,156,89,166,90,165,167,88,252]},{"1152892":[185,70,122,133,123,132,123,132,123,132,182,72,204,48,120]},{"1152908":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1152928":[15]},{"1152930":[10,5,10,5,63]},{"1152936":[108,16,68,56]},{"1152944":[15]},{"1152946":[10,5,250,5,64,191,123,132,123,132]},{"1152960":[15]},{"1152962":[8,7,202,5,124,131,123,132,64,191]},{"1152976":[15]},{"1152978":[8,7,250,5,12,243,219,36,187,68]},{"1152992":[15]},{"1152994":[8,7,122,5,76,51,115,12,55,8]},{"1153008":[15]},{"1153010":[8,7,10,5,60,3,111,16,70,56]},{"1153024":[15]},{"1153026":[8,7,250,5,64,191,123,132,123,132]},{"1153048":[252]},{"1153050":[182,72]},{"1153064":[28]},{"1153066":[246,8]},{"1153080":[28]},{"1153082":[23,8]},{"1153098":[126]},{"1153112":[112]},{"1153114":[220,32]},{"1153130":[220]},{"1153144":[240]},{"1153146":[152,96]},{"1153158":[112]},{"1153160":[92,32,100,24]},{"1153176":[124]},{"1153178":[214,40,214,40,186,68,59,196,109,130,197,2,2,1,2,1,3]},{"1153196":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153212":[123,132,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153228":[185,70,122,133,123,132,123,132,123,132,182,72,204,48,120]},{"1153244":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1153260":[214,40,186,68,59,196,125,130,205,2,6,1,2,1,3]},{"1153276":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153292":[163,92,21,234,189,66,218,36,94,32,104,16,56]},{"1153308":[99,156,85,170,53,202,101,154,243,12,46,16,56]},{"1153324":[17,14,247,8,135,120,115,140,117,138,143,112,248]},{"1153340":[195,60,61,194,253,2,29,2,59,4,38,24,60]},{"1153356":[132,120,220,32,134,120,90,164,82,172,106,148,150,104,252]},{"1153372":[118,136,122,132,122,132,122,132,126,128,188,64,200,48,120]},{"1153388":[236,16,198,56,58,196,250,4,250,4,230,24,156,96,112]},{"1153404":[254]},{"1153406":[98,156,154,100,246,8,238,16,215,40,57,198,239]},{"1153420":[10,244,222,32,195,60,157,98,93,162,93,162,147,108,254]},{"1153444":[255]},{"1153447":[255,254,1,62,1]},{"1153458":[3]},{"1153460":[6,1,13,2,27,4,118,8]},{"1153474":[28]},{"1153476":[20,8,247,8]},{"1153481":[255,126,129]},{"1153492":[255]},{"1153494":[1,254,239,16,40,16]},{"1153506":[14]},{"1153508":[10,4,10,4,251,4]},{"1153515":[255]},{"1153522":[56]},{"1153524":[40,16,40,16,239,16]},{"1153531":[255]},{"1153542":[254]},{"1153544":[130,124,250,4]},{"1153558":[255]},{"1153561":[255,254,1]},{"1153570":[28]},{"1153572":[20,8,20,8,247,8]},{"1153579":[255]},{"1153586":[56]},{"1153588":[40,16,40,16,239,16,1,254]},{"1153602":[56]},{"1153604":[40,16,111,16,64,63,222,33]},{"1153618":[224]},{"1153620":[160,64,191,64,128,127,187,68]},{"1153638":[255]},{"1153641":[255,254,1]},{"1153652":[255]},{"1153655":[255,126,129,66,129]},{"1153668":[255]},{"1153671":[255,254,1,2,1]},{"1153684":[224]},{"1153686":[48,192,208,32,115]},{"1153692":[45,18,43,20,46,16,108,16,88,32,208,32,176,64,224]},{"1153708":[202,52,58,196,234,4,10,4,10,4,10,4,10,4,14]},{"1153724":[126,129,70,129,198,1,5,2,13,2,59,4,38,24,60]},{"1153740":[40,16,40,16,40,16,40,16,40,16,239,16,1,254,255]},{"1153756":[251,4,18,12,50,12,42,20,218,36,58,196,234,4,14]},{"1153772":[238,17,45,18,43,20,46,16,40,16,40,16,40,16,56]},{"1153788":[26,4,26,4,26,4,26,4,26,4,251,4]},{"1153801":[255,255]},{"1153804":[6,1,254,1,128,127,254,1,6,1,254,1]},{"1153817":[255,255]},{"1153820":[238,17,110,17,110,17,94,33,222,33,189,66,105,134,207]},{"1153836":[239,16,239,16]},{"1153841":[255,247,8,20,8,20,8,20,8,28]},{"1153852":[190,65,102,129,197,2,13,2,59,4,230,24,156,96,120]},{"1153868":[122,132,74,132,202,4,26,4,22,8,116,8,76,48,120]},{"1153884":[2,1,2,1,2,1,2,1,2,1,254,1]},{"1153897":[255,255]},{"1153900":[66,129,194,1,6,1,5,2,13,2,59,4,38,24,60]},{"1153916":[254,1,128,127,126,1,5,2,13,2,123,4,70,56,124]},{"1153932":[2,1,2,1,6,1,13,2,25,6,243,12,14,240,248]},{"1153954":[119]},{"1153956":[93,34,93,34,221,34]},{"1153963":[255]},{"1153972":[224]},{"1153974":[48,192,208,32,243]},{"1153988":[255]},{"1153990":[1,254,253,2,13,2]},{"1154004":[112]},{"1154006":[80,32,80,32,223,32]},{"1154022":[195]},{"1154024":[98,129,162,65]},{"1154032":[15]},{"1154034":[10,5,26,5,23,8,247,8]},{"1154043":[255]},{"1154048":[15]},{"1154050":[58,5,42,21,47,16,239,16,1,254]},{"1154064":[15]},{"1154066":[58,5,42,21,111,16,64,63,222,33]},{"1154082":[56]},{"1154084":[40,16,111,16,64,63,222,33]},{"1154100":[15]},{"1154102":[249,6,135,120,247,8]},{"1154116":[251]},{"1154118":[110,145,110,145,182,73]},{"1154132":[255]},{"1154134":[129,126,255]},{"1154138":[255]},{"1154146":[56]},{"1154148":[40,16,40,16,40,16,40,16]},{"1154160":[15]},{"1154162":[234,5,186,69,191,64,128,127,187,68]},{"1154176":[15]},{"1154178":[10,5,10,5,255]},{"1154185":[255,254,1]},{"1154192":[15]},{"1154194":[122,5,90,37,93,34,221,34]},{"1154203":[255,221,34,93,34,93,34,125,2,61,2,59,4,38,24,60]},{"1154220":[54,193,214,33,253,2,29,2,251,4,230,24,28,224,248]},{"1154236":[11,4,26,4,22,8,51,12,109,18,222,33,50,193,227]},{"1154253":[255,222,33,93,34,91,36,95,32,95,32,96,31,63]},{"1154268":[178,65,214,33,117,2,13,2,59,4,230,24,156,96,240]},{"1154284":[238,17,110,17,110,17,94,33,222,33,189,66,121,134,207]},{"1154300":[239,16,239,16]},{"1154305":[255,247,8,54,8,54,8,54,8,28]},{"1154316":[190,65,102,129,197,2,13,2,59,4,230,24,156,96,240]},{"1154332":[190,65,102,153,249,6,13,2,59,4,230,24,156,96,248]},{"1154348":[247,8]},{"1154351":[255,247,8,54,8,54,8,236,16,152,96,240]},{"1154364":[182,73,126,1,5,2,13,2,27,4,118,8,76,48,120]},{"1154381":[255,247,8,54,8,52,8,44,16,104,16,88,32,112]},{"1154396":[46,16,35,28,44,19,47,16,40,16,40,16,40,16,56]},{"1154412":[122,132,74,132,202,4,26,4,22,8,116,8,76,48,120]},{"1154428":[2,1,2,1,2,1,2,1,2,1,254,1]},{"1154441":[255,255]},{"1154444":[221,34,93,34,93,34,125,2,13,2,59,4,38,24,60]},{"1154466":[28]},{"1154468":[20,8,20,8,247,8]},{"1154475":[255]},{"1154484":[255]},{"1154486":[129,126,255]},{"1154500":[255]},{"1154503":[255,254,1,126,1]},{"1154514":[28]},{"1154516":[20,8,247,8]},{"1154521":[255,254,1]},{"1154532":[7]},{"1154534":[5,2,5,2,5,2]},{"1154544":[15]},{"1154546":[10,5,234,5,63,192,208,32,243]},{"1154560":[15]},{"1154562":[10,5,250,5,1,254,253,2,29,2]},{"1154576":[15]},{"1154578":[10,5,122,5,95,32,95,32,223,32]},{"1154596":[126]},{"1154598":[90,36,91,36,93,34]},{"1154612":[192]},{"1154614":[67,128,78,129,121,134]},{"1154628":[255]},{"1154631":[255,254,1,2,1]},{"1154646":[56]},{"1154648":[108,16,68,56]},{"1154658":[28]},{"1154660":[20,8,247,8]},{"1154665":[255,247,8]},{"1154672":[15]},{"1154674":[10,5,10,5,207]},{"1154680":[102,129,166,65]},{"1154688":[15]},{"1154690":[58,5,42,21,111,16,64,63,222,33]},{"1154704":[15]},{"1154706":[10,5,10,5,251,4,134,120,246,8,247,8,54,8,54,8,54,8,108,16,236,16,152,96,240]},{"1154740":[255]},{"1154743":[255,255]},{"1154748":[126,1,77,50,117,10,123,4,245,10,206,49,63,192,240]},{"1154764":[61,2,59,4,243,12,197,58,54,201,247,8,20,8,28]},{"1154780":[5,2,13,2,11,4,26,4,54,8,236,16,152,96,240]},{"1154796":[50,193,214,33,53,2,13,2,59,4,230,24,28,224,248]},{"1154812":[27,4,27,4,55,8,51,12,109,18,222,33,50,193,227]},{"1154829":[255,222,33,221,34,219,36,223,32,223,32,96,31,63]},{"1154844":[213,34,181,66,165,66,166,65,162,65,98,129,66,129,195]},{"1154860":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1154876":[2,1,6,1,5,2,13,2,59,4,230,24,156,96,240]},{"1154892":[214,40,186,68,43,196,109,130,197,2,2,1,2,1,3]},{"1154908":[247,8,181,74,182,73,182,73,118,137,247,8,20,8,28]},{"1154924":[182,65,214,33,125,2,29,2,59,4,230,24,156,96,248]},{"1154940":[190,65,102,153,249,6,61,2,59,4,230,24,156,96,240]},{"1154956":[247,8]},{"1154959":[255,247,8,52,8,52,8,236,16,152,96,240]},{"1154982":[255]},{"1154985":[255,254,1]},{"1154996":[248]},{"1154998":[30,224,227,28,124,3]},{"1155012":[28]},{"1155014":[20,8,52,8,44,16]},{"1155028":[7]},{"1155030":[5,2,5,2,125,2]},{"1155044":[255]},{"1155046":[129,126,239,16,110,16]},{"1155056":[15]},{"1155058":[10,5,250,5,111,144,110,145,182,73]},{"1155072":[15]},{"1155074":[10,5,250,5,129,126,255]},{"1155082":[255]},{"1155088":[15]},{"1155090":[58,5,42,21,47,16,44,16,44,16]},{"1155106":[255]},{"1155108":[129,126,255]},{"1155112":[255]},{"1155115":[255]},{"1155122":[227]},{"1155124":[162,65,162,65,162,65,162,65]},{"1155140":[124]},{"1155142":[84,40,84,40,84,40]},{"1155156":[224]},{"1155158":[160,64,160,64,160,64]},{"1155174":[255]},{"1155177":[255,126,129]},{"1155184":[15]},{"1155186":[10,5,122,5,95,32,91,36,93,34]},{"1155200":[15]},{"1155202":[10,5,202,5,79,128,78,129,121,134]},{"1155216":[15]},{"1155218":[10,5,10,5,255]},{"1155225":[255,254,1,6,1,5,2,125,2,75,52,118,8,27,4,13,2,7]},{"1155244":[255]},{"1155246":[143,112,241,14,255]},{"1155252":[31,224,227,28,60,3,7]},{"1155260":[104,16,88,32,215,32,181,66,189,66]},{"1155271":[255,254,1,3]},{"1155276":[77,50,115,12,25,6,26,5,55,8,236,16,152,96,240]},{"1155292":[239,16]},{"1155295":[255,239,16,108,16,108,16,111,16,48,15,31]},{"1155308":[182,73,254,1,13,2,13,2,59,4,118,8,76,48,120]},{"1155325":[255,247,8,20,8,52,8,44,16,104,16,88,32,112]},{"1155340":[46,16,35,28,44,19,47,16,40,16,40,16,40,16,56]},{"1155356":[254,1,6,1,5,2,29,2,115,12,78,48,124]},{"1155372":[162,65,162,65,166,65,229,2,13,2,59,4,38,24,28]},{"1155388":[84,40,87,40,86,41,214,41,181,74,181,74,115,140,222]},{"1155404":[163,64,162,65,166,65,165,66,189,66,179,76,142,112,252]},{"1155420":[66,129,66,129,66,129,66,129,66,129,126,129]},{"1155433":[255,255]},{"1155436":[213,34,181,66,165,66,166,65,162,65,98,129,66,129,195]},{"1155452":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1155468":[2,1,6,1,5,2,13,2,59,4,230,24,156,96,240]},{"1155488":[15]},{"1155490":[10,5,10,5,63]},{"1155496":[108,16,68,56]},{"1155504":[15]},{"1155506":[10,5,26,5,247,8]},{"1155513":[255,247,8]},{"1155520":[15]},{"1155522":[8,7,122,5,92,35,91,36,93,34]},{"1155536":[15]},{"1155538":[8,7,202,5,72,135,79,128,121,134]},{"1155552":[15]},{"1155554":[8,7,250,5]},{"1155559":[255,254,1,6,1]},{"1155568":[15]},{"1155570":[8,7,26,5,56,7,111,16,68,56]},{"1155584":[15]},{"1155586":[8,7,26,5,244,11]},{"1155593":[255,247,8]},{"1155606":[112]},{"1155608":[80,32,94,32]},{"1155624":[252]},{"1155626":[132,120]},{"1155640":[252]},{"1155642":[4,248]},{"1155656":[254]},{"1155658":[90,164]},{"1155672":[254]},{"1155674":[2,252]},{"1155686":[14]},{"1155688":[10,4,26,4]},{"1155702":[56]},{"1155704":[40,16,238,16]},{"1155720":[254]},{"1155722":[2,252]},{"1155734":[28]},{"1155736":[246,8,2,252,214,40,186,68,43,196,109,130,197,2,6,1,2,1,3]},{"1155756":[247,8,181,74,182,73,182,73,118,137,215,8,21,8,28]},{"1155772":[221,34,189,66,189,66,190,65,166,65,102,129,102,129,195]},{"1155788":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1155804":[6,1,6,1,5,2,13,2,59,4,230,24,156,96,248]},{"1155820":[214,40,186,68,43,196,109,130,197,2,6,1,2,1,3]},{"1155836":[247,8,181,74,182,73,182,73,118,137,215,8,20,8,28]},{"1155852":[194,60,26,228,214,40,92,32,88,32,80,32,112]},{"1155868":[244,8,20,8,20,8,20,8,247,8,1,254,255]},{"1155884":[244,8,244,8,4,248,244,8,244,8,4,248,252]},{"1155900":[90,164,90,164,246,8,244,8,236,16,152,96,240]},{"1155916":[250,4,250,4,218,36,214,40,220,32,56,192,224]},{"1155932":[118,8,204,48,40,208,232,16,40,16,40,16,56]},{"1155948":[2,252,122,132,122,132,250,4,118,8,76,48,120]},{"1155964":[238,16,108,16,108,16,108,16,238,16,2,252,254]},{"1155980":[246,8,52,8,100,24,212,40,180,72,116,136,220]},{"1156002":[126]},{"1156004":[195,60,153,102,153,102,153,102]},{"1156018":[60]},{"1156020":[100,24,68,56,68,56,100,24]},{"1156034":[124]},{"1156036":[194,60,153,102,153,102,153,102]},{"1156050":[126]},{"1156052":[195,60,153,102,153,102,153,102]},{"1156066":[30]},{"1156068":[18,12,34,28,98,28,66,60]},{"1156082":[255]},{"1156084":[129,126,159,96,152,96,158,96]},{"1156098":[126]},{"1156100":[195,60,153,102,153,102,159,96]},{"1156114":[255]},{"1156116":[129,126,153,102,153,102,249,6]},{"1156130":[126]},{"1156132":[195,60,153,102,153,102,153,102]},{"1156146":[126]},{"1156148":[195,60,153,102,153,102,153,102]},{"1156162":[60]},{"1156164":[66,60,153,102,153,102,153,102]},{"1156178":[252]},{"1156180":[130,124,153,102,153,102,153,102]},{"1156194":[126]},{"1156196":[195,60,153,102,153,102,153,102]},{"1156210":[254]},{"1156212":[131,124,153,102,153,102,153,102]},{"1156226":[255]},{"1156228":[129,126,159,96,144,96,144,96]},{"1156242":[255]},{"1156244":[129,126,159,96,144,96,144,96,153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156268":[36,24,36,24,36,24,36,24,36,24,102,24,66,60,126]},{"1156284":[233,6,25,6,51,12,102,24,204,48,159,96,129,126,255]},{"1156300":[249,6,35,28,249,6,153,102,153,102,153,102,195,60,126]},{"1156316":[210,44,146,108,146,108,147,108,129,126,115,12,18,12,30]},{"1156332":[131,124,153,102,249,6,249,6,153,102,153,102,195,60,126]},{"1156348":[131,124,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156364":[51,12,38,24,36,24,36,24,36,24,36,24,36,24,60]},{"1156380":[153,102,195,60,153,102,153,102,153,102,153,102,195,60,126]},{"1156396":[153,102,153,102,193,62,249,6,153,102,153,102,195,60,126]},{"1156412":[153,102,129,126,153,102,153,102,153,102,153,102,153,102,255]},{"1156428":[153,102,131,124,153,102,153,102,153,102,153,102,130,124,252]},{"1156444":[159,96,156,96,159,96,153,102,153,102,153,102,195,60,126]},{"1156460":[153,102,153,102,153,102,153,102,153,102,153,102,131,124,254]},{"1156476":[158,96,130,124,158,96,144,96,144,96,159,96,129,126,255]},{"1156492":[158,96,130,124,158,96,144,96,144,96,144,96,144,96,240]},{"1156514":[126]},{"1156516":[195,60,153,102,153,102,153,102]},{"1156530":[255]},{"1156532":[153,102,153,102,153,102,153,102]},{"1156546":[126]},{"1156548":[66,60,102,24,36,24,36,24]},{"1156562":[15]},{"1156564":[9,6,9,6,9,6,9,6]},{"1156578":[255]},{"1156580":[153,102,153,102,147,108,146,108]},{"1156594":[240]},{"1156596":[144,96,144,96,144,96,144,96]},{"1156610":[247]},{"1156612":[157,98,137,118,129,126,149,106]},{"1156626":[255]},{"1156628":[153,102,153,102,153,102,137,118]},{"1156642":[126]},{"1156644":[195,60,153,102,153,102,153,102]},{"1156658":[254]},{"1156660":[131,124,153,102,153,102,153,102]},{"1156674":[126]},{"1156676":[195,60,153,102,153,102,153,102]},{"1156690":[254]},{"1156692":[131,124,153,102,153,102,153,102]},{"1156706":[126]},{"1156708":[195,60,153,102,153,102,159,96]},{"1156722":[255]},{"1156724":[129,126,231,24,36,24,36,24]},{"1156738":[255]},{"1156740":[153,102,153,102,153,102,153,102]},{"1156754":[247]},{"1156756":[149,98,149,98,149,98,149,98,159,96,159,96,145,110,153,102,153,102,153,102,193,62,127]},{"1156780":[153,102,129,126,153,102,153,102,153,102,153,102,153,102,255]},{"1156796":[36,24,36,24,36,24,36,24,36,24,102,24,66,60,126]},{"1156812":[9,6,9,6,9,6,249,6,153,102,153,102,195,60,124]},{"1156828":[134,120,134,120,134,120,146,108,147,108,153,102,153,102,255]},{"1156844":[144,96,144,96,144,96,144,96,144,96,159,96,129,126,255]},{"1156860":[149,106,149,106,157,98,157,98,157,98,157,98,157,98,255]},{"1156876":[137,118,129,126,145,110,145,110,153,102,153,102,153,102,255]},{"1156892":[153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156908":[153,102,131,124,158,96,144,96,144,96,144,96,144,96,240]},{"1156924":[153,102,153,102,153,102,157,98,155,100,157,98,194,61,127]},{"1156940":[153,102,131,124,153,102,153,102,153,102,153,102,153,102,255]},{"1156956":[158,96,195,60,121,6,249,6,153,102,153,102,195,60,126]},{"1156972":[36,24,36,24,36,24,36,24,36,24,36,24,36,24,60]},{"1156988":[153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1157004":[157,98,203,52,74,52,74,52,74,52,36,24,36,24,60]},{"1157026":[255]},{"1157028":[149,106,149,106,149,106,149,106]},{"1157042":[247]},{"1157044":[149,98,157,98,203,52,74,52]},{"1157058":[247]},{"1157060":[149,98,149,98,157,98,203,52]},{"1157074":[255]},{"1157076":[129,126,249,6,19,12,18,12]},{"1157088":[255]},{"1157091":[255,126,129,64,191,95,160,80,160]},{"1157112":[15]},{"1157114":[8,7]},{"1157120":[255]},{"1157122":[129,126,60,195,60,195,60,195,249,6]},{"1157136":[30]},{"1157138":[18,12,18,12,18,12,18,12,18,12]},{"1157184":[3]},{"1157186":[6,1,12,3,24,7,49,14,97,30]},{"1157200":[192]},{"1157202":[96,128,48,192,24,224,140,112,134,120]},{"1157258":[248]},{"1157276":[149,106,149,106,149,106,149,106,129,126,195,60,106,20,126]},{"1157292":[102,24,36,24,38,24,82,44,211,44,185,70,185,70,239]},{"1157308":[74,52,102,24,36,24,36,24,36,24,36,24,36,24,60]},{"1157324":[50,12,38,24,36,24,100,24,76,48,207,48,129,126,255]},{"1157340":[80,160,80,160,16,224,240]},{"1157356":[10,5,10,5,10,5,250,5,2,253,126,129]},{"1157369":[255,255]},{"1157372":[51,12,38,24,36,24,36,24,60]},{"1157382":[36,24,36,24,60]},{"1157388":[18,12,18,12,18,12,30]},{"1157396":[30]},{"1157398":[18,12,18,12,30]},{"1157410":[192]},{"1157412":[96,128,32,192,160,64,224]},{"1157422":[255]},{"1157425":[255,255]},{"1157436":[192,63,192,63,97,30,49,14,24,7,12,3,6,1,3]},{"1157452":[3,252,3,252,134,120,140,112,24,224,48,192,96,128,192]},{"1157488":[240]},{"1157490":[152,96,104,144,104,144,152,96,240]},{"1157500":[143,112,102,153,241,14,31]},{"1157516":[60,60,102,126,219,255,153,255,153,255,129,255,153,255,255,255]},{"1157568":[7]},{"1157570":[25,6,34,29,68,59,72,55,185,70]},{"1157584":[192]},{"1157586":[32,192,16,224,240]},{"1157592":[248]},{"1157594":[248]},{"1157664":[120]},{"1157666":[72,48,72,48,104,16,88,32,112]},{"1157686":[120,120,72,120,72,120]},{"1157744":[247]},{"1157746":[24,231,151,96,151,96,168,87,183,72]},{"1157760":[60]},{"1157762":[102,24,90,36,90,36,90,36,231,24]},{"1157776":[3]},{"1157778":[118,1,220,35,137,118,35,220,118,136,254,254,131,255,153,255,131,255,153,255,153,255,131,255,254,254,126,126,195,255,153,255,159,255,159,255,153,255,195,255,126,126,171,84,171,84,167,88,54,201,18,237,248,7,30,1,7]},{"1157836":[120,128,80,160,120,128,8,240,120,128,32,192,192]},{"1157850":[128]},{"1157852":[252,252,134,254,155,255,153,255,153,255,155,255,134,254,252,252,255,255,129,255,159,255,130,254,158,254,159,255,129,255,255,255,255,255,129,255,159,255,130,254,158,254,144,240,144,240,240,240,126,126,195,255,153,255,159,255,145,255,153,255,193,255,127,127]},{"1157932":[104,120,88,120,112,112]},{"1157954":[255,255,129,255,255,255]},{"1157972":[120,120,72,120,72,120,120,120]},{"1157984":[30,30,18,30,18,30,30,30]},{"1157996":[194,60,109,18,54,9,40,23,43,20,42,20,66,60,60]},{"1158012":[126,129,129,126,126,129,229,24,36,24,36,24,36,24,60]},{"1158028":[207]},{"1158030":[118,1,220,35,137,118,35,220,118,136,220]},{"1158068":[126]},{"1158070":[90,36,219,36,129,126]},{"1158082":[15]},{"1158084":[9,6,25,6,17,14,51,12]},{"1158102":[60]},{"1158104":[36,24,36,24]},{"1158112":[127]},{"1158114":[73,54,73,54,109,18,91,36,118]},{"1158136":[60]},{"1158138":[102,24]},{"1158146":[3]},{"1158148":[2,1,6,1,4,3,12,3]},{"1158162":[128]},{"1158164":[128]},{"1158166":[192]},{"1158168":[64,128,96,128]},{"1158176":[56]},{"1158178":[68,56,187,124,124,255,127,255,127,255]},{"1158192":[128]},{"1158194":[64,128,160,192,208,224,208,224,208,224]},{"1158208":[56]},{"1158210":[68,56,187,124,124,255,127,255,127,255]},{"1158224":[128]},{"1158226":[64,128,160,192,208,224,208,224,208,224]},{"1158308":[60]},{"1158310":[36,24,36,24,60]},{"1158316":[219,36,90,36,219,36,129,126,219,36,90,36,126]},{"1158332":[34,28,102,24,68,56,204,48,136,112,152,96,144,96,240]},{"1158348":[60]},{"1158352":[60]},{"1158354":[36,24,36,24,60]},{"1158380":[66,60,66,60,102,24,60]},{"1158396":[8,7,24,7,16,15,48,15,32,31,96,31,64,63,127]},{"1158412":[32,192,48,192,16,224,24,224,8,240,12,240,4,248,252]},{"1158428":[126,255,190,127,94,63,46,31,22,15,10,7,4,3,3]},{"1158444":[16,224,160,64,64,128,128]},{"1158460":[127,255,191,127,95,63,47,31,23,15,11,7,4,3,3]},{"1158476":[208,224,160,192,64,128,128]},{"1158492":[255,255,153,255,153,255,129,255,153,255,153,255,153,255,255,255,126,126,66,126,102,126,36,60,36,60,102,126,66,126,126,126,63,63,33,63,51,63,18,30,242,254,146,254,198,254,124,124,255,255,153,255,147,255,134,254,134,254,147,255,153,255,255,255]},{"1158812":[240,240,144,240,144,240,144,240,144,240,159,255,129,255,255,255,247,247,157,255,137,255,129,255,149,255,157,255,149,247,247,247,247,247,157,255,141,255,133,255,145,255,153,255,157,255,247,247,126,126,195,255,153,255,153,255,153,255,153,255,195,255,126,126,254,254,131,255,153,255,153,255,131,255,158,254,144,240,240,240,126,126,195,255,153,255,153,255,129,255,155,255,193,255,127,127,254,254,131,255,153,255,153,255,131,255,147,255,153,255,255,255,126,126,194,254,158,254,195,255,249,255,153,255,195,255,126,126,255,255,129,255,231,255,36,60,36,60,36,60,36,60,60,60,255,255,153,255,153,255,153,255,153,255,153,255,195,255,126,126,255,255,153,255,153,255,153,255,219,255,66,126,102,126,60,60,255,255,149,255,149,255,149,255,149,255,129,255,235,255,60,60,247,247,157,255,139,255,198,254,99,127,209,255,185,255,239,239,255,255,153,255,153,255,195,255,102,126,36,60,36,60,60,60,255,255,129,255,241,255,99,127,198,254,143,255,129,255,255,255]},{"1159068":[169]},{"1159070":[35,133,125,169,140,140,133,124,183,124,133,124,160]},{"1159085":[107]},{"1159088":[9]},{"1159090":[99]},{"1159092":[231,3,15,39,255,255,1]},{"1159100":[3]},{"1159102":[7]},{"1159104":[15]},{"1159106":[31]},{"1159108":[63]},{"1159110":[127]},{"1159112":[255]},{"1159114":[255,1,255,3,255,7,255,15,255,31,255,63,255,127,72,72,169]},{"1159133":[143,3,80,127,143,5,80,127,143,6,80,127,104,201,16,39,144,21,72,226,32,175,3,80,127,26,143,3,80,127,194,32,104,56,233,16,39,128,230,201,232,3,144,21,72,226,32,175,4,80,127,26,143,4,80,127,194,32,104,56,233,232,3,128,230,201,100]},{"1159201":[144,21,72,226,32,175,5,80,127,26,143,5,80,127,194,32,104,56,233,100]},{"1159222":[128,230,201,10]},{"1159227":[144,21,72,226,32,175,6,80,127,26,143,6,80,127,194,32,104,56,233,10]},{"1159248":[128,230,201,1]},{"1159253":[144,21,72,226,32,175,7,80,127,26,143,7,80,127,194,32,104,56,233,1]},{"1159274":[128,230,104,107,152,41,15]},{"1159282":[72,152,74,74,74,74,168,24,165,181,208,5,104,105,64,61,96,104,105,80,61,96,160]},{"1159307":[185,217,181,100,181,201,255,255,240,27,235,41,255,1,197,202,240,17,26,230,181,197,202,240,10,200,200,200,200,200,200,200,200,128,221,56,96,24,96,139,75,171,32,136,176,176,3,130,233]},{"1159357":[185,217,181,74,41,3]},{"1159364":[201]},{"1159367":[240,3,130,220]},{"1159372":[185,217,181,74,74,74,41,31]},{"1159381":[24,101,200,235,157,2,16,169,7]},{"1159391":[235,157,4,16,218,165,181,208,5,169,64,61,128,3,169,80,61,133,179,185,222,181,133,183,185,223,181,133,184,167,183,133,186,185,219,181,41,15]},{"1159430":[240,9,170,165,186,74,202,208,252,133,186,185,219,181,74,74,74,41,30]},{"1159450":[170,191,184,175,35,37,186,133,186,185,220,181,74,74,74,74,74,41,7]},{"1159470":[240,12,10,170,191,174,175,35,197,186,176,2,133,186,165,186,34,216,175,35,250,100,120,175,4,80,127,41,255]},{"1159500":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,5,80,127,41,255]},{"1159526":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,6,80,127,41,255]},{"1159552":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159578":[24,101,179,157,6,16,232,232,232,232,232,232,171,107,185,217,181,74,74,74,41,31]},{"1159601":[24,101,200,235,157,2,16,169,21]},{"1159611":[235,157,4,16,218,185,222,181,133,183,185,223,181,133,184,167,183,133,186,230,183,230,183,167,183,133,188,201,198]},{"1159641":[176,88,100,114,165,186,56,233,192,75,133,179,165,188,233,3]},{"1159658":[144,10,133,188,165,179,133,186,230,114,128,231,100,116,165,186,56,233,16,14,133,179,165,188,233]},{"1159685":[144,10,133,188,165,179,133,186,230,116,128,231,100,118,165,186,56,233,60]},{"1159705":[133,179,165,188,233]},{"1159712":[144,10,133,188,165,179,133,186,230,118,128,231,165,114,201,100]},{"1159729":[144,14,169,99]},{"1159734":[133,114,169,59]},{"1159739":[133,116,133,118,133,186,165,181,208,5,169,64,61,128,3,169,80,61,133,179,250,165,114,34,216,175,35,175,6,80,127,41,255]},{"1159773":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159788":[24,101,179,157,6,16,232,232,169,131]},{"1159799":[24,101,179,157,6,16,232,232,165,116,34,216,175,35,175,6,80,127,41,255]},{"1159820":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159835":[24,101,179,157,6,16,232,232,169,131]},{"1159846":[24,101,179,157,6,16,232,232,165,118,34,216,175,35,175,6,80,127,41,255]},{"1159867":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159882":[24,101,179,157,6,16,232,232,169,128]},{"1159893":[24,101,179,157,6,16,232,232,165,186,34,216,175,35,175,6,80,127,41,255]},{"1159914":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159929":[24,101,179,157,6,16,232,232,232,232,232,232,130,158,254,165,200,24,105]},{"1159950":[235,157,2,16,169,5]},{"1159957":[235,169]},{"1159960":[5,157,4,16,100,181,165,202,168,41,1]},{"1159972":[240,3,136,230,181,32,110,176,72,32,110,176,72,32,110,176,157,6,16,232,232,104,157,6,16,232,232,104,157,6,16,232,232,232,232,232,232,96,169,2,141,1,33,169,128,141,21,33,169,35,133,2,194,48,169]},{"1160028":[112,141,22,33,169,156,143,133]},{"1160037":[162,255,15,167]},{"1160042":[141,24,33,230]},{"1160047":[230]},{"1160049":[202,16,244,226,48,34,123,179,35,107,169,128,141,21,33,169,49,133,2,194,48,169]},{"1160072":[128,141,22,33,169]},{"1160078":[208,133]},{"1160081":[162,255,7,167]},{"1160086":[141,24,33,230]},{"1160091":[230]},{"1160093":[202,16,244,226,48,107,168,139,75,171,185,217,179,171,107,156,42,1,34,153,148,164,194,16,34,181,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,178,148,164,34,30,147,164,226,48,169,1,133,20,96,159,57,176,57,177,57,180,57,181,57,182,57,183,57,220,57,221,57,222,57,223,57,240,57,241,57,242,57,243,57,244,57,245,57,246,57,247,57,248,57,249,57,250,57,251,57,252,57,253,57,254,57,159,45,176,45,177,45,180,45,181,45,182,45,183,45,220,45,221,45,222,45,223,45,240,45,241,45,242,45,243,45,244,45,245,45,246,45,247,45,248,45,249,45,250,45,251,45,252,45,253,45,254,45,169,45,185,45,186,45,187,45,159,41,176,41,177,41,180,41,181,41,182,41,183,41,220,41,221,41,222,41,223,41,240,41,241,41,242,41,243,41,244,41,245,41,246,41,247,41,248,41,249,41,250,41,251,41,252,41,253,41,254,41,188,41,64,61,65,61,66,61,67,61,68,61,69,61,70,61,71,61,72,61,73,61,74,61,75,61,76,61,77,61,78,61,79,61,96,61,97,61,98,61,99,61,100,61,101,61,102,61,103,61,104,61,105,61,106,61,107,61,108,61,109,61,110,61,111,61,128,61,129,61,130,61,131,61,168,61,135,61,80,61,81,61,82,61,83,61,84,61,85,61,86,61,87,61,88,61,89,61,90,61,91,61,92,61,93,61,94,61,95,61,112,61,113,61,114,61,115,61,116,61,117,61,118,61,119,61,120,61,121,61,122,61,123,61,124,61,125,61,126,61,127,61,144,61,145,61,146,61,147,61,184,61,151,61,136,61,192,61,193,61,194,61,195,61,136,61,134,61,137,61,196,61,137,61,197,61,198,61,199,61,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,208,61,209,61,210,61,211,61,152,61,150,61,153,189,212,61,153,61,213,61,214,61,215,61,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,155,54]},{"1160668":[128]},{"1160670":[88,244,126,155,57]},{"1160676":[128]},{"1160678":[92,244,126,155,60]},{"1160684":[128]},{"1160686":[96,244,126,155,63]},{"1160692":[128]},{"1160694":[100,244,126,185,71,68,64]},{"1160702":[82,244,126,185,74,68,64]},{"1160710":[37,244,126,185,77,64,64]},{"1160718":[37,244,126,185,80,68,64]},{"1160726":[38,244,126,185,83,64,64]},{"1160734":[38,244,126,185,90,80,64]},{"1160742":[42,244,126,209,93,128,96]},{"1160750":[32,244,126,209,96,128,64]},{"1160758":[45,244,126,209,99,128,64]},{"1160766":[73,244,126,209,102,128,96]},{"1160774":[83,244,126,155,105,8,128]},{"1160782":[68,244,126,155,108]},{"1160788":[128]},{"1160790":[56,80,127,177,124,128,96]},{"1160798":[35,244,126,155,127]},{"1160804":[128]},{"1160806":[62,244,126,255,255]},{"1179648":[165,160,201,13,208,3,169,7,107,169,11,107,157,160,11,165,160,201,13,208,29,175,163,128,48,240,20,175,74,128,48,240,8,169]},{"1179683":[143,202,243,126,128,6,169,64,143,202,243,126,169,1,107,175,163,128,48,240,20,175,74,128,48,240,8,169,64,143,202,243,126,128,6,169]},{"1179720":[143,202,243,126,169]},{"1179726":[107,165,160,201,13,208,4,169,6,128,2,169,1,107,218,165,160,201,13,208,6,169,1,92,123,213,30,169]},{"1179755":[92,123,213,30,254,48,14,165,160,201,13,208,3,169,1,107,169]},{"1179773":[107,175,66,128,48,240,14,173,3,4,41,128,240,7,173,18,1,13,228,2,107,173,18,1,13,228,2,13,252,15,107,194,32,165,160,201,23,1,226,32,208,8,175,104,129,48,141,115,3,107,185,85,208,141,115,3,107,165,27,240,44,194,32,165,160,201,95]},{"1179841":[240,24,201,172]},{"1179846":[240,19,201,179]},{"1179851":[240,14,201,213]},{"1179856":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,107,129,48,133]},{"1179877":[250,175,110,243,126,107,165,27,240,39,194,32,165,160,201,95]},{"1179894":[240,19,201,179]},{"1179899":[240,14,201,213]},{"1179904":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,110,129,48,133,76,250,175,110,243,126,107,165,27,240,36,194,32,165,160,201,95]},{"1179942":[240,19,201,179]},{"1179947":[240,14,201,213]},{"1179952":[240,9,201,23,1,240,4,226,32,128,8,226,32,169,1,141,123,3,107,175,79,128,48,141,123,3,107,224,3,240,29,224,4,240,25,224,5,240,21,224,57,240,27,224,59,240,23,224,60,240,19,224,61,240,15,191,241,184,13,107,175,128,129,48,41,1,208,243,128,8,175,128,129,48,41,2,208,233,169]},{"1180032":[107,133,5,218,162]},{"1180038":[189,74,12,232,224,10,240,8,197,5,208,244,169,1,128,2,169]},{"1180056":[250,96,189,32,14,201,214,208,16,34,182,129,164,176,10,189,128,13,201,17,144,3,169]},{"1180080":[107,165,68,201,128,107,175,62,128,48,240,100,201,1,240,94,201,2,208,40,175,116,243,126,41,7,201,7,208,80,175,122,243,126,41,127,201,127,208,70,175,197,243,126,201,3,144,62,175,219,242,126,41,32,201,32,208,52,128,52,201,4,208,8,34,111,130,164,144,40,128,40,201,3,208,18,34,111,130,164,144,28,175,219,242,126,41,32,201,32,208,18,128,18,201,5,208,12,175,24,244,126,207,103,129,48,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180206":[208,4,92,195,206,8,175,94,128,48,201,1,208,4,92,147,206,8,175,94,128,48,58,58,170,92,19,206,8,175,94,128,48,201]},{"1180241":[208,2,170,107,138,207,94,128,48,144,7,56,239,94,128,48,128,243,26,207,94,128,48,208,2,169,8,58,170,107,218,90,175,122,243,126,34,15,153,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,15,153,160,122,250,207,94,128,48,107,175,50,128,48,240,1,107,169,1,143,197,243,126,107,175,50,128,48,240,49,175,197,243,126,201,2,176,41,169,2,143,197,243,126,175,198,243,126,9,20,143,198,243,126,175,200,243,126,201,5,240,2,169,1,143,200,243,126,175,155,242,126,9,32,143,155,242,126,107,107,165,246,41,48,240,103,235,175,75,128,48,240,96,173,2,2,240,91,175,19,130,48,240,10,175,17,130,48,41,2,208,2,128,75,218,235,201,48,208,5,174,2,2,128,26,137,16,240,11,32,73,131,165,242,137,32,208,13,128,36,32,131,131,165,242,137,16,208,2,128,25,224,2,240,14,224,1,240,10,224,5,240,6,224,13,240,2,128,7,142,2,2,34,250,183,160,169,32,141,47,1,142,2,2,34,127,219,13,250,165,246,41,64,107,173,2,2,170,224,15,208,4,162]},{"1180499":[128,9,224,16,208,28,175,79,243,126,170,224,4,240,15,232,191,91,243,126,240,245,138,143,79,243,126,162,16,96,162,17,128,7,224,20,208,2,162]},{"1180539":[232,34,182,132,164,240,203,96,173,2,2,170,224,17,208,4,162,5,128,9,224,16,208,28,175,79,243,126,170,224,1,240,15,202,191,91,243,126,240,245,138,143,79,243,126,162,16,96,162,15,128,7,224,1,208,2,162,21,202,34,182,132,164,240,203,96,90,218,187,191]},{"1180610":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180623":[149,48,41,255]},{"1180628":[250,122,107,72,218,90,8,226,48,165,27,208,24,160,10,169,11,34,95,246,29,48,14,34,100,174,9,169,36,153,160,13,169,1,153,176,13,40,122,250,104,107,138,69,26,41,15,5,27,208,119,169,11,160,10,34,95,246,29,48,109,218,187,169,30,34,138,187,13,250,169,1,153,176,13,218,34,113,186,13,133,15,41,2,240,36,165,15,101,226,153,16,13,165,227,105]},{"1180725":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180740":[13,165,233,105]},{"1180745":[153,32,13,128,34,165,15,101,232,153]},{"1180756":[13,165,233,105]},{"1180761":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180781":[153,48,13,187,169,32,34,24,234,6,250,169,48,34,124,187,13,107,165,27,240,37,166,160,224,255]},{"1180808":[208,30,166,162,224,239]},{"1180815":[208,23,174,24,1,224]},{"1180822":[24,240,21,224]},{"1180827":[26,240,16,224]},{"1180832":[28,240,5,224]},{"1180837":[30,240]},{"1180840":[169,1,141,11,66,107,162,192]},{"1180849":[142,5,67,128,242,175,201,80,127,240,7,224,4,208,3,169,1,107,191,63,243,126,107,175,201,80,127,208,4,175,67,243,126,107,175,201,80,127,41,255]},{"1180890":[208,4,175,67,243,126,107,72,175,201,80,127,240,4,104,169,1,107,104,143,67,243,126,107,175,201,80,127,240,5,169,1,162]},{"1180924":[107,175,64,243,126,107,175,200,80,127,208,8,175,117,129,48,208,19,128,3,169,1,107,175,119,243,126,240,82,58,143,119,243,126,26,128,74,194,32,165,160,201,17,1,226,32,208,13,165,27,240,9,173,154,11,240,12,169]},{"1180983":[128,50,175,119,243,126,208,2,128,42,218,194,32,175,96,243,126,240,30,72,175,64,243,126,58,41,2]},{"1181011":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181027":[128,3,169]},{"1181032":[226,32,250,201]},{"1181037":[107,173,153,11,240,48,206,153,11,175,117,129,48,208,11,175,119,243,126,26,26,143,119,243,126,107,218,194,32,175,64,243,126,58,41,2]},{"1181074":[170,175,96,243,126,24,127,118,129,48,143,96,243,126,226,32,250,107,175,203,80,127,208,3,130,154]},{"1181101":[58,240,125,58,240,93,58,240,45,194,32,173,24,66,137,64,8,240,3,73,64,8,137,128,1,240,3,73,128,1,137]},{"1181133":[66,240,3,73]},{"1181138":[66,137]},{"1181141":[132,240,3,73]},{"1181146":[132,133]},{"1181149":[226,32,92,222,131]},{"1181155":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181178":[12,240,3,73]},{"1181183":[12,137]},{"1181186":[3,240,3,73]},{"1181191":[3,133]},{"1181194":[226,32,92,222,131]},{"1181200":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181223":[226,32,92,222,131]},{"1181229":[173,24,66,133]},{"1181234":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181255":[173,24,66,133]},{"1181260":[173,25,66,133,1,92,222,131]},{"1181269":[72,175,206,80,127,201,1,208,8,104,47,121,243,126,9,4,107,201,2,208,8,104,47,121,243,126,41,251,107,104,47,121,243,126,107,34,129,134,164,34,238,134,164,107,169,14,143,1,40]},{"1181319":[169,4,143,1,40]},{"1181325":[169,13,143,1,40]},{"1181331":[169,14,143,1,40]},{"1181337":[169]},{"1181339":[143,1,40]},{"1181343":[169]},{"1181345":[143,1,40]},{"1181349":[169]},{"1181351":[143,1,40]},{"1181355":[169]},{"1181357":[143,1,40]},{"1181361":[169]},{"1181363":[143,1,40]},{"1181367":[169]},{"1181369":[143,1,40]},{"1181373":[169]},{"1181375":[143,1,40]},{"1181379":[169,1,143,1,40]},{"1181385":[169]},{"1181387":[143,1,40]},{"1181391":[169,1,143,1,40]},{"1181397":[169]},{"1181399":[143,1,40]},{"1181403":[169]},{"1181405":[143,1,40]},{"1181409":[169,10,143,1,40]},{"1181415":[169,13,143,1,40]},{"1181421":[107,72,218,162]},{"1181426":[175]},{"1181428":[40]},{"1181430":[41,15,201,15,240,10,224,14,144,3,24,128,4,232,128,236,56,250,104,107,72,218,8,226,48,162]},{"1181457":[175]},{"1181459":[40]},{"1181461":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181475":[232,128,235,56,175]},{"1181481":[40]},{"1181483":[72,175]},{"1181486":[40]},{"1181488":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181506":[175]},{"1181508":[40]},{"1181510":[72,175]},{"1181513":[40]},{"1181515":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181535":[40]},{"1181537":[72,175]},{"1181540":[40]},{"1181542":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181562":[40]},{"1181564":[72,175]},{"1181567":[40]},{"1181569":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,41,255]},{"1181654":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181672":[133]},{"1181674":[165,3,41,255]},{"1181679":[10,10,10,72,10,24,99,1,131,1,104,100,3,24,101,2,10,10,72,10,10,10,10,56,227,1,131,1,104,160,96,34,33,136,164,132,2,100,3,24,101]},{"1181721":[144,2,230,2,40,250,104,107,226,32,140,2,66,141,3,66,234,234,234,234,173,22,66,172,23,66,235,141,3,66,234,234,152,24,109,22,66,172,23,66,144,1,200,235,194,32,107,72,218,90,8,226,48,162]},{"1181776":[175]},{"1181778":[40]},{"1181780":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181794":[232,128,235,56,175]},{"1181800":[40]},{"1181802":[72,175]},{"1181805":[40]},{"1181807":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181825":[175]},{"1181827":[40]},{"1181829":[72,175]},{"1181832":[40]},{"1181834":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181854":[40]},{"1181856":[72,175]},{"1181859":[40]},{"1181861":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181881":[40]},{"1181883":[72,175]},{"1181886":[40]},{"1181888":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181908":[40]},{"1181910":[133,4,175]},{"1181914":[40]},{"1181916":[72,175]},{"1181919":[40]},{"1181921":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181941":[40]},{"1181943":[133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,41,255]},{"1182012":[10,72,10,10,24,99,1,131,1,104,10,72,10,10,24,99,1,131,1,104,24,105,232,3,100,6,24,101,5,133,5,40,122,250,104,107,189]},{"1182051":[153]},{"1182054":[189,2]},{"1182057":[153,2]},{"1182060":[189,4]},{"1182063":[153,64]},{"1182066":[189,6]},{"1182069":[153,66]},{"1182072":[96,189]},{"1182076":[41,255,227,9]},{"1182081":[16,153]},{"1182085":[189,2]},{"1182088":[41,255,227,9]},{"1182093":[16,153,2]},{"1182097":[189,4]},{"1182100":[41,255,227,9]},{"1182105":[16,153,64]},{"1182109":[189,6]},{"1182112":[41,255,227,9]},{"1182117":[16,153,66]},{"1182121":[96,41,255]},{"1182125":[240,3,76,96,137,76,121,137,41,255]},{"1182136":[208,6,162,150,144,76,121,137,58,58,208,6,162,150,144,76,96,137,58,208,6,162,158,144,76,96,137,58,208,6,162,166,144,76,96,137,58,208,6,162,174,144,76,96,137,58,208,6,162,182,144,76,96,137,58,208,6,162,190,144,76,96,137,162,198,144,76,96,137,165,26,41,1]},{"1182210":[240,2,128,14,32,35,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182240":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182256":[5,112,9]},{"1182260":[28,141,142,17,24,105,16]},{"1182268":[141,206,17,175,2,5,112,9]},{"1182277":[28,141,144,17,24,105,16]},{"1182285":[141,208,17,175,4,5,112,9]},{"1182294":[28,141,146,17,24,105,16]},{"1182302":[141,210,17,175,6,5,112,9]},{"1182311":[28,141,148,17,24,105,16]},{"1182319":[141,212,17,175,8,5,112,9]},{"1182328":[28,141,78,18,24,105,16]},{"1182336":[141,142,18,175,10,5,112,9]},{"1182345":[28,141,80,18,24,105,16]},{"1182353":[141,144,18,175,12,5,112,9]},{"1182362":[28,141,82,18,24,105,16]},{"1182370":[141,146,18,175,14,5,112,9]},{"1182379":[28,141,84,18,24,105,16]},{"1182387":[141,148,18,32,206,144,175,142,3,112,41,64]},{"1182400":[240,31,175,64,3,112,41,255]},{"1182409":[240,11,162,22,143,160,220,16,32,96,137,128,40,162,38,143,160,220,16,32,96,137,128,29,175,64,3,112,41,255]},{"1182440":[240,11,162,14,143,160,220,16,32,96,137,128,9,162,14,143,160,220,16,32,121,137,175,140,3,112,41,192]},{"1182469":[201,192]},{"1182472":[208,11,162,62,143,160,224,16,32,96,137,128,49,175,140,3,112,41,64]},{"1182492":[240,11,162,54,143,160,224,16,32,96,137,128,29,175,140,3,112,41,128]},{"1182512":[240,11,162,46,143,160,224,16,32,96,137,128,9,162,46,143,160,224,16,32,121,137,162,70,143,160,228,16,175,66,3,112,32,170,137,175,140,3,112,41,16]},{"1182554":[240,11,162,30,144,160,236,16,32,96,137,128,9,162,30,144,160,236,16,32,121,137,175,140,3,112,41,8]},{"1182583":[240,11,162,22,144,160,232,16,32,96,137,128,9,162,22,144,160,232,16,32,121,137,175,140,3,112,41,3]},{"1182612":[240,11,162,158,143,160,228,17,32,96,137,128,9,162,158,143,160,228,17,32,121,137,175,140,3,112,41,4]},{"1182641":[240,11,162,150,143,160,92,18,32,96,137,128,9,162,150,143,160,92,18,32,121,137,162,86,143,160,92,17,175,69,3,112,32,170,137,162,94,143,160,96,17,175,70,3,112,32,170,137,162,102,143,160,100,17,175,71,3,112,32,170,137,162,110,143,160,104,17,175,72,3,112,32,170,137,162,118,143,160,108,17,175,73,3,112,32,170,137,162,126,143,160,220,17,175,74,3,112,32,170,137,162,134,143,160,224,17,175,75,3,112,32,170,137,162,142,143,160,232,17,175,77,3,112,32,170,137,162,166,143,160,236,17,175,78,3,112,32,170,137,162,174,143,160,96,18,175,80,3,112,32,170,137,162,182,143,160,100,18,175,81,3,112,32,170,137,162,190,143,160,104,18,175,82,3,112,32,170,137,162,198,143,160,108,18,175,83,3,112,32,170,137,160,242,16,175,92,3,112,32,181,137,160,114,17,175,93,3,112,32,181,137,160,242,17,175,94,3,112,32,181,137,160,114,18,175,95,3,112,32,181,137,175,89,3,112,41,255]},{"1182879":[208,11,162,38,144,160,248,16,32,121,137,128,65,58,208,11,162,38,144,160,248,16,32,96,137,128,51,58,208,11,162,46,144,160,248,16,32,96,137,128,37,58,208,11,162,54,144,160,248,16,32,96,137,128,23,58,208,11,162,62,144,160,248,16,32,96,137,128,9,162,38,144,160,248,16,32,121,137,175,90,3,112,41,255]},{"1182964":[208,11,162,70,144,160,120,17,32,121,137,128,37,58,208,11,162,70,144,160,120,17,32,96,137,128,23,58,208,11,162,78,144,160,120,17,32,96,137,128,9,162,86,144,160,120,17,32,96,137,175,91,3,112,41,255]},{"1183021":[208,11,162,94,144,160,248,17,32,96,137,128,23,58,208,11,162,102,144,160,248,17,32,96,137,128,9,162,110,144,160,248,17,32,96,137,175,107,3,112,41,255]},{"1183064":[208,11,162,118,144,160,120,18,32,96,137,128,37,58,208,11,162,126,144,160,120,18,32,96,137,128,23,58,208,11,162,134,144,160,120,18,32,96,137,128,9,162,142,144,160,120,18,32,96,137,175,72,4,112,41,255]},{"1183121":[34,195,152,160,175,6,80,127,41,255]},{"1183132":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183146":[24,105,16,30,141,250,18,162,214,143,160,252,16,175,85,3,112,32,170,137,175,84,3,112,41,255]},{"1183173":[208,11,162,6,144,160,124,17,32,121,137,128,23,58,208,11,162,6,144,160,124,17,32,96,137,128,9,162,14,144,160,124,17,32,96,137,162,206,143,160,252,17,175,86,3,112,32,170,137,162,222,143,160,124,18,175,87,3,112,32,170,137,175,116,3,112,41,4]},{"1183242":[240,11,162,238,143,160,28,19,32,96,137,128,9,162,230,143,160,28,19,32,96,137,175,116,3,112,41,2]},{"1183271":[240,11,162,246,143,160,32,19,32,96,137,128,9,162,230,143,160,32,19,32,96,137,175,116,3,112,41,1]},{"1183300":[240,11,162,254,143,160,36,19,32,96,137,128,9,162,230,143,160,36,19,32,96,137,175,122,3,112,41,2]},{"1183329":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183353":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183377":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183401":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183425":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183449":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183473":[240,5,169,151,14,128,3,169,135,18,141,116,19,26,141,118,19,171,122,250,96,1,10,184,10,183,10,18,10,1,10,2,10,17,10,18,10,1,10,4,10,3,6,18,10]},{"1183519":[10,186,10,185,6]},{"1183525":[10]},{"1183527":[10,20,10,19,6]},{"1183533":[10,5,14,6,14]},{"1183539":[30,22,14,5,6,6,6]},{"1183547":[30,22,6,182,14,182,6,182,142,182,134]},{"1183559":[6,21,6,48,6]},{"1183565":[30,12,14,13,14,28,14,28,78,32,6,16,6,48,6,49,6,32,14,33,14,48,14,49,14,7,10,23,202,23,10,7,202,8,10,24,202,24,10,8,202,9,10,25,202,25,10,9,202,44,6,44,70,60,6,61,6,34,2,35,2,50,2,51,2,40,10,41,10,56,10,57,10,36,2,37,2,52,2,53,2,38,14,39,14,54,14,55,14,42,26,43,26,58,26,59,26,29,6,30,6,45,6,46,6,29,14,30,14,45,14,46,14,72,6,73,6,88,6,89,6,74,14,75,14,90,14,91,14,14,14,15,14,31,78,31,14,76,22,77,22,92,22,93,22,100,6,101,6,116,6,117,6,133,18,134,18,178,18,150,18,133,26,134,26,149,26,150,26,133,14,134,14,149,14,150,14,133,6,134,6,149,6,150,6,78,2,79,2,94,2,95,2,96,10,97,10,112,10,113,10,98,6,99,6,114,6,115,6,10,2,11,2,26,2,27,2,102,14,103,14,118,14,119,14,104,14,105,14,120,6,121,14,104,6,105,6,120,26,106,6,104,10,105,10,120,14,122,10,107,14,107,78,123,14,123,78,108,22,108,86,124,22,124,86,109,10,110,10,125,10,126,10,111,26,111,90,127,26,179,26,111,14,111,78,127,14,180,14,111,6,111,70,127,6,181,6,128,6,128,70,144,6,144,70,129,6,128,70,144,6,144,70,129,6,128,70,145,6,144,70,129,6,129,70,145,6,144,70,64,30,65,30,80,30,81,30,66,6,66,70,82,6,67,6,66,26,66,90,82,26,68,26,66,14,66,78,82,14,69,14,71,74,71,10,86,14,87,14,64,30,65,30,84,10,85,10,64,30,65,30,84,10,70,10,169,155,26,141,24,16,26,141,26,16,175,98,3,112,34,195,152,160,175,4,80,127,41,255]},{"1183975":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183989":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1184003":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1184017":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184041":[34,195,152,160,175,6,80,127,41,255]},{"1184052":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184066":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184080":[240,12,169,153,6,141,38,16,26,141,40,16,128,10,169,137,2,141,38,16,26,141,40,16,175,119,3,112,41,255]},{"1184111":[34,195,152,160,175,6,80,127,41,255]},{"1184122":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184136":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184153":[4,169,136,1,157]},{"1184159":[16,202,202,208,249,169,97,1,141,2,16,169,97,33,141,66,16,169,97,65,141,130,16,169,97,97,141,194,16,169,97,129,141,2,17,169,97,161,141,66,17,169,97,193,141,130,17,169,97,225,141,194,17,169,98,1,141,2,18,169,98,33,141,66,18,169,98,65,141,130,18,169,98,97,141,194,18,169,98,129,141,2,19,169,98,161,141,66,19,169,98,193,141,130,19,169,98,225,141,194,19,169]},{"1184262":[59,141,4,16,141,68,16,141,132,16,141,196,16,141,4,17,141,68,17,141,132,17,141,196,17,141,4,18,141,68,18,141,132,18,141,196,18,141,4,19,141,68,19,141,132,19,141,196,19,169,255]},{"1184314":[141,2,20,165,16,41,255]},{"1184322":[201,1]},{"1184325":[208,107,175,135,128,48,41,255]},{"1184334":[201,2]},{"1184337":[208,95,8,226,48,218,90,34,55,181,164,122,250,40,41,255]},{"1184354":[208,78,169,110,29,141,142,19,24,105,16]},{"1184366":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184379":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184392":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184405":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184418":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184431":[141,216,19,226,32,107,34,149,145,164,194,32,169,104,97,141,2,16,169,104,129,141,66,16,169,104,161,141,130,16,169,104,193,141,194,16,169,104,225,141,2,17,169,105,1,141,66,17,169,105,33,141,130,17,169,105,65,141,194,17,169,105,97,141,2,18,169,105,129,141,66,18,169,105,161,141,130,18,169,105,193,141,194,18,169,105,225,141,2,19,169,106,1,141,66,19,169,106,33,141,130,19,169,106,65,141,194,19,226,32,107,194,48,162,60]},{"1184547":[189,4,16,9]},{"1184552":[32,157,4,16,202,202,208,243,162,60]},{"1184563":[189,68,16,9]},{"1184568":[32,157,68,16,202,202,208,243,162,60]},{"1184579":[189,132,16,9]},{"1184584":[32,157,132,16,202,202,208,243,162,60]},{"1184595":[189,196,16,9]},{"1184600":[32,157,196,16,202,202,208,243,162,60]},{"1184611":[189,4,17,9]},{"1184616":[32,157,4,17,202,202,208,243,162,60]},{"1184627":[189,68,17,9]},{"1184632":[32,157,68,17,202,202,208,243,162,60]},{"1184643":[189,132,17,9]},{"1184648":[32,157,132,17,202,202,208,243,162,60]},{"1184659":[189,196,17,9]},{"1184664":[32,157,196,17,202,202,208,243,162,60]},{"1184675":[189,4,18,9]},{"1184680":[32,157,4,18,202,202,208,243,162,60]},{"1184691":[189,68,18,9]},{"1184696":[32,157,68,18,202,202,208,243,162,60]},{"1184707":[189,132,18,9]},{"1184712":[32,157,132,18,202,202,208,243,162,60]},{"1184723":[189,196,18,9]},{"1184728":[32,157,196,18,202,202,208,243,162,60]},{"1184739":[189,4,19,9]},{"1184744":[32,157,4,19,202,202,208,243,162,60]},{"1184755":[189,68,19,9]},{"1184760":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184773":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141,21,33,169,1,141]},{"1184808":[67,169,24,141,1,67,169]},{"1184816":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184831":[141,2,67,169,208,141,3,67,173]},{"1184841":[33,72,169,128,141]},{"1184847":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184864":[33,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1184892":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,153,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184929":[128,51,159]},{"1184933":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184954":[28,141,206,16,24,105,16]},{"1184962":[141,14,17,175,219,3,112,9]},{"1184971":[28,141,208,16,24,105,16]},{"1184979":[141,16,17,175,221,3,112,9]},{"1184988":[28,141,210,16,24,105,16]},{"1184996":[141,18,17,175,223,3,112,9]},{"1185005":[28,141,212,16,24,105,16]},{"1185013":[141,20,17,175,108,3,112,41,255]},{"1185023":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185037":[153]},{"1185040":[200,200,202,208,8,72,152,24,105,44]},{"1185051":[168,104,198,2,208,236,32,35,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185075":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185097":[133,200,107,165,200,208,22,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,14,169,4,128,10,201,3,208,4,169,4,128,2,169]},{"1185136":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,55,181,164,240,16,122,250,169,44,141,46,1,169,241,141,44,1,92,118,206,12,122,250,169,3,133,200,169,60,141,46,1,92,177,206,12,143]},{"1185191":[5,112,143,2,5,112,143,4,5,112,143,6,5,112,143,8,5,112,143,10,5,112,143,12,5,112,143,14,5,112,159,217,3,112,107,224,8]},{"1185229":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185243":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25]},{"1185259":[150,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185276":[141,18,11,107,110]},{"1185282":[111]},{"1185284":[112]},{"1185286":[113]},{"1185288":[115]},{"1185290":[116]},{"1185292":[117]},{"1185294":[118]},{"1185296":[120]},{"1185298":[121]},{"1185300":[122]},{"1185302":[123]},{"1185304":[112,120,128,136,152,160,168,176,192,200,208,216,139,72,218,90,8,194,48,162,176,128,160,208,80,169,15]},{"1185332":[84,127,48,40,122,250,104,171,107,218,90,72,164,4,90,164,6,90,164,8,90,164,10,90,164,12,90,164,14,90,41,248,255,168,183]},{"1185368":[143]},{"1185370":[81,127,200,200,183]},{"1185376":[143,2,81,127,200,200,183]},{"1185384":[143,4,81,127,200,200,183]},{"1185392":[143,6,81,127,169,2]},{"1185399":[133,4,34,227,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185427":[170,191]},{"1185430":[81,127,72,169]},{"1185436":[143]},{"1185438":[81,127,143,2,81,127,143,4,81,127,143,6,81,127,104,122,250,107,175,135,128,48,208,9,230,14,162,253,255,92,240,235,1,230,14,162,254,255,232,232,224,80,1,240,60,191,108,233,1,41,255,127,197,160,208,238,198,14,208,234,165]},{"1185500":[72,165,2,72,169,188,234,133]},{"1185509":[169,1]},{"1185512":[133,2,138,74,34,61,150,164,133,12,104,133,2,104,133]},{"1185528":[191,108,233,1,10,144,4,92,20,236,1,92,56,236,1,92,222,235,1,139,72,218,90,8,75,171,226,16,194,32,162]},{"1185560":[189,240,152,159]},{"1185565":[201,126,232,232,224,128,144,243,160]},{"1185575":[162]},{"1185577":[218,187,191,21,130,48,250,41,31]},{"1185587":[10,10,10,90,168,185,240,151,159,24,201,126,185,242,151,159,26,201,126,185,244,151,159,88,201,126,185,246,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,107,151,40,122,250,104,171,107,72,218,173]},{"1185647":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,1,141]},{"1185677":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185698":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185721":[33,72,169,128,141]},{"1185727":[33,169,1,141,11,66,104,141]},{"1185736":[33,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1185764":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185789":[30,22,14]},{"1185793":[6,21,6,48,6]},{"1185799":[30,12,14,13,14,28,14,28,78,98,6,99,6,114,6,115,6,10,2,11,2,26,2,27,2,32,14,33,14,48,14,49,14,133,26,134,26,149,26,150,26,7,10,23,202,23,10,7,202,8,10,24,202,24,10,8,202,9,10,25,202,25,10,9,202,44,6,44,70,60,6,61,6,34,2,35,2,50,2,51,2,36,2,37,2,52,2,53,2,38,14,39,14,54,14,55,14,40,10,41,10,56,10,57,10,42,26,43,26,58,26,59,26,64,30,65,30,80,30,81,30,66,26,66,90,82,26,83,26,29,6,30,6,45,6,46,6,72,6,73,6,88,6,89,6,74,14,75,14,90,14,91,14,76,22,77,22,92,22,93,22,78,2,79,2,94,2,95,2,14,14,15,14,31,78,31,14,100,6,101,6,116,6,117,6,109,10,110,10,125,10,126,10,111,26,111,90,127,26,127,90,129,6,129,70,145,6,145,70,130,10,131,10,146,10,147,10,132,6,132,70,148,6,148,70,47,74,47,10,62,10,63,10,136,1,136,1,136,1,136,1,138,29,136,1,76,29,104,29,77,29,78,29,136,1,136,1,160,5,161,5,136,1,164,5,165,5,136,1,168,5,169,5,136,1,172,5,173,5,136,1,176,5,177,5,136,1,139,29,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,154,29,136,1,92,29,120,29,93,29,94,29,136,1,136,1,162,5,163,5,136,1,166,5,167,5,136,1,170,5,171,5,136,1,174,5,175,5,136,1,178,5,179,5,136,1,155,29,136,1,136,1,136,1,136,1,175,74,128,48,208,3,130,76]},{"1186169":[194,48,162,64,4,169,57,14,34,124,201,27,162,188,4,169,58,14,34,172,194,27,34,172,194,27,34,172,194,27,34,172,194,27,162,60,5,34,172,194,27,34,172,194,27,34,172,194,27,34,172,194,27,162,190,5,169,144,4,34,172,194,27,34,172,194,27,169,255,255,153,18,16,130,62]},{"1186245":[194,48,162,188,3,169,57,14,34,124,201,27,162,190,3,169,58,14,34,172,194,27,34,172,194,27,162,60,4,34,172,194,27,34,172,194,27,34,172,194,27,162,188,4,34,172,194,27,34,172,194,27,34,172,194,27,169,255,255,153,18,16,169,21,53,141,45,1,226,48,175,219,242,126,9,32,143,219,242,126,169,3,141,47,1,169,1,133,20,107,175,74,128,48,41,255]},{"1186342":[208,38,169,57,14,141,188,35,26,141,190,35,26,141,192,35,26,141,60,36,26,141,62,36,26,141,64,36,26,141,188,36,26,141,190,36,26,141,192,36,107,39,39,39,39,39,39,2,2,1,1,1]},{"1186399":[39,1,1,1,1,1,2,2,39,39,39]},{"1186415":[39,1,1,1,32,1,2,2,39,39,39]},{"1186431":[39,1,1,1,1,32,2,2,2,2,2]},{"1186447":[1,1,1,1,26,1,18,1,1,2,1,1,40,46,42,43,1,1,24,24,26,1,18,1,1,44,2,45,41,47,2,2,1,1,1,1,1,1,2,1,2,46]},{"1186491":[44]},{"1186493":[78,79,1,1,1,1,1,1,2,1,2]},{"1186505":[46]},{"1186509":[2,34,1,1,2]},{"1186517":[24,18,2,2]},{"1186522":[72]},{"1186527":[1,1,2]},{"1186531":[1,1,16,26,2]},{"1186538":[72]},{"1186543":[16,16,2]},{"1186547":[1,1,1,1]},{"1186553":[72]},{"1186556":[9]},{"1186559":[2,2,2]},{"1186563":[1,1,43]},{"1186568":[9]},{"1186575":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186591":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186607":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186623":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186639":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186655":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186672":[2,2,2]},{"1186677":[2,2,2,2]},{"1186688":[2,2,2,2,41,2,2,2,2]},{"1186703":[1,1,1,1,1,1,1,1,1,1,1]},{"1186717":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186733":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186751":[1,1,67,1,1,1,1,1,2,2,2]},{"1186767":[80,2,84,81,87,87,86,86,39,39,39]},{"1186779":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186795":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186811":[72,2,2]},{"1186815":[39,2,82,83,9,1,26,16,85,85]},{"1186827":[72,2,2]},{"1186831":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186853":[9,9,9,9,9,72,9,41]},{"1186862":[75,2,2,2]},{"1186867":[8,2,2]},{"1186874":[1]},{"1186877":[32]},{"1186879":[2,2,2,2,2,2,2]},{"1186888":[1,1,1,2]},{"1186893":[8]},{"1186895":[175,74,128,48,240,10,191,128,242,126,9,64,159,128,242,126,191,128,242,126,107,175,74,128,48,240,42,169,27,141,47,1,156,198,4,100,176,156,16,7,156,228,2,156,193,15,156,26,1,156,27,1,156,28,1,156,29,1,169,2,141,44,1,169,9,141,45,1,107,169,5,141,198,4,100,176,100,200,107,175,74,128,48,240,3,169,1,107,165,138,201,67,107,175,74,128,48,41,255]},{"1186995":[240,2,128,23,169,15,2,166,138,224,51]},{"1187007":[208,4,143,168,34,126,224,47]},{"1187016":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187030":[208,5,175,135,242,126,107,169,32]},{"1187040":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187063":[191,56,157,164,197,34,176,29,191,58,157,164,197,34,144,21,191,60,157,164,197,32,176,13,191,62,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187105":[201,184]},{"1187108":[240,3,170,128,206,171,40,250,165,12,5,14,92,176,169,7,92,209,169,7,144,2,200,2,168,12,248,12,248,5]},{"1187139":[10]},{"1187141":[6,96,6,176,5,160,6,96,6,48,8,160,6,112,7,96,6,128,6,128,8,80,9,96,6,136,6,80,9]},{"1187171":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187194":[143]},{"1187196":[16,11,72,11,88,3,64,4,8,14,208,14,184,3,32,4,208,14,232,15,96,3,200,3,192,14,32,15,104,12]},{"1187227":[13,120,13,200,13,64,15,112,15,24,6,64,6,40,14,120,14,152,2,232,2,16,15,128,15,248,1,56,2,168,10,144,11,200,2,32,3,24,13,128,13,64]},{"1187270":[112]},{"1187272":[240,14,48,15,32,1,96,1,208,10]},{"1187283":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187302":[64]},{"1187304":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187318":[201,5]},{"1187321":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187337":[208,18,173,10,4,41,255]},{"1187345":[201,67]},{"1187348":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187364":[208,25,173,10,4,41,255]},{"1187372":[201,91]},{"1187375":[208,14,169,1,1,143,182,39,126,169,194,5,143,180,39,126,226,48,175,74,128,48,240,20,139,169,126,72,171,194,48,165,138,201,128]},{"1187411":[176,5,10,170,252,100,158,171,194,48,162,30]},{"1187424":[169,190,13,107,100,159,100,159,100,159,101,159,100,159,144,159,100,159,138,160,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,217,160,100,159,100,159,100,159,224,160,100,159,100,159,100,159,100,159,100,159,100,159,255,160,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,153,163,100,159,100,159,100,159,100,159,100,159,100,159,181,163,100,159,119,167,250,169,100,159,1,170,100,159,100,159,100,159,100,159,56,170,100,159,13,167,100,159,100,159,100,159,100,159,100,159,100,159,174,170,100,159,37,171,100,159,3,171,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,44,171,100,159,100,159,100,159,51,171,100,159,100,159,100,159,100,159,100,159,100,159,79,171,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,33,173,47,173,100,159,100,159,40,173,100,159,54,173,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,100,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187700":[141,186,41,169,4,1,141,188,41,169,198]},{"1187712":[141,52,42,141,56,42,141,58,42,169,52]},{"1187724":[141,224,43,96,169,17,1,141,110,32,141,236,32,169,19,1,141,112,32,141,114,32,169,18,1,141,116,32,141,238,32,141,108,33,169,22,1,141,240,32,141,110,33,169,23,1,141,242,32,169,24,1,141,244,32,169,28,1,141,112,33,169,29,1,141,114,33,169,30,1,141,116,33,169,48,1,141,226,33,141,240,33,141,226,34,141,240,34,169,35,1,141,236,33,169,36,1,141,238,33,169,52]},{"1187827":[141,242,33,169,38,1,141,244,33,169,53,1,141,98,34,141,112,34,141,98,35,141,112,35,169,54,1,141,100,34,141,102,34,141,108,34,141,110,34,169,55,1,141,104,34,141,106,34,169,60,1,141,228,34,141,230,34,141,236,34,141,238,34,169,61,1,141,232,34,141,234,34,169,68,1,141,100,35,169,69,1,141,102,35,169,70,1,141,104,35,169,71,1,141,106,35,169,179,1,141,108,35,169,180,1,141,110,35,169,57,1,141,112,41,141,108,44,169,75,1,141,114,41,141,110,44,169,107,1,141,240,41,141,236,44,169,130,1,141,242,41,141,238,44,169,52]},{"1187974":[141,74,61,96,169,27,2,141,158,37,141,162,37,141,164,37,141,28,38,141,38,38,141,154,38,141,168,38,141,26,39,141,40,39,141,154,39,141,168,39,141,30,40,141,32,40,141,34,40,141,36,40,141,40,40,141,156,40,141,166,40,141,30,41,141,36,41,169,52,1,141,158,38,141,164,38,169,52]},{"1188053":[141,38,40,96,169,52]},{"1188060":[141,46,43,96,169,241,2,141,34,36,169,242,2,141,36,36,169,132,1,141,162,36,141,34,37,169,133,1,141,164,36,141,36,37,96,169,133,4,141,36,36,141,38,36,169,84,4,141,164,36,141,166,36,169,118,4,141,34,37,169,96,4,141,36,37,141,38,37,169,215,4,141,40,37,169,221,4,141,36,38,169,222,4,141,38,38,169,224,4,141,164,38,169,225,4,141,166,38,169,228,4,141,36,39,169,229,4,141,38,39,169,52]},{"1188173":[141,164,39,141,166,39,169,109,4,141,62,36,141,188,36,141,190,36,141,62,37,141,64,36,141,192,36,141,194,36,141,64,37,169,53]},{"1188209":[141,40,44,141,174,47,169,52]},{"1188218":[141,44,44,141,46,44,141,182,44,141,54,45,141,182,45,141,182,46,141,48,47,141,54,47,141,170,47,141,176,47,141,180,47,141,182,47,169,226]},{"1188257":[141,54,44,141,168,47,169,174]},{"1188266":[141,172,44,169,175]},{"1188272":[141,174,44,169,126]},{"1188278":[141,176,44,169,127]},{"1188284":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188302":[141,44,45,169,20]},{"1188308":[141,46,45,169,21]},{"1188314":[141,48,45,169,168]},{"1188320":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188338":[141,172,45,169,28]},{"1188344":[141,174,45,169,29]},{"1188350":[141,176,45,169,118]},{"1188356":[141,178,45,169,241]},{"1188362":[141,44,46,169,78]},{"1188368":[141,46,46,169,79]},{"1188374":[141,48,46,169,217]},{"1188380":[141,50,46,169,154]},{"1188386":[141,172,46,169,155]},{"1188392":[141,174,46,169,156]},{"1188398":[141,176,46,169,149]},{"1188404":[141,178,46,169,52]},{"1188410":[141,40,48,141,44,48,169,53]},{"1188419":[141,42,48,141,50,48,169,218]},{"1188428":[141,46,48,169,226]},{"1188434":[141,48,48,169,133,4,141,36,36,141,38,36,169,84,4,141,164,36,141,166,36,169,118,4,141,34,37,169,96,4,141,36,37,141,38,37,169,215,4,141,40,37,169,221,4,141,36,38,169,222,4,141,38,38,169,224,4,141,164,38,169,225,4,141,166,38,169,228,4,141,36,39,169,229,4,141,38,39,169,52]},{"1188515":[141,164,39,141,166,39,169,134,4,141,176,38,169,135,4,141,178,38,169,84,4,141,44,39,141,46,39,169,142,4,141,48,39,169,143,4,141,50,39,169,202,4,141,172,39,169,94,4,141,174,39,169,148,4,141,176,39,169,149,4,141,178,39,169,158,4,141,180,39,169,153,4,141,44,40,169,81,4,141,48,40,169,52]},{"1188599":[141,172,40,141,174,40,141,176,40,169,84,4,141,78,39,141,80,39,169,8,6,141,82,39,169,89,4,141,206,39,141,208,39,169,94,4,141,210,39,169,81,4,141,78,40,141,80,40,141,82,40,141,46,40,169,52]},{"1188656":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188672":[240,72,169,109,4,141,62,36,169,58,14,141,188,36,169,59,14,141,190,36,169,62,14,141,60,37,169,63,14,141,62,37,169,144,4,141,190,37,169,57,14,141,64,36,169,60,14,141,192,36,169,61,14,141,194,36,169,64,14,141,64,37,169,65,14,141,66,37,169,145,4,141,192,37,169,1,1,143,44,34,126,169,1,1,143,82,34,126,96,169,52]},{"1188764":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188785":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188801":[141,82,32,141,84,32,141,86,32,141,88,32,141,90,32,141,92,32,141,94,32,141,230,33,141,232,33,141,234,33,141,236,33,141,238,33,141,240,33,169,210]},{"1188843":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188864":[141,210,32,141,212,32,141,214,32,141,216,32,141,218,32,141,220,32,141,222,32,141,82,33,141,84,33,141,86,33,141,88,33,141,90,33,141,92,33,141,94,33,141,102,34,141,104,34,141,106,34,141,108,34,141,110,34,141,112,34,141,204,34,169,208]},{"1188930":[141,224,32,141,98,33,141,228,33,169,83,1,141,80,33,141,206,33,141,208,33,141,80,34,141,206,34,169,200]},{"1188960":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188978":[141,210,33,141,212,33,141,214,33,141,216,33,141,218,33,141,220,33,141,222,33,141,76,34,169,202]},{"1189005":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189026":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189044":[141,210,34,141,212,34,141,214,34,141,80,35,141,82,35,141,84,35,141,86,35,141,208,35,141,210,35,141,212,35,141,214,35,141,82,36,141,84,36,141,86,36,141,88,36,141,212,36,141,214,36,141,84,37,141,86,37,141,212,37,141,214,37,141,86,38,169,211]},{"1189113":[141,226,34,169,2,3,141,228,34,169,204]},{"1189125":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189149":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189170":[141,100,35,141,228,35,141,220,37,141,92,38,141,220,38,141,92,39,169,171,6,141,102,35,141,230,35,141,102,36,141,228,36,141,230,36,141,96,39,169,170]},{"1189212":[141,104,35,169,132,3,141,106,35,141,110,35,141,236,35,141,106,36,141,232,36,141,234,36,141,236,36,141,238,36,169,171]},{"1189245":[141,108,35,169,89,7,141,200,35,141,74,36,141,204,36,141,78,37,141,208,38,141,82,39,141,212,39,169,87,7,141,202,35,141,76,36,141,206,36,141,80,37,141,210,38,141,84,39,169,255,1,141,204,35,141,78,36,141,208,36,141,82,38,141,212,38,141,86,39,169,124,1,141,206,35,141,80,36,141,210,36,141,84,38,141,214,38,169,92,1,141,224,35,169]},{"1189340":[1,141,90,36,141,216,36,169,194,1,141,92,36,169,24,2,141,94,36,169,98,1,141,96,36,169,6,1,141,98,36,141,224,36,141,92,37,169,7,1,141,100,36,141,226,36,169,4,1,141,218,36,141,88,37,169,212,1,141,220,36,169,25,2,141,222,36,169,121,1,141,82,37,141,210,37,169,5,1,141,90,37,169,102,1,141,94,37,169,102,7,141,96,37,169,180,6,141,98,37,141,100,37,141,102,37,141,104,37,141,106,37,141,108,37,141,110,37,141,112,37,169,229,6,141,208,37,141,80,38,169,196]},{"1189473":[141,218,37,141,90,38,141,218,38,141,90,39,169,113,1,141,222,37,169,101,1,141,228,37,141,230,37,141,232,37,141,234,37,141,236,37,141,238,37,141,240,37,169,228,6,141,210,39,141,82,40,141,84,40,141,86,40,141,212,40,141,214,40,141,86,41,141,88,41,141,216,41,141,218,41,169,225,6,141,214,39,169,253,2,141,216,39,141,88,40,169,207]},{"1189566":[141,218,39,169,231,6,141,216,40,141,90,41,141,220,41,169,105,7,141,248,56,169,225,6,141,250,56,141,252,56,141,254,56,169,227,6,141,120,57,169,229,2,141,122,57,141,126,57,169,236,2,141,124,57,169,240,2,141,248,57,169,243,2,141,250,57,141,252,57,141,254,57,169,52]},{"1189641":[141,148,61,96,169,229,2,141,174,39,141,44,40,141,46,40,141,50,40,141,172,40,141,174,40,141,40,41,141,44,41,141,168,41,141,176,41,141,40,42,141,48,42,141,172,42,141,178,42,169,138,7,141,170,40,141,176,40,141,170,42,141,42,43,141,48,43,141,174,43,169,235,2,141,180,40,141,48,41,141,174,41,141,44,42,141,50,42,141,174,42,169,236,2,141,52,41,141,40,43,141,44,43,141,46,43,141,50,43,96,169,213,1,141,134,36,169,101,1,141,6,37,169,102,1,141,8,37,141,138,37,169,198]},{"1189775":[141,134,37,141,8,38,141,136,38,141,8,39,141,136,39,141,6,40,141,8,40,169,113,1,141,136,37,169,28,2,141,10,38,141,138,38,141,10,39,141,138,39,169,52]},{"1189820":[141,14,39,141,142,39,141,144,39,141,14,40,141,16,40,141,18,40,141,20,40,141,22,40,141,24,40,141,26,40,141,28,40,141,142,40,141,146,40,141,148,40,141,150,40,141,152,40,141,154,40,141,156,40,141,158,40,141,14,41,141,16,41,141,18,41,141,24,41,141,26,41,141,28,41,141,30,41,141,32,41,141,140,41,141,142,41,141,144,41,141,146,41,141,152,41,141,154,41,141,158,41,141,160,41,141,6,42,141,8,42,141,10,42,141,12,42,141,16,42,141,18,42,141,20,42,141,22,42,141,24,42,141,28,42,141,30,42,141,132,42,141,134,42,141,136,42,141,140,42,141,142,42,141,144,42,141,146,42,141,148,42,141,150,42,141,152,42,141,154,42,141,156,42,141,6,43,141,10,43,141,14,43,141,18,43,141,26,43,141,132,43,141,134,43,141,136,43,141,138,43,141,142,43,141,146,43,141,148,43,141,152,43,141,154,43,141,4,44,141,8,44,141,10,44,141,14,44,141,18,44,141,20,44,141,24,44,141,134,44,141,136,44,141,138,44,141,144,44,141,146,44,141,148,44,141,152,44,141,10,45,141,12,45,141,16,45,141,20,45,141,22,45,141,138,45,141,140,45,141,142,45,141,148,45,169,106,1,141,140,39,141,12,40,141,130,42,141,2,43,141,130,43,141,2,44,141,130,44,169,250,1,141,140,40,169,218]},{"1190138":[141,144,40,141,156,41,141,20,43,141,22,43,141,24,43,141,150,43,141,22,44,141,150,44,141,8,45,141,146,45,169,134,1,141,12,41,141,138,41,141,4,42,169,54]},{"1190183":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190201":[141,134,41,169,229]},{"1190207":[141,136,41,169]},{"1190212":[1,141,162,41,169,113]},{"1190219":[141,14,42,141,26,42,141,140,44,169,92,1,141,32,42,141,158,42,141,28,43,141,154,44,141,24,45,141,150,45,169,4,1,141,34,42,169,212,1,141,36,42,169,53]},{"1190264":[141,138,42,141,8,43,141,6,44,141,14,45,141,144,45,169,98,1,141,160,42,141,30,43,141,156,43,141,26,45,141,152,45,169,226]},{"1190300":[141,4,43,141,12,43,141,16,43,141,140,43,141,144,43,141,12,44,141,16,44,141,142,44,169,248]},{"1190327":[141,26,44,169,206]},{"1190333":[141,28,44,141,156,44,169,96,1,141,132,44,141,6,45,141,136,45,169,103,1,141,4,45,141,134,45,169,114,1,141,8,46,169,94,1,141,10,46,141,12,46,141,14,46,141,16,46,141,18,46,141,20,46,169,116,1,141,22,46,96,169,52]},{"1190397":[141,168,34,96,169,241,2,141,176,43,169,242,2,141,178,43,169,132,1,141,48,44,169,133,1,141,50,44,169,146,3,141,176,44,169,147,3,141,178,44,169,148,3,141,48,45,169,149,3,141,50,45,169,52]},{"1190452":[141,86,47,96,169,116,7,141]},{"1190461":[40,169,225,6,141,2,40,169,87,7,141,4,40,141,134,40,169,121,7,141,128,40,169,236,2,141,130,40,169,89,7,141,132,40,141,6,41,169,229,2,141]},{"1190503":[41,141,2,41,141,4,41,169,106,7,141,8,41,169,243,2,141,128,41,141,130,41,169,241,2,141,132,41,169,242,2,141,134,41,169,138,3,141,136,41,169,132,1,141,4,42,141,132,42,141,4,43,141,132,43,169,133,1,141,6,42,141,134,42,141,6,43,141,134,43,96,169,150,14,141,94,35,141,222,35,141,94,36,141,222,36,141,94,37,169,151,14,141,96,35,141,224,35,141,96,36,141,224,36,141,96,37,169,148,14,141,222,37,169,149,14,141,224,37,169,128,1,141,94,39,169,129,1,141,96,39,169,132,1,141,222,39,141,94,40,169,133,1,141,224,39,141,96,40,169,18,2,141,224,43,96,169,152,3,141,160,37,169,34,5,141,162,37,169,37,1,141,32,38,169,38,1,141,34,38,169,57,2,141,158,38,141,164,38,96,169,57,2,141,74,61,96,169,15,2,141,46,43,96,169,243,2,141,34,36,141,36,36,169,201]},{"1190719":[141,162,36,141,164,36,169,227]},{"1190728":[141,34,37,141,36,37,96,169,35,3,141,182,57,169,36,3,141,184,57,141,186,57,141,188,57,141,190,57,169,254,2,141,52,58,169,255,2,141,54,58,169,38,3,141,56,58,141,58,58,141,60,58,141,62,58,169,157,3,141,178,58,169,3,3,141,180,58,169,50,2,141,182,58,141,52,59,169,51,2,141,184,58,141,186,58,141,188,58,141,190,58,169,162,3,141,50,59,169,53,2,141,54,59,141,180,59,169,106,4,141,56,59,169,51,3,141,58,59,141,60,59,141,62,59,169,52]},{"1190855":[141,182,59,141,186,59,141,188,59,141,58,60,141,60,60,141,62,60,141,28,50,141,156,50,141,160,50,169,113]},{"1190885":[141,30,50,169,218]},{"1190891":[141,32,50,141,154,50,169,225]},{"1190900":[141,158,50,169,130,3,141,24,51,169,124,3,141,34,51,169,27,2,141,24,50,141,34,50,141,152,50,141,162,50,141,26,51,141,28,51,141,30,51,141,32,51,169,226]},{"1190945":[141,26,50,169,242]},{"1190951":[141,184,59,169,8,1,141,56,60,169,52]},{"1190963":[141,190,59,175,197,243,126,41,255]},{"1190973":[201,3]},{"1190976":[208,6,169,18,2,141,190,59,169,36,3,141,192,57,141,194,57,141,196,57,169,37,3,141,198,57,169,213,2,141,200,57,141,210,57,169,204,2,141,204,57,141,212,57,169,38,3,141,64,58,141,66,58,141,68,58,169,39,3,141,70,58,169,247,2,141,72,58,169,227,2,141,76,58,141,78,58,169,51,2,141,192,58,141,194,58,141,196,58,169,52,2,141,198,58,141,72,59,169,246,2,141,200,58,169,150,3,141,202,58,169,51,3,141,64,59,141,66,59,169,170,3,141,68,59,169,163,3,141,70,59,141,200,59,169,151,3,141,74,59,169,52]},{"1191119":[141,192,59,141,194,59,141,198,59,141,64,60,141,66,60,169,156,2,141,196,59,169,10,1,141,68,60,169,11,1,141,70,60,141,72,60,141,74,60,141,76,60,141,78,60,141,80,60,141,82,60,141,84,60,141,86,60,141,88,60,141,90,60,141,92,60,141,94,60,141,96,60,141,98,60,141,100,60,141,102,60,96,169,15,2,141,178,43,96,169,15,2,141,168,34,96,169,57,2,141,148,61,96,169,57,2,141,80,47,169,163,11,141,82,47,141,206,47,141,208,47,169,163,11,141,84,48,141,86,48,141,88,48,141,90,48,141,84,50,141,86,50,141,88,50,141,90,50,169,172,11,141,212,48,169,173,11,141,214,48,141,86,49,141,214,49,169,169,11,141,216,48,141,88,49,141,216,49,169,170,11,141,218,48,169,197,11,141,84,49,169,200,11,141,90,49,169,202,11,141,212,49,169,205,11,141,218,49,96,226,48,175,201,80,127,208,31,175,67,243,126,32,133,176,194,32,166,6,138,9]},{"1191350":[36,143,90,199,126,166,7,138,9]},{"1191360":[36,143,92,199,126,128,14,194,32,169,49,36,143,90,199,126,26,143,92,199,126,175,98,243,126,32,35,176,166,4,138,9]},{"1191393":[36,143,80,199,126,166,5,138,9]},{"1191403":[36,143,82,199,126,166,6,138,9]},{"1191413":[36,143,84,199,126,166,7,138,9]},{"1191423":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,133,176,194,32,166,6,138,9]},{"1191456":[36,143,96,199,126,166,7,138,9]},{"1191466":[36,143,98,199,126,128,14,194,32,169,49,36,143,96,199,126,26,143,98,199,126,226,32,175,103,129,48,208,3,130,122]},{"1191498":[175,24,244,126,32,94,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191520":[36,143,44,199,126,166,6,138,9]},{"1191530":[36,143,46,199,126,166,7,138,9]},{"1191540":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,94,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191576":[36,143,52,199,126,166,6,138,9]},{"1191586":[36,143,54,199,126,166,7,138,9]},{"1191596":[36,143,56,199,126,128,17,194,32,169,127,32,143,50,199,126,143,52,199,126,143,54,199,126,194,32,175,60,128,48,41,255]},{"1191629":[240,4,34,159,176,164,226,32,175,111,243,126,201,255,240,34,32,133,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191660":[9]},{"1191662":[36,143,100,199,126,166,7,138,9]},{"1191672":[36,143,102,199,126,128,17,194,32,169,127,36,143,100,199,126,143,102,199,126,143,38,199,126,175,110,243,126,41,255]},{"1191703":[24,105,7]},{"1191707":[41,248,255,170,175,202,80,127,41,255]},{"1191718":[208,3,130,215]},{"1191723":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191736":[165,26,41,12]},{"1191741":[74,74,240,58,201,1]},{"1191748":[240,98,201,2]},{"1191753":[208,3,130,180]},{"1191758":[191,15,254,13,41,255,239,143,70,199,126,191,17,254,13,41,255,239,143,134,199,126,191,19,254,13,41,255,239,143,198,199,126,191,21,254,13,41,255,239,143,6,200,126,107,191,15,254,13,41,255,231,143,70,199,126,191,17,254,13,41,255,231,143,134,199,126,191,19,254,13,41,255,231,143,198,199,126,191,21,254,13,41,255,231,143,6,200,126,107,191,15,254,13,41,255,235,143,70,199,126,191,17,254,13,41,255,235,143,134,199,126,191,19,254,13,41,255,235,143,198,199,126,191,21,254,13,41,255,235,143,6,200,126,107,191,15,254,13,41,255,227,143,70,199,126,191,17,254,13,41,255,227,143,134,199,126,191,19,254,13,41,255,227,143,198,199,126,191,21,254,13,41,255,227,143,6,200,126,107,191,15,254,13,143,70,199,126,191,17,254,13,143,134,199,126,191,19,254,13,143,198,199,126,191,21,254,13,143,6,200,126,107,160,144,201,232,3,144,6,200,233,232,3,128,245,132,4,160,144,201,100]},{"1191991":[144,6,200,233,100]},{"1191997":[128,245,132,5,160,144,201,10]},{"1192006":[144,6,200,233,10]},{"1192012":[128,245,132,6,160,144,201,1]},{"1192021":[144,4,200,58,208,252,132,7,96,160,144,201,100,144,5,200,233,100,128,247,132,5,160,144,201,10,144,5,200,233,10,128,247,132,6,160,144,201,1,144,4,200,58,208,252,132,7,96,160,144,201,10,144,5,200,233,10,128,247,132,6,160,144,201,1,144,4,200,58,208,252,132,7,96,166,27,208,1,107,174,12,4,224,255,208,1,107,201,2]},{"1192111":[240,11,175,100,243,126,63,224,176,164,208,1,107,124,252,176,32,133,176,194,32,166,6,138,9]},{"1192137":[36,143,148,199,126,166,7,138,9]},{"1192147":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192161":[128]},{"1192163":[64]},{"1192165":[32]},{"1192167":[16]},{"1192169":[8]},{"1192171":[4]},{"1192173":[2]},{"1192175":[1,128]},{"1192178":[64]},{"1192180":[32]},{"1192182":[16]},{"1192184":[8]},{"1192186":[4]},{"1192188":[24,177,24,177,51,177,76,177,104,177,129,177,154,177,179,177,204,177,231,177,2,178,29,178,54,178,81,178,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,52,244,126,74,74,74,74,76,191,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,191,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,53,244,126,74,74,74,74,74,76,191,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,191,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,191,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,191,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,191,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,74,74,74,74,76,191,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,74,74,74,74,76,191,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,53,244,126,41,28,74,74,76,191,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,191,176,169,145,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,57,244,126,74,74,74,74,76,191,176,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,191,176,107,159]},{"1192558":[4,112,159]},{"1192562":[5,112,159]},{"1192566":[6,112,159]},{"1192570":[7,112,159]},{"1192574":[8,112,159]},{"1192578":[9,112,159]},{"1192582":[10,112,159]},{"1192586":[11,112,159]},{"1192590":[12,112,159]},{"1192594":[13,112,159]},{"1192598":[14,112,159]},{"1192602":[15,112,107,159]},{"1192607":[244,126,159]},{"1192611":[101,127,159]},{"1192615":[102,127,159]},{"1192619":[103,127,159]},{"1192623":[104,127,159]},{"1192627":[105,127,159]},{"1192631":[106,127,159]},{"1192635":[107,127,159]},{"1192639":[108,127,159]},{"1192643":[109,127,159]},{"1192647":[110,127,159]},{"1192651":[111,127,107,72,226,48,173]},{"1192659":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169]},{"1192687":[141]},{"1192689":[67,169,128,141,1,67,169]},{"1192697":[141,129,33,169,101,141,130,33,169,127,141,131,33,156,2,67,169,5,141,3,67,169,112,141,4,67,169]},{"1192725":[141,5,67,169,11,141,6,67,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1192765":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192780":[72,171,173]},{"1192784":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141]},{"1192814":[67,141,1,67,169]},{"1192820":[141,129,33,169,101,141,130,33,169,127,141,131,33,156,2,67,169,5,141,3,67,169,112,141,4,67,169]},{"1192848":[141,5,67,169,11,141,6,67,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1192888":[67,194,48,171,104,162]},{"1192896":[138,107,165,17,34,156,135]},{"1192904":[215,179,164,239,179,164,14,180,164,15,181,164,37,181,164,169,128,141,16,7,34,61,137]},{"1192928":[34,51,131]},{"1192932":[34,153,148,164,169,7,133,20,230,17,107,32,46,182,100,200,100,201,34,55,181,164,208,11,162,15,169]},{"1192960":[159]},{"1192962":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,158,182,165,246,41,16,240,3,32,234,183,165,246,41,32,240,3,32,247,183,165,244,41,1,240,17,165,201,26,201,36,144,3,56,233,36,133,201,169,32,141,47,1,165,244,41,2,240,15,165,201,58,16,3,24,105,36,133,201,169,32,141,47,1,165,244,41,4,240,19,165,201,24,105,9,201,36,144,3,56,233,36,133,201,169,32,141,47,1,165,244,41,8,240,17,165,201,56,233,9,16,3,24,105,36,133,201,169,32,141,47,1,165,244,5,246,41,192,240,77,166,201,191,235,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,247,183,128,52,201,242,208,5,32,234,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193153":[16,112,138,26,41,15,133,200,208,7,156,46,1,230,17,128,13,169,43,141,46,1,165,244,41,16,240,2,230,17,32,156,183,32,81,183,169,1,133,20,171,107,1,2,3,4,5,6,7,8,240,9,10,11,12,13,14,15,16,241,17,18,19,20,21,22,23,24,242,25,26,27,28,29,30,31,32,243,34,55,181,164,208,8,169,60,141,46,1,198,17,107,169,27,141,47,1,230,17,107,169,1,133,16,169,1,133,17,100,176,156,157,11,100,200,100,201,107,218,90,162,15,191]},{"1193277":[16,112,208,3,130,161]},{"1193284":[202,16,244,194,32,162,14,169]},{"1193294":[159,208,80,127,202,202,16,248,32,234,181,175,186,128,48,143,218,80,127,175,188,128,48,143,220,80,127,175,190,128,48,143,222,80,127,175,192,128,48,143]},{"1193335":[81,127,175,194,128,48,143,2,81,127,175,196,128,48,143,4,81,127,175,198,128,48,143,6,81,127,169,2]},{"1193364":[133,4,34,227,178,160,226,32,175]},{"1193374":[81,127,201,49,208,65,175,1,81,127,201,65,208,57,175,2,81,127,201,89,208,49,175,3,81,127,201,38,208,41,175,4,81,127,201,83,208,33,175,5,81,127,201,88,208,25,175,6,81,127,201,151,208,17,175,7,81,127,201,147,208,9,122,250,169,1,143,158,80,127,107,122,250,169]},{"1193449":[107,169]},{"1193453":[133]},{"1193455":[133,2,169,11]},{"1193460":[133,4,166]},{"1193464":[191]},{"1193466":[16,112,58,41,31]},{"1193472":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193497":[16,6,24,105,8]},{"1193503":[230,2,133,4,165]},{"1193509":[26,133]},{"1193512":[201,16]},{"1193515":[144,201,96,173]},{"1193520":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169]},{"1193548":[141]},{"1193550":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,198,141,2,67,169,185,141,3,67,169,164,141,4,67,169,98,141,5,67,169,1,141,6,67,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1193628":[67,96,194,32,165,200,41,255]},{"1193637":[10,170,191,233,182,164,24,105,132,96,235,143,2,17]},{"1193652":[165,201,41,255]},{"1193657":[10,170,191,9,183,164,24,105,163,97,235,143,18,17]},{"1193672":[235,24,105,32]},{"1193677":[235,143,30,17]},{"1193682":[235,24,105,3]},{"1193687":[235,143,38,17]},{"1193692":[235,24,105,61]},{"1193697":[235,143,46,17]},{"1193702":[226,32,96,64]},{"1193707":[67]},{"1193709":[70]},{"1193711":[73]},{"1193713":[76]},{"1193715":[79]},{"1193717":[82]},{"1193719":[85]},{"1193721":[160]},{"1193723":[163]},{"1193725":[166]},{"1193727":[169]},{"1193729":[172]},{"1193731":[175]},{"1193733":[178]},{"1193735":[181]},{"1193737":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193757":[66]},{"1193759":[69]},{"1193761":[72]},{"1193763":[75]},{"1193765":[78]},{"1193767":[81]},{"1193769":[84]},{"1193771":[87]},{"1193773":[159]},{"1193775":[162]},{"1193777":[165]},{"1193779":[168]},{"1193781":[171]},{"1193783":[174]},{"1193785":[177]},{"1193787":[180]},{"1193789":[183]},{"1193791":[255]},{"1193793":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193816":[10,170,191,233,182,164,24,105,132,96,235,143,10,17]},{"1193831":[165,201,41,255]},{"1193836":[10,170,191,9,183,164,24,105,163,97,235,143,58,17]},{"1193851":[235,24,105,32]},{"1193856":[235,143,70,17]},{"1193861":[235,24,105,3]},{"1193866":[235,143,78,17]},{"1193871":[235,24,105,61]},{"1193876":[235,143,86,17]},{"1193881":[226,32,96,194,48,162,15]},{"1193889":[191]},{"1193891":[16,112,41,255]},{"1193896":[155,10,10,10,133]},{"1193902":[152,10,10,10,10,133,3,166]},{"1193911":[191,232,151,164,166,3,157,6,16,166]},{"1193922":[191,234,151,164,166,3,157,8,16,166]},{"1193933":[191,236,151,164,166,3,157,14,16,166]},{"1193944":[191,238,151,164,166,3,157,16,16,187,202,48,2,128,186,226,48,96,169,43,141,46,1,165,200,26,41,15,133,200,96,169,43,141,46,1,165,200,58,41,15,133,200,96,97,163]},{"1193991":[51,1,10,2,10]},{"1193997":[2,5,14,6,14]},{"1194003":[2]},{"1194005":[6,21,6]},{"1194009":[2,12,14,13,14]},{"1194015":[2,98,6,99,6]},{"1194021":[2,10,2,11,2]},{"1194027":[2,32,14,33,14]},{"1194033":[2,133,26,134,26]},{"1194039":[2,171,30,171,30,97,195]},{"1194047":[51,17,10,18,10]},{"1194053":[2]},{"1194055":[30,22,14]},{"1194059":[2,48,6]},{"1194063":[30]},{"1194065":[2,28,14,28,78]},{"1194071":[2,114,6,115,6]},{"1194077":[2,26,2,27,2]},{"1194083":[2,48,14,49,14]},{"1194089":[2,149,26,150,26]},{"1194095":[2,171,30,171,30,98,3]},{"1194103":[51,7,10,23,202]},{"1194109":[2,8,10,24,202]},{"1194115":[2,9,10,25,202]},{"1194121":[2,44,6,44,70]},{"1194127":[2,34,2,35,2]},{"1194133":[2,36,2,37,2]},{"1194139":[2,38,14,39,14]},{"1194145":[2,40,10,41,10]},{"1194151":[2,138,29]},{"1194155":[2,98,35]},{"1194159":[51,23,10,7,202]},{"1194165":[2,24,10,8,202]},{"1194171":[2,25,10,9,202]},{"1194177":[2,60,6,61,6]},{"1194183":[2,50,2,51,2]},{"1194189":[2,52,2,53,2]},{"1194195":[2,54,14,55,14]},{"1194201":[2,56,10,57,10]},{"1194207":[2,154,29]},{"1194211":[2,98,99]},{"1194215":[51,42,26,43,26]},{"1194221":[2,64,30,65,30]},{"1194227":[2,66,26,66,90]},{"1194233":[2,29,6,30,6]},{"1194239":[2,72,6,73,6]},{"1194245":[2,74,14,75,14]},{"1194251":[2,76,22,77,22]},{"1194257":[2,78,2,79,2]},{"1194263":[2]},{"1194265":[2,139,29,98,131]},{"1194271":[51,58,26,59,26]},{"1194277":[2,80,30,81,30]},{"1194283":[2,82,26,83,26]},{"1194289":[2,45,6,46,6]},{"1194295":[2,88,6,89,6]},{"1194301":[2,90,14,91,14]},{"1194307":[2,92,22,93,22]},{"1194313":[2,94,2,95,2]},{"1194319":[2]},{"1194321":[2,155,29,98,195]},{"1194327":[51,14,14,15,14]},{"1194333":[2,100,6,101,6]},{"1194339":[2,109,10,110,10]},{"1194345":[2,111,26,111,90]},{"1194351":[2,129,6,129,70]},{"1194357":[2,130,10,131,10]},{"1194363":[2,132,6,132,70]},{"1194369":[2,47,74,47,10]},{"1194375":[2,103,94,103,30,98,227]},{"1194383":[51,31,78,31,14]},{"1194389":[2,116,6,117,6]},{"1194395":[2,125,10,126,10]},{"1194401":[2,127,26,127,90]},{"1194407":[2,145,6,145,70]},{"1194413":[2,146,10,147,10]},{"1194419":[2,148,6,148,70]},{"1194425":[2,62,10,63,10]},{"1194431":[2,103,222,103,158,255,255,96,132]},{"1194441":[3,134,29,134,29,96,164]},{"1194449":[3,150,29,150,29,96,135]},{"1194457":[3,134,29,134,29,96,167]},{"1194465":[3,150,29,150,29,96,138]},{"1194473":[3,134,29,134,29,96,170]},{"1194481":[3,150,29,150,29,96,141]},{"1194489":[3,134,29,134,29,96,173]},{"1194497":[3,150,29,150,29,96,144]},{"1194505":[3,134,29,134,29,96,176]},{"1194513":[3,150,29,150,29,96,147]},{"1194521":[3,134,29,134,29,96,179]},{"1194529":[3,150,29,150,29,96,150]},{"1194537":[3,134,29,134,29,96,182]},{"1194545":[3,150,29,150,29,96,153]},{"1194553":[3,134,29,134,29,96,185]},{"1194561":[3,150,29,150,29,96,228]},{"1194569":[3,134,29,134,29,97,4]},{"1194577":[3,150,29,150,29,96,231]},{"1194585":[3,134,29,134,29,97,7]},{"1194593":[3,150,29,150,29,96,234]},{"1194601":[3,134,29,134,29,97,10]},{"1194609":[3,150,29,150,29,96,237]},{"1194617":[3,134,29,134,29,97,13]},{"1194625":[3,150,29,150,29,96,240]},{"1194633":[3,134,29,134,29,97,16]},{"1194641":[3,150,29,150,29,96,243]},{"1194649":[3,134,29,134,29,97,19]},{"1194657":[3,150,29,150,29,96,246]},{"1194665":[3,134,29,134,29,97,22]},{"1194673":[3,150,29,150,29,96,249]},{"1194681":[3,134,29,134,29,97,25]},{"1194689":[3,150,29,150,29,96,196]},{"1194697":[3]},{"1194699":[2]},{"1194701":[2,96,196]},{"1194705":[3,103,222,103,158,97,130]},{"1194713":[7]},{"1194715":[2]},{"1194717":[2]},{"1194719":[2]},{"1194721":[2,97,162,128,3]},{"1194727":[2]},{"1194729":[2,97,165,128,3]},{"1194735":[2]},{"1194737":[2,97,226]},{"1194741":[7]},{"1194743":[2]},{"1194745":[2]},{"1194747":[2]},{"1194749":[2,97,130]},{"1194753":[7,187,26,188,26,188,90,187,90,97,162,128,3,189,26,189,154,97,165,128,3,189,90,189,218,97,226]},{"1194781":[7,187,154,188,154,188,218,187,218,255,255,165,160,201,240,208,2,128,33,201,241,208,2,128,27,201,176,208,2,128,21,201,208,208,2,128,15,192]},{"1194820":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,72,175,67,244,126,208,34,175,46,244,126,56,239,63,80,127,201,30,144,21,175,46,244,126,143,63,80,127,175,32,244,126,26,201,100,240,4,143,32,244,126,104,34,223,147,9,107,72,175,67,244,126,208,19,165,16,201,23,208,13,175,45,244,126,26,201,100,240,4,143,45,244,126,104,107,72,175,67,244,126,208,9,175,45,244,126,58,143,45,244,126,104,107,191,31,195,1,128,71,34,61,137]},{"1194947":[175,130,129,48,41,2,240,32,173,14,1,201,123,208,25,175,142,243,126,41,64,240,17,175,64,243,126,240,11,201,3,176,7,24,105,2,143,64,243,126,128,25,34,97,184,2,128,19,175,199,80,127,240,9,34,179,145,7,169]},{"1195007":[141,1,3,169,15,133,16,72,8,175,67,244,126,208,16,194,32,175,60,244,126,26,201,231,3,240,4,143,60,244,126,40,104,107,175,67,244,126,208,9,175,75,244,126,26,143,75,244,126,34,6,188,164,107,143,111,243,126,218,175,67,244,126,208,4,34,239,192,160,34,105,156,160,90,160,24,34,85,185,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,239,192,160,34,105,156,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195126":[208,11,40,90,160,24,34,85,185,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,105,156,160,107,72,175,67,244,126,208,4,34,125,193,160,104,107,72,175,67,244,126,208,15,175,109,243,126,208,9,175,73,244,126,26,143,73,244,126,104,107,159,92,243,126,72,175,67,244,126,208,9,175,83,244,126,26,143,83,244,126,104,107,169,1,141,233,2,72,175,67,244,126,208,9,175,66,244,126,26,143,66,244,126,104,107,72,175,67,244,126,208,9,175,66,244,126,58,143,66,244,126,104,107,72,175,67,244,126,208,9,175,35,244,126,58,143,35,244,126,104,107,34,97,184,2,72,175,67,244,126,208,31,72,218,175,39,244,126,26,41,15,170,175,39,244,126,41,240,143,39,244,126,138,15,39,244,126,143,39,244,126,250,104,104,107,72,175,67,244,126,208,15,175,202,243,126,240,9,175,58,244,126,26,143,58,244,126,104,76,6,188,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,6,188,164,104,34,168,160,2,107,58,16,8,169]},{"1195382":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195396":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,6,188,169,1,143]},{"1195422":[80,127,156,70,6,156,66,6,76,6,188,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,125,193,160,175,36,244,126,24,105,64,143,36,244,126,175,60,244,126,58,143,60,244,126,175,37,244,126,74,74,74,74,24,111,37,244,126,143,55,80,127,175,38,244,126,74,74,74,74,24,111,38,244,126,24,111,55,80,127,41,15,143,55,80,127,175,62,244,126,56,239,46,244,126,143,56,80,127,175,63,244,126,239,47,244,126,143,57,80,127,175,64,244,126,239,48,244,126,143,58,80,127,175,65,244,126,239,49,244,126,143,59,80,127,175,43,244,126,24,111,98,243,126,143,60,80,127,175,44,244,126,111,99,243,126,143,61,80,127,175,35,244,126,56,239,66,244,126,143,62,80,127,40,250,104,169,25,133,16,100,17,100,176,107,8,226,32,175,127,83,127,58,240,3,40,24,107,169,255,143,127,83,127,175]},{"1195634":[83,127,201,4,208,26,90,175,8,83,127,168,175,9,83,127,208,7,34,157,153,7,122,128,101,34,157,153,7,122,128,94,201,2,208,10,175,12,83,127,34,173,150,160,128,80,201,5,208,30,175,8,83,127,170,175,9,83,127,159,46,1,126,194,48,175,10,83,127,170,175,12,83,127,34,80,193,164,226,48,201,128,208,8,175,255,83,127,240,2,24,107,169,1,143,136,83,127,169]},{"1195734":[143,137,83,127,143,138,83,127,143,139,83,127,169,128,143,128,83,127,169,1,143,255,83,127,56,107,169]},{"1195762":[143,127,83,127,40,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1195808":[143,138,83,127,169,240,143,139,83,127,169,1,143,128,83,127,169,1,143,255,83,127,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1195871":[143,138,83,127,169,241,143,139,83,127,169,1,143,128,83,127,169,1,143,255,83,127,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1195934":[143,138,83,127,169,242,143,139,83,127,169,1,143,128,83,127,169,1,143,255,83,127,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1195997":[143,138,83,127,165,118,56,233,88,143,139,83,127,169,3,143,128,83,127,169,1,143,255,83,127,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1196063":[143,138,83,127,169,240,143,139,83,127,169,3,143,128,83,127,169,1,143,255,83,127,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1196126":[143,138,83,127,169,241,143,139,83,127,169,3,143,128,83,127,169,1,143,255,83,127,56,107,175,255,83,127,240,2,24,107,165,27,143,136,83,127,240,14,165,160,143,137,83,127,165,161,143,138,83,127,128,13,173,10,4,143,137,83,127,169]},{"1196189":[143,138,83,127,169,242,143,139,83,127,169,3,143,128,83,127,169,1,143,255,83,127,56,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,211,192,34,231,244,30,32,19,193,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,243,133,8,169,192,105]},{"1196264":[133,9,34,117,223,5,34,92,220,6,96]},{"1196277":[247,255,198]},{"1196282":[2]},{"1196287":[200]},{"1196290":[2]},{"1196293":[248,255,198]},{"1196298":[2]},{"1196303":[202,64]},{"1196306":[2,175,103,129,48,240,14,175,62,128,48,201,5,240,6,175,148,129,48,208,4,158,208,13,96,169,150,160,1,34,124,128,162,144,14,175,24,244,126,207,103,129,48,144,4,34,248,219,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1196372":[84,34,101,153,160,40,122,107,165,160,240,6,175,5,192,126,208,5,191,212,211,160,107,218,90,139,191,212,211,160,194,48,41,7]},{"1196407":[10,10,10,10,10,105,16,198,170,160,16,198,169,15]},{"1196422":[84,126,126,226,48,171,122,250,230,21,169]},{"1196434":[107,72,218,8,226,16,174,64,67,218,174,65,67,218,174,66,67,218,174,67,67,218,174,68,67,218,174,69,67,218,174,70,67,218,174,21,33,218,174,22,33,218,174,23,33,218,174]},{"1196482":[33,218,162,128,142]},{"1196488":[33,194,32,162,128,142,21,33,169,64,99,141,22,33,169,88,192,141,66,67,162,126,142,68,67,169,64]},{"1196516":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196533":[33,250,142,23,33,250,142,22,33,250,142,21,33,250,142,70,67,250,142,69,67,250,142,68,67,250,142,67,67,250,142,66,67,250,142,65,67,250,142,64,67,40,250,104,107,8,175,210,244,126,208,9,175,154,192,126,208,3,130,150,1,165,16,201,7,240,11,201,9,240,7,201,11,240,3,130,133,1,175,154,192,126,240,42,58,143,154,192,126,201]},{"1196624":[208,33,8,194,48,162]},{"1196632":[224,64]},{"1196635":[176,11,169,127]},{"1196640":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196663":[240,11,201,4,240,7,201,23,240,3,130,68,1,175,210,244,126,208,3,130,59,1,72,169,34,160,4,34,55,245,28,16,4,104,130,44,1,104,174,12,4,201,160,208,14,224]},{"1196710":[240,7,224,2,240,3,130,137]},{"1196719":[130,132]},{"1196722":[201,162,208,6,224,4,240,124,128,124,201,163,208,6,224,6,240,114,128,114,201,170,208,6,224,20,240,104,128,104,201,164,208,6,224,8,240,94,128,94,201,166,208,6,224,12,240,84,128,84,201,165,208,6,224,10,240,74,128,74,201,168,208,6,224,16,240,64,128,64,201,171,208,6,224,22,240,54,128,54,201,169,208,6,224,18,240,44,128,44,201,167,208,6,224,14,240,34,128,34,201,172,208,6,224,24,240,24,128,24,201,173,208,6,224,26,240,14,128,14,201,146,208,10,224,26,208,6,169,50,128,2,169,36,141,216,2,168,169,1,143,87,192,126,169]},{"1196868":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196885":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196901":[224,28]},{"1196904":[176,12,191,208,223,50,159,88,192,126,232,232,128,239,160,28]},{"1196921":[175,211,244,126,41,255]},{"1196928":[58,201,255]},{"1196932":[176,63,10,10,10,10,10,170,192,60]},{"1196943":[176,17,191,252,223,50,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196966":[176,11,169,127]},{"1196971":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,154,192,126,40,122,250,40,165,93,10,170,107,8,226,32,191,66,225,48,143,152,192,126,40,191,110,233,1,107,72,8,226,32,175,57,227,48,143,152,192,126,40,104,34,157,153,7,107,72,8,226,32,175,89,227,48,143,152,192,126,40,104,34,157,153,7,107,72,8,226,32,175,104,227,48,143,152,192,126,40,104,34,157,153,7,107,72,8,226,32,175,105,227,48,143,152,192,126,40,104,34,157,153,7,107,152,141,228,2,218,175,152,192,126,240,125,90,172,216,2,34,98,185,160,122,218,90,8,194,48,162]},{"1197127":[224,16]},{"1197130":[176,12,191,236,223,50,159,88,192,126,232,232,128,239,160,16]},{"1197147":[175,152,192,126,41,255]},{"1197154":[58,201,255]},{"1197158":[176,63,10,10,10,10,10,170,192,48]},{"1197169":[176,17,191,252,223,50,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1197192":[176,11,169,127]},{"1197197":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,154,192,126,40,122,250,169,51,141,47,1,92,102,135,9,92,10,134,9,201,40,208,10,175,152,192,126,208,4,92,76,197,8,92,96,197,8,165,138,41,64,240,46,173,74,12,201,34,240,39,173,75,12,201,34,240,32,173,76,12,201,34,240,25,173,77,12,201,34,240,18,173,78,12,201,34,240,11,173,79,12,201,34,240,4,92,72,156,9,92,57,156,9]},{"1277952":[68,82]},{"1277959":[248,255,8]},{"1277963":[175,2,128,39,240,22,173,12,4,201,255,240,15,165,32,166,170,32,202,128,24,105,6,160,1,32,224,128,32,194,128,107,175,2,128,39,240,22,173,12,4,201,255,240,15,165,32,166,170,32,202,128,24,105,18,160,255,32,224,128,32,194,128,107,175,2,128,39,240,19,173,12,4,201,255,240,12,165,34,166,169,32,202,128,160,2,32,68,129,32,194,128,107,175,2,128,39,240,22,173,12,4,201,255,240,15,165,34,166,169,32,202,128,24,105,12,160,255,32,68,129,32,194,128,107,175,2,128,39,208,8,175,4,192,126,133,160,56,107,24,107,175,2,128,39,208,8,175,3,192,126,133,160,56,107,24,107,165,254,41,56]},{"1278125":[240,16,235,10,10,133]},{"1278132":[156,104,4,173,140,6,5]},{"1278140":[141,140,6,100,254,96,156,122,4,230,17,165,239,96,224]},{"1278156":[208,12,201,208,144,4,169,1,128,6,169]},{"1278168":[128,2,169,2,133,4,10,96,139,75,171,132,6,133,7,165,160,72,165,7,32,170,129,165]},{"1278193":[201,3,208,10,32,24,139,104,176,71,133,160,128,67,104,165,160,41,15,10,56,229,35,24,101,6,133,2,160]},{"1278223":[32,214,129,165,1,41,128,240,23,164,6,192,255,240,7,165,1,32,5,141,128,5,165,1,32,64,141,32,21,130,128,3,32,44,130,165,1,41,64,72,32,176,131,104,240,5,160,6,32,248,133,171,96,139,75,171,132,6,133,7,165,160,72,165,7,32,170,129,165]},{"1278293":[201,3,208,10,32,68,139,104,176,73,133,160,128,69,104,165,160,41,240,74,74,74,56,229,33,24,101,6,133,2,160,1,32,214,129,165,1,41,128,240,23,164,6,192,255,240,7,165,1,32,141,140,128,5,165,1,32,201,140,32,21,130,128,3,32,44,130,165,1,41,64,72,32,9,133,104,240,5,160]},{"1278373":[32,248,133,171,96,194,48,41,255]},{"1278383":[133]},{"1278385":[165,162,170,189]},{"1278390":[159,41,255]},{"1278394":[10,10,10,133,2,24,101,2,24,101,2,24,101]},{"1278408":[170,189]},{"1278411":[160,133]},{"1278414":[41,255]},{"1278417":[133,160,226,48,96,185,144,240,170,181,33,24,101,2,149,33,185,148,240,170,181,227,24,101,2,149,227,185,150,240,170,189,5,6,24,101,2,157,5,6,189,7,6,24,101,2,157,7,6,189,1,6,24,101,2,157,1,6,189,3,6,24,101,2,157,3,6,96,133,4,165,1,41,32,240,2,169,1,133,5,165,1,41,16,240,2,169,1,133,238,96,165,1,133,254,41,4,74,74,133,238,100,5,169,120,133,4,165,1,41,3,240,12,201,2,176,6,169,248,133,4,128,2,230,5,96,142,100,4,140,46,1,175,2,128,39,240,84,32,176,130,170,165,17,201,18,240,28,165,162,201,81,208,16,194,32,169,24]},{"1278576":[24,101,32,133,32,226,32,32,176,130,170,191,194,130,39,128,25,224]},{"1278595":[208,10,165,160,201,81,208,4,169,54,128,11,164,238,192]},{"1278611":[240,1,232,191,188,130,39,72,173,98,4,41,4,208,5,104,24,105,246,72,104,24,109,100,4,141,100,4,107,75,244,186,130,244,44,128,92,29,193,2,96]},{"1278653":[246,26,24,22,56,208,246,16,26,240]},{"1278664":[175,2,128,39,208,5,24,101,32,133,32,107,175,2,128,39,240,3,165,238,107,191,34,195,1,107,72,175,2,128,39,240,14,104,208,12,72,165,160,201,81,208,4,169,4,133,78,104,174,24,4,201,2,107,173,100,4,208,50,75,244,13,131,244,44,128,92,115,140,2,173,104,4,208,33,165,160,201,172,208,14,173,3,4,41,32,208,7,173,3,4,41,16,240,13,169,5,133,17,238,104,4,156,142,6,156,144,6,107,34,176,254,1,107,165,171,41,255,1,240,61,90,160,6,224,2,176,2,160]},{"1278794":[201,8]},{"1278797":[176,22,72,165,171,41]},{"1278804":[2,240,3,104,128,5,104,73,255,255,26,32,134,131,122,128,25,165,171,41]},{"1278825":[2,235,170,191,7,128,39,32,134,131,165,171,56,233,8]},{"1278841":[133,171,122,128,2,100,171,165]},{"1278850":[41,252,1,107,24,121,226]},{"1278858":[72,41,255,1,201,17,1,144,21,201,248,1,176,7,104,41,16,255,72,128,9,104,41]},{"1278882":[255,24,105]},{"1278886":[1,72,104,153,226]},{"1278892":[153,224]},{"1278895":[96,165,160,41,240,74,74,74,141,3,6,26,141,7,6,165,5,208,9,173,3,6,133]},{"1278919":[100,1,128,9,173,7,6,133]},{"1278928":[169,2,133,1,100,14,194,48,165]},{"1278938":[72,165,232,41,255,1,133,2,165,4,32,82,132,133]},{"1278953":[32,107,132,144,27,165]},{"1278960":[201,128]},{"1278963":[176,10,201,16]},{"1278968":[144,13,169,16]},{"1278973":[128,8,201]},{"1278977":[1,176,3,169]},{"1278982":[1,133]},{"1278985":[165]},{"1278987":[197,2,208,5,169]},{"1278994":[128,14,144,7,56,229,2,230,14,128,5,165,2,56,229]},{"1279010":[133,171,32,154,132,104,133]},{"1279018":[226,48,165,4,133,32,165]},{"1279026":[133,33,141,1,6,141,5,6,165,1,133,170,165,14,10,5,172,133,172,165,233,41,1,10,10,170,189,3,6,133,233,96,201,108]},{"1279061":[176,5,169]},{"1279066":[128,14,201,125,1,144,5,169,16,1,128,4,56,233,108]},{"1279082":[96,32,235,132,201]},{"1279088":[240,36,201,7,240,28,201,1,240,24,201,4,176,24,201,2,208,6,165,6,201,255,240,14,201,3,208,6,165,6,201,255,208,4,194,48,24,96,194,48,56,96,32,107,132,144,41,165,4,41,255]},{"1279140":[201,125]},{"1279143":[144,5,169,136]},{"1279148":[128,14,201,109]},{"1279153":[176,5,169,120]},{"1279158":[128,4,24,105,11]},{"1279164":[133,2,165,4,41]},{"1279170":[1,24,101,2,128,26,165,4,201,108]},{"1279181":[176,5,169,119]},{"1279186":[128,14,201,124,1,144,5,169,135,1,128,4,24,105,11]},{"1279202":[141,24,6,26,26,141,26,6,96,165,160,10,24,101,160,170,191,1,128,31,133,184,191]},{"1279226":[128,31,133,183,226,48,160,1,183,183,41,28,74,74,96,165,160,41,15,10,141,11,6,26,141,15,6,165,5,208,9,173,11,6,133]},{"1279262":[100,1,128,9,173,15,6,133]},{"1279271":[169,1,133,1,100,14,194,48,165]},{"1279281":[72,165,226,41,255,1,133,2,165,4,32,190,133,133]},{"1279296":[32,213,133,144,17,165]},{"1279303":[201,128]},{"1279306":[176,5,169]},{"1279311":[128,3,169]},{"1279315":[1,133]},{"1279318":[165]},{"1279320":[197,2,208,5,169]},{"1279327":[128,14,144,7,56,229,2,230,14,128,5,165,2,56,229]},{"1279343":[133,171,165,4,201,120]},{"1279350":[176,5,169,127]},{"1279355":[128,14,201,120,1,144,5,169,127,1,128,4,24,105,7]},{"1279371":[141,28,6,26,26,141,30,6,104,133]},{"1279382":[226,48,165,4,133,34,165]},{"1279390":[133,35,141,9,6,141,13,6,165,1,133,169,165,14,10,5,172,133,172,165,227,41,1,10,10,170,189,11,6,133,227,96,201,128]},{"1279425":[176,5,169]},{"1279430":[128,12,201,129,1,144,3,169,128,1,56,233,128]},{"1279444":[96,32,235,132,201,4,144,24,201,5,208,6,165,6,201,255,240,14,201,6,208,6,165,6,201,255,208,4,194,48,24,96,194,48,56,96,194,48,165,171,41,255,1,133]},{"1279489":[165,171,41]},{"1279493":[2,240,8,185,226]},{"1279499":[24,101]},{"1279502":[128,6,185,226]},{"1279507":[56,229]},{"1279510":[153,226]},{"1279513":[153,224]},{"1279516":[100,171,226,48,96,72,175,2,128,39,240,19,173,12,4,201,255,240,12,165,14,141,94,4,201,38,240,3,104,128,3,104,133,160,189,61,6,107,175,2,128,39,240,18,173,12,4,201,255,240,11,173,94,4,201,94,240,12,201,95,240,8,156,94,4,165,162,41,15,107,139,75,171,218,90,32,120,135,194,48,41,255]},{"1279599":[10,10,170,189]},{"1279604":[176,133]},{"1279607":[189,2,176,133,2,226,48,165]},{"1279616":[133,160,100,7,165,1,41,1,56,229,169,208,17,173,98,4,41,4,208,2,230,7,165,34,208,25,198,35,128,21,133,6,24,101,169,133,169,173,98,4,41,4,208,2,230,7,160]},{"1279664":[32,14,136,165,170,74,133,6,165,1,41,2,74,56,229,6,240,13,133,6,10,24,101,170,133,170,160,1,32,14,136,165,1,41,4,74,141,138,4,165,1,41,8,74,74,141,146,4,165,2,133,34,208,7,165,35,24,101,7,133,35,165,3,133,32,208,2,230,33,162,8,173,98,4,41,4,240,24,162,253,165,1,41,128,208,40,169,6,24,101,32,133,32,169,235,24,101,34,133,34,128,24,165,1,41,128,240,18,169,250,24,101,32,133,32,169,20,24,101,34,133,34,208,2,230,35,138,24,101,34,133,83,165,1,41,16,133,7,160]},{"1279804":[32,52,136,165,1,41,32,133,7,160,1,32,52,136,156,94,4,175,2,128,39,201,2,208,24,166,160,191]},{"1279833":[241,39,205,161,10,240,13,141,161,10,170,191,46,128,2,168,34,119,211]},{"1279853":[156,122,4,122,250,171,165,162,41,15,107,100]},{"1279866":[162]},{"1279868":[100,1,189,126,4,197]},{"1279875":[144,2,133]},{"1279879":[232,232,224,8,144,241,165]},{"1279887":[74,201,1,240,112,165,169,5,170,41,3,240,12,201,1,240,34,201,2,240,58,201,3,240,82,230,1,165,162,201,12,240,4,201,112,208,80,165,34,201]},{"1279928":[240,4,201,152,144,70,230,1,128,66,165,162,201,26,240,12,201,38,240,8,201,106,240,4,201,118,208,48,165,34,201,152,144,42,230,1,128,38,169,3,133,1,165,162,201,95,240,8,201,63,208,24,100,1,128,20,165,34,201,120,144,14,230,1,128,10,165,162,201,64,240,4,169,2,133,1,165,162,170,189]},{"1280009":[158,24,101,1,96,185,144,240,170,181,32,240,7,181,33,24,101,6,149,33,185,150,240,170,189,1,6,24,101,6,157,1,6,189,5,6,24,101,6,157,5,6,96,100,4,187,181,169,208,65,185,150,240,170,189,7,6,72,185,148,240,170,104,213,227,208,2,214,227,165,7,208,34,185,144,240,170,181,32,240,20,201,121,144,22,56,233,120,133,4,152,10,24,105,4,170,32,204,136,128,85,169,128,133,4,128,42,152,10,170,32,204,136,128,71,165,7,208,41,185,144,240,170,181,32,201,120,176,31,24,105,120,133,4,185,150,240,170,189,3,6,72,185,148,240,170,104,149,227,152,10,24,105,8,170,32,204,136,128,26,185,150,240,170,189,7,6,72,185,148,240,170,104,149,227,152,10,24,105,12,170,32,204,136,128]},{"1280195":[185,148,240,170,165,4,149,226,96,194,32,189,158,240,133,5,165,4,41,255]},{"1280216":[240,14,185,144,240,170,181,32,41,255]},{"1280227":[24,101,5,133,5,185,156,240,170,165,5,157,24,6,26,26,157,26,6,226,32,96,175,2,128,39,240,3,169,1,107,173,98,4,41,4,107,175,2,128,39,208,15,34,80,249,160,34,164,253]},{"1280278":[34,57,215]},{"1280282":[230,176,107,165,177,208,81,34,80,249,160,34,164,253]},{"1280297":[34,174,214]},{"1280301":[34,101,253,15,34,90,223]},{"1280309":[175,2,128,39,201,2,208,24,166,160,191]},{"1280321":[241,39,205,161,10,240,13,141,161,10,170,191,46,128,2,168,34,119,211]},{"1280341":[169,9,133,23,141,16,7,34,119,236,27,34,197,236,27,34,228,236,27,34,116,238,27,32,126,137,230,177,107,169,10,133,23,141,16,7,100,177,230,176,107,194,32,162]},{"1280386":[191]},{"1280388":[195,126,159]},{"1280392":[197,126,191,64,195,126,159,64,197,126,191,128,195,126,159,128,197,126,191,192,195,126,159,192,197,126,191]},{"1280420":[196,126,159]},{"1280424":[198,126,191,64,196,126,159,64,198,126,191,128,196,126,159,128,198,126,191,192,196,126,159,192,198,126,232,232,224,64,208,186,226,32,230,21,96,32,168,128,175,2,128,39,240,8,173,12,4,201,255]},{"1280476":[208,9,165,160,58,170,41,15]},{"1280485":[56,107,139,75,171,134]},{"1280492":[160]},{"1280495":[165,160,10,170,189]},{"1280501":[151,240,48,10,132,5,24,101,5,170,189]},{"1280513":[192,240,36,133,2,41,255]},{"1280521":[10,170,165,2,41]},{"1280527":[255,133,3,191]},{"1280532":[240,126,41]},{"1280536":[240,37,3,240,11,187,173,140,6,31,192,152]},{"1280549":[141,140,6,200,200,196]},{"1280556":[208,193,171,24,107,175,196,80,127,201,1,208,1,107,201,255,208,2,26,107,175,74,243,126,208,29,175,202,243,126,208,19,173,12,4,201,2,208,6,175,56,128,48,128,10,175,57,128,48,128,4,175,58,128,48,107,165,160,201,28,240,8,201,108,240,4,201,77,208,18,175,4,128,39,41,1,208,8,173,3,4,9,128,141,3,4,24,107,56,107,34,82,239,160,175,4,128,39,41,128,240,10,175,134,240,126,9,128,143,134,240,126,175,4,128,39,41,2,240,12,175,83,243,126,208,6,169,1,143,83,243,126,107,175,4,128,39,41,2,240,8,175,83,243,126,201,1,240,5,165,138,41,64,107,175,6,128,39,107,175,83,243,126,41,2,107,175,83,243,126,41,2,240,6,156,252,5,156,253,5,107,224]},{"1280739":[3,176,4,159]},{"1280744":[240,126,107,175,2,128,39,240,3,158,186,12,34,24,184,13,107,165,160,201,223,176,8,41,15,201,14,144,2,200,200,107,175,2,128,39,240,3,169,1,107,175,204,243,126,201,6,107,192,255,240,7,32,55,142,160,2,128,3,32,131,142,201,255,240,24,133]},{"1280812":[10,24,101]},{"1280816":[170,192,255,240,5,32,216,140,128,3,32,20,141,32,110,139,56,96,24,96,192,255,240,5,32,79,141,128,3,32,195,141,201,255,240,24,133]},{"1280854":[10,24,101]},{"1280858":[170,192,255,240,5,32,96,140,128,3,32,156,140,32,164,139,56,96,24,96,165,3,133,160,132,6,41,15,10,56,229,35,24,101,6,133,2,160]},{"1280897":[32,214,129,165,4,41,128,208,9,165,4,133,1,32,44,130,128,13,165,4,41,16,240,2,169,1,133,238,32,222,139,32,176,131,96,165,3,133,160,132,6,41,240,74,74,74,56,229,33,24,101,6,133,2,160,1,32,214,129,165,4,41,128,208,9,165,4,133,1,32,44,130,128,15,165,4,41,16,240,2,169,1,133,238,32,237,139,165,3,32,9,133,96,32,252,139,165,32,32,6,140,41,64]},{"1281001":[32,80,140,96,32,252,139,165,34,32,6,140,41,32]},{"1281016":[32,80,140,96,194,48,165,8,41,255]},{"1281027":[133]},{"1281029":[96,41,255,1,56,229]},{"1281036":[41,255]},{"1281039":[133]},{"1281041":[165,5,41,240]},{"1281046":[74,74,74,74,170,189,240,197,41,255]},{"1281057":[168,165]},{"1281060":[32,207,142,133,2,165,7,41,255]},{"1281070":[32,207,142,170,165,5,41,15]},{"1281079":[168,185,240,197,41,255]},{"1281086":[168,165,2,32,243,142,133]},{"1281094":[165,12,41,255]},{"1281099":[133,2,165,4,96,240,3,169]},{"1281108":[1,24,101,2,24,101]},{"1281115":[133,4,226,48,96,189]},{"1281122":[197,133,3,232,189,120,197,133,7,189]},{"1281133":[197,133,4,232,189,120,197,133,8,189]},{"1281144":[197,133,5,165,4,32,141,140,232,189,153,197,133,11,232,189,153,197,133,12,96,41,15,133]},{"1281169":[10,24,101]},{"1281173":[170,189,153,197,133,10,96,189,33,197,133,3,232,189,153,197,133,7,189,33,197,133,4,232,189,153,197,133,8,189,33,197,133,5,165,4,32,201,140,232,189,120,197,133,11,232,189,120,197,133,12,96,41,15,133]},{"1281229":[10,24,101]},{"1281233":[170,189,120,197,133,10,96,189,66,197,133,3,232,189,186,197,133,7,189,66,197,133,4,232,189,186,197,133,8,189,66,197,133,5,165,4,32,5,141,232,189,213,197,133,11,232,189,213,197,133,12,96,41,15,133]},{"1281289":[10,24,101]},{"1281293":[170,189,213,197,133,10,96,189,93,197,133,3,232,189,213,197,133,7,189,93,197,133,4,232,189,213,197,133,8,189,93,197,133,5,165,4,32,64,141,232,189,186,197,133,11,232,189,186,197,133,12,41,15,133]},{"1281348":[10,24,101]},{"1281352":[170,189,186,197,133,10,96,162,255,165,162,201,130,208,14,165,34,201,80,176,4,162,1,128,96,162]},{"1281379":[128,92,201,131,208,4,162,2,128,84,201,132,208,32,165,169,240,14,165,34,201,120,176,4,162,4,128,66,162,5,128,62,165,34,201,120,176,4,162,3,128,52,162,4,128,48,201,133,208,4,162,6,128,40,201,219,208,16,165,169,240,8,165,34,240,4,162,8,128,24,162,7,128,20,201,220,208,16,165,169,208,10,165,34,201,176,176,4,162,9,128,2,162,10,138,96,162,255,165,162,201,114,208,14,165,34,201,80,176,4,162,1,128,96,162]},{"1281495":[128,92,201,115,208,4,162,2,128,84,201,116,208,32,165,169,240,14,165,34,201,120,176,4,162,4,128,66,162,5,128,62,165,34,201,120,176,4,162,3,128,52,162,4,128,48,201,117,208,4,162,6,128,40,201,203,208,16,165,169,240,8,165,34,240,4,162,8,128,24,162,7,128,20,201,204,208,16,165,169,208,10,165,34,201,176,176,4,162,9,128,2,162,10,138,96,162,255,165,162,201,101,208,4,162]},{"1281601":[128,62,201,116,208,4,162,1,128,54,201,117,208,4,162,2,128,46,201,130,208,12,165,170,240,4,162,3,128,34,162,4,128,30,201,133,208,4,162,5,128,22,201,204,208,12,165,170,240,4,162,6,128,10,162,7,128,6,201,220,208,2,162,8,138,96,162,255,165,162,201,100,208,4,162]},{"1281677":[128,62,201,115,208,4,162,1,128,54,201,116,208,4,162,2,128,46,201,129,208,12,165,170,240,4,162,4,128,34,162,3,128,30,201,132,208,4,162,5,128,22,201,203,208,12,165,170,240,4,162,6,128,10,162,7,128,6,201,219,208,2,162,8,138,96,192,1]},{"1281746":[240,30,192,3]},{"1281751":[208,5,32,33,143,128,20,192,5]},{"1281761":[208,5,32,40,143,128,10,10,133]},{"1281771":[152,74,168,165]},{"1281776":[128,221,96,192]},{"1281782":[240,40,192,1]},{"1281787":[240,35,192,3]},{"1281792":[208,5,32,69,143,128,25,192,5]},{"1281802":[208,5,32,90,143,128,15,32,48,143,133]},{"1281814":[152,74,168,138,74,170,165]},{"1281822":[128,211,96,133]},{"1281827":[10,24,101]},{"1281831":[96,133]},{"1281834":[10,10,24,101]},{"1281839":[96,133]},{"1281842":[74,144,15,133,2,138,74,197]},{"1281851":[144,5,165,2,26,128,2,165,2,96,133]},{"1281863":[162]},{"1281866":[169,2]},{"1281869":[197]},{"1281871":[176,7,232,24,105,3]},{"1281878":[128,245,138,96,133]},{"1281884":[162]},{"1281887":[169,3]},{"1281890":[197]},{"1281892":[176,7,232,24,105,5]},{"1281899":[128,245,138,96,34,160,173,164,32,119,143,107,175,4,128,39,41,8]},{"1281918":[240,61,175,35,244,126,41,255]},{"1281927":[32,251,145,166,5,138,9]},{"1281935":[36,143,52,199,126,166,6,138,9]},{"1281945":[36,143,54,199,126,166,7,138,9]},{"1281955":[36,143,56,199,126,175,155,242,126,41,32]},{"1281967":[240,5,169,127,32,128,3,169,94,52,143,58,199,126,174,12,4,224,255,208,1,96,175,2,128,39,208,1,96,139,75,171,175,100,243,126,63,192,152]},{"1282007":[240,26,189]},{"1282011":[240,41,255]},{"1282015":[197,160,208,16,165,26,41,16]},{"1282024":[240,9,169,94,52,143,144,199,126,128,7,169,127,32,143,144,199,126,173,2,128,41,2]},{"1282048":[208,2,171,96,175,109,243,126,41,255]},{"1282059":[240,5,189,84,240,128,3,169,127,32,143,2,199,126,173,4,128,41,4]},{"1282079":[240,41,175,104,243,126,63,192,152]},{"1282089":[240,31,138,74,170,191,224,244,126,32,80,145,143,162,199,126,169,48,40,143,164,199,126,189,42,240,32,80,145,143,166,199,126,171,96,254,255]},{"1282128":[6]},{"1282130":[8]},{"1282132":[2]},{"1282134":[16]},{"1282136":[14]},{"1282138":[24]},{"1282140":[18]},{"1282142":[22]},{"1282144":[10]},{"1282146":[20]},{"1282148":[26]},{"1282150":[30]},{"1282152":[34,221,156,160,175,69,128,48,41,255,208,1,107,175,2,128,39,201,2,240,1,107,218,90,8,194,48,175,22,244,126,41,32]},{"1282186":[240,2,128,75,175,69,128,48,41,3]},{"1282197":[208,2,128,64,169,16,40,141,132,22,169,17,40,141,196,22,169,16,40,141,4,23,162,2]},{"1282222":[175,100,243,126,63,192,152]},{"1282230":[240,26,191,76,144,39,168,32,43,145,153,198,22,218,138,74,170,191,42,240,39,32,98,145,153,6,23,250,232,232,224,27]},{"1282263":[144,213,175,22,244,126,41,32]},{"1282272":[208,2,128,67,175,69,128,48,41,12]},{"1282283":[208,2,128,56,169,245,36,141,4,23,162,2]},{"1282296":[175,100,243,126,63,192,152]},{"1282304":[240,30,191,76,144,39,168,218,138,74,170,191,112,240,39,32,98,145,153,6,23,191,126,240,39,32,98,145,153,198,22,250,232,232,224,27]},{"1282341":[144,209,40,122,250,107,175,102,243,126,63,192,152]},{"1282355":[208,23,191,56,240,39,208,4,169,130,36,96,201,2]},{"1282370":[208,4,169,32,36,96,169,245,36,96,169,38,40,96,41,255]},{"1282387":[201,10]},{"1282390":[144,5,24,105,83,37,96,24,105,144,36,96,41,255]},{"1282405":[240,15,201,10]},{"1282410":[144,5,24,105,83,37,96,24,105,22,40,96,169,131,36,96,34]},{"1282428":[128,160,32,130,145,107,175,152,192,126,208,50,192,36,240,19,192,160,144,42,192,174,176,38,72,218,152,41,15,208,1,26,170,128,7,72,218,173,12,4,74,170,191,176,244,126,26,159,176,244,126,191,224,244,126,26,159,224,244,126,250,104,96,34,86,188,164,218,173,12,4,201,255,240,11,74,170,191,176,244,126,26,159,176,244,126,250,107,34,64,177,160,165,160,201,115,208,6,175,96,129,48,128,12,201,140,208,6,175,97,129,48,128,2,169,36,201,36,208,6,90,168,32,130,145,122,107,160,144,201,232,3,144,6,200,233,232,3,128,245,132,4,160,144,201,100]},{"1282575":[144,6,200,233,100]},{"1282581":[128,245,132,5,160,144,201,10]},{"1282590":[144,6,200,233,10]},{"1282596":[128,245,132,6,160,144,201,1]},{"1282605":[144,4,200,58,208,252,132,7,96]},{"1283842":[1]},{"1283844":[3]},{"1283848":[6]},{"1283852":[11]},{"1283860":[12]},{"1283862":[13]},{"1283864":[16]},{"1283866":[17]},{"1283868":[18]},{"1283874":[21]},{"1283876":[24]},{"1283878":[28]},{"1283880":[30]},{"1283882":[37]},{"1283884":[39]},{"1283890":[43]},{"1283892":[45]},{"1283894":[51]},{"1283896":[53]},{"1283898":[56]},{"1283900":[57]},{"1283902":[61]},{"1283904":[63]},{"1283906":[64]},{"1283908":[67]},{"1283910":[69]},{"1283912":[71]},{"1283916":[79]},{"1283920":[83]},{"1283924":[85]},{"1283926":[91]},{"1283932":[95]},{"1283936":[96]},{"1283938":[98]},{"1283940":[100]},{"1283942":[101]},{"1283944":[102]},{"1283946":[104]},{"1283948":[110]},{"1283950":[116]},{"1283952":[122]},{"1283954":[124]},{"1283956":[126]},{"1283958":[129]},{"1283962":[130]},{"1283964":[134]},{"1283966":[136]},{"1283968":[137]},{"1283970":[138]},{"1283974":[139]},{"1283976":[142]},{"1283978":[146]},{"1283980":[150]},{"1283986":[153]},{"1283988":[157]},{"1283990":[162]},{"1283992":[165]},{"1283994":[166]},{"1283996":[168]},{"1283998":[170]},{"1284000":[171]},{"1284002":[173]},{"1284004":[175]},{"1284006":[178]},{"1284012":[181]},{"1284014":[185]},{"1284016":[191]},{"1284018":[197]},{"1284020":[201]},{"1284022":[202]},{"1284024":[204]},{"1284026":[206]},{"1284028":[209]},{"1284030":[213]},{"1284032":[214]},{"1284034":[220]},{"1284036":[227]},{"1284038":[233]},{"1284040":[236]},{"1284042":[237]},{"1284044":[238]},{"1284046":[242]},{"1284048":[245]},{"1284052":[247]},{"1284054":[248]},{"1284056":[252]},{"1284058":[255]},{"1284060":[2,1]},{"1284066":[3,1,6,1,7,1,10,1,12,1,14,1,18,1]},{"1284086":[20,1,23,1,27,1,30,1,33,1]},{"1284098":[35,1]},{"1284102":[36,1,39,1,40,1]},{"1284110":[44,1]},{"1284118":[46,1,51,1,57,1,62,1]},{"1284128":[63,1,64,1,65,1,70,1]},{"1284138":[73,1,75,1,77,1,79,1,80,1]},{"1284150":[83,1,86,1,90,1,93,1,97,1,99,1,100,1,102,1,106,1,108,1,109,1]},{"1284176":[112,1,118,1,124,1,130,1,132,1]},{"1284188":[133,1,134,1,136,1,139,1,143,1,151,1,156,1,157,1,158,1,163,1,164,1,166,1,170,1,173,1,179,1]},{"1284220":[187,1,190,1,191,1,194,1,202,1,210,1,217,1,218,1,221,1,227,1,230,1,231,1]},{"1284246":[236,1,237,1]},{"1284252":[240,1]},{"1284256":[241,1,243,1,247,1]},{"1284266":[248,1,250,1]},{"1284272":[253,1]},{"1284275":[2,3,2,4,2,6,2]},{"1284288":[7,2]},{"1285633":[1,2]},{"1285636":[3]},{"1285639":[4]},{"1285641":[5,7]},{"1285644":[8]},{"1285646":[11]},{"1285649":[12]},{"1285653":[13,14,15]},{"1285658":[17]},{"1285660":[19,20,21]},{"1285670":[22,25,27]},{"1285681":[28]},{"1285684":[31]},{"1285688":[32]},{"1285690":[33]},{"1285695":[34,35,36,37]},{"1285701":[38]},{"1285706":[39]},{"1285708":[41,42,43]},{"1285715":[44,45]},{"1285724":[46,47]},{"1285727":[48]},{"1285731":[53,54]},{"1285734":[55]},{"1285738":[56,58,59]},{"1285742":[60]},{"1285744":[61,64,65]},{"1285750":[66,69]},{"1285759":[73,74]},{"1285767":[75]},{"1285772":[79]},{"1285774":[83]},{"1285777":[84]},{"1285779":[85]},{"1285783":[86,87,88]},{"1285790":[89]},{"1285792":[90]},{"1285794":[91]},{"1285797":[92,93]},{"1285803":[94]},{"1285806":[95]},{"1285808":[96]},{"1285813":[99,100]},{"1285820":[101]},{"1285822":[102]},{"1285824":[103]},{"1285840":[106,109,110]},{"1285850":[111]},{"1285856":[112]},{"1285889":[1,2]},{"1285892":[3]},{"1285894":[4]},{"1285901":[5]},{"1285905":[6,7,8,9,10,11]},{"1285913":[12,13,14]},{"1285917":[15,16,17,18,19,20,21,22]},{"1285926":[23]},{"1285930":[24,25]},{"1285934":[26]},{"1285936":[27]},{"1285938":[28,29,30,31,32,33,34,35,36,37]},{"1285949":[38,39]},{"1285952":[150,40,151,41,42,43,44]},{"1285961":[45,46,47,48,49,50]},{"1285968":[51,52,53,54]},{"1285974":[55,56,57,58,59,60,61,62,63,64,65,66,67]},{"1285990":[68,69,70]},{"1285994":[71,72,73,74,75]},{"1286001":[76]},{"1286005":[77,78]},{"1286011":[79,80,81,82,83]},{"1286017":[84]},{"1286021":[85]},{"1286027":[86,87,88,89]},{"1286032":[90,91,92,93]},{"1286037":[94,95]},{"1286041":[96]},{"1286043":[97,98,99,100,101,102,103,104,105,106,107]},{"1286056":[108,109,110,111,112]},{"1286062":[113,114]},{"1286065":[115,116,117,118,119,120,121,122,123,124,125,126]},{"1286078":[127,128]},{"1286081":[129,130,131,132,133,134,135,136,137]},{"1286091":[138,139]},{"1286094":[140]},{"1286097":[141,142]},{"1286101":[143,144]},{"1286104":[145,146,147,148,149]},{"1286144":[3]},{"1286146":[3]},{"1286148":[3]},{"1286150":[3]},{"1286152":[3]},{"1286154":[3]},{"1286156":[3]},{"1286158":[3]},{"1286160":[3]},{"1286162":[3]},{"1286164":[3]},{"1286166":[3]},{"1286168":[3]},{"1286170":[3]},{"1286172":[3]},{"1286174":[80,4,3]},{"1286178":[3]},{"1286180":[3]},{"1286182":[3]},{"1286184":[3]},{"1286186":[82,4,3]},{"1286190":[3]},{"1286192":[3]},{"1286194":[3]},{"1286196":[3]},{"1286198":[3]},{"1286200":[3]},{"1286202":[3]},{"1286204":[3]},{"1286206":[3]},{"1286208":[3]},{"1286210":[3]},{"1286212":[3]},{"1286214":[3]},{"1286216":[3]},{"1286218":[3]},{"1286220":[3]},{"1286222":[3]},{"1286224":[3]},{"1286226":[3]},{"1286228":[3]},{"1286230":[3]},{"1286232":[3]},{"1286234":[3]},{"1286236":[3]},{"1286238":[3]},{"1286240":[3]},{"1286242":[3]},{"1286244":[3]},{"1286246":[3]},{"1286248":[3]},{"1286250":[3]},{"1286252":[3]},{"1286254":[3]},{"1286256":[3]},{"1286258":[3]},{"1286260":[3]},{"1286262":[3]},{"1286264":[3]},{"1286266":[3]},{"1286268":[3]},{"1286270":[3]},{"1286272":[3]},{"1286274":[3]},{"1286276":[3]},{"1286278":[3]},{"1286280":[3]},{"1286282":[3]},{"1286284":[3]},{"1286286":[3]},{"1286288":[3]},{"1286290":[3]},{"1286292":[3]},{"1286294":[3]},{"1286296":[3]},{"1286298":[3]},{"1286300":[3]},{"1286302":[3]},{"1286304":[3]},{"1286306":[3]},{"1286308":[3]},{"1286310":[3]},{"1286312":[3]},{"1286314":[3]},{"1286316":[3]},{"1286318":[3]},{"1286320":[3]},{"1286322":[3]},{"1286324":[3]},{"1286326":[3]},{"1286328":[3]},{"1286330":[3]},{"1286332":[3]},{"1286334":[3]},{"1286336":[3]},{"1286338":[3]},{"1286340":[3]},{"1286342":[3]},{"1286344":[3]},{"1286346":[3]},{"1286348":[3]},{"1286350":[3]},{"1286352":[3]},{"1286354":[3]},{"1286356":[3]},{"1286358":[3]},{"1286360":[3]},{"1286362":[3]},{"1286364":[3]},{"1286366":[3]},{"1286368":[3]},{"1286370":[3]},{"1286372":[3]},{"1286374":[3]},{"1286376":[3]},{"1286378":[3]},{"1286380":[3]},{"1286382":[3]},{"1286384":[3]},{"1286386":[3]},{"1286388":[3]},{"1286390":[3]},{"1286392":[3]},{"1286394":[3]},{"1286396":[3]},{"1286398":[3]},{"1286400":[3]},{"1286402":[3]},{"1286404":[3]},{"1286406":[3]},{"1286408":[3]},{"1286410":[3]},{"1286412":[3]},{"1286414":[3]},{"1286416":[3]},{"1286418":[3]},{"1286420":[3]},{"1286422":[3]},{"1286424":[3]},{"1286426":[3]},{"1286428":[3]},{"1286430":[3]},{"1286432":[3]},{"1286434":[3]},{"1286436":[3]},{"1286438":[3]},{"1286440":[3]},{"1286442":[3]},{"1286444":[3]},{"1286446":[3]},{"1286448":[3]},{"1286450":[3]},{"1286452":[3]},{"1286454":[3]},{"1286456":[3]},{"1286458":[3]},{"1286460":[3]},{"1286462":[3]},{"1286464":[3]},{"1286466":[3]},{"1286468":[3]},{"1286470":[3]},{"1286472":[3]},{"1286474":[3]},{"1286476":[3]},{"1286478":[3]},{"1286480":[3]},{"1286482":[3]},{"1286484":[3]},{"1286486":[3]},{"1286488":[3]},{"1286490":[3]},{"1286492":[3]},{"1286494":[3]},{"1286496":[3]},{"1286498":[3]},{"1286500":[3]},{"1286502":[3]},{"1286504":[3]},{"1286506":[3]},{"1286508":[3]},{"1286510":[3]},{"1286512":[3]},{"1286514":[3]},{"1286516":[3]},{"1286518":[3]},{"1286520":[3]},{"1286522":[3]},{"1286524":[3]},{"1286526":[3]},{"1286528":[3]},{"1286530":[3]},{"1286532":[3]},{"1286534":[3]},{"1286536":[3]},{"1286538":[3]},{"1286540":[3]},{"1286542":[3]},{"1286544":[3]},{"1286546":[3]},{"1286548":[3]},{"1286550":[3]},{"1286552":[3]},{"1286554":[3]},{"1286556":[3]},{"1286558":[3]},{"1286560":[3]},{"1286562":[3]},{"1286564":[3]},{"1286566":[3]},{"1286568":[3]},{"1286570":[3]},{"1286572":[3]},{"1286574":[3]},{"1286576":[3]},{"1286578":[3]},{"1286580":[3]},{"1286582":[3]},{"1286584":[3]},{"1286586":[3]},{"1286588":[3]},{"1286590":[3]},{"1286592":[3]},{"1286594":[3]},{"1286596":[3]},{"1286598":[3]},{"1286600":[3]},{"1286602":[3]},{"1286604":[3]},{"1286606":[3]},{"1286608":[3]},{"1286610":[3]},{"1286612":[3]},{"1286614":[3]},{"1286616":[3]},{"1286618":[3]},{"1286620":[3]},{"1286622":[3]},{"1286624":[3]},{"1286626":[3]},{"1286628":[3]},{"1286630":[3]},{"1286632":[3]},{"1286634":[3]},{"1286636":[3]},{"1286638":[3]},{"1286640":[3]},{"1286642":[3]},{"1286644":[3]},{"1286646":[3]},{"1286648":[3]},{"1286650":[3]},{"1286652":[3]},{"1286654":[3]},{"1286656":[3]},{"1286658":[3]},{"1286660":[3]},{"1286662":[3]},{"1286664":[3]},{"1286666":[3]},{"1286668":[3]},{"1286670":[3]},{"1286672":[3]},{"1286674":[3]},{"1286676":[3]},{"1286678":[3]},{"1286680":[3]},{"1286682":[3]},{"1286684":[3]},{"1286686":[3]},{"1286688":[3]},{"1286690":[3]},{"1286692":[3]},{"1286694":[3]},{"1286696":[3]},{"1286698":[3]},{"1286700":[3]},{"1286702":[3]},{"1286704":[3]},{"1286706":[3]},{"1286708":[3]},{"1286710":[3]},{"1286712":[3]},{"1286714":[3]},{"1286716":[3]},{"1286718":[3]},{"1286720":[3]},{"1286722":[3]},{"1286724":[3]},{"1286726":[3]},{"1286728":[3]},{"1286730":[3]},{"1286732":[3]},{"1286734":[3]},{"1286736":[3]},{"1286738":[3]},{"1286740":[3]},{"1286742":[3]},{"1286744":[3]},{"1286746":[3]},{"1286748":[3]},{"1286750":[3]},{"1286752":[3]},{"1286754":[3]},{"1286756":[3]},{"1286758":[3]},{"1286760":[3]},{"1286762":[3]},{"1286764":[3]},{"1286766":[3]},{"1286768":[3]},{"1286770":[3]},{"1286772":[3]},{"1286774":[3]},{"1286776":[3]},{"1286778":[3]},{"1286780":[3]},{"1286782":[3]},{"1286784":[3]},{"1286786":[3]},{"1286788":[3]},{"1286790":[3]},{"1286792":[3]},{"1286794":[3]},{"1286796":[3]},{"1286798":[3]},{"1286800":[3]},{"1286802":[3]},{"1286804":[3]},{"1286806":[3]},{"1286808":[3]},{"1286810":[3]},{"1286812":[3]},{"1286814":[3]},{"1286816":[3]},{"1286818":[3]},{"1286820":[3]},{"1286822":[3]},{"1286824":[3]},{"1286826":[3]},{"1286828":[3]},{"1286830":[3]},{"1286832":[3]},{"1286834":[3]},{"1286836":[3]},{"1286838":[3]},{"1286840":[3]},{"1286842":[3]},{"1286844":[3]},{"1286846":[3]},{"1286848":[3]},{"1286850":[3]},{"1286852":[3]},{"1286854":[3]},{"1286856":[3]},{"1286858":[3]},{"1286860":[3]},{"1286862":[3]},{"1286864":[3]},{"1286866":[3]},{"1286868":[3]},{"1286870":[3]},{"1286872":[3]},{"1286874":[3]},{"1286876":[3]},{"1286878":[3]},{"1286880":[3]},{"1286882":[3]},{"1286884":[3]},{"1286886":[3]},{"1286888":[3]},{"1286890":[3]},{"1286892":[3]},{"1286894":[3]},{"1286896":[3]},{"1286898":[3]},{"1286900":[3]},{"1286902":[3]},{"1286904":[3]},{"1286906":[3]},{"1286908":[3]},{"1286910":[3]},{"1286912":[3]},{"1286914":[3]},{"1286916":[3]},{"1286918":[3]},{"1286920":[3]},{"1286922":[3]},{"1286924":[3]},{"1286926":[3]},{"1286928":[3]},{"1286930":[3]},{"1286932":[3]},{"1286934":[3]},{"1286936":[3]},{"1286938":[3]},{"1286940":[3]},{"1286942":[3]},{"1286944":[3]},{"1286946":[3]},{"1286948":[3]},{"1286950":[3]},{"1286952":[3]},{"1286954":[3]},{"1286956":[3]},{"1286958":[3]},{"1286960":[3]},{"1286962":[3]},{"1286964":[3]},{"1286966":[3]},{"1286968":[3]},{"1286970":[3]},{"1286972":[3]},{"1286974":[3]},{"1286976":[3]},{"1286978":[3]},{"1286980":[3]},{"1286982":[3]},{"1286984":[3]},{"1286986":[3]},{"1286988":[3]},{"1286990":[3]},{"1286992":[3]},{"1286994":[3]},{"1286996":[3]},{"1286998":[3]},{"1287000":[3]},{"1287002":[3]},{"1287004":[3]},{"1287006":[3]},{"1287008":[3]},{"1287010":[3]},{"1287012":[3]},{"1287014":[3]},{"1287016":[3]},{"1287018":[3]},{"1287020":[3]},{"1287022":[3]},{"1287024":[3]},{"1287026":[3]},{"1287028":[3]},{"1287030":[3]},{"1287032":[3]},{"1287034":[3]},{"1287036":[3]},{"1287038":[3]},{"1287040":[3]},{"1287042":[3]},{"1287044":[3]},{"1287046":[3]},{"1287048":[3]},{"1287050":[3]},{"1287052":[3]},{"1287054":[3]},{"1287056":[3]},{"1287058":[3]},{"1287060":[3]},{"1287062":[3]},{"1287064":[3]},{"1287066":[3]},{"1287068":[3]},{"1287070":[3]},{"1287072":[3]},{"1287074":[3]},{"1287076":[3]},{"1287078":[3]},{"1287080":[3]},{"1287082":[3]},{"1287084":[3]},{"1287086":[3]},{"1287088":[3]},{"1287090":[3]},{"1287092":[3]},{"1287094":[3]},{"1287096":[3]},{"1287098":[3]},{"1287100":[3]},{"1287102":[3]},{"1287104":[3]},{"1287106":[3]},{"1287108":[3]},{"1287110":[3]},{"1287112":[3]},{"1287114":[3]},{"1287116":[3]},{"1287118":[3]},{"1287120":[3]},{"1287122":[3]},{"1287124":[3]},{"1287126":[3]},{"1287128":[3]},{"1287130":[3]},{"1287132":[3]},{"1287134":[3]},{"1287136":[3]},{"1287138":[3]},{"1287140":[3]},{"1287142":[3]},{"1287144":[3]},{"1287146":[3]},{"1287148":[3]},{"1287150":[3]},{"1287152":[3]},{"1287154":[3]},{"1287156":[3]},{"1287158":[3]},{"1287160":[3]},{"1287162":[3]},{"1287164":[3]},{"1287166":[3]},{"1287168":[3]},{"1287170":[3]},{"1287172":[3]},{"1287174":[3]},{"1287176":[3]},{"1287178":[3]},{"1287180":[3]},{"1287182":[3]},{"1287184":[3]},{"1287186":[3]},{"1287188":[3]},{"1287190":[3]},{"1287192":[3]},{"1287194":[3]},{"1287196":[3]},{"1287198":[3]},{"1287200":[3]},{"1287202":[3]},{"1287204":[3]},{"1287206":[3]},{"1287208":[3]},{"1287210":[3]},{"1287212":[3]},{"1287214":[3]},{"1287216":[3]},{"1287218":[3]},{"1287220":[3]},{"1287222":[3]},{"1287224":[3]},{"1287226":[3]},{"1287228":[3]},{"1287230":[3]},{"1287232":[3]},{"1287234":[3]},{"1287236":[3]},{"1287238":[3]},{"1287240":[3]},{"1287242":[3]},{"1287244":[3]},{"1287246":[3]},{"1287248":[3]},{"1287250":[3]},{"1287252":[3]},{"1287254":[3]},{"1287256":[3]},{"1287258":[3]},{"1287260":[3]},{"1287262":[3]},{"1287264":[3]},{"1287266":[3]},{"1287268":[3]},{"1287270":[3]},{"1287272":[3]},{"1287274":[3]},{"1287276":[3]},{"1287278":[3]},{"1287280":[3]},{"1287282":[3]},{"1287284":[3]},{"1287286":[3]},{"1287288":[3]},{"1287290":[3]},{"1287292":[3]},{"1287294":[3]},{"1287296":[3]},{"1287298":[3]},{"1287300":[3]},{"1287302":[3]},{"1287304":[3]},{"1287306":[3]},{"1287308":[3]},{"1287310":[3]},{"1287312":[3]},{"1287314":[3]},{"1287316":[3]},{"1287318":[3]},{"1287320":[3]},{"1287322":[3]},{"1287324":[3]},{"1287326":[3]},{"1287328":[3]},{"1287330":[3]},{"1287332":[3]},{"1287334":[3]},{"1287336":[3]},{"1287338":[3]},{"1287340":[3]},{"1287342":[3]},{"1287344":[3]},{"1287346":[3]},{"1287348":[3]},{"1287350":[3]},{"1287352":[3]},{"1287354":[3]},{"1287356":[3]},{"1287358":[3]},{"1287360":[3]},{"1287362":[3]},{"1287364":[3]},{"1287366":[3]},{"1287368":[3]},{"1287370":[3]},{"1287372":[3]},{"1287374":[3]},{"1287376":[3]},{"1287378":[3]},{"1287380":[3]},{"1287382":[3]},{"1287384":[3]},{"1287386":[1,4,3]},{"1287390":[3]},{"1287392":[3]},{"1287394":[3]},{"1287396":[3]},{"1287398":[3]},{"1287400":[3]},{"1287402":[3]},{"1287404":[3]},{"1287406":[3]},{"1287408":[3]},{"1287410":[3]},{"1287412":[3]},{"1287414":[3]},{"1287416":[3]},{"1287418":[3]},{"1287420":[3]},{"1287422":[1,4,3]},{"1287426":[3]},{"1287428":[3]},{"1287430":[3]},{"1287432":[3]},{"1287434":[3]},{"1287436":[3]},{"1287438":[3]},{"1287440":[3]},{"1287442":[3]},{"1287444":[3]},{"1287446":[3]},{"1287448":[3]},{"1287450":[3]},{"1287452":[3]},{"1287454":[3]},{"1287456":[3]},{"1287458":[3]},{"1287460":[3]},{"1287462":[3]},{"1287464":[3]},{"1287466":[3]},{"1287468":[3]},{"1287470":[3]},{"1287472":[3]},{"1287474":[3]},{"1287476":[3]},{"1287478":[3]},{"1287480":[3]},{"1287482":[3]},{"1287484":[3]},{"1287486":[3]},{"1287488":[3]},{"1287490":[3]},{"1287492":[3]},{"1287494":[3]},{"1287496":[3]},{"1287498":[3]},{"1287500":[3]},{"1287502":[3]},{"1287504":[3]},{"1287506":[3]},{"1287508":[3]},{"1287510":[3]},{"1287512":[3]},{"1287514":[3]},{"1287516":[3]},{"1287518":[3]},{"1287520":[3]},{"1287522":[3]},{"1287524":[3]},{"1287526":[3]},{"1287528":[3]},{"1287530":[3]},{"1287532":[3]},{"1287534":[3]},{"1287536":[3]},{"1287538":[3]},{"1287540":[3]},{"1287542":[3]},{"1287544":[3]},{"1287546":[3]},{"1287548":[3]},{"1287550":[3]},{"1287552":[3]},{"1287554":[3]},{"1287556":[3]},{"1287558":[3]},{"1287560":[3]},{"1287562":[3]},{"1287564":[3]},{"1287566":[3]},{"1287568":[3]},{"1287570":[3]},{"1287572":[3]},{"1287574":[3]},{"1287576":[3]},{"1287578":[3]},{"1287580":[3]},{"1287582":[3]},{"1287584":[3]},{"1287586":[3]},{"1287588":[3]},{"1287590":[3]},{"1287592":[3]},{"1287594":[3]},{"1287596":[3]},{"1287598":[3]},{"1287600":[3]},{"1287602":[3]},{"1287604":[3]},{"1287606":[3]},{"1287608":[3]},{"1287610":[3]},{"1287612":[3]},{"1287614":[3]},{"1287616":[3]},{"1287618":[3]},{"1287620":[3]},{"1287622":[3]},{"1287624":[3]},{"1287626":[3]},{"1287628":[3]},{"1287630":[3]},{"1287632":[3]},{"1287634":[3]},{"1287636":[3]},{"1287638":[3]},{"1287640":[3]},{"1287642":[3]},{"1287644":[3]},{"1287646":[3]},{"1287648":[3]},{"1287650":[3]},{"1287652":[3]},{"1287654":[3]},{"1287656":[3]},{"1287658":[3]},{"1287660":[3]},{"1287662":[3]},{"1287664":[3]},{"1287666":[3]},{"1287668":[3]},{"1287670":[3]},{"1287672":[3]},{"1287674":[3]},{"1287676":[3]},{"1287678":[3]},{"1287680":[3]},{"1287682":[3]},{"1287684":[3]},{"1287686":[3]},{"1287688":[3]},{"1287690":[3]},{"1287692":[3]},{"1287694":[3]},{"1287696":[3]},{"1287698":[3]},{"1287700":[3]},{"1287702":[3]},{"1287704":[3]},{"1287706":[3]},{"1287708":[3]},{"1287710":[3]},{"1287712":[3]},{"1287714":[3]},{"1287716":[3]},{"1287718":[3]},{"1287720":[3]},{"1287722":[3]},{"1287724":[3]},{"1287726":[3]},{"1287728":[3]},{"1287730":[3]},{"1287732":[3]},{"1287734":[3]},{"1287736":[3]},{"1287738":[3]},{"1287740":[3]},{"1287742":[3]},{"1287744":[3]},{"1287746":[3]},{"1287748":[3]},{"1287750":[3]},{"1287752":[3]},{"1287754":[3]},{"1287756":[3]},{"1287758":[3]},{"1287760":[3]},{"1287762":[3]},{"1287764":[3]},{"1287766":[3]},{"1287768":[3]},{"1287770":[3]},{"1287772":[3]},{"1287774":[3]},{"1287776":[3]},{"1287778":[3]},{"1287780":[3]},{"1287782":[3]},{"1287784":[3]},{"1287786":[3]},{"1287788":[3]},{"1287790":[3]},{"1287792":[3]},{"1287794":[3]},{"1287796":[3]},{"1287798":[3]},{"1287800":[3]},{"1287802":[3]},{"1287804":[3]},{"1287806":[3]},{"1287808":[3]},{"1287810":[3]},{"1287812":[3]},{"1287814":[3]},{"1287816":[3]},{"1287818":[3]},{"1287820":[3]},{"1287822":[3]},{"1287824":[3]},{"1287826":[3]},{"1287828":[3]},{"1287830":[3]},{"1287832":[3]},{"1287834":[3]},{"1287836":[3]},{"1287838":[3]},{"1287840":[3]},{"1287842":[3]},{"1287844":[3]},{"1287846":[3]},{"1287848":[3]},{"1287850":[3]},{"1287852":[3]},{"1287854":[3]},{"1287856":[3]},{"1287858":[3]},{"1287860":[3]},{"1287862":[3]},{"1287864":[3]},{"1287866":[3]},{"1287868":[3]},{"1287870":[3]},{"1287872":[3]},{"1287874":[3]},{"1287876":[3]},{"1287878":[3]},{"1287880":[3]},{"1287882":[3]},{"1287884":[3]},{"1287886":[3]},{"1287888":[3]},{"1287890":[3]},{"1287892":[3]},{"1287894":[3]},{"1287896":[3]},{"1287898":[3]},{"1287900":[3]},{"1287902":[3]},{"1287904":[3]},{"1287906":[3]},{"1287908":[3]},{"1287910":[3]},{"1287912":[3]},{"1287914":[3]},{"1287916":[3]},{"1287918":[3]},{"1287920":[3]},{"1287922":[3]},{"1287924":[3]},{"1287926":[3]},{"1287928":[3]},{"1287930":[3]},{"1287932":[3]},{"1287934":[3]},{"1287936":[3]},{"1287938":[3]},{"1287940":[3]},{"1287942":[3]},{"1287944":[3]},{"1287946":[3]},{"1287948":[3]},{"1287950":[3]},{"1287952":[3]},{"1287954":[3]},{"1287956":[3]},{"1287958":[3]},{"1287960":[3]},{"1287962":[3]},{"1287964":[3]},{"1287966":[3]},{"1287968":[3]},{"1287970":[3]},{"1287972":[3]},{"1287974":[3]},{"1287976":[3]},{"1287978":[3]},{"1287980":[3]},{"1287982":[3]},{"1287984":[3]},{"1287986":[3]},{"1287988":[3]},{"1287990":[3]},{"1287992":[3]},{"1287994":[3]},{"1287996":[3]},{"1287998":[3]},{"1288000":[3]},{"1288002":[3]},{"1288004":[3]},{"1288006":[3]},{"1288008":[3]},{"1288010":[3]},{"1288012":[3]},{"1288014":[3]},{"1288016":[3]},{"1288018":[3]},{"1288020":[3]},{"1288022":[3]},{"1288024":[3]},{"1288026":[3]},{"1288028":[3]},{"1288030":[3]},{"1288032":[3]},{"1288034":[3]},{"1288036":[3]},{"1288038":[3]},{"1288040":[3]},{"1288042":[3]},{"1288044":[3]},{"1288046":[3]},{"1288048":[3]},{"1288050":[3]},{"1288052":[3]},{"1288054":[3]},{"1288056":[3]},{"1288058":[3]},{"1288060":[3]},{"1288062":[3]},{"1288064":[3]},{"1288066":[3]},{"1288068":[3]},{"1288070":[3]},{"1288072":[3]},{"1288074":[3]},{"1288076":[3]},{"1288078":[3]},{"1288080":[3]},{"1288082":[3]},{"1288084":[3]},{"1288086":[3]},{"1288088":[3]},{"1288090":[3]},{"1288092":[3]},{"1288094":[3]},{"1288096":[3]},{"1288098":[3]},{"1288100":[3]},{"1288102":[3]},{"1288104":[3]},{"1288106":[3]},{"1288108":[3]},{"1288110":[3]},{"1288112":[3]},{"1288114":[3]},{"1288116":[3]},{"1288118":[3]},{"1288120":[3]},{"1288122":[3]},{"1288124":[3]},{"1288126":[3]},{"1288128":[3]},{"1288130":[3]},{"1288132":[3]},{"1288134":[3]},{"1288136":[3]},{"1288138":[3]},{"1288140":[3]},{"1288142":[3]},{"1288144":[3]},{"1288146":[3]},{"1288148":[3]},{"1288150":[3]},{"1288152":[3]},{"1288154":[3]},{"1288156":[3]},{"1288158":[3]},{"1288160":[3]},{"1288162":[3]},{"1288164":[3]},{"1288166":[3]},{"1288168":[3]},{"1288170":[3]},{"1288172":[3]},{"1288174":[3]},{"1288176":[3]},{"1288178":[3]},{"1288180":[3]},{"1288182":[3]},{"1288184":[3]},{"1288186":[3]},{"1288188":[3]},{"1288190":[3]},{"1288192":[3]},{"1288194":[3]},{"1288196":[3]},{"1288198":[3]},{"1288200":[3]},{"1288202":[3]},{"1288204":[3]},{"1288206":[3]},{"1288208":[3]},{"1288210":[3]},{"1288212":[3]},{"1288214":[3]},{"1288216":[3]},{"1288218":[3]},{"1288220":[3]},{"1288222":[3]},{"1288224":[3]},{"1288226":[3]},{"1288228":[3]},{"1288230":[3]},{"1288232":[3]},{"1288234":[3]},{"1288236":[3]},{"1288238":[3]},{"1288240":[3]},{"1288242":[3]},{"1288244":[3]},{"1288246":[3]},{"1288248":[3]},{"1288250":[3]},{"1288252":[3]},{"1288254":[3]},{"1288256":[3]},{"1288258":[3]},{"1288260":[3]},{"1288262":[3]},{"1288264":[3]},{"1288266":[3]},{"1288268":[3]},{"1288270":[3]},{"1288272":[3]},{"1288274":[3]},{"1288276":[3]},{"1288278":[3]},{"1288280":[3]},{"1288282":[3]},{"1288284":[3]},{"1288286":[3]},{"1288288":[3]},{"1288290":[3]},{"1288292":[3]},{"1288294":[3]},{"1288296":[3]},{"1288298":[3]},{"1288300":[3]},{"1288302":[3]},{"1288304":[3]},{"1288306":[3]},{"1288308":[3]},{"1288310":[3]},{"1288312":[3]},{"1288314":[3]},{"1288316":[3]},{"1288318":[3]},{"1288320":[3]},{"1288322":[3]},{"1288324":[3]},{"1288326":[3]},{"1288328":[3]},{"1288330":[3]},{"1288332":[3]},{"1288334":[3]},{"1288336":[3]},{"1288338":[3]},{"1288340":[3]},{"1288342":[3]},{"1288344":[3]},{"1288346":[3]},{"1288348":[3]},{"1288350":[3]},{"1288352":[3]},{"1288354":[3]},{"1288356":[3]},{"1288358":[3]},{"1288360":[3]},{"1288362":[3]},{"1288364":[3]},{"1288366":[3]},{"1288368":[3]},{"1288370":[3]},{"1288372":[3]},{"1288374":[3]},{"1288376":[3]},{"1288378":[3]},{"1288380":[3]},{"1288382":[3]},{"1288384":[3]},{"1288386":[3]},{"1288388":[3]},{"1288390":[3]},{"1288392":[3]},{"1288394":[3]},{"1288396":[3]},{"1288398":[3]},{"1288400":[3]},{"1288402":[3]},{"1288404":[3]},{"1288406":[3]},{"1288408":[3]},{"1288410":[3]},{"1288412":[3]},{"1288414":[3]},{"1288416":[3]},{"1288418":[3]},{"1288420":[3]},{"1288422":[3]},{"1288424":[3]},{"1288426":[3]},{"1288428":[3]},{"1288430":[3]},{"1288432":[3]},{"1288434":[3]},{"1288436":[3]},{"1288438":[3]},{"1288440":[3]},{"1288442":[3]},{"1288444":[3]},{"1288446":[3]},{"1288448":[3]},{"1288450":[3]},{"1288452":[3]},{"1288454":[3]},{"1288456":[3]},{"1288458":[3]},{"1288460":[3]},{"1288462":[3]},{"1288464":[3]},{"1288466":[3]},{"1288468":[3]},{"1288470":[3]},{"1288472":[3]},{"1288474":[3]},{"1288476":[3]},{"1288478":[3]},{"1288480":[3]},{"1288482":[3]},{"1288484":[3]},{"1288486":[3]},{"1288488":[3]},{"1288490":[3]},{"1288492":[3]},{"1288494":[3]},{"1288496":[3]},{"1288498":[3]},{"1288500":[3]},{"1288502":[3]},{"1288504":[3]},{"1288506":[3]},{"1288508":[3]},{"1288510":[3]},{"1288512":[3]},{"1288514":[3]},{"1288516":[3]},{"1288518":[3]},{"1288520":[3]},{"1288522":[3]},{"1288524":[3]},{"1288526":[3]},{"1288528":[3]},{"1288530":[3]},{"1288532":[3]},{"1288534":[3]},{"1288536":[3]},{"1288538":[3]},{"1288540":[3]},{"1288542":[3]},{"1288544":[3]},{"1288546":[3]},{"1288548":[3]},{"1288550":[3]},{"1288552":[3]},{"1288554":[3]},{"1288556":[3]},{"1288558":[3]},{"1288560":[3]},{"1288562":[3]},{"1288564":[3]},{"1288566":[3]},{"1288568":[3]},{"1288570":[3]},{"1288572":[3]},{"1288574":[3]},{"1288576":[3]},{"1288578":[3]},{"1288580":[3]},{"1288582":[3]},{"1288584":[3]},{"1288586":[3]},{"1288588":[3]},{"1288590":[3]},{"1288592":[3]},{"1288594":[3]},{"1288596":[3]},{"1288598":[3]},{"1288600":[3]},{"1288602":[3]},{"1288604":[3]},{"1288606":[3]},{"1288608":[3]},{"1288610":[3]},{"1288612":[3]},{"1288614":[3]},{"1288616":[3]},{"1288618":[3]},{"1288620":[3]},{"1288622":[3]},{"1288624":[3]},{"1288626":[3]},{"1288628":[3]},{"1288630":[3]},{"1288632":[3]},{"1288634":[3]},{"1288636":[3]},{"1288638":[3]},{"1288640":[3]},{"1288642":[3]},{"1288644":[3]},{"1288646":[3]},{"1288648":[3]},{"1288650":[3]},{"1288652":[3]},{"1288654":[3]},{"1288656":[3]},{"1288658":[3]},{"1288660":[3]},{"1288662":[3]},{"1288664":[3]},{"1288666":[3]},{"1288668":[3]},{"1288670":[3]},{"1288672":[3]},{"1288674":[3]},{"1288676":[3]},{"1288678":[3]},{"1288680":[3]},{"1288682":[3]},{"1288684":[3]},{"1288686":[3]},{"1288688":[3]},{"1288690":[3]},{"1288692":[3]},{"1288694":[3]},{"1288696":[3]},{"1288698":[3]},{"1288700":[3]},{"1288702":[3]},{"1288704":[3]},{"1288706":[3]},{"1288708":[3]},{"1288710":[3]},{"1288712":[3]},{"1288714":[3]},{"1288716":[3]},{"1288718":[3]},{"1288720":[3]},{"1288722":[3]},{"1288724":[3]},{"1288726":[3]},{"1288728":[3]},{"1288730":[3]},{"1288732":[3]},{"1288734":[3]},{"1288736":[3]},{"1288738":[3]},{"1288740":[3]},{"1288742":[3]},{"1288744":[3]},{"1288746":[3]},{"1288748":[3]},{"1288750":[3]},{"1288752":[3]},{"1288754":[3]},{"1288756":[3]},{"1288758":[3]},{"1288760":[3]},{"1288762":[3]},{"1288764":[3]},{"1288766":[3]},{"1288768":[3]},{"1288770":[3]},{"1288772":[3]},{"1288774":[3]},{"1288776":[3]},{"1288778":[3]},{"1288780":[3]},{"1288782":[3]},{"1288784":[3]},{"1288786":[3]},{"1288788":[3]},{"1288790":[3]},{"1288792":[3]},{"1288794":[3]},{"1288796":[3]},{"1288798":[3]},{"1288800":[3]},{"1288802":[3]},{"1288804":[3]},{"1288806":[3]},{"1288808":[3]},{"1288810":[3]},{"1288812":[3]},{"1288814":[3]},{"1288816":[3]},{"1288818":[3]},{"1288820":[3]},{"1288822":[3]},{"1288824":[3]},{"1288826":[3]},{"1288828":[3]},{"1288830":[3]},{"1288832":[3]},{"1288834":[3]},{"1288836":[3]},{"1288838":[3]},{"1288840":[3]},{"1288842":[3]},{"1288844":[3]},{"1288846":[3]},{"1288848":[3]},{"1288850":[3]},{"1288852":[3]},{"1288854":[3]},{"1288856":[3]},{"1288858":[3]},{"1288860":[3]},{"1288862":[3]},{"1288864":[3]},{"1288866":[3]},{"1288868":[3]},{"1288870":[3]},{"1288872":[3]},{"1288874":[3]},{"1288876":[3]},{"1288878":[3]},{"1288880":[3]},{"1288882":[3]},{"1288884":[3]},{"1288886":[3]},{"1288888":[3]},{"1288890":[3]},{"1288892":[3]},{"1288894":[3]},{"1288896":[3]},{"1288898":[3]},{"1288900":[3]},{"1288902":[3]},{"1288904":[3]},{"1288906":[3]},{"1288908":[3]},{"1288910":[3]},{"1288912":[3]},{"1288914":[3]},{"1288916":[3]},{"1288918":[3]},{"1288920":[3]},{"1288922":[3]},{"1288924":[3]},{"1288926":[3]},{"1288928":[3]},{"1288930":[3]},{"1288932":[3]},{"1288934":[3]},{"1288936":[3]},{"1288938":[3]},{"1288940":[3]},{"1288942":[3]},{"1288944":[3]},{"1288946":[3]},{"1288948":[3]},{"1288950":[3]},{"1288952":[3]},{"1288954":[3]},{"1288956":[3]},{"1288958":[3]},{"1288960":[3]},{"1288962":[3]},{"1288964":[3]},{"1288966":[3]},{"1288968":[3]},{"1288970":[3]},{"1288972":[3]},{"1288974":[3]},{"1288976":[3]},{"1288978":[3]},{"1288980":[3]},{"1288982":[3]},{"1288984":[3]},{"1288986":[3]},{"1288988":[3]},{"1288990":[3]},{"1288992":[3]},{"1288994":[3]},{"1288996":[3]},{"1288998":[3]},{"1289000":[3]},{"1289002":[3]},{"1289004":[3]},{"1289006":[3]},{"1289008":[3]},{"1289010":[3]},{"1289012":[3]},{"1289014":[3]},{"1289016":[3]},{"1289018":[3]},{"1289020":[3]},{"1289022":[3]},{"1289024":[3]},{"1289026":[3]},{"1289028":[3]},{"1289030":[3]},{"1289032":[3]},{"1289034":[3]},{"1289036":[3]},{"1289038":[3]},{"1289040":[3]},{"1289042":[3]},{"1289044":[3]},{"1289046":[3]},{"1289048":[3]},{"1289050":[3]},{"1289052":[3]},{"1289054":[3]},{"1289056":[3]},{"1289058":[3]},{"1289060":[3]},{"1289062":[3]},{"1289064":[3]},{"1289066":[3]},{"1289068":[3]},{"1289070":[3]},{"1289072":[3]},{"1289074":[3]},{"1289076":[3]},{"1289078":[3]},{"1289080":[3]},{"1289082":[3]},{"1289084":[3]},{"1289086":[3]},{"1289088":[3]},{"1289090":[3]},{"1289092":[3]},{"1289094":[3]},{"1289096":[3]},{"1289098":[3]},{"1289100":[3]},{"1289102":[3]},{"1289104":[3]},{"1289106":[3]},{"1289108":[3]},{"1289110":[3]},{"1289112":[3]},{"1289114":[3]},{"1289116":[3]},{"1289118":[3]},{"1289120":[3]},{"1289122":[3]},{"1289124":[3]},{"1289126":[3]},{"1289128":[3]},{"1289130":[3]},{"1289132":[3]},{"1289134":[3]},{"1289136":[3]},{"1289138":[3]},{"1289140":[3]},{"1289142":[3]},{"1289144":[3]},{"1289146":[3]},{"1289148":[3]},{"1289150":[3]},{"1289152":[3]},{"1289154":[3]},{"1289156":[3]},{"1289158":[3]},{"1289160":[3]},{"1289162":[3]},{"1289164":[3]},{"1289166":[3]},{"1289168":[3]},{"1289170":[3]},{"1289172":[3]},{"1289174":[3]},{"1289176":[3]},{"1289178":[3]},{"1289180":[3]},{"1289182":[3]},{"1289184":[3]},{"1289186":[3]},{"1289188":[3]},{"1289190":[3]},{"1289192":[3]},{"1289194":[3]},{"1289196":[3]},{"1289198":[3]},{"1289200":[3]},{"1289202":[3]},{"1289204":[3]},{"1289206":[3]},{"1289208":[3]},{"1289210":[3]},{"1289212":[3]},{"1289214":[3]},{"1289216":[3]},{"1289218":[3]},{"1289220":[3]},{"1289222":[3]},{"1289224":[3]},{"1289226":[3]},{"1289228":[3]},{"1289230":[3]},{"1289232":[3]},{"1289234":[3]},{"1289236":[3]},{"1289238":[3]},{"1289240":[3]},{"1289242":[3]},{"1289244":[3]},{"1289246":[3]},{"1289248":[3]},{"1289250":[3]},{"1289252":[3]},{"1289254":[3]},{"1289256":[3]},{"1289258":[3]},{"1289260":[3]},{"1289262":[3]},{"1289264":[3]},{"1289266":[3]},{"1289268":[3]},{"1289270":[3]},{"1289272":[3]},{"1289274":[3]},{"1289276":[3]},{"1289278":[3]},{"1289280":[3]},{"1289282":[3]},{"1289284":[3]},{"1289286":[3]},{"1289288":[3]},{"1289290":[3]},{"1289292":[3]},{"1289294":[3]},{"1289296":[3]},{"1289298":[3]},{"1289300":[3]},{"1289302":[3]},{"1289304":[3]},{"1289306":[3]},{"1289308":[3]},{"1289310":[3]},{"1289312":[3]},{"1289314":[3]},{"1289316":[3]},{"1289318":[3]},{"1289320":[3]},{"1289322":[3]},{"1289324":[3]},{"1289326":[3]},{"1289328":[3]},{"1289330":[3]},{"1289332":[3]},{"1289334":[3]},{"1289336":[3]},{"1289338":[3]},{"1289340":[3]},{"1289342":[3]},{"1289344":[3]},{"1289346":[3]},{"1289348":[3]},{"1289350":[3]},{"1289352":[3]},{"1289354":[3]},{"1289356":[3]},{"1289358":[3]},{"1289360":[3]},{"1289362":[3]},{"1289364":[3]},{"1289366":[3]},{"1289368":[3]},{"1289370":[3]},{"1289372":[3]},{"1289374":[3]},{"1289376":[3]},{"1289378":[3]},{"1289380":[3]},{"1289382":[3]},{"1289384":[3]},{"1289386":[3]},{"1289388":[3]},{"1289390":[3]},{"1289392":[3]},{"1289394":[3]},{"1289396":[3]},{"1289398":[3]},{"1289400":[3]},{"1289402":[3]},{"1289404":[3]},{"1289406":[3]},{"1289408":[3]},{"1289410":[3]},{"1289412":[3]},{"1289414":[3]},{"1289416":[3]},{"1289418":[3]},{"1289420":[3]},{"1289422":[3]},{"1289424":[3]},{"1289426":[3]},{"1289428":[3]},{"1289430":[3]},{"1289432":[3]},{"1289434":[3]},{"1289436":[3]},{"1289438":[3]},{"1289440":[3]},{"1289442":[3]},{"1289444":[3]},{"1289446":[3]},{"1289448":[3]},{"1289450":[3]},{"1289452":[3]},{"1289454":[3]},{"1289456":[3]},{"1289458":[3]},{"1289460":[3]},{"1289462":[3]},{"1289464":[3]},{"1289466":[3]},{"1289468":[3]},{"1289470":[3]},{"1289472":[3]},{"1289474":[3]},{"1289476":[3]},{"1289478":[3]},{"1289480":[3]},{"1289482":[3]},{"1289484":[3]},{"1289486":[3]},{"1289488":[3]},{"1289490":[3]},{"1289492":[3]},{"1289494":[3]},{"1289496":[3]},{"1289498":[3]},{"1289500":[3]},{"1289502":[3]},{"1289504":[3]},{"1289506":[3]},{"1289508":[3]},{"1289510":[3]},{"1289512":[3]},{"1289514":[3]},{"1289516":[3]},{"1289518":[3]},{"1289520":[3]},{"1289522":[3]},{"1289524":[3]},{"1289526":[3]},{"1289528":[3]},{"1289530":[3]},{"1289532":[3]},{"1289534":[3]},{"1289536":[3]},{"1289538":[3]},{"1289540":[3]},{"1289542":[3]},{"1289544":[3]},{"1289546":[3]},{"1289548":[3]},{"1289550":[3]},{"1289552":[3]},{"1289554":[3]},{"1289556":[3]},{"1289558":[3]},{"1289560":[3]},{"1289562":[3]},{"1289564":[3]},{"1289566":[3]},{"1289568":[3]},{"1289570":[3]},{"1289572":[3]},{"1289574":[3]},{"1289576":[3]},{"1289578":[3]},{"1289580":[3]},{"1289582":[3]},{"1289584":[3]},{"1289586":[3]},{"1289588":[3]},{"1289590":[3]},{"1289592":[3]},{"1289594":[3]},{"1289596":[3]},{"1289598":[3]},{"1289600":[3]},{"1289602":[3]},{"1289604":[3]},{"1289606":[3]},{"1289608":[3]},{"1289610":[3]},{"1289612":[3]},{"1289614":[3]},{"1289616":[3]},{"1289618":[3]},{"1289620":[3]},{"1289622":[3]},{"1289624":[3]},{"1289626":[3]},{"1289628":[3]},{"1289630":[3]},{"1289632":[3]},{"1289634":[3]},{"1289636":[3]},{"1289638":[3]},{"1289640":[3]},{"1289642":[3]},{"1289644":[3]},{"1289646":[3]},{"1289648":[3]},{"1289650":[3]},{"1289652":[3]},{"1289654":[3]},{"1289656":[3]},{"1289658":[3]},{"1289660":[3]},{"1289662":[3]},{"1289664":[3]},{"1289666":[3]},{"1289668":[3]},{"1289670":[3]},{"1289672":[3]},{"1289674":[3]},{"1289676":[3]},{"1289678":[3]},{"1289680":[3]},{"1289682":[3]},{"1289684":[3]},{"1289686":[3]},{"1289688":[3]},{"1289690":[3]},{"1289692":[3]},{"1289694":[3]},{"1289696":[3]},{"1289698":[3]},{"1289700":[3]},{"1289702":[3]},{"1289704":[3]},{"1289706":[3]},{"1289708":[3]},{"1289710":[3]},{"1289712":[3]},{"1289714":[3]},{"1289716":[3]},{"1289718":[3]},{"1289720":[3]},{"1289722":[3]},{"1289724":[3]},{"1289726":[3]},{"1289728":[3]},{"1289730":[3]},{"1289732":[3]},{"1289734":[3]},{"1289736":[3]},{"1289738":[3]},{"1289740":[3]},{"1289742":[3]},{"1289744":[3]},{"1289746":[3]},{"1289748":[3]},{"1289750":[3]},{"1289752":[3]},{"1289754":[3]},{"1289756":[3]},{"1289758":[3]},{"1289760":[3]},{"1289762":[3]},{"1289764":[3]},{"1289766":[3]},{"1289768":[3]},{"1289770":[3]},{"1289772":[3]},{"1289774":[3]},{"1289776":[3]},{"1289778":[3]},{"1289780":[3]},{"1289782":[3]},{"1289784":[3]},{"1289786":[3]},{"1289788":[3]},{"1289790":[3]},{"1290240":[3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128,3,2,128,128]},{"1294382":[33,128]},{"1294392":[20,64]},{"1294396":[36,128,19,128]},{"1294422":[26,32,26,64]},{"1294428":[25,64,25,128,42,64]},{"1294464":[17,32]},{"1294470":[50,128]},{"1294478":[20,128]},{"1294494":[54,64]},{"1294508":[26,16,43,64]},{"1294520":[42,32]},{"1294536":[34,128]},{"1294544":[54,32]},{"1294556":[55,128,38,128,53,128]},{"1294568":[54,128,56,128]},{"1294574":[56,64]},{"1294580":[55,64,55,16]},{"1294588":[74,32]},{"1294600":[77,128]},{"1294606":[78,64]},{"1294618":[83,32]},{"1294646":[89,128]},{"1294654":[58,128]},{"1294668":[61,32]},{"1294674":[62,64]},{"1294696":[67,32]},{"1294710":[88,64]},{"1294720":[87,32,104,64]},{"1294730":[73,32]},{"1294740":[107,128]},{"1294754":[95,128]},{"1294762":[94,128]},{"1294828":[88,32]},{"1294832":[91,128]},{"1294890":[124,32]},{"1294896":[125,64,123,64]},{"1294904":[124,64]},{"1294908":[142,128]},{"1294972":[126,128]},{"1295010":[169,32]},{"1295048":[177,64]},{"1295052":[178,128]},{"1295076":[184,128]},{"1295088":[153,64]},{"1295128":[161,128]},{"1295134":[162,128]},{"1295168":[198,128]},{"1295176":[168,32]},{"1295180":[186,128]},{"1295188":[185,128]},{"1295208":[204,128]},{"1295212":[204,64]},{"1295224":[191,128]},{"1295228":[190,64]},{"1295238":[194,64]},{"1295252":[195,128,193,64]},{"1295268":[194,128]},{"1295282":[197,128,196,128]},{"1295290":[182,32]},{"1295320":[204,32,188,64,188,16,203,128]},{"1295382":[255,255]},{"1295617":[128,17]},{"1295620":[128,17]},{"1295623":[128,17]},{"1295626":[128,17]},{"1295629":[128,17]},{"1295632":[128,17]},{"1295635":[128,17]},{"1295638":[128,17]},{"1295641":[128,17]},{"1295644":[128,17]},{"1295647":[128,17]},{"1295650":[128,17]},{"1295653":[128,17]},{"1295656":[128,17]},{"1295659":[128,17]},{"1295662":[128,17]},{"1295665":[128,17]},{"1295668":[128,17]},{"1295671":[128,17]},{"1295674":[128,17]},{"1295677":[128,17]},{"1295680":[128,17]},{"1295683":[128,17]},{"1295686":[128,17]},{"1295689":[128,17]},{"1295692":[128,17]},{"1295695":[128,17]},{"1295698":[128,17]},{"1295701":[128,17]},{"1295704":[128,17]},{"1295707":[128,17]},{"1295710":[128,17]},{"1295713":[128,17]},{"1295716":[128,17]},{"1295719":[128,17]},{"1295722":[128,17]},{"1295725":[128,17]},{"1295728":[128,17]},{"1295731":[128,17]},{"1295734":[128,17,168,16,160,44,8,40,184,32,168,56,32,40,248,160,168,184,32,168,120,32,104,248,16,240,124,24,112,116,24,104,248,16,240,168,16,160,44,8,40,184,32,168,56,32,40,248,160,168,184,32,168,120,32,104,248,16,240,124,24,112,116,24,104,248,16,240,120,48,96,64,32,48,64,32,48,132,24,120,104,16,96,160,160,80,88,80,48,152,80,112,88,80,48,120,48,96,64,32,48,64,32,48,104,16,96,132,24,120,160,160,80,88,80,48,152,80,112,88,80,48,1,2,3,4,5,6,10,20]},{"1306652":[4,4,2,4,4,6,6,6,5,6,1,3,6,8,1,1]},{"1306669":[1,2,1,6,3,3,2,1,1,4,4,2]},{"1306682":[2]},{"1306684":[1]},{"1306686":[1]},{"1306690":[1]},{"1306692":[1]},{"1306694":[1]},{"1306696":[1]},{"1306698":[1]},{"1306700":[1]},{"1306702":[1]},{"1306704":[1]},{"1306706":[1]},{"1306708":[80,45,80,45,81,45,82,45,84,45,86,45,85,45,90,45,87,45,89,45,83,45,88,45,91,45,92,45,8,8,6,6,2]},{"1306742":[4,8,8,8,6,8,2,7]},{"1306755":[1,1]},{"1306762":[1,2]},{"1306768":[2]},{"1306771":[2]},{"1306773":[6,8]},{"1306776":[2,1]},{"1306779":[4,4]},{"1306782":[127]},{"1306784":[119]},{"1306786":[7]},{"1306788":[11]},{"1306790":[255]},{"1306792":[11,1,127,1,135,1]},{"1306880":[19,4,4,6,13,255,8,5,6,7,7,7,14,14,11,255,19,4,4,13,13,13,8,5,6,7,7,7,14,14,11,11,4,4,4,13,13,255,8,5,8,9,7,7,6,255,11,6,4,5,4,18,8,8,8,8,8,9,7,7,6,14,11,11,4,4,4,18,10,10,8,255,255,9,7,7,14,14,11,11,4,4,4,18,8,1,9,9,9,9,7,14,14,14,11,11,4,4,4,18,10,10,8,9,9,255,7,14,14,14,11,255,4,4,4,18,18,18,8,5,255,255,255,14,14,14,11,11,4,4,4,18,18,18,255,5,255,5,255,14,14,14,11,255,12,12,12,12,255,14,14,12,12,5,255,14,14,14,11,11,12,12,12,12,13,14,14,5,5,5,5,10,10,255,11,11,4,12,12,12,13,13,13,13,5,5,5,10,10,255,11,11,4,12,12,12,13,13,13,13,5,5,255,10,10,255,11,255,4,12,12,255,255,13,13,255,5,5,5,10,10,255,11,6,4,6,6,6,6,6,6,6,6,255,6,6,255,6,6,6,6,6,3,3,3,3,255,255,6,6,6,6,255,6,6,6]},{"1343488":[107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107]},{"1540096":[144,43,128,183,162,225,201,79,28,185,230,32,88,103,101,166,17,207,121,76,199,97,209,212,211,155,120,59,251,170,163,21,124,54,215,139,11,173,38,181,59,105,227,131,127,17,226,146,128,103,225,156,207,213,69,245,107,54,182,122,26,57,132,19,71,236,216,174,87,158,244,11,97,187,141,10,77,98,142,34,227,114,197,113,247,153,11,16,177,19,82,94,120,67,116,143,55,105,7,154,37,14,48,106,3,158,142,15,119,146,56,51,137,93,51,179,1,161,191,105,141,151,39,108,76,155,168,24,153,126,178,219,167,68,39,168,165,188,245,170,238,46,202,161,254,193,254,73,173,59,202,66,243,108,217,113,25,3,123,227,169,134,108,208,162,43,251,25,217,219,71,136,122,32,31,213,62,199,63,127,135,212,144,156,209,235,249,120,17,47,185,155,119,1,128,223,57,23,35,155,98,227,166,83,60,220,249,201,52,204,61,71,47,158,28,37,238,132,158,69,184,36,1,170,227,178,181,147,5,161,8,9,56,25,214,247,166,44,245,29,77,231,59,45,27,188,134,64,216,235,117,242,139,234,140,212,183,241,166,179,99,107,130,146,218,145,93,51,253,102,50,146,200,42,194,16,131,73,27,185,48,120,170,214,2,170,146,33,230,4]},{"1540387":[240,238,64,63,94,110,23,136,169,167,112,206,202,226,65,161,34,7,36,247,200,224,86,80,224,133,246,98,129,67,225,183,107,126,158,14,34,45,243,86,73,115,204,178,67,27,89,64,94,118,169,213,246,134,48,242,46,64,225,119,216,41,243,184,63,195,132,25,229,141,113,140,32,169,116,43,59,48,58,131,225,184,61,251,72,239,125,69,219,119,182,106,224,187,88,85,180,197,106,162,54,174,194,173,175,102,130,171,249,15,217,88,149,101,152,220,153,71,226,113,205,111,162,249,93,43,191,103,106,232,147,56,23,192,122,216,116,19,45,148,123,101,81,109,254,5,250,30,179,60,202,4,222,231]},{"1540542":[151,126,164,77,47,114,162,79,143,169,63,102,56,32,61,212,170,165,119,171,243,200,190,54,240,175,20,87,3,57,31,219,169,240,40,5,31,230,40,181,210,118,26,164,186,124,191,127,176,40,39,145,211,52,67,71,170,93,3,119,244,131,207,55,85,8,79,141,109,163,10,107,53,226,201,118,208,65,196,73,75,171,63,214,126,4,219,253,24,129,140,23,92,62,52,23,116,19,242,252,14,58,239,226,214,118,8,99,3,39,200,9,69,193,134,107,50,247,243,56,57,128,255,131,226,117,111,137,136,166,115,119,243,36,233,30,225,178,224,24,243,143,216,34,203,234,142,242,30,194,133,68,40,54,200,154,180,122,160,154,18,217,151,55,29,167,87,161,247,39,171,141,171,84,78,52,148,153,130,157,249,29,40,228,114,206,213,115,217,170,241,235,124,138,10,85,228,189,132,54,4,78,231,157,64,105,15,219,226,227,6,8,126,19,91,118,166,68,214,121,132,42,16,112,55,207,8,254,225,117,248,26,74,100,151,213,127,226,252,202,239,186,255,43,179,20,204,112,62,154,51,219,53,105,53,155,224,182,146,65,147,192,93,180,131,212,15,12,215,246,101,237,47,18,118,194,218,212,67,187,128,231,17,169,70,124,193,102,32,23,117,197,9,112,69,23,156,67,102,233,78,76,2,223,78,61,3,236,73,210,146,24,223,246,83,103,156,177,75,148,120,46,248,249,74,16,233,192,184,141,168,226,68,179,62,78,99,198,74,242,95,50,53,212,28,71,56,155,219,168,241,75,17,156,99,158,114,32,173,29,68,69,234,179,160,176,138,148,184,9,53,59,139,96,47,197,70,237,208,51,141,151,37,205,192,222,116,178,241,8,236,90,104,234,60,98,70,233,126,132,255,115,54,124,133,62,154,181,206,188,87,120,83,82,10,60,136,160,228,66,172,232,62,93,236,130,250,111,168,211,201,102,154,221,245,93,234,115,57,6,53,12,115,243,220,108,224,156,234,15,168,216,93,240,139,106,228,37,186,12,12,229,119,2,153,178,105,167,236,217,75,255,238,236,226,10,22,48,211,149,171,247,26,61,247,215,6,121,176,110,87,62,185,199,182,102,5,149,153,207,1,108,98,244,132,212,112,59,224,86,102,164,188,28,143,218,59,151,25,235,64,193,195,250,177,23,93,138,36,222,61,119,85,218,159,153,123,68,114,104,67,51,114,130,168,9,246,196,211,159]},{"1541093":[63,247,66,174,232,46,160,187,48,55,94,226,231,16,35,51,9,237,162]},{"1541113":[112,204,35,248,130,224,246]},{"1541122":[30]},{"1541124":[60]},{"1541126":[90]},{"1541128":[120]},{"1541130":[150]},{"1541132":[180]},{"1541134":[210]},{"1541136":[240]},{"1541138":[14,1,44,1,74,1,104,1,134,1,164,1,194,1,224,1,254,1,28,2,58,2,88,2,118,2,148,2,178,2,208,2,238,2,12,3,42,3,72,3,102,3,132,3,162,3,192,3,222,3,252,3,26,4,56,4,86,4,116,4,146,4,176,4,206,4,236,4,10,5,40,5,70,5,100,5,130,5,160,5,190,5,220,5,250,5,24,6,54,6,84,6,114,6,144,6,174,6,204,6,234,6,8,7,38,7,68,7,98,7,128,7,158,7,188,7,218,7,248,7,22,8,52,8,82,8,112,8,142,8,172,8,202,8,232,8,6,9,36,9,66,9,96,9,126,9,156,9,186,9,216,9,246,9,20,10,50,10,80,10,110,10,140,10,170,10,200,10,230,10,4,11,34,11,64,11,94,11,124,11,154,11,184,11,214,11,244,11,18,12,48,12,78,12,108,12,138,12,168,12,198,12,228,12,2,13,32,13,62,13,92,13,122,13,152,13,182,13,212,13,242,13,16,14,46,14,76,14,106,14,136,14,166,14,196,14,226,14]},{"1541377":[15,30,15,60,15,90,15,120,15,150,15,180,15,210,15,240,15,14,16,44,16,74,16,104,16,134,16,164,16,194,16,224,16,254,16,28,17,58,17,88,17,118,17,148,17,178,17,208,17,238,17,12,18,42,18,72,18,102,18,132,18,162,18,192,18,222,18,252,18,26,19,56,19,86,19,116,19,146,19,176,19,206,19,236,19,10,20,40,20,70,20,100,20,130,20,160,20,190,20,220,20,250,20,24,21,54,21,84,21,114,21,144,21,174,21,204,21,234,21,8,22,38,22,68,22,98,22,128,22,158,22,188,22,218,22,248,22,22,23,52,23,82,23,112,23,142,23,172,23,202,23,232,23,6,24,36,24,66,24,96,24,126,24,156,24,186,24,216,24,246,24,20,25,50,25,80,25,110,25,140,25,170,25,200,25,230,25,4,26,34,26,64,26,94,26,124,26,154,26,184,26,214,26,244,26,18,27,48,27,78,27,108,27,138,27,168,27,198,27,228,27,2,28,32,28,62,28,92,28,122,28,152,28,182,28,212,28,242,28,16,29,46,29,76,29,106,29,136,29,166,29,196,29,226,29]},{"1541633":[30,30,30,60,30,90,30,120,30,150,30,180,30,210,30,240,30,14,31,44,31,74,31,104,31,134,31,164,31,194,31,224,31,254,31,28,32,58,32,88,32,118,32,148,32,178,32,208,32,238,32,12,33,42,33,72,33,102,33,132,33,162,33,192,33,222,33,252,33,26,34,56,34,86,34,116,34,146,34,176,34,206,34,236,34,10,35,40,35,70,35,100,35,130,35,160,35,190,35,220,35,250,35,24,36,54,36,84,36,114,36,144,36,174,36,204,36,234,36,8,37,38,37,68,37,98,37,128,37,158,37,188,37,218,37,248,37,22,38,52,38,82,38,112,38,142,38,172,38,202,38,232,38,6,39,36,39,66,39,96,39,126,39,156,39,186,39,216,39,246,39,20,40,50,40,80,40,110,40,140,40,170,40,200,40,230,40,4,41,34,41,64,41,94,41,124,41,154,41,184,41,214,41,244,41,18,42,48,42,78,42,108,42,138,42,168,42,198,42,228,42,2,43,32,43,62,43,92,43,122,43,152,43,182,43,212,43,242,43,16,44,46,44,76,44,106,44,136,44,166,44,196,44,226,44]},{"1541889":[45,30,45,60,45,90,45,120,45,150,45,180,45,210,45,240,45,14,46,44,46,74,46,104,46,134,46,164,46,194,46,224,46,254,46,28,47,58,47,88,47,118,47,148,47,178,47,208,47,238,47,12,48,42,48,72,48,102,48,132,48,162,48,192,48,222,48,252,48,26,49,56,49,86,49,116,49,146,49,176,49,206,49,236,49,10,50,40,50,70,50,100,50,130,50,160,50,190,50,220,50,250,50,24,51,54,51,84,51,114,51,144,51,174,51,204,51,234,51,8,52,38,52,68,52,98,52,128,52,158,52,188,52,218,52,248,52,22,53,52,53,82,53,112,53,142,53,172,53,202,53,232,53,6,54,36,54,66,54,96,54,126,54,156,54,186,54,216,54,246,54,20,55,50,55,80,55,110,55,140,55,170,55,200,55,230,55,4,56,34,56,64,56,94,56,124,56,154,56,184,56,214,56,244,56,18,57,48,57,78,57,108,57,138,57,168,57,198,57,228,57,2,58,32,58,62,58,92,58,122,58,152,58,182,58,212,58,242,58,16,59,46,59,76,59,106,59,136,59,166,59,196,59,226,59,117]},{"1542146":[255]},{"1542148":[255]},{"1542150":[255]},{"1542152":[185]},{"1542154":[181]},{"1542156":[170]},{"1542158":[194]},{"1542160":[174]},{"1542162":[187]},{"1542164":[255]},{"1542166":[161]},{"1542168":[255]},{"1542170":[255]},{"1542172":[255,127,117]},{"1542176":[255]},{"1542178":[255]},{"1542180":[255]},{"1542182":[185]},{"1542184":[181]},{"1542186":[170]},{"1542188":[194]},{"1542190":[174]},{"1542192":[187]},{"1542194":[255]},{"1542196":[162]},{"1542198":[255]},{"1542200":[255]},{"1542202":[255,127,117]},{"1542206":[255]},{"1542208":[255]},{"1542210":[255]},{"1542212":[185]},{"1542214":[181]},{"1542216":[170]},{"1542218":[194]},{"1542220":[174]},{"1542222":[187]},{"1542224":[255]},{"1542226":[163]},{"1542228":[255]},{"1542230":[255]},{"1542232":[255,127,117]},{"1542236":[255]},{"1542238":[255]},{"1542240":[255]},{"1542242":[185]},{"1542244":[181]},{"1542246":[170]},{"1542248":[194]},{"1542250":[174]},{"1542252":[187]},{"1542254":[255]},{"1542256":[164]},{"1542258":[255]},{"1542260":[255]},{"1542262":[255,127,117]},{"1542266":[255]},{"1542268":[255]},{"1542270":[255]},{"1542272":[185]},{"1542274":[181]},{"1542276":[170]},{"1542278":[194]},{"1542280":[174]},{"1542282":[187]},{"1542284":[255]},{"1542286":[165]},{"1542288":[255]},{"1542290":[255]},{"1542292":[255,127,117]},{"1542296":[255]},{"1542298":[255]},{"1542300":[255]},{"1542302":[185]},{"1542304":[181]},{"1542306":[170]},{"1542308":[194]},{"1542310":[174]},{"1542312":[187]},{"1542314":[255]},{"1542316":[166]},{"1542318":[255]},{"1542320":[255]},{"1542322":[255,127,117]},{"1542326":[255]},{"1542328":[255]},{"1542330":[255]},{"1542332":[185]},{"1542334":[181]},{"1542336":[170]},{"1542338":[194]},{"1542340":[174]},{"1542342":[187]},{"1542344":[255]},{"1542346":[167]},{"1542348":[255]},{"1542350":[255]},{"1542352":[255,127,117]},{"1542356":[255]},{"1542358":[255]},{"1542360":[255]},{"1542362":[185]},{"1542364":[181]},{"1542366":[170]},{"1542368":[194]},{"1542370":[174]},{"1542372":[187]},{"1542374":[255]},{"1542376":[168]},{"1542378":[255]},{"1542380":[255]},{"1542382":[255,127,117]},{"1542386":[255]},{"1542388":[255]},{"1542390":[255]},{"1542392":[185]},{"1542394":[181]},{"1542396":[170]},{"1542398":[194]},{"1542400":[174]},{"1542402":[187]},{"1542404":[255]},{"1542406":[169]},{"1542408":[255]},{"1542410":[255]},{"1542412":[255,127,117]},{"1542416":[255]},{"1542418":[255]},{"1542420":[185]},{"1542422":[181]},{"1542424":[170]},{"1542426":[194]},{"1542428":[174]},{"1542430":[187]},{"1542432":[255]},{"1542434":[161]},{"1542436":[160]},{"1542438":[255]},{"1542440":[255]},{"1542442":[255,127,117]},{"1542446":[255]},{"1542448":[255]},{"1542450":[185]},{"1542452":[181]},{"1542454":[170]},{"1542456":[194]},{"1542458":[174]},{"1542460":[187]},{"1542462":[255]},{"1542464":[161]},{"1542466":[161]},{"1542468":[255]},{"1542470":[255]},{"1542472":[255,127,117]},{"1542476":[255]},{"1542478":[255]},{"1542480":[185]},{"1542482":[181]},{"1542484":[170]},{"1542486":[194]},{"1542488":[174]},{"1542490":[187]},{"1542492":[255]},{"1542494":[161]},{"1542496":[162]},{"1542498":[255]},{"1542500":[255]},{"1542502":[255,127,117]},{"1542506":[255]},{"1542508":[255]},{"1542510":[185]},{"1542512":[181]},{"1542514":[170]},{"1542516":[194]},{"1542518":[174]},{"1542520":[187]},{"1542522":[255]},{"1542524":[161]},{"1542526":[163]},{"1542528":[255]},{"1542530":[255]},{"1542532":[255,127,117]},{"1542536":[255]},{"1542538":[255]},{"1542540":[185]},{"1542542":[181]},{"1542544":[170]},{"1542546":[194]},{"1542548":[174]},{"1542550":[187]},{"1542552":[255]},{"1542554":[161]},{"1542556":[164]},{"1542558":[255]},{"1542560":[255]},{"1542562":[255,127,117]},{"1542566":[255]},{"1542568":[255]},{"1542570":[185]},{"1542572":[181]},{"1542574":[170]},{"1542576":[194]},{"1542578":[174]},{"1542580":[187]},{"1542582":[255]},{"1542584":[161]},{"1542586":[165]},{"1542588":[255]},{"1542590":[255]},{"1542592":[255,127,117]},{"1542596":[255]},{"1542598":[255]},{"1542600":[185]},{"1542602":[181]},{"1542604":[170]},{"1542606":[194]},{"1542608":[174]},{"1542610":[187]},{"1542612":[255]},{"1542614":[161]},{"1542616":[166]},{"1542618":[255]},{"1542620":[255]},{"1542622":[255,127,117]},{"1542626":[255]},{"1542628":[255]},{"1542630":[185]},{"1542632":[181]},{"1542634":[170]},{"1542636":[194]},{"1542638":[174]},{"1542640":[187]},{"1542642":[255]},{"1542644":[161]},{"1542646":[167]},{"1542648":[255]},{"1542650":[255]},{"1542652":[255,127,117]},{"1542656":[255]},{"1542658":[255]},{"1542660":[185]},{"1542662":[181]},{"1542664":[170]},{"1542666":[194]},{"1542668":[174]},{"1542670":[187]},{"1542672":[255]},{"1542674":[161]},{"1542676":[168]},{"1542678":[255]},{"1542680":[255]},{"1542682":[255,127,117]},{"1542686":[255]},{"1542688":[255]},{"1542690":[185]},{"1542692":[181]},{"1542694":[170]},{"1542696":[194]},{"1542698":[174]},{"1542700":[187]},{"1542702":[255]},{"1542704":[161]},{"1542706":[169]},{"1542708":[255]},{"1542710":[255]},{"1542712":[255,127,117]},{"1542716":[255]},{"1542718":[255]},{"1542720":[185]},{"1542722":[181]},{"1542724":[170]},{"1542726":[194]},{"1542728":[174]},{"1542730":[187]},{"1542732":[255]},{"1542734":[162]},{"1542736":[160]},{"1542738":[255]},{"1542740":[255]},{"1542742":[255,127,117]},{"1542746":[255]},{"1542748":[255]},{"1542750":[185]},{"1542752":[181]},{"1542754":[170]},{"1542756":[194]},{"1542758":[174]},{"1542760":[187]},{"1542762":[255]},{"1542764":[162]},{"1542766":[161]},{"1542768":[255]},{"1542770":[255]},{"1542772":[255,127,117]},{"1542776":[255]},{"1542778":[255]},{"1542780":[185]},{"1542782":[181]},{"1542784":[170]},{"1542786":[194]},{"1542788":[174]},{"1542790":[187]},{"1542792":[255]},{"1542794":[162]},{"1542796":[162]},{"1542798":[255]},{"1542800":[255]},{"1542802":[255,127,117]},{"1542806":[255]},{"1542808":[255]},{"1542810":[185]},{"1542812":[181]},{"1542814":[170]},{"1542816":[194]},{"1542818":[174]},{"1542820":[187]},{"1542822":[255]},{"1542824":[162]},{"1542826":[163]},{"1542828":[255]},{"1542830":[255]},{"1542832":[255,127,117]},{"1542836":[255]},{"1542838":[255]},{"1542840":[185]},{"1542842":[181]},{"1542844":[170]},{"1542846":[194]},{"1542848":[174]},{"1542850":[187]},{"1542852":[255]},{"1542854":[162]},{"1542856":[164]},{"1542858":[255]},{"1542860":[255]},{"1542862":[255,127,117]},{"1542866":[255]},{"1542868":[255]},{"1542870":[185]},{"1542872":[181]},{"1542874":[170]},{"1542876":[194]},{"1542878":[174]},{"1542880":[187]},{"1542882":[255]},{"1542884":[162]},{"1542886":[165]},{"1542888":[255]},{"1542890":[255]},{"1542892":[255,127,117]},{"1542896":[255]},{"1542898":[255]},{"1542900":[185]},{"1542902":[181]},{"1542904":[170]},{"1542906":[194]},{"1542908":[174]},{"1542910":[187]},{"1542912":[255]},{"1542914":[162]},{"1542916":[166]},{"1542918":[255]},{"1542920":[255]},{"1542922":[255,127,117]},{"1542926":[255]},{"1542928":[255]},{"1542930":[185]},{"1542932":[181]},{"1542934":[170]},{"1542936":[194]},{"1542938":[174]},{"1542940":[187]},{"1542942":[255]},{"1542944":[162]},{"1542946":[167]},{"1542948":[255]},{"1542950":[255]},{"1542952":[255,127,117]},{"1542956":[255]},{"1542958":[255]},{"1542960":[185]},{"1542962":[181]},{"1542964":[170]},{"1542966":[194]},{"1542968":[174]},{"1542970":[187]},{"1542972":[255]},{"1542974":[162]},{"1542976":[168]},{"1542978":[255]},{"1542980":[255]},{"1542982":[255,127,117]},{"1542986":[255]},{"1542988":[255]},{"1542990":[185]},{"1542992":[181]},{"1542994":[170]},{"1542996":[194]},{"1542998":[174]},{"1543000":[187]},{"1543002":[255]},{"1543004":[162]},{"1543006":[169]},{"1543008":[255]},{"1543010":[255]},{"1543012":[255,127,117]},{"1543016":[255]},{"1543018":[255]},{"1543020":[185]},{"1543022":[181]},{"1543024":[170]},{"1543026":[194]},{"1543028":[174]},{"1543030":[187]},{"1543032":[255]},{"1543034":[163]},{"1543036":[160]},{"1543038":[255]},{"1543040":[255]},{"1543042":[255,127,117]},{"1543046":[255]},{"1543048":[255]},{"1543050":[185]},{"1543052":[181]},{"1543054":[170]},{"1543056":[194]},{"1543058":[174]},{"1543060":[187]},{"1543062":[255]},{"1543064":[163]},{"1543066":[161]},{"1543068":[255]},{"1543070":[255]},{"1543072":[255,127,117]},{"1543076":[255]},{"1543078":[255]},{"1543080":[185]},{"1543082":[181]},{"1543084":[170]},{"1543086":[194]},{"1543088":[174]},{"1543090":[187]},{"1543092":[255]},{"1543094":[163]},{"1543096":[162]},{"1543098":[255]},{"1543100":[255]},{"1543102":[255,127,117]},{"1543106":[255]},{"1543108":[255]},{"1543110":[185]},{"1543112":[181]},{"1543114":[170]},{"1543116":[194]},{"1543118":[174]},{"1543120":[187]},{"1543122":[255]},{"1543124":[163]},{"1543126":[163]},{"1543128":[255]},{"1543130":[255]},{"1543132":[255,127,117]},{"1543136":[255]},{"1543138":[255]},{"1543140":[185]},{"1543142":[181]},{"1543144":[170]},{"1543146":[194]},{"1543148":[174]},{"1543150":[187]},{"1543152":[255]},{"1543154":[163]},{"1543156":[164]},{"1543158":[255]},{"1543160":[255]},{"1543162":[255,127,117]},{"1543166":[255]},{"1543168":[255]},{"1543170":[185]},{"1543172":[181]},{"1543174":[170]},{"1543176":[194]},{"1543178":[174]},{"1543180":[187]},{"1543182":[255]},{"1543184":[163]},{"1543186":[165]},{"1543188":[255]},{"1543190":[255]},{"1543192":[255,127,117]},{"1543196":[255]},{"1543198":[255]},{"1543200":[185]},{"1543202":[181]},{"1543204":[170]},{"1543206":[194]},{"1543208":[174]},{"1543210":[187]},{"1543212":[255]},{"1543214":[163]},{"1543216":[166]},{"1543218":[255]},{"1543220":[255]},{"1543222":[255,127,117]},{"1543226":[255]},{"1543228":[255]},{"1543230":[185]},{"1543232":[181]},{"1543234":[170]},{"1543236":[194]},{"1543238":[174]},{"1543240":[187]},{"1543242":[255]},{"1543244":[163]},{"1543246":[167]},{"1543248":[255]},{"1543250":[255]},{"1543252":[255,127,117]},{"1543256":[255]},{"1543258":[255]},{"1543260":[185]},{"1543262":[181]},{"1543264":[170]},{"1543266":[194]},{"1543268":[174]},{"1543270":[187]},{"1543272":[255]},{"1543274":[163]},{"1543276":[168]},{"1543278":[255]},{"1543280":[255]},{"1543282":[255,127,117]},{"1543286":[255]},{"1543288":[255]},{"1543290":[185]},{"1543292":[181]},{"1543294":[170]},{"1543296":[194]},{"1543298":[174]},{"1543300":[187]},{"1543302":[255]},{"1543304":[163]},{"1543306":[169]},{"1543308":[255]},{"1543310":[255]},{"1543312":[255,127,117]},{"1543316":[255]},{"1543318":[255]},{"1543320":[185]},{"1543322":[181]},{"1543324":[170]},{"1543326":[194]},{"1543328":[174]},{"1543330":[187]},{"1543332":[255]},{"1543334":[164]},{"1543336":[160]},{"1543338":[255]},{"1543340":[255]},{"1543342":[255,127,117]},{"1543346":[255]},{"1543348":[255]},{"1543350":[185]},{"1543352":[181]},{"1543354":[170]},{"1543356":[194]},{"1543358":[174]},{"1543360":[187]},{"1543362":[255]},{"1543364":[164]},{"1543366":[161]},{"1543368":[255]},{"1543370":[255]},{"1543372":[255,127,117]},{"1543376":[255]},{"1543378":[255]},{"1543380":[185]},{"1543382":[181]},{"1543384":[170]},{"1543386":[194]},{"1543388":[174]},{"1543390":[187]},{"1543392":[255]},{"1543394":[164]},{"1543396":[162]},{"1543398":[255]},{"1543400":[255]},{"1543402":[255,127,117]},{"1543406":[255]},{"1543408":[255]},{"1543410":[185]},{"1543412":[181]},{"1543414":[170]},{"1543416":[194]},{"1543418":[174]},{"1543420":[187]},{"1543422":[255]},{"1543424":[164]},{"1543426":[163]},{"1543428":[255]},{"1543430":[255]},{"1543432":[255,127,117]},{"1543436":[255]},{"1543438":[255]},{"1543440":[185]},{"1543442":[181]},{"1543444":[170]},{"1543446":[194]},{"1543448":[174]},{"1543450":[187]},{"1543452":[255]},{"1543454":[164]},{"1543456":[164]},{"1543458":[255]},{"1543460":[255]},{"1543462":[255,127,117]},{"1543466":[255]},{"1543468":[255]},{"1543470":[185]},{"1543472":[181]},{"1543474":[170]},{"1543476":[194]},{"1543478":[174]},{"1543480":[187]},{"1543482":[255]},{"1543484":[164]},{"1543486":[165]},{"1543488":[255]},{"1543490":[255]},{"1543492":[255,127,117]},{"1543496":[255]},{"1543498":[255]},{"1543500":[185]},{"1543502":[181]},{"1543504":[170]},{"1543506":[194]},{"1543508":[174]},{"1543510":[187]},{"1543512":[255]},{"1543514":[164]},{"1543516":[166]},{"1543518":[255]},{"1543520":[255]},{"1543522":[255,127,117]},{"1543526":[255]},{"1543528":[255]},{"1543530":[185]},{"1543532":[181]},{"1543534":[170]},{"1543536":[194]},{"1543538":[174]},{"1543540":[187]},{"1543542":[255]},{"1543544":[164]},{"1543546":[167]},{"1543548":[255]},{"1543550":[255]},{"1543552":[255,127,117]},{"1543556":[255]},{"1543558":[255]},{"1543560":[185]},{"1543562":[181]},{"1543564":[170]},{"1543566":[194]},{"1543568":[174]},{"1543570":[187]},{"1543572":[255]},{"1543574":[164]},{"1543576":[168]},{"1543578":[255]},{"1543580":[255]},{"1543582":[255,127,117]},{"1543586":[255]},{"1543588":[255]},{"1543590":[185]},{"1543592":[181]},{"1543594":[170]},{"1543596":[194]},{"1543598":[174]},{"1543600":[187]},{"1543602":[255]},{"1543604":[164]},{"1543606":[169]},{"1543608":[255]},{"1543610":[255]},{"1543612":[255,127,117]},{"1543616":[255]},{"1543618":[255]},{"1543620":[185]},{"1543622":[181]},{"1543624":[170]},{"1543626":[194]},{"1543628":[174]},{"1543630":[187]},{"1543632":[255]},{"1543634":[165]},{"1543636":[160]},{"1543638":[255]},{"1543640":[255]},{"1543642":[255,127,117]},{"1543646":[255]},{"1543648":[255]},{"1543650":[185]},{"1543652":[181]},{"1543654":[170]},{"1543656":[194]},{"1543658":[174]},{"1543660":[187]},{"1543662":[255]},{"1543664":[165]},{"1543666":[161]},{"1543668":[255]},{"1543670":[255]},{"1543672":[255,127,117]},{"1543676":[255]},{"1543678":[255]},{"1543680":[185]},{"1543682":[181]},{"1543684":[170]},{"1543686":[194]},{"1543688":[174]},{"1543690":[187]},{"1543692":[255]},{"1543694":[165]},{"1543696":[162]},{"1543698":[255]},{"1543700":[255]},{"1543702":[255,127,117]},{"1543706":[255]},{"1543708":[255]},{"1543710":[185]},{"1543712":[181]},{"1543714":[170]},{"1543716":[194]},{"1543718":[174]},{"1543720":[187]},{"1543722":[255]},{"1543724":[165]},{"1543726":[163]},{"1543728":[255]},{"1543730":[255]},{"1543732":[255,127,117]},{"1543736":[255]},{"1543738":[255]},{"1543740":[185]},{"1543742":[181]},{"1543744":[170]},{"1543746":[194]},{"1543748":[174]},{"1543750":[187]},{"1543752":[255]},{"1543754":[165]},{"1543756":[164]},{"1543758":[255]},{"1543760":[255]},{"1543762":[255,127,117]},{"1543766":[255]},{"1543768":[255]},{"1543770":[185]},{"1543772":[181]},{"1543774":[170]},{"1543776":[194]},{"1543778":[174]},{"1543780":[187]},{"1543782":[255]},{"1543784":[165]},{"1543786":[165]},{"1543788":[255]},{"1543790":[255]},{"1543792":[255,127,117]},{"1543796":[255]},{"1543798":[255]},{"1543800":[185]},{"1543802":[181]},{"1543804":[170]},{"1543806":[194]},{"1543808":[174]},{"1543810":[187]},{"1543812":[255]},{"1543814":[165]},{"1543816":[166]},{"1543818":[255]},{"1543820":[255]},{"1543822":[255,127,117]},{"1543826":[255]},{"1543828":[255]},{"1543830":[185]},{"1543832":[181]},{"1543834":[170]},{"1543836":[194]},{"1543838":[174]},{"1543840":[187]},{"1543842":[255]},{"1543844":[165]},{"1543846":[167]},{"1543848":[255]},{"1543850":[255]},{"1543852":[255,127,117]},{"1543856":[255]},{"1543858":[255]},{"1543860":[185]},{"1543862":[181]},{"1543864":[170]},{"1543866":[194]},{"1543868":[174]},{"1543870":[187]},{"1543872":[255]},{"1543874":[165]},{"1543876":[168]},{"1543878":[255]},{"1543880":[255]},{"1543882":[255,127,117]},{"1543886":[255]},{"1543888":[255]},{"1543890":[185]},{"1543892":[181]},{"1543894":[170]},{"1543896":[194]},{"1543898":[174]},{"1543900":[187]},{"1543902":[255]},{"1543904":[165]},{"1543906":[169]},{"1543908":[255]},{"1543910":[255]},{"1543912":[255,127,117]},{"1543916":[255]},{"1543918":[255]},{"1543920":[185]},{"1543922":[181]},{"1543924":[170]},{"1543926":[194]},{"1543928":[174]},{"1543930":[187]},{"1543932":[255]},{"1543934":[166]},{"1543936":[160]},{"1543938":[255]},{"1543940":[255]},{"1543942":[255,127,117]},{"1543946":[255]},{"1543948":[255]},{"1543950":[185]},{"1543952":[181]},{"1543954":[170]},{"1543956":[194]},{"1543958":[174]},{"1543960":[187]},{"1543962":[255]},{"1543964":[166]},{"1543966":[161]},{"1543968":[255]},{"1543970":[255]},{"1543972":[255,127,117]},{"1543976":[255]},{"1543978":[255]},{"1543980":[185]},{"1543982":[181]},{"1543984":[170]},{"1543986":[194]},{"1543988":[174]},{"1543990":[187]},{"1543992":[255]},{"1543994":[166]},{"1543996":[162]},{"1543998":[255]},{"1544000":[255]},{"1544002":[255,127,117]},{"1544006":[255]},{"1544008":[255]},{"1544010":[185]},{"1544012":[181]},{"1544014":[170]},{"1544016":[194]},{"1544018":[174]},{"1544020":[187]},{"1544022":[255]},{"1544024":[166]},{"1544026":[163]},{"1544028":[255]},{"1544030":[255]},{"1544032":[255,127,117]},{"1544036":[255]},{"1544038":[255]},{"1544040":[185]},{"1544042":[181]},{"1544044":[170]},{"1544046":[194]},{"1544048":[174]},{"1544050":[187]},{"1544052":[255]},{"1544054":[166]},{"1544056":[164]},{"1544058":[255]},{"1544060":[255]},{"1544062":[255,127,117]},{"1544066":[255]},{"1544068":[255]},{"1544070":[185]},{"1544072":[181]},{"1544074":[170]},{"1544076":[194]},{"1544078":[174]},{"1544080":[187]},{"1544082":[255]},{"1544084":[166]},{"1544086":[165]},{"1544088":[255]},{"1544090":[255]},{"1544092":[255,127,117]},{"1544096":[255]},{"1544098":[255]},{"1544100":[185]},{"1544102":[181]},{"1544104":[170]},{"1544106":[194]},{"1544108":[174]},{"1544110":[187]},{"1544112":[255]},{"1544114":[166]},{"1544116":[166]},{"1544118":[255]},{"1544120":[255]},{"1544122":[255,127,117]},{"1544126":[255]},{"1544128":[255]},{"1544130":[185]},{"1544132":[181]},{"1544134":[170]},{"1544136":[194]},{"1544138":[174]},{"1544140":[187]},{"1544142":[255]},{"1544144":[166]},{"1544146":[167]},{"1544148":[255]},{"1544150":[255]},{"1544152":[255,127,117]},{"1544156":[255]},{"1544158":[255]},{"1544160":[185]},{"1544162":[181]},{"1544164":[170]},{"1544166":[194]},{"1544168":[174]},{"1544170":[187]},{"1544172":[255]},{"1544174":[166]},{"1544176":[168]},{"1544178":[255]},{"1544180":[255]},{"1544182":[255,127,117]},{"1544186":[255]},{"1544188":[255]},{"1544190":[185]},{"1544192":[181]},{"1544194":[170]},{"1544196":[194]},{"1544198":[174]},{"1544200":[187]},{"1544202":[255]},{"1544204":[166]},{"1544206":[169]},{"1544208":[255]},{"1544210":[255]},{"1544212":[255,127,117]},{"1544216":[255]},{"1544218":[255]},{"1544220":[185]},{"1544222":[181]},{"1544224":[170]},{"1544226":[194]},{"1544228":[174]},{"1544230":[187]},{"1544232":[255]},{"1544234":[167]},{"1544236":[160]},{"1544238":[255]},{"1544240":[255]},{"1544242":[255,127,117]},{"1544246":[255]},{"1544248":[255]},{"1544250":[185]},{"1544252":[181]},{"1544254":[170]},{"1544256":[194]},{"1544258":[174]},{"1544260":[187]},{"1544262":[255]},{"1544264":[167]},{"1544266":[161]},{"1544268":[255]},{"1544270":[255]},{"1544272":[255,127,117]},{"1544276":[255]},{"1544278":[255]},{"1544280":[185]},{"1544282":[181]},{"1544284":[170]},{"1544286":[194]},{"1544288":[174]},{"1544290":[187]},{"1544292":[255]},{"1544294":[167]},{"1544296":[162]},{"1544298":[255]},{"1544300":[255]},{"1544302":[255,127,117]},{"1544306":[255]},{"1544308":[255]},{"1544310":[185]},{"1544312":[181]},{"1544314":[170]},{"1544316":[194]},{"1544318":[174]},{"1544320":[187]},{"1544322":[255]},{"1544324":[167]},{"1544326":[163]},{"1544328":[255]},{"1544330":[255]},{"1544332":[255,127,117]},{"1544336":[255]},{"1544338":[255]},{"1544340":[185]},{"1544342":[181]},{"1544344":[170]},{"1544346":[194]},{"1544348":[174]},{"1544350":[187]},{"1544352":[255]},{"1544354":[167]},{"1544356":[164]},{"1544358":[255]},{"1544360":[255]},{"1544362":[255,127,117]},{"1544366":[255]},{"1544368":[255]},{"1544370":[185]},{"1544372":[181]},{"1544374":[170]},{"1544376":[194]},{"1544378":[174]},{"1544380":[187]},{"1544382":[255]},{"1544384":[167]},{"1544386":[165]},{"1544388":[255]},{"1544390":[255]},{"1544392":[255,127,117]},{"1544396":[255]},{"1544398":[255]},{"1544400":[185]},{"1544402":[181]},{"1544404":[170]},{"1544406":[194]},{"1544408":[174]},{"1544410":[187]},{"1544412":[255]},{"1544414":[167]},{"1544416":[166]},{"1544418":[255]},{"1544420":[255]},{"1544422":[255,127,117]},{"1544426":[255]},{"1544428":[255]},{"1544430":[185]},{"1544432":[181]},{"1544434":[170]},{"1544436":[194]},{"1544438":[174]},{"1544440":[187]},{"1544442":[255]},{"1544444":[167]},{"1544446":[167]},{"1544448":[255]},{"1544450":[255]},{"1544452":[255,127,117]},{"1544456":[255]},{"1544458":[255]},{"1544460":[185]},{"1544462":[181]},{"1544464":[170]},{"1544466":[194]},{"1544468":[174]},{"1544470":[187]},{"1544472":[255]},{"1544474":[167]},{"1544476":[168]},{"1544478":[255]},{"1544480":[255]},{"1544482":[255,127,117]},{"1544486":[255]},{"1544488":[255]},{"1544490":[185]},{"1544492":[181]},{"1544494":[170]},{"1544496":[194]},{"1544498":[174]},{"1544500":[187]},{"1544502":[255]},{"1544504":[167]},{"1544506":[169]},{"1544508":[255]},{"1544510":[255]},{"1544512":[255,127,117]},{"1544516":[255]},{"1544518":[255]},{"1544520":[185]},{"1544522":[181]},{"1544524":[170]},{"1544526":[194]},{"1544528":[174]},{"1544530":[187]},{"1544532":[255]},{"1544534":[168]},{"1544536":[160]},{"1544538":[255]},{"1544540":[255]},{"1544542":[255,127,117]},{"1544546":[255]},{"1544548":[255]},{"1544550":[185]},{"1544552":[181]},{"1544554":[170]},{"1544556":[194]},{"1544558":[174]},{"1544560":[187]},{"1544562":[255]},{"1544564":[168]},{"1544566":[161]},{"1544568":[255]},{"1544570":[255]},{"1544572":[255,127,117]},{"1544576":[255]},{"1544578":[255]},{"1544580":[185]},{"1544582":[181]},{"1544584":[170]},{"1544586":[194]},{"1544588":[174]},{"1544590":[187]},{"1544592":[255]},{"1544594":[168]},{"1544596":[162]},{"1544598":[255]},{"1544600":[255]},{"1544602":[255,127,117]},{"1544606":[255]},{"1544608":[255]},{"1544610":[185]},{"1544612":[181]},{"1544614":[170]},{"1544616":[194]},{"1544618":[174]},{"1544620":[187]},{"1544622":[255]},{"1544624":[168]},{"1544626":[163]},{"1544628":[255]},{"1544630":[255]},{"1544632":[255,127,117]},{"1544636":[255]},{"1544638":[255]},{"1544640":[185]},{"1544642":[181]},{"1544644":[170]},{"1544646":[194]},{"1544648":[174]},{"1544650":[187]},{"1544652":[255]},{"1544654":[168]},{"1544656":[164]},{"1544658":[255]},{"1544660":[255]},{"1544662":[255,127,117]},{"1544666":[255]},{"1544668":[255]},{"1544670":[185]},{"1544672":[181]},{"1544674":[170]},{"1544676":[194]},{"1544678":[174]},{"1544680":[187]},{"1544682":[255]},{"1544684":[168]},{"1544686":[165]},{"1544688":[255]},{"1544690":[255]},{"1544692":[255,127,117]},{"1544696":[255]},{"1544698":[255]},{"1544700":[185]},{"1544702":[181]},{"1544704":[170]},{"1544706":[194]},{"1544708":[174]},{"1544710":[187]},{"1544712":[255]},{"1544714":[168]},{"1544716":[166]},{"1544718":[255]},{"1544720":[255]},{"1544722":[255,127,117]},{"1544726":[255]},{"1544728":[255]},{"1544730":[185]},{"1544732":[181]},{"1544734":[170]},{"1544736":[194]},{"1544738":[174]},{"1544740":[187]},{"1544742":[255]},{"1544744":[168]},{"1544746":[167]},{"1544748":[255]},{"1544750":[255]},{"1544752":[255,127,117]},{"1544756":[255]},{"1544758":[255]},{"1544760":[185]},{"1544762":[181]},{"1544764":[170]},{"1544766":[194]},{"1544768":[174]},{"1544770":[187]},{"1544772":[255]},{"1544774":[168]},{"1544776":[168]},{"1544778":[255]},{"1544780":[255]},{"1544782":[255,127,117]},{"1544786":[255]},{"1544788":[255]},{"1544790":[185]},{"1544792":[181]},{"1544794":[170]},{"1544796":[194]},{"1544798":[174]},{"1544800":[187]},{"1544802":[255]},{"1544804":[168]},{"1544806":[169]},{"1544808":[255]},{"1544810":[255]},{"1544812":[255,127,117]},{"1544816":[255]},{"1544818":[255]},{"1544820":[185]},{"1544822":[181]},{"1544824":[170]},{"1544826":[194]},{"1544828":[174]},{"1544830":[187]},{"1544832":[255]},{"1544834":[169]},{"1544836":[160]},{"1544838":[255]},{"1544840":[255]},{"1544842":[255,127,117]},{"1544846":[255]},{"1544848":[255]},{"1544850":[185]},{"1544852":[181]},{"1544854":[170]},{"1544856":[194]},{"1544858":[174]},{"1544860":[187]},{"1544862":[255]},{"1544864":[169]},{"1544866":[161]},{"1544868":[255]},{"1544870":[255]},{"1544872":[255,127,117]},{"1544876":[255]},{"1544878":[255]},{"1544880":[185]},{"1544882":[181]},{"1544884":[170]},{"1544886":[194]},{"1544888":[174]},{"1544890":[187]},{"1544892":[255]},{"1544894":[169]},{"1544896":[162]},{"1544898":[255]},{"1544900":[255]},{"1544902":[255,127,117]},{"1544906":[255]},{"1544908":[255]},{"1544910":[185]},{"1544912":[181]},{"1544914":[170]},{"1544916":[194]},{"1544918":[174]},{"1544920":[187]},{"1544922":[255]},{"1544924":[169]},{"1544926":[163]},{"1544928":[255]},{"1544930":[255]},{"1544932":[255,127,117]},{"1544936":[255]},{"1544938":[255]},{"1544940":[185]},{"1544942":[181]},{"1544944":[170]},{"1544946":[194]},{"1544948":[174]},{"1544950":[187]},{"1544952":[255]},{"1544954":[169]},{"1544956":[164]},{"1544958":[255]},{"1544960":[255]},{"1544962":[255,127,117]},{"1544966":[255]},{"1544968":[255]},{"1544970":[185]},{"1544972":[181]},{"1544974":[170]},{"1544976":[194]},{"1544978":[174]},{"1544980":[187]},{"1544982":[255]},{"1544984":[169]},{"1544986":[165]},{"1544988":[255]},{"1544990":[255]},{"1544992":[255,127,117]},{"1544996":[255]},{"1544998":[255]},{"1545000":[185]},{"1545002":[181]},{"1545004":[170]},{"1545006":[194]},{"1545008":[174]},{"1545010":[187]},{"1545012":[255]},{"1545014":[169]},{"1545016":[166]},{"1545018":[255]},{"1545020":[255]},{"1545022":[255,127,117]},{"1545026":[255]},{"1545028":[255]},{"1545030":[185]},{"1545032":[181]},{"1545034":[170]},{"1545036":[194]},{"1545038":[174]},{"1545040":[187]},{"1545042":[255]},{"1545044":[169]},{"1545046":[167]},{"1545048":[255]},{"1545050":[255]},{"1545052":[255,127,117]},{"1545056":[255]},{"1545058":[255]},{"1545060":[185]},{"1545062":[181]},{"1545064":[170]},{"1545066":[194]},{"1545068":[174]},{"1545070":[187]},{"1545072":[255]},{"1545074":[169]},{"1545076":[168]},{"1545078":[255]},{"1545080":[255]},{"1545082":[255,127,117]},{"1545086":[255]},{"1545088":[255]},{"1545090":[185]},{"1545092":[181]},{"1545094":[170]},{"1545096":[194]},{"1545098":[174]},{"1545100":[187]},{"1545102":[255]},{"1545104":[169]},{"1545106":[169]},{"1545108":[255]},{"1545110":[255]},{"1545112":[255,127,117]},{"1545116":[255]},{"1545118":[255]},{"1545120":[185]},{"1545122":[181]},{"1545124":[170]},{"1545126":[194]},{"1545128":[174]},{"1545130":[187]},{"1545132":[255]},{"1545134":[161]},{"1545136":[160]},{"1545138":[160]},{"1545140":[255]},{"1545142":[255,127,117]},{"1545146":[255]},{"1545148":[255]},{"1545150":[185]},{"1545152":[181]},{"1545154":[170]},{"1545156":[194]},{"1545158":[174]},{"1545160":[187]},{"1545162":[255]},{"1545164":[161]},{"1545166":[160]},{"1545168":[161]},{"1545170":[255]},{"1545172":[255,127,117]},{"1545176":[255]},{"1545178":[255]},{"1545180":[185]},{"1545182":[181]},{"1545184":[170]},{"1545186":[194]},{"1545188":[174]},{"1545190":[187]},{"1545192":[255]},{"1545194":[161]},{"1545196":[160]},{"1545198":[162]},{"1545200":[255]},{"1545202":[255,127,117]},{"1545206":[255]},{"1545208":[255]},{"1545210":[185]},{"1545212":[181]},{"1545214":[170]},{"1545216":[194]},{"1545218":[174]},{"1545220":[187]},{"1545222":[255]},{"1545224":[161]},{"1545226":[160]},{"1545228":[163]},{"1545230":[255]},{"1545232":[255,127,117]},{"1545236":[255]},{"1545238":[255]},{"1545240":[185]},{"1545242":[181]},{"1545244":[170]},{"1545246":[194]},{"1545248":[174]},{"1545250":[187]},{"1545252":[255]},{"1545254":[161]},{"1545256":[160]},{"1545258":[164]},{"1545260":[255]},{"1545262":[255,127,117]},{"1545266":[255]},{"1545268":[255]},{"1545270":[185]},{"1545272":[181]},{"1545274":[170]},{"1545276":[194]},{"1545278":[174]},{"1545280":[187]},{"1545282":[255]},{"1545284":[161]},{"1545286":[160]},{"1545288":[165]},{"1545290":[255]},{"1545292":[255,127,117]},{"1545296":[255]},{"1545298":[255]},{"1545300":[185]},{"1545302":[181]},{"1545304":[170]},{"1545306":[194]},{"1545308":[174]},{"1545310":[187]},{"1545312":[255]},{"1545314":[161]},{"1545316":[160]},{"1545318":[166]},{"1545320":[255]},{"1545322":[255,127,117]},{"1545326":[255]},{"1545328":[255]},{"1545330":[185]},{"1545332":[181]},{"1545334":[170]},{"1545336":[194]},{"1545338":[174]},{"1545340":[187]},{"1545342":[255]},{"1545344":[161]},{"1545346":[160]},{"1545348":[167]},{"1545350":[255]},{"1545352":[255,127,117]},{"1545356":[255]},{"1545358":[255]},{"1545360":[185]},{"1545362":[181]},{"1545364":[170]},{"1545366":[194]},{"1545368":[174]},{"1545370":[187]},{"1545372":[255]},{"1545374":[161]},{"1545376":[160]},{"1545378":[168]},{"1545380":[255]},{"1545382":[255,127,117]},{"1545386":[255]},{"1545388":[255]},{"1545390":[185]},{"1545392":[181]},{"1545394":[170]},{"1545396":[194]},{"1545398":[174]},{"1545400":[187]},{"1545402":[255]},{"1545404":[161]},{"1545406":[160]},{"1545408":[169]},{"1545410":[255]},{"1545412":[255,127,117]},{"1545416":[255]},{"1545418":[255]},{"1545420":[185]},{"1545422":[181]},{"1545424":[170]},{"1545426":[194]},{"1545428":[174]},{"1545430":[187]},{"1545432":[255]},{"1545434":[161]},{"1545436":[161]},{"1545438":[160]},{"1545440":[255]},{"1545442":[255,127,117]},{"1545446":[255]},{"1545448":[255]},{"1545450":[185]},{"1545452":[181]},{"1545454":[170]},{"1545456":[194]},{"1545458":[174]},{"1545460":[187]},{"1545462":[255]},{"1545464":[161]},{"1545466":[161]},{"1545468":[161]},{"1545470":[255]},{"1545472":[255,127,117]},{"1545476":[255]},{"1545478":[255]},{"1545480":[185]},{"1545482":[181]},{"1545484":[170]},{"1545486":[194]},{"1545488":[174]},{"1545490":[187]},{"1545492":[255]},{"1545494":[161]},{"1545496":[161]},{"1545498":[162]},{"1545500":[255]},{"1545502":[255,127,117]},{"1545506":[255]},{"1545508":[255]},{"1545510":[185]},{"1545512":[181]},{"1545514":[170]},{"1545516":[194]},{"1545518":[174]},{"1545520":[187]},{"1545522":[255]},{"1545524":[161]},{"1545526":[161]},{"1545528":[163]},{"1545530":[255]},{"1545532":[255,127,117]},{"1545536":[255]},{"1545538":[255]},{"1545540":[185]},{"1545542":[181]},{"1545544":[170]},{"1545546":[194]},{"1545548":[174]},{"1545550":[187]},{"1545552":[255]},{"1545554":[161]},{"1545556":[161]},{"1545558":[164]},{"1545560":[255]},{"1545562":[255,127,117]},{"1545566":[255]},{"1545568":[255]},{"1545570":[185]},{"1545572":[181]},{"1545574":[170]},{"1545576":[194]},{"1545578":[174]},{"1545580":[187]},{"1545582":[255]},{"1545584":[161]},{"1545586":[161]},{"1545588":[165]},{"1545590":[255]},{"1545592":[255,127,117]},{"1545596":[255]},{"1545598":[255]},{"1545600":[185]},{"1545602":[181]},{"1545604":[170]},{"1545606":[194]},{"1545608":[174]},{"1545610":[187]},{"1545612":[255]},{"1545614":[161]},{"1545616":[161]},{"1545618":[166]},{"1545620":[255]},{"1545622":[255,127,117]},{"1545626":[255]},{"1545628":[255]},{"1545630":[185]},{"1545632":[181]},{"1545634":[170]},{"1545636":[194]},{"1545638":[174]},{"1545640":[187]},{"1545642":[255]},{"1545644":[161]},{"1545646":[161]},{"1545648":[167]},{"1545650":[255]},{"1545652":[255,127,117]},{"1545656":[255]},{"1545658":[255]},{"1545660":[185]},{"1545662":[181]},{"1545664":[170]},{"1545666":[194]},{"1545668":[174]},{"1545670":[187]},{"1545672":[255]},{"1545674":[161]},{"1545676":[161]},{"1545678":[168]},{"1545680":[255]},{"1545682":[255,127,117]},{"1545686":[255]},{"1545688":[255]},{"1545690":[185]},{"1545692":[181]},{"1545694":[170]},{"1545696":[194]},{"1545698":[174]},{"1545700":[187]},{"1545702":[255]},{"1545704":[161]},{"1545706":[161]},{"1545708":[169]},{"1545710":[255]},{"1545712":[255,127,117]},{"1545716":[255]},{"1545718":[255]},{"1545720":[185]},{"1545722":[181]},{"1545724":[170]},{"1545726":[194]},{"1545728":[174]},{"1545730":[187]},{"1545732":[255]},{"1545734":[161]},{"1545736":[162]},{"1545738":[160]},{"1545740":[255]},{"1545742":[255,127,117]},{"1545746":[255]},{"1545748":[255]},{"1545750":[185]},{"1545752":[181]},{"1545754":[170]},{"1545756":[194]},{"1545758":[174]},{"1545760":[187]},{"1545762":[255]},{"1545764":[161]},{"1545766":[162]},{"1545768":[161]},{"1545770":[255]},{"1545772":[255,127,117]},{"1545776":[255]},{"1545778":[255]},{"1545780":[185]},{"1545782":[181]},{"1545784":[170]},{"1545786":[194]},{"1545788":[174]},{"1545790":[187]},{"1545792":[255]},{"1545794":[161]},{"1545796":[162]},{"1545798":[162]},{"1545800":[255]},{"1545802":[255,127,117]},{"1545806":[255]},{"1545808":[255]},{"1545810":[185]},{"1545812":[181]},{"1545814":[170]},{"1545816":[194]},{"1545818":[174]},{"1545820":[187]},{"1545822":[255]},{"1545824":[161]},{"1545826":[162]},{"1545828":[163]},{"1545830":[255]},{"1545832":[255,127,117]},{"1545836":[255]},{"1545838":[255]},{"1545840":[185]},{"1545842":[181]},{"1545844":[170]},{"1545846":[194]},{"1545848":[174]},{"1545850":[187]},{"1545852":[255]},{"1545854":[161]},{"1545856":[162]},{"1545858":[164]},{"1545860":[255]},{"1545862":[255,127,117]},{"1545866":[255]},{"1545868":[255]},{"1545870":[185]},{"1545872":[181]},{"1545874":[170]},{"1545876":[194]},{"1545878":[174]},{"1545880":[187]},{"1545882":[255]},{"1545884":[161]},{"1545886":[162]},{"1545888":[165]},{"1545890":[255]},{"1545892":[255,127,117]},{"1545896":[255]},{"1545898":[255]},{"1545900":[185]},{"1545902":[181]},{"1545904":[170]},{"1545906":[194]},{"1545908":[174]},{"1545910":[187]},{"1545912":[255]},{"1545914":[161]},{"1545916":[162]},{"1545918":[166]},{"1545920":[255]},{"1545922":[255,127,117]},{"1545926":[255]},{"1545928":[255]},{"1545930":[185]},{"1545932":[181]},{"1545934":[170]},{"1545936":[194]},{"1545938":[174]},{"1545940":[187]},{"1545942":[255]},{"1545944":[161]},{"1545946":[162]},{"1545948":[167]},{"1545950":[255]},{"1545952":[255,127,117]},{"1545956":[255]},{"1545958":[255]},{"1545960":[185]},{"1545962":[181]},{"1545964":[170]},{"1545966":[194]},{"1545968":[174]},{"1545970":[187]},{"1545972":[255]},{"1545974":[161]},{"1545976":[162]},{"1545978":[168]},{"1545980":[255]},{"1545982":[255,127,117]},{"1545986":[255]},{"1545988":[255]},{"1545990":[185]},{"1545992":[181]},{"1545994":[170]},{"1545996":[194]},{"1545998":[174]},{"1546000":[187]},{"1546002":[255]},{"1546004":[161]},{"1546006":[162]},{"1546008":[169]},{"1546010":[255]},{"1546012":[255,127,117]},{"1546016":[255]},{"1546018":[255]},{"1546020":[185]},{"1546022":[181]},{"1546024":[170]},{"1546026":[194]},{"1546028":[174]},{"1546030":[187]},{"1546032":[255]},{"1546034":[161]},{"1546036":[163]},{"1546038":[160]},{"1546040":[255]},{"1546042":[255,127,117]},{"1546046":[255]},{"1546048":[255]},{"1546050":[185]},{"1546052":[181]},{"1546054":[170]},{"1546056":[194]},{"1546058":[174]},{"1546060":[187]},{"1546062":[255]},{"1546064":[161]},{"1546066":[163]},{"1546068":[161]},{"1546070":[255]},{"1546072":[255,127,117]},{"1546076":[255]},{"1546078":[255]},{"1546080":[185]},{"1546082":[181]},{"1546084":[170]},{"1546086":[194]},{"1546088":[174]},{"1546090":[187]},{"1546092":[255]},{"1546094":[161]},{"1546096":[163]},{"1546098":[162]},{"1546100":[255]},{"1546102":[255,127,117]},{"1546106":[255]},{"1546108":[255]},{"1546110":[185]},{"1546112":[181]},{"1546114":[170]},{"1546116":[194]},{"1546118":[174]},{"1546120":[187]},{"1546122":[255]},{"1546124":[161]},{"1546126":[163]},{"1546128":[163]},{"1546130":[255]},{"1546132":[255,127,117]},{"1546136":[255]},{"1546138":[255]},{"1546140":[185]},{"1546142":[181]},{"1546144":[170]},{"1546146":[194]},{"1546148":[174]},{"1546150":[187]},{"1546152":[255]},{"1546154":[161]},{"1546156":[163]},{"1546158":[164]},{"1546160":[255]},{"1546162":[255,127,117]},{"1546166":[255]},{"1546168":[255]},{"1546170":[185]},{"1546172":[181]},{"1546174":[170]},{"1546176":[194]},{"1546178":[174]},{"1546180":[187]},{"1546182":[255]},{"1546184":[161]},{"1546186":[163]},{"1546188":[165]},{"1546190":[255]},{"1546192":[255,127,117]},{"1546196":[255]},{"1546198":[255]},{"1546200":[185]},{"1546202":[181]},{"1546204":[170]},{"1546206":[194]},{"1546208":[174]},{"1546210":[187]},{"1546212":[255]},{"1546214":[161]},{"1546216":[163]},{"1546218":[166]},{"1546220":[255]},{"1546222":[255,127,117]},{"1546226":[255]},{"1546228":[255]},{"1546230":[185]},{"1546232":[181]},{"1546234":[170]},{"1546236":[194]},{"1546238":[174]},{"1546240":[187]},{"1546242":[255]},{"1546244":[161]},{"1546246":[163]},{"1546248":[167]},{"1546250":[255]},{"1546252":[255,127,117]},{"1546256":[255]},{"1546258":[255]},{"1546260":[185]},{"1546262":[181]},{"1546264":[170]},{"1546266":[194]},{"1546268":[174]},{"1546270":[187]},{"1546272":[255]},{"1546274":[161]},{"1546276":[163]},{"1546278":[168]},{"1546280":[255]},{"1546282":[255,127,117]},{"1546286":[255]},{"1546288":[255]},{"1546290":[185]},{"1546292":[181]},{"1546294":[170]},{"1546296":[194]},{"1546298":[174]},{"1546300":[187]},{"1546302":[255]},{"1546304":[161]},{"1546306":[163]},{"1546308":[169]},{"1546310":[255]},{"1546312":[255,127,117]},{"1546316":[255]},{"1546318":[255]},{"1546320":[185]},{"1546322":[181]},{"1546324":[170]},{"1546326":[194]},{"1546328":[174]},{"1546330":[187]},{"1546332":[255]},{"1546334":[161]},{"1546336":[164]},{"1546338":[160]},{"1546340":[255]},{"1546342":[255,127,117]},{"1546346":[255]},{"1546348":[255]},{"1546350":[185]},{"1546352":[181]},{"1546354":[170]},{"1546356":[194]},{"1546358":[174]},{"1546360":[187]},{"1546362":[255]},{"1546364":[161]},{"1546366":[164]},{"1546368":[161]},{"1546370":[255]},{"1546372":[255,127,117]},{"1546376":[255]},{"1546378":[255]},{"1546380":[185]},{"1546382":[181]},{"1546384":[170]},{"1546386":[194]},{"1546388":[174]},{"1546390":[187]},{"1546392":[255]},{"1546394":[161]},{"1546396":[164]},{"1546398":[162]},{"1546400":[255]},{"1546402":[255,127,117]},{"1546406":[255]},{"1546408":[255]},{"1546410":[185]},{"1546412":[181]},{"1546414":[170]},{"1546416":[194]},{"1546418":[174]},{"1546420":[187]},{"1546422":[255]},{"1546424":[161]},{"1546426":[164]},{"1546428":[163]},{"1546430":[255]},{"1546432":[255,127,117]},{"1546436":[255]},{"1546438":[255]},{"1546440":[185]},{"1546442":[181]},{"1546444":[170]},{"1546446":[194]},{"1546448":[174]},{"1546450":[187]},{"1546452":[255]},{"1546454":[161]},{"1546456":[164]},{"1546458":[164]},{"1546460":[255]},{"1546462":[255,127,117]},{"1546466":[255]},{"1546468":[255]},{"1546470":[185]},{"1546472":[181]},{"1546474":[170]},{"1546476":[194]},{"1546478":[174]},{"1546480":[187]},{"1546482":[255]},{"1546484":[161]},{"1546486":[164]},{"1546488":[165]},{"1546490":[255]},{"1546492":[255,127,117]},{"1546496":[255]},{"1546498":[255]},{"1546500":[185]},{"1546502":[181]},{"1546504":[170]},{"1546506":[194]},{"1546508":[174]},{"1546510":[187]},{"1546512":[255]},{"1546514":[161]},{"1546516":[164]},{"1546518":[166]},{"1546520":[255]},{"1546522":[255,127,117]},{"1546526":[255]},{"1546528":[255]},{"1546530":[185]},{"1546532":[181]},{"1546534":[170]},{"1546536":[194]},{"1546538":[174]},{"1546540":[187]},{"1546542":[255]},{"1546544":[161]},{"1546546":[164]},{"1546548":[167]},{"1546550":[255]},{"1546552":[255,127,117]},{"1546556":[255]},{"1546558":[255]},{"1546560":[185]},{"1546562":[181]},{"1546564":[170]},{"1546566":[194]},{"1546568":[174]},{"1546570":[187]},{"1546572":[255]},{"1546574":[161]},{"1546576":[164]},{"1546578":[168]},{"1546580":[255]},{"1546582":[255,127,117]},{"1546586":[255]},{"1546588":[255]},{"1546590":[185]},{"1546592":[181]},{"1546594":[170]},{"1546596":[194]},{"1546598":[174]},{"1546600":[187]},{"1546602":[255]},{"1546604":[161]},{"1546606":[164]},{"1546608":[169]},{"1546610":[255]},{"1546612":[255,127,117]},{"1546616":[255]},{"1546618":[255]},{"1546620":[185]},{"1546622":[181]},{"1546624":[170]},{"1546626":[194]},{"1546628":[174]},{"1546630":[187]},{"1546632":[255]},{"1546634":[161]},{"1546636":[165]},{"1546638":[160]},{"1546640":[255]},{"1546642":[255,127,117]},{"1546646":[255]},{"1546648":[255]},{"1546650":[185]},{"1546652":[181]},{"1546654":[170]},{"1546656":[194]},{"1546658":[174]},{"1546660":[187]},{"1546662":[255]},{"1546664":[161]},{"1546666":[165]},{"1546668":[161]},{"1546670":[255]},{"1546672":[255,127,117]},{"1546676":[255]},{"1546678":[255]},{"1546680":[185]},{"1546682":[181]},{"1546684":[170]},{"1546686":[194]},{"1546688":[174]},{"1546690":[187]},{"1546692":[255]},{"1546694":[161]},{"1546696":[165]},{"1546698":[162]},{"1546700":[255]},{"1546702":[255,127,117]},{"1546706":[255]},{"1546708":[255]},{"1546710":[185]},{"1546712":[181]},{"1546714":[170]},{"1546716":[194]},{"1546718":[174]},{"1546720":[187]},{"1546722":[255]},{"1546724":[161]},{"1546726":[165]},{"1546728":[163]},{"1546730":[255]},{"1546732":[255,127,117]},{"1546736":[255]},{"1546738":[255]},{"1546740":[185]},{"1546742":[181]},{"1546744":[170]},{"1546746":[194]},{"1546748":[174]},{"1546750":[187]},{"1546752":[255]},{"1546754":[161]},{"1546756":[165]},{"1546758":[164]},{"1546760":[255]},{"1546762":[255,127,117]},{"1546766":[255]},{"1546768":[255]},{"1546770":[185]},{"1546772":[181]},{"1546774":[170]},{"1546776":[194]},{"1546778":[174]},{"1546780":[187]},{"1546782":[255]},{"1546784":[161]},{"1546786":[165]},{"1546788":[165]},{"1546790":[255]},{"1546792":[255,127,117]},{"1546796":[255]},{"1546798":[255]},{"1546800":[185]},{"1546802":[181]},{"1546804":[170]},{"1546806":[194]},{"1546808":[174]},{"1546810":[187]},{"1546812":[255]},{"1546814":[161]},{"1546816":[165]},{"1546818":[166]},{"1546820":[255]},{"1546822":[255,127,117]},{"1546826":[255]},{"1546828":[255]},{"1546830":[185]},{"1546832":[181]},{"1546834":[170]},{"1546836":[194]},{"1546838":[174]},{"1546840":[187]},{"1546842":[255]},{"1546844":[161]},{"1546846":[165]},{"1546848":[167]},{"1546850":[255]},{"1546852":[255,127,117]},{"1546856":[255]},{"1546858":[255]},{"1546860":[185]},{"1546862":[181]},{"1546864":[170]},{"1546866":[194]},{"1546868":[174]},{"1546870":[187]},{"1546872":[255]},{"1546874":[161]},{"1546876":[165]},{"1546878":[168]},{"1546880":[255]},{"1546882":[255,127,117]},{"1546886":[255]},{"1546888":[255]},{"1546890":[185]},{"1546892":[181]},{"1546894":[170]},{"1546896":[194]},{"1546898":[174]},{"1546900":[187]},{"1546902":[255]},{"1546904":[161]},{"1546906":[165]},{"1546908":[169]},{"1546910":[255]},{"1546912":[255,127,117]},{"1546916":[255]},{"1546918":[255]},{"1546920":[185]},{"1546922":[181]},{"1546924":[170]},{"1546926":[194]},{"1546928":[174]},{"1546930":[187]},{"1546932":[255]},{"1546934":[161]},{"1546936":[166]},{"1546938":[160]},{"1546940":[255]},{"1546942":[255,127,117]},{"1546946":[255]},{"1546948":[255]},{"1546950":[185]},{"1546952":[181]},{"1546954":[170]},{"1546956":[194]},{"1546958":[174]},{"1546960":[187]},{"1546962":[255]},{"1546964":[161]},{"1546966":[166]},{"1546968":[161]},{"1546970":[255]},{"1546972":[255,127,117]},{"1546976":[255]},{"1546978":[255]},{"1546980":[185]},{"1546982":[181]},{"1546984":[170]},{"1546986":[194]},{"1546988":[174]},{"1546990":[187]},{"1546992":[255]},{"1546994":[161]},{"1546996":[166]},{"1546998":[162]},{"1547000":[255]},{"1547002":[255,127,117]},{"1547006":[255]},{"1547008":[255]},{"1547010":[185]},{"1547012":[181]},{"1547014":[170]},{"1547016":[194]},{"1547018":[174]},{"1547020":[187]},{"1547022":[255]},{"1547024":[161]},{"1547026":[166]},{"1547028":[163]},{"1547030":[255]},{"1547032":[255,127,117]},{"1547036":[255]},{"1547038":[255]},{"1547040":[185]},{"1547042":[181]},{"1547044":[170]},{"1547046":[194]},{"1547048":[174]},{"1547050":[187]},{"1547052":[255]},{"1547054":[161]},{"1547056":[166]},{"1547058":[164]},{"1547060":[255]},{"1547062":[255,127,117]},{"1547066":[255]},{"1547068":[255]},{"1547070":[185]},{"1547072":[181]},{"1547074":[170]},{"1547076":[194]},{"1547078":[174]},{"1547080":[187]},{"1547082":[255]},{"1547084":[161]},{"1547086":[166]},{"1547088":[165]},{"1547090":[255]},{"1547092":[255,127,117]},{"1547096":[255]},{"1547098":[255]},{"1547100":[185]},{"1547102":[181]},{"1547104":[170]},{"1547106":[194]},{"1547108":[174]},{"1547110":[187]},{"1547112":[255]},{"1547114":[161]},{"1547116":[166]},{"1547118":[166]},{"1547120":[255]},{"1547122":[255,127,117]},{"1547126":[255]},{"1547128":[255]},{"1547130":[185]},{"1547132":[181]},{"1547134":[170]},{"1547136":[194]},{"1547138":[174]},{"1547140":[187]},{"1547142":[255]},{"1547144":[161]},{"1547146":[166]},{"1547148":[167]},{"1547150":[255]},{"1547152":[255,127,117]},{"1547156":[255]},{"1547158":[255]},{"1547160":[185]},{"1547162":[181]},{"1547164":[170]},{"1547166":[194]},{"1547168":[174]},{"1547170":[187]},{"1547172":[255]},{"1547174":[161]},{"1547176":[166]},{"1547178":[168]},{"1547180":[255]},{"1547182":[255,127,117]},{"1547186":[255]},{"1547188":[255]},{"1547190":[185]},{"1547192":[181]},{"1547194":[170]},{"1547196":[194]},{"1547198":[174]},{"1547200":[187]},{"1547202":[255]},{"1547204":[161]},{"1547206":[166]},{"1547208":[169]},{"1547210":[255]},{"1547212":[255,127,117]},{"1547216":[255]},{"1547218":[255]},{"1547220":[185]},{"1547222":[181]},{"1547224":[170]},{"1547226":[194]},{"1547228":[174]},{"1547230":[187]},{"1547232":[255]},{"1547234":[161]},{"1547236":[167]},{"1547238":[160]},{"1547240":[255]},{"1547242":[255,127,117]},{"1547246":[255]},{"1547248":[255]},{"1547250":[185]},{"1547252":[181]},{"1547254":[170]},{"1547256":[194]},{"1547258":[174]},{"1547260":[187]},{"1547262":[255]},{"1547264":[161]},{"1547266":[167]},{"1547268":[161]},{"1547270":[255]},{"1547272":[255,127,117]},{"1547276":[255]},{"1547278":[255]},{"1547280":[185]},{"1547282":[181]},{"1547284":[170]},{"1547286":[194]},{"1547288":[174]},{"1547290":[187]},{"1547292":[255]},{"1547294":[161]},{"1547296":[167]},{"1547298":[162]},{"1547300":[255]},{"1547302":[255,127,117]},{"1547306":[255]},{"1547308":[255]},{"1547310":[185]},{"1547312":[181]},{"1547314":[170]},{"1547316":[194]},{"1547318":[174]},{"1547320":[187]},{"1547322":[255]},{"1547324":[161]},{"1547326":[167]},{"1547328":[163]},{"1547330":[255]},{"1547332":[255,127,117]},{"1547336":[255]},{"1547338":[255]},{"1547340":[185]},{"1547342":[181]},{"1547344":[170]},{"1547346":[194]},{"1547348":[174]},{"1547350":[187]},{"1547352":[255]},{"1547354":[161]},{"1547356":[167]},{"1547358":[164]},{"1547360":[255]},{"1547362":[255,127,117]},{"1547366":[255]},{"1547368":[255]},{"1547370":[185]},{"1547372":[181]},{"1547374":[170]},{"1547376":[194]},{"1547378":[174]},{"1547380":[187]},{"1547382":[255]},{"1547384":[161]},{"1547386":[167]},{"1547388":[165]},{"1547390":[255]},{"1547392":[255,127,117]},{"1547396":[255]},{"1547398":[255]},{"1547400":[185]},{"1547402":[181]},{"1547404":[170]},{"1547406":[194]},{"1547408":[174]},{"1547410":[187]},{"1547412":[255]},{"1547414":[161]},{"1547416":[167]},{"1547418":[166]},{"1547420":[255]},{"1547422":[255,127,117]},{"1547426":[255]},{"1547428":[255]},{"1547430":[185]},{"1547432":[181]},{"1547434":[170]},{"1547436":[194]},{"1547438":[174]},{"1547440":[187]},{"1547442":[255]},{"1547444":[161]},{"1547446":[167]},{"1547448":[167]},{"1547450":[255]},{"1547452":[255,127,117]},{"1547456":[255]},{"1547458":[255]},{"1547460":[185]},{"1547462":[181]},{"1547464":[170]},{"1547466":[194]},{"1547468":[174]},{"1547470":[187]},{"1547472":[255]},{"1547474":[161]},{"1547476":[167]},{"1547478":[168]},{"1547480":[255]},{"1547482":[255,127,117]},{"1547486":[255]},{"1547488":[255]},{"1547490":[185]},{"1547492":[181]},{"1547494":[170]},{"1547496":[194]},{"1547498":[174]},{"1547500":[187]},{"1547502":[255]},{"1547504":[161]},{"1547506":[167]},{"1547508":[169]},{"1547510":[255]},{"1547512":[255,127,117]},{"1547516":[255]},{"1547518":[255]},{"1547520":[185]},{"1547522":[181]},{"1547524":[170]},{"1547526":[194]},{"1547528":[174]},{"1547530":[187]},{"1547532":[255]},{"1547534":[161]},{"1547536":[168]},{"1547538":[160]},{"1547540":[255]},{"1547542":[255,127,117]},{"1547546":[255]},{"1547548":[255]},{"1547550":[185]},{"1547552":[181]},{"1547554":[170]},{"1547556":[194]},{"1547558":[174]},{"1547560":[187]},{"1547562":[255]},{"1547564":[161]},{"1547566":[168]},{"1547568":[161]},{"1547570":[255]},{"1547572":[255,127,117]},{"1547576":[255]},{"1547578":[255]},{"1547580":[185]},{"1547582":[181]},{"1547584":[170]},{"1547586":[194]},{"1547588":[174]},{"1547590":[187]},{"1547592":[255]},{"1547594":[161]},{"1547596":[168]},{"1547598":[162]},{"1547600":[255]},{"1547602":[255,127,117]},{"1547606":[255]},{"1547608":[255]},{"1547610":[185]},{"1547612":[181]},{"1547614":[170]},{"1547616":[194]},{"1547618":[174]},{"1547620":[187]},{"1547622":[255]},{"1547624":[161]},{"1547626":[168]},{"1547628":[163]},{"1547630":[255]},{"1547632":[255,127,117]},{"1547636":[255]},{"1547638":[255]},{"1547640":[185]},{"1547642":[181]},{"1547644":[170]},{"1547646":[194]},{"1547648":[174]},{"1547650":[187]},{"1547652":[255]},{"1547654":[161]},{"1547656":[168]},{"1547658":[164]},{"1547660":[255]},{"1547662":[255,127,117]},{"1547666":[255]},{"1547668":[255]},{"1547670":[185]},{"1547672":[181]},{"1547674":[170]},{"1547676":[194]},{"1547678":[174]},{"1547680":[187]},{"1547682":[255]},{"1547684":[161]},{"1547686":[168]},{"1547688":[165]},{"1547690":[255]},{"1547692":[255,127,117]},{"1547696":[255]},{"1547698":[255]},{"1547700":[185]},{"1547702":[181]},{"1547704":[170]},{"1547706":[194]},{"1547708":[174]},{"1547710":[187]},{"1547712":[255]},{"1547714":[161]},{"1547716":[168]},{"1547718":[166]},{"1547720":[255]},{"1547722":[255,127,117]},{"1547726":[255]},{"1547728":[255]},{"1547730":[185]},{"1547732":[181]},{"1547734":[170]},{"1547736":[194]},{"1547738":[174]},{"1547740":[187]},{"1547742":[255]},{"1547744":[161]},{"1547746":[168]},{"1547748":[167]},{"1547750":[255]},{"1547752":[255,127,117]},{"1547756":[255]},{"1547758":[255]},{"1547760":[185]},{"1547762":[181]},{"1547764":[170]},{"1547766":[194]},{"1547768":[174]},{"1547770":[187]},{"1547772":[255]},{"1547774":[161]},{"1547776":[168]},{"1547778":[168]},{"1547780":[255]},{"1547782":[255,127,117]},{"1547786":[255]},{"1547788":[255]},{"1547790":[185]},{"1547792":[181]},{"1547794":[170]},{"1547796":[194]},{"1547798":[174]},{"1547800":[187]},{"1547802":[255]},{"1547804":[161]},{"1547806":[168]},{"1547808":[169]},{"1547810":[255]},{"1547812":[255,127,117]},{"1547816":[255]},{"1547818":[255]},{"1547820":[185]},{"1547822":[181]},{"1547824":[170]},{"1547826":[194]},{"1547828":[174]},{"1547830":[187]},{"1547832":[255]},{"1547834":[161]},{"1547836":[169]},{"1547838":[160]},{"1547840":[255]},{"1547842":[255,127,117]},{"1547846":[255]},{"1547848":[255]},{"1547850":[185]},{"1547852":[181]},{"1547854":[170]},{"1547856":[194]},{"1547858":[174]},{"1547860":[187]},{"1547862":[255]},{"1547864":[161]},{"1547866":[169]},{"1547868":[161]},{"1547870":[255]},{"1547872":[255,127,117]},{"1547876":[255]},{"1547878":[255]},{"1547880":[185]},{"1547882":[181]},{"1547884":[170]},{"1547886":[194]},{"1547888":[174]},{"1547890":[187]},{"1547892":[255]},{"1547894":[161]},{"1547896":[169]},{"1547898":[162]},{"1547900":[255]},{"1547902":[255,127,117]},{"1547906":[255]},{"1547908":[255]},{"1547910":[185]},{"1547912":[181]},{"1547914":[170]},{"1547916":[194]},{"1547918":[174]},{"1547920":[187]},{"1547922":[255]},{"1547924":[161]},{"1547926":[169]},{"1547928":[163]},{"1547930":[255]},{"1547932":[255,127,117]},{"1547936":[255]},{"1547938":[255]},{"1547940":[185]},{"1547942":[181]},{"1547944":[170]},{"1547946":[194]},{"1547948":[174]},{"1547950":[187]},{"1547952":[255]},{"1547954":[161]},{"1547956":[169]},{"1547958":[164]},{"1547960":[255]},{"1547962":[255,127,117]},{"1547966":[255]},{"1547968":[255]},{"1547970":[185]},{"1547972":[181]},{"1547974":[170]},{"1547976":[194]},{"1547978":[174]},{"1547980":[187]},{"1547982":[255]},{"1547984":[161]},{"1547986":[169]},{"1547988":[165]},{"1547990":[255]},{"1547992":[255,127,117]},{"1547996":[255]},{"1547998":[255]},{"1548000":[185]},{"1548002":[181]},{"1548004":[170]},{"1548006":[194]},{"1548008":[174]},{"1548010":[187]},{"1548012":[255]},{"1548014":[161]},{"1548016":[169]},{"1548018":[166]},{"1548020":[255]},{"1548022":[255,127,117]},{"1548026":[255]},{"1548028":[255]},{"1548030":[185]},{"1548032":[181]},{"1548034":[170]},{"1548036":[194]},{"1548038":[174]},{"1548040":[187]},{"1548042":[255]},{"1548044":[161]},{"1548046":[169]},{"1548048":[167]},{"1548050":[255]},{"1548052":[255,127,117]},{"1548056":[255]},{"1548058":[255]},{"1548060":[185]},{"1548062":[181]},{"1548064":[170]},{"1548066":[194]},{"1548068":[174]},{"1548070":[187]},{"1548072":[255]},{"1548074":[161]},{"1548076":[169]},{"1548078":[168]},{"1548080":[255]},{"1548082":[255,127,117]},{"1548086":[255]},{"1548088":[255]},{"1548090":[185]},{"1548092":[181]},{"1548094":[170]},{"1548096":[194]},{"1548098":[174]},{"1548100":[187]},{"1548102":[255]},{"1548104":[161]},{"1548106":[169]},{"1548108":[169]},{"1548110":[255]},{"1548112":[255,127,117]},{"1548116":[255]},{"1548118":[255]},{"1548120":[185]},{"1548122":[181]},{"1548124":[170]},{"1548126":[194]},{"1548128":[174]},{"1548130":[187]},{"1548132":[255]},{"1548134":[162]},{"1548136":[160]},{"1548138":[160]},{"1548140":[255]},{"1548142":[255,127,117]},{"1548146":[255]},{"1548148":[255]},{"1548150":[185]},{"1548152":[181]},{"1548154":[170]},{"1548156":[194]},{"1548158":[174]},{"1548160":[187]},{"1548162":[255]},{"1548164":[162]},{"1548166":[160]},{"1548168":[161]},{"1548170":[255]},{"1548172":[255,127,117]},{"1548176":[255]},{"1548178":[255]},{"1548180":[185]},{"1548182":[181]},{"1548184":[170]},{"1548186":[194]},{"1548188":[174]},{"1548190":[187]},{"1548192":[255]},{"1548194":[162]},{"1548196":[160]},{"1548198":[162]},{"1548200":[255]},{"1548202":[255,127,117]},{"1548206":[255]},{"1548208":[255]},{"1548210":[185]},{"1548212":[181]},{"1548214":[170]},{"1548216":[194]},{"1548218":[174]},{"1548220":[187]},{"1548222":[255]},{"1548224":[162]},{"1548226":[160]},{"1548228":[163]},{"1548230":[255]},{"1548232":[255,127,117]},{"1548236":[255]},{"1548238":[255]},{"1548240":[185]},{"1548242":[181]},{"1548244":[170]},{"1548246":[194]},{"1548248":[174]},{"1548250":[187]},{"1548252":[255]},{"1548254":[162]},{"1548256":[160]},{"1548258":[164]},{"1548260":[255]},{"1548262":[255,127,117]},{"1548266":[255]},{"1548268":[255]},{"1548270":[185]},{"1548272":[181]},{"1548274":[170]},{"1548276":[194]},{"1548278":[174]},{"1548280":[187]},{"1548282":[255]},{"1548284":[162]},{"1548286":[160]},{"1548288":[165]},{"1548290":[255]},{"1548292":[255,127,117]},{"1548296":[255]},{"1548298":[255]},{"1548300":[185]},{"1548302":[181]},{"1548304":[170]},{"1548306":[194]},{"1548308":[174]},{"1548310":[187]},{"1548312":[255]},{"1548314":[162]},{"1548316":[160]},{"1548318":[166]},{"1548320":[255]},{"1548322":[255,127,117]},{"1548326":[255]},{"1548328":[255]},{"1548330":[185]},{"1548332":[181]},{"1548334":[170]},{"1548336":[194]},{"1548338":[174]},{"1548340":[187]},{"1548342":[255]},{"1548344":[162]},{"1548346":[160]},{"1548348":[167]},{"1548350":[255]},{"1548352":[255,127,117]},{"1548356":[255]},{"1548358":[255]},{"1548360":[185]},{"1548362":[181]},{"1548364":[170]},{"1548366":[194]},{"1548368":[174]},{"1548370":[187]},{"1548372":[255]},{"1548374":[162]},{"1548376":[160]},{"1548378":[168]},{"1548380":[255]},{"1548382":[255,127,117]},{"1548386":[255]},{"1548388":[255]},{"1548390":[185]},{"1548392":[181]},{"1548394":[170]},{"1548396":[194]},{"1548398":[174]},{"1548400":[187]},{"1548402":[255]},{"1548404":[162]},{"1548406":[160]},{"1548408":[169]},{"1548410":[255]},{"1548412":[255,127,117]},{"1548416":[255]},{"1548418":[255]},{"1548420":[185]},{"1548422":[181]},{"1548424":[170]},{"1548426":[194]},{"1548428":[174]},{"1548430":[187]},{"1548432":[255]},{"1548434":[162]},{"1548436":[161]},{"1548438":[160]},{"1548440":[255]},{"1548442":[255,127,117]},{"1548446":[255]},{"1548448":[255]},{"1548450":[185]},{"1548452":[181]},{"1548454":[170]},{"1548456":[194]},{"1548458":[174]},{"1548460":[187]},{"1548462":[255]},{"1548464":[162]},{"1548466":[161]},{"1548468":[161]},{"1548470":[255]},{"1548472":[255,127,117]},{"1548476":[255]},{"1548478":[255]},{"1548480":[185]},{"1548482":[181]},{"1548484":[170]},{"1548486":[194]},{"1548488":[174]},{"1548490":[187]},{"1548492":[255]},{"1548494":[162]},{"1548496":[161]},{"1548498":[162]},{"1548500":[255]},{"1548502":[255,127,117]},{"1548506":[255]},{"1548508":[255]},{"1548510":[185]},{"1548512":[181]},{"1548514":[170]},{"1548516":[194]},{"1548518":[174]},{"1548520":[187]},{"1548522":[255]},{"1548524":[162]},{"1548526":[161]},{"1548528":[163]},{"1548530":[255]},{"1548532":[255,127,117]},{"1548536":[255]},{"1548538":[255]},{"1548540":[185]},{"1548542":[181]},{"1548544":[170]},{"1548546":[194]},{"1548548":[174]},{"1548550":[187]},{"1548552":[255]},{"1548554":[162]},{"1548556":[161]},{"1548558":[164]},{"1548560":[255]},{"1548562":[255,127,117]},{"1548566":[255]},{"1548568":[255]},{"1548570":[185]},{"1548572":[181]},{"1548574":[170]},{"1548576":[194]},{"1548578":[174]},{"1548580":[187]},{"1548582":[255]},{"1548584":[162]},{"1548586":[161]},{"1548588":[165]},{"1548590":[255]},{"1548592":[255,127,117]},{"1548596":[255]},{"1548598":[255]},{"1548600":[185]},{"1548602":[181]},{"1548604":[170]},{"1548606":[194]},{"1548608":[174]},{"1548610":[187]},{"1548612":[255]},{"1548614":[162]},{"1548616":[161]},{"1548618":[166]},{"1548620":[255]},{"1548622":[255,127,117]},{"1548626":[255]},{"1548628":[255]},{"1548630":[185]},{"1548632":[181]},{"1548634":[170]},{"1548636":[194]},{"1548638":[174]},{"1548640":[187]},{"1548642":[255]},{"1548644":[162]},{"1548646":[161]},{"1548648":[167]},{"1548650":[255]},{"1548652":[255,127,117]},{"1548656":[255]},{"1548658":[255]},{"1548660":[185]},{"1548662":[181]},{"1548664":[170]},{"1548666":[194]},{"1548668":[174]},{"1548670":[187]},{"1548672":[255]},{"1548674":[162]},{"1548676":[161]},{"1548678":[168]},{"1548680":[255]},{"1548682":[255,127,117]},{"1548686":[255]},{"1548688":[255]},{"1548690":[185]},{"1548692":[181]},{"1548694":[170]},{"1548696":[194]},{"1548698":[174]},{"1548700":[187]},{"1548702":[255]},{"1548704":[162]},{"1548706":[161]},{"1548708":[169]},{"1548710":[255]},{"1548712":[255,127,117]},{"1548716":[255]},{"1548718":[255]},{"1548720":[185]},{"1548722":[181]},{"1548724":[170]},{"1548726":[194]},{"1548728":[174]},{"1548730":[187]},{"1548732":[255]},{"1548734":[162]},{"1548736":[162]},{"1548738":[160]},{"1548740":[255]},{"1548742":[255,127,117]},{"1548746":[255]},{"1548748":[255]},{"1548750":[185]},{"1548752":[181]},{"1548754":[170]},{"1548756":[194]},{"1548758":[174]},{"1548760":[187]},{"1548762":[255]},{"1548764":[162]},{"1548766":[162]},{"1548768":[161]},{"1548770":[255]},{"1548772":[255,127,117]},{"1548776":[255]},{"1548778":[255]},{"1548780":[185]},{"1548782":[181]},{"1548784":[170]},{"1548786":[194]},{"1548788":[174]},{"1548790":[187]},{"1548792":[255]},{"1548794":[162]},{"1548796":[162]},{"1548798":[162]},{"1548800":[255]},{"1548802":[255,127,117]},{"1548806":[255]},{"1548808":[255]},{"1548810":[185]},{"1548812":[181]},{"1548814":[170]},{"1548816":[194]},{"1548818":[174]},{"1548820":[187]},{"1548822":[255]},{"1548824":[162]},{"1548826":[162]},{"1548828":[163]},{"1548830":[255]},{"1548832":[255,127,117]},{"1548836":[255]},{"1548838":[255]},{"1548840":[185]},{"1548842":[181]},{"1548844":[170]},{"1548846":[194]},{"1548848":[174]},{"1548850":[187]},{"1548852":[255]},{"1548854":[162]},{"1548856":[162]},{"1548858":[164]},{"1548860":[255]},{"1548862":[255,127,117]},{"1548866":[255]},{"1548868":[255]},{"1548870":[185]},{"1548872":[181]},{"1548874":[170]},{"1548876":[194]},{"1548878":[174]},{"1548880":[187]},{"1548882":[255]},{"1548884":[162]},{"1548886":[162]},{"1548888":[165]},{"1548890":[255]},{"1548892":[255,127,117]},{"1548896":[255]},{"1548898":[255]},{"1548900":[185]},{"1548902":[181]},{"1548904":[170]},{"1548906":[194]},{"1548908":[174]},{"1548910":[187]},{"1548912":[255]},{"1548914":[162]},{"1548916":[162]},{"1548918":[166]},{"1548920":[255]},{"1548922":[255,127,117]},{"1548926":[255]},{"1548928":[255]},{"1548930":[185]},{"1548932":[181]},{"1548934":[170]},{"1548936":[194]},{"1548938":[174]},{"1548940":[187]},{"1548942":[255]},{"1548944":[162]},{"1548946":[162]},{"1548948":[167]},{"1548950":[255]},{"1548952":[255,127,117]},{"1548956":[255]},{"1548958":[255]},{"1548960":[185]},{"1548962":[181]},{"1548964":[170]},{"1548966":[194]},{"1548968":[174]},{"1548970":[187]},{"1548972":[255]},{"1548974":[162]},{"1548976":[162]},{"1548978":[168]},{"1548980":[255]},{"1548982":[255,127,117]},{"1548986":[255]},{"1548988":[255]},{"1548990":[185]},{"1548992":[181]},{"1548994":[170]},{"1548996":[194]},{"1548998":[174]},{"1549000":[187]},{"1549002":[255]},{"1549004":[162]},{"1549006":[162]},{"1549008":[169]},{"1549010":[255]},{"1549012":[255,127,117]},{"1549016":[255]},{"1549018":[255]},{"1549020":[185]},{"1549022":[181]},{"1549024":[170]},{"1549026":[194]},{"1549028":[174]},{"1549030":[187]},{"1549032":[255]},{"1549034":[162]},{"1549036":[163]},{"1549038":[160]},{"1549040":[255]},{"1549042":[255,127,117]},{"1549046":[255]},{"1549048":[255]},{"1549050":[185]},{"1549052":[181]},{"1549054":[170]},{"1549056":[194]},{"1549058":[174]},{"1549060":[187]},{"1549062":[255]},{"1549064":[162]},{"1549066":[163]},{"1549068":[161]},{"1549070":[255]},{"1549072":[255,127,117]},{"1549076":[255]},{"1549078":[255]},{"1549080":[185]},{"1549082":[181]},{"1549084":[170]},{"1549086":[194]},{"1549088":[174]},{"1549090":[187]},{"1549092":[255]},{"1549094":[162]},{"1549096":[163]},{"1549098":[162]},{"1549100":[255]},{"1549102":[255,127,117]},{"1549106":[255]},{"1549108":[255]},{"1549110":[185]},{"1549112":[181]},{"1549114":[170]},{"1549116":[194]},{"1549118":[174]},{"1549120":[187]},{"1549122":[255]},{"1549124":[162]},{"1549126":[163]},{"1549128":[163]},{"1549130":[255]},{"1549132":[255,127,117]},{"1549136":[255]},{"1549138":[255]},{"1549140":[185]},{"1549142":[181]},{"1549144":[170]},{"1549146":[194]},{"1549148":[174]},{"1549150":[187]},{"1549152":[255]},{"1549154":[162]},{"1549156":[163]},{"1549158":[164]},{"1549160":[255]},{"1549162":[255,127,117]},{"1549166":[255]},{"1549168":[255]},{"1549170":[185]},{"1549172":[181]},{"1549174":[170]},{"1549176":[194]},{"1549178":[174]},{"1549180":[187]},{"1549182":[255]},{"1549184":[162]},{"1549186":[163]},{"1549188":[165]},{"1549190":[255]},{"1549192":[255,127,117]},{"1549196":[255]},{"1549198":[255]},{"1549200":[185]},{"1549202":[181]},{"1549204":[170]},{"1549206":[194]},{"1549208":[174]},{"1549210":[187]},{"1549212":[255]},{"1549214":[162]},{"1549216":[163]},{"1549218":[166]},{"1549220":[255]},{"1549222":[255,127,117]},{"1549226":[255]},{"1549228":[255]},{"1549230":[185]},{"1549232":[181]},{"1549234":[170]},{"1549236":[194]},{"1549238":[174]},{"1549240":[187]},{"1549242":[255]},{"1549244":[162]},{"1549246":[163]},{"1549248":[167]},{"1549250":[255]},{"1549252":[255,127,117]},{"1549256":[255]},{"1549258":[255]},{"1549260":[185]},{"1549262":[181]},{"1549264":[170]},{"1549266":[194]},{"1549268":[174]},{"1549270":[187]},{"1549272":[255]},{"1549274":[162]},{"1549276":[163]},{"1549278":[168]},{"1549280":[255]},{"1549282":[255,127,117]},{"1549286":[255]},{"1549288":[255]},{"1549290":[185]},{"1549292":[181]},{"1549294":[170]},{"1549296":[194]},{"1549298":[174]},{"1549300":[187]},{"1549302":[255]},{"1549304":[162]},{"1549306":[163]},{"1549308":[169]},{"1549310":[255]},{"1549312":[255,127,117]},{"1549316":[255]},{"1549318":[255]},{"1549320":[185]},{"1549322":[181]},{"1549324":[170]},{"1549326":[194]},{"1549328":[174]},{"1549330":[187]},{"1549332":[255]},{"1549334":[162]},{"1549336":[164]},{"1549338":[160]},{"1549340":[255]},{"1549342":[255,127,117]},{"1549346":[255]},{"1549348":[255]},{"1549350":[185]},{"1549352":[181]},{"1549354":[170]},{"1549356":[194]},{"1549358":[174]},{"1549360":[187]},{"1549362":[255]},{"1549364":[162]},{"1549366":[164]},{"1549368":[161]},{"1549370":[255]},{"1549372":[255,127,117]},{"1549376":[255]},{"1549378":[255]},{"1549380":[185]},{"1549382":[181]},{"1549384":[170]},{"1549386":[194]},{"1549388":[174]},{"1549390":[187]},{"1549392":[255]},{"1549394":[162]},{"1549396":[164]},{"1549398":[162]},{"1549400":[255]},{"1549402":[255,127,117]},{"1549406":[255]},{"1549408":[255]},{"1549410":[185]},{"1549412":[181]},{"1549414":[170]},{"1549416":[194]},{"1549418":[174]},{"1549420":[187]},{"1549422":[255]},{"1549424":[162]},{"1549426":[164]},{"1549428":[163]},{"1549430":[255]},{"1549432":[255,127,117]},{"1549436":[255]},{"1549438":[255]},{"1549440":[185]},{"1549442":[181]},{"1549444":[170]},{"1549446":[194]},{"1549448":[174]},{"1549450":[187]},{"1549452":[255]},{"1549454":[162]},{"1549456":[164]},{"1549458":[164]},{"1549460":[255]},{"1549462":[255,127,117]},{"1549466":[255]},{"1549468":[255]},{"1549470":[185]},{"1549472":[181]},{"1549474":[170]},{"1549476":[194]},{"1549478":[174]},{"1549480":[187]},{"1549482":[255]},{"1549484":[162]},{"1549486":[164]},{"1549488":[165]},{"1549490":[255]},{"1549492":[255,127,117]},{"1549496":[255]},{"1549498":[255]},{"1549500":[185]},{"1549502":[181]},{"1549504":[170]},{"1549506":[194]},{"1549508":[174]},{"1549510":[187]},{"1549512":[255]},{"1549514":[162]},{"1549516":[164]},{"1549518":[166]},{"1549520":[255]},{"1549522":[255,127,117]},{"1549526":[255]},{"1549528":[255]},{"1549530":[185]},{"1549532":[181]},{"1549534":[170]},{"1549536":[194]},{"1549538":[174]},{"1549540":[187]},{"1549542":[255]},{"1549544":[162]},{"1549546":[164]},{"1549548":[167]},{"1549550":[255]},{"1549552":[255,127,117]},{"1549556":[255]},{"1549558":[255]},{"1549560":[185]},{"1549562":[181]},{"1549564":[170]},{"1549566":[194]},{"1549568":[174]},{"1549570":[187]},{"1549572":[255]},{"1549574":[162]},{"1549576":[164]},{"1549578":[168]},{"1549580":[255]},{"1549582":[255,127,117]},{"1549586":[255]},{"1549588":[255]},{"1549590":[185]},{"1549592":[181]},{"1549594":[170]},{"1549596":[194]},{"1549598":[174]},{"1549600":[187]},{"1549602":[255]},{"1549604":[162]},{"1549606":[164]},{"1549608":[169]},{"1549610":[255]},{"1549612":[255,127,117]},{"1549616":[255]},{"1549618":[255]},{"1549620":[185]},{"1549622":[181]},{"1549624":[170]},{"1549626":[194]},{"1549628":[174]},{"1549630":[187]},{"1549632":[255]},{"1549634":[162]},{"1549636":[165]},{"1549638":[160]},{"1549640":[255]},{"1549642":[255,127,117]},{"1549646":[255]},{"1549648":[255]},{"1549650":[185]},{"1549652":[181]},{"1549654":[170]},{"1549656":[194]},{"1549658":[174]},{"1549660":[187]},{"1549662":[255]},{"1549664":[162]},{"1549666":[165]},{"1549668":[161]},{"1549670":[255]},{"1549672":[255,127,117]},{"1549676":[255]},{"1549678":[255]},{"1549680":[185]},{"1549682":[181]},{"1549684":[170]},{"1549686":[194]},{"1549688":[174]},{"1549690":[187]},{"1549692":[255]},{"1549694":[162]},{"1549696":[165]},{"1549698":[162]},{"1549700":[255]},{"1549702":[255,127,117]},{"1549706":[255]},{"1549708":[255]},{"1549710":[185]},{"1549712":[181]},{"1549714":[170]},{"1549716":[194]},{"1549718":[174]},{"1549720":[187]},{"1549722":[255]},{"1549724":[162]},{"1549726":[165]},{"1549728":[163]},{"1549730":[255]},{"1549732":[255,127,117]},{"1549736":[255]},{"1549738":[255]},{"1549740":[185]},{"1549742":[181]},{"1549744":[170]},{"1549746":[194]},{"1549748":[174]},{"1549750":[187]},{"1549752":[255]},{"1549754":[162]},{"1549756":[165]},{"1549758":[164]},{"1549760":[255]},{"1549762":[255,127,117]},{"1549766":[255]},{"1549768":[255]},{"1549770":[185]},{"1549772":[181]},{"1549774":[170]},{"1549776":[194]},{"1549778":[174]},{"1549780":[187]},{"1549782":[255]},{"1549784":[162]},{"1549786":[165]},{"1549788":[165]},{"1549790":[255]},{"1549792":[255,127,117]},{"1549796":[255]},{"1549798":[255]},{"1549800":[185]},{"1549802":[181]},{"1549804":[170]},{"1549806":[194]},{"1549808":[174]},{"1549810":[187]},{"1549812":[255]},{"1549814":[162]},{"1549816":[165]},{"1549818":[166]},{"1549820":[255]},{"1549822":[255,127,117]},{"1549826":[255]},{"1549828":[255]},{"1549830":[185]},{"1549832":[181]},{"1549834":[170]},{"1549836":[194]},{"1549838":[174]},{"1549840":[187]},{"1549842":[255]},{"1549844":[162]},{"1549846":[165]},{"1549848":[167]},{"1549850":[255]},{"1549852":[255,127,117]},{"1549856":[255]},{"1549858":[255]},{"1549860":[185]},{"1549862":[181]},{"1549864":[170]},{"1549866":[194]},{"1549868":[174]},{"1549870":[187]},{"1549872":[255]},{"1549874":[162]},{"1549876":[165]},{"1549878":[168]},{"1549880":[255]},{"1549882":[255,127,117]},{"1549886":[255]},{"1549888":[255]},{"1549890":[185]},{"1549892":[181]},{"1549894":[170]},{"1549896":[194]},{"1549898":[174]},{"1549900":[187]},{"1549902":[255]},{"1549904":[162]},{"1549906":[165]},{"1549908":[169]},{"1549910":[255]},{"1549912":[255,127,117]},{"1549916":[255]},{"1549918":[255]},{"1549920":[185]},{"1549922":[181]},{"1549924":[170]},{"1549926":[194]},{"1549928":[174]},{"1549930":[187]},{"1549932":[255]},{"1549934":[162]},{"1549936":[166]},{"1549938":[160]},{"1549940":[255]},{"1549942":[255,127,117]},{"1549946":[255]},{"1549948":[255]},{"1549950":[185]},{"1549952":[181]},{"1549954":[170]},{"1549956":[194]},{"1549958":[174]},{"1549960":[187]},{"1549962":[255]},{"1549964":[162]},{"1549966":[166]},{"1549968":[161]},{"1549970":[255]},{"1549972":[255,127,117]},{"1549976":[255]},{"1549978":[255]},{"1549980":[185]},{"1549982":[181]},{"1549984":[170]},{"1549986":[194]},{"1549988":[174]},{"1549990":[187]},{"1549992":[255]},{"1549994":[162]},{"1549996":[166]},{"1549998":[162]},{"1550000":[255]},{"1550002":[255,127,117]},{"1550006":[255]},{"1550008":[255]},{"1550010":[185]},{"1550012":[181]},{"1550014":[170]},{"1550016":[194]},{"1550018":[174]},{"1550020":[187]},{"1550022":[255]},{"1550024":[162]},{"1550026":[166]},{"1550028":[163]},{"1550030":[255]},{"1550032":[255,127,117]},{"1550036":[255]},{"1550038":[255]},{"1550040":[185]},{"1550042":[181]},{"1550044":[170]},{"1550046":[194]},{"1550048":[174]},{"1550050":[187]},{"1550052":[255]},{"1550054":[162]},{"1550056":[166]},{"1550058":[164]},{"1550060":[255]},{"1550062":[255,127,117]},{"1550066":[255]},{"1550068":[255]},{"1550070":[185]},{"1550072":[181]},{"1550074":[170]},{"1550076":[194]},{"1550078":[174]},{"1550080":[187]},{"1550082":[255]},{"1550084":[162]},{"1550086":[166]},{"1550088":[165]},{"1550090":[255]},{"1550092":[255,127,117]},{"1550096":[255]},{"1550098":[255]},{"1550100":[185]},{"1550102":[181]},{"1550104":[170]},{"1550106":[194]},{"1550108":[174]},{"1550110":[187]},{"1550112":[255]},{"1550114":[162]},{"1550116":[166]},{"1550118":[166]},{"1550120":[255]},{"1550122":[255,127,117]},{"1550126":[255]},{"1550128":[255]},{"1550130":[185]},{"1550132":[181]},{"1550134":[170]},{"1550136":[194]},{"1550138":[174]},{"1550140":[187]},{"1550142":[255]},{"1550144":[162]},{"1550146":[166]},{"1550148":[167]},{"1550150":[255]},{"1550152":[255,127,117]},{"1550156":[255]},{"1550158":[255]},{"1550160":[185]},{"1550162":[181]},{"1550164":[170]},{"1550166":[194]},{"1550168":[174]},{"1550170":[187]},{"1550172":[255]},{"1550174":[162]},{"1550176":[166]},{"1550178":[168]},{"1550180":[255]},{"1550182":[255,127,117]},{"1550186":[255]},{"1550188":[255]},{"1550190":[185]},{"1550192":[181]},{"1550194":[170]},{"1550196":[194]},{"1550198":[174]},{"1550200":[187]},{"1550202":[255]},{"1550204":[162]},{"1550206":[166]},{"1550208":[169]},{"1550210":[255]},{"1550212":[255,127,117]},{"1550216":[255]},{"1550218":[255]},{"1550220":[185]},{"1550222":[181]},{"1550224":[170]},{"1550226":[194]},{"1550228":[174]},{"1550230":[187]},{"1550232":[255]},{"1550234":[162]},{"1550236":[167]},{"1550238":[160]},{"1550240":[255]},{"1550242":[255,127,117]},{"1550246":[255]},{"1550248":[255]},{"1550250":[185]},{"1550252":[181]},{"1550254":[170]},{"1550256":[194]},{"1550258":[174]},{"1550260":[187]},{"1550262":[255]},{"1550264":[162]},{"1550266":[167]},{"1550268":[161]},{"1550270":[255]},{"1550272":[255,127,117]},{"1550276":[255]},{"1550278":[255]},{"1550280":[185]},{"1550282":[181]},{"1550284":[170]},{"1550286":[194]},{"1550288":[174]},{"1550290":[187]},{"1550292":[255]},{"1550294":[162]},{"1550296":[167]},{"1550298":[162]},{"1550300":[255]},{"1550302":[255,127,117]},{"1550306":[255]},{"1550308":[255]},{"1550310":[185]},{"1550312":[181]},{"1550314":[170]},{"1550316":[194]},{"1550318":[174]},{"1550320":[187]},{"1550322":[255]},{"1550324":[162]},{"1550326":[167]},{"1550328":[163]},{"1550330":[255]},{"1550332":[255,127,117]},{"1550336":[255]},{"1550338":[255]},{"1550340":[185]},{"1550342":[181]},{"1550344":[170]},{"1550346":[194]},{"1550348":[174]},{"1550350":[187]},{"1550352":[255]},{"1550354":[162]},{"1550356":[167]},{"1550358":[164]},{"1550360":[255]},{"1550362":[255,127,117]},{"1550366":[255]},{"1550368":[255]},{"1550370":[185]},{"1550372":[181]},{"1550374":[170]},{"1550376":[194]},{"1550378":[174]},{"1550380":[187]},{"1550382":[255]},{"1550384":[162]},{"1550386":[167]},{"1550388":[165]},{"1550390":[255]},{"1550392":[255,127,117]},{"1550396":[255]},{"1550398":[255]},{"1550400":[185]},{"1550402":[181]},{"1550404":[170]},{"1550406":[194]},{"1550408":[174]},{"1550410":[187]},{"1550412":[255]},{"1550414":[162]},{"1550416":[167]},{"1550418":[166]},{"1550420":[255]},{"1550422":[255,127,117]},{"1550426":[255]},{"1550428":[255]},{"1550430":[185]},{"1550432":[181]},{"1550434":[170]},{"1550436":[194]},{"1550438":[174]},{"1550440":[187]},{"1550442":[255]},{"1550444":[162]},{"1550446":[167]},{"1550448":[167]},{"1550450":[255]},{"1550452":[255,127,117]},{"1550456":[255]},{"1550458":[255]},{"1550460":[185]},{"1550462":[181]},{"1550464":[170]},{"1550466":[194]},{"1550468":[174]},{"1550470":[187]},{"1550472":[255]},{"1550474":[162]},{"1550476":[167]},{"1550478":[168]},{"1550480":[255]},{"1550482":[255,127,117]},{"1550486":[255]},{"1550488":[255]},{"1550490":[185]},{"1550492":[181]},{"1550494":[170]},{"1550496":[194]},{"1550498":[174]},{"1550500":[187]},{"1550502":[255]},{"1550504":[162]},{"1550506":[167]},{"1550508":[169]},{"1550510":[255]},{"1550512":[255,127,117]},{"1550516":[255]},{"1550518":[255]},{"1550520":[185]},{"1550522":[181]},{"1550524":[170]},{"1550526":[194]},{"1550528":[174]},{"1550530":[187]},{"1550532":[255]},{"1550534":[162]},{"1550536":[168]},{"1550538":[160]},{"1550540":[255]},{"1550542":[255,127,117]},{"1550546":[255]},{"1550548":[255]},{"1550550":[185]},{"1550552":[181]},{"1550554":[170]},{"1550556":[194]},{"1550558":[174]},{"1550560":[187]},{"1550562":[255]},{"1550564":[162]},{"1550566":[168]},{"1550568":[161]},{"1550570":[255]},{"1550572":[255,127,117]},{"1550576":[255]},{"1550578":[255]},{"1550580":[185]},{"1550582":[181]},{"1550584":[170]},{"1550586":[194]},{"1550588":[174]},{"1550590":[187]},{"1550592":[255]},{"1550594":[162]},{"1550596":[168]},{"1550598":[162]},{"1550600":[255]},{"1550602":[255,127,117]},{"1550606":[255]},{"1550608":[255]},{"1550610":[185]},{"1550612":[181]},{"1550614":[170]},{"1550616":[194]},{"1550618":[174]},{"1550620":[187]},{"1550622":[255]},{"1550624":[162]},{"1550626":[168]},{"1550628":[163]},{"1550630":[255]},{"1550632":[255,127,117]},{"1550636":[255]},{"1550638":[255]},{"1550640":[185]},{"1550642":[181]},{"1550644":[170]},{"1550646":[194]},{"1550648":[174]},{"1550650":[187]},{"1550652":[255]},{"1550654":[162]},{"1550656":[168]},{"1550658":[164]},{"1550660":[255]},{"1550662":[255,127,117]},{"1550666":[255]},{"1550668":[255]},{"1550670":[185]},{"1550672":[181]},{"1550674":[170]},{"1550676":[194]},{"1550678":[174]},{"1550680":[187]},{"1550682":[255]},{"1550684":[162]},{"1550686":[168]},{"1550688":[165]},{"1550690":[255]},{"1550692":[255,127,117]},{"1550696":[255]},{"1550698":[255]},{"1550700":[185]},{"1550702":[181]},{"1550704":[170]},{"1550706":[194]},{"1550708":[174]},{"1550710":[187]},{"1550712":[255]},{"1550714":[162]},{"1550716":[168]},{"1550718":[166]},{"1550720":[255]},{"1550722":[255,127,117]},{"1550726":[255]},{"1550728":[255]},{"1550730":[185]},{"1550732":[181]},{"1550734":[170]},{"1550736":[194]},{"1550738":[174]},{"1550740":[187]},{"1550742":[255]},{"1550744":[162]},{"1550746":[168]},{"1550748":[167]},{"1550750":[255]},{"1550752":[255,127,117]},{"1550756":[255]},{"1550758":[255]},{"1550760":[185]},{"1550762":[181]},{"1550764":[170]},{"1550766":[194]},{"1550768":[174]},{"1550770":[187]},{"1550772":[255]},{"1550774":[162]},{"1550776":[168]},{"1550778":[168]},{"1550780":[255]},{"1550782":[255,127,117]},{"1550786":[255]},{"1550788":[255]},{"1550790":[185]},{"1550792":[181]},{"1550794":[170]},{"1550796":[194]},{"1550798":[174]},{"1550800":[187]},{"1550802":[255]},{"1550804":[162]},{"1550806":[168]},{"1550808":[169]},{"1550810":[255]},{"1550812":[255,127,117]},{"1550816":[255]},{"1550818":[255]},{"1550820":[185]},{"1550822":[181]},{"1550824":[170]},{"1550826":[194]},{"1550828":[174]},{"1550830":[187]},{"1550832":[255]},{"1550834":[162]},{"1550836":[169]},{"1550838":[160]},{"1550840":[255]},{"1550842":[255,127,117]},{"1550846":[255]},{"1550848":[255]},{"1550850":[185]},{"1550852":[181]},{"1550854":[170]},{"1550856":[194]},{"1550858":[174]},{"1550860":[187]},{"1550862":[255]},{"1550864":[162]},{"1550866":[169]},{"1550868":[161]},{"1550870":[255]},{"1550872":[255,127,117]},{"1550876":[255]},{"1550878":[255]},{"1550880":[185]},{"1550882":[181]},{"1550884":[170]},{"1550886":[194]},{"1550888":[174]},{"1550890":[187]},{"1550892":[255]},{"1550894":[162]},{"1550896":[169]},{"1550898":[162]},{"1550900":[255]},{"1550902":[255,127,117]},{"1550906":[255]},{"1550908":[255]},{"1550910":[185]},{"1550912":[181]},{"1550914":[170]},{"1550916":[194]},{"1550918":[174]},{"1550920":[187]},{"1550922":[255]},{"1550924":[162]},{"1550926":[169]},{"1550928":[163]},{"1550930":[255]},{"1550932":[255,127,117]},{"1550936":[255]},{"1550938":[255]},{"1550940":[185]},{"1550942":[181]},{"1550944":[170]},{"1550946":[194]},{"1550948":[174]},{"1550950":[187]},{"1550952":[255]},{"1550954":[162]},{"1550956":[169]},{"1550958":[164]},{"1550960":[255]},{"1550962":[255,127,117]},{"1550966":[255]},{"1550968":[255]},{"1550970":[185]},{"1550972":[181]},{"1550974":[170]},{"1550976":[194]},{"1550978":[174]},{"1550980":[187]},{"1550982":[255]},{"1550984":[162]},{"1550986":[169]},{"1550988":[165]},{"1550990":[255]},{"1550992":[255,127,117]},{"1550996":[255]},{"1550998":[255]},{"1551000":[185]},{"1551002":[181]},{"1551004":[170]},{"1551006":[194]},{"1551008":[174]},{"1551010":[187]},{"1551012":[255]},{"1551014":[162]},{"1551016":[169]},{"1551018":[166]},{"1551020":[255]},{"1551022":[255,127,117]},{"1551026":[255]},{"1551028":[255]},{"1551030":[185]},{"1551032":[181]},{"1551034":[170]},{"1551036":[194]},{"1551038":[174]},{"1551040":[187]},{"1551042":[255]},{"1551044":[162]},{"1551046":[169]},{"1551048":[167]},{"1551050":[255]},{"1551052":[255,127,117]},{"1551056":[255]},{"1551058":[255]},{"1551060":[185]},{"1551062":[181]},{"1551064":[170]},{"1551066":[194]},{"1551068":[174]},{"1551070":[187]},{"1551072":[255]},{"1551074":[162]},{"1551076":[169]},{"1551078":[168]},{"1551080":[255]},{"1551082":[255,127,117]},{"1551086":[255]},{"1551088":[255]},{"1551090":[185]},{"1551092":[181]},{"1551094":[170]},{"1551096":[194]},{"1551098":[174]},{"1551100":[187]},{"1551102":[255]},{"1551104":[162]},{"1551106":[169]},{"1551108":[169]},{"1551110":[255]},{"1551112":[255,127,117]},{"1551116":[255]},{"1551118":[255]},{"1551120":[185]},{"1551122":[181]},{"1551124":[170]},{"1551126":[194]},{"1551128":[174]},{"1551130":[187]},{"1551132":[255]},{"1551134":[163]},{"1551136":[160]},{"1551138":[160]},{"1551140":[255]},{"1551142":[255,127,117]},{"1551146":[255]},{"1551148":[255]},{"1551150":[185]},{"1551152":[181]},{"1551154":[170]},{"1551156":[194]},{"1551158":[174]},{"1551160":[187]},{"1551162":[255]},{"1551164":[163]},{"1551166":[160]},{"1551168":[161]},{"1551170":[255]},{"1551172":[255,127,117]},{"1551176":[255]},{"1551178":[255]},{"1551180":[185]},{"1551182":[181]},{"1551184":[170]},{"1551186":[194]},{"1551188":[174]},{"1551190":[187]},{"1551192":[255]},{"1551194":[163]},{"1551196":[160]},{"1551198":[162]},{"1551200":[255]},{"1551202":[255,127,117]},{"1551206":[255]},{"1551208":[255]},{"1551210":[185]},{"1551212":[181]},{"1551214":[170]},{"1551216":[194]},{"1551218":[174]},{"1551220":[187]},{"1551222":[255]},{"1551224":[163]},{"1551226":[160]},{"1551228":[163]},{"1551230":[255]},{"1551232":[255,127,117]},{"1551236":[255]},{"1551238":[255]},{"1551240":[185]},{"1551242":[181]},{"1551244":[170]},{"1551246":[194]},{"1551248":[174]},{"1551250":[187]},{"1551252":[255]},{"1551254":[163]},{"1551256":[160]},{"1551258":[164]},{"1551260":[255]},{"1551262":[255,127,117]},{"1551266":[255]},{"1551268":[255]},{"1551270":[185]},{"1551272":[181]},{"1551274":[170]},{"1551276":[194]},{"1551278":[174]},{"1551280":[187]},{"1551282":[255]},{"1551284":[163]},{"1551286":[160]},{"1551288":[165]},{"1551290":[255]},{"1551292":[255,127,117]},{"1551296":[255]},{"1551298":[255]},{"1551300":[185]},{"1551302":[181]},{"1551304":[170]},{"1551306":[194]},{"1551308":[174]},{"1551310":[187]},{"1551312":[255]},{"1551314":[163]},{"1551316":[160]},{"1551318":[166]},{"1551320":[255]},{"1551322":[255,127,117]},{"1551326":[255]},{"1551328":[255]},{"1551330":[185]},{"1551332":[181]},{"1551334":[170]},{"1551336":[194]},{"1551338":[174]},{"1551340":[187]},{"1551342":[255]},{"1551344":[163]},{"1551346":[160]},{"1551348":[167]},{"1551350":[255]},{"1551352":[255,127,117]},{"1551356":[255]},{"1551358":[255]},{"1551360":[185]},{"1551362":[181]},{"1551364":[170]},{"1551366":[194]},{"1551368":[174]},{"1551370":[187]},{"1551372":[255]},{"1551374":[163]},{"1551376":[160]},{"1551378":[168]},{"1551380":[255]},{"1551382":[255,127,117]},{"1551386":[255]},{"1551388":[255]},{"1551390":[185]},{"1551392":[181]},{"1551394":[170]},{"1551396":[194]},{"1551398":[174]},{"1551400":[187]},{"1551402":[255]},{"1551404":[163]},{"1551406":[160]},{"1551408":[169]},{"1551410":[255]},{"1551412":[255,127,117]},{"1551416":[255]},{"1551418":[255]},{"1551420":[185]},{"1551422":[181]},{"1551424":[170]},{"1551426":[194]},{"1551428":[174]},{"1551430":[187]},{"1551432":[255]},{"1551434":[163]},{"1551436":[161]},{"1551438":[160]},{"1551440":[255]},{"1551442":[255,127,117]},{"1551446":[255]},{"1551448":[255]},{"1551450":[185]},{"1551452":[181]},{"1551454":[170]},{"1551456":[194]},{"1551458":[174]},{"1551460":[187]},{"1551462":[255]},{"1551464":[163]},{"1551466":[161]},{"1551468":[161]},{"1551470":[255]},{"1551472":[255,127,117]},{"1551476":[255]},{"1551478":[255]},{"1551480":[185]},{"1551482":[181]},{"1551484":[170]},{"1551486":[194]},{"1551488":[174]},{"1551490":[187]},{"1551492":[255]},{"1551494":[163]},{"1551496":[161]},{"1551498":[162]},{"1551500":[255]},{"1551502":[255,127,117]},{"1551506":[255]},{"1551508":[255]},{"1551510":[185]},{"1551512":[181]},{"1551514":[170]},{"1551516":[194]},{"1551518":[174]},{"1551520":[187]},{"1551522":[255]},{"1551524":[163]},{"1551526":[161]},{"1551528":[163]},{"1551530":[255]},{"1551532":[255,127,117]},{"1551536":[255]},{"1551538":[255]},{"1551540":[185]},{"1551542":[181]},{"1551544":[170]},{"1551546":[194]},{"1551548":[174]},{"1551550":[187]},{"1551552":[255]},{"1551554":[163]},{"1551556":[161]},{"1551558":[164]},{"1551560":[255]},{"1551562":[255,127,117]},{"1551566":[255]},{"1551568":[255]},{"1551570":[185]},{"1551572":[181]},{"1551574":[170]},{"1551576":[194]},{"1551578":[174]},{"1551580":[187]},{"1551582":[255]},{"1551584":[163]},{"1551586":[161]},{"1551588":[165]},{"1551590":[255]},{"1551592":[255,127,117]},{"1551596":[255]},{"1551598":[255]},{"1551600":[185]},{"1551602":[181]},{"1551604":[170]},{"1551606":[194]},{"1551608":[174]},{"1551610":[187]},{"1551612":[255]},{"1551614":[163]},{"1551616":[161]},{"1551618":[166]},{"1551620":[255]},{"1551622":[255,127,117]},{"1551626":[255]},{"1551628":[255]},{"1551630":[185]},{"1551632":[181]},{"1551634":[170]},{"1551636":[194]},{"1551638":[174]},{"1551640":[187]},{"1551642":[255]},{"1551644":[163]},{"1551646":[161]},{"1551648":[167]},{"1551650":[255]},{"1551652":[255,127,117]},{"1551656":[255]},{"1551658":[255]},{"1551660":[185]},{"1551662":[181]},{"1551664":[170]},{"1551666":[194]},{"1551668":[174]},{"1551670":[187]},{"1551672":[255]},{"1551674":[163]},{"1551676":[161]},{"1551678":[168]},{"1551680":[255]},{"1551682":[255,127,117]},{"1551686":[255]},{"1551688":[255]},{"1551690":[185]},{"1551692":[181]},{"1551694":[170]},{"1551696":[194]},{"1551698":[174]},{"1551700":[187]},{"1551702":[255]},{"1551704":[163]},{"1551706":[161]},{"1551708":[169]},{"1551710":[255]},{"1551712":[255,127,117]},{"1551716":[255]},{"1551718":[255]},{"1551720":[185]},{"1551722":[181]},{"1551724":[170]},{"1551726":[194]},{"1551728":[174]},{"1551730":[187]},{"1551732":[255]},{"1551734":[163]},{"1551736":[162]},{"1551738":[160]},{"1551740":[255]},{"1551742":[255,127,117]},{"1551746":[255]},{"1551748":[255]},{"1551750":[185]},{"1551752":[181]},{"1551754":[170]},{"1551756":[194]},{"1551758":[174]},{"1551760":[187]},{"1551762":[255]},{"1551764":[163]},{"1551766":[162]},{"1551768":[161]},{"1551770":[255]},{"1551772":[255,127,117]},{"1551776":[255]},{"1551778":[255]},{"1551780":[185]},{"1551782":[181]},{"1551784":[170]},{"1551786":[194]},{"1551788":[174]},{"1551790":[187]},{"1551792":[255]},{"1551794":[163]},{"1551796":[162]},{"1551798":[162]},{"1551800":[255]},{"1551802":[255,127,117]},{"1551806":[255]},{"1551808":[255]},{"1551810":[185]},{"1551812":[181]},{"1551814":[170]},{"1551816":[194]},{"1551818":[174]},{"1551820":[187]},{"1551822":[255]},{"1551824":[163]},{"1551826":[162]},{"1551828":[163]},{"1551830":[255]},{"1551832":[255,127,117]},{"1551836":[255]},{"1551838":[255]},{"1551840":[185]},{"1551842":[181]},{"1551844":[170]},{"1551846":[194]},{"1551848":[174]},{"1551850":[187]},{"1551852":[255]},{"1551854":[163]},{"1551856":[162]},{"1551858":[164]},{"1551860":[255]},{"1551862":[255,127,117]},{"1551866":[255]},{"1551868":[255]},{"1551870":[185]},{"1551872":[181]},{"1551874":[170]},{"1551876":[194]},{"1551878":[174]},{"1551880":[187]},{"1551882":[255]},{"1551884":[163]},{"1551886":[162]},{"1551888":[165]},{"1551890":[255]},{"1551892":[255,127,117]},{"1551896":[255]},{"1551898":[255]},{"1551900":[185]},{"1551902":[181]},{"1551904":[170]},{"1551906":[194]},{"1551908":[174]},{"1551910":[187]},{"1551912":[255]},{"1551914":[163]},{"1551916":[162]},{"1551918":[166]},{"1551920":[255]},{"1551922":[255,127,117]},{"1551926":[255]},{"1551928":[255]},{"1551930":[185]},{"1551932":[181]},{"1551934":[170]},{"1551936":[194]},{"1551938":[174]},{"1551940":[187]},{"1551942":[255]},{"1551944":[163]},{"1551946":[162]},{"1551948":[167]},{"1551950":[255]},{"1551952":[255,127,117]},{"1551956":[255]},{"1551958":[255]},{"1551960":[185]},{"1551962":[181]},{"1551964":[170]},{"1551966":[194]},{"1551968":[174]},{"1551970":[187]},{"1551972":[255]},{"1551974":[163]},{"1551976":[162]},{"1551978":[168]},{"1551980":[255]},{"1551982":[255,127,117]},{"1551986":[255]},{"1551988":[255]},{"1551990":[185]},{"1551992":[181]},{"1551994":[170]},{"1551996":[194]},{"1551998":[174]},{"1552000":[187]},{"1552002":[255]},{"1552004":[163]},{"1552006":[162]},{"1552008":[169]},{"1552010":[255]},{"1552012":[255,127,117]},{"1552016":[255]},{"1552018":[255]},{"1552020":[185]},{"1552022":[181]},{"1552024":[170]},{"1552026":[194]},{"1552028":[174]},{"1552030":[187]},{"1552032":[255]},{"1552034":[163]},{"1552036":[163]},{"1552038":[160]},{"1552040":[255]},{"1552042":[255,127,117]},{"1552046":[255]},{"1552048":[255]},{"1552050":[185]},{"1552052":[181]},{"1552054":[170]},{"1552056":[194]},{"1552058":[174]},{"1552060":[187]},{"1552062":[255]},{"1552064":[163]},{"1552066":[163]},{"1552068":[161]},{"1552070":[255]},{"1552072":[255,127,117]},{"1552076":[255]},{"1552078":[255]},{"1552080":[185]},{"1552082":[181]},{"1552084":[170]},{"1552086":[194]},{"1552088":[174]},{"1552090":[187]},{"1552092":[255]},{"1552094":[163]},{"1552096":[163]},{"1552098":[162]},{"1552100":[255]},{"1552102":[255,127,117]},{"1552106":[255]},{"1552108":[255]},{"1552110":[185]},{"1552112":[181]},{"1552114":[170]},{"1552116":[194]},{"1552118":[174]},{"1552120":[187]},{"1552122":[255]},{"1552124":[163]},{"1552126":[163]},{"1552128":[163]},{"1552130":[255]},{"1552132":[255,127,117]},{"1552136":[255]},{"1552138":[255]},{"1552140":[185]},{"1552142":[181]},{"1552144":[170]},{"1552146":[194]},{"1552148":[174]},{"1552150":[187]},{"1552152":[255]},{"1552154":[163]},{"1552156":[163]},{"1552158":[164]},{"1552160":[255]},{"1552162":[255,127,117]},{"1552166":[255]},{"1552168":[255]},{"1552170":[185]},{"1552172":[181]},{"1552174":[170]},{"1552176":[194]},{"1552178":[174]},{"1552180":[187]},{"1552182":[255]},{"1552184":[163]},{"1552186":[163]},{"1552188":[165]},{"1552190":[255]},{"1552192":[255,127,117]},{"1552196":[255]},{"1552198":[255]},{"1552200":[185]},{"1552202":[181]},{"1552204":[170]},{"1552206":[194]},{"1552208":[174]},{"1552210":[187]},{"1552212":[255]},{"1552214":[163]},{"1552216":[163]},{"1552218":[166]},{"1552220":[255]},{"1552222":[255,127,117]},{"1552226":[255]},{"1552228":[255]},{"1552230":[185]},{"1552232":[181]},{"1552234":[170]},{"1552236":[194]},{"1552238":[174]},{"1552240":[187]},{"1552242":[255]},{"1552244":[163]},{"1552246":[163]},{"1552248":[167]},{"1552250":[255]},{"1552252":[255,127,117]},{"1552256":[255]},{"1552258":[255]},{"1552260":[185]},{"1552262":[181]},{"1552264":[170]},{"1552266":[194]},{"1552268":[174]},{"1552270":[187]},{"1552272":[255]},{"1552274":[163]},{"1552276":[163]},{"1552278":[168]},{"1552280":[255]},{"1552282":[255,127,117]},{"1552286":[255]},{"1552288":[255]},{"1552290":[185]},{"1552292":[181]},{"1552294":[170]},{"1552296":[194]},{"1552298":[174]},{"1552300":[187]},{"1552302":[255]},{"1552304":[163]},{"1552306":[163]},{"1552308":[169]},{"1552310":[255]},{"1552312":[255,127,117]},{"1552316":[255]},{"1552318":[255]},{"1552320":[185]},{"1552322":[181]},{"1552324":[170]},{"1552326":[194]},{"1552328":[174]},{"1552330":[187]},{"1552332":[255]},{"1552334":[163]},{"1552336":[164]},{"1552338":[160]},{"1552340":[255]},{"1552342":[255,127,117]},{"1552346":[255]},{"1552348":[255]},{"1552350":[185]},{"1552352":[181]},{"1552354":[170]},{"1552356":[194]},{"1552358":[174]},{"1552360":[187]},{"1552362":[255]},{"1552364":[163]},{"1552366":[164]},{"1552368":[161]},{"1552370":[255]},{"1552372":[255,127,117]},{"1552376":[255]},{"1552378":[255]},{"1552380":[185]},{"1552382":[181]},{"1552384":[170]},{"1552386":[194]},{"1552388":[174]},{"1552390":[187]},{"1552392":[255]},{"1552394":[163]},{"1552396":[164]},{"1552398":[162]},{"1552400":[255]},{"1552402":[255,127,117]},{"1552406":[255]},{"1552408":[255]},{"1552410":[185]},{"1552412":[181]},{"1552414":[170]},{"1552416":[194]},{"1552418":[174]},{"1552420":[187]},{"1552422":[255]},{"1552424":[163]},{"1552426":[164]},{"1552428":[163]},{"1552430":[255]},{"1552432":[255,127,117]},{"1552436":[255]},{"1552438":[255]},{"1552440":[185]},{"1552442":[181]},{"1552444":[170]},{"1552446":[194]},{"1552448":[174]},{"1552450":[187]},{"1552452":[255]},{"1552454":[163]},{"1552456":[164]},{"1552458":[164]},{"1552460":[255]},{"1552462":[255,127,117]},{"1552466":[255]},{"1552468":[255]},{"1552470":[185]},{"1552472":[181]},{"1552474":[170]},{"1552476":[194]},{"1552478":[174]},{"1552480":[187]},{"1552482":[255]},{"1552484":[163]},{"1552486":[164]},{"1552488":[165]},{"1552490":[255]},{"1552492":[255,127,117]},{"1552496":[255]},{"1552498":[255]},{"1552500":[185]},{"1552502":[181]},{"1552504":[170]},{"1552506":[194]},{"1552508":[174]},{"1552510":[187]},{"1552512":[255]},{"1552514":[163]},{"1552516":[164]},{"1552518":[166]},{"1552520":[255]},{"1552522":[255,127,117]},{"1552526":[255]},{"1552528":[255]},{"1552530":[185]},{"1552532":[181]},{"1552534":[170]},{"1552536":[194]},{"1552538":[174]},{"1552540":[187]},{"1552542":[255]},{"1552544":[163]},{"1552546":[164]},{"1552548":[167]},{"1552550":[255]},{"1552552":[255,127,117]},{"1552556":[255]},{"1552558":[255]},{"1552560":[185]},{"1552562":[181]},{"1552564":[170]},{"1552566":[194]},{"1552568":[174]},{"1552570":[187]},{"1552572":[255]},{"1552574":[163]},{"1552576":[164]},{"1552578":[168]},{"1552580":[255]},{"1552582":[255,127,117]},{"1552586":[255]},{"1552588":[255]},{"1552590":[185]},{"1552592":[181]},{"1552594":[170]},{"1552596":[194]},{"1552598":[174]},{"1552600":[187]},{"1552602":[255]},{"1552604":[163]},{"1552606":[164]},{"1552608":[169]},{"1552610":[255]},{"1552612":[255,127,117]},{"1552616":[255]},{"1552618":[255]},{"1552620":[185]},{"1552622":[181]},{"1552624":[170]},{"1552626":[194]},{"1552628":[174]},{"1552630":[187]},{"1552632":[255]},{"1552634":[163]},{"1552636":[165]},{"1552638":[160]},{"1552640":[255]},{"1552642":[255,127,117]},{"1552646":[255]},{"1552648":[255]},{"1552650":[185]},{"1552652":[181]},{"1552654":[170]},{"1552656":[194]},{"1552658":[174]},{"1552660":[187]},{"1552662":[255]},{"1552664":[163]},{"1552666":[165]},{"1552668":[161]},{"1552670":[255]},{"1552672":[255,127,117]},{"1552676":[255]},{"1552678":[255]},{"1552680":[185]},{"1552682":[181]},{"1552684":[170]},{"1552686":[194]},{"1552688":[174]},{"1552690":[187]},{"1552692":[255]},{"1552694":[163]},{"1552696":[165]},{"1552698":[162]},{"1552700":[255]},{"1552702":[255,127,117]},{"1552706":[255]},{"1552708":[255]},{"1552710":[185]},{"1552712":[181]},{"1552714":[170]},{"1552716":[194]},{"1552718":[174]},{"1552720":[187]},{"1552722":[255]},{"1552724":[163]},{"1552726":[165]},{"1552728":[163]},{"1552730":[255]},{"1552732":[255,127,117]},{"1552736":[255]},{"1552738":[255]},{"1552740":[185]},{"1552742":[181]},{"1552744":[170]},{"1552746":[194]},{"1552748":[174]},{"1552750":[187]},{"1552752":[255]},{"1552754":[163]},{"1552756":[165]},{"1552758":[164]},{"1552760":[255]},{"1552762":[255,127,117]},{"1552766":[255]},{"1552768":[255]},{"1552770":[185]},{"1552772":[181]},{"1552774":[170]},{"1552776":[194]},{"1552778":[174]},{"1552780":[187]},{"1552782":[255]},{"1552784":[163]},{"1552786":[165]},{"1552788":[165]},{"1552790":[255]},{"1552792":[255,127,117]},{"1552796":[255]},{"1552798":[255]},{"1552800":[185]},{"1552802":[181]},{"1552804":[170]},{"1552806":[194]},{"1552808":[174]},{"1552810":[187]},{"1552812":[255]},{"1552814":[163]},{"1552816":[165]},{"1552818":[166]},{"1552820":[255]},{"1552822":[255,127,117]},{"1552826":[255]},{"1552828":[255]},{"1552830":[185]},{"1552832":[181]},{"1552834":[170]},{"1552836":[194]},{"1552838":[174]},{"1552840":[187]},{"1552842":[255]},{"1552844":[163]},{"1552846":[165]},{"1552848":[167]},{"1552850":[255]},{"1552852":[255,127,117]},{"1552856":[255]},{"1552858":[255]},{"1552860":[185]},{"1552862":[181]},{"1552864":[170]},{"1552866":[194]},{"1552868":[174]},{"1552870":[187]},{"1552872":[255]},{"1552874":[163]},{"1552876":[165]},{"1552878":[168]},{"1552880":[255]},{"1552882":[255,127,117]},{"1552886":[255]},{"1552888":[255]},{"1552890":[185]},{"1552892":[181]},{"1552894":[170]},{"1552896":[194]},{"1552898":[174]},{"1552900":[187]},{"1552902":[255]},{"1552904":[163]},{"1552906":[165]},{"1552908":[169]},{"1552910":[255]},{"1552912":[255,127,117]},{"1552916":[255]},{"1552918":[255]},{"1552920":[185]},{"1552922":[181]},{"1552924":[170]},{"1552926":[194]},{"1552928":[174]},{"1552930":[187]},{"1552932":[255]},{"1552934":[163]},{"1552936":[166]},{"1552938":[160]},{"1552940":[255]},{"1552942":[255,127,117]},{"1552946":[255]},{"1552948":[255]},{"1552950":[185]},{"1552952":[181]},{"1552954":[170]},{"1552956":[194]},{"1552958":[174]},{"1552960":[187]},{"1552962":[255]},{"1552964":[163]},{"1552966":[166]},{"1552968":[161]},{"1552970":[255]},{"1552972":[255,127,117]},{"1552976":[255]},{"1552978":[255]},{"1552980":[185]},{"1552982":[181]},{"1552984":[170]},{"1552986":[194]},{"1552988":[174]},{"1552990":[187]},{"1552992":[255]},{"1552994":[163]},{"1552996":[166]},{"1552998":[162]},{"1553000":[255]},{"1553002":[255,127,117]},{"1553006":[255]},{"1553008":[255]},{"1553010":[185]},{"1553012":[181]},{"1553014":[170]},{"1553016":[194]},{"1553018":[174]},{"1553020":[187]},{"1553022":[255]},{"1553024":[163]},{"1553026":[166]},{"1553028":[163]},{"1553030":[255]},{"1553032":[255,127,117]},{"1553036":[255]},{"1553038":[255]},{"1553040":[185]},{"1553042":[181]},{"1553044":[170]},{"1553046":[194]},{"1553048":[174]},{"1553050":[187]},{"1553052":[255]},{"1553054":[163]},{"1553056":[166]},{"1553058":[164]},{"1553060":[255]},{"1553062":[255,127,117]},{"1553066":[255]},{"1553068":[255]},{"1553070":[185]},{"1553072":[181]},{"1553074":[170]},{"1553076":[194]},{"1553078":[174]},{"1553080":[187]},{"1553082":[255]},{"1553084":[163]},{"1553086":[166]},{"1553088":[165]},{"1553090":[255]},{"1553092":[255,127,117]},{"1553096":[255]},{"1553098":[255]},{"1553100":[185]},{"1553102":[181]},{"1553104":[170]},{"1553106":[194]},{"1553108":[174]},{"1553110":[187]},{"1553112":[255]},{"1553114":[163]},{"1553116":[166]},{"1553118":[166]},{"1553120":[255]},{"1553122":[255,127,117]},{"1553126":[255]},{"1553128":[255]},{"1553130":[185]},{"1553132":[181]},{"1553134":[170]},{"1553136":[194]},{"1553138":[174]},{"1553140":[187]},{"1553142":[255]},{"1553144":[163]},{"1553146":[166]},{"1553148":[167]},{"1553150":[255]},{"1553152":[255,127,117]},{"1553156":[255]},{"1553158":[255]},{"1553160":[185]},{"1553162":[181]},{"1553164":[170]},{"1553166":[194]},{"1553168":[174]},{"1553170":[187]},{"1553172":[255]},{"1553174":[163]},{"1553176":[166]},{"1553178":[168]},{"1553180":[255]},{"1553182":[255,127,117]},{"1553186":[255]},{"1553188":[255]},{"1553190":[185]},{"1553192":[181]},{"1553194":[170]},{"1553196":[194]},{"1553198":[174]},{"1553200":[187]},{"1553202":[255]},{"1553204":[163]},{"1553206":[166]},{"1553208":[169]},{"1553210":[255]},{"1553212":[255,127,117]},{"1553216":[255]},{"1553218":[255]},{"1553220":[185]},{"1553222":[181]},{"1553224":[170]},{"1553226":[194]},{"1553228":[174]},{"1553230":[187]},{"1553232":[255]},{"1553234":[163]},{"1553236":[167]},{"1553238":[160]},{"1553240":[255]},{"1553242":[255,127,117]},{"1553246":[255]},{"1553248":[255]},{"1553250":[185]},{"1553252":[181]},{"1553254":[170]},{"1553256":[194]},{"1553258":[174]},{"1553260":[187]},{"1553262":[255]},{"1553264":[163]},{"1553266":[167]},{"1553268":[161]},{"1553270":[255]},{"1553272":[255,127,117]},{"1553276":[255]},{"1553278":[255]},{"1553280":[185]},{"1553282":[181]},{"1553284":[170]},{"1553286":[194]},{"1553288":[174]},{"1553290":[187]},{"1553292":[255]},{"1553294":[163]},{"1553296":[167]},{"1553298":[162]},{"1553300":[255]},{"1553302":[255,127,117]},{"1553306":[255]},{"1553308":[255]},{"1553310":[185]},{"1553312":[181]},{"1553314":[170]},{"1553316":[194]},{"1553318":[174]},{"1553320":[187]},{"1553322":[255]},{"1553324":[163]},{"1553326":[167]},{"1553328":[163]},{"1553330":[255]},{"1553332":[255,127,117]},{"1553336":[255]},{"1553338":[255]},{"1553340":[185]},{"1553342":[181]},{"1553344":[170]},{"1553346":[194]},{"1553348":[174]},{"1553350":[187]},{"1553352":[255]},{"1553354":[163]},{"1553356":[167]},{"1553358":[164]},{"1553360":[255]},{"1553362":[255,127,117]},{"1553366":[255]},{"1553368":[255]},{"1553370":[185]},{"1553372":[181]},{"1553374":[170]},{"1553376":[194]},{"1553378":[174]},{"1553380":[187]},{"1553382":[255]},{"1553384":[163]},{"1553386":[167]},{"1553388":[165]},{"1553390":[255]},{"1553392":[255,127,117]},{"1553396":[255]},{"1553398":[255]},{"1553400":[185]},{"1553402":[181]},{"1553404":[170]},{"1553406":[194]},{"1553408":[174]},{"1553410":[187]},{"1553412":[255]},{"1553414":[163]},{"1553416":[167]},{"1553418":[166]},{"1553420":[255]},{"1553422":[255,127,117]},{"1553426":[255]},{"1553428":[255]},{"1553430":[185]},{"1553432":[181]},{"1553434":[170]},{"1553436":[194]},{"1553438":[174]},{"1553440":[187]},{"1553442":[255]},{"1553444":[163]},{"1553446":[167]},{"1553448":[167]},{"1553450":[255]},{"1553452":[255,127,117]},{"1553456":[255]},{"1553458":[255]},{"1553460":[185]},{"1553462":[181]},{"1553464":[170]},{"1553466":[194]},{"1553468":[174]},{"1553470":[187]},{"1553472":[255]},{"1553474":[163]},{"1553476":[167]},{"1553478":[168]},{"1553480":[255]},{"1553482":[255,127,117]},{"1553486":[255]},{"1553488":[255]},{"1553490":[185]},{"1553492":[181]},{"1553494":[170]},{"1553496":[194]},{"1553498":[174]},{"1553500":[187]},{"1553502":[255]},{"1553504":[163]},{"1553506":[167]},{"1553508":[169]},{"1553510":[255]},{"1553512":[255,127,117]},{"1553516":[255]},{"1553518":[255]},{"1553520":[185]},{"1553522":[181]},{"1553524":[170]},{"1553526":[194]},{"1553528":[174]},{"1553530":[187]},{"1553532":[255]},{"1553534":[163]},{"1553536":[168]},{"1553538":[160]},{"1553540":[255]},{"1553542":[255,127,117]},{"1553546":[255]},{"1553548":[255]},{"1553550":[185]},{"1553552":[181]},{"1553554":[170]},{"1553556":[194]},{"1553558":[174]},{"1553560":[187]},{"1553562":[255]},{"1553564":[163]},{"1553566":[168]},{"1553568":[161]},{"1553570":[255]},{"1553572":[255,127,117]},{"1553576":[255]},{"1553578":[255]},{"1553580":[185]},{"1553582":[181]},{"1553584":[170]},{"1553586":[194]},{"1553588":[174]},{"1553590":[187]},{"1553592":[255]},{"1553594":[163]},{"1553596":[168]},{"1553598":[162]},{"1553600":[255]},{"1553602":[255,127,117]},{"1553606":[255]},{"1553608":[255]},{"1553610":[185]},{"1553612":[181]},{"1553614":[170]},{"1553616":[194]},{"1553618":[174]},{"1553620":[187]},{"1553622":[255]},{"1553624":[163]},{"1553626":[168]},{"1553628":[163]},{"1553630":[255]},{"1553632":[255,127,117]},{"1553636":[255]},{"1553638":[255]},{"1553640":[185]},{"1553642":[181]},{"1553644":[170]},{"1553646":[194]},{"1553648":[174]},{"1553650":[187]},{"1553652":[255]},{"1553654":[163]},{"1553656":[168]},{"1553658":[164]},{"1553660":[255]},{"1553662":[255,127,117]},{"1553666":[255]},{"1553668":[255]},{"1553670":[185]},{"1553672":[181]},{"1553674":[170]},{"1553676":[194]},{"1553678":[174]},{"1553680":[187]},{"1553682":[255]},{"1553684":[163]},{"1553686":[168]},{"1553688":[165]},{"1553690":[255]},{"1553692":[255,127,117]},{"1553696":[255]},{"1553698":[255]},{"1553700":[185]},{"1553702":[181]},{"1553704":[170]},{"1553706":[194]},{"1553708":[174]},{"1553710":[187]},{"1553712":[255]},{"1553714":[163]},{"1553716":[168]},{"1553718":[166]},{"1553720":[255]},{"1553722":[255,127,117]},{"1553726":[255]},{"1553728":[255]},{"1553730":[185]},{"1553732":[181]},{"1553734":[170]},{"1553736":[194]},{"1553738":[174]},{"1553740":[187]},{"1553742":[255]},{"1553744":[163]},{"1553746":[168]},{"1553748":[167]},{"1553750":[255]},{"1553752":[255,127,117]},{"1553756":[255]},{"1553758":[255]},{"1553760":[185]},{"1553762":[181]},{"1553764":[170]},{"1553766":[194]},{"1553768":[174]},{"1553770":[187]},{"1553772":[255]},{"1553774":[163]},{"1553776":[168]},{"1553778":[168]},{"1553780":[255]},{"1553782":[255,127,117]},{"1553786":[255]},{"1553788":[255]},{"1553790":[185]},{"1553792":[181]},{"1553794":[170]},{"1553796":[194]},{"1553798":[174]},{"1553800":[187]},{"1553802":[255]},{"1553804":[163]},{"1553806":[168]},{"1553808":[169]},{"1553810":[255]},{"1553812":[255,127,117]},{"1553816":[255]},{"1553818":[255]},{"1553820":[185]},{"1553822":[181]},{"1553824":[170]},{"1553826":[194]},{"1553828":[174]},{"1553830":[187]},{"1553832":[255]},{"1553834":[163]},{"1553836":[169]},{"1553838":[160]},{"1553840":[255]},{"1553842":[255,127,117]},{"1553846":[255]},{"1553848":[255]},{"1553850":[185]},{"1553852":[181]},{"1553854":[170]},{"1553856":[194]},{"1553858":[174]},{"1553860":[187]},{"1553862":[255]},{"1553864":[163]},{"1553866":[169]},{"1553868":[161]},{"1553870":[255]},{"1553872":[255,127,117]},{"1553876":[255]},{"1553878":[255]},{"1553880":[185]},{"1553882":[181]},{"1553884":[170]},{"1553886":[194]},{"1553888":[174]},{"1553890":[187]},{"1553892":[255]},{"1553894":[163]},{"1553896":[169]},{"1553898":[162]},{"1553900":[255]},{"1553902":[255,127,117]},{"1553906":[255]},{"1553908":[255]},{"1553910":[185]},{"1553912":[181]},{"1553914":[170]},{"1553916":[194]},{"1553918":[174]},{"1553920":[187]},{"1553922":[255]},{"1553924":[163]},{"1553926":[169]},{"1553928":[163]},{"1553930":[255]},{"1553932":[255,127,117]},{"1553936":[255]},{"1553938":[255]},{"1553940":[185]},{"1553942":[181]},{"1553944":[170]},{"1553946":[194]},{"1553948":[174]},{"1553950":[187]},{"1553952":[255]},{"1553954":[163]},{"1553956":[169]},{"1553958":[164]},{"1553960":[255]},{"1553962":[255,127,117]},{"1553966":[255]},{"1553968":[255]},{"1553970":[185]},{"1553972":[181]},{"1553974":[170]},{"1553976":[194]},{"1553978":[174]},{"1553980":[187]},{"1553982":[255]},{"1553984":[163]},{"1553986":[169]},{"1553988":[165]},{"1553990":[255]},{"1553992":[255,127,117]},{"1553996":[255]},{"1553998":[255]},{"1554000":[185]},{"1554002":[181]},{"1554004":[170]},{"1554006":[194]},{"1554008":[174]},{"1554010":[187]},{"1554012":[255]},{"1554014":[163]},{"1554016":[169]},{"1554018":[166]},{"1554020":[255]},{"1554022":[255,127,117]},{"1554026":[255]},{"1554028":[255]},{"1554030":[185]},{"1554032":[181]},{"1554034":[170]},{"1554036":[194]},{"1554038":[174]},{"1554040":[187]},{"1554042":[255]},{"1554044":[163]},{"1554046":[169]},{"1554048":[167]},{"1554050":[255]},{"1554052":[255,127,117]},{"1554056":[255]},{"1554058":[255]},{"1554060":[185]},{"1554062":[181]},{"1554064":[170]},{"1554066":[194]},{"1554068":[174]},{"1554070":[187]},{"1554072":[255]},{"1554074":[163]},{"1554076":[169]},{"1554078":[168]},{"1554080":[255]},{"1554082":[255,127,117]},{"1554086":[255]},{"1554088":[255]},{"1554090":[185]},{"1554092":[181]},{"1554094":[170]},{"1554096":[194]},{"1554098":[174]},{"1554100":[187]},{"1554102":[255]},{"1554104":[163]},{"1554106":[169]},{"1554108":[169]},{"1554110":[255]},{"1554112":[255,127,117]},{"1554116":[255]},{"1554118":[255]},{"1554120":[185]},{"1554122":[181]},{"1554124":[170]},{"1554126":[194]},{"1554128":[174]},{"1554130":[187]},{"1554132":[255]},{"1554134":[164]},{"1554136":[160]},{"1554138":[160]},{"1554140":[255]},{"1554142":[255,127,117]},{"1554146":[255]},{"1554148":[255]},{"1554150":[185]},{"1554152":[181]},{"1554154":[170]},{"1554156":[194]},{"1554158":[174]},{"1554160":[187]},{"1554162":[255]},{"1554164":[164]},{"1554166":[160]},{"1554168":[161]},{"1554170":[255]},{"1554172":[255,127,117]},{"1554176":[255]},{"1554178":[255]},{"1554180":[185]},{"1554182":[181]},{"1554184":[170]},{"1554186":[194]},{"1554188":[174]},{"1554190":[187]},{"1554192":[255]},{"1554194":[164]},{"1554196":[160]},{"1554198":[162]},{"1554200":[255]},{"1554202":[255,127,117]},{"1554206":[255]},{"1554208":[255]},{"1554210":[185]},{"1554212":[181]},{"1554214":[170]},{"1554216":[194]},{"1554218":[174]},{"1554220":[187]},{"1554222":[255]},{"1554224":[164]},{"1554226":[160]},{"1554228":[163]},{"1554230":[255]},{"1554232":[255,127,117]},{"1554236":[255]},{"1554238":[255]},{"1554240":[185]},{"1554242":[181]},{"1554244":[170]},{"1554246":[194]},{"1554248":[174]},{"1554250":[187]},{"1554252":[255]},{"1554254":[164]},{"1554256":[160]},{"1554258":[164]},{"1554260":[255]},{"1554262":[255,127,117]},{"1554266":[255]},{"1554268":[255]},{"1554270":[185]},{"1554272":[181]},{"1554274":[170]},{"1554276":[194]},{"1554278":[174]},{"1554280":[187]},{"1554282":[255]},{"1554284":[164]},{"1554286":[160]},{"1554288":[165]},{"1554290":[255]},{"1554292":[255,127,117]},{"1554296":[255]},{"1554298":[255]},{"1554300":[185]},{"1554302":[181]},{"1554304":[170]},{"1554306":[194]},{"1554308":[174]},{"1554310":[187]},{"1554312":[255]},{"1554314":[164]},{"1554316":[160]},{"1554318":[166]},{"1554320":[255]},{"1554322":[255,127,117]},{"1554326":[255]},{"1554328":[255]},{"1554330":[185]},{"1554332":[181]},{"1554334":[170]},{"1554336":[194]},{"1554338":[174]},{"1554340":[187]},{"1554342":[255]},{"1554344":[164]},{"1554346":[160]},{"1554348":[167]},{"1554350":[255]},{"1554352":[255,127,117]},{"1554356":[255]},{"1554358":[255]},{"1554360":[185]},{"1554362":[181]},{"1554364":[170]},{"1554366":[194]},{"1554368":[174]},{"1554370":[187]},{"1554372":[255]},{"1554374":[164]},{"1554376":[160]},{"1554378":[168]},{"1554380":[255]},{"1554382":[255,127,117]},{"1554386":[255]},{"1554388":[255]},{"1554390":[185]},{"1554392":[181]},{"1554394":[170]},{"1554396":[194]},{"1554398":[174]},{"1554400":[187]},{"1554402":[255]},{"1554404":[164]},{"1554406":[160]},{"1554408":[169]},{"1554410":[255]},{"1554412":[255,127,117]},{"1554416":[255]},{"1554418":[255]},{"1554420":[185]},{"1554422":[181]},{"1554424":[170]},{"1554426":[194]},{"1554428":[174]},{"1554430":[187]},{"1554432":[255]},{"1554434":[164]},{"1554436":[161]},{"1554438":[160]},{"1554440":[255]},{"1554442":[255,127,117]},{"1554446":[255]},{"1554448":[255]},{"1554450":[185]},{"1554452":[181]},{"1554454":[170]},{"1554456":[194]},{"1554458":[174]},{"1554460":[187]},{"1554462":[255]},{"1554464":[164]},{"1554466":[161]},{"1554468":[161]},{"1554470":[255]},{"1554472":[255,127,117]},{"1554476":[255]},{"1554478":[255]},{"1554480":[185]},{"1554482":[181]},{"1554484":[170]},{"1554486":[194]},{"1554488":[174]},{"1554490":[187]},{"1554492":[255]},{"1554494":[164]},{"1554496":[161]},{"1554498":[162]},{"1554500":[255]},{"1554502":[255,127,117]},{"1554506":[255]},{"1554508":[255]},{"1554510":[185]},{"1554512":[181]},{"1554514":[170]},{"1554516":[194]},{"1554518":[174]},{"1554520":[187]},{"1554522":[255]},{"1554524":[164]},{"1554526":[161]},{"1554528":[163]},{"1554530":[255]},{"1554532":[255,127,117]},{"1554536":[255]},{"1554538":[255]},{"1554540":[185]},{"1554542":[181]},{"1554544":[170]},{"1554546":[194]},{"1554548":[174]},{"1554550":[187]},{"1554552":[255]},{"1554554":[164]},{"1554556":[161]},{"1554558":[164]},{"1554560":[255]},{"1554562":[255,127,117]},{"1554566":[255]},{"1554568":[255]},{"1554570":[185]},{"1554572":[181]},{"1554574":[170]},{"1554576":[194]},{"1554578":[174]},{"1554580":[187]},{"1554582":[255]},{"1554584":[164]},{"1554586":[161]},{"1554588":[165]},{"1554590":[255]},{"1554592":[255,127,117]},{"1554596":[255]},{"1554598":[255]},{"1554600":[185]},{"1554602":[181]},{"1554604":[170]},{"1554606":[194]},{"1554608":[174]},{"1554610":[187]},{"1554612":[255]},{"1554614":[164]},{"1554616":[161]},{"1554618":[166]},{"1554620":[255]},{"1554622":[255,127,117]},{"1554626":[255]},{"1554628":[255]},{"1554630":[185]},{"1554632":[181]},{"1554634":[170]},{"1554636":[194]},{"1554638":[174]},{"1554640":[187]},{"1554642":[255]},{"1554644":[164]},{"1554646":[161]},{"1554648":[167]},{"1554650":[255]},{"1554652":[255,127,117]},{"1554656":[255]},{"1554658":[255]},{"1554660":[185]},{"1554662":[181]},{"1554664":[170]},{"1554666":[194]},{"1554668":[174]},{"1554670":[187]},{"1554672":[255]},{"1554674":[164]},{"1554676":[161]},{"1554678":[168]},{"1554680":[255]},{"1554682":[255,127,117]},{"1554686":[255]},{"1554688":[255]},{"1554690":[185]},{"1554692":[181]},{"1554694":[170]},{"1554696":[194]},{"1554698":[174]},{"1554700":[187]},{"1554702":[255]},{"1554704":[164]},{"1554706":[161]},{"1554708":[169]},{"1554710":[255]},{"1554712":[255,127,117]},{"1554716":[255]},{"1554718":[255]},{"1554720":[185]},{"1554722":[181]},{"1554724":[170]},{"1554726":[194]},{"1554728":[174]},{"1554730":[187]},{"1554732":[255]},{"1554734":[164]},{"1554736":[162]},{"1554738":[160]},{"1554740":[255]},{"1554742":[255,127,117]},{"1554746":[255]},{"1554748":[255]},{"1554750":[185]},{"1554752":[181]},{"1554754":[170]},{"1554756":[194]},{"1554758":[174]},{"1554760":[187]},{"1554762":[255]},{"1554764":[164]},{"1554766":[162]},{"1554768":[161]},{"1554770":[255]},{"1554772":[255,127,117]},{"1554776":[255]},{"1554778":[255]},{"1554780":[185]},{"1554782":[181]},{"1554784":[170]},{"1554786":[194]},{"1554788":[174]},{"1554790":[187]},{"1554792":[255]},{"1554794":[164]},{"1554796":[162]},{"1554798":[162]},{"1554800":[255]},{"1554802":[255,127,117]},{"1554806":[255]},{"1554808":[255]},{"1554810":[185]},{"1554812":[181]},{"1554814":[170]},{"1554816":[194]},{"1554818":[174]},{"1554820":[187]},{"1554822":[255]},{"1554824":[164]},{"1554826":[162]},{"1554828":[163]},{"1554830":[255]},{"1554832":[255,127,117]},{"1554836":[255]},{"1554838":[255]},{"1554840":[185]},{"1554842":[181]},{"1554844":[170]},{"1554846":[194]},{"1554848":[174]},{"1554850":[187]},{"1554852":[255]},{"1554854":[164]},{"1554856":[162]},{"1554858":[164]},{"1554860":[255]},{"1554862":[255,127,117]},{"1554866":[255]},{"1554868":[255]},{"1554870":[185]},{"1554872":[181]},{"1554874":[170]},{"1554876":[194]},{"1554878":[174]},{"1554880":[187]},{"1554882":[255]},{"1554884":[164]},{"1554886":[162]},{"1554888":[165]},{"1554890":[255]},{"1554892":[255,127,117]},{"1554896":[255]},{"1554898":[255]},{"1554900":[185]},{"1554902":[181]},{"1554904":[170]},{"1554906":[194]},{"1554908":[174]},{"1554910":[187]},{"1554912":[255]},{"1554914":[164]},{"1554916":[162]},{"1554918":[166]},{"1554920":[255]},{"1554922":[255,127,117]},{"1554926":[255]},{"1554928":[255]},{"1554930":[185]},{"1554932":[181]},{"1554934":[170]},{"1554936":[194]},{"1554938":[174]},{"1554940":[187]},{"1554942":[255]},{"1554944":[164]},{"1554946":[162]},{"1554948":[167]},{"1554950":[255]},{"1554952":[255,127,117]},{"1554956":[255]},{"1554958":[255]},{"1554960":[185]},{"1554962":[181]},{"1554964":[170]},{"1554966":[194]},{"1554968":[174]},{"1554970":[187]},{"1554972":[255]},{"1554974":[164]},{"1554976":[162]},{"1554978":[168]},{"1554980":[255]},{"1554982":[255,127,117]},{"1554986":[255]},{"1554988":[255]},{"1554990":[185]},{"1554992":[181]},{"1554994":[170]},{"1554996":[194]},{"1554998":[174]},{"1555000":[187]},{"1555002":[255]},{"1555004":[164]},{"1555006":[162]},{"1555008":[169]},{"1555010":[255]},{"1555012":[255,127,117]},{"1555016":[255]},{"1555018":[255]},{"1555020":[185]},{"1555022":[181]},{"1555024":[170]},{"1555026":[194]},{"1555028":[174]},{"1555030":[187]},{"1555032":[255]},{"1555034":[164]},{"1555036":[163]},{"1555038":[160]},{"1555040":[255]},{"1555042":[255,127,117]},{"1555046":[255]},{"1555048":[255]},{"1555050":[185]},{"1555052":[181]},{"1555054":[170]},{"1555056":[194]},{"1555058":[174]},{"1555060":[187]},{"1555062":[255]},{"1555064":[164]},{"1555066":[163]},{"1555068":[161]},{"1555070":[255]},{"1555072":[255,127,117]},{"1555076":[255]},{"1555078":[255]},{"1555080":[185]},{"1555082":[181]},{"1555084":[170]},{"1555086":[194]},{"1555088":[174]},{"1555090":[187]},{"1555092":[255]},{"1555094":[164]},{"1555096":[163]},{"1555098":[162]},{"1555100":[255]},{"1555102":[255,127,117]},{"1555106":[255]},{"1555108":[255]},{"1555110":[185]},{"1555112":[181]},{"1555114":[170]},{"1555116":[194]},{"1555118":[174]},{"1555120":[187]},{"1555122":[255]},{"1555124":[164]},{"1555126":[163]},{"1555128":[163]},{"1555130":[255]},{"1555132":[255,127,117]},{"1555136":[255]},{"1555138":[255]},{"1555140":[185]},{"1555142":[181]},{"1555144":[170]},{"1555146":[194]},{"1555148":[174]},{"1555150":[187]},{"1555152":[255]},{"1555154":[164]},{"1555156":[163]},{"1555158":[164]},{"1555160":[255]},{"1555162":[255,127,117]},{"1555166":[255]},{"1555168":[255]},{"1555170":[185]},{"1555172":[181]},{"1555174":[170]},{"1555176":[194]},{"1555178":[174]},{"1555180":[187]},{"1555182":[255]},{"1555184":[164]},{"1555186":[163]},{"1555188":[165]},{"1555190":[255]},{"1555192":[255,127,117]},{"1555196":[255]},{"1555198":[255]},{"1555200":[185]},{"1555202":[181]},{"1555204":[170]},{"1555206":[194]},{"1555208":[174]},{"1555210":[187]},{"1555212":[255]},{"1555214":[164]},{"1555216":[163]},{"1555218":[166]},{"1555220":[255]},{"1555222":[255,127,117]},{"1555226":[255]},{"1555228":[255]},{"1555230":[185]},{"1555232":[181]},{"1555234":[170]},{"1555236":[194]},{"1555238":[174]},{"1555240":[187]},{"1555242":[255]},{"1555244":[164]},{"1555246":[163]},{"1555248":[167]},{"1555250":[255]},{"1555252":[255,127,117]},{"1555256":[255]},{"1555258":[255]},{"1555260":[185]},{"1555262":[181]},{"1555264":[170]},{"1555266":[194]},{"1555268":[174]},{"1555270":[187]},{"1555272":[255]},{"1555274":[164]},{"1555276":[163]},{"1555278":[168]},{"1555280":[255]},{"1555282":[255,127,117]},{"1555286":[255]},{"1555288":[255]},{"1555290":[185]},{"1555292":[181]},{"1555294":[170]},{"1555296":[194]},{"1555298":[174]},{"1555300":[187]},{"1555302":[255]},{"1555304":[164]},{"1555306":[163]},{"1555308":[169]},{"1555310":[255]},{"1555312":[255,127,117]},{"1555316":[255]},{"1555318":[255]},{"1555320":[185]},{"1555322":[181]},{"1555324":[170]},{"1555326":[194]},{"1555328":[174]},{"1555330":[187]},{"1555332":[255]},{"1555334":[164]},{"1555336":[164]},{"1555338":[160]},{"1555340":[255]},{"1555342":[255,127,117]},{"1555346":[255]},{"1555348":[255]},{"1555350":[185]},{"1555352":[181]},{"1555354":[170]},{"1555356":[194]},{"1555358":[174]},{"1555360":[187]},{"1555362":[255]},{"1555364":[164]},{"1555366":[164]},{"1555368":[161]},{"1555370":[255]},{"1555372":[255,127,117]},{"1555376":[255]},{"1555378":[255]},{"1555380":[185]},{"1555382":[181]},{"1555384":[170]},{"1555386":[194]},{"1555388":[174]},{"1555390":[187]},{"1555392":[255]},{"1555394":[164]},{"1555396":[164]},{"1555398":[162]},{"1555400":[255]},{"1555402":[255,127,117]},{"1555406":[255]},{"1555408":[255]},{"1555410":[185]},{"1555412":[181]},{"1555414":[170]},{"1555416":[194]},{"1555418":[174]},{"1555420":[187]},{"1555422":[255]},{"1555424":[164]},{"1555426":[164]},{"1555428":[163]},{"1555430":[255]},{"1555432":[255,127,117]},{"1555436":[255]},{"1555438":[255]},{"1555440":[185]},{"1555442":[181]},{"1555444":[170]},{"1555446":[194]},{"1555448":[174]},{"1555450":[187]},{"1555452":[255]},{"1555454":[164]},{"1555456":[164]},{"1555458":[164]},{"1555460":[255]},{"1555462":[255,127,117]},{"1555466":[255]},{"1555468":[255]},{"1555470":[185]},{"1555472":[181]},{"1555474":[170]},{"1555476":[194]},{"1555478":[174]},{"1555480":[187]},{"1555482":[255]},{"1555484":[164]},{"1555486":[164]},{"1555488":[165]},{"1555490":[255]},{"1555492":[255,127,117]},{"1555496":[255]},{"1555498":[255]},{"1555500":[185]},{"1555502":[181]},{"1555504":[170]},{"1555506":[194]},{"1555508":[174]},{"1555510":[187]},{"1555512":[255]},{"1555514":[164]},{"1555516":[164]},{"1555518":[166]},{"1555520":[255]},{"1555522":[255,127,117]},{"1555526":[255]},{"1555528":[255]},{"1555530":[185]},{"1555532":[181]},{"1555534":[170]},{"1555536":[194]},{"1555538":[174]},{"1555540":[187]},{"1555542":[255]},{"1555544":[164]},{"1555546":[164]},{"1555548":[167]},{"1555550":[255]},{"1555552":[255,127,117]},{"1555556":[255]},{"1555558":[255]},{"1555560":[185]},{"1555562":[181]},{"1555564":[170]},{"1555566":[194]},{"1555568":[174]},{"1555570":[187]},{"1555572":[255]},{"1555574":[164]},{"1555576":[164]},{"1555578":[168]},{"1555580":[255]},{"1555582":[255,127,117]},{"1555586":[255]},{"1555588":[255]},{"1555590":[185]},{"1555592":[181]},{"1555594":[170]},{"1555596":[194]},{"1555598":[174]},{"1555600":[187]},{"1555602":[255]},{"1555604":[164]},{"1555606":[164]},{"1555608":[169]},{"1555610":[255]},{"1555612":[255,127,117]},{"1555616":[255]},{"1555618":[255]},{"1555620":[185]},{"1555622":[181]},{"1555624":[170]},{"1555626":[194]},{"1555628":[174]},{"1555630":[187]},{"1555632":[255]},{"1555634":[164]},{"1555636":[165]},{"1555638":[160]},{"1555640":[255]},{"1555642":[255,127,117]},{"1555646":[255]},{"1555648":[255]},{"1555650":[185]},{"1555652":[181]},{"1555654":[170]},{"1555656":[194]},{"1555658":[174]},{"1555660":[187]},{"1555662":[255]},{"1555664":[164]},{"1555666":[165]},{"1555668":[161]},{"1555670":[255]},{"1555672":[255,127,117]},{"1555676":[255]},{"1555678":[255]},{"1555680":[185]},{"1555682":[181]},{"1555684":[170]},{"1555686":[194]},{"1555688":[174]},{"1555690":[187]},{"1555692":[255]},{"1555694":[164]},{"1555696":[165]},{"1555698":[162]},{"1555700":[255]},{"1555702":[255,127,117]},{"1555706":[255]},{"1555708":[255]},{"1555710":[185]},{"1555712":[181]},{"1555714":[170]},{"1555716":[194]},{"1555718":[174]},{"1555720":[187]},{"1555722":[255]},{"1555724":[164]},{"1555726":[165]},{"1555728":[163]},{"1555730":[255]},{"1555732":[255,127,117]},{"1555736":[255]},{"1555738":[255]},{"1555740":[185]},{"1555742":[181]},{"1555744":[170]},{"1555746":[194]},{"1555748":[174]},{"1555750":[187]},{"1555752":[255]},{"1555754":[164]},{"1555756":[165]},{"1555758":[164]},{"1555760":[255]},{"1555762":[255,127,117]},{"1555766":[255]},{"1555768":[255]},{"1555770":[185]},{"1555772":[181]},{"1555774":[170]},{"1555776":[194]},{"1555778":[174]},{"1555780":[187]},{"1555782":[255]},{"1555784":[164]},{"1555786":[165]},{"1555788":[165]},{"1555790":[255]},{"1555792":[255,127,117]},{"1555796":[255]},{"1555798":[255]},{"1555800":[185]},{"1555802":[181]},{"1555804":[170]},{"1555806":[194]},{"1555808":[174]},{"1555810":[187]},{"1555812":[255]},{"1555814":[164]},{"1555816":[165]},{"1555818":[166]},{"1555820":[255]},{"1555822":[255,127,117]},{"1555826":[255]},{"1555828":[255]},{"1555830":[185]},{"1555832":[181]},{"1555834":[170]},{"1555836":[194]},{"1555838":[174]},{"1555840":[187]},{"1555842":[255]},{"1555844":[164]},{"1555846":[165]},{"1555848":[167]},{"1555850":[255]},{"1555852":[255,127,117]},{"1555856":[255]},{"1555858":[255]},{"1555860":[185]},{"1555862":[181]},{"1555864":[170]},{"1555866":[194]},{"1555868":[174]},{"1555870":[187]},{"1555872":[255]},{"1555874":[164]},{"1555876":[165]},{"1555878":[168]},{"1555880":[255]},{"1555882":[255,127,117]},{"1555886":[255]},{"1555888":[255]},{"1555890":[185]},{"1555892":[181]},{"1555894":[170]},{"1555896":[194]},{"1555898":[174]},{"1555900":[187]},{"1555902":[255]},{"1555904":[164]},{"1555906":[165]},{"1555908":[169]},{"1555910":[255]},{"1555912":[255,127,117]},{"1555916":[255]},{"1555918":[255]},{"1555920":[185]},{"1555922":[181]},{"1555924":[170]},{"1555926":[194]},{"1555928":[174]},{"1555930":[187]},{"1555932":[255]},{"1555934":[164]},{"1555936":[166]},{"1555938":[160]},{"1555940":[255]},{"1555942":[255,127,117]},{"1555946":[255]},{"1555948":[255]},{"1555950":[185]},{"1555952":[181]},{"1555954":[170]},{"1555956":[194]},{"1555958":[174]},{"1555960":[187]},{"1555962":[255]},{"1555964":[164]},{"1555966":[166]},{"1555968":[161]},{"1555970":[255]},{"1555972":[255,127,117]},{"1555976":[255]},{"1555978":[255]},{"1555980":[185]},{"1555982":[181]},{"1555984":[170]},{"1555986":[194]},{"1555988":[174]},{"1555990":[187]},{"1555992":[255]},{"1555994":[164]},{"1555996":[166]},{"1555998":[162]},{"1556000":[255]},{"1556002":[255,127,117]},{"1556006":[255]},{"1556008":[255]},{"1556010":[185]},{"1556012":[181]},{"1556014":[170]},{"1556016":[194]},{"1556018":[174]},{"1556020":[187]},{"1556022":[255]},{"1556024":[164]},{"1556026":[166]},{"1556028":[163]},{"1556030":[255]},{"1556032":[255,127,117]},{"1556036":[255]},{"1556038":[255]},{"1556040":[185]},{"1556042":[181]},{"1556044":[170]},{"1556046":[194]},{"1556048":[174]},{"1556050":[187]},{"1556052":[255]},{"1556054":[164]},{"1556056":[166]},{"1556058":[164]},{"1556060":[255]},{"1556062":[255,127,117]},{"1556066":[255]},{"1556068":[255]},{"1556070":[185]},{"1556072":[181]},{"1556074":[170]},{"1556076":[194]},{"1556078":[174]},{"1556080":[187]},{"1556082":[255]},{"1556084":[164]},{"1556086":[166]},{"1556088":[165]},{"1556090":[255]},{"1556092":[255,127,117]},{"1556096":[255]},{"1556098":[255]},{"1556100":[185]},{"1556102":[181]},{"1556104":[170]},{"1556106":[194]},{"1556108":[174]},{"1556110":[187]},{"1556112":[255]},{"1556114":[164]},{"1556116":[166]},{"1556118":[166]},{"1556120":[255]},{"1556122":[255,127,117]},{"1556126":[255]},{"1556128":[255]},{"1556130":[185]},{"1556132":[181]},{"1556134":[170]},{"1556136":[194]},{"1556138":[174]},{"1556140":[187]},{"1556142":[255]},{"1556144":[164]},{"1556146":[166]},{"1556148":[167]},{"1556150":[255]},{"1556152":[255,127,117]},{"1556156":[255]},{"1556158":[255]},{"1556160":[185]},{"1556162":[181]},{"1556164":[170]},{"1556166":[194]},{"1556168":[174]},{"1556170":[187]},{"1556172":[255]},{"1556174":[164]},{"1556176":[166]},{"1556178":[168]},{"1556180":[255]},{"1556182":[255,127,117]},{"1556186":[255]},{"1556188":[255]},{"1556190":[185]},{"1556192":[181]},{"1556194":[170]},{"1556196":[194]},{"1556198":[174]},{"1556200":[187]},{"1556202":[255]},{"1556204":[164]},{"1556206":[166]},{"1556208":[169]},{"1556210":[255]},{"1556212":[255,127,117]},{"1556216":[255]},{"1556218":[255]},{"1556220":[185]},{"1556222":[181]},{"1556224":[170]},{"1556226":[194]},{"1556228":[174]},{"1556230":[187]},{"1556232":[255]},{"1556234":[164]},{"1556236":[167]},{"1556238":[160]},{"1556240":[255]},{"1556242":[255,127,117]},{"1556246":[255]},{"1556248":[255]},{"1556250":[185]},{"1556252":[181]},{"1556254":[170]},{"1556256":[194]},{"1556258":[174]},{"1556260":[187]},{"1556262":[255]},{"1556264":[164]},{"1556266":[167]},{"1556268":[161]},{"1556270":[255]},{"1556272":[255,127,117]},{"1556276":[255]},{"1556278":[255]},{"1556280":[185]},{"1556282":[181]},{"1556284":[170]},{"1556286":[194]},{"1556288":[174]},{"1556290":[187]},{"1556292":[255]},{"1556294":[164]},{"1556296":[167]},{"1556298":[162]},{"1556300":[255]},{"1556302":[255,127,117]},{"1556306":[255]},{"1556308":[255]},{"1556310":[185]},{"1556312":[181]},{"1556314":[170]},{"1556316":[194]},{"1556318":[174]},{"1556320":[187]},{"1556322":[255]},{"1556324":[164]},{"1556326":[167]},{"1556328":[163]},{"1556330":[255]},{"1556332":[255,127,117]},{"1556336":[255]},{"1556338":[255]},{"1556340":[185]},{"1556342":[181]},{"1556344":[170]},{"1556346":[194]},{"1556348":[174]},{"1556350":[187]},{"1556352":[255]},{"1556354":[164]},{"1556356":[167]},{"1556358":[164]},{"1556360":[255]},{"1556362":[255,127,117]},{"1556366":[255]},{"1556368":[255]},{"1556370":[185]},{"1556372":[181]},{"1556374":[170]},{"1556376":[194]},{"1556378":[174]},{"1556380":[187]},{"1556382":[255]},{"1556384":[164]},{"1556386":[167]},{"1556388":[165]},{"1556390":[255]},{"1556392":[255,127,117]},{"1556396":[255]},{"1556398":[255]},{"1556400":[185]},{"1556402":[181]},{"1556404":[170]},{"1556406":[194]},{"1556408":[174]},{"1556410":[187]},{"1556412":[255]},{"1556414":[164]},{"1556416":[167]},{"1556418":[166]},{"1556420":[255]},{"1556422":[255,127,117]},{"1556426":[255]},{"1556428":[255]},{"1556430":[185]},{"1556432":[181]},{"1556434":[170]},{"1556436":[194]},{"1556438":[174]},{"1556440":[187]},{"1556442":[255]},{"1556444":[164]},{"1556446":[167]},{"1556448":[167]},{"1556450":[255]},{"1556452":[255,127,117]},{"1556456":[255]},{"1556458":[255]},{"1556460":[185]},{"1556462":[181]},{"1556464":[170]},{"1556466":[194]},{"1556468":[174]},{"1556470":[187]},{"1556472":[255]},{"1556474":[164]},{"1556476":[167]},{"1556478":[168]},{"1556480":[255]},{"1556482":[255,127,117]},{"1556486":[255]},{"1556488":[255]},{"1556490":[185]},{"1556492":[181]},{"1556494":[170]},{"1556496":[194]},{"1556498":[174]},{"1556500":[187]},{"1556502":[255]},{"1556504":[164]},{"1556506":[167]},{"1556508":[169]},{"1556510":[255]},{"1556512":[255,127,117]},{"1556516":[255]},{"1556518":[255]},{"1556520":[185]},{"1556522":[181]},{"1556524":[170]},{"1556526":[194]},{"1556528":[174]},{"1556530":[187]},{"1556532":[255]},{"1556534":[164]},{"1556536":[168]},{"1556538":[160]},{"1556540":[255]},{"1556542":[255,127,117]},{"1556546":[255]},{"1556548":[255]},{"1556550":[185]},{"1556552":[181]},{"1556554":[170]},{"1556556":[194]},{"1556558":[174]},{"1556560":[187]},{"1556562":[255]},{"1556564":[164]},{"1556566":[168]},{"1556568":[161]},{"1556570":[255]},{"1556572":[255,127,117]},{"1556576":[255]},{"1556578":[255]},{"1556580":[185]},{"1556582":[181]},{"1556584":[170]},{"1556586":[194]},{"1556588":[174]},{"1556590":[187]},{"1556592":[255]},{"1556594":[164]},{"1556596":[168]},{"1556598":[162]},{"1556600":[255]},{"1556602":[255,127,117]},{"1556606":[255]},{"1556608":[255]},{"1556610":[185]},{"1556612":[181]},{"1556614":[170]},{"1556616":[194]},{"1556618":[174]},{"1556620":[187]},{"1556622":[255]},{"1556624":[164]},{"1556626":[168]},{"1556628":[163]},{"1556630":[255]},{"1556632":[255,127,117]},{"1556636":[255]},{"1556638":[255]},{"1556640":[185]},{"1556642":[181]},{"1556644":[170]},{"1556646":[194]},{"1556648":[174]},{"1556650":[187]},{"1556652":[255]},{"1556654":[164]},{"1556656":[168]},{"1556658":[164]},{"1556660":[255]},{"1556662":[255,127,117]},{"1556666":[255]},{"1556668":[255]},{"1556670":[185]},{"1556672":[181]},{"1556674":[170]},{"1556676":[194]},{"1556678":[174]},{"1556680":[187]},{"1556682":[255]},{"1556684":[164]},{"1556686":[168]},{"1556688":[165]},{"1556690":[255]},{"1556692":[255,127,117]},{"1556696":[255]},{"1556698":[255]},{"1556700":[185]},{"1556702":[181]},{"1556704":[170]},{"1556706":[194]},{"1556708":[174]},{"1556710":[187]},{"1556712":[255]},{"1556714":[164]},{"1556716":[168]},{"1556718":[166]},{"1556720":[255]},{"1556722":[255,127,117]},{"1556726":[255]},{"1556728":[255]},{"1556730":[185]},{"1556732":[181]},{"1556734":[170]},{"1556736":[194]},{"1556738":[174]},{"1556740":[187]},{"1556742":[255]},{"1556744":[164]},{"1556746":[168]},{"1556748":[167]},{"1556750":[255]},{"1556752":[255,127,117]},{"1556756":[255]},{"1556758":[255]},{"1556760":[185]},{"1556762":[181]},{"1556764":[170]},{"1556766":[194]},{"1556768":[174]},{"1556770":[187]},{"1556772":[255]},{"1556774":[164]},{"1556776":[168]},{"1556778":[168]},{"1556780":[255]},{"1556782":[255,127,117]},{"1556786":[255]},{"1556788":[255]},{"1556790":[185]},{"1556792":[181]},{"1556794":[170]},{"1556796":[194]},{"1556798":[174]},{"1556800":[187]},{"1556802":[255]},{"1556804":[164]},{"1556806":[168]},{"1556808":[169]},{"1556810":[255]},{"1556812":[255,127,117]},{"1556816":[255]},{"1556818":[255]},{"1556820":[185]},{"1556822":[181]},{"1556824":[170]},{"1556826":[194]},{"1556828":[174]},{"1556830":[187]},{"1556832":[255]},{"1556834":[164]},{"1556836":[169]},{"1556838":[160]},{"1556840":[255]},{"1556842":[255,127,117]},{"1556846":[255]},{"1556848":[255]},{"1556850":[185]},{"1556852":[181]},{"1556854":[170]},{"1556856":[194]},{"1556858":[174]},{"1556860":[187]},{"1556862":[255]},{"1556864":[164]},{"1556866":[169]},{"1556868":[161]},{"1556870":[255]},{"1556872":[255,127,117]},{"1556876":[255]},{"1556878":[255]},{"1556880":[185]},{"1556882":[181]},{"1556884":[170]},{"1556886":[194]},{"1556888":[174]},{"1556890":[187]},{"1556892":[255]},{"1556894":[164]},{"1556896":[169]},{"1556898":[162]},{"1556900":[255]},{"1556902":[255,127,117]},{"1556906":[255]},{"1556908":[255]},{"1556910":[185]},{"1556912":[181]},{"1556914":[170]},{"1556916":[194]},{"1556918":[174]},{"1556920":[187]},{"1556922":[255]},{"1556924":[164]},{"1556926":[169]},{"1556928":[163]},{"1556930":[255]},{"1556932":[255,127,117]},{"1556936":[255]},{"1556938":[255]},{"1556940":[185]},{"1556942":[181]},{"1556944":[170]},{"1556946":[194]},{"1556948":[174]},{"1556950":[187]},{"1556952":[255]},{"1556954":[164]},{"1556956":[169]},{"1556958":[164]},{"1556960":[255]},{"1556962":[255,127,117]},{"1556966":[255]},{"1556968":[255]},{"1556970":[185]},{"1556972":[181]},{"1556974":[170]},{"1556976":[194]},{"1556978":[174]},{"1556980":[187]},{"1556982":[255]},{"1556984":[164]},{"1556986":[169]},{"1556988":[165]},{"1556990":[255]},{"1556992":[255,127,117]},{"1556996":[255]},{"1556998":[255]},{"1557000":[185]},{"1557002":[181]},{"1557004":[170]},{"1557006":[194]},{"1557008":[174]},{"1557010":[187]},{"1557012":[255]},{"1557014":[164]},{"1557016":[169]},{"1557018":[166]},{"1557020":[255]},{"1557022":[255,127,117]},{"1557026":[255]},{"1557028":[255]},{"1557030":[185]},{"1557032":[181]},{"1557034":[170]},{"1557036":[194]},{"1557038":[174]},{"1557040":[187]},{"1557042":[255]},{"1557044":[164]},{"1557046":[169]},{"1557048":[167]},{"1557050":[255]},{"1557052":[255,127,117]},{"1557056":[255]},{"1557058":[255]},{"1557060":[185]},{"1557062":[181]},{"1557064":[170]},{"1557066":[194]},{"1557068":[174]},{"1557070":[187]},{"1557072":[255]},{"1557074":[164]},{"1557076":[169]},{"1557078":[168]},{"1557080":[255]},{"1557082":[255,127,117]},{"1557086":[255]},{"1557088":[255]},{"1557090":[185]},{"1557092":[181]},{"1557094":[170]},{"1557096":[194]},{"1557098":[174]},{"1557100":[187]},{"1557102":[255]},{"1557104":[164]},{"1557106":[169]},{"1557108":[169]},{"1557110":[255]},{"1557112":[255,127,117]},{"1557116":[255]},{"1557118":[255]},{"1557120":[185]},{"1557122":[181]},{"1557124":[170]},{"1557126":[194]},{"1557128":[174]},{"1557130":[187]},{"1557132":[255]},{"1557134":[165]},{"1557136":[160]},{"1557138":[160]},{"1557140":[255]},{"1557142":[255,127,117]},{"1557146":[255]},{"1557148":[255]},{"1557150":[185]},{"1557152":[181]},{"1557154":[170]},{"1557156":[194]},{"1557158":[174]},{"1557160":[187]},{"1557162":[255]},{"1557164":[165]},{"1557166":[160]},{"1557168":[161]},{"1557170":[255]},{"1557172":[255,127,117]},{"1557176":[255]},{"1557178":[255]},{"1557180":[185]},{"1557182":[181]},{"1557184":[170]},{"1557186":[194]},{"1557188":[174]},{"1557190":[187]},{"1557192":[255]},{"1557194":[165]},{"1557196":[160]},{"1557198":[162]},{"1557200":[255]},{"1557202":[255,127,117]},{"1557206":[255]},{"1557208":[255]},{"1557210":[185]},{"1557212":[181]},{"1557214":[170]},{"1557216":[194]},{"1557218":[174]},{"1557220":[187]},{"1557222":[255]},{"1557224":[165]},{"1557226":[160]},{"1557228":[163]},{"1557230":[255]},{"1557232":[255,127,117]},{"1557236":[255]},{"1557238":[255]},{"1557240":[185]},{"1557242":[181]},{"1557244":[170]},{"1557246":[194]},{"1557248":[174]},{"1557250":[187]},{"1557252":[255]},{"1557254":[165]},{"1557256":[160]},{"1557258":[164]},{"1557260":[255]},{"1557262":[255,127,117]},{"1557266":[255]},{"1557268":[255]},{"1557270":[185]},{"1557272":[181]},{"1557274":[170]},{"1557276":[194]},{"1557278":[174]},{"1557280":[187]},{"1557282":[255]},{"1557284":[165]},{"1557286":[160]},{"1557288":[165]},{"1557290":[255]},{"1557292":[255,127,117]},{"1557296":[255]},{"1557298":[255]},{"1557300":[185]},{"1557302":[181]},{"1557304":[170]},{"1557306":[194]},{"1557308":[174]},{"1557310":[187]},{"1557312":[255]},{"1557314":[165]},{"1557316":[160]},{"1557318":[166]},{"1557320":[255]},{"1557322":[255,127,117]},{"1557326":[255]},{"1557328":[255]},{"1557330":[185]},{"1557332":[181]},{"1557334":[170]},{"1557336":[194]},{"1557338":[174]},{"1557340":[187]},{"1557342":[255]},{"1557344":[165]},{"1557346":[160]},{"1557348":[167]},{"1557350":[255]},{"1557352":[255,127,117]},{"1557356":[255]},{"1557358":[255]},{"1557360":[185]},{"1557362":[181]},{"1557364":[170]},{"1557366":[194]},{"1557368":[174]},{"1557370":[187]},{"1557372":[255]},{"1557374":[165]},{"1557376":[160]},{"1557378":[168]},{"1557380":[255]},{"1557382":[255,127,117]},{"1557386":[255]},{"1557388":[255]},{"1557390":[185]},{"1557392":[181]},{"1557394":[170]},{"1557396":[194]},{"1557398":[174]},{"1557400":[187]},{"1557402":[255]},{"1557404":[165]},{"1557406":[160]},{"1557408":[169]},{"1557410":[255]},{"1557412":[255,127,117]},{"1557416":[255]},{"1557418":[255]},{"1557420":[185]},{"1557422":[181]},{"1557424":[170]},{"1557426":[194]},{"1557428":[174]},{"1557430":[187]},{"1557432":[255]},{"1557434":[165]},{"1557436":[161]},{"1557438":[160]},{"1557440":[255]},{"1557442":[255,127,117]},{"1557446":[255]},{"1557448":[255]},{"1557450":[185]},{"1557452":[181]},{"1557454":[170]},{"1557456":[194]},{"1557458":[174]},{"1557460":[187]},{"1557462":[255]},{"1557464":[165]},{"1557466":[161]},{"1557468":[161]},{"1557470":[255]},{"1557472":[255,127,117]},{"1557476":[255]},{"1557478":[255]},{"1557480":[185]},{"1557482":[181]},{"1557484":[170]},{"1557486":[194]},{"1557488":[174]},{"1557490":[187]},{"1557492":[255]},{"1557494":[165]},{"1557496":[161]},{"1557498":[162]},{"1557500":[255]},{"1557502":[255,127]},{"1572864":[23,23,23,23,23,23,23]},{"1572880":[70,70,29,41,13,78,16,15]},{"1572896":[15]},{"1572898":[1,2,160]},{"1572902":[160]},{"1572904":[3,1,2]},{"1572914":[1,32,10,30,10]},{"1572920":[1,1]},{"1572936":[8]},{"1572943":[1]},{"1572949":[64,64,64,64,64]},{"1572955":[64,64]},{"1572958":[7,7,34]},{"1572964":[107,34]},{"1572969":[107,34]},{"1572974":[107]},{"1572977":[121]},{"1572979":[110]},{"1572981":[111]},{"1572983":[109,105,124,105,108,105,127]},{"1572996":[160,128]},{"1573008":[4,71,3,71,2,71,4,71,2,71]},{"1573024":[1,1,1,1,1]},{"1573056":[49,65,89,38,83,88,151,147]},{"1573120":[178,216,216,216,216,216,216,216,216,217,217,217,217,217,218,218,218,218,218,219,219,219,219,219,220,220,220,220,220,221,221,221,221,221,222,222,222,222,222,223,223,223,223,223,224,224,224,224,224,225,225,225,225,225,226,226,226,226,226,227,227,227,227,227,23,23,23,23,23,23,23,23,23,23,20]},{"1573200":[62,62,62,62,62,62,62,62,62,62]},{"1573216":[36,36,36]},{"1573221":[14,40]},{"1573224":[8,2]},{"1573227":[4,2,1,4,8,16,1]},{"1573235":[1,1]},{"1573238":[10]},{"1573240":[50]},{"1573246":[1]},{"1573248":[3]},{"1573250":[1,44,1]},{"1573268":[1]},{"1573376":[80,70]},{"1573380":[176,185,255,255]},{"1573396":[1]},{"1573398":[1,2,3,4]},{"1573456":[18,1,83,30]},{"1573462":[4,226,6,70,4,88,7,109,4,95,7]},{"1573632":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1578240":[98,101]},{"1578243":[43,45,33,30,159,43,30,45,46,43,39,159,40,31,159,45,33,30,159,36,34,39,32,98,233]},{"1578269":[25,100,117,110,113,104,97,159,95,93,111,112,104,97,99,9]},{"1578286":[25,138,155,148,151,142,135,159,133,131,149,150,142,135,98,104]},{"1578303":[31,45,33,30,159,37,40,50,26,37,159,41,43,34,30,44,45,98,235]},{"1578323":[17,111,93,106,95,112,113,93,110,117,99,11]},{"1578336":[17,149,131,144,133,150,151,131,148,155,98,79]},{"1578349":[1,52,98,101]},{"1578354":[45,44,26,33,26,44,43,26,37,26,33,53,44,159,33,40,38,30,28,40,38,34,39,32,98,233]},{"1578381":[25,103,93,103,93,110,101,103,107,159,112,107,115,106,99,9]},{"1578398":[25,141,131,141,131,148,139,141,145,159,150,145,153,144,98,100]},{"1578415":[47,47,46,37,45,46,43,30,44,159,43,46,37,30,159,45,33,30,159,29,30,44,30,43,45,98,233]},{"1578443":[25,96,97,111,97,110,112,159,108,93,104,93,95,97,99,9]},{"1578460":[25,134,135,149,135,148,150,159,146,131,142,131,133,135,98,100]},{"1578477":[47,45,33,30,159,27,46,37,37,50,159,38,26,36,30,44,159,26,159,31,43,34,30,39,29,98,233]},{"1578505":[27,105,107,113,106,112,93,101,106,159,112,107,115,97,110,99,9]},{"1578523":[27,143,145,151,144,150,131,139,144,159,150,145,153,135,148,98,102]},{"1578541":[37,50,40,46,43,159,46,39,28,37,30,159,43,30,28,40,47,30,43,44,98,235]},{"1578564":[19,117,107,113,110,159,100,107,113,111,97,99,11]},{"1578578":[19,155,145,151,148,159,138,145,151,149,135,98,102]},{"1578592":[39,31,34,39,32,30,43,159,48,30,27,44,159,31,40,43,159,44,26,37,30,98,232]},{"1578616":[31,118,107,110,93,119,111,159,115,93,112,97,110,98,93,104,104,99,8]},{"1578636":[31,156,145,148,131,157,149,159,153,131,150,135,148,136,131,142,142,98,100]},{"1578656":[45,45,33,30,159,48,34,45,28,33,159,26,39,29,159,26,44,44,34,44,45,26,39,45,98,235]},{"1578683":[19,105,93,99,101,95,159,111,100,107,108,99,11]},{"1578697":[19,143,131,137,139,133,159,149,138,145,146,98,104]},{"1578711":[31,45,48,34,39,159,37,46,38,27,30,43,35,26,28,36,44,98,233]},{"1578731":[27,115,107,107,96,111,105,97,106,119,111,159,100,113,112,99,9]},{"1578749":[27,153,145,145,134,149,143,135,144,157,149,159,138,151,150,98,100]},{"1578767":[45,40,28,26,43,34,39,26,159,27,40,50,159,41,37,26,50,44,159,26,32,26,34,39,98,233]},{"1578794":[25,100,93,113,106,112,97,96,159,99,110,107,114,97,99,9]},{"1578811":[25,138,131,151,144,150,135,134,159,137,148,145,152,135,98,100]},{"1578828":[45,47,30,39,46,44,55,159,42,46,30,30,39,159,40,31,159,31,26,30,43,34,30,44,98,234]},{"1578855":[23,115,101,111,100,101,106,99,159,115,97,104,104,99,10]},{"1578871":[23,153,139,149,138,139,144,137,159,153,135,142,142,98,100]},{"1578887":[45,45,33,30,159,29,48,26,43,47,30,39,159,44,48,40,43,29,44,38,34,45,33,44,98,236]},{"1578914":[15,111,105,101,112,100,97,110,117,99,12]},{"1578926":[15,149,143,139,150,138,135,148,155,98,102]},{"1578938":[39,45,33,30,159,27,46,32,54,28,26,45,28,33,34,39,32,159,36,34,29,98,233]},{"1578962":[25,103,93,103,93,110,101,103,107,159,112,107,115,106,99,9]},{"1578979":[25,141,131,141,131,148,139,141,145,159,150,145,153,144,98,72]},{"1578996":[31,45,33,30,159,37,40,44,45,159,40,37,29,159,38,26,39,98,233]},{"1579016":[27,96,97,93,112,100,159,105,107,113,106,112,93,101,106,99,9]},{"1579034":[27,134,135,131,150,138,159,143,145,151,144,150,131,139,144,98,104]},{"1579052":[31,45,33,30,159,31,40,43,30,44,45,159,45,33,34,30,31,98,235]},{"1579072":[19,104,107,111,112,159,115,107,107,96,111,99,11]},{"1579086":[19,142,145,149,150,159,153,145,145,134,149,98,102]},{"1579100":[39,26,39,29,159,45,33,30,159,38,26,44,45,30,43,159,44,48,40,43,29,98,168]},{"1579124":[29,74,67,60,60,71,74,159,56,62,56,64,69,82,82,82,98,236]},{"1579143":[15,98,107,110,97,114,97,110,120,99,12]},{"1579155":[15,136,145,148,135,152,135,148,158]},{"1581056":[8,9,10,11,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,4,49,54,64,70,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,4,22,8]},{"1581336":[204,5,212,5,182,11,134,11]},{"1581434":[232,13,152,11,206,20]},{"1581442":[80,28,255,255,102,20]},{"1581450":[182,26,152,11,182,26,14,4,12,156,48,21,152,10]},{"1581476":[22,8,232,13]},{"1581488":[172,9]},{"1581510":[26,4]},{"1581514":[30,9,172,9]},{"1581544":[168,10,170,7]},{"1581572":[170,1,36,129,190,135,88,129]},{"1581640":[190,130]},{"1585196":[24,24]},{"1585199":[255]},{"1585209":[248]},{"1589248":[18,1,53,255,81,6,82,255,83,6,84,255,255,255,255,255]},{"1591296":[1,21,1,93]},{"1591301":[18,4]},{"1591304":[255,255,255,255,255,255,255,255]},{"1591552":[1,81,100]},{"1591556":[7,255]},{"1591560":[1,83,100]},{"1591564":[7,255]},{"1591568":[255,255,255,255,255,255,255,255]},{"1593600":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1595392":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,1,1,3,3,1,3,3,3,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3]},{"1595456":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,13,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,17,17,16,22,22,22,22,22,17,22,22,22,21,21,21,21,21,21,21,21,21,21,21,21,22,2,9]},{"1595520":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,19,214,149,213,154,213,155,213,182,213,183,213,184,213,185,213,186,213,191,213,197,213,198,213,199,213,201,213]},{"1605632":[224,90,221,29,227,3,63,207,95,224,92,227,188,227,124,195,246,157,62,28,192,224,227,195,131,25,153,24,238,45,252,147,248,7,57,199,11,247,247,158,254,140,126,17,3,7,199,247,251,251,199,132,95,25,238,3,173,11,87,68,232,192,255,128,255,152,120,224,241,243,184,31,7]},{"1605706":[28]},{"1605708":[60,8,28,4,73]},{"1605714":[67]},{"1605716":[195,1,169]},{"1605720":[248]},{"1605722":[255,255,251,36,255,4,92,172,124,140,92,74,172,124,39,15,15,255,100,253,36,125,128,62,210,127,169,239,64,212,137,232,22,34,3,28,1,16,48,102,9,24,231,52,195,82,129,235,32,247,20,253,66,195,126,189,60]},{"1605780":[24,60,28,8,2,62,126,68]},{"1605789":[255,2,254]},{"1605793":[246,68]},{"1605796":[237,18,173]},{"1605800":[175]},{"1605803":[1,9,18,18,82,80]},{"1605810":[255]},{"1605812":[251]},{"1605814":[247]},{"1605816":[183,70]},{"1605819":[111,4,127]},{"1605823":[4,8,72,34,144,6,128,255]},{"1605832":[254,63,225,97,69,222,94,6,220,92,219,91]},{"1605846":[30,36,63,36,255,10,192,255,184,204,75,188,35,252,67,246,29,35]},{"1605865":[3,51,67,3,25,47,255,39]},{"1605874":[20,255,255,191,191,206,206,209,208,239,239,230,231,238,233,239,236]},{"1605892":[64,49,63,31,34,28,27,185,158,115,60,230,121,204,243,152,231,48,207,224,159,192,63,112,224,193,131,7,15,31,63,255]},{"1605925":[129,126,75,141,110,1]},{"1605933":[37,16,224,65,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,254,253,251,247,239,223,191,127,231,156,254,137,253,195,251,231,115,207,243,207,120,231,95,240,24,1,3,7,143,143,199,224,188,243,254,225,255]},{"1605991":[255,8,255,140,255,158,231,167,215,199,99,1,35]},{"1606005":[224,32,24,56,239,159,246,15,217,151,243,142,118,92,191,10,126,36,219,138,31,207,38,12,137,193,195,100,188,96,188,104,180,100,169,67,96,163,7,97,169,96,184,96,31,31,27,36,31,5,95,175,111,144,83,163,138,102]},{"1606064":[1]},{"1606066":[12,36,15,224,71,59,75,28,164,15,211,7,232,3,117,3,184,1,92,1,190,132,67,32,16,136,68,162,65,207,206,63,48,248,199,224,20,192,175,192,23,128,44,128,123,48,192]},{"1606114":[11,16,40,83,132,251,8,159,102,7,248]},{"1606126":[87]},{"1606128":[168]},{"1606130":[245]},{"1606132":[254]},{"1606134":[255,6]},{"1606138":[168,87,10,1]},{"1606143":[67,102,191,224,35,118,159,59,207,61,135,62,83,127,57,111,172,31,31,15,7,67,129,128,16,215,87,214,86,213,85,215,87,205,78,250,123,253,5,255,19,34,63,24,61,53,6,3,1,60,243,30,225,255,24,239,40,223,16,223,145,223,147,255,199,227,225]},{"1606211":[16,34,32,224,56]},{"1606217":[251,251,245,245,174,174,75,74,241,245]},{"1606228":[254,255,251,251,4,4,14,95,255,251,1]},{"1606240":[4,153,158,115,124,230,121,204,115,152,231,48,79,96,31,192,63,120,240,225,195,135,143,159,63,255]},{"1606267":[48,48,206,206,223,223,39,255,3]},{"1606277":[255,49,32,35]},{"1606282":[69,141,110,2,129,98,157,68,126,129]},{"1606293":[255,131,97,1]},{"1606298":[28,35]},{"1606301":[151,104,1,27,94,241,93,243,185,231,249,135,248,103,63,48,127,120,239,44,225,227,199,7,7,192,128,16,47,11,94,16,67,186,36,15,126,32,95,22,90,24,67,2,240,225,197,197,193,225,231,252,131,198,2,10,255]},{"1606359":[49,255,67]},{"1606363":[3,1,9]},{"1606367":[24,134,27,1,133,196,2,3,255]},{"1606377":[129,127,135,208,1,35]},{"1606384":[35,31,7,92,140,252,44,188,204,252,12,35,252,35]},{"1606400":[47,34,15,35,255,224,53,129,66,67,189,62,66]},{"1606414":[189]},{"1606416":[195]},{"1606418":[255]},{"1606420":[203,128,255,60]},{"1606425":[129,66,60]},{"1606429":[52]},{"1606431":[157,93,67,190,63,199,7,120,4,139,4,251,28,227,182,221,62]},{"1606450":[128,115,3,3,25,217,88,226,161,188,195,137,30]},{"1606464":[1,62,29,133,42]},{"1606470":[22,79,140,79,9,78,11,77,11,119,164,104]},{"1606483":[127,128,127,152,48,176,177,179,24,159,7,152,231,2,19,255,146,239,36,223,72,159,16,191,32,191,35,191,39,255,143,12,24,48,96,34,64,224,72]},{"1606523":[127,127,191,191,159,159,175,175,183,183,171,187,141,189,30,126,128,64,96,112,120,100,66,129,255]},{"1606549":[63]},{"1606551":[15,192,7,240,3,248,3,128,1,96,1,56,255,255,63,15,7,127,159,199,128,127,65,62,34,28,85,73,190,182,221,221,235,235,247,247,127,190,221,235,119,62,28,8,47,254,39,1,79,15,255,39]},{"1606604":[67,230,191,224,49,246,159,123,79,189,39,158,19,207,9,103,4,31,31,15,135,195,225,240,248,239,40,207,136,175,8,127,15,247,7,123,3,153,129,204,64,16,48,112,240,248,252,126,63]},{"1606654":[255,253,255,2,2,35,253,1,19,19,67,238,236,7]},{"1606670":[253,255,255,253,17,17,131,67,3,133,66,3,5,17,17,238,238,239,239,134,204,4,24,16,251,8,255,6,7,248]},{"1606701":[31]},{"1606703":[249]},{"1606705":[255]},{"1606707":[79]},{"1606709":[240,6]},{"1606713":[224,6]},{"1606716":[176,15,136,128,4,6,167,222,83,239,41,119,148,131,144,4,13,67,33,16,8,255]},{"1606739":[192,127,191,127,143,111,140,108,67,140,111,131,94,1,2]},{"1606755":[16,19,34,16,134,203,4,131,23,1,132,49,3,35]},{"1606770":[131,23,1,3,141,110,13,238,67,253,254,1,1,2,67,1,254,131,222,2,1]},{"1606793":[131,107,3,152,216,3,2]},{"1606801":[1,254,67,249,250,135,72,5,3]},{"1606812":[4,4,131,107,3,224,39,211,211,185,185,68,124,90,102,185,231,100,219,194,189,129,126,60,126,199,131,1,24,60,126,255]},{"1606845":[252]},{"1606847":[240]},{"1606849":[224,9,192,25,192,27,128,58,128,60,34,255,19,246,230,228,197,195]},{"1606868":[255,126,255,66,255,78,255,81,255,87,255,118,255,13,136,23,1,5,254,254,253,253,243,243,35,239,13,223,223,191,191,127,127,1,2,12,24,16,32,64,128,80]},{"1606911":[255,38]},{"1606914":[255]},{"1607680":[224,90,221,29,227,3,63,207,95,224,92,227,188,227,124,195,246,157,62,28,192,224,227,195,131,25,153,24,238,45,252,147,248,7,57,199,11,247,247,158,254,140,126,17,3,7,199,247,251,251,199,132,95,25,238,3,173,11,87,68,232,192,255,128,255,152,120,224,241,243,184,31,7]},{"1607754":[28]},{"1607756":[60,8,28,4,73]},{"1607762":[67]},{"1607764":[195,1,169]},{"1607768":[248]},{"1607770":[255,255,251,36,255,4,92,172,124,140,92,74,172,124,39,15,15,255,100,253,36,125,128,62,210,127,169,239,64,212,137,232,22,34,3,28,1,16,48,102,9,24,231,52,195,82,129,235,32,247,20,253,66,195,126,189,60]},{"1607828":[24,60,28,8,2,62,126,68]},{"1607837":[255,2,254]},{"1607841":[246,68]},{"1607844":[237,18,173]},{"1607848":[175]},{"1607851":[1,9,18,18,82,80]},{"1607858":[255]},{"1607860":[251]},{"1607862":[247]},{"1607864":[183,70]},{"1607867":[111,4,127]},{"1607871":[4,8,72,34,144,6,128,255]},{"1607880":[254,63,225,97,69,222,94,6,220,92,219,91]},{"1607894":[30,36,63,36,255,10,192,255,184,204,75,188,35,252,67,246,29,35]},{"1607913":[3,51,67,3,25,47,255,39]},{"1607922":[20,255,255,191,191,206,206,209,208,239,239,230,231,238,233,239,236]},{"1607940":[64,49,63,31,34,28,27,185,158,115,60,230,121,204,243,152,231,48,207,224,159,192,63,112,224,193,131,7,15,31,63,255]},{"1607973":[129,126,75,141,110,1]},{"1607981":[37,16,224,65,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,254,253,251,247,239,223,191,127,231,156,254,137,253,195,251,231,115,207,243,207,120,231,95,240,24,1,3,7,143,143,199,224,188,243,254,225,255]},{"1608039":[255,8,255,140,255,158,231,167,215,199,99,1,35]},{"1608053":[224,32,24,56,239,159,246,15,217,151,243,142,118,92,191,10,126,36,219,138,31,207,38,12,137,193,195,100,188,96,188,104,180,100,169,67,96,163,7,97,169,96,184,96,31,31,27,36,31,5,95,175,111,144,83,163,138,102]},{"1608112":[1]},{"1608114":[12,36,15,224,71,59,75,28,164,15,211,7,232,3,117,3,184,1,92,1,190,132,67,32,16,136,68,162,65,207,206,63,48,248,199,224,20,192,175,192,23,128,44,128,123,48,192]},{"1608162":[11,16,40,83,132,251,8,159,102,7,248]},{"1608174":[87]},{"1608176":[168]},{"1608178":[245]},{"1608180":[254]},{"1608182":[255,6]},{"1608186":[168,87,10,1]},{"1608191":[67,102,191,224,35,118,159,59,207,61,135,62,83,127,57,111,172,31,31,15,7,67,129,128,16,215,87,214,86,213,85,215,87,205,78,250,123,253,5,255,19,34,63,24,61,53,6,3,1,60,243,30,225,255,24,239,40,223,16,223,145,223,147,255,199,227,225]},{"1608259":[16,34,32,224,56]},{"1608265":[251,251,245,245,174,174,75,74,241,245]},{"1608276":[254,255,251,251,4,4,14,95,255,251,1]},{"1608288":[4,153,158,115,124,230,121,204,115,152,231,48,79,96,31,192,63,120,240,225,195,135,143,159,63,255]},{"1608315":[48,48,206,206,223,223,39,255,3]},{"1608325":[255,49,32,35]},{"1608330":[69,141,110,2,129,98,157,68,126,129]},{"1608341":[255,131,97,1]},{"1608346":[28,35]},{"1608349":[151,104,1,27,94,241,93,243,185,231,249,135,248,103,63,48,127,120,239,44,225,227,199,7,7,192,128,16,47,11,94,16,67,186,36,15,126,32,95,22,90,24,67,2,240,225,197,197,193,225,231,252,131,198,2,10,255]},{"1608407":[49,255,67]},{"1608411":[3,1,9]},{"1608415":[24,134,27,1,133,196,2,3,255]},{"1608425":[129,127,135,208,1,35]},{"1608432":[35,31,7,92,140,252,44,188,204,252,12,35,252,35]},{"1608448":[47,34,15,35,255,224,53,129,66,67,189,62,66]},{"1608462":[189]},{"1608464":[195]},{"1608466":[255]},{"1608468":[203,128,255,60]},{"1608473":[129,66,60]},{"1608477":[52]},{"1608479":[157,93,67,190,63,199,7,120,4,139,4,251,28,227,182,221,62]},{"1608498":[128,115,3,3,25,217,88,226,161,188,195,137,30]},{"1608512":[1,62,29,133,42]},{"1608518":[22,79,140,79,9,78,11,77,11,119,164,104]},{"1608531":[127,128,127,152,48,176,177,179,24,159,7,152,231,2,19,255,146,239,36,223,72,159,16,191,32,191,35,191,39,255,143,12,24,48,96,34,64,224,32]},{"1608571":[127,127,191,191,159,159,175,175,183,183,171,187,141,189,30,126,128,64,96,112,120,100,66,129,255]},{"1608597":[63]},{"1608599":[15,192,7,240,67,3,248,224,35,1,236,1,196,255,255,63,15,7,7,19,59,128,127,65,62,34,28,85,73,190,182,221,221,235,235,247,247,127,190,221,235,119,62,28,8,47,254,39,1,79,15,255,39]},{"1608653":[67,230,191,224,49,246,159,123,79,189,39,158,19,207,9,103,4,31,31,15,135,195,225,240,248,239,40,207,136,175,8,127,15,247,7,123,3,153,129,204,64,16,48,112,240,248,252,126,63]},{"1608703":[255,253,255,2,2,35,253,1,19,19,67,238,236,7]},{"1608719":[253,255,255,253,17,17,131,67,3,133,66,3,5,17,17,238,238,239,239,134,204,4,24,16,251,8,255,6,7,248]},{"1608750":[31]},{"1608752":[249]},{"1608754":[255]},{"1608756":[79]},{"1608758":[240,6]},{"1608762":[224,6]},{"1608765":[176,15,136,128,4,6,167,222,83,239,41,119,148,131,144,4,13,67,33,16,8,255]},{"1608788":[192,127,191,127,143,111,140,108,67,140,111,131,94,1,2]},{"1608804":[16,19,34,16,134,203,4,131,23,1,132,49,3,35]},{"1608819":[131,23,1,3,141,110,13,238,67,253,254,1,1,2,67,1,254,131,222,2,1]},{"1608842":[131,107,3,152,216,3,2]},{"1608850":[1,254,67,249,250,135,72,5,3]},{"1608861":[4,4,131,107,3,31,211,211,185,185,68,124,90,102,185,231,100,219,194,189,129,126,60,126,199,131,1,24,60,126,255]},{"1608893":[252]},{"1608895":[240,3,224,15,67,192,31,26,128,57,128,48,255,255,252,240,224,224,198,207]},{"1608916":[255,126,255,66,255,78,255,81,255,87,255,118,255,13,136,23,1,5,254,254,253,253,243,243,35,239,13,223,223,191,191,127,127,1,2,12,24,16,32,64,128,80]},{"1608959":[255,38]},{"1608962":[255]},{"1609728":[15,255]},{"1609731":[252,3,248,7,243,15,231,31,207,63,152,127,183,120,39]},{"1609747":[1,220,63,67,35,227,67,220,192,8,206,192,39,224,211,48]},{"1609764":[28,28,34,63,17,31,15,127,128,191,192,159,224,79,112,103,120,48,63,24,31,143,15,34]},{"1609789":[23,128,128,192,224,240,247,74,247,76,218,102,236,115,183,120,152,127,207,63,231,31]},{"1609813":[1,36]},{"1609816":[224,33,226,14,196,28,73,121,19,243,167,103,79,207,158,158,60,60,17,35,134,12,24,48,97,195,112,112,247,240,231,224,207,192,159,128,69,63]},{"1609855":[4,143,15,31,63,127,34,255,9,176,79,24,231,60,243,127,240,47,240,67,12,243,224,33,248,7,79,231,195,128,208,224,1,3,8,247,12,243,31,224,255]},{"1609897":[131,124,1,254,63,255,127,255,247,243,224]},{"1609909":[124,254,192,128,67,65,190,15,193,62,227,28,255]},{"1609923":[199,56,159,124,159,254,190,190,62,28,35]},{"1609935":[27,255]},{"1609938":[15,240,224,255,31,31,128,128,6,6,249]},{"1609950":[255,255]},{"1609953":[240,31,224,127,249,255]},{"1609960":[160,96,199,64,71,199,66,5,191,2,189,60,31,63,35,60,2,124,66,192,67,127,255,5,63,255]},{"1609987":[192,127,254,67,127,255,224,48]},{"1609996":[64,64,63]},{"1610000":[64,65,127]},{"1610004":[24,230,29,231,24,229,14,242,7,249,3,252,1,254]},{"1610019":[255,225,224,226,241,248,252,254,255,253,195,134,249,51,252,113,126,228,251,14,241,255]},{"1610042":[3,252,34]},{"1610047":[128,34]},{"1610050":[224,58,252,195,195,224,224,112,240,184,120,220,60,102,158,51,207,255]},{"1610069":[60,31,15,7,3,1]},{"1610077":[3,252,7,248,8,242,10,243,13,245,10,246,5,251,14,242,252,249,245,244,242,241,240,241,175,112,155,103,183,72,175,80,191,67,69,191,68,39]},{"1610116":[224,40,233,24,148,172,202,86,247,59,127,27,127,11,255,131,127,11,7,67,33]},{"1610138":[128,192,64,128,199,7,224]},{"1610146":[112]},{"1610148":[63]},{"1610150":[31]},{"1610152":[95,64,111,96,112,112,248,35,255,4,191,159,143,227,31,67,155,103,67,248,7,69,31,224,36]},{"1610178":[34,1,224,81,248,248,136,248,40,216,72,152,172,60,14,62,119,79,123,71,7,7,39,103,195,193,128,128,63]},{"1610208":[1]},{"1610210":[60,36,126,66,126,82,46,42,6,6,135,135,255,255,195,129,129,209,249,120,240,15,97,159,79,191,211,51,201,57,196,60,226,30,99,159,7,158,176,44,54,59,29,28,252,252,248,248,240,240,224,224,192,192,131,73,1,6,64]},{"1610270":[3,7,15,31,63,34,255,7,247,102,246,103,247,103,244,100,67,240,96,7,241,96,254,96,24,25,24,27,35,31,23,224,31,224,159,240,207,184,167,28,19,140,139,206,201,238,233,31,31,15,71,227,115,49,21,55]},{"1610327":[6,223,127,160,96,192,127,255,136,135,2,2,64,31,64,132,151,2,9,223,14,239,38,119,147,59,201,29,228,133,38,1,224,97,48,24,140,198,227,241,248,252,111,206,79,206,239,110,247,182,251,218,253,108,255,240,248,7,48,48,16,8,4,130]},{"1610392":[7,255]},{"1610395":[255,112,255,96,246,73,230,25,228,27,197,58,195,60]},{"1610410":[3,15,22,38,36,69,67,255]},{"1610419":[255,14,63,198,15,242,7,248,127,128,159,96,199,56]},{"1610434":[192,48,8,4,124,158,198,52,220,52,212,49,208,57,200,29,228,30,230,26,234,40,216,195,203,131,98,1,23,5,7,5,5,255]},{"1610469":[255,127,247,255,136,136,247,128,247,127,255,192,250,255,127,128,119,127,131,75,1,45]},{"1610492":[39,255,69,170,91]},{"1610498":[174,70,95,160,1,191,64,34,4,36]},{"1610509":[224,41,22,234,26,238,26,234,8,240,9,244,27,230,42,214,46,214,225,225,229,231,227,225,193,193,206,60,141,124,201,120,203,120,235,120,223,92,141,76,165,100,3,3,34,7,2,35,51,27,67,99,159,16,223,63,191,127,176,112,224,96,239,96,224,96,28,28,32,64,79,34,31,69,64]},{"1610585":[9,124]},{"1610588":[127]},{"1610590":[131]},{"1610592":[120,120,252,252,37,255,1,135,3,35,243]},{"1610604":[247,72,243,118,1,246,115,34,12]},{"1610614":[140,35,12,10,255,254,193,254,129,254,31,252,51,240,243,68,112,251,3]},{"1610634":[28,28]},{"1610637":[35,12,15,251,124,247,120,247,122,177,114,93,190,237,30,173,30,205,78,34]},{"1610658":[24,12]},{"1610662":[64,48,5,255,28,255,62,255,127,255,253,255,250,254,249,255,252,255,248,224,192,128,131,89]},{"1610687":[224,33,1,255,48,255,38,239,15,127,60,254,186,254,89,127,92,127]},{"1610707":[16,128,1,1,128,128,1,255,20,223,54,255,15,255,125,255,134,42,4]},{"1610727":[32,34]},{"1610730":[26,1,128,128,3,252,7,249,14,242,29,228,59,201,119,147,239,38,223,14]},{"1610752":[1,3,6,12,24,48,79]},{"1610760":[255,39,255,15,72,184,75,184,107,184,123,184,105,168,68,164,218,50,204,56,35,7,24,23,27,13,7,176,195,171,192,173,192,189,210,154,232,255,243,255,124,255]},{"1610803":[28,23,18]},{"1610807":[5,132,213]},{"1610811":[68,255]},{"1610814":[8,14,255,31,251,31,241,31,245,31,34]},{"1610826":[4,14,31,27,17,17,79,170,91,39,4,77,245,31,1,187,91,38,17,6,21,137,96,151,112,187,120,67,189,124,5,158,126,198,62,240,15,131,97,1,2,3,1,1,68]},{"1610872":[2,11,4]},{"1610876":[11,3,20,7,44,15,92,31,185,190,34,255,14,252,251,243,227,70,255]},{"1610896":[191,63,223,95,255,96,240,96,67,247,103,17,246,102]},{"1610911":[64,32,31,31,24,24,25,224,31,247,8,255]},{"1610924":[207,48,67,231,24,5,238,17,255]},{"1610934":[31,8,37]},{"1610938":[11,115,252,135,120,255]},{"1610945":[243,12,241,14,113,142,67,63,192]},{"1610955":[140,134,15]},{"1610959":[5,253,126,253,70,253,86,69,253,70,2,185,70,255,35]},{"1610975":[35,16,7]},{"1610979":[172,239,63,255,2,254,1,72,255]},{"1610989":[4,16,128,193,252,254,34,255,15,158,255,31,255,15,255,128,255,169,239,58,254,1,191]},{"1611013":[199,35]},{"1611016":[18,16,1,64,56,158,255,63,255,15,255,38,255,81,223,50,254,1,255,192,132,126,5,3,32,1]},{"1611044":[73,228,251,5,204,243,24,231,240,15,36,24]},{"1611057":[48,133,215,1,147,52,3,255]},{"1611776":[15,255]},{"1611779":[252,3,248,7,243,15,231,31,207,63,152,127,183,120,39]},{"1611795":[1,220,63,67,35,227,67,220,192,8,206,192,39,224,211,48]},{"1611812":[28,28,34,63,17,31,15,127,128,191,192,159,224,79,112,103,120,48,63,24,31,143,15,34]},{"1611837":[23,128,128,192,224,240,247,74,247,76,218,102,236,115,183,120,152,127,207,63,231,31]},{"1611861":[1,36]},{"1611864":[224,33,226,14,196,28,73,121,19,243,167,103,79,207,158,158,60,60,17,35,134,12,24,48,97,195,112,112,247,240,231,224,207,192,159,128,69,63]},{"1611903":[4,143,15,31,63,127,34,255,9,176,79,24,231,60,243,127,240,47,240,67,12,243,224,33,248,7,79,231,195,128,208,224,1,3,8,247,12,243,31,224,255]},{"1611945":[131,124,1,254,63,255,127,255,247,243,224]},{"1611957":[124,254,192,128,67,65,190,15,193,62,227,28,255]},{"1611971":[199,56,159,124,159,254,190,190,62,28,35]},{"1611983":[27,255]},{"1611986":[15,240,224,255,31,31,128,128,6,6,249]},{"1611998":[255,255]},{"1612001":[240,31,224,127,249,255]},{"1612008":[160,96,199,64,71,199,66,5,191,2,189,60,31,63,35,60,2,124,66,192,67,127,255,5,63,255]},{"1612035":[192,127,254,67,127,255,224,48]},{"1612044":[64,64,63]},{"1612048":[64,65,127]},{"1612052":[24,230,29,231,24,229,14,242,7,249,3,252,1,254]},{"1612067":[255,225,224,226,241,248,252,254,255,253,195,134,249,51,252,113,126,228,251,14,241,255]},{"1612090":[3,252,34]},{"1612095":[128,34]},{"1612098":[224,58,252,195,195,224,224,112,240,184,120,220,60,102,158,51,207,255]},{"1612117":[60,31,15,7,3,1]},{"1612125":[3,252,7,248,8,242,10,243,13,245,10,246,5,251,14,242,252,249,245,244,242,241,240,241,175,112,155,103,183,72,175,80,191,67,69,191,68,39]},{"1612164":[224,40,233,24,148,172,202,86,247,59,127,27,127,11,255,131,127,11,7,67,33]},{"1612186":[128,192,64,128,199,7,224]},{"1612194":[112]},{"1612196":[63]},{"1612198":[31]},{"1612200":[95,64,111,96,112,112,248,35,255,4,191,159,143,227,31,67,155,103,67,248,7,69,31,224,36]},{"1612226":[34,1,224,81,248,248,136,248,40,216,72,152,172,60,14,62,119,79,123,71,7,7,39,103,195,193,128,128,63]},{"1612256":[1]},{"1612258":[60,36,126,66,126,82,46,42,6,6,135,135,255,255,195,129,129,209,249,120,240,15,97,159,79,191,211,51,201,57,196,60,226,30,99,159,7,158,176,44,54,59,29,28,252,252,248,248,240,240,224,224,192,192,131,73,1,6,64]},{"1612318":[3,7,15,31,63,34,255,7,247,102,246,103,247,103,244,100,67,240,96,7,241,96,254,96,24,25,24,27,35,31,23,224,31,224,159,240,207,184,167,28,19,140,139,206,201,238,233,31,31,15,71,227,115,49,21,55]},{"1612375":[6,223,127,160,96,192,127,255,136,135,2,2,64,31,64,132,151,2,9,223,14,239,38,119,147,59,201,29,228,133,38,1,224,39,48,24,140,198,227,241,248,252,111,206,79,206,239,110,247,182,251,218,253,108,255,240,248,7,48,48,16,8,4,130]},{"1612440":[7,255]},{"1612443":[255,112,253,98,241,78,67,227,28,67,199,56,15]},{"1612457":[3,13,17,35,35,71,71,255]},{"1612466":[255,14,63,198,15,242,67,7,248,29,3,252,243,12]},{"1612481":[192,48,8,4,4,2,242,52,220,52,212,49,208,57,200,29,228,30,230,26,234,40,216,195,203,131,98,1,23,5,7,5,5,255]},{"1612516":[255,127,247,255,136,136,247,128,247,127,255,192,250,255,127,128,119,127,131,75,1,45]},{"1612539":[39,255,69,170,91]},{"1612545":[174,70,95,160,1,191,64,34,4,36]},{"1612556":[224,41,22,234,26,238,26,234,8,240,9,244,27,230,42,214,46,214,225,225,229,231,227,225,193,193,206,60,141,124,201,120,203,120,235,120,223,92,141,76,165,100,3,3,34,7,2,35,51,27,67,99,159,16,223,63,191,127,176,112,224,96,239,96,224,96,28,28,32,64,79,34,31,69,64]},{"1612632":[9,124]},{"1612635":[127]},{"1612637":[131]},{"1612639":[120,120,252,252,37,255,1,135,3,35,243]},{"1612651":[247,72,243,118,1,246,115,34,12]},{"1612661":[140,35,12,10,255,254,193,254,129,254,31,252,51,240,243,68,112,251,3]},{"1612681":[28,28]},{"1612684":[35,12,15,251,124,247,120,247,122,177,114,93,190,237,30,173,30,205,78,34]},{"1612705":[24,12]},{"1612709":[64,48,5,255,28,255,62,255,127,255,253,255,250,254,249,255,252,255,248,224,192,128,131,89]},{"1612734":[224,33,1,255,48,255,38,239,15,127,60,254,186,254,89,127,92,127]},{"1612754":[16,128,1,1,128,128,1,255,20,223,54,255,15,255,125,255,134,42,4]},{"1612774":[32,34]},{"1612777":[26,1,128,128,3,252,7,249,14,242,29,228,59,201,119,147,239,38,223,14]},{"1612799":[1,3,6,12,24,48,79]},{"1612807":[255,39,255,15,72,184,75,184,107,184,123,184,105,168,68,164,218,50,204,56,35,7,24,23,27,13,7,176,195,171,192,173,192,189,210,154,232,255,243,255,124,255]},{"1612850":[28,23,18]},{"1612854":[5,132,213]},{"1612858":[68,255]},{"1612861":[8,14,255,31,251,31,241,31,245,31,34]},{"1612873":[4,14,31,27,17,17,79,170,91,39,4,77,245,31,1,187,91,38,17,6,21,137,96,151,112,187,120,67,189,124,5,158,126,198,62,240,15,131,97,1,2,3,1,1,68]},{"1612919":[2,11,4]},{"1612923":[11,3,20,7,44,15,92,31,185,190,34,255,14,252,251,243,227,70,255]},{"1612943":[191,63,223,95,255,96,240,96,67,247,103,17,246,102]},{"1612958":[64,32,31,31,24,24,25,224,31,247,8,255]},{"1612971":[207,48,67,231,24,5,238,17,255]},{"1612981":[31,8,37]},{"1612985":[11,115,252,135,120,255]},{"1612992":[243,12,241,14,113,142,67,63,192]},{"1613002":[140,134,15]},{"1613006":[5,253,126,253,70,253,86,69,253,70,2,185,70,255,35]},{"1613022":[35,16,7]},{"1613026":[172,239,63,255,2,254,1,72,255]},{"1613036":[4,16,128,193,252,254,34,255,15,158,255,31,255,15,255,128,255,169,239,58,254,1,191]},{"1613060":[199,35]},{"1613063":[18,16,1,64,56,158,255,63,255,15,255,38,255,81,223,50,254,1,255,192,132,126,5,3,32,1]},{"1613091":[73,228,251,5,204,243,24,231,240,15,36,24]},{"1613104":[48,133,215,1,147,52,3,255]},{"1613824":[34,255,12,192,215,136,248,151,220,171,234,145,229,152,227,157,34,255,2]},{"1613844":[255]},{"1613846":[67]},{"1613848":[255,67,255]},{"1613852":[9,255,255,3]},{"1613857":[28,3,34,29,66,61,67,192,63,19,164,27,170,17,240]},{"1613873":[15,240]},{"1613876":[255,113,142,81,142,74,132,85,128,91,128,133,48]},{"1613890":[224,67,207,48,88,32,87,32,84,35,87,32,31]},{"1613904":[224,31]},{"1613907":[255,231,24,52,8,213,8,85,136,213,8,128]},{"1613920":[127,128,6,249,254,1,12,3,244,3,20,227,244,3,63,1,70,56,142,112,20,224,56,192,68,184,4,248,66,252,24,24,36,60,68,124,132,252,100,124,69,36,60,4,60,60,66,126,129,69,255,153,6,255,105,111,18,30,12,12,67,18,30,69,34,62,67,82,126,1,126,126,67,129,255,9,158,254,144,240,156,252,130,254,129,255,131,160]},{"1614009":[1,34,62,131,130]},{"1614015":[6,72,120,140,252,130,254,126,132,177]},{"1614026":[3,121,127,9,15,69,18,30]},{"1614035":[60,138,145]},{"1614039":[67,153,255,133,208]},{"1614045":[131,182]},{"1614048":[133,184]},{"1614051":[79,231,153,47,255,19,51]},{"1614059":[20,3,56,7,104,23,96,31,254,1,249]},{"1614071":[192]},{"1614073":[95,128,213,10,67,81,142,8,241,14,192,63,143,112,112]},{"1614089":[80,132,73]},{"1614093":[10,84,35,220,35]},{"1614099":[255,113,14,15]},{"1614104":[20,132,89]},{"1614108":[224,37,85,136,119,136,1,254,128,127,255]},{"1614120":[12,3,248,7]},{"1614125":[255,1,255,3,255,7,255,31,255,248,248,114,252,254,254,252,252,248,248,240,240,192,192,35]},{"1614150":[77,36,60,1,24,24,131,196]},{"1614159":[67,72,120,1,142,254,67,129,255,3,126,126,82,126,67,178,254,67,129,255,1,114,126,131,158]},{"1614185":[131,154]},{"1614188":[11,9,15,105,111,153,255,129,255,66,126,60,60,137,228]},{"1614204":[133,186,1,141,224]},{"1614210":[3,66,126,124,124,131,188]},{"1614218":[69,153,255,69,130,254,1,156,252,73,144,240,1,96,96,73,153,255,18,129,255,130,254,124,124,253,255,250,255,253,255,239,255,215,255,251,255,253,38,255,8,150,255,244,255,247,255,239,255,158,34,255,67,215,255,8,57,255,223,255,95,255,190,255,121,38,255,67,95,255,4,79,255,215,255,223,34,255]},{"1614297":[127,34,255,2,243,255,227,67,255,243,1,255,97,35,255,11,127,255,255,227,255,217,255,243,255,231,255,65,38,255,140,84,2,34,255,143,100,2,2,195,255,249,131,147,2,1,255,67,34,255,8,195,255,153,255,249,255,227,255,231,34,255,131,168,2,37,255]},{"1614365":[248,132,39,2,2,238,255,241,34,255,8,31,255,111,255,247,255,123,255,187,67,255,221,17,255,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,69,255,189,1,255,219,132,167,2,37,255,4,225,255,205,255,253,131,207,2,36,255,4,242,255,243,253,247,67,255,248,4,255,203,255,199,252,131,95,2,11,111,191,111,255,159,247,247,255,251,15,255,247,39]},{"1614463":[123,69,123,74]},{"1614468":[123,39]},{"1614472":[255,67,255,9,134,59,2,8,104,255,111,255,110,255,221,255,187,38,255,8,97,255,77,255,245,255,123,255,167,38,255,69,175,255,2,171,255,103,50,255,39]},{"1614515":[127,67,127,72,1,127,73,67,127,255,132,83,2,4,211,255,193,255,115,131,16]},{"1614537":[38]},{"1614540":[252,67,252,36,18,252,228,252,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,143,176,3,2,251,255,225,71,255,192,131,220,2,35,255,12,199,215,171,215,41,239,17,215,41,215,171,255,71,47,255,6,227,255,224,255,242,255,252,132,7,3]},{"1614607":[254,34,255,7,15,251,7,255,119,255,255,143,67,255,151,3,255,31,255,255,71,74,123]},{"1614631":[78,67,127,66,34,127,8,121,255,28,255,20,247,116,247,122,67,251,10,34,251,1,255,254,67,255,252,1,255,248,132,17,2,3,253,255,254,127,67,255,63,4,255,31,255,127,159,132,81,4,1,127,255,67,255,254,3,255,252,255,253,132,97,4,131,95,2,133,82,4]},{"1614702":[31,67,255,191,131,79,2,1,127,255,140,147,2,1,73,127,67,152,255,2,153,255,41,67,239,40,34,239]},{"1614731":[228,67,252,100,67,252,228]},{"1614739":[252,67,33,255,4,255,255,126,126,198,67,254,186,7,254,194,254,250,254,134,254,252,144,175,3,12,130,130,69,199,74,207,118,255,110,255,95,255,191,132,157,3,1,192,192,67,160,224,7,32,224,163,224,166,225,212,243,135,224,3,10,199,57,239,17,239,147,239,87,255,255,172,67,255,171,5,255,139,255,171,255,172,36,255,2,189,255,185,134,225,2]},{"1614831":[136,134,13,5,6,186,255,190,255,189,255,187,142,27,5,2,190,255,137,36,255,4,216,255,141,255,173,131,67,5,1,255,173,36,255,2,157,255,169,69,255,173,1,255,152,134,77,5,6,170,255,174,255,173,255,171,142,91,5,1,174,255,133,15,1,131,82,5,5,165,255,160,255,173,255,131,15]},{"1614909":[4,255,255,152,255,171,132,119,5]},{"1614919":[170,134,139,5,4,156,255,171,255,169,67,255,170,136,139,5,133,100,5,135,138,5]},{"1614942":[200,132,225,2,4,173,255,181,255,205,34,255,1,124,124,131,178,4,15,170,238,186,254,130,254,186,254,238,238,252,252,134,254,186,254,131,226,5,131,228,5,1,252,252,133,208,5,67,166,230,5,186,254,198,254,124,124,133,224,5,67,170,238,133,234,5,4,254,254,130,254,190,131,17,6,132,19,6,35,254,135,18,6,67,160,224,1,224,224,133,208,5,4,190,254,166,254,178,132,251,5]},{"1615044":[238,67,238,170,134,215,5]},{"1615052":[170,34,238,131,16,6,1,238,254,67,40,56]},{"1615065":[238,136,27,6,2,246,254,244,67,252,180,1,252,132,34,252,5,238,238,186,254,182,254,67,136,248]},{"1615092":[182,132,219,5]},{"1615097":[224,71,224,160]},{"1615102":[224,137,26,6,73,170,254,1,254,254,131,112,6,67,154,254,67,170,254]},{"1615122":[178,134,29,6,135,4,6,135,28,6,131,216,5,141,40,6,131,214,5,5,182,254,202,254,126,126,131,16,6,131,216,5]},{"1615155":[182,132,5,6,11,238,238,126,126,194,254,190,254,204,252,118,126,134,186,4,136,81,6,67,40,56,1,56,56,133,64,6,137,182,6,137,16,7,6,214,254,108,124,56,56,254,138,147,6,133,28,7,1,186,254,131,42,7,2,108,124,214,132,219,5,135,64,7,7,104,120,216,248,176,240,224,224,131,16,6,6,250,254,52,60,108,124,222,132,27,6,135,208,5,131,214,5,131,252,5,5,248,248,136,248,232,248,137,86,6,131,224,5,5,250,254,102,126,220,252,133,26,6,133,144,7,131,98,7,133,186,4,135,64,6,4,194,254,122,126,10,34,14,133,16,6,2,198,254,122,134,249,6,133,240,6,133,230,5]},{"1615315":[198,134,13,6,11,250,254,26,30,22,30,52,60,44,60,56,56,133,208,5,131,218,5,133,250,5,255]},{"1615872":[39]},{"1615874":[7,3]},{"1615877":[15,2,31,13,27,14,35]},{"1615885":[3,3,15,31,31,35]},{"1615892":[11,96]},{"1615895":[146]},{"1615897":[204]},{"1615899":[240,64,248,176,184,80,35]},{"1615907":[10,64,240,248,216,8]},{"1615914":[28]},{"1615916":[38,24,28,68,8,20,67,28]},{"1615925":[2,8,20,58,34,28,1,20,20,57]},{"1615936":[9,126]},{"1615939":[227,98,247,118,126]},{"1615945":[60,24,67,52,16,9]},{"1615952":[126,157,137,126,36,44,44]},{"1615961":[131,48]},{"1615965":[60,70]},{"1615968":[28,5,62]},{"1615973":[8,20,36,34,20]},{"1615979":[62,240,49,96]},{"1615984":[240,45,2]},{"1615988":[240,95]},{"1615992":[240,47,48]},{"1615996":[3,57,31,61,30,67,59,28,19,31,12,31,14,15]},{"1616011":[3]},{"1616013":[63,63,62,62,30,31,14,3,124,136,238,16,73,255]},{"1616028":[224,36,206]},{"1616032":[140,222,49,245,53,181,49,206,20,8,55,8,119,8,95,32,127,40,127,8,75]},{"1616054":[1]},{"1616056":[28,63,92,119,126,126,74,1]},{"1616066":[156,70]},{"1616069":[254,67,190]},{"1616073":[224,34,28]},{"1616078":[156,98,106,234,170,162,28,126]},{"1616087":[118,60,255,66,255,126,195,66,231,102,126,60,60]},{"1616101":[126,126,189,129,189,153,66,60,127,68]},{"1616112":[62,16,30]},{"1616116":[62]},{"1616118":[60]},{"1616120":[62]},{"1616122":[28]},{"1616124":[65,62,34,26,34,44,34,158,223,1,133,250,1,19,14]},{"1616140":[4]},{"1616142":[65,62,42,42,34,26,10,4,57,31,60,31,59,31,57,30,132,136,1]},{"1616162":[3,131,142,1,19,63,63,30,31,15,3,124,136,46,208,223,96,222,32,255]},{"1616183":[255,48,255,64,131,166,1,5,241,118,49,125,241,206,131,64,2,7,63,27,63,16,31]},{"1616207":[31,1,134,76,2,2,59,17,27,131,86,2,1,110,144,141,156,1,13,177,53,181,181,177,206,20,8,54,8,117,10,95,34,131,184,1]},{"1616244":[73,34]},{"1616247":[5,28,62,95,119,126,127,131,172,2,21,14]},{"1616260":[159]},{"1616262":[222]},{"1616264":[255]},{"1616266":[207]},{"1616268":[159]},{"1616270":[14]},{"1616273":[14,145,86,49,77,145,14,134,160,2,67,32,127,1]},{"1616288":[77,133,173,2,2,123,113,123,131,220,2]},{"1616300":[78,74]},{"1616303":[255,3,78]},{"1616308":[78,132,154,2]},{"1616313":[78,240,49,48]},{"1616318":[41]},{"1616320":[2,1]},{"1616323":[27,38]},{"1616326":[1,1,26,35]},{"1616331":[131,124]},{"1616334":[6,124]},{"1616337":[248]},{"1616339":[240]},{"1616341":[224,34]},{"1616344":[5,28,36,68,136,16,32,141,48,3,1,63,1,37]},{"1616359":[25,1,62,15]},{"1616364":[31,14,59,26,119,54,238,108,220,88,248,240,240,192,15,17,37,73,146,164,8,48,240,70,96,3]},{"1616391":[63,132,120,3,6,30,119,62,238,124,220,120,132,132,3,6,31,63,127,254,252,248,240,228,54]},{"1616417":[67,1]},{"1616420":[67,3]},{"1616424":[7,34]},{"1616427":[3,1,1,3,3,131,47,4,37]},{"1616437":[67,128]},{"1616440":[67,192]},{"1616443":[34]},{"1616445":[3,128,128,192,192,131,41,4,19,7]},{"1616456":[6,1,28,3,250,5,242,13,66,61,1,2,4,5,27,229,143,127,131,63,4,67,64,128,15,48,192,142,112,134,124,140,120]},{"1616490":[128,192,192,240,126,254,252,141,176,1,16]},{"1616503":[28,63,94,118,126,126,75]},{"1616511":[128]},{"1616513":[198]},{"1616515":[239]},{"1616517":[255,132,155,4,23,94]},{"1616524":[12]},{"1616526":[128,70,169,53,169,189,82,12,31]},{"1616536":[31,8,31,4,63,26,127,56,120,48,131,143,3,224,62,20,18,25,36,71,72,48]},{"1616559":[192]},{"1616561":[140]},{"1616563":[30]},{"1616565":[190]},{"1616567":[158]},{"1616569":[30]},{"1616571":[63]},{"1616573":[30]},{"1616575":[64,140,18,162,146,18,33,30,63]},{"1616585":[27,4,17,14,59,4,127]},{"1616593":[249]},{"1616595":[240]},{"1616597":[96]},{"1616599":[35,17,16,40,70,137,144,96,192,128,156]},{"1616611":[190]},{"1616613":[255,68]},{"1616616":[190,131,248,1,7,64,156,162,217,178,166,65,62,153,224,4,4,188]},{"1616635":[254]},{"1616637":[191,132,43,5,5,126]},{"1616644":[60]},{"1616646":[64,188,67,194,185,8,66,60,63]},{"1616656":[31,4,31,14,63,146,231,4,21,140]},{"1616667":[158]},{"1616669":[190]},{"1616671":[254]},{"1616673":[255]},{"1616675":[62]},{"1616677":[12]},{"1616679":[192,140,146,162,210,193,50,12,228,48]},{"1616691":[7,68]},{"1616694":[15,67,31]},{"1616698":[67,63]},{"1616701":[8,127,7,15,15,31,31,63,63,127,68]},{"1616713":[224,67,240]},{"1616717":[67,248]},{"1616720":[12,252]},{"1616723":[254,224,224,240,240,248,248,252,254,32,31,67,16,15,6,35,31,47,28,124,56,120,34]},{"1616748":[63,131,179,5,15,124,120]},{"1616756":[56,240,112,224,48,224,56,240,152,112,124,56,60,34]},{"1616772":[248,131,202,5,2,124,60]},{"1616780":[255]},{"1617920":[12,130,130,69,199,74,207,118,255,110,255,95,255,191,34,255,3]},{"1617939":[192,192,67,160,224,224,39,32,224,163,224,166,225,212,243,1,1,3,2,6,5,12,11,13,10,15,11,15,8,15,15,240,240,16,240,112,144,240,80,176,208,96,160,192,64,128,128,35]},{"1617988":[67,4,28,7,2,126,76,124,8,56,48,48,39]},{"1618002":[3,2,126,124,124,39]},{"1618009":[67,4,28,1,24,24,67,8,56,21,48,48,20,60,18,126,17,255,29,255,1,255,130,254,68,124,56,56,9,123,52,127,69,37,111,13,9,123,115,115]},{"1618051":[33,127,175,255,34,254,174,254,67,40,120,8,120,120]},{"1618067":[9,59,53,127,36,68,111,37,16,73,123,51,51]},{"1618082":[41,123,42,126,36,252,170,254,45,127,41,34,123,5]},{"1618098":[16,112,104,248,69,72,216,21,144,240,96,96]},{"1618112":[24,8,60,4,255,41,126,42,126,2,255,17,239,41,198,198,133,206]},{"1618131":[3,60,4,126,2,68,255,1]},{"1618140":[255,68,51]},{"1618144":[67,255,51,134,241]},{"1618150":[34,255]},{"1618153":[225,68,255,237]},{"1618158":[193,68,255,159,35,255,25,69,255,1,255,171,255,199,255,207,255,199,255,223,27,231,175,95,243,31,239,63,233,63,237,63,19,34,255,7,27,231,191,95,227,63,237,63,131,52,1]},{"1618206":[45,142,45,1]},{"1618211":[35,34,255,12,35,255,123,255,247,127,119,255,193,255,247,255,23,52,255]},{"1618231":[199,72,255,231]},{"1618236":[195,134,109,1,8,179,255,243,255,231,255,207,255,131,36,255,2,135,255,243,132,145,1,2,179,255,135,36,255,67,179,255,6,183,255,131,255,231,255,199,36,255,2,195,255,159,132,145,1,131,148,1,35,255,4,227,255,207,255,135,68,255,179,133,156,1,4,195,255,147,255,187,134,133,1,135,126,1]},{"1618315":[131,68,255,179,133,172,1,131,130,1,131,228,1]},{"1618329":[243,134,171,1,11,255,231,255,219,255,165,231,189,255,219,255,231,36,255,8,231,247,203,239,213,239,149,223,169,131,123,1,12,222,253,219,230,215,249,221,230,215,248,230,251,248,34,255,12,163,127,99,223,195,63,107,215,251,151,167,127,31,34,255,67,223,255,133,32,2,1,229,254,131,44,2,67,227,255,7,163,127,107,215,219,47,103,223,131,60,2,8,255,255,254,255,252,255,249,255,147,132,113,1,137,238,1,135,232,1,146,240]},{"1618443":[255,70,255,252,4,254,255,253,255,252,36,255,20,59,127,131,143,115,255,3,255,255,143,251,254,253,253,254,254,251,253,227,243,204,68,255,128,14,255,255,115,127,131,255,7,127,135,255,11,255,3,255,35,150,126,2,36,255,17,248,255,250,255,248,255,255,139,255,127,195,255,121,255,195,255,249,127,131,124,1,15]},{"1618526":[1,7,2,14,4,28,8,56,16,112,32,224,192,192,34]},{"1618542":[10,28,24,62,16,51,32,103,34,111,5,125,131,156]},{"1618557":[13]},{"1618559":[56,50,126,66,206,132,156,68,220,8,248,240,240,133,145,2,9,243,252,239,243,239,247,215,239,223,237,35,255,8,63,255,207,255,183,255,23,255,187,67,255,219,7,246,213,239,236,243,224,255,240,134,158,2,10,203,255,251,127,247,175,247,15,207,63,63,136,227,2,10,243,255,240,255,248,255,247,255,239,255,223,34,255,24,31,255,207,255,15,255,31,255,239,255,215,255,235,255,217,255,221,254,223,252,221,255,223,255,231,131,237,2,7,255,35,255,99,255,227,127,99,132,10,2,133,92,2,31,253,251,189,243,190,249,215,252,227,255,214,255,191,249,255,255,223,127,187,207,183,217,255,3,255,231,31,255,255,231,191,240,72,255,224,132,88,3,13,143,115,135,121,199,57,207,49,255,1,255,3,255,15,39,255]},{"1618743":[129,42,255,12,240,255,229,255,202,255,133,255,138,255,133,255,192,34,255,14,127,255,31,255,175,255,87,255,163,255,93,255,61,255,224,132,152,2,3,254,243,255,227,132,24,1,3,255,125,255,251,132,121,3,133,92,2,134,93,2]},{"1618804":[248,68,255,240,2,224,255,192,132,188,2,12,127,255,31,191,79,31,239,143,119,239,19,231,25,68,255,128,1,192,251,68,255,240,131,44,2,6,255,1,255,97,159,243,31,68,255,15,134,172,3,132,49,4,131,122,3,67,239,255,12,251,254,255,253,206,251,159,247,251,239,243,255,247,37,255,19,225,255,241,255,49,255,45,255,223,255,167,255,103,255,139,255,31,243,255,35,67,255,243,1,63,225,42,255,1,129,126,70,255]},{"1618915":[139,197,4,2]},{"1618920":[255]},{"1618922":[139,212,4,68,255]},{"1618928":[5,139,255,63,227,255,89,131,133,1,1,127,193,132,13]},{"1618944":[35]},{"1618946":[3,1,1,3,3,67,4,7,1,8,15,133]},{"1618960":[6,119,255,110,255,94,255,190,136,253,4,9,128,128,192,192,35,224,38,225,20,243,131,126,3,8,103,255,171,255,107,255,170,255,167,34,255,79,9,15,138,112,3,3,254,239,252,210,34,255,135,203,4,37]},{"1619015":[12,211,255,213,254,219,254,215,252,221,255,231,255,249,34,255,79,149,243,4,148,243,150,241,147,74,240,144,12,203,255,171,127,219,127,235,63,123,255,103,255,95,136,253,4,35]},{"1619062":[1,255]},{"1619065":[137,102,5,35]},{"1619070":[4,192]},{"1619073":[96,128,32,80,192,160,80,255]},{"1619082":[143,189,4,45,255]},{"1619088":[254,136,227,2,6,224,255,135,255,31,255,127,133,111,3,9,253,231,250,207,244,159,249,158,243,157,133,127,3,8,63,231,95,179,207,121,143,249,47,131,124,5,143,4,6,12,241,251,229,247,201,239,147,223,167,255,15,255,63,134,50,3]},{"1619151":[240,67,223,224,3,185,198,144,239,132,66,3,2,63,247,15,67,251,7,3,237,19,197,59,133,49,3,12,251,207,251,143,251,15,253,7,254,147,255,255,141,70,255,181]},{"1619196":[142,38,255,8,173,255,165,255,161,255,169,255,109,38,255,8,152,255,123,255,72,255,107,255,152,38,255]},{"1619224":[205,68,255,180,2,181,255,205,38,255,67,191,255,67,63,255,131,12]},{"1619243":[35,255,4,68,255,109,255,108,132,227,6,37,255,8,93,255,201,255,85,255,221,255,93,135,143,2,67,249,255,67,243,255,68,231,255,3,30,30,63,33,67,63,45,15,127,65,254,158,240,144,96,96,246,155,248,207,253,231,255,243,132,97,2,7,252,255,255,111,249,223,243,191,131,136,1]},{"1619319":[127,68,255,63,11,255,227,255,245,251,254,241,236,251,198,255,143,132,12,1,7,244,255,250,247,253,251,254,229,133,42,4,133,145,2,3,242,253,238,241,67,220,227,67,184,199,139,112,6,7,253,3,13,243,255,209,255,224,132,154,3,133,154,3,34,255,8,140,255,187,255,138,255,187,255,140,38,255]},{"1619398":[218,70,255,90]},{"1619403":[166,38,255]},{"1619407":[141,132,197,6,2,141,255,189,38,255,8,209,255,151,255,81,255,215,255,209,38,255,13,252,255,240,255,233,246,217,230,219,228,186,197,188,195,137,112,6,5,131,127,97,159,57,199,47]},{"1619456":[255]},{"1622016":[19,254,6,253,44,251,24,247,56,231,108,219,198,189,131,126]},{"1622033":[255]},{"1622035":[255]},{"1622037":[255]},{"1622039":[255]},{"1622041":[255]},{"1622043":[255]},{"1622045":[255]},{"1622047":[255,230]},{"1622050":[217]},{"1622052":[157]},{"1622054":[110]},{"1622056":[118]},{"1622058":[185]},{"1622060":[155]},{"1622062":[103]},{"1622064":[230,230,217,217,157,157,110,110,118,118,185,185,155,155,103,103,1,252,35,249,7,243,143,231,23,207,39,159,67,63,129,126,2,255,4,255,8,255,16,255,32,255,64,255,128,255,1,255,253,252,251,249,215,211,119,111,224,216,218,188,237,46,254,125,2,255,4,255,40,255,144,255,39,255,67,255,145,255,2,255,193,124,99,185,55,211,155,103,201,55,196,59,254,1,255]},{"1622160":[2,255,4,255,8,255]},{"1622167":[255]},{"1622169":[255]},{"1622171":[255]},{"1622173":[255]},{"1622175":[255,245,243,203,199,20,12,36,24,90,60,230,103,193,193,3,1,12,255,56,255,243,255,231,255,195,255,153,255,62,255,254,255,129]},{"1622210":[195,129,102,66,60,36,24]},{"1622218":[60,24,102,36,195,66,129,129,195,195,102,102,60,60,24,24,60,60,102,102,195,195]},{"1622272":[239,28,219,54,172,123,114,205,186,229,75,180,235,20,239,16,223,255,183,255,123,255,205,255,229,255,180,255,23,255,219,255,253,10,246,41,223,32,254,1,253,2,247,8,255]},{"1622318":[255]},{"1622320":[255,255,169,255,166,255,159,255,254,255,233,255,243,255,255,255,63,188,124,115,240,239,41,223,89,63,219,191,186,127,188,127,67,252,143,240,31,224,63,192,255,128,127,128,255]},{"1622366":[255]},{"1622368":[220,29,56,203,200,246,247,251,251,253,130,252,97,254,57,254,226,63,244,15,249,7,252,3,254,1,255,1,255]},{"1622398":[255]},{"1622400":[56,185,11,200,100,2,153,167,251,231,223,227,53,75,99,28,70,255,52,255,153,255,64,255]},{"1622425":[255]},{"1622427":[255,128,255,128,255,24,217,176,51,64,134,33,93,153,165,156,160,178,204,233,30,38,255,76,255,57,255,130,255,66,255,67,255,1,255]},{"1622463":[255,56,185,11,200,100,2,153,167,251,231,223,227,53,75,99,28,70,255,52,255,153,255,64,255]},{"1622489":[255]},{"1622491":[255,128,255,128,255,24,217,176,51,64,134,33,93,153,165,156,160,178,204,233,30,38,255,76,255,57,255,130,255,66,255,67,255,1,255]},{"1622527":[255,126,129,195,126,165,126,163,126,137,126,161,126,195,126,126,129]},{"1622545":[255,126,255,126,255,126,255,126,255,126,255,126,255]},{"1622559":[255,1,252,66,249,55,243,111,231,219,195,191,153,125,62,238,111,2,255,4,255,8,255,16,255,36,255,66,255,129,255,16,255,56,186,9,205,131,235,195,243,195,239,146,210,30,159,8,203,69,255,50,255,20,255,12,255,16,255,45,255,96,255,52,255,62,127,159,191,195,211,131,187,1,101,24,218,8,185,72,75,128,255,64,255,44,255,68,255,154,255,37,255,70,255,180,255,56,186,9,205,131,235,195,243,195,239,146,210,30,159,8,203,69,255,50,255,20,255,12,255,16,255,45,255,96,255,52,255,62,127,159,191,195,211,131,187,1,101,24,218,8,185,72,75,128,255,64,255,44,255,68,255,154,255,37,255,70,255,180,255,129,103,65,189,35,91,145,173,232,246,228,235,242,245,249,250,24,255,2,255,132,255,66,255,1,255,16,255,8,255,4,255,241,246,226,237,132,154,137,181,19,107,33,221,88,190,188,127,8,255,16,255,97,255,66,255,132,255,2,255,1,255]},{"1622783":[255,223,60,249,118,253,50,205,50,161,94,167,88,143,112,175,80,189,255,118,255,50,255,50,255,94,255,89,255,115,255,87,255,255]},{"1622818":[189,66,27,228,207,48,231,24,243,12,247,8,255]},{"1622832":[255,255,254,255,253,255,59,255,159,255,207,255,235,255,231,255,156,127,134,127,65,191,95,63,175,159,147,175,12,99,11,200,255]},{"1622866":[255]},{"1622868":[127,128,255,128,127,192,95,224,159,240,55,252,61,254,93,254,218,252,155,253,151,251,9,245,51,195,206,46,255]},{"1622898":[255]},{"1622900":[255,1,254,1,252,3,250,7,252,15,209,63,195,60,74,188,34,92,154,172,146,172,158,160,34,65,29,220]},{"1622929":[255,1,255,129,255,65,255,65,255,65,255,156,255,34,255,37,30,209,206,238,224,233,229,225,233,193,221]},{"1622957":[54,200,43,192,255,32,255,17,255,18,255,22,255,34,255,201,255,20,255,195,60,74,188,34,92,154,172,146,172,158,160,34,65,29,220]},{"1622993":[255,1,255,129,255,65,255,65,255,65,255,156,255,34,255,37,30,209,206,238,224,233,229,225,233,193,221]},{"1623021":[54,200,43,192,255,32,255,17,255,18,255,22,255,34,255,201,255,20,255,127,128,224,96,207,64,155,8,156,8,156,8,156,8,156,8]},{"1623057":[255,31,255,48,255,103,255,103,255,103,255,103,255,103,255,251,38,229]},{"1623076":[253]},{"1623078":[253,60,225]},{"1623082":[129,126,129,126,255]},{"1623088":[88,255,90,255,66,255,66,255,126,255]},{"1623099":[255]},{"1623101":[255]},{"1623103":[255,128,127]},{"1623107":[128,96,128,191,63,191,63,192,127,128,127,255]},{"1623121":[255,127,255,127,255,64,255,64,255]},{"1623131":[255]},{"1623133":[255]},{"1623135":[255,181,66,231,36,165,102,165,102,165,102,165,102,165,102,165,126,24,255,24,255,24,255,24,255,24,255,24,255,24,255]},{"1623167":[255,156,127,128,127,192,63,255,64,179,127,192,63,255]},{"1623182":[127,128]},{"1623185":[255]},{"1623187":[255]},{"1623189":[255]},{"1623191":[255]},{"1623193":[255]},{"1623195":[255]},{"1623197":[255]},{"1623199":[255,1,254,3,252,255]},{"1623206":[159,254,1,254,255]},{"1623212":[255]},{"1623214":[255]},{"1623217":[255]},{"1623219":[255]},{"1623221":[255]},{"1623223":[255]},{"1623225":[255]},{"1623227":[255]},{"1623229":[255]},{"1623231":[255,64,191,160,223,228,12,162,14,178,86,178,86,180,70,176,90]},{"1623249":[255]},{"1623251":[255,19,255,81,255,73,255,73,255,73,255,69,255,255]},{"1623266":[255]},{"1623268":[255,63,240,48,225,33,236,44,228,36,240,48]},{"1623281":[255,127,255,64,255,79,255,94,255,83,255,91,255,79,255,2,6,5,12,7,16,3,36,25,66,60,129,126]},{"1623310":[253]},{"1623312":[253,255,251,255,255,255,255,255,255,255,255,255,255,255,255,255,49,191,35,191,7,191,39,191,63,222,14,255,64,249,61,226,78,255,92,255,120,255,88,255,97,255,113,255,63,255,29,255,249,246,225,222,129,254,9,254,13,254,15,254,64,241,144,111,15,255,63,255,127,255,247,255,243,255,241,255,190,255,144,255,129,103,65,189,35,91,145,173,232,246,228,235,242,245,249,250,24,255,2,255,132,255,66,255,1,255,16,255,8,255,4,255,255,255,191,191,95,127,57,249,224,241,238,255,240,254,253,253]},{"1623441":[255,64,255,128,255,6,255,14,255]},{"1623451":[255,1,255,2,255,224,227,209,223,175,191,71,103,39,127,62,126,190,255,127,255,28,255,32,255,64,255,152,255,128,255,129,255]},{"1623485":[255]},{"1623487":[255,56,185,8,203]},{"1623493":[102,129,189,195,219,193,221,131,179,14,110,70,255,52,255,153,255,66,255,36,255,34,255,76,255,145,255,62,255,31,159,27,219,3,99,129,185,128,188]},{"1623533":[102,8,203]},{"1623537":[255,96,255,36,255,156,255,70,255,67,255,153,255,52,255,155,8,159,15,153,15,143,16,192,64,255,96,191,112,156,108,103,255,96,255,96,255,96,255,63,255,31,255]},{"1623581":[255,3,255,155,8,159,15,153,15,143,16,192,64,255,96,191,127,156,127,103,255,96,255,96,255,96,255,63,255,31,255]},{"1623613":[255]},{"1623615":[255,159,1,1,1,1,1,1,1,51,51,254,255,254,255,206,255,254,255,254,255,254,255,254,255,204,255]},{"1623643":[255]},{"1623645":[255]},{"1623647":[255,177,80,217,56,155,120,147,112,147,112,153,120,158,126,129,120,15,255,7,255,7,255,15,255,15,255,7,255,1,255,7,255,255]},{"1623683":[255,254,255,1,1,1,1,243,1,255,1,255,1]},{"1623697":[255]},{"1623699":[255]},{"1623701":[255,254,255,254,255,254,255,254,255,254,255,240,15,225,30,195,60,135,121,14,243,30,227,63,201,119,156,240,255,224,255,192,255,128,255,1,255,1,255]},{"1623741":[255,8,255,160,87,168,90,165,95,181,111,184,119,191,56,128,31,255]},{"1623760":[72,255,69,255,64,255,96,255,112,255,120,255,127,255]},{"1623775":[255,224,32,230,38,246,54,255]},{"1623784":[191,127,234,85,149,63,224,64,95,255,89,255,73,255,127,255]},{"1623801":[255]},{"1623803":[255,64,255,63,255,227,24,140,115,24,231,40,215,71,187,157,127,126,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,57,198]},{"1623843":[241,62,223,39,190,3,191,35,191,56,183,63,191,57,255,127,255,97,255,89,255,120,255,92,255,79,255,64,255,128,127,1,130,121,254,56,255,24,255,141,254,226,223,248,247,128,255,255,255,135,255,198,255,230,255,115,255,60,255,15,255,241,246,226,237,132,154,137,181,19,107,33,221,88,190,188,127,8,255,16,255,97,255,66,255,132,255,2,255,1,255]},{"1623935":[255,226,227,209,223,175,191,95,127,48,121,49,127,63,255,127,255,28,255,32,255,64,255,128,255,134,255,128,255]},{"1623965":[255]},{"1623967":[255,231,231,139,207,155,223,199,255,252,253,253,255,158,222,204,253,24,255,48,255,32,255]},{"1623991":[255,2,255]},{"1623995":[255,33,255,2,255,28,221,24,219]},{"1624005":[102,131,191,193,221,224,230,248,251,252,253,34,255,36,255,153,255,64,255,34,255,25,255,4,255,2,255,60,189,120,123,240,246,33,237,33,41,193,221]},{"1624045":[54,8,235,66,255,132,255,9,255,18,255,214,255,34,255,201,255,20,255,17,17,17,18,17,3,19,17,17,17,17,18,17,3,19,17,17,17,17]},{"1624128":[49,17,17,17,17,35,51,23,1,51,51,17,17,1,16]},{"1624144":[49,17,17,17,17,35,51,23,17,17,17,18,17,1,16]},{"1624160":[17,17,17,18,17,1,17,49,49,17,17,17,17,19,51,19,49,17,17,17,17,35,51,39,17,17,17,18,17,3,19,50,17,17,17,17,17,1,17,49,65,17,18,16,33,1,51,23,49,17,17,17,33,35,51,23,1,17,17,19,35,32,3,39]},{"1624237":[16]},{"1624248":[17,17,17,17,17,34,34,39,1,17,17,18,17,35,19,55,17,18,17,18,17,1,19,35]},{"1624280":[34,34,34,34,34,2,34,50]},{"1624320":[49,17,17,17,1,35,51,23]},{"1624336":[49,17,17,17,17,35,51,39,1,17,17,18,17,3,35,35,1,17,17,18,17,3,35,35]},{"1624368":[1,17,17,3,49]},{"1624374":[3,19]},{"1624381":[32]},{"1624383":[7]},{"1624405":[16]},{"1624560":[17,17,17,17,17,33,34,39]},{"1624569":[33,17,17,17,1,17,17]},{"1624577":[17,17]},{"1624584":[49,17,17,17,17,3,19,23,49,17,17,17,17,35,51,23,49,67,17,17,17,3,3,23,49,17,17,17,17,3,3,23,49,67,17,17,17,3,3,23,49,17,17,17,17,3,51,23,49,17,17,17,17,3,19,39,49,67,17,17,17,3,3,23,49,67,17,17,17,3,3,39,49,67,17,17,17,3,51,23,49,17,17,17,17,35,51,23,17,17,17,33,17,1,19,51,17,17,17,17,17,3,35,35,49,17,17,18,17,35,51,23,49,17,17,18,17,35,51,23]},{"1624712":[49,17,17,33,17,1,51,51]},{"1624728":[19,51,51,48,17,1,16]},{"1624736":[1,51,51,16,17,1,16]},{"1624744":[17,17,17,17,17,3,19,33,49,17,17,17,17,3,19,33]},{"1624768":[49,17,17,19,17,33,51,23]},{"1624798":[3,3]},{"1624806":[3,3]},{"1624864":[17,17,17,17,17,1,19,51]},{"1624912":[81,49,17,17,17,3,3,23,49,17,17,17,17,1,17,17]},{"1624936":[49,17,17,18,17,35,51,23,49,17,17,18,17,35,51,23,17,17,17,18,17,3,51,19]},{"1624968":[49,17,17,19,17,3,51,19]},{"1625032":[17,17,17,18,17,17,17,49]},{"1625056":[1,17,17,16,33,3,51,51]},{"1625096":[1,17,17,18,17,3,50,50]},{"1625112":[1,18,33,32,18]},{"1625123":[16,1]},{"1625128":[17,17,17,17,17,1,35,35,1,17,17,16,1,1,51,23]},{"1625152":[1,17]},{"1625157":[4]},{"1625176":[49,17,17]},{"1625180":[17,3,51,35]},{"1625185":[17,17,16,1,1,16]},{"1625193":[17,17]},{"1625196":[17,1,16]},{"1625200":[17,17,17,17,33,1,50,35,49,17,17,18,33,3,51,18,17,17,17,16,17,1,19,50,17,17,17]},{"1625233":[17,17,16,17]},{"1625248":[17,17,17,18,17,3,19,35]},{"1625288":[17,17,17,18,33,1,3,18,17,17,17,18,17,2,50,17,1,17,17,16,1,1,18,50,1,17,17,18,17,3,35,34,1,17,17,18,17,3,35,34]},{"1625354":[17]},{"1625357":[2,2]},{"1625361":[17,17]},{"1625365":[5]},{"1625373":[1,2]},{"1625376":[1,17,17,16,17,3,1,49,49,17,17,17,33,3,51,19,49,17,17,17,33,3,51,19,17,17,17,17,17,33,35,39,1,17,17,18,17,3,51,17,1,17,17,18,17,3,51,17,17,17,17,17,17,3,19,19,17,17,17,17,17,1,16]},{"1625488":[17,17,17,18,17,1,17,49]},{"1625577":[17,17,48,17]},{"1625585":[17,17,48,17]},{"1625624":[1,17,17,48,17]},{"1625646":[1,49]},{"1625654":[1,49,1,17,17,16,18,3,19,19]},{"1625672":[81,17,17,48,33,3,49,49,80]},{"1625689":[17,17]},{"1625697":[17,17]},{"1625702":[64]},{"1625705":[17,17]},{"1625709":[4]},{"1625712":[1,17,17]},{"1625720":[17,17,17,18,17,1,17,33]},{"1625729":[1,17]},{"1625732":[2]},{"1625741":[16,2,34]},{"1625749":[32]},{"1625751":[7,17,17,17,17,17,33,17,39]},{"1625777":[3,51]},{"1625788":[2]},{"1625792":[255,252,253,250,255,241,255,227,255,199,255,143,255,159,255,255,191,115,255,127,255,255,255,255,255,255,255,255,255,255,255,255,249,198,225,158,253,159,251,157,223,186,239,220,255,227,255,255,231,155,195,191,195,63,131,127,135,127,135,127,255,135,255,255,255,24,255,24,255,24,255,24,255,24,255]},{"1625868":[255,129,255,195,255,231,255,231,255,231,255,231,255,231,255,231,255,231,255,231,255,24,255]},{"1625892":[255]},{"1625894":[255,24,255,24,255,24,255,24,255,24]},{"1625906":[63,63,127,68,111,80,114,79,115,109,126,74,124,68]},{"1625922":[255,255,255]},{"1625926":[255]},{"1625929":[255,255,255]},{"1625936":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,225,255,249,255,229,255,253,255,79,255,127,255,127,255]},{"1625970":[1,1,2,3,1,1,3,3,5,7,5,7,8,15,255,255,255,1,255,1,1,255,255,255,255,255,255,255,255,255,255,255,255]},{"1626004":[255]},{"1626007":[255,255,255,255,255,255,255,255,255]},{"1626018":[192,192,32,224,160,224,32,224,227,224,38,225,212,243,15,15,63,48,119,72,120,71,215,175,239,159,239,159,239,159,239,159,239,159,239,159,239,159,239,159,239,159,239,159,239,159,255,255,255,255,255,255,247,255,240,255,244,251,247,248,247,248,246,249,247,249,251,252,253,254,254,255,255,255,255,255,255,255,255,255,252,255,240,255,231,248,239,240,223,224,219,228,217,230,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,199,255,128,255,184,159,254,207,255,231,255,243,255,255,255,255,225,255,241,255,49,255,45,255,223,255,167,255,103,250,255,253,255,250,207,247,159,239,251,255,243,255,247,255,255,255,255,225,255,241,255,241,63,237,63,223,255,191,231,127,231,255,255,255,255,255,255,192,255,255,191,255,128,255,192,255,255,255,255,255,255,255,255,15,255,231,255,247,31,247,31,247,31,255,255,252,255,240,255,233,246,217,230,219,228,186,197,188,195,255,255,252,255,242,253,238,241,220,227,220,227,184,199,184,199,255,255,252,255,243,252,239,240,223,224,223,224,185,198,144,239,255,255,253,251,189,243,190,249,215,252,227,255,214,255,191,249,255,255,223,127,187,207,183,217,255,3,255,231,31,255,255,231,255,255,255,255,255,255,254,253,255,242,255,225,247,232,255,192,255,255,159,255,109,255,115,191,255,79,255,135,207,55,231,27,255,255,254,255,191,250,191,226,255,146,255,146,255,202,255,202,255,255,127,255,125,223,253,71,255,73,255,73,255,83,255,83,255,255,255,199,223,163,219,37,239,145,119,137,127,195,159,247,251,254,255,253,206,251,159,247,251,239,243,255,247,255,255,255,255,227,255,243,127,243,63,249,159,249,207,249,239,243,255,255,254,255,253,255,251,207,247,159,239,251,255,243,255,247,255,255,255,255,225,255,241,255,241,255,237,255,223,255,191,255,127,255,255,255,225,255,249,255,229,255,253,255,79,255,127,255,127,255,247,159,247,159,247,159,247,159,247,159,247,159,255,207,255,255,156,227,134,249,193,254,223,224,239,240,243,252,252,255,255,255,176,207,191,192,223,224,223,224,239,240,243,252,252,255,255,255,163,220,183,200,223,224,223,224,239,240,243,252,252,255,255,255,191,240,255,224,255,224,255,224,255,224,255,240,255,252,255,255,143,115,135,121,199,57,207,49,255,1,255,3,255,15,255,255,239,208,239,208,255,192,255,224,255,224,255,240,255,252,255,255,255,255,255,255,255,255,255,254,255,254,255,254,255,254,255,252,255,255,255,135,255,3,255,49,255,121,255,121,127,241,191,97,255,35,255,7,255,135,255,199,255,207,191,207,127,159,255,63,255,255,255,255,255,255,255,255,254,255,253,255,253,255,254,255,255,255,255,193,221,227,221,163,227,157,119,137,111,215,159,255,255,254,255,252,254,249,253,242,251,228,255,224,255,240,255,248,255,127,247,63,115,159,57,207,159,103,207,51,255,1,243,12,255,255,255,255,255,255,255,255,255,255,247,255,231,255,195,254,255,255,255,231,247,203,255,225,223,225,191,203,127,159,255,63,255,255,255,255,255,255,255,254,255,250,255,240,249,238,247,232,255,255,255,255,255,195,255,11,127,163,255,7,255,135,255,15,255,255,240,255,229,255,202,255,133,255,138,255,133,255,192,255,255,255,127,255,31,255,175,255,87,255,163,255,93,255,61,255,255,255,255,224,255,192,248,199,248,199,255,192,255,192,255,192,255,255,255,7,255,7,31,231,31,231,255,7,255,7,255,7,255,255,254,255,252,255,253,255,255,240,255,224,247,255,247,254,255,252,253,250,255,241,255,227,255,199,255,143,255,159,255,255,191,115,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,251,255,51,255,7,255,7,255,47,255,103,255,71,252,255,248,255,245,255,239,243,223,231,191,207,255,159,255,255,111,255,159,255,255,255,255,255,255,255,255,255,255,255,255,255,255,252,243,254,225,255,193,255,131,255,135,255,207,255,255,255,251,4,255,1,255,3,255,135,255,207,255,255,255,255,255,255,199,252,135,252,131,255,168,255,176,255,152,255,193,255,255,255,255,127,255,255,127,255,31,255,63,255,127,255,255,255,255,255,255,192,255,208,255,193,255,192,255,193,255,227,255,255,255,255,255,15,255,223,255,63,255,31,255,95,255,191,255,255,255,255,224,255,252,255,254,255,254,243,255,227,255,199,255,207,255,255,125,255,251,255,247,255,239,255,31,255,255,255,255,255,255,255,255,197,255,192,255,192,255,207,248,223,255,207,255,224,255,255,255,87,255,7,255,7,255,255,15,255,255,255,255,7,255,255,247,254,247,254,247,252,247,252,247,254,243,254,255,224,255,255,47,255,47,255,239,63,175,127,175,127,207,127,255,7,255,255,255,240,255,252,255,254,255,254,255,254,255,254,255,254,255,255,255,15,255,63,255,127,255,31,255,63,255,31,255,127,255,255,255,255,248,255,243,255,240,255,248,255,247,255,239,255,223,255,255,255,31,255,207,255,15,255,31,255,239,255,215,255,235,255,255,255,248,255,243,255,240,255,248,255,247,255,239,255,215,239,27,231,191,95,227,63,237,63,227,63,237,63,45,255,255,255,27,231,175,95,243,31,239,63,233,63,237,63,19,255,255,255,27,231,191,95,227,63,237,63,227,63,237,63,35,255,255,255,35,255,123,255,247,127,119,255,193,255,247,255,23,255,255,255,255,255,31,255,207,255,15,255,31,255,239,127,247,63,75,255,255,255,255,255,255,143,159,224,231,248,185,222,222,231,223,225,255,255,255,191,255,31,255,31,255,63,191,111,127,207,255,143,255,255,255,248,255,243,253,231,250,207,244,159,249,158,243,157,255,255,255,31,255,207,63,231,95,179,207,121,143,249,47,249,255,255,255,255,255,252,255,252,255,252,255,254,255,253,255,252,255,255,255,255,255,59,127,131,143,115,255,3,255,255,143,251,255,255,242,255,243,253,247,255,248,255,248,255,203,255,199,252,255,255,127,255,111,191,111,255,159,247,247,255,251,15,255,247,223,255,223,255,223,255,223,255,223,255,231,255,248,255,255,255,227,255,227,255,227,255,235,255,219,255,231,255,31,255,255,255,216,231,223,224,223,224,223,224,222,225,231,248,248,255,255,255,27,231,163,95,227,31,235,23,219,39,231,31,31,255,255,255,217,255,221,254,223,252,221,255,223,255,231,255,248,255,255,255,35,255,99,255,227,127,99,255,219,255,231,255,31,255,255,255,211,255,213,254,219,254,215,252,221,255,231,255,249,255,255,255,203,255,171,127,219,127,235,63,123,255,103,255,95,255,255,255,223,224,223,224,191,192,191,192,191,192,206,241,240,255,255,255,255,15,255,135,255,65,61,227,99,255,127,255,255,255,255,255,246,155,248,207,253,231,255,243,255,254,255,252,255,252,255,255,111,249,223,243,191,231,255,207,255,127,255,63,255,63,255,255,254,253,253,254,254,251,253,227,243,204,255,128,255,128,255,255,255,115,127,131,255,7,127,135,255,11,255,3,255,35,255,255,227,255,224,255,242,255,252,255,248,255,248,255,254,255,255,255,15,251,7,255,119,255,255,143,255,151,255,151,255,31,255,255,255,255,255,242,253,243,255,247,255,248,255,248,255,203,252,199,255,255,255,127,191,111,255,111,247,159,255,247,15,251,247,255,255,255,255,254,255,248,255,240,255,240,255,224,255,192,255,128,255,255,255,127,255,31,191,79,31,239,143,119,239,19,231,25,255,255,255,255,252,255,243,252,239,243,239,247,215,239,223,237,255,255,255,255,63,255,207,255,183,255,23,255,187,255,219,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,231,255,199,255,143,255,31,255,63,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,255,255,255,241,251,229,247,201,239,147,223,167,255,15,255,63,255,127,255,255,195,255,249,255,195,255,249,255,67,255,255,255,255,255,255,255,255,255,247,255,240,255,244,251,247,248,247,248,255,255,252,255,240,255,231,248,239,240,223,224,219,228,217,230,255,255,199,255,192,255,216,255,223,239,220,239,217,239,211,238,255,255,243,239,43,255,239,255,131,125,239,255,171,127,123,175,255,255,255,252,255,243,251,207,251,143,251,15,253,7,254,147,255,227,255,224,255,242,255,252,255,248,255,248,255,254,255,255,251,15,255,7,255,119,143,255,151,255,151,255,31,255,255,255,255,128,255,128,255,192,251,255,240,255,240,255,248,255,255,255,255,1,255,97,159,243,31,255,15,255,15,255,31,255,255,255,219,246,213,239,236,243,224,255,240,255,252,255,255,255,255,255,203,255,251,127,247,175,247,15,207,63,63,255,255,255,255,255,244,255,250,247,253,251,254,229,255,199,255,207,255,255,255,255,127,255,255,255,243,255,227,255,243,255,243,255,97,255,255,255,227,255,245,251,254,241,236,251,198,255,143,255,159,255,255,255,255,127,255,255,227,255,217,255,243,255,231,255,65,255,255,255,255,127,255,255,243,255,227,255,211,255,193,255,115,255,255,255,246,249,247,249,251,252,253,254,254,255,255,255,255,255,255,255,220,231,220,227,238,243,239,241,247,248,249,254,254,255,255,255,222,229,221,226,251,228,239,249,198,187,233,255,252,239,255,255,251,55,219,119,187,247,119,239,239,223,223,63,63,255,255,255,255,209,255,224,231,255,248,255,255,231,255,248,255,255,255,255,255,255,255,255,227,255,221,255,190,255,191,255,191,255,191,255,255,255,255,255,227,255,221,227,190,193,191,192,191,192,191,192,255,255,255,248,254,241,252,243,254,225,248,231,252,227,240,207,255,255,255,127,247,59,103,185,123,189,127,173,255,77,239,85,255,255,248,255,231,255,223,254,223,252,191,248,185,255,184,255,255,255,255,255,255,255,248,255,247,255,239,255,238,255,241,255,255,255,31,255,111,255,247,255,123,255,187,255,221,255,221,255,255,255,254,255,254,255,252,255,253,255,254,255,254,255,255,255,127,255,63,255,63,255,31,255,31,255,191,255,191,255,127,255,255,255,255,255,199,255,223,248,255,231,251,255,227,255,255,255,255,255,255,227,255,23,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,253,255,249,255,248,255,248,255,252,255,255,255,255,63,255,255,191,191,95,191,95,255,31,255,63,255,255,255,255,255,225,255,237,255,237,255,193,255,159,255,159,255,255,255,255,255,69,255,1,255,171,255,199,255,207,255,199,255,223,255,255,201,255,182,201,190,193,190,193,221,227,235,247,247,255,223,255,239,255,247,255,251,255,253,255,254,255,255,255,255,255,223,224,239,240,247,248,251,252,253,254,254,255,255,255,255,255,249,198,225,158,253,159,251,157,223,186,239,220,255,227,255,255,231,155,195,191,195,63,131,127,135,127,135,127,255,135,255,255,220,191,222,191,231,159,248,199,255,192,255,224,255,248,255,255,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,255,189,255,189,255,189,255,219,255,231,255,255,255,255,255,255,254,255,252,255,252,255,248,255,250,255,253,255,253,255,254,127,255,63,255,63,255,31,255,127,159,255,63,255,63,255,127,255,255,255,255,255,199,248,223,231,255,255,251,255,227,255,255,255,255,227,255,23,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,254,253,252,251,253,250,255,251,255,248,255,255,255,255,31,255,127,159,255,95,191,223,127,191,255,127,255,255,255,255,255,231,255,219,255,165,231,189,255,219,255,231,255,255,255,255,255,231,247,203,239,213,239,149,223,169,255,195,255,255,255,255,255,255,235,255,213,235,221,227,235,247,247,255,255,255,255,255,227,255,217,255,217,255,179,255,179,255,135,255,255,255,255,255,227,255,243,255,231,255,231,255,207,255,135,255,255,255,255,255,227,255,217,255,243,255,231,255,197,255,147,255,255,255,255,255,193,255,243,255,199,255,243,255,179,255,135,255,255,255,255,255,217,255,209,255,179,255,129,255,231,255,199,255,255,255,255,255,225,255,207,255,199,255,243,255,243,255,135,255,255,255,255,255,241,255,231,255,199,255,147,255,179,255,135,255,255,255,255,255,227,255,217,255,185,255,243,255,231,255,207,255,255,255,255,255,227,255,217,255,193,255,179,255,179,255,135,255,255,255,255,255,227,255,217,255,217,255,195,255,243,255,135,255,255,255,255,255,255,255,231,255,231,255,255,255,207,255,207,255,255,255,255,255,254,255,252,255,249,255,147,255,199,255,231,255,255,255,255,255,255,255,231,255,231,255,131,255,207,255,207,255,255,255,255,255,255,255,255,255,255,255,131,255,255,255,255,255,255,255,215,255,147,255,17,255,29,255,1,255,131,255,199,255,255,255,255,255,201,255,182,255,190,255,190,255,221,255,235,255,247,255,255,239,255,199,255,41,255,171,255,131,255,17,255,57,255,255,255,255,255,239,255,199,255,199,255,131,255,1,255,1,255,255,251,255,225,255,192,255,192,255,192,255,192,255,225,255,255,255,255,139,255,31,243,255,35,255,243,255,243,63,225,255,255,255,255,139,255,63,227,255,89,255,243,255,231,127,193,255,255,255,255,139,255,127,195,255,121,255,195,255,249,127,195,255,255,255,255,255,255,223,239,191,247,159,251,207,253,231,254,243,254,243,249,255,252,255,254,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,63,255,31,255,143,255,199,255,231,255,254,255,253,207,251,159,247,251,239,243,255,247,255,255,255,255,255,255,225,255,241,255,241,255,237,255,223,255,191,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,255,255,255,255,255,255,255,248,255,224,255,135,255,31,255,127,255,252,255,249,255,249,255,243,255,243,255,231,255,231,255,231]},{"1630208":[75,190,126,3,188,124,185,121,37,1,3,3,6,255,255,42]},{"1630225":[1,255,127,38,255]},{"1630232":[132,38]},{"1630235":[3,179,179,243,243,35,255,1,223,223,42,255,14]},{"1630250":[255,239,16,220,39,178,79,97,159,192,63,128,127,39]},{"1630265":[131,72]},{"1630268":[131,72]},{"1630271":[69]},{"1630273":[255,137,24]},{"1630277":[67,255]},{"1630280":[10,191]},{"1630283":[159]},{"1630285":[207]},{"1630287":[224]},{"1630289":[127]},{"1630291":[245,34]},{"1630294":[5,123,123,59,31,128,138,69,127,255,5,120,248,183,127,192,63,67,255]},{"1630314":[3,63,31,15,7,133,92]},{"1630322":[3,128,127,255,127,67,128]},{"1630330":[132,96]},{"1630333":[131,25]},{"1630337":[127,131,87]},{"1630341":[11,112,143,112,144,227,35,199,68,143,136,159,144,67,191,160,224,39]},{"1630360":[15,28,56,114,102,70,70,74,181,177,251,65,115,189,191,244,117,251,11,255,71,255,64]},{"1630384":[132,204,124,14,7,32,48,127,128,95,160,159,96,127,224,71,159,128,35]},{"1630404":[35,96,4,255,222,255,237,253,34,241,2,243,146,187,68]},{"1630420":[63,7,33,51,63,63,94,196,192,192,38,255,7,179,255,77,77,12,76]},{"1630440":[206,35]},{"1630443":[20,76,254,191,179,49,96,159,76,179,174,113,126,225,182,169,186,173,189,174,172,191,35]},{"1630467":[35,64,224,38,7]},{"1630473":[12,4,25,8,59,24,115,48,241,112,176,48,188,60]},{"1630488":[3,7,7,15,15,79,67,2]},{"1630497":[34]},{"1630499":[28]},{"1630501":[24]},{"1630503":[28]},{"1630505":[36]},{"1630507":[98]},{"1630509":[2,40]},{"1630512":[7,179,115,167,103,143,79,159,95,67,191,127,13,158,126,206,62,12,24,48,32]},{"1630535":[1,1,223,222,67,95,94,1,63,62,67,47,46,3,31,30,23,22,35,224,34,240]},{"1630558":[248,140,24]},{"1630562":[34]},{"1630564":[39,255,5,155,103,205,51,235,20,69,233,23,3,105,151,185,199,37,112,13,48,16,128,127,15,255,224,241,1,242,3,132,5,200,67,135,202,7]},{"1630604":[14,12,120,50,48,48,73,255]},{"1630613":[15,191]},{"1630616":[223]},{"1630618":[224]},{"1630620":[138,128,27,59,59,123,59,31,36,60,67,66,102,4,90,126,219,255,231,131,107]},{"1630642":[4]},{"1630644":[195,153,153,129,35]},{"1630650":[7,128]},{"1630653":[128,127,192,64,159,31,67,166,39,13,191,63,143,63,127]},{"1630669":[63,96,88,88,64,64,111,160,67,127,176,11,119,184,127,159,127,128,64,191,255,63,22,7,132,163]},{"1630696":[8]},{"1630698":[255,65,255,33,255,35,255,7,99,253,131,108]},{"1630711":[2,60,28,24,36]},{"1630717":[5,159,128,255,224,255]},{"1630724":[67,31,32,23,159,160,223,96,223,32,96]},{"1630737":[192,192,64]},{"1630742":[255,254,254,252,252,224,241,144,243,112,68,255,248,6,254,1,3,31,126,252,120,132,101]},{"1630766":[26,184,255,240,247,224,231,192,207,136,255,112,255,227]},{"1630782":[8,24,56,120,240,96,169,190,242,237,246,9,67,158,161,6,190,161,254,97,252,35,64,131,74,1,8,72,8]},{"1630812":[158,30,135,7,195,67,67,248,120,15,124,60,63,15,127,7,97,120,60,7,7,3]},{"1630836":[232,247,67,240,239,1,208,239,67,224,223,67,160,223,39]},{"1630852":[15,246,207,214,239,254,231,234,247,253,243,254,249,255,252,255,254,141,180,1,132,27,3,134,190,1,41]},{"1630880":[12,253,254,2,252,254]},{"1630887":[255,1,2,253,255,252,255,98,255]},{"1630897":[1,34]},{"1630900":[3,190,126,254,62,67,62,94,3,190,222,222,62,67,190,126,3,1,1,129,129,36,1]},{"1630924":[254,149,98]},{"1630928":[79,190,126,39,1,5,255,255,15,15,3,3,35,1,141,186,1,3,142,62,192,64,67,128,127,2,255]},{"1630956":[255,132,173,3,1,65,63,37]},{"1630965":[224,47,191,184,247,244,251,10,60,4,190,130,159,135,207,64,239,32,122,12,6,195,73,96,48,22,127,1,191,129,95,65,47,33,23,17,243,241,255,1,255,65,184,220,236,244,248,12]},{"1631014":[60,71,95,160,3,122,133,96,159,131,76,2,138,112]},{"1631030":[49,68,255,243,67,247,255,1,227,255,136,247,2,55]},{"1631045":[11,122,167,117,174,107,188,119,184,74,181,112,143,139,252,3,10,80,96,240,208,160,192,96,160,192,64,128,132,255]},{"1631076":[23,143,15,31,31,63,127,255,255,102,158,50,206,153,231,204,243,231,248,243,252,248,255,127,255,135,152,3,2,63,255,31,68,255,15]},{"1631112":[159,36,255]},{"1631116":[127,137,111]},{"1631120":[46,255,39]},{"1631124":[69,189,126,69,161,126,67,189,126,137,184,1,5,1,1,2,2,6,6,35,14,35,30,17,255,255,253,249,241,241,225,225,255]},{"1631158":[3,252,254,1,3,253,2,252,132,96,3,132,25]},{"1631172":[131,68,3,11,255,254,253,254,254,253,250,253,252,251,244,251,67,248,247,39]},{"1631193":[19,221,227,222,233,213,230,242,235,232,247,239,240,239,242,236,243]},{"1631212":[8,4,133,188,1,13,127,255,159,127,224,31,31,224,128,127,231,31,242,14,38]},{"1631234":[1,97,253,68,222,241,3,253,222,1]},{"1631245":[67,1,254,133,25]},{"1631251":[131,15,3,224,44,224,97,163,98,113,178,89,186,188,221,174,222,215,239,219,231,30,28,12,4,2,1]},{"1631280":[135,63,167,63,151,95,143,111,128,112,192,63,224,31,255]},{"1631296":[64,64,32,16,15,132,49,3,9,251,252,246,249,237,243,251,231,223,231,67,247,207,137,184,1]},{"1631322":[3,131,97,1,26,12,12,11,5,3,5,251,253,250,255,255,252,248,251,251,3,251,253,250,252,251,254,249,3]},{"1631352":[248,248,133,30,3,34,251]},{"1631360":[252,131,163]},{"1631364":[67,190,126,11,254,62,62,222,30,238,14,246,6,254,253,253,38,1]},{"1631383":[3,35,62,3,254,254,62,254,71,190,126,1,193,193,37,1,255]},{"1638400":[116]},{"1638402":[194]},{"1638404":[184]},{"1638406":[190]},{"1638408":[255]},{"1638410":[177]},{"1638412":[170]},{"1638414":[191]},{"1638416":[174]},{"1638418":[255]},{"1638420":[175]},{"1638422":[184]},{"1638424":[190]},{"1638426":[183]},{"1638428":[173,117]},{"1638431":[189]},{"1638433":[177]},{"1638435":[174]},{"1638437":[255]},{"1638439":[182]},{"1638441":[170]},{"1638443":[185]},{"1638445":[255]},{"1638447":[184]},{"1638449":[175,127,127,116]},{"1638454":[194]},{"1638456":[184]},{"1638458":[190]},{"1638460":[255]},{"1638462":[177]},{"1638464":[170]},{"1638466":[191]},{"1638468":[174]},{"1638470":[255]},{"1638472":[175]},{"1638474":[184]},{"1638476":[190]},{"1638478":[183]},{"1638480":[173,117]},{"1638483":[189]},{"1638485":[177]},{"1638487":[174]},{"1638489":[255]},{"1638491":[172]},{"1638493":[184]},{"1638495":[182]},{"1638497":[185]},{"1638499":[170]},{"1638501":[188]},{"1638503":[188]},{"1638505":[255]},{"1638507":[184]},{"1638509":[175,127,127,116]},{"1638514":[184]},{"1638516":[177]},{"1638518":[255]},{"1638520":[181]},{"1638522":[184]},{"1638524":[184]},{"1638526":[180]},{"1638528":[199]},{"1638530":[255]},{"1638532":[178]},{"1638534":[189]},{"1638536":[216]},{"1638538":[188,117]},{"1638541":[189]},{"1638543":[177]},{"1638545":[174]},{"1638547":[255]},{"1638549":[171]},{"1638551":[178]},{"1638553":[176]},{"1638555":[255]},{"1638557":[180]},{"1638559":[174]},{"1638561":[194]},{"1638563":[255]},{"1638565":[184]},{"1638567":[175,127,127,116]},{"1638572":[189]},{"1638574":[177]},{"1638576":[178]},{"1638578":[188]},{"1638580":[255]},{"1638582":[178]},{"1638584":[188]},{"1638586":[255]},{"1638588":[170,117]},{"1638591":[188]},{"1638593":[182]},{"1638595":[170]},{"1638597":[181]},{"1638599":[181]},{"1638601":[255]},{"1638603":[180]},{"1638605":[174]},{"1638607":[194]},{"1638609":[255]},{"1638611":[189]},{"1638613":[184,127,127,118]},{"1638618":[181]},{"1638620":[178]},{"1638622":[176]},{"1638624":[177]},{"1638626":[189]},{"1638628":[255]},{"1638630":[192]},{"1638632":[184]},{"1638634":[187]},{"1638636":[181]},{"1638638":[173,127,127,118]},{"1638643":[173]},{"1638645":[170]},{"1638647":[187]},{"1638649":[180]},{"1638651":[255]},{"1638653":[192]},{"1638655":[184]},{"1638657":[187]},{"1638659":[181]},{"1638661":[173,127,127,118]},{"1638666":[176]},{"1638668":[170]},{"1638670":[183]},{"1638672":[184]},{"1638674":[183]},{"1638676":[188]},{"1638678":[255]},{"1638680":[189]},{"1638682":[184]},{"1638684":[192]},{"1638686":[174]},{"1638688":[187,127,127,118]},{"1638693":[189]},{"1638695":[190]},{"1638697":[187]},{"1638699":[189]},{"1638701":[181]},{"1638703":[174]},{"1638705":[255]},{"1638707":[187]},{"1638709":[184]},{"1638711":[172]},{"1638713":[180,127,127,118]},{"1638718":[189]},{"1638720":[177]},{"1638722":[178]},{"1638724":[174]},{"1638726":[191]},{"1638728":[174]},{"1638730":[188]},{"1638732":[255]},{"1638734":[189]},{"1638736":[184]},{"1638738":[192]},{"1638740":[183,127,127,118]},{"1638745":[189]},{"1638747":[184]},{"1638749":[192]},{"1638751":[174]},{"1638753":[187]},{"1638755":[255]},{"1638757":[184]},{"1638759":[175]},{"1638761":[255]},{"1638763":[177]},{"1638765":[174]},{"1638767":[187]},{"1638769":[170,127,127,118]},{"1638774":[178]},{"1638776":[172]},{"1638778":[174]},{"1638780":[255]},{"1638782":[185]},{"1638784":[170]},{"1638786":[181]},{"1638788":[170]},{"1638790":[172]},{"1638792":[174,127,127,118]},{"1638797":[188]},{"1638799":[180]},{"1638801":[190]},{"1638803":[181]},{"1638805":[181]},{"1638807":[255]},{"1638809":[192]},{"1638811":[184]},{"1638813":[184]},{"1638815":[173]},{"1638817":[188,127,127,118]},{"1638822":[182]},{"1638824":[178]},{"1638826":[188]},{"1638828":[174]},{"1638830":[187]},{"1638832":[194]},{"1638834":[255]},{"1638836":[182]},{"1638838":[178]},{"1638840":[187]},{"1638842":[174,127,127,118]},{"1638847":[173]},{"1638849":[170]},{"1638851":[187]},{"1638853":[180]},{"1638855":[255]},{"1638857":[185]},{"1638859":[170]},{"1638861":[181]},{"1638863":[170]},{"1638865":[172]},{"1638867":[174,127,127,118]},{"1638872":[188]},{"1638874":[192]},{"1638876":[170]},{"1638878":[182]},{"1638880":[185]},{"1638882":[255]},{"1638884":[185]},{"1638886":[170]},{"1638888":[181]},{"1638890":[170]},{"1638892":[172]},{"1638894":[174,127,127,118]},{"1638899":[172]},{"1638901":[170]},{"1638903":[188]},{"1638905":[189]},{"1638907":[181]},{"1638909":[174]},{"1638911":[255]},{"1638913":[189]},{"1638915":[184]},{"1638917":[192]},{"1638919":[174]},{"1638921":[187,127,127,118]},{"1638926":[173]},{"1638928":[174]},{"1638930":[188]},{"1638932":[174]},{"1638934":[187]},{"1638936":[189]},{"1638938":[255]},{"1638940":[185]},{"1638942":[170]},{"1638944":[181]},{"1638946":[170]},{"1638948":[172]},{"1638950":[174,127,127,118]},{"1638955":[174]},{"1638957":[170]},{"1638959":[188]},{"1638961":[189]},{"1638963":[174]},{"1638965":[187]},{"1638967":[183]},{"1638969":[255]},{"1638971":[185]},{"1638973":[170]},{"1638975":[181]},{"1638977":[170]},{"1638979":[172]},{"1638981":[174,127,127,118]},{"1638986":[177]},{"1638988":[194]},{"1638990":[187]},{"1638992":[190]},{"1638994":[181]},{"1638996":[174]},{"1638998":[255]},{"1639000":[172]},{"1639002":[170]},{"1639004":[188]},{"1639006":[189]},{"1639008":[181]},{"1639010":[174,127,127,118]},{"1639015":[177]},{"1639017":[194]},{"1639019":[187]},{"1639021":[190]},{"1639023":[181]},{"1639025":[174]},{"1639027":[255]},{"1639029":[172]},{"1639031":[170]},{"1639033":[188]},{"1639035":[189]},{"1639037":[181]},{"1639039":[174,127,127,118]},{"1639044":[189]},{"1639046":[177]},{"1639048":[178]},{"1639050":[188]},{"1639052":[255]},{"1639054":[173]},{"1639056":[190]},{"1639058":[183]},{"1639060":[176]},{"1639062":[174]},{"1639064":[184]},{"1639066":[183,127,127]},{"1662928":[110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1662946":[98,41,110,41,107,41,105,41,127]},{"1662956":[111,41,97,41,106,41,112,41,127]},{"1662966":[112,41,107,41,127]},{"1662972":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1662988":[127]},{"1662990":[127]},{"1662992":[127]},{"1662994":[127]},{"1662996":[127]},{"1662998":[127]},{"1663000":[127]},{"1663002":[127]},{"1663004":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1663020":[127]},{"1663022":[127]},{"1663024":[127]},{"1663026":[127]},{"1663028":[127]},{"1663030":[127]},{"1663032":[127]},{"1663034":[127]},{"1663036":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1663052":[127]},{"1663054":[127]},{"1663056":[127]},{"1663058":[127]},{"1663060":[127]},{"1663062":[127]},{"1663064":[127]},{"1663066":[127]},{"1663068":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1663084":[127]},{"1663086":[127]},{"1663088":[127]},{"1663090":[127]},{"1663092":[127]},{"1663094":[127]},{"1663096":[127]},{"1663098":[127]},{"1663100":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1663116":[127]},{"1663118":[127]},{"1663120":[127]},{"1663122":[127]},{"1663124":[127]},{"1663126":[127]},{"1663128":[127]},{"1663130":[127]},{"1663132":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1663148":[127]},{"1663150":[127]},{"1663152":[127]},{"1663154":[127]},{"1663156":[127]},{"1663158":[127]},{"1663160":[127]},{"1663162":[127]},{"1663164":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1663180":[127]},{"1663182":[127]},{"1663184":[127]},{"1663186":[127]},{"1663188":[127]},{"1663190":[127]},{"1663192":[127]},{"1663194":[127]},{"1663196":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1663212":[127]},{"1663214":[127]},{"1663216":[127]},{"1663218":[127]},{"1663220":[127]},{"1663222":[127]},{"1663224":[127]},{"1663226":[127]},{"1663228":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1663244":[127]},{"1663246":[127]},{"1663248":[127]},{"1663250":[127]},{"1663252":[127]},{"1663254":[127]},{"1663256":[127]},{"1663258":[127]},{"1663260":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1663278":[127]},{"1663280":[127]},{"1663282":[127]},{"1663284":[127]},{"1663286":[127]},{"1663288":[127]},{"1663290":[127]},{"1663292":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1663310":[127]},{"1663312":[127]},{"1663314":[127]},{"1663316":[127]},{"1663318":[127]},{"1663320":[127]},{"1663322":[127]},{"1663324":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1663342":[127]},{"1663344":[127]},{"1663346":[127]},{"1663348":[127]},{"1663350":[127]},{"1663352":[127]},{"1663354":[127]},{"1663356":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1663374":[127]},{"1663376":[127]},{"1663378":[127]},{"1663380":[127]},{"1663382":[127]},{"1663384":[127]},{"1663386":[127]},{"1663388":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1663406":[127]},{"1663408":[127]},{"1663410":[127]},{"1663412":[127]},{"1663414":[127]},{"1663416":[127]},{"1663418":[127]},{"1663420":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1663438":[127]},{"1663440":[127]},{"1663442":[127]},{"1663444":[127]},{"1663446":[127]},{"1663448":[127]},{"1663450":[127]},{"1663452":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1663470":[127]},{"1663472":[127]},{"1663474":[127]},{"1663476":[127]},{"1663478":[127]},{"1663480":[127]},{"1663482":[127]},{"1663484":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1663502":[127]},{"1663504":[127]},{"1663506":[127]},{"1663508":[127]},{"1663510":[127]},{"1663512":[127]},{"1663514":[127]},{"1663516":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1663534":[127]},{"1663536":[127]},{"1663538":[127]},{"1663540":[127]},{"1663542":[127]},{"1663544":[127]},{"1663546":[127]},{"1663548":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1663566":[127]},{"1663568":[127]},{"1663570":[127]},{"1663572":[127]},{"1663574":[127]},{"1663576":[127]},{"1663578":[127]},{"1663580":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1663598":[127]},{"1663600":[127]},{"1663602":[127]},{"1663604":[127]},{"1663606":[127]},{"1663608":[127]},{"1663610":[127]},{"1663612":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1663630":[127]},{"1663632":[127]},{"1663634":[127]},{"1663636":[127]},{"1663638":[127]},{"1663640":[127]},{"1663642":[127]},{"1663644":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1663662":[127]},{"1663664":[127]},{"1663666":[127]},{"1663668":[127]},{"1663670":[127]},{"1663672":[127]},{"1663674":[127]},{"1663676":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1663694":[127]},{"1663696":[127]},{"1663698":[127]},{"1663700":[127]},{"1663702":[127]},{"1663704":[127]},{"1663706":[127]},{"1663708":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1663726":[127]},{"1663728":[127]},{"1663730":[127]},{"1663732":[127]},{"1663734":[127]},{"1663736":[127]},{"1663738":[127]},{"1663740":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1663758":[127]},{"1663760":[127]},{"1663762":[127]},{"1663764":[127]},{"1663766":[127]},{"1663768":[127]},{"1663770":[127]},{"1663772":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1663790":[127]},{"1663792":[127]},{"1663794":[127]},{"1663796":[127]},{"1663798":[127]},{"1663800":[127]},{"1663802":[127]},{"1663804":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1663822":[127]},{"1663824":[127]},{"1663826":[127]},{"1663828":[127]},{"1663830":[127]},{"1663832":[127]},{"1663834":[127]},{"1663836":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1663854":[127]},{"1663856":[127]},{"1663858":[127]},{"1663860":[127]},{"1663862":[127]},{"1663864":[127]},{"1663866":[127]},{"1663868":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1663886":[127]},{"1663888":[127]},{"1663890":[127]},{"1663892":[127]},{"1663894":[127]},{"1663896":[127]},{"1663898":[127]},{"1663900":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1663918":[127]},{"1663920":[127]},{"1663922":[127]},{"1663924":[127]},{"1663926":[127]},{"1663928":[127]},{"1663930":[127]},{"1663932":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1663950":[127]},{"1663952":[127]},{"1663954":[127]},{"1663956":[127]},{"1663958":[127]},{"1663960":[127]},{"1663962":[127]},{"1663964":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1663982":[127]},{"1663984":[127]},{"1663986":[127]},{"1663988":[127]},{"1663990":[127]},{"1663992":[127]},{"1663994":[127]},{"1663996":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1664014":[127]},{"1664016":[127]},{"1664018":[127]},{"1664020":[127]},{"1664022":[127]},{"1664024":[127]},{"1664026":[127]},{"1664028":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1664046":[127]},{"1664048":[127]},{"1664050":[127]},{"1664052":[127]},{"1664054":[127]},{"1664056":[127]},{"1664058":[127]},{"1664060":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1664078":[127]},{"1664080":[127]},{"1664082":[127]},{"1664084":[127]},{"1664086":[127]},{"1664088":[127]},{"1664090":[127]},{"1664092":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1664110":[127]},{"1664112":[127]},{"1664114":[127]},{"1664116":[127]},{"1664118":[127]},{"1664120":[127]},{"1664122":[127]},{"1664124":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1664142":[127]},{"1664144":[127]},{"1664146":[127]},{"1664148":[127]},{"1664150":[127]},{"1664152":[127]},{"1664154":[127]},{"1664156":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1664174":[127]},{"1664176":[127]},{"1664178":[127]},{"1664180":[127]},{"1664182":[127]},{"1664184":[127]},{"1664186":[127]},{"1664188":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1664206":[127]},{"1664208":[127]},{"1664210":[127]},{"1664212":[127]},{"1664214":[127]},{"1664216":[127]},{"1664218":[127]},{"1664220":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1664238":[127]},{"1664240":[127]},{"1664242":[127]},{"1664244":[127]},{"1664246":[127]},{"1664248":[127]},{"1664250":[127]},{"1664252":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1664270":[127]},{"1664272":[127]},{"1664274":[127]},{"1664276":[127]},{"1664278":[127]},{"1664280":[127]},{"1664282":[127]},{"1664284":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1664302":[127]},{"1664304":[127]},{"1664306":[127]},{"1664308":[127]},{"1664310":[127]},{"1664312":[127]},{"1664314":[127]},{"1664316":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1664334":[127]},{"1664336":[127]},{"1664338":[127]},{"1664340":[127]},{"1664342":[127]},{"1664344":[127]},{"1664346":[127]},{"1664348":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1664366":[127]},{"1664368":[127]},{"1664370":[127]},{"1664372":[127]},{"1664374":[127]},{"1664376":[127]},{"1664378":[127]},{"1664380":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1664398":[127]},{"1664400":[127]},{"1664402":[127]},{"1664404":[127]},{"1664406":[127]},{"1664408":[127]},{"1664410":[127]},{"1664412":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1664430":[127]},{"1664432":[127]},{"1664434":[127]},{"1664436":[127]},{"1664438":[127]},{"1664440":[127]},{"1664442":[127]},{"1664444":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1664462":[127]},{"1664464":[127]},{"1664466":[127]},{"1664468":[127]},{"1664470":[127]},{"1664472":[127]},{"1664474":[127]},{"1664476":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1664494":[127]},{"1664496":[127]},{"1664498":[127]},{"1664500":[127]},{"1664502":[127]},{"1664504":[127]},{"1664506":[127]},{"1664508":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1664526":[127]},{"1664528":[127]},{"1664530":[127]},{"1664532":[127]},{"1664534":[127]},{"1664536":[127]},{"1664538":[127]},{"1664540":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1664558":[127]},{"1664560":[127]},{"1664562":[127]},{"1664564":[127]},{"1664566":[127]},{"1664568":[127]},{"1664570":[127]},{"1664572":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1664590":[127]},{"1664592":[127]},{"1664594":[127]},{"1664596":[127]},{"1664598":[127]},{"1664600":[127]},{"1664602":[127]},{"1664604":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1664622":[127]},{"1664624":[127]},{"1664626":[127]},{"1664628":[127]},{"1664630":[127]},{"1664632":[127]},{"1664634":[127]},{"1664636":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1664654":[127]},{"1664656":[127]},{"1664658":[127]},{"1664660":[127]},{"1664662":[127]},{"1664664":[127]},{"1664666":[127]},{"1664668":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1664686":[127]},{"1664688":[127]},{"1664690":[127]},{"1664692":[127]},{"1664694":[127]},{"1664696":[127]},{"1664698":[127]},{"1664700":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1664718":[127]},{"1664720":[127]},{"1664722":[127]},{"1664724":[127]},{"1664726":[127]},{"1664728":[127]},{"1664730":[127]},{"1664732":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1664750":[127]},{"1664752":[127]},{"1664754":[127]},{"1664756":[127]},{"1664758":[127]},{"1664760":[127]},{"1664762":[127]},{"1664764":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1664782":[127]},{"1664784":[127]},{"1664786":[127]},{"1664788":[127]},{"1664790":[127]},{"1664792":[127]},{"1664794":[127]},{"1664796":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1664814":[127]},{"1664816":[127]},{"1664818":[127]},{"1664820":[127]},{"1664822":[127]},{"1664824":[127]},{"1664826":[127]},{"1664828":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1664846":[127]},{"1664848":[127]},{"1664850":[127]},{"1664852":[127]},{"1664854":[127]},{"1664856":[127]},{"1664858":[127]},{"1664860":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1664878":[127]},{"1664880":[127]},{"1664882":[127]},{"1664884":[127]},{"1664886":[127]},{"1664888":[127]},{"1664890":[127]},{"1664892":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1664910":[127]},{"1664912":[127]},{"1664914":[127]},{"1664916":[127]},{"1664918":[127]},{"1664920":[127]},{"1664922":[127]},{"1664924":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1664942":[127]},{"1664944":[127]},{"1664946":[127]},{"1664948":[127]},{"1664950":[127]},{"1664952":[127]},{"1664954":[127]},{"1664956":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1664974":[127]},{"1664976":[127]},{"1664978":[127]},{"1664980":[127]},{"1664982":[127]},{"1664984":[127]},{"1664986":[127]},{"1664988":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1665006":[127]},{"1665008":[127]},{"1665010":[127]},{"1665012":[127]},{"1665014":[127]},{"1665016":[127]},{"1665018":[127]},{"1665020":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,124,41,127]},{"1665038":[127]},{"1665040":[127]},{"1665042":[127]},{"1665044":[127]},{"1665046":[127]},{"1665048":[127]},{"1665050":[127]},{"1665052":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,125,41,127]},{"1665070":[127]},{"1665072":[127]},{"1665074":[127]},{"1665076":[127]},{"1665078":[127]},{"1665080":[127]},{"1665082":[127]},{"1665084":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,126,41,127]},{"1665102":[127]},{"1665104":[127]},{"1665106":[127]},{"1665108":[127]},{"1665110":[127]},{"1665112":[127]},{"1665114":[127]},{"1665116":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127,41,127]},{"1665134":[127]},{"1665136":[127]},{"1665138":[127]},{"1665140":[127]},{"1665142":[127]},{"1665144":[127]},{"1665146":[127]},{"1665148":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,75,41,127]},{"1665166":[127]},{"1665168":[127]},{"1665170":[127]},{"1665172":[127]},{"1665174":[127]},{"1665176":[127]},{"1665178":[127]},{"1665180":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,119,41,127]},{"1665198":[127]},{"1665200":[127]},{"1665202":[127]},{"1665204":[127]},{"1665206":[127]},{"1665208":[127]},{"1665210":[127]},{"1665212":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,120,41,127]},{"1665230":[127]},{"1665232":[127]},{"1665234":[127]},{"1665236":[127]},{"1665238":[127]},{"1665240":[127]},{"1665242":[127]},{"1665244":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,121,41,127]},{"1665262":[127]},{"1665264":[127]},{"1665266":[127]},{"1665268":[127]},{"1665270":[127]},{"1665272":[127]},{"1665274":[127]},{"1665276":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,122,41,127]},{"1665294":[127]},{"1665296":[127]},{"1665298":[127]},{"1665300":[127]},{"1665302":[127]},{"1665304":[127]},{"1665306":[127]},{"1665308":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,123,41,127]},{"1665326":[127]},{"1665328":[127]},{"1665330":[127]},{"1665332":[127]},{"1665334":[127]},{"1665336":[127]},{"1665338":[127]},{"1665340":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,124,41,127]},{"1665358":[127]},{"1665360":[127]},{"1665362":[127]},{"1665364":[127]},{"1665366":[127]},{"1665368":[127]},{"1665370":[127]},{"1665372":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,125,41,127]},{"1665390":[127]},{"1665392":[127]},{"1665394":[127]},{"1665396":[127]},{"1665398":[127]},{"1665400":[127]},{"1665402":[127]},{"1665404":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,126,41,127]},{"1665422":[127]},{"1665424":[127]},{"1665426":[127]},{"1665428":[127]},{"1665430":[127]},{"1665432":[127]},{"1665434":[127]},{"1665436":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127,41,127]},{"1665454":[127]},{"1665456":[127]},{"1665458":[127]},{"1665460":[127]},{"1665462":[127]},{"1665464":[127]},{"1665466":[127]},{"1665468":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,75,41,127]},{"1665486":[127]},{"1665488":[127]},{"1665490":[127]},{"1665492":[127]},{"1665494":[127]},{"1665496":[127]},{"1665498":[127]},{"1665500":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,119,41,127]},{"1665518":[127]},{"1665520":[127]},{"1665522":[127]},{"1665524":[127]},{"1665526":[127]},{"1665528":[127]},{"1665530":[127]},{"1665532":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,120,41,127]},{"1665550":[127]},{"1665552":[127]},{"1665554":[127]},{"1665556":[127]},{"1665558":[127]},{"1665560":[127]},{"1665562":[127]},{"1665564":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,121,41,127]},{"1665582":[127]},{"1665584":[127]},{"1665586":[127]},{"1665588":[127]},{"1665590":[127]},{"1665592":[127]},{"1665594":[127]},{"1665596":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,122,41,127]},{"1665614":[127]},{"1665616":[127]},{"1665618":[127]},{"1665620":[127]},{"1665622":[127]},{"1665624":[127]},{"1665626":[127]},{"1665628":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,123,41,127]},{"1665646":[127]},{"1665648":[127]},{"1665650":[127]},{"1665652":[127]},{"1665654":[127]},{"1665656":[127]},{"1665658":[127]},{"1665660":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,124,41,127]},{"1665678":[127]},{"1665680":[127]},{"1665682":[127]},{"1665684":[127]},{"1665686":[127]},{"1665688":[127]},{"1665690":[127]},{"1665692":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,125,41,127]},{"1665710":[127]},{"1665712":[127]},{"1665714":[127]},{"1665716":[127]},{"1665718":[127]},{"1665720":[127]},{"1665722":[127]},{"1665724":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,126,41,127]},{"1665742":[127]},{"1665744":[127]},{"1665746":[127]},{"1665748":[127]},{"1665750":[127]},{"1665752":[127]},{"1665754":[127]},{"1665756":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127,41,127]},{"1665774":[127]},{"1665776":[127]},{"1665778":[127]},{"1665780":[127]},{"1665782":[127]},{"1665784":[127]},{"1665786":[127]},{"1665788":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,75,41,127]},{"1665806":[127]},{"1665808":[127]},{"1665810":[127]},{"1665812":[127]},{"1665814":[127]},{"1665816":[127]},{"1665818":[127]},{"1665820":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,119,41,127]},{"1665838":[127]},{"1665840":[127]},{"1665842":[127]},{"1665844":[127]},{"1665846":[127]},{"1665848":[127]},{"1665850":[127]},{"1665852":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,120,41,127]},{"1665870":[127]},{"1665872":[127]},{"1665874":[127]},{"1665876":[127]},{"1665878":[127]},{"1665880":[127]},{"1665882":[127]},{"1665884":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,121,41,127]},{"1665902":[127]},{"1665904":[127]},{"1665906":[127]},{"1665908":[127]},{"1665910":[127]},{"1665912":[127]},{"1665914":[127]},{"1665916":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,122,41,127]},{"1665934":[127]},{"1665936":[127]},{"1665938":[127]},{"1665940":[127]},{"1665942":[127]},{"1665944":[127]},{"1665946":[127]},{"1665948":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,123,41,127]},{"1665966":[127]},{"1665968":[127]},{"1665970":[127]},{"1665972":[127]},{"1665974":[127]},{"1665976":[127]},{"1665978":[127]},{"1665980":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,124,41,127]},{"1665998":[127]},{"1666000":[127]},{"1666002":[127]},{"1666004":[127]},{"1666006":[127]},{"1666008":[127]},{"1666010":[127]},{"1666012":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,125,41,127]},{"1666030":[127]},{"1666032":[127]},{"1666034":[127]},{"1666036":[127]},{"1666038":[127]},{"1666040":[127]},{"1666042":[127]},{"1666044":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,126,41,127]},{"1666062":[127]},{"1666064":[127]},{"1666066":[127]},{"1666068":[127]},{"1666070":[127]},{"1666072":[127]},{"1666074":[127]},{"1666076":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127,41,127]},{"1666094":[127]},{"1666096":[127]},{"1666098":[127]},{"1666100":[127]},{"1666102":[127]},{"1666104":[127]},{"1666106":[127]},{"1666108":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,75,41,127]},{"1666126":[127]},{"1666128":[127]},{"1666130":[127]},{"1666132":[127]},{"1666134":[127]},{"1666136":[127]},{"1666138":[127]},{"1666140":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,119,41,127]},{"1666160":[127]},{"1666162":[127]},{"1666164":[127]},{"1666166":[127]},{"1666168":[127]},{"1666170":[127]},{"1666172":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,120,41,127]},{"1666192":[127]},{"1666194":[127]},{"1666196":[127]},{"1666198":[127]},{"1666200":[127]},{"1666202":[127]},{"1666204":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,121,41,127]},{"1666224":[127]},{"1666226":[127]},{"1666228":[127]},{"1666230":[127]},{"1666232":[127]},{"1666234":[127]},{"1666236":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,122,41,127]},{"1666256":[127]},{"1666258":[127]},{"1666260":[127]},{"1666262":[127]},{"1666264":[127]},{"1666266":[127]},{"1666268":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,123,41,127]},{"1666288":[127]},{"1666290":[127]},{"1666292":[127]},{"1666294":[127]},{"1666296":[127]},{"1666298":[127]},{"1666300":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,124,41,127]},{"1666320":[127]},{"1666322":[127]},{"1666324":[127]},{"1666326":[127]},{"1666328":[127]},{"1666330":[127]},{"1666332":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,125,41,127]},{"1666352":[127]},{"1666354":[127]},{"1666356":[127]},{"1666358":[127]},{"1666360":[127]},{"1666362":[127]},{"1666364":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,126,41,127]},{"1666384":[127]},{"1666386":[127]},{"1666388":[127]},{"1666390":[127]},{"1666392":[127]},{"1666394":[127]},{"1666396":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127,41,127]},{"1666416":[127]},{"1666418":[127]},{"1666420":[127]},{"1666422":[127]},{"1666424":[127]},{"1666426":[127]},{"1666428":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,75,41,127]},{"1666448":[127]},{"1666450":[127]},{"1666452":[127]},{"1666454":[127]},{"1666456":[127]},{"1666458":[127]},{"1666460":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,119,41,127]},{"1666480":[127]},{"1666482":[127]},{"1666484":[127]},{"1666486":[127]},{"1666488":[127]},{"1666490":[127]},{"1666492":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,120,41,127]},{"1666512":[127]},{"1666514":[127]},{"1666516":[127]},{"1666518":[127]},{"1666520":[127]},{"1666522":[127]},{"1666524":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,121,41,127]},{"1666544":[127]},{"1666546":[127]},{"1666548":[127]},{"1666550":[127]},{"1666552":[127]},{"1666554":[127]},{"1666556":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,122,41,127]},{"1666576":[127]},{"1666578":[127]},{"1666580":[127]},{"1666582":[127]},{"1666584":[127]},{"1666586":[127]},{"1666588":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,123,41,127]},{"1666608":[127]},{"1666610":[127]},{"1666612":[127]},{"1666614":[127]},{"1666616":[127]},{"1666618":[127]},{"1666620":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,124,41,127]},{"1666640":[127]},{"1666642":[127]},{"1666644":[127]},{"1666646":[127]},{"1666648":[127]},{"1666650":[127]},{"1666652":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,125,41,127]},{"1666672":[127]},{"1666674":[127]},{"1666676":[127]},{"1666678":[127]},{"1666680":[127]},{"1666682":[127]},{"1666684":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,126,41,127]},{"1666704":[127]},{"1666706":[127]},{"1666708":[127]},{"1666710":[127]},{"1666712":[127]},{"1666714":[127]},{"1666716":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127,41,127]},{"1666736":[127]},{"1666738":[127]},{"1666740":[127]},{"1666742":[127]},{"1666744":[127]},{"1666746":[127]},{"1666748":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,75,41,127]},{"1666768":[127]},{"1666770":[127]},{"1666772":[127]},{"1666774":[127]},{"1666776":[127]},{"1666778":[127]},{"1666780":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,119,41,127]},{"1666800":[127]},{"1666802":[127]},{"1666804":[127]},{"1666806":[127]},{"1666808":[127]},{"1666810":[127]},{"1666812":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,120,41,127]},{"1666832":[127]},{"1666834":[127]},{"1666836":[127]},{"1666838":[127]},{"1666840":[127]},{"1666842":[127]},{"1666844":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,121,41,127]},{"1666864":[127]},{"1666866":[127]},{"1666868":[127]},{"1666870":[127]},{"1666872":[127]},{"1666874":[127]},{"1666876":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,122,41,127]},{"1666896":[127]},{"1666898":[127]},{"1666900":[127]},{"1666902":[127]},{"1666904":[127]},{"1666906":[127]},{"1666908":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,123,41,127]},{"1666928":[127]},{"1666930":[127]},{"1666932":[127]},{"1666934":[127]},{"1666936":[127]},{"1666938":[127]},{"1666940":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,124,41,127]},{"1666960":[127]},{"1666962":[127]},{"1666964":[127]},{"1666966":[127]},{"1666968":[127]},{"1666970":[127]},{"1666972":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,125,41,127]},{"1666992":[127]},{"1666994":[127]},{"1666996":[127]},{"1666998":[127]},{"1667000":[127]},{"1667002":[127]},{"1667004":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,126,41,127]},{"1667024":[127]},{"1667026":[127]},{"1667028":[127]},{"1667030":[127]},{"1667032":[127]},{"1667034":[127]},{"1667036":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127,41,127]},{"1667056":[127]},{"1667058":[127]},{"1667060":[127]},{"1667062":[127]},{"1667064":[127]},{"1667066":[127]},{"1667068":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,75,41,127]},{"1667088":[127]},{"1667090":[127]},{"1667092":[127]},{"1667094":[127]},{"1667096":[127]},{"1667098":[127]},{"1667100":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,119,41,127]},{"1667120":[127]},{"1667122":[127]},{"1667124":[127]},{"1667126":[127]},{"1667128":[127]},{"1667130":[127]},{"1667132":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,120,41,127]},{"1667152":[127]},{"1667154":[127]},{"1667156":[127]},{"1667158":[127]},{"1667160":[127]},{"1667162":[127]},{"1667164":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,121,41,127]},{"1667184":[127]},{"1667186":[127]},{"1667188":[127]},{"1667190":[127]},{"1667192":[127]},{"1667194":[127]},{"1667196":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,122,41,127]},{"1667216":[127]},{"1667218":[127]},{"1667220":[127]},{"1667222":[127]},{"1667224":[127]},{"1667226":[127]},{"1667228":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,123,41,127]},{"1667248":[127]},{"1667250":[127]},{"1667252":[127]},{"1667254":[127]},{"1667256":[127]},{"1667258":[127]},{"1667260":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,124,41,127]},{"1667280":[127]},{"1667282":[127]},{"1667284":[127]},{"1667286":[127]},{"1667288":[127]},{"1667290":[127]},{"1667292":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,125,41,127]},{"1667312":[127]},{"1667314":[127]},{"1667316":[127]},{"1667318":[127]},{"1667320":[127]},{"1667322":[127]},{"1667324":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,126,41,127]},{"1667344":[127]},{"1667346":[127]},{"1667348":[127]},{"1667350":[127]},{"1667352":[127]},{"1667354":[127]},{"1667356":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127,41,127]},{"1667376":[127]},{"1667378":[127]},{"1667380":[127]},{"1667382":[127]},{"1667384":[127]},{"1667386":[127]},{"1667388":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,75,41,127]},{"1667408":[127]},{"1667410":[127]},{"1667412":[127]},{"1667414":[127]},{"1667416":[127]},{"1667418":[127]},{"1667420":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,119,41,127]},{"1667440":[127]},{"1667442":[127]},{"1667444":[127]},{"1667446":[127]},{"1667448":[127]},{"1667450":[127]},{"1667452":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,120,41,127]},{"1667472":[127]},{"1667474":[127]},{"1667476":[127]},{"1667478":[127]},{"1667480":[127]},{"1667482":[127]},{"1667484":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,121,41,127]},{"1667504":[127]},{"1667506":[127]},{"1667508":[127]},{"1667510":[127]},{"1667512":[127]},{"1667514":[127]},{"1667516":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,122,41,127]},{"1667536":[127]},{"1667538":[127]},{"1667540":[127]},{"1667542":[127]},{"1667544":[127]},{"1667546":[127]},{"1667548":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,123,41,127]},{"1667568":[127]},{"1667570":[127]},{"1667572":[127]},{"1667574":[127]},{"1667576":[127]},{"1667578":[127]},{"1667580":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,124,41,127]},{"1667600":[127]},{"1667602":[127]},{"1667604":[127]},{"1667606":[127]},{"1667608":[127]},{"1667610":[127]},{"1667612":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,125,41,127]},{"1667632":[127]},{"1667634":[127]},{"1667636":[127]},{"1667638":[127]},{"1667640":[127]},{"1667642":[127]},{"1667644":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,126,41,127]},{"1667664":[127]},{"1667666":[127]},{"1667668":[127]},{"1667670":[127]},{"1667672":[127]},{"1667674":[127]},{"1667676":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127,41,127]},{"1667696":[127]},{"1667698":[127]},{"1667700":[127]},{"1667702":[127]},{"1667704":[127]},{"1667706":[127]},{"1667708":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,75,41,127]},{"1667728":[127]},{"1667730":[127]},{"1667732":[127]},{"1667734":[127]},{"1667736":[127]},{"1667738":[127]},{"1667740":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,119,41,127]},{"1667760":[127]},{"1667762":[127]},{"1667764":[127]},{"1667766":[127]},{"1667768":[127]},{"1667770":[127]},{"1667772":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,120,41,127]},{"1667792":[127]},{"1667794":[127]},{"1667796":[127]},{"1667798":[127]},{"1667800":[127]},{"1667802":[127]},{"1667804":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,121,41,127]},{"1667824":[127]},{"1667826":[127]},{"1667828":[127]},{"1667830":[127]},{"1667832":[127]},{"1667834":[127]},{"1667836":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,122,41,127]},{"1667856":[127]},{"1667858":[127]},{"1667860":[127]},{"1667862":[127]},{"1667864":[127]},{"1667866":[127]},{"1667868":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,123,41,127]},{"1667888":[127]},{"1667890":[127]},{"1667892":[127]},{"1667894":[127]},{"1667896":[127]},{"1667898":[127]},{"1667900":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,124,41,127]},{"1667920":[127]},{"1667922":[127]},{"1667924":[127]},{"1667926":[127]},{"1667928":[127]},{"1667930":[127]},{"1667932":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,125,41,127]},{"1667952":[127]},{"1667954":[127]},{"1667956":[127]},{"1667958":[127]},{"1667960":[127]},{"1667962":[127]},{"1667964":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,126,41,127]},{"1667984":[127]},{"1667986":[127]},{"1667988":[127]},{"1667990":[127]},{"1667992":[127]},{"1667994":[127]},{"1667996":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127,41,127]},{"1668016":[127]},{"1668018":[127]},{"1668020":[127]},{"1668022":[127]},{"1668024":[127]},{"1668026":[127]},{"1668028":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,75,41,127]},{"1668048":[127]},{"1668050":[127]},{"1668052":[127]},{"1668054":[127]},{"1668056":[127]},{"1668058":[127]},{"1668060":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,119,41,127]},{"1668080":[127]},{"1668082":[127]},{"1668084":[127]},{"1668086":[127]},{"1668088":[127]},{"1668090":[127]},{"1668092":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,120,41,127]},{"1668112":[127]},{"1668114":[127]},{"1668116":[127]},{"1668118":[127]},{"1668120":[127]},{"1668122":[127]},{"1668124":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,121,41,127]},{"1668144":[127]},{"1668146":[127]},{"1668148":[127]},{"1668150":[127]},{"1668152":[127]},{"1668154":[127]},{"1668156":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,122,41,127]},{"1668176":[127]},{"1668178":[127]},{"1668180":[127]},{"1668182":[127]},{"1668184":[127]},{"1668186":[127]},{"1668188":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,123,41,127]},{"1668208":[127]},{"1668210":[127]},{"1668212":[127]},{"1668214":[127]},{"1668216":[127]},{"1668218":[127]},{"1668220":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,124,41,127]},{"1668240":[127]},{"1668242":[127]},{"1668244":[127]},{"1668246":[127]},{"1668248":[127]},{"1668250":[127]},{"1668252":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,125,41,127]},{"1668272":[127]},{"1668274":[127]},{"1668276":[127]},{"1668278":[127]},{"1668280":[127]},{"1668282":[127]},{"1668284":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,126,41,127]},{"1668304":[127]},{"1668306":[127]},{"1668308":[127]},{"1668310":[127]},{"1668312":[127]},{"1668314":[127]},{"1668316":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127,41,127]},{"1668336":[127]},{"1668338":[127]},{"1668340":[127]},{"1668342":[127]},{"1668344":[127]},{"1668346":[127]},{"1668348":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,75,41,127]},{"1668368":[127]},{"1668370":[127]},{"1668372":[127]},{"1668374":[127]},{"1668376":[127]},{"1668378":[127]},{"1668380":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,119,41,127]},{"1668400":[127]},{"1668402":[127]},{"1668404":[127]},{"1668406":[127]},{"1668408":[127]},{"1668410":[127]},{"1668412":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,120,41,127]},{"1668432":[127]},{"1668434":[127]},{"1668436":[127]},{"1668438":[127]},{"1668440":[127]},{"1668442":[127]},{"1668444":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,121,41,127]},{"1668464":[127]},{"1668466":[127]},{"1668468":[127]},{"1668470":[127]},{"1668472":[127]},{"1668474":[127]},{"1668476":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,122,41,127]},{"1668496":[127]},{"1668498":[127]},{"1668500":[127]},{"1668502":[127]},{"1668504":[127]},{"1668506":[127]},{"1668508":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,123,41,127]},{"1668528":[127]},{"1668530":[127]},{"1668532":[127]},{"1668534":[127]},{"1668536":[127]},{"1668538":[127]},{"1668540":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,124,41,127]},{"1668560":[127]},{"1668562":[127]},{"1668564":[127]},{"1668566":[127]},{"1668568":[127]},{"1668570":[127]},{"1668572":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,125,41,127]},{"1668592":[127]},{"1668594":[127]},{"1668596":[127]},{"1668598":[127]},{"1668600":[127]},{"1668602":[127]},{"1668604":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,126,41,127]},{"1668624":[127]},{"1668626":[127]},{"1668628":[127]},{"1668630":[127]},{"1668632":[127]},{"1668634":[127]},{"1668636":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127,41,127]},{"1668656":[127]},{"1668658":[127]},{"1668660":[127]},{"1668662":[127]},{"1668664":[127]},{"1668666":[127]},{"1668668":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,75,41,127]},{"1668688":[127]},{"1668690":[127]},{"1668692":[127]},{"1668694":[127]},{"1668696":[127]},{"1668698":[127]},{"1668700":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,119,41,127]},{"1668720":[127]},{"1668722":[127]},{"1668724":[127]},{"1668726":[127]},{"1668728":[127]},{"1668730":[127]},{"1668732":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,120,41,127]},{"1668752":[127]},{"1668754":[127]},{"1668756":[127]},{"1668758":[127]},{"1668760":[127]},{"1668762":[127]},{"1668764":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,121,41,127]},{"1668784":[127]},{"1668786":[127]},{"1668788":[127]},{"1668790":[127]},{"1668792":[127]},{"1668794":[127]},{"1668796":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,122,41,127]},{"1668816":[127]},{"1668818":[127]},{"1668820":[127]},{"1668822":[127]},{"1668824":[127]},{"1668826":[127]},{"1668828":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,123,41,127]},{"1668848":[127]},{"1668850":[127]},{"1668852":[127]},{"1668854":[127]},{"1668856":[127]},{"1668858":[127]},{"1668860":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,124,41,127]},{"1668880":[127]},{"1668882":[127]},{"1668884":[127]},{"1668886":[127]},{"1668888":[127]},{"1668890":[127]},{"1668892":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,125,41,127]},{"1668912":[127]},{"1668914":[127]},{"1668916":[127]},{"1668918":[127]},{"1668920":[127]},{"1668922":[127]},{"1668924":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,126,41,127]},{"1668944":[127]},{"1668946":[127]},{"1668948":[127]},{"1668950":[127]},{"1668952":[127]},{"1668954":[127]},{"1668956":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127,41,127]},{"1668976":[127]},{"1668978":[127]},{"1668980":[127]},{"1668982":[127]},{"1668984":[127]},{"1668986":[127]},{"1668988":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,75,41,127]},{"1669008":[127]},{"1669010":[127]},{"1669012":[127]},{"1669014":[127]},{"1669016":[127]},{"1669018":[127]},{"1669020":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,119,41,127]},{"1669040":[127]},{"1669042":[127]},{"1669044":[127]},{"1669046":[127]},{"1669048":[127]},{"1669050":[127]},{"1669052":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,120,41,127]},{"1669072":[127]},{"1669074":[127]},{"1669076":[127]},{"1669078":[127]},{"1669080":[127]},{"1669082":[127]},{"1669084":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,121,41,127]},{"1669104":[127]},{"1669106":[127]},{"1669108":[127]},{"1669110":[127]},{"1669112":[127]},{"1669114":[127]},{"1669116":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,122,41,127]},{"1669136":[127]},{"1669138":[127]},{"1669140":[127]},{"1669142":[127]},{"1669144":[127]},{"1669146":[127]},{"1669148":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,123,41,127]},{"1669168":[127]},{"1669170":[127]},{"1669172":[127]},{"1669174":[127]},{"1669176":[127]},{"1669178":[127]},{"1669180":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,124,41,127]},{"1669200":[127]},{"1669202":[127]},{"1669204":[127]},{"1669206":[127]},{"1669208":[127]},{"1669210":[127]},{"1669212":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,125,41,127]},{"1669232":[127]},{"1669234":[127]},{"1669236":[127]},{"1669238":[127]},{"1669240":[127]},{"1669242":[127]},{"1669244":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,126,41,127]},{"1669264":[127]},{"1669266":[127]},{"1669268":[127]},{"1669270":[127]},{"1669272":[127]},{"1669274":[127]},{"1669276":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127,41,127]},{"1669296":[127]},{"1669298":[127]},{"1669300":[127]},{"1669302":[127]},{"1669304":[127]},{"1669306":[127]},{"1669308":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,75,41,127]},{"1669328":[127]},{"1669330":[127]},{"1669332":[127]},{"1669334":[127]},{"1669336":[127]},{"1669338":[127]},{"1669340":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,119,41,127]},{"1669360":[127]},{"1669362":[127]},{"1669364":[127]},{"1669366":[127]},{"1669368":[127]},{"1669370":[127]},{"1669372":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,120,41,127]},{"1669392":[127]},{"1669394":[127]},{"1669396":[127]},{"1669398":[127]},{"1669400":[127]},{"1669402":[127]},{"1669404":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,121,41,127]},{"1669424":[127]},{"1669426":[127]},{"1669428":[127]},{"1669430":[127]},{"1669432":[127]},{"1669434":[127]},{"1669436":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,122,41,127]},{"1669456":[127]},{"1669458":[127]},{"1669460":[127]},{"1669462":[127]},{"1669464":[127]},{"1669466":[127]},{"1669468":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,123,41,127]},{"1669488":[127]},{"1669490":[127]},{"1669492":[127]},{"1669494":[127]},{"1669496":[127]},{"1669498":[127]},{"1669500":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,124,41,127]},{"1669520":[127]},{"1669522":[127]},{"1669524":[127]},{"1669526":[127]},{"1669528":[127]},{"1669530":[127]},{"1669532":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,125,41,127]},{"1669552":[127]},{"1669554":[127]},{"1669556":[127]},{"1669558":[127]},{"1669560":[127]},{"1669562":[127]},{"1669564":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,126,41,127]},{"1669584":[127]},{"1669586":[127]},{"1669588":[127]},{"1669590":[127]},{"1669592":[127]},{"1669594":[127]},{"1669596":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127,41,127]},{"1669616":[127]},{"1669618":[127]},{"1669620":[127]},{"1669622":[127]},{"1669624":[127]},{"1669626":[127]},{"1669628":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,75,41,127]},{"1669648":[127]},{"1669650":[127]},{"1669652":[127]},{"1669654":[127]},{"1669656":[127]},{"1669658":[127]},{"1669660":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,119,41,127]},{"1669680":[127]},{"1669682":[127]},{"1669684":[127]},{"1669686":[127]},{"1669688":[127]},{"1669690":[127]},{"1669692":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,120,41,127]},{"1669712":[127]},{"1669714":[127]},{"1669716":[127]},{"1669718":[127]},{"1669720":[127]},{"1669722":[127]},{"1669724":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,121,41,127]},{"1669744":[127]},{"1669746":[127]},{"1669748":[127]},{"1669750":[127]},{"1669752":[127]},{"1669754":[127]},{"1669756":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,122,41,127]},{"1669776":[127]},{"1669778":[127]},{"1669780":[127]},{"1669782":[127]},{"1669784":[127]},{"1669786":[127]},{"1669788":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,123,41,127]},{"1669808":[127]},{"1669810":[127]},{"1669812":[127]},{"1669814":[127]},{"1669816":[127]},{"1669818":[127]},{"1669820":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,124,41,127]},{"1669840":[127]},{"1669842":[127]},{"1669844":[127]},{"1669846":[127]},{"1669848":[127]},{"1669850":[127]},{"1669852":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,125,41,127]},{"1669872":[127]},{"1669874":[127]},{"1669876":[127]},{"1669878":[127]},{"1669880":[127]},{"1669882":[127]},{"1669884":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,126,41,127]},{"1669904":[127]},{"1669906":[127]},{"1669908":[127]},{"1669910":[127]},{"1669912":[127]},{"1669914":[127]},{"1669916":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127,41,127]},{"1669936":[127]},{"1669938":[127]},{"1669940":[127]},{"1669942":[127]},{"1669944":[127]},{"1669946":[127]},{"1669948":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,75,41,127]},{"1669968":[127]},{"1669970":[127]},{"1669972":[127]},{"1669974":[127]},{"1669976":[127]},{"1669978":[127]},{"1669980":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,119,41,127]},{"1670000":[127]},{"1670002":[127]},{"1670004":[127]},{"1670006":[127]},{"1670008":[127]},{"1670010":[127]},{"1670012":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,120,41,127]},{"1670032":[127]},{"1670034":[127]},{"1670036":[127]},{"1670038":[127]},{"1670040":[127]},{"1670042":[127]},{"1670044":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,121,41,127]},{"1670064":[127]},{"1670066":[127]},{"1670068":[127]},{"1670070":[127]},{"1670072":[127]},{"1670074":[127]},{"1670076":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,122,41,127]},{"1670096":[127]},{"1670098":[127]},{"1670100":[127]},{"1670102":[127]},{"1670104":[127]},{"1670106":[127]},{"1670108":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,123,41,127]},{"1670128":[127]},{"1670130":[127]},{"1670132":[127]},{"1670134":[127]},{"1670136":[127]},{"1670138":[127]},{"1670140":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,124,41,127]},{"1670160":[127]},{"1670162":[127]},{"1670164":[127]},{"1670166":[127]},{"1670168":[127]},{"1670170":[127]},{"1670172":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,125,41,127]},{"1670192":[127]},{"1670194":[127]},{"1670196":[127]},{"1670198":[127]},{"1670200":[127]},{"1670202":[127]},{"1670204":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,126,41,127]},{"1670224":[127]},{"1670226":[127]},{"1670228":[127]},{"1670230":[127]},{"1670232":[127]},{"1670234":[127]},{"1670236":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127,41,127]},{"1670256":[127]},{"1670258":[127]},{"1670260":[127]},{"1670262":[127]},{"1670264":[127]},{"1670266":[127]},{"1670268":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,75,41,127]},{"1670288":[127]},{"1670290":[127]},{"1670292":[127]},{"1670294":[127]},{"1670296":[127]},{"1670298":[127]},{"1670300":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,119,41,127]},{"1670320":[127]},{"1670322":[127]},{"1670324":[127]},{"1670326":[127]},{"1670328":[127]},{"1670330":[127]},{"1670332":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,120,41,127]},{"1670352":[127]},{"1670354":[127]},{"1670356":[127]},{"1670358":[127]},{"1670360":[127]},{"1670362":[127]},{"1670364":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,121,41,127]},{"1670384":[127]},{"1670386":[127]},{"1670388":[127]},{"1670390":[127]},{"1670392":[127]},{"1670394":[127]},{"1670396":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,122,41,127]},{"1670416":[127]},{"1670418":[127]},{"1670420":[127]},{"1670422":[127]},{"1670424":[127]},{"1670426":[127]},{"1670428":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,123,41,127]},{"1670448":[127]},{"1670450":[127]},{"1670452":[127]},{"1670454":[127]},{"1670456":[127]},{"1670458":[127]},{"1670460":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,124,41,127]},{"1670480":[127]},{"1670482":[127]},{"1670484":[127]},{"1670486":[127]},{"1670488":[127]},{"1670490":[127]},{"1670492":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,125,41,127]},{"1670512":[127]},{"1670514":[127]},{"1670516":[127]},{"1670518":[127]},{"1670520":[127]},{"1670522":[127]},{"1670524":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,126,41,127]},{"1670544":[127]},{"1670546":[127]},{"1670548":[127]},{"1670550":[127]},{"1670552":[127]},{"1670554":[127]},{"1670556":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127,41,127]},{"1670576":[127]},{"1670578":[127]},{"1670580":[127]},{"1670582":[127]},{"1670584":[127]},{"1670586":[127]},{"1670588":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,75,41,127]},{"1670608":[127]},{"1670610":[127]},{"1670612":[127]},{"1670614":[127]},{"1670616":[127]},{"1670618":[127]},{"1670620":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,119,41,127]},{"1670640":[127]},{"1670642":[127]},{"1670644":[127]},{"1670646":[127]},{"1670648":[127]},{"1670650":[127]},{"1670652":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,120,41,127]},{"1670672":[127]},{"1670674":[127]},{"1670676":[127]},{"1670678":[127]},{"1670680":[127]},{"1670682":[127]},{"1670684":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,121,41,127]},{"1670704":[127]},{"1670706":[127]},{"1670708":[127]},{"1670710":[127]},{"1670712":[127]},{"1670714":[127]},{"1670716":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,122,41,127]},{"1670736":[127]},{"1670738":[127]},{"1670740":[127]},{"1670742":[127]},{"1670744":[127]},{"1670746":[127]},{"1670748":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,123,41,127]},{"1670768":[127]},{"1670770":[127]},{"1670772":[127]},{"1670774":[127]},{"1670776":[127]},{"1670778":[127]},{"1670780":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,124,41,127]},{"1670800":[127]},{"1670802":[127]},{"1670804":[127]},{"1670806":[127]},{"1670808":[127]},{"1670810":[127]},{"1670812":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,125,41,127]},{"1670832":[127]},{"1670834":[127]},{"1670836":[127]},{"1670838":[127]},{"1670840":[127]},{"1670842":[127]},{"1670844":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,126,41,127]},{"1670864":[127]},{"1670866":[127]},{"1670868":[127]},{"1670870":[127]},{"1670872":[127]},{"1670874":[127]},{"1670876":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127,41,127]},{"1670896":[127]},{"1670898":[127]},{"1670900":[127]},{"1670902":[127]},{"1670904":[127]},{"1670906":[127]},{"1670908":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,75,41,127]},{"1670928":[127]},{"1670930":[127]},{"1670932":[127]},{"1670934":[127]},{"1670936":[127]},{"1670938":[127]},{"1670940":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,119,41,127]},{"1670960":[127]},{"1670962":[127]},{"1670964":[127]},{"1670966":[127]},{"1670968":[127]},{"1670970":[127]},{"1670972":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,120,41,127]},{"1670992":[127]},{"1670994":[127]},{"1670996":[127]},{"1670998":[127]},{"1671000":[127]},{"1671002":[127]},{"1671004":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,121,41,127]},{"1671024":[127]},{"1671026":[127]},{"1671028":[127]},{"1671030":[127]},{"1671032":[127]},{"1671034":[127]},{"1671036":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,122,41,127]},{"1671056":[127]},{"1671058":[127]},{"1671060":[127]},{"1671062":[127]},{"1671064":[127]},{"1671066":[127]},{"1671068":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,123,41,127]},{"1671088":[127]},{"1671090":[127]},{"1671092":[127]},{"1671094":[127]},{"1671096":[127]},{"1671098":[127]},{"1671100":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,124,41,127]},{"1671120":[127]},{"1671122":[127]},{"1671124":[127]},{"1671126":[127]},{"1671128":[127]},{"1671130":[127]},{"1671170":[152,1,181,86]},{"1671178":[24]},{"1671180":[255,127]},{"1671186":[188,2,255,127]},{"1671194":[201,105,255,127]},{"1671202":[198,24,173,57]},{"1671210":[184]},{"1671212":[61,67]},{"1671218":[4,23,255,127]},{"1671228":[255,127]},{"1675264":[23,224]},{"1675267":[216,64,222,88,231,174,225,175,116,223,250,47,125,215,224,184,190,215,209,104,244,186,37]},{"1675291":[3,128]},{"1675294":[192,128,67,96,192,1,48,224,131,27]},{"1675305":[3,192,96,96,48,43]},{"1675312":[3,1]},{"1675315":[3,1,134,54]},{"1675321":[3,133,56]},{"1675325":[17,31]},{"1675328":[127,28,255,120,255,224,127,192]},{"1675338":[1,31,127,223,191,127,35]},{"1675346":[17,240]},{"1675349":[254,48,255,206,139,247,120,255,125,255]},{"1675361":[240,254,255,139,41]},{"1675367":[7,128]},{"1675370":[224,128,112,224,24,240,35]},{"1675378":[12,128,224,112,24]},{"1675385":[3]},{"1675387":[7,3,4]},{"1675391":[44,67,4,92,224,81,12,94,14]},{"1675401":[3,4,7,43,123,115,113]},{"1675410":[192]},{"1675412":[224,192,32]},{"1675416":[212]},{"1675418":[218]},{"1675420":[26,16,58,48]},{"1675425":[192,32,224,52,62,238,206]},{"1675434":[96]},{"1675436":[144,96,208,96,232,48,116,24,252,96,155,116]},{"1675449":[96,240,240,248,124,252,254]},{"1675458":[6]},{"1675460":[9,6,11,6,23,12,46,24,63,6,217,46]},{"1675473":[6,15,15,31,62,63,132,95]},{"1675482":[131,194]},{"1675485":[13,216,96,252,48,244,88,254,96]},{"1675496":[96,240,248,252,131,214]},{"1675503":[133,216]},{"1675506":[16,27,6,63,12,47,26,127,6]},{"1675517":[6,15,31,63,63,127,1,131,58]},{"1675527":[18,131,1,131,3,199,66,247,100,251,126,249]},{"1675540":[1,131,131,199,246,248,248,36]},{"1675549":[18,130]},{"1675552":[130,128,198,132,222,92,190,252,62]},{"1675563":[130,130,198,222,62,62,36]},{"1675571":[18,16]},{"1675574":[40]},{"1675577":[4,16,24,100,244,11]},{"1675585":[16,40]},{"1675588":[16,100,11,36]},{"1675593":[224,50,64]},{"1675597":[32]},{"1675599":[12,12,80,80,163,163,76]},{"1675608":[64,32,12,80,163,76,44,180,46,251,124,75,78,115,78,251,60,82,188,234,125,208,203,12,189,141,13,191,49,99,176,224,56,240,152,240,248,208,67,220,232,7,220,240,60,240,48,56,24,56,34,28,224,108,60,6,3,14,7,28,14,53,28,37,30,83,60,71,59,93,39,6,12,27,51,41,67,71,92,255,128,205,51,186,103,180,77,249,27,199,6,127,193,131,179,255,204,153,179,230,249,127,124,128,30,26,126,255,1,255,86,228,187,231,91,156,254,64,211,253,161,62,63,100,228,129,45,152,240,76,248,172,248,198,124,230,164,249,88,255,166,95,184,24,140,76,166,222,231,121,223,111,39,63,25,31,13,30,4,30,2,15,1,67,7]},{"1675774":[19,88,32,18,19,17,8,4,4,246,228,252,152,248,176,120,32,120,64,240,128,67,224]},{"1675798":[20,26,4,72,200,136,16,32,32,253,10,158,9,254,97,125,18,124,35,55,11,15,34]},{"1675822":[20,255,250,150,119,119,63,15]},{"1675831":[191,80,121,144,127,134,254,72,126,204,236,144,176,131,77,2,224,62,95,105,238,238,252,176]},{"1675856":[187,68,205,2,126,49,126,1,125,50,36,27,31,3,7]},{"1675872":[254,255,74,126,119,63,31,7,221,34,179,64,94,172,126,144,254,28,124,152,216,160,224]},{"1675896":[127,255,114,94,222,220,248,224,58,253,20,191,2,151,2,23,67,1,3,19]},{"1675917":[1,1]},{"1675920":[248,188,150,22,3,3,1]},{"1675928":[184,126,80,250,128,210,128,208,67]},{"1675938":[128,35]},{"1675941":[13,62,122,210,208,128,128]},{"1675950":[19,228,39,16]},{"1675955":[39,34]},{"1675958":[2,4]},{"1675961":[2,35]},{"1675964":[17,228,16,39]},{"1675969":[4,2]},{"1675973":[174,17,50,140,128,50]},{"1675980":[128]},{"1675982":[48,133,218,2,224,32,17,140,50,128,48,2]},{"1675996":[243,222,229,182,107,44,87,24,93,146,93,134,115,76,191,193,109,89,211,231,237,249,243,63,252,67]},{"1676023":[248]},{"1676025":[16,67,248,48,6,240,96,240,224,96,192,252,35,248,2,208,176,96,37]},{"1676045":[131,146]},{"1676048":[5,13,7,27,15,31,14,131,51,3,9,4,9,19,31,15]},{"1676065":[60,7,248,45,67,241,218,13,232,187,208,119,146,242,15,60,251,118,246,231,207,141,131,57]},{"1676090":[6,1,2,16,1]},{"1676097":[4,134,54]},{"1676102":[2,134,63]},{"1676106":[34]},{"1676109":[144,131,98,1,2]},{"1676116":[16,67,16]},{"1676120":[3]},{"1676122":[144,40,16,131,131,3,39]},{"1676130":[2,2,2,5,133,218,2,3]},{"1676140":[2,5,134,157,3,38]},{"1676147":[133,132,3,35]},{"1676152":[138,142,3,61]},{"1676157":[135,143,3,4,16,28]},{"1676164":[34,28,67,77,50,12,65,62,34,28,62]},{"1676176":[34]},{"1676178":[28,62,115,115,127,34,62,3,28]},{"1676188":[46,28,67,83,62]},{"1676194":[77,132,249,3,9,62,28,28,46,95,95,77,34,62,34,132,58]},{"1676212":[2]},{"1676214":[2,1,69,20,3,1,46,17,132,67]},{"1676225":[2,3,7,23,132,136]},{"1676232":[2]},{"1676234":[128]},{"1676236":[69,80,128]},{"1676240":[232,132,143,3,3,128,128,192,208,134,48,3,7,3,12,15,19,28,39,56,47,132,47]},{"1676264":[3,3,12,24,30,37]},{"1676271":[9,192,192,48,240,200,56,228,28,244,12,35]},{"1676284":[15,192,48,24,8,248,195,99,215,223,190,134,124,172,120,24,224,131,39]},{"1676304":[8,124,109,195,150,140,24,224]},{"1676313":[192,131,204,2,42]},{"1676320":[192,134,154,4,8,63,24,63,22,123,47,113,31,241,67,127,227,7,127,231,127,63,61,122,113,240,34,224,11,159,255,137,255,227,127,247,156,124,107,155,183,67,218,214,16,128,128,227,119,156,72,41,41]},{"1676374":[1,17,18]},{"1676378":[17,84,108]},{"1676382":[34,16,132,56]},{"1676387":[2,18,17,108,131,142,3,6,84,108]},{"1676398":[144,16,16,64,40]},{"1676404":[1,108,144,137,143,3,137,115,3,41]},{"1676415":[137,230,4,37]},{"1676420":[132,243,4,40]},{"1676425":[134,106,3,42]},{"1676430":[133,126,3,137,254,4]},{"1676437":[40,134,143,3,67,20]},{"1676444":[19,62,8,93,8,127]},{"1676451":[73]},{"1676453":[127,28,62]},{"1676457":[28,28,54,119,93,127,99,62,67,28,8,139,116,5,1,20,20,133,130,5,5,66,61,72,55,84,35,67,34,1,67,1]},{"1676490":[5]},{"1676493":[63,55,35,1,131,63]},{"1676500":[5,132,120,36,216,84,136,67,136]},{"1676510":[37]},{"1676512":[1,248,216,133,192,5,9,63,32,31,58,15,20,7,8]},{"1676528":[7,134,170,4,1,17,11,132,217,5,8,244,12,248,12,224,24,224,16]},{"1676548":[131,39]},{"1676551":[34]},{"1676553":[2,12,136,144,36]},{"1676559":[255]},{"1703936":[112]},{"1703939":[60]},{"1703941":[64,18,64,72,64,99,64,242,71,149,83,149,83,176,83,212,83,239,83,19,84,46,84,118,84,163,84,15,85,33,85,177,85,45,91,45,91,187,96,45,91,187,96,173,104,157,108,211,108,101,122,101,122,250,123,3,124,120,124,219,124,166,126,193,126,125,134,125,134,106,141,133,141,78,148,141,148,188,161,141,148,188,161,188,161,231,166,181,174,209,176,236,176,44,179,44,179,97,186,255,255,255,255,255,255,255,255,255,255,255,255,160,122]},{"1704055":[64,2]},{"1704065":[106,15,206,204,170,186,171,188,203,122,239,239,238,238,222,220,204,186,122,171,170,155,170,188,204,237,255,106,17,50,69,101,86,101,85,68,122,34,17,34,34,50,52,69,85,122,86,102,118,85,101,66,51,16,107,16,221,188,186,171,186,172,204,2]},{"1704137":[178,228,225,32,212,177,17]},{"1704145":[46,178,242]},{"1704149":[49,195,224,76,63,65,178,31,244,13,76,31,29,1,29,178,14,79,255,108,76,64,18,240,178]},{"1704175":[29,47,227,194]},{"1704180":[195,210,178,213,235,65,241,209,33,228,223,178,16,243,11,16,207,44,30,29,162,31,147,196,73,33,242,76,15,178,58,93,16,193,77,235,32,77,178,179,62,15,5,61,32,48]},{"1704227":[178]},{"1704229":[235,50,178,210,241,243,239,178,63,18,14,228,11,78,2,196,162,77,176,32,29,50,14,179,3,194,224,47,195,241,30,95,30,240,178,193,225,17,243,34,11,92,16,178,241,178,32,31,48,224,47,31,178,76,60,210,1,1,242,241,3,178,206,62,32,1,222,48,30,80,178,178,90,33,74,93,32,207,49,178]},{"1704310":[76,62,179,13,19,242,46,178,77,47,242,34,193,2,13,22,178,238,45,77,31,31,30,47,2,178,208,59,17,47,226,32,16,221,178,61,33,207,65,192,91,2,254,194,15]},{"1704356":[34,194,17,31]},{"1704361":[224,194,79,225,224,1]},{"1704368":[17]},{"1704370":[18,178,209,61,46]},{"1704376":[227,237,225,196,178,253,30,62,47,228,29,61]},{"1704389":[178,13,18,43,32]},{"1704395":[240,59,49,178,181,27,17,209,226,243]},{"1704406":[78,178,225,193,14,239,50,214,2,238,194,2,241,238,62,31,47,46,241,194,32,1,224,15]},{"1704432":[30,212,178,238,67,210,47,19,162,1,252,178,48,240,60,78,242,224,77,32,178,239,3,15,1,242,250,48,192,194,46,17]},{"1704465":[46,31,241,29,244,194,210,240,224,239,47,194,254,224,194,14,16,76,241,255,30]},{"1704487":[15,178,181,14,16,15,212,209,20,10,194,17,210,13,31,30,32,228,224,210,16,17,1,228,209,240]},{"1704514":[240,194,224,242,47,17,240,27,75,14,194,242,177,1,239,241,243,240]},{"1704533":[194,35,254,255,28,46,46,243,224,194,16,14,63,225,47,242,238,33,178,222,93,32,31,17,226,241,209,178,255,79,12,33,226,79,242,15,178,62,15,47,226,226,239,3,10,178,1,78,1,46,31,17,42,35,178,239,16,240,77,31,32,15,213,178,238,30,46,47,47,62,255,108,162,225,60,5,177,31,227,29,254,178,31,16,226,254,78,47,16,31,194,30,240,78]},{"1704628":[16,225,241]},{"1704632":[194,2,242,240,31,2,240,46,213,178,186,125,45,92,245,177,64]},{"1704650":[178,4,239,29,225,13,226,225,224,178,238,45,62,34,29,78,17,243,178,230,164,28,49,224,35,1,227,178,239,238,223,45,252,77,16,176,194,45,16,31,241,1,254,108,48,194,17,223,13]},{"1704700":[15,60,4,15,178,95,46,49,213,212,46,28,95,178,226,15,253,76,62,59,63,47,162,205,35,193,29,66,5,183,15,194,32]},{"1704734":[46,2,238,241,44,62,178,108,17,1,224,60,3,254,2,178,181,254,74,110,225,29,3,180,178,28,62,1,253,78,252,63,230,178,238]},{"1704771":[194,17,255,49,45,178,35,224,46,29,33,32,14,58,178,19,203,48,210,255,2,241,46,178,27,93,240,6,239,77,255,2,162,186,93,255,149,161,59,94,242,178,226,62,3,20,187,67,253,1,194,245,177,79,240,254,45,240,239,162,64,240,4,194,125,126,227,240,178,31,245,6,160,113,193,211,230,194,162,77,241,14,76,18,225,15,178,211,78,94,49,47,241,47,16,178,2,240,1,29,212,224,45,90,178,16,36,237,66,2,44,7,147,162,249,114,181,92,244,179,208,247,194,15,241,208,255,1,43,48]},{"1704902":[178,31,32,30,30,94,226,45,79,194,15,16,240,29,64]},{"1704918":[19,238,194]},{"1704922":[42,3,29,19,254,18,240,194,15,60,1]},{"1704935":[17,240,62,178,60,94,222,78,26,98,238,19,194,194,33,224,47,44,19,239]},{"1704956":[178,47,212,255,43,92,18,45,19,194,241,16,1,241]},{"1704971":[1,13,4,194,193,30,45,78,2,14,227,239,178,64,164,179,223,228,178,16,235,178,35,192,19,210,91,195,46,81,178,147,47,255,64,3,224,244,242,178,195,255,75,63,74,2,213,173,178,92,34,4,240,245,237,51,210,194,240,3,222,33,31,245,240,33,178,208,19,208,17,10,49,239,30,194,244,222,17,48,197,240,226,209,194,4,222,15,31,60,61,62,32,178,197,47,226,44,94,227,195,222,194,17,255,2,212,29,16,30,47,178,228,75,225,15,45,33,193,238,178,31,47]},{"1705095":[167,27]},{"1705099":[80,194,226,44,16,225,255,45,79,241,194,15,30,47,240,16,210,46,1,178,147,13,91,32,15,243,15]},{"1705127":[178,63,227,196,12]},{"1705133":[226,211,237,194,18,60,2,224,61,240,243,209,162,78,59,53,208,245,192]},{"1705153":[37,178,240,4,240,21,148,43,3,210,178,243,194,224,3,239,47,245,161,178,2,223,122,22,176,3,254,78,178,255,242,208,245,44,48,244,178,194,1,240,61,18,223,34,253,79,194,16,18,240,242,12,32,225,241,178,255,50,177,29,81,196,17,253,178,67,11,124,222,30,11,32,29,178,61,46,19,221,94,241,227,1,178,209,17,209,76,194,29,240,95,194,240,47,13,17,14,79,244,255,178,62,196]},{"1705257":[146,75,3,91,239,178,209,47,2,240,47,251,99,190,178,94,46,76,228,31,227,31,47,178,241,63,225,16,227,240,2,196,178,14,1,224,224,109,46,17]},{"1705298":[178,65,211,13,64,241,77,16,46,178,19,3,4]},{"1705312":[146,108,225,30,178,30,14,4,235,66,15,212,225,178,30,34,15,49,226,244,208,43,194,33]},{"1705337":[239,77,16,15,240,32,178,198,28,47,34,179,240,1,48,194,16,1,227,32,62]},{"1705359":[77,16,194,34,193,15,241,15,15,46,223,194,43,209,253,34,15,16,225,30,178,35,192,79,209,59,212,238,62,178,239,2,193,13,82,207,62,255,178,60,18,193,14,226,214,178,255,194,3,225,14,36,192,32,31,244,178,159,31,1,238,241,238,47,30,194,1,15]},{"1705428":[1,223,31,59,50,178,246,239,105,15,63,254,225,43,178,34,224,16,77,3,241,18,14,194,18,13,18,210,30,108,195,29,178,123,255,29,58,80,180,241,193,178,49,225]},{"1705473":[16,242,239,16,180,194,30,63,92,18]},{"1705484":[32,16,30,178,90,5,239,49,45,50,243,177,178,50,243,211,197,224,29,19,228,194,225,2,14,77,48,14,15,14,194,16,240,1,225,224,74,2,255,194,16,45,241,194,17,29,33,239,162,89,195,190,63,178,182,218,45,194,47,2,176,78,15,14,31,1,194,15,240,239,16,30]},{"1705557":[11,17,194,255,93,241,47,224,241,225,31,178,20,211,2,241,31]},{"1705575":[47,31,178,241,1,254,243,195,31,215,192,162,66,221,49,27,78,63,58,65,178,16,241,241,226,194,62,225,91,178,226,47,47,109,50,254,91,242,178,252,49,209,78,43,49,74,2,178,243,240,255,15,32,18,5,28,194,62,240,14,241,1,255,241,15,194,32]},{"1705643":[242,238,111,178,240,224,178,15,59,20,237,50,12,61,17,166,166,209,243,233,87,174,20,194,178,46,39,171,96,224,47,243,192,178,61,196,76,179,239,62]},{"1705684":[240,194,47,227,47,13,78,224,1,208,178,252,47,44,16,28,242,209,255,162,89,236,125,205,52,204,2,230,194,240,16,16,243,224,46,16,28,178,244,192,60,32,45,3,176,46,194,1]},{"1705733":[15,16,197,190,93,33,178,244,180,3,17,15,62,20,163,194,16,49,229,31,63]},{"1705755":[30,46,194,59,16,15,15,1]},{"1705764":[32,19,178,31,61,50,224,63,41,81,222,178,63,4,208,47,16,16,195,48,178,255,254,242,240,3,194,31,45,178,78,32,225,33,193,43,46,17,178,255,28,48,242,254,44]},{"1705810":[228,178,241,253,243,62,211,29,2,179,178,62,255,60,240,255,224,60,244,194,238,43,32,241,224,16,254,47,178,221,228,31,33,14,60,32,255,182,92,242,242,209,45,16,213,197,178,223,32,224,209]},{"1705862":[13,49,47,178,242]},{"1705869":[28,108,46,28,66,162,223,33,253,112,15,33,243,165,178,241,226,241,255,30,48,242,27,178,49,14,18,16,75,240,212,239,178,78,94,224,240,211,63,45,47,178,32,19,197,253,63,16,240,1,162,242,17]},{"1705923":[20,190,20,161,44,178,226,31,243,179,30,61,65,210,178,228,240,244,224,31,223,42,92,162,2,35,208,229,241,222,81,14,178,16,65,240,32,31,225,74,62,178,243,191,16,225,176,63,15,2,178,31,255,15,18,193,16,31,243,162,253,240,79,108,4,1,224,75,178,47,14,18,13,75,63,46,212,178,207,45,17,1,240,194,241,14,178,51,225,14,16,79,31,227,254,178,92,228,15,244,194,11,62,229,194,241,208,31,1,255,240,15,78,178,43,94,209,242,244,212,13,15,162,19,163,245,210,3,209,242,42,178,227,254,90,48,63,214,160,240,178,27,66]},{"1706067":[46,30,31,32,244,178,228,225,32,212,177,17]},{"1706080":[46,179,242]},{"1706084":[49,195,224,76,63,65]},{"1706099":[200,1,241,255,76,211,47]},{"1706108":[180]},{"1706111":[2,28,111,244,80,32,132,91,208,17,15,255,255,254,206,180,15,195,61]},{"1706131":[15,255,237,223,180]},{"1706137":[15,32,20,15,205,34]},{"1706144":[184]},{"1706147":[1,45,16,193,63,46,180,242,1,19,239,17,68,48]},{"1706162":[148,207,239,240,255,194,45,238,238,184]},{"1706173":[14,243,76,15,209,76,194,164,5,2,255]},{"1706186":[1,16,36,180]},{"1706191":[31,240,100,238,207,48,35,180,67,238,16,255,221,237,19,33,180,2,244,45,240]},{"1706216":[168,255,1,252,245,241,90,163,79,164,12,222,2,195,17,17,17,1,184,2,237,49,19,208,46,210,17,168,162,54,77,218,80,16,16]},{"1706252":[168,16,240,16,240,176,68,237,17,184,225,49,171,81,241,15,226,46,164,58,49,54,64,226,219,86,36,180,12,193,18,84,16,29,195,96,164,243,208,240,240,15,255,255,240,184]},{"1706299":[240,15,34,192,31,192,79,180,241,225,1,240,67,14,193,17,184,17,254,209,17,1,14,4,32,164,112,176,219,207,37,43,19,81,168,240,242]},{"1706338":[255,199,239,14,168,18,28,64,29,194,225,13,84,164]},{"1706353":[207,50,237,255,225,13,35,180,240,15,33,221,2,32,34,32,184,227,61,225,51,205,17,32,30,164,237,146,101,59,255,251,205,3,168,220,1,46,194,1,111,189,238,184,64,63,206,48,241,1,240,241,164,238,2,17,2,95,193,34]},{"1706414":[164,60,176,245,81,222,229,99,13,168,50,239,29,242]},{"1706429":[50,239,13,164,223,4,34,203,208,16,47]},{"1706441":[152,240,52,206,253,34,230,249,209,168,81,237,227,82,251,226,1,243,164,13,35,53,14,205,238,49,13,168,224,83,244,171,227,21,46,204,164,207,253,20,52,42,240,66,12,168,67,62,175,3,31,47,60,209,164,238,1,64,243,253,208,52,14,164,35,254,228,67,18,225,14,33,164,241,48,219,222,18,46,221,178,168,62,13]},{"1706526":[209,242,244,1,236,168,245]},{"1706534":[44,17,209,35,253,207,168,67,29,225,66,253,224,193,82,148,16,92,4,82,225,15,67,237,164,13,227,30,222,177,19,51,47,168,242,243,45,211,66,190,241,62,168,2,255,1,240,66,238,219,4,168,18,63,239,255,1,237,68,242,164,64,31,255,19,33,14,222,19,168,235,79,33,208,240,17,35,253,164,28,224]},{"1706616":[254,15,17,32,237,168,51,30,194,254,4,237,2,18,152,188,110,224,231,58,223,220,71,152,14,226,46,4,251,2,53,251,168,255,35,13,243,237,228,82,221,164]},{"1706659":[18,17,240,15,253,21,78,168,213,210,45,192,67,45,208,14,152,242,44,207,54,63,27,75]},{"1706684":[152,31,68,190,32,254,244,239,49,168,36,60,221,227,31,18,2,207,168,32,49,30,220,243,51,207,47,148,226,207,237,237,31,19,29,206,164,241,46,207,34,50,236,239,3,168,63,237]},{"1706733":[36,15,240,15,28,168,19]},{"1706741":[68,220,241,15,2,225,152,5,13,207,3,36,189,191,98,148,67,14,206,243,3,224,32,1,152,224,241,45,239,36,2,1,222,152,18,225,240,100,207,208,60,53,152,235,241,21,67,250,30,255,242,152,17,50,222,238,239,52,1,12,152,15,225,45,192,45,33,1]},{"1706810":[148,50,67,49,223,70,52,81,156,152,112,225,66,47,240,219,38,48,136,253,183,193,15,59,229,240,148,152,111,255,178,223,244,79,218,227,152,81,206,178,32,49,30,254,11,152,211,34,48,223,82,254,18,13,152,177,66,31,15,225,47,53,35,152,236,191,115,250,193,66]},{"1706881":[14,152,209,50,14,239,190,67,30,208,152,255,1,221,20,46,30,240,242,152,225,31,1,65,15,224,45,3,152,35,16]},{"1706913":[17,222,223,81,17,152,255,193,32,18,15,222,242,31,152,222,36,94,172,2,19,63,46,152,220,242,223,1,31,35,16,222,136,18,209,1,69,10,163,85,221,136,228,112,18,2,31,186,2,65,152,18,1,240,14,223,3,82,220,152,223,36,13,204,240,19,48,253,152,2]},{"1706984":[240,204,226,84,31,240,152,240,1,16,241,81,1,208,47,152,240,16,37,16,208,255]},{"1707007":[254,152,255,34,2,253,236,1,17]},{"1707017":[152,18,252,208]},{"1707022":[1,19,16,239,152,16,18,238,223,225,68,15,223,136,17,245,49,252,244,115,250,191,152,19,64,220,4,65,253]},{"1707052":[32,136,190,49,16,254,220,209,64,208,136,33]},{"1707065":[15,219,207,1,77,206,136,17,69,26,226,15,50,237,3,152,34,31,221,244,51,34,237,225,136,68,17,46,238,241,251,255,18,132,192,50,237,224,239,1,255,255,136]},{"1707109":[1,253,16,36,12,221,241,152,18,34,15,205,19,50,253,224,136,69,31,221,2,33,16,240,51,136,51,233,178,101,30,206,2,237,136,2,48,207,17,29,191,17,237,136,240,34,30,173,2,16,3,31,136,236,242,50,17,36,253,224,3,136,81,254,240,52,50,253,191,18,136,51,14,208,36,29,206,2,65,136,186,206,2,53,14,220,206,241,136,52,32,222,242,16,224,17,223,136,35,65,254,226,32,224,240,18,120,67,66,13,254,17,85,63,253,136,238,240,68,32,220,208,36,48,136,236,206,1,33,15,224,19,27,152,205]},{"1707245":[34,49,14,238,255,18,120,116,253,240,35,101,254,238,226,136,69,49,238,1,15,241,33,18,136,47,204,241,33]},{"1707275":[255,224,254,120,174,34,79,186,224,1,19,14,136,237,224,53,81,252,188,2,68,136,67,32,255,221,222,3,68,50,152,30,237,224,52,49,238,224,17,136,253,223,18,69,78,204,223,255,136,241]},{"1707326":[18,32,236,223]},{"1707331":[255,120,242,116,250,204,224,67,101,61,116,109,172,20,66,15,52,85,66,120,36,49]},{"1707354":[254,4,34,15,238,136,255,1,34,255,204,224,16,254,136,225,35,47,219,222,241,18,16,120,221,225,52,82,255,16,17,34,120,50,252,224,69,100,63,219,188,120,243,85,79,204,18,28,186,244,120,84,252,193,68,31,219,224,32,120,33,15,204,203,224,52,47,19,120,47,205,188,240,17,70,84,250,136,207,18,34,34,32,239,17,17,104,97,222,116,32,31,203,220]},{"1707449":[120,17,242,17,16,234,187,205,19,120,82,29,169,172,1,68,67,250,136,222,1,32]},{"1707472":[36,67,34,254,136,220,210,51,34,16,255,240,17,120,51,16,237,220,189,2,1,225,120,1,240,240,2,14,222,208,36,120,51,236,189,4,49,240,34,31,120,202,173,20,98,14,254,17,18,104,35,83,239,225,2,100,67,50,120,18,18,220,176,53,66,31,252,120,222,253,221,188,225,70,66,236,132,48,237,224,35,49,254,239,2,120,34,238,224,51,49,13,223,20,136,35,52,49,253,220,240,50,34,120,46,220,204,240]},{"1707581":[254,188,241,104,100,10,220]},{"1707589":[30,188,210,118,120,48,204,224,36,50,14,204,207,120,53,68,31,222,238,17,17,17,104,224,15,225,38,68,253,227,51,88,61,47,78,79,12,254,77,42,120,15,255,15,15,253,204,255,1,104,16,239,255,220,206,19,36,35,104,31,1,67,99,2]},{"1707654":[240,2,120,51,84,32,239,3,52,31,220,120,192,18,15,222,224,18,254,186,120,190,2,36,33,254,237,236,238,120,17,69,82,16,253,224,51,32,104,1]},{"1707695":[2,239,255,49,53,81,120,14,222,241,70,81,29,219,192,120,68,16,238,241,18,16,14,223,104,2,239,236,189,192,98,28,186,120,240,17,254,192,18,19,19,240,120,238,240,1,36,68,18,16,255,104,51,82,36,35,2,208,1,254,120,208,2,35,254,205,206,237,224,104,31,220,174,222,241,2,17,30,120,14,255,18,49]},{"1707779":[34,67,31,120,238,224,18,34,33,18,30,204,120,223,3,85,64,13,237,240,33,120,253,223,2,52,32,238,254,238,120,241,15,222,190,2,67,47,237,104,187,222,51,79,235,208,53,101,104,98,64,44,220,244,101,33,18,104,35,18,53,48,253,222,254,3,120,34,31,219,222,1,16,254,221,104,176]},{"1707857":[238,187,189,240,33,67,104,47,1,16,18,34,17,51,82,120,18,19,36,17,254,205,241,35,120,67,14,238,222,15,17,16,17,88,233,235,253,16,47,253,253,30,120,254,222,2,68,31,187,189,208,104,37,68,64,16,1,15,17,34,104,82,66,32,2,4,55,85,65,88,236,240,226,225,19,1,254,186,120,238,239,1,33,49,253,220,205,104,206,240,17,30,221,223,17,65,104,47,17,34,16,15,33,101,100,88,68,238,4,102,102,84,68,29,104,219,174,21,69,48,186,188,222,88,238,194,226,65,29,201,234,27,88,221,19,96,218,156,223,239,238,88,15,33,33,92,76,252]},{"1708006":[84,120,19,32,240,17,18,52,49,15,104,221,1,33,34,32,255,253,236,120,254,238,240,16,30,220,254,240,104,51,255,204,172,205,17,51,82,104,16]},{"1708046":[239,240,19,70,101,84,104,50]},{"1708055":[238,241,86,50,15,220,120,239,240,18,18,14,220,222,255,120,33,34,31,237,236,239,33,33,104,30,254,238,223,238,241,52,67,104,11,186,222,36,118,66,46,240,104,240,19,32,18,3,21,68,34,104,65,31,240,223,240,16,17,15,104,236,205,239,237,237,239,255,238,88,170,189,224,238,222,34,51,15,104,1,51,50,14,255,3,87,100,104,34,37,52,33,14,254,32,64,104,48]},{"1708154":[255,221,188,221,240]},{"1708160":[104,237,221,221,223,241,1,1,240,88,227,51,15,238,223,50,66,61,104,237,224,1,51,19,18]},{"1708186":[12,104,15,18,67,48,50,33,33,1,104,18,52,17,238,189,225,50,16,104,252,203,238,15,255,238,239,220,104,188,206,241,18,33,15,239,224,104,1,36,67,34,33,49,18,17,104,34,34,2,3,36,35,18,241,88,242,191,205,155,157,176,15,30,104,220,205,220,224,31,15,238,222,104,14,238,2,84,66,48,13,13,88,244,70,99,111,15,242,22,82,88,11,186,221,36,117,101,37,20,104,240,208,193,2,50,32,255,240,104,15,241,239,205,204,207,239,255,88,219,239,195,175,188,239,52,99,104,16,240,2,18,34,35,68,34,104,17,17,50,50,32,240,18,17,104,255,255,17,31,15,235,186,236,88,254,62,11,236,219,205,191,227,104,1,255,16]},{"1708354":[242,2,4,19,88,52,49,50,1,3,38,67,221,88,177,245,20,65,80,32,31,252,88,221,2,35,46,11,237,15,48,88,18,239,205,188,208,15,237,222,88,255,15,204,218,154,175,246,102,104,50,1,240,3,36,34]},{"1708411":[18,104,35,68,16,255]},{"1708418":[67,50,17,88,1,1,238,204,156,191,238,253,104,15,255,223,205,222,206,192,255,88,192,19,4,18,18,32,34,35,104,33,2,18,52,51,17,240,254,88,1,50,81,50,13,234,205,255,72,35,99,27,238,225,31,253,188,88,237,239,239,14,31,236,220,221,88,253,253,221,255,6,6,226,219,104,223,2,36,51,33,1,33,17,88,81,50,34,67,51,32,1,20,88,1,14,219,219,221,254,62,77,104,13,236,236,255,31,13,14,253,88,234,251,238,1,36,99,83,30,104,255,1,52,83,50,34,1,239,88,212,103,100,63,204,190,241,18,104,16,14,221,206,239,17,17,16,88,205,255]},{"1708569":[241,30,254,30,254,88,221,191,240,32,96,61,235,210,88,18,50,48,31,50,69,67,49,88,65,101,85,36,35,13,219,255,88,33,35,17,206,190,207,236,221,104,238,223,240,31,16,13,221,208,88,210,36,31,238,30,50,96,32,104,241,18,19,36,17,2,17,17,88,34,1,18,6,34,31,235,222,88,1,1,254,221,221,188,188,241,88,33,46,217,187,222,1,35,35,88,32,15,252,255,238,208,240,49,88,66,81,52,1,17,1,242,245,88,6,86,51,32]},{"1708688":[34,50,32,88,255,236,252,225,239,173,173,175,88,192,224,14,12,234,187,192,19,88,50,15,190,240]},{"1708715":[51,18,49,88,31,32,67,69,53,35,18,31,72,50,97,69,80,32,65,17,205,88,235,220,237,255,13,13,239,223,88,238,254,31,254,254,207,240,18,88,18,224,208,192,209,244,38,68,88,15,191,225,2,35,51,34,66,72,17,64,49,66,65,85,100,117,88,30,11,252,254,15,255,255,220,88,251,218,236,253,31,31,253,255,72,224,210,19,19,51,85,66,32,72,50,52,103,35,4,245,85,85,72,19,18,226,225,33,63,33,212,72,209,224,204,154,187,221,222,223,88,224,15,16,253,253,255,241,2,72,48,15,15,16,33,67,51,17,72,225,194,5,38,19,15,208,226,72,6,69,67,1,1,226,241,227,72,2,244,227,226,208,238,253,252,72,188,189,190,222,253,254,253,254,72,236,223]},{"1708893":[50,83,16,48,18,72,51,50,65,66,64,32,32,33,56,67,67,32,44,11,255]},{"1708915":[33,72]},{"1708918":[30,220,205,238,240]},{"1708924":[255,56,238,220,219,222,240,1,1,205,56,254,211,19,68,52,34,240,239,56,1,67,85,66,240,255,208,16,40,62,82,69,37,16,47,14,240,40,240,240,13,29,46,30,14,218,40,222,157,236,12,13,14,237,204,40,237,222,206,207,2,35,80,82,40,50,67,34,66,35,34,17,33,40,34,67,49,32,15,14,224,255,24,255,15,239,252,220,206,144,207,24,254,255,222,238,13]},{"1709022":[225,212,24,227,195,1,225,1,35,1,17,8,16,84,1,64,18,32,32,17,8,16,64,1,15,15]},{"1709049":[1,1,4,3,35,16,31,255]},{"1709060":[5]},{"1709063":[15,15,13,254,223,240,2]},{"1709078":[210,221,221,222,221,35,52,68,68,134,76,199,102,102,103,118,102,102,210,51,51,51,51,50,51,237,220,150,33,239,221,204,221,221,221,221,210,221,221,222,221,35,52,68,68,135,76,198,102,119,102,102,103,118,2]},{"1709141":[210,220,221,221,221,221,221,238,238,150,78]},{"1709153":[1,17,17,17,17,17,106,68]},{"1709162":[34,52,68,69,102,103,182,17,17,17,17,17]},{"1709175":[63,94,210,220,221,221,221,221,221,238,238,151,78]},{"1709189":[1,17,17,17,17,17,2]},{"1709204":[154,221,55,17,18,18,18,1,18,122,67,34,35,34,35,51,51,68,122,69,85,102,85,102,101,68,84,122,67,50,35,50,34,51,51,68,122,85,84,102,101,101,101,84,68,122,68,34,51,34,35,51,35,69,122,69,85,86,102,86,85,85,67,122,67,51,50,34,35,51,51,52,122,85,85,102,85,102,85,85,68,123,51,51,50,34,50,51,51,68,2]},{"1709303":[122,242,98,34,35,34,33,18,16,74,223,192,170,171,171,207,226,51,166]},{"1709323":[1,34,34,35,33,48,93,202,180,47,15,1,240]},{"1709337":[240]},{"1709339":[138,37,237]},{"1709344":[1,17]},{"1709347":[17,122,16,33,33,34,50,51,68,85,166,18,34,52,67,52,50,64,94,202,180,47,31]},{"1709371":[240]},{"1709375":[138,9,209,255,255,255,255,238,255,106,153,170,170,187,205,239,240,35,170]},{"1709395":[17]},{"1709397":[1,17,240,61,106,178,49,50,33,15,238,237,204,204,138,37,225,17,18,16,17,17]},{"1709420":[74,208,161,186,170,171,223,225,51,166]},{"1709431":[1,34,34,35,33,48,93,203,180,47,15,1,240]},{"1709445":[240]},{"1709447":[2]},{"1709456":[166]},{"1709458":[240]},{"1709463":[192]},{"1709465":[102,202,161,17,18,52,68,69,103,178]},{"1709478":[18,34,204,170,170,102,118,255,240,1,18,35,52,69,146,205,239,1,35,69,103,255,1,106,17,79,34,34,52,51,69,68,182,17]},{"1709513":[17,11,240,160,224,15,134,193,47,255,255,255]},{"1709527":[17,166]},{"1709533":[17,16,192,16,122,241,93]},{"1709542":[17,17,17,33,178,51,51,51,69,85,255,221,221,138,95,239,15]},{"1709560":[16]},{"1709562":[16,1,150,34,17,34,34,34,34,145,34,122,34,49,51,35,51,52,68,52,186]},{"1709584":[16]},{"1709586":[27,230,166,210,240,138,226,190,222,238,238,254,238,254,167]},{"1709607":[192]},{"1709618":[176,63,29,34,224,243,240,193,47,176,30,64]},{"1709631":[1,255,228,17,225,176,61,254,47,252,18,240,228,15,160,242,64,188,112,27,85,191,213,176,14,211,32,224,78,255,50,236,176,34,253,245,14,226,46,178,64,176,255,80,222,35,250,20,254,213,176,29,225,64,175,80,253,83,223,176,4,26,228,31,196,61,239,65,192,207,33,14,50,255,2,12,3,192,31,210,30,224,48,191,33,254,192,49,238,19,252,19,29,227,30,192,209,62,192,33,208,48,237,35,192,205,19,28,19,14,228,44,242,192,79,211,48,207,78,207,34,192,192,50,252,18,208,20,12,17,13,192,227,237,241,61,242,32,193,45,176,239,97,179,34,206,91,255,53,176,194,34,252,92,225,22,209,32,176,12,77,193,22,224,49,12,78,176,193,5,224,49,12,62,177,21,176,240,48,252,62,193,21,224,32,176,252,60,209,21,226,65,253,75,176,209,53,209,49,237,59,224,52,176,210,50,238,43]},{"1709840":[50,211,49,176,223,27]},{"1709847":[82,243,16,193,237,176,34,96,18,15,211,190,18,77,176,18,30,210,175,3,61,33,13,176]},{"1709872":[176,5,15,50,12,43,209,176,37,225,16,237,27,33,66,243,176,16,194,172,17,76,17,13,209,176,159,5,30,49,251,42,242,36,176,210,15,192,236,17,110,35,14,176,193,145,21,30,48,250,25,241,176,37,211,17,208,189,50,126,49,176,254,239,162,22,241,47,252,58,176,17,66,211,240,178,158,34,92,176,49,12,253,194,5,193,32,253,176,43,33,80,243]},{"1709966":[195,177,51,176,60,49,29,45,227,22,194,16,176,254,10,16,95,3]},{"1709985":[195,178,176,20,30,63,12,74,226,37,242,176,17,209,9,33,109,1,15,225,176,162,5,239,48,28,74,17,50,176,195,1,195,207,49,91,33,30,176,16,195,22,209,47,253,75,32,176,64,227,240,196,160,34,59,32,176,12,28,193,5,194,16,239,251,176,33,93,19,15,211,178,4,255,176,63,251,74,16,33,195]},{"1710067":[178,176,161,17,44,48,12,41,2,35,176,179]},{"1710080":[194,161,50,75,63,13,176,58,3,37,179]},{"1710092":[193,159,33,176,75,65,29,42,242,20,163]},{"1710104":[176,210,175,33,75,64,13,42,2,176,19,180,17,209,161,34,60,64,176,13,59,34,33,195,255,211,195,176,18,14,63,15,60,49,62,242,176,255,241,195,37,225,31,240,236,176,33,76,32]},{"1710154":[28,227,36,178,176,240,242,193,50,43,63,15,27,176,17,32,194,239,241,194,20,240,176,63,240,254,50,77,16,238,12,176,242,35,194,255,241,194,35,13,160,76,222,250,99,107,19,221,9,176,227,34,177]},{"1710208":[240,177,51,28,176,63,255,45,33,63,243,255]},{"1710221":[176,210,19,209,47,240,223,50,61,176,48,254,11,18,49,210,238,224,176,194,19,239,30,239,237,50,77,176,33,15,28,3,34,177,240,242,176,193,19,30,47,255,45,32,63,160,36,237,15,165,39,164,47,210,176,239,50,60,32,14,28,2,35,176,194,1,226,194,35,45,47,14,176,43,33,32,227,1,243,194,3,160,255,78,254,73,81,107,2,238,160,242,148,23,161,31,224,11,65,160,122,32,253,31,179,23,146]},{"1710329":[160,210,220,50,122,48,29,60,211,176,19,193,255,209,222,17,60,16,176,30,29,225,19,193,1,242,238,176,17,60,16,31,47,225,3,210,160,17,193,252,32,106,32,12,16,160,178,6,162,17,224,43,63,107,160,16,253,210,147,246,209,32,252,176,44,32,62,241,1,227,194,242,176,15,31,30,76,16,32,210,2,160,182,144,19,73,62,59,92,225,176,19,193,242,226,15,16,77,47,160,76,1,196,231,163,227,239,74,176,46,62,32,16,243,194,244,255,160,241,44,105,45,81,209,242,164,160,192,226,76,46,59,31,225,5,160,194,227,224,43,47,110,31,47,160,228,177,229,14,240,29,77,14,160,50,209,3,209,254,17,77,31,160,62,242,193,244,240,2,14,61,144,13,97,176,18,179,253,2,74,160,16,46,241,192,243,240,1,254,144,91,14,65,176,241,194,252,2,144,92,32,61,228,177,230,31,225,144,12,61,15,67,209,2,208,27,144]},{"1710547":[111,15,63,212,225,245,46,144]},{"1710556":[29,16,206,21,224,243,237,144,44,15,64,223,17,209,13,243,144,94]},{"1710575":[63,226,209,244,30,241,144,46,16,224,53,224,2,238,62,144,31,49,240,18,241,29,224,80,128]},{"1710601":[94,180,222,6,43]},{"1710607":[45,144,2,225,4,15,242,13,16,239,128,87,239,36,221,74,16,81,238,128,2,209,45,224,112,223,79,178,128,238,5,60,1,45,243,194,4,128,31,224,29,17,238,5,12,225,128,252,30,223,68,177,17,207,62,128,1,81,225,17,224,29,225,79,128,240,255,224,29,240,94,255,63,112,180,11,192,97,207,95,165,15,112,192,80,207,78,229,177,21,44,128,16,30,242,30,226,61,209,46,112,180,210,241,1,224,62,243,193,112,20,45,16,45,4,29,230,108,112,212,77,196,239,210,63,225,61,112,227,238,21,44,33,29,243,15,112,212,110,226,61,228,254,244,61,112,18,62,226,15,209,79,241,63,116,244,223,21,10,33,28,4,254,112,208,64,239,47,210,30,209,61,96,192,111,211,29,207,96,221,48,112,225,13,209,78,223,48,224,15,96,224,79,238,48,194,28,177,127,96,239,64,209,30,224,80,254,32,96,209,46,224,80,238,50,241,45,96,240,65,15,18,241,62,240,48,96,255,1,240,62,242,80,208]},{"1710842":[96,224,46,223,66,208,34,255,32,96,255,51,223,18,238]},{"1710858":[238,4,80,13,5,12,18,223,244,47,227,80,79,20,207,36,15,16,30,243,80,14,245,77,2,47,241,31,239,80,65,240,49,224,29,1,33]},{"1710896":[64,20,255,64,223,101,191,35,238,64,19,255,245,63,226,45,4,239,64,37,46,18,46,242,30,225,79,48,222,49,225,109,226,81,192,35,48,223,34,239,21,254,242,46,243,48,253,243,60,225,62,224,45,241,32,95,208,2,208,33,190,23,14,32,4,44,227,13,243,76,242,79,16,209,92,194,114,176,2,225,19,16,192,36,15,16,31,16,30,17]},{"1710987":[64,241,1,224]},{"1710992":[208,1]},{"1710996":[16]},{"1710998":[16]},{"1711000":[16]},{"1711004":[1]},{"1711013":[2]},{"1711022":[150,223,47,18,206,51,17,36,192,146,239,225,33]},{"1711036":[240,188,49,252,154,19,245,171,84,255,32,177,198,162,14,33,16,255,238,35,61,187,166,4,45,210,17,51,15,208,12,162,50,255,238,221,229,78,204,191,166,64,161,32,21,28,224,12,67,182,255,241]},{"1711089":[244,29,222,19,18,182,208]},{"1711097":[33,31,241,255,243,14,182,224,47,243,61,204,35,20,239,166,224,16,52,255,194,240,77,190,182,33,210,77,191,241,37,14,240,166,244,51,1,190,239,113,201,36,166,31,31,202,240,98,66,190,19,166,51,1,175,253,87,249,209,48,166,195,220,238,111,84,204,214,93,166,99,191,13,228,107,193,77,193,178,219,205,202,2,15,240,18,67,162,84,78,196,83,47,67,202,188,178,204,220,211,34,205,240,34,35,182,15,211,31,14,34,206,1,253,166,47,36,50,218,22,109,34,30,182,239,32,45,1,12,210,14,31,182,33,48,238,228,16,33,15,224,166,21,14,15,250,178,208,46,77,178,211,255,160,67,53,52,15,5,182,29]},{"1711259":[14,194,240,15,15,245,178,224,188,32,19,67,15,4,102,178,66,18,221,221,222,220,207,239,182,238,64,32,17,224,243,17,31,166,207,220]},{"1711296":[240,251,244,50,157,166,81,67,230,176,247,85,253,159,166,43,222,195,234,6]},{"1711317":[14,35,182,17,213,14,17,50,32,173,33,182,221]},{"1711331":[29,226,17,15,15,64,182,1,29,32,67,50,187,65,219,166,240,253,209,239,94,255,99,227,182,62]},{"1711358":[20,35,235,1,14,224,182,253,15,14,80,255,1,241,47,182,17,34,34,28,241,43,208,252,166,15,73,85,163,244,224,78,68,182,46,19,78,238,32,194,237,208,182,12,19,241,225,32,75,51,79,182,211,50,251,2,254,222,220,61,182,31,51,13,32,60,51,80,162,182,82,28,16,13,238,202,48,29,182,36,253,34,45,21,65,174,99,202,13,33,255,1,254,48,14,36,182,236,2,77,244,81,190,68,80,198,239,17,239,252,240,30,4,14,186,64,74,21,254,193,49,76,254,182,1,237,235,191,44,6,46,255,182,49,245,80,223,16,83,14,255,182]},{"1711501":[204,175,44,229,95,224,33,182,212,80,224,16,36,18,254,239,182,204,222,13,228,80,222,19,229,182,66,192,63,20,17,30,14,219,182,223,239,210,81,224,241,228,80,198,255,79,242,17,16,254,238,241,182,220,239,114,240,240,229,64,254,182,98,212,242,33,28,172,226,189,182,12,69,241,224,214,95,240,51,198,242,16,1,47,205,242,207,14,182,246,49,224,198,110,210,82,228,198,16,226,63,204,227,238,240,240,198,34]},{"1711610":[226,79,209,65,210,32,198,209,79,236,210,255,224,240,36,198,255,226,48,223,67,224,49,223,198,80,221,225,224,239,15,19,31,198,226,32,239,68,254,19,239,49,182,186,208,192,237,14,20,64,193,198,32,239,52,15,19,239,32,237,182,15,222,254,222,20,80,210,32,186,210,82,219,67,177,61,239,78,182,238,224,190,50,94,242,32,239,182,51,126,3,227,30,205,28,14,182,208,189,51,93,18,30,225,50,186,89,3,230,203,243,74,95,226,182,172,6,78,1,62,212,17,82,186,255,51,218,231,28,48,225,164,182,230,79]},{"1711746":[62,213,32,50,46,198,35,30,176,254,16]},{"1711758":[223,242,182,64,28,31,245,49,19,45,70,202,237,229,255,46,47,240,242,17,182,59,240,19,20,243,46,84,60,198,207,255,15]},{"1711792":[255,224,3,46,182,208,50,21,225,16,83,79,173,182,191,240,224,240,236,246,109,175,182,97,5,32,226,98,47,220,160,198,240,240,31,12,3,48,207,49,182,34,48,195,97]},{"1711838":[43,160,209,198,239,32,27,243,33,207,48,17,182,66,163,98,241,75,175,192,221,182,34,41,244,18,207,79,50,65,182,178,99,209,92,190,223,238,243,182,27,2]},{"1711881":[225,46,35,80,224,182,37,225,78,221,206,224,211,13,182,49,237,245,15,3,111]},{"1711903":[5,182,242,62,13,188,226,210,237,81,202,239,35,208,1,44,47,2,241,198,31,15,237,225,2,238,33,252,198,4,16,241,32,31,225,19,31,198,16,253,208,2,222,33,13,243,186,193,181,239,61,182,22,174,61,182,235,191,245,205,35,11,212,19,186,212,207,93,162,101,191,44,13,182,189,245,238,2,27,210,35,5,198,31,16,237,20,17,47,254,238,182,197,15,240,29,224,18,6,64,198,31,252,4,17,32,254,240,208,170,241,13,15,15,95,215,45,234,198,252,227,50,33,14,239,239,15,186,61,2,27,48,17,3,221,222,186,22,80,194,206,244,238,79,61,186,197,28,32,31,21,237,160,2,202,66,193,14,242,14,46,33,210,202]},{"1712068":[240,46,18,29,208,31,52,182,97,79,206,13,11,227,239,240,198,31,47,2,51,253,236,18,65,182,64,191,30,25,210,31,224,60,198,32]},{"1712105":[36,13,220,33,49,18,198,255]},{"1712114":[28,224,16,255,47]},{"1712120":[198]},{"1712122":[36,47,219]},{"1712126":[34,19,15,182,255,74,174,19,221,34,15,30,202,34,255,222,79,33,242,254,241,182,60,174,242,13,243,255,46,20,198,50,237,254,2,3,33,240,15,186,227,240,76,3,210,14,3,48,186,158,17,5,211,74,14,61,244,182,219,18,15,211,31,209,100,30,198,254,225,17,48,17,14,210,13,182,225,62,163,79,208,83,18,252,198,208,17,33,34,238,211,27,240,198,48,193,33,224,17,2,15,192,198,1,16,36,13,195,61,207,51,194,220,224,237,239,2,52,254,223,198,32,20,31,177,63,190,35,238,182,3,15,240,50,22,172,196,78,198,244,49,175,65,188,20,13,225,178,208,203,241,21,78,175,83,211,198,66,189,51,219,228,47,239,18,198,254,17,1,46,209,65,193,67,198,221,18,235,226,32,14,242,30,198,2,2,31,209,65,176,68,237,202,64,237,20,31,224,2,14,1,198,242,47,223,83,222,35,254]},{"1712336":[182,204,178,34,15,241,63,241,1,182,63,224,101,187,35,14,16,206,186,213,31,44,1,62,195,16,29,182,241,53,219,17,46,1,221,192,182,31,64,240,35,208,16,32]},{"1712381":[182,21,252]},{"1712385":[47,1,221,207,47,182,32]},{"1712393":[20,239,47,47,16,20,186,205,34,44,18,238,212,77]},{"1712408":[166,64,7,236,48,48,49,5,45,186,227,45,49,222,211,95,208,77,182,243,14,1,16,17,17,17,207,182,13,19,15,188,20,253,65,1,166,46,211,48,50,78,21,170,236,182,19]},{"1712456":[236,227,12,49,16,17,182,225,32,33,46,18,252,239,3,166,254,27,163,10,36,65,244,193,186,16,15,45,17,13,244,227,224,166,93,192,234,38,48,245,224,244,182,48,15]},{"1712502":[15,208,224]},{"1712506":[79,182,255,236,4,31,3,16,242,63,182,241,31,255]},{"1712521":[238,225,79,31,182,236,4,30,4,47,210,64,210,182,32,221,33,238,225,32,47,220,182,4,29,5,46,211,111,193,33,182,206,32,238,224,17,64,220,33,182,253,21,62,211,110,225,16,191,182,48,238,240,241,65,189,64,222,182,35,64,210,111,240,31,191,48,182,238,15,241,66,206,63,205,51,186,29,196,76,15,31,226,47,224,182,47,240,50,223,63,204,51,50,166,208,98,64,235,191,255,238,61,182,240,33,241,46,220,19,50]},{"1712633":[166,50,115,169,208,237,15,14,255,170,62,17,251,29,54,46,236,64,182,68,204,240,237,17,255]},{"1712659":[14,186,64,238,47,227,62,29,47,50,182,220,239,252,2,255,2,254,35,182,254,1,239,50,32,16,36,236,182,239,252,3,14,243,238,36,254,166,2,205,86,1,80,53,11,189,166,250,241,46,197,221,7,60,225,182,15,19]},{"1712718":[64,33,15,222,253,166,13,64,197,236,212,126,237,63,186,17,15,75,32]},{"1712738":[209,15,61,182,17,242,14,225,64,13,16,16,186,16,76,15,17,224,240,45,49,182,1,15,208,50,44,241,32,243,186,29,30,31,1,240,13,66,254,182,240,208,49,61,225,48,211,81,186,28,48,242,224,253,66,30,241,186,194,63,74,211,79,165,92,10,186,81,210,16,234,97,46,241,209,182,16,80,237,35,208,99,59,241,178,34,69,59,155,221,205,202,187,182,98,12,3,238,84,91,226,254,194,35,63,222,254,222,254,220,241,182,28,226,15,84,92,210,237,51,182,26,160,31,242,15,255,36,46,182,209,31,51,94,210,236,51,44,186,228,47,229,238,15,49,14,224,182,240,51,49,210,236,51,30,189,166,222,196,78,27,36,100,236,176,182,68,17,210,252,35,16,205,221,186,19,44,255,50,210,239,210,98,182]},{"1712923":[227,26,243,33,206,204,242,186,15,194,18,196,254,223,102,173,182,196,60,210,18,223,251,193,35,198,224,18,241,17,253,244,47,225,182,94,208,19,237,11,176,52,222,182,37,240,17,28,198,96,190,98,182,222,3,253,29,174,53,238,4,182,31,31,63,179,82,235,68,238,182,227,13,30,188,36,254,19,78,182,29,50,177,66,42,20,14,210,182,28,31,219,5,29,17,95,30,182,2,223,64,92,227,32,208,29,182,15,221,229,29,17,64,14,242,182,30,79,95,178,33,239,29,224,182,237,229,29,1,67,13,241,30,182,64,66,176,17,14,30,223,253,182,212,47,240,36,46,209,30,17,182,67,207,17,30,15,223,254,211,186,252,2,33,237,242,45,33,62,166,175,1,46,254,174,237,146,112,182,254,36,62,238,47,241,84,223,186,16,46,30,241,15,2,62,237,182,37,79,237,16,255,69,224]},{"1713128":[182,31,15,207,254,224,35,28,245,182,65,222]},{"1713141":[14,54,241,224,31,182,1,207,239,208,19,44,213,66,178,31,255,14,245,70,67,67,52,182,207,224,192,18,46,180,68,222,178,17,14,229,87,84,101,51,15,182,240,207,17,16,179,69,237,241,182,15,229,19,15,16,240,239,255,182,206,34,16,194,69,237,242,14,166,214,37,77,32,240,205,192,170,186,64,255,226,65,189,34,13,19,182,3,79]},{"1713231":[1,238,208,236,2,186,255,225,50,220,17,46,2,227,182,48]},{"1713248":[1,253,208,12,226,32,186,225,50,236,1,47,241,228]},{"1713263":[182,16,1,44,191,46,192,33,254,182,20,63,239,17]},{"1713278":[241,3,48,182,208,78,190,47,190,50,253,20,182,79,239,16,240,16,3,49,192,182,64,173,48,204,19,14,3,49,182,254,1,241,46,226,67,207,66,182,187,33,219,4,14,2,34,13,182,1,226,63,225,67,206,67,220,182]},{"1713337":[220,227,47,242,18,30,1,182,225,63,224,83,221,50,237,1,166,186,146,65,17,243,110,209,240,182,48,239,69,220,34,14,240,222,170,199,61,74,2,91,165,45,92,182,240,37,236,16,47,240,222,207,182,16,64,240,35,223,16,32]},{"1713398":[182,21,252]},{"1713402":[47,2,236,191,63,182,32]},{"1713410":[20,239,47,47,16,20,186,205,34,44,18,238,227,77,31,166,63,7,236,48,48,49,5,45,186,227,45,49,222,211,95,208,77,182,243,14,1,16,17,33,17,206,182,14,35,15,188,3,254,65,1,166,30,211,48,50,78,37,170,235,182,19]},{"1713473":[236,227,252,50,33]},{"1713479":[182,225,32,33,46,2,253,239,243,166,255,27,163,10,52,49,244,193,186,16,30,29,49,253,244,227,224,166,92,192,234,38,48,245,240,243,182,48,16]},{"1713519":[15,192,224,240,79,182,255,237,20,31,3,31,226,64,182,241,31,238]},{"1713538":[238,225,64,31,182,220,5,30,4,31,227,79,210,182,47,222,32,238,225,48,47,220,182,4,29,5,46,211,111,193,33,182,206,32,238,224,17,64,220,33,182,253,21,62,211,110,225,16,191,182,48,238,240,241,65,189,64,222,182,35,64,210,111,240,31,191,48,182,238,15,241,66,206,63,205,51,186,29,196,76,15,31,226,47,224,182,47,240,50,223,63,204,51,50,166,208,98,64,235,191,255,238,61,182,240,33,241,46,220,19,50]},{"1713650":[166,50,115,169,208,237,15,14,255,170,62,17,251,29,54,46,236,64,182,68,204,240,237,17,255]},{"1713676":[14,186,64,238,47,227,62,29,47,50,182,220,239,252,2,255,2,254,35,182,254,1,239,50,32,16,36,236,182,239,252,3,14,243,238,36,254,166,2,205,86,1,80,53,11,189,166,250,241,46,197,221,7,60,225,182,15,19]},{"1713735":[64,33,15,222,253,166,13,64,197,236,212,126,237,63,186,17,15,75,32]},{"1713755":[209,15,61,182,17,242,14,225,64,13,16,16,186,16,76,15,17,224,240,45,49,182,1,15,208,50,44,241,32,243,186,29,30,31,1,240,13,66,254,182,240,208,49,61,225,48,211,81,186,28,48,242,224,253,66,30,241,186,194,63,74,211,79,165,92,10,186,81,210,16,234,97,46,241,209,182,16,80,237,35,208,99,59,241,178,34,69,59,155,221,205,202,187,182,98,12,3,238,84,91,226,254,194,35,63,222,254,222,254,220,241,182,28,226,15,84,92,210,237,51,182,26,160,31,242,15,255,36,46,182,209,31,51,94,210,236,51,44,186,228,47,229,238,15,49,14,224,182,240,51,49,210,236,51,30,189,166,222,196,78,27,36,100,236,176,182,68,17,210,252,35,16,205,221,186,19,44,255,50,210,239,210,98,182]},{"1713940":[227,26,243,33,206,204,242,186,15,194,18,196,254,223,102,173,182,196,60,210,18,223,251,193,35,198,224,18,241,17,253,244,47,225,182,94,208,19,237,11,176,52,222,182,37,240,17,28,198,96,190,98,182,222,3,253,29,174,53,238,4,182,31,31,63,179,82,235,68,238,182,227,13,30,188,36,254,19,78,182,29,50,177,66,42,20,14,210,182,28,31,219,5,29,17,95,30,182,2,223,64,92,227,32,208,29,182,15,221,229,29,17,64,14,242,182,30,79,95,178,33,239,29,224,182,237,229,29,1,67,13,241,30,182,64,66,176,17,14,30,223,253,182,212,47,240,36,46,209,30,17,182,67,207,17,30,15,223,254,211,186,252,2,33,237,242,45,33,62,166,175,1,46,254,174,237,146,112,182,254,36,62,238,47,241,84,223,186,16,46,30,241,15,2,62,237,182,37,79,237,16,255,69,224]},{"1714145":[182,31,15,207,254,224,35,28,245,182,65,222]},{"1714158":[14,54,241,224,31,182,1,207,239,208,19,44,213,66,178,31,255,14,245,70,67,67,52,182,207,224,192,18,46,180,68,222,178,17,14,229,87,84,101,51,15,182,240,207,17,16,179,69,237,241,182,15,229,19,15,16,240,239,255,182,206,34,16,194,69,237,242,14,166,214,37,77,32,240,205,192,170,186,64,255,226,65,189,34,13,19,182,3,79]},{"1714248":[1,238,208,236,2,186,255,225,50,220,17,46,2,227,182,48]},{"1714265":[1,253,208,12,226,32,186,225,50,236,1,47,241,228]},{"1714280":[182,16,1,44,191,46,192,33,254,182,20,63,239,17]},{"1714295":[241,3,48,182,208,78,190,47,190,50,253,20,182,79,239,16,240,16,3,49,192,182,64,173,48,204,19,14,3,49,182,254,1,241,46,226,67,207,66,182,187,33,219,4,14,2,34,13,182,1,226,63,225,67,206,67,220,182]},{"1714354":[220,227,47,242,18,30,1,182,225,63,224,83,221,50,237,1,166,186,146,65,17,243,110,209,240,182,48,239,69,220,34,14,240,222,170,199,61,74,2,91,165,45,92,182,240,37,236,16,47,240,222,207,182,16,64,240,35,223,16,32]},{"1714415":[182,21,252]},{"1714419":[47,2,236,191,63,182,32]},{"1714427":[20,239,47,47,16,20,186,205,34,44,18,238,227,77,31,166,63,7,236,48,48,49,5,45,186,227,45,49,222,211,95,208,77,183,243,14,1,16,17,33,17,206,2]},{"1714478":[58,244,52,35,240,19,30,176]},{"1714487":[74,224,224,33,18,49,17,1,177,90,79,254,1]},{"1714501":[18,17,33,239,74,240,18,38,254,241,31,208,27,90,205,204,240,20,84,34,240,221,90,11,205,19,19,49,32,33,15,90]},{"1714534":[35,19,49,17,17,35,60,106,237,221,223,18,52,101,33,252,106,204,206,3,50,34,32,255,255,90,51,31,220,19,63,239,34,14,122,254,221,223,255,37,100,14,254,106,154,174,2,68,33,33,15,239,106,52,16,255,37,65,15,15,239,138,15,254,239]},{"1714600":[53,82,237,238,106,175,241,66,86,48,1,31,255,122,1,16,240,18,16,254,237,222,138,255,15,254,224,87,64,236,205,106,174,21,98,36,65,224]},{"1714639":[15,106,1,17,51,85,33,15,235,187,138,15]},{"1714652":[15,239,37,65,240,254,118,63,205,241,35,52,68,50,31,106,1,15,1,34,15,15,221,220,138,239,240,255]},{"1714681":[15,15,21,97,138,204,205,1,17,16,1,16]},{"1714694":[106,49,15,16,36,66,34,18,33,154,15,255]},{"1714707":[15]},{"1714709":[254,21,114,154,236,222,241,17,1]},{"1714719":[1]},{"1714721":[90,158,207,220,237,15,31,239,29,170,15,240,16,240,15,239,20,65,154,203,205,241,33,1,16,241,16,106,176,16]},{"1714752":[19,69,86,68,47,170,15,240]},{"1714763":[254,4,66,154,221,189,241,1,17]},{"1714773":[1]},{"1714775":[106,174,192,238,219,224,17,15,16,154]},{"1714786":[255]},{"1714788":[240,15,239,241,36,154,66,220,223,240,18,16,16]},{"1714802":[122,64,255]},{"1714806":[15,2,51,34,34,138]},{"1714813":[255,238,241,14,240,13,229,170,67,254,255,224,1,1,1]},{"1714829":[138,192,241]},{"1714833":[254,240,15,1,17,138]},{"1714840":[15,221,240,255,255,235,147,170,84,14,237,240,16,16,16]},{"1714856":[122,65,239]},{"1714860":[1,240,2,51,85,138,16,255,221,224,1,31,219,160,170,70,46,221,224,17,1]},{"1714882":[1,122,14,255,238,240,254,239,34,51,138,16,238,203,208]},{"1714898":[34,251,189,170,19,65,237,239]},{"1714907":[16,16]},{"1714910":[134,53,66,33,16,15,238,240,36,122,50,31,220,189,240,17,237,219,170,240,52,47,238,239,17]},{"1714936":[16,106,86,107,238,222,221,204,241,66,138,16,14,236,188,2,50,31,236,154,208,71,79,187,208,16,17,17,118,70,85,84,33,15,237,206,20,122,52,32,236,188,224]},{"1714980":[254,202,170,240,52,47,238,224,1,1]},{"1714991":[122,53,45,255,255,255,238,240,33,138,16,13,203,221,2,67,47,203,154,224,70,63,204,223,1,33,17,106,81,36]},{"1715022":[240,15,255,36,86,122,52,32,221,203,208,16,253,202,170,240,52,47,238,255,1,16]},{"1715045":[122,85,45,240,255,255,239]},{"1715053":[18,138,16,14,203,205,241,51,47,236,154,239,71,78,188,223,1,18,16,118,244,101,67,34,16,254,239,37,122,51,33,236,188,224]},{"1715088":[253,202,170,240,52,47,238,224,1,1,1,106,243,229,254,239,254,223,2,52,138,16,15,236,205,239]},{"1715115":[15,254,154,241,86,62,203,222,1,17,17,106,86,65,17,240]},{"1715132":[239,21,102,122,52,48,221,204,208,16,253,201,170,240,52,47,238,239,17]},{"1715152":[17,106,255,38]},{"1715157":[238,238,222,19,68,122,34,14,203,169,189,219,189,255,154,1,87,78,187,222,240,33,16,118,207,52,68,50,16,254,224,54,122,51,48,237,203,224,16,253,202,170,240,51,47,254,239,1,16,1,122,127,243,31,255,255,255,2,34,138,17,31,237,236,222,236,222,240,170,1,52,47,221,239]},{"1715232":[16,16,122,81,82,16,240]},{"1715241":[2,52,122,68,32,236,188,240]},{"1715250":[254,202,170,240,36,32,238,239,1,16,1,122,114,242]},{"1715265":[240,239,224,2,34,138,18,31,238,220,222,221,205,224,170,1,52,47,237,239,15,1,17,122,1,5,16,240]},{"1715295":[2,52,122,68,33,236,188,224]},{"1715304":[254,202,170,240,52,31,239,239,1,16,16,122,65,96,15,240,15,223,2,36,138,18,31,238,220,238,254,219,205,170,241,53,32,222,239,240,16]},{"1715342":[118,225,33,17,254,221,204,206,38,122,51,49,236,188,224,16,253,218,170,240,51,47,254,239,1,1,1,122,37,242,1,240]},{"1715375":[239,2,34,138,18,16,254,220,239,14,237,203,170,240,35,48,254,255,240,1]},{"1715396":[106,183,82,34,1,1,240,37,103,122,67,48,252,204,239,17,253,202,170,240,52,47,222,240]},{"1715421":[1,16,122,4,66,16,240]},{"1715429":[255,1,34,138,18,16,254,220,239,15,236,203,170,240,35,48,254,255,240,1]},{"1715450":[106,182,98,17,17,1]},{"1715457":[21,103,122,68,32,237,204,224,16,253,202,170,240,52,47,237,224,16,1,16,106,23,114,32,240,15,238,2,69,138,18,16,238,221,239,15,236,203,170,255,36,48,254,239]},{"1715503":[1,118,98,224,15,237,204,187,189,4,122,68,32,238,188,224,1,253,203,171,240,52,31,239,239,1,16]},{"1715540":[176]},{"1715542":[14,110,17,32,17,18,16,160,95,253,68,243,30,108,110,191,176,28,208,29,15,30]},{"1715565":[237,2,164,149,225,18,11,110,191,179,95,180,210,225,229,227,16,238,253,1,180,64,49,47,224,207,179,15,3,180,35,211,47,1,29,238,145,192,184,30,45,65,253,78]},{"1715611":[242,184,149,196,230,175,50,194,2,241,180,35,20,242,253,222,239,239,60,180,2,240,17,226,239,34,36,33,180,224,28,16,30,254,15,240,241,176,255,226,2,17,83,30,67,52,180,254,209,241,226,2,48,79,1,180,209,191,176,179,36,19,36,46,196,30,14,242,193,225,255,14,2,180,213,80,52,15,3,198,192,79,180,224,254,252,209,175,3,179,20,180,21,7,16]},{"1715707":[13,253,219,237,196,1,1,244,241,48,224,15]},{"1715720":[196,225,15,1,228,3,242,254,30,196,240,209,253,63,16,241,228,209,196,78,16,30,4,224,45,16,225,180,240,240,11,62,241,162,48]},{"1715756":[180,67,52,213,254,192,204,60,223,184,91,228,31,61,242,206,76,44,196,78,225,32,5,242,16,241,193,180,177,207,43,80,242,208,34,164,196,15,2,196,46,32,2]},{"1715800":[45,196,14,29,17,15,207,77,31,30,176,223,39,101,119,228,97,80,26,180,111,6,150,205,123,60,224,207,180,21,206,96,6,62,94,212,27,196,63,239,255,14,224,15,18,227,196,226,19,239,76,20,241,254,63,196,29,58,228,193,255,64,224,78,176,246,15,50,21,64,21,237,30,192,32,241,48,241,45,207,15,212,192,254,222,254,238,64,6,66,51,196,12,255]},{"1715895":[226,34,240,228,211,196,195,236,16,14,34,241,20,30,196,48,15,225,222,31,255,241,48,192,193,253,2,22,99,67]},{"1715926":[27,192,221,206,14,20,242,67,52,241,176,28,162,159,47,227,239,239,194,192,255,49,36,94,1,205,219,240,192,208,47,4,33,50,50,15,17,192,207,44,240,253,255,2,1,98,196,33,242,12,14,27,60]},{"1715980":[2,192,236,34,82,52,83,52,62,227,192,237,193,221,254,244,34,66,53,192,14,60,238,204,192,224,242,67,180,3,30,210,180,146,250]},{"1716016":[241,196,47,16,229,227,244,239,30,18,196,252,44,227,212,223,63,60,95,192,33,213,32,49,15,14]},{"1716043":[195,192,14,18,36,50,50,255,32,226,192,3,13,64,218,30,204,1,194,192,49,63,49,47,19,255,2,16,192,15,254,241]},{"1716076":[255,225,176,222,196,31,50,226,243,196,195,253,79,192,205,29,173,221,237,223,239,14,196,4,47,33,212,255,31,253,28,192,252,221,189,255,194,237,17,34,196,224,79,213,223,3,176,240,14,176,145,249,224,11,19,50,178,80,192,33,16,225,65,49,77,255,209,192,190,255,237,48,32,197,224,35,196,209,243,13,20,222,17,224,227,192,27,31,48,240,240,208,63,239,192,47,14,240,204,34,210,81,65,192,34,29,240,255,254,238,223,10,176]},{"1716190":[17,19,117,33,16,209,228,192,240,30,176,18,254,253,27]},{"1716206":[192,239,50,32,65,15,4]},{"1716214":[31,192,49,243,30,196,15,225,255,178,192,47,16,65,242,1,176,31,3,176,38,240,17,42,3,49,36,95,176,211,235,144,204,196,5,37,38,192,206,28,242,240,35,37,18,64,176,14,10,42,163,239,48,2,188,192,31,194,30,21,68,19,47,235,192,236,221,213,239,49,33]},{"1716286":[237,192,162,236,35,243,5,81,67,26,192,16,193,206,251,253,29,224,225,192,33,47,36,37,50,64,44,32,192,14,253,254,47,28,177,237,20,192,228,36,51,19,60,66,223,251,176,1,155,74,241,191,220,7,18,192,67,50,19,222,1,238,15,222,192,225,49,21]},{"1716355":[17,207,238,46,192,18,208,240,16,58,44]},{"1716367":[31,192,1,64,82,21,208,2,238,15,192,210,192,236,62,238,33,34,17,192,92,95,224,14,12,17,47,46,192,3,31,254,177,240,61,47,78,192,19,37,18,61,254,239,223,238,196]},{"1716415":[2,224,47,60,62,63,5,192,18,19,30,14,45,192,251,195,192,222,32,18,33,95,1,45,50,192,240,206,44,225,32,1,163,220,192,64,195,48,16,67,31,32,210,192,239,12,3,240,47,207,14,1,192,36,195,49,19,254,30,160,172,192,29,33,1,37,226,33,240]},{"1716485":[192,207,60,33,96,18,223,221,220,192,253,44,2,31,244,2,51,46,192,49,17,47,240,29,188,219,253,192,77,78,95,21,17,16,64,1,196,223,63,238,45,77,4,196,241,192,4,35,18,33,48,74,50,13,192,47,236,255,253,209,205,65,34,192,4,17,4,221,240,161,209,2,192,33,46,35,16,13,61,29,32,192,14,62,33,63,64,19,12,33,192,193,12,226,209,1,17,16,45,192,17,211,46,32,16,94,5,207,192,62,62,192,223,46,63,65,3,192,163,224,191,29,239,210,29,31,192,15,4,239,50,239,34,14,17,192,28,31,15,16,31,242,59,19,192,208,32,33,255,59,1,16]},{"1716638":[192,31,255,239,63,63,110,65,46,180,99,186,67,16,195,224,4,11,180,227,254,16,77,57,36,240,23,192,224,111,31,32,62,211,17,3,192,253,19,176,2,16,227,1,209,192,254,2,28,32,2,15,30,30,192,16,238]},{"1716696":[44,49,1,3,15,192,13,13,244,192,65,62,77,32,192,240,255,31,238,240,226,29,96,192,93,2,15,93,62,95,95,209,192,11,46,10,41]},{"1716734":[2,78,52,192,4,224,238,237,30,242,33,17,192,51,30,16,221,255,211,31,64,192,84,32,245,192,15,210]},{"1716763":[17,192,208,59,17,209,227,243,240,63,192,240,193,207,239,18,240,3,5,192,47]},{"1716785":[255,255,254,27,48,17,192,31]},{"1716794":[255,14,17,240,49,95,192,3,238,14,12,62,209,15,80,192,1,93,17,237,12,241,240,2,192,210,32,62,47,14,31,17,12,192,45,196,208,47,3,1,17,243,176,156,78,4,11,240,242,17,208,192,177,46,46,29,3,224,226,240,192,239,62,15,224,210,18,17]},{"1716863":[192,14,61,208,224,241,215,239,79,192,32,31,254,223,223,242,76,19,176,30,62,253,44,30,80,95,2,176,65,31,228,240,241,63,76,15,192,63,13,222,239,47,17,255,48,192,65,32,13,240,210,193,33,18,196,31,241,225,28,16,196,14,50,192,255,78,48,244,255,225,225,31,192,18,17,242,17,252,255,209,255,192,17]},{"1716947":[243,242,17,240,29,62,176,192,205,3,62,95,11,48,255,192,42,30,31,31,227,254,95,21,192,255,16,61,15,29]},{"1716978":[220,240,192,209,19,4,18,46,34,224,44,192,224,226,16,1,243,60,240,222,180,79]},{"1717001":[107,77,36,220,63,195,192]},{"1717009":[240,17,15,31]},{"1717014":[255,160,192,253,208,15,19,1,48,64,210,192,238,17,237,12,254,1]},{"1717033":[35,192,243,77,255,13,49,242,225,15,176,2,26,243,208,240,218,70,209,192,78,63,226,255,224,192,33,32,180,61,91,59,20,203,19,183,197,196,16,244,237,32,253,47,1,212,192,210,3,226,33,31,13,27,226,176,173,74,6,255,64,163,255,110,192,15,30,2,30]},{"1717103":[226,194,239,192,14,77,48,46,2,1,19,15,176,76,49,32,25,223,206,63,244,176,255,63,231,191,77,213,255,1,176,49,244,165,226,253,241,254,226,192,14,16,225,63,211,243,2]},{"1717151":[192,208,15,195,15,227,31]},{"1717160":[192,15,16,241,32,65,19,2,18,192,29,208,208,176,253,32,47,19,176,67,213,77,48,240,255,75,61,192,44,241,192,253]},{"1717193":[31,64,19,192,16,73,32,13,2,208,29,253,176,246,252,243,42,66,167,213,211,176,239,223,50,5,44,100,20,15,196]},{"1717225":[227,209,210]},{"1717229":[4,240,3,192,18,3,240,209,207,224,14,17,176,227,245,19,224,29,47,163,1,176,52,78,60,227,240,29,15,197,176,176,59,58,12]},{"1717265":[213,255,95,176,51,36,221,90,27,221,190,238,176,50,111,67,194,13,235,26,225,192,240,255,16,48,36,224,241,238,176,29,218,210,227,245,1,6,5,192,227,240,16,240,192,224,209,255,192,1,34]},{"1717317":[49,241,44,16,237,192,14,15]},{"1717326":[32,2,242,63,64,192,17,13,63,195,13,32,241,14,176,78,33,110,48,48,224,193,229,176,194,193,62,35,28,82,177,255,192,207,254,240,212,31,66,224,32,192,3,240,14,15,193,192,14,255,176,44,36,229,229,80,52,47,224,180,210,252,77,49,43,4,16,27,176,229,222,49,209,27,11,34,14,192,50,16,14,29,15,29]},{"1717411":[253,176,64,49,21,98,19,251,254,241,176,206,43,243,242,243,214,223,2,192,209,210,17,34,1,2,222,254,176,34,194,4,180,253,48,199,144,176,2,177,48,2,18,30,92,210,176,254,64,226,45,31,210,234,48,192,225,46,63,52,62,17,176,28,192]},{"1717478":[46,53,242,48,16,15,176,221,161,27,98,6,31,110,11,176,33,193,15,194,66,19,255,13,176]},{"1717504":[255,46,4,47,77,47,1,192,240]},{"1717514":[16,32,227,255,18,227,176,209,1,211,30,48,176,14,22,192,224,255,66,242,14,18]},{"1717537":[178,176,189,221,237,214,227,20,62,35,192,32,210,237,46,224,3,244,3,176,64,63,197,175,189,9,47,32,192,21,2,51,17,17,238,1,224,176,177,241,3,208,13,16,180,235,176,21,37,20,18,31,253,180,189,176,195,33,250,63,177,28,79,80,180,63,90,2,238,59,93,255,59,180,94,77,17,196,224,93,48,195,192,63,228,223,239,209,224,255,195,192,241,35,244,241,17,241,240,241,192,241,210,242,17]},{"1717643":[15,241,193,192,253,16,209,31]},{"1717652":[2,17,3,192,2,17,224,29,15,207,236,62,192,1,2,21,244,46,32,242,253,176,111,205,77,243,148,252,18,190,192,32,194,2,94,67,223,63,208,192,254,32,4,16,63,226,220,45,192,195,241,63,51,240,33,194,15,176]},{"1717711":[240,1,213,192,63,224,28,176,32,213,47,81,246,180,253,224,176,30,227,226,29,29,15,239,211,192,14,15,47]},{"1717741":[31,34,28,48,176,194,225,14,34,13,79,175,13,176,207,240,241,51,5,63,2,60,176,16,209,45,79,245,207,60,12,176,191,58,66,195,50,18,50]},{"1717781":[192,242,254,44,254,31,15,32,15,176,110,211,43,81,33,47,93,213,176,224,79,241,224,44,208,11,32,176,227,253,93,36,223,62,64,208,176,32,18,47,209,189,13,194,239,176,51,34,3,46,66,239,27]},{"1717835":[176,195,26,79,255,253,236,14,18,176,242,1,17,243,254,16,181,13,176,1,225,31,16,223,10,34,209,176,13,48,241,46,18,195,224,15,176,179,45,18,253,243,255,32,18,176,211,59,65,238,64,1,2,14,176,61,47,17,240,10,46,15]},{"1717898":[176,78,64,43,110,162,240,89,47,176,12,63,227,48,60,35,238,240,176,207,64,229,19,210,33]},{"1717924":[16,160,179,10,211,249,117,227,196,251,176,65,226,211,194,228,208,224,18,160,150,210,77,254,17,33,240,75,176,13,79,242,223,45,63]},{"1717960":[17,176,17,227,28,45,226,222,61,1,192,16,33,16,47,79]},{"1717977":[224,255,176,31,238,49,228,2,240,16,195,180,180,177,91,48,228,196,167,192,176,75,47,193,192,240,49,243,20,176,208,255,222,79,213,212,29,99,192,255,1,193,208,14,32,2,33,160,164,30,92,14,244,144,240,75,176,17,210,194,238,33,15,6,208,176,15,30,32,238,243,193,1,240,176,226,244,31]},{"1718056":[2,227,31,1,176,240,224,206,178,223,17,33,3,176,240,2,225,30,240,195,61,18,176,242,1,225,31,93,1,241,240,160,81,207,75,50,16,16,64,240,176,19]},{"1718099":[47,28,16,226,240,242,176,240,48,245,16,15,13,241,30,176,222,15,224,1,247,17,51,30,176,1,222,207]},{"1718128":[241,15,81,2,176,16]},{"1718135":[1,30,1,193,29,14,176,227,242,34,4,48,50,244,225,180,255,210,44,79,227,225,17,4,176,65,19,242,47,240,208,236,224,160,253,90,64,227,190,225,223,33,160,17,20,2,49,223,79,62,46,160,222,13,205,12,255,63,64,227,160,241,95,244,255,17,223,31,237,164,243,226,30,1,16,241,17,193,160,63,47,241,2]},{"1718219":[242,243,178,160,235,47,206,28,226]},{"1718229":[47,1,144,52,68,115,245,195,91,221,219,160]},{"1718242":[239,208,239,95,18,77,49,160]},{"1718252":[241,177,60,18,223,47,160,255,255,90,84]},{"1718264":[63,5,226,160,29,47,239,45,51,210,242,239,160,223,26,1,14,49,28,33,47,160,48,16,19,240,208,239]},{"1718293":[12,160,224,212,15,51,32,82]},{"1718302":[46,144,11,190,205,4,223,252,33,164,160,222,33,1,61,66,241,34,240,144,63,147,251,31,47,224,69,219,160,253,239,207]},{"1718335":[33,245,95,48,144,1,63,188,208,155,15,240,49,160,255,255,31,69]},{"1718354":[33,16,62,144,222,192,203,252,50,229,4,225,160,33,1,27,29]},{"1718372":[14,33,226,144,17,48,50,14,226,190,253,223,144,192,47,210,14,245,33,212,47,160,31,45,1]},{"1718398":[176,253,33,32,144,22,192,236,59,240,253,82,243,144,93,16,65,38,237,25,75,208,144,30,15,45,17,91,2,19,16,160,48,1,31,1,224,13,16,31,144,94,33,47,59,221,222,17,64,144,65,81,16,242,12,43,224,224,144,29,244,44,35,239,31,61,49,144,18,4,239,44,28,30,194,240,144,242]},{"1718477":[46,15,210,26,51,195,148,212,227,241,29,242,206,62,237,144,11,44,224,226,34,16]},{"1718500":[18,144,16,20,225,66,3,224,28,13,144,188,241,224,229,17,127,50,15,144,15,255,11,51,4,18,66,255,144,219,175,209,238,79,51,22,1,144,63,17,25,47,240,13,31,254,144,252,208,206,62,34,33,33,50,144,254,60,224,224,240,15,225,62,144,1,240,46,46,15,14,20]},{"1718573":[144,65,46,14,253,224,238,32,224,144,32,17,16,48,50,15,80,16,128,43,94,211,208,15,15,47,13,128,208,236,77,243]},{"1718606":[77,54,29,144,79,244,240,31,239,253,45,226,128,11,64,47,16,63,2,16,32,128,61,53,253,28,205,223,208,240,128,1,67,31,94,242,16,242,79,128,67,17,255,57,15,235]},{"1718653":[1,128,46,49,16,16,16,251,13,254,132,79,32,255,76,254,2,211,29,128,62,66,18,17,3]},{"1718679":[14,238,128]},{"1718683":[14,1,241,4,223,14,12,112,241,14,99,229,20]},{"1718697":[34,188,128,29,255,242,240,65,31,30,1,112,194,163,237,17,255,109,49]},{"1718717":[112,253,211,202,78,209,63,99,36,112]},{"1718728":[18,221,42,207,63,36,227,112,33,62,62,28,19,255,1,63,112,15,240,250,12,227,1,35,67,112,50,82,30,45,255,12,29,63,112,225,30,226,255,241,255,78,33,112,255,28,242,206,46,241,30,31,112,18,1,30,224,42]},{"1718787":[242,18,112,80,31,80,3,240,32,238,206,96,171,252,13,50,36,66,6,243,96,31,32,229]},{"1718812":[239,29,47,239,96,190,255,196,15,49,3,13,48,96]},{"1718827":[239,225,208,28,46,95,48,96,209,224,28,46,46,34,17,16,96,16]},{"1718846":[239,47,47,29,245,176,96,255,254,29,63,229,2,50,1,80,31,62,220,9,18,148,211,195,80,30,94,209,213,255,241,32,17,80,224,30,253,208,240,228,46,98,80,16,242,210,178,254,1,255,33,64,198,226,60,17,239,223,210,14,80,32,32,240,224,31,62,1,242,64,161,239,12,76,214,227,35,81,64,34,230,177,26,255,254,3,227,64,46,61,2,1,229,16,93,33,64,1,239,254,239,241,192,255,16,52,123,90,16,179,43,32]},{"1718959":[31,48,35,223,77,16,254,255,1,2,36,46,226,15]},{"1718974":[44,48,45,2,16,227,13,75,224,240,17,16,48,16,78,35,241]},{"1718992":[17,16]},{"1718995":[1,1,16,62]},{"1719005":[2]},{"1719014":[86]},{"1719022":[194,138,33,15,255,254,190,114,31,36,170,32,254,240,15,223,65,16,17,186,32,254,240,15,239,65,31,1,186,48,238,240,255,224,65]},{"1719058":[17,186,47,254,255]},{"1719064":[238,66,31,1,186,48,237]},{"1719072":[255,224,65]},{"1719076":[1,186,48,237]},{"1719081":[14,239,66,31,1,186,48,237,241,15,223,66]},{"1719094":[1,186,33,253,224]},{"1719100":[238,66,15,18,186,32,238,240,255,239,81]},{"1719112":[16,186,33,253,240,255,255,49,16,1,186,49,237,224]},{"1719127":[238,66]},{"1719130":[1,186,33,253,255]},{"1719136":[238,66]},{"1719139":[1,186,33,238,240,255,254,66,31,1,186,33,238,240,240,238,66]},{"1719157":[1,186,34,237,224,31,238,66]},{"1719166":[1,186,33,253,224,31,238,66]},{"1719175":[1,186,33,253,224,31,238,66]},{"1719184":[1,186,33,253,240,14,239,66]},{"1719193":[1,186,33,254,239]},{"1719199":[238,51,31,242,170,97,203,208,15,204,116,47,2,186,33,254,239]},{"1719217":[238,66]},{"1719220":[1,186,33,254,239]},{"1719226":[238,66]},{"1719229":[1,186,34,237,225,15,238,66]},{"1719238":[1,170,68,202,209,240,203,102,31,2,170,82,219,193,255,219,101,47,2,170,67,219,192]},{"1719262":[202,103,31,243,170,67,204,192,15,218,102,47,1,170,83,219,177,15,219,86,47,242,170,83,204,193,255,204,86,47,242,170,83,204,223,240,219,86,47,242,170,83,204,192]},{"1719307":[202,102,47,242,170,68,220,176]},{"1719316":[187,102,47,242,170,68,220,176,240,219,85,32,1,170,68,219,192,240,218,102,47,242,170,67,236,176,241,203,70,32,2,170,51,236,176,241,203,71,47,242,170,67,236,176]},{"1719361":[202,102,16,242,170,68,220,176,241,217,86,63,242,186,34,253,224]},{"1719379":[252,36,31,1,170,68,235,207,240,220,54,32,2,170,50,252,207,15,221,37,48,2,170,50,252,207,15,221,37,48,2,171,50,252,207,15,221,37,48,2,2]},{"1719428":[122,205,223,2,53,85,51,32,220,138,238,238,240,1,16,238,237,204,122,155,225,53,86,100,50,17,17,122,19,52,52,33,255,221,223,2,106,53,86,68,32,254,237,237,220,122,254,254,218,170,169,189,224,20,122,69,84,49]},{"1719488":[2,52,102,122,100,31,220,187,190,19,53,101,122,67,47,237,221,222,222,240,237,122,204,171,189,223,1,35,50,34,122,18,51,51,67,52,49]},{"1719526":[220,122,205,222,2,68,85,82,31,237,138,238,238,240]},{"1719541":[16,255,220,205,122,155,225,52,86,101,50,1,18,122,18,52,67,33,14,221,239,241,106,86,85,83,32,254,238,221,221,122,239,253,204,185,154,188,224,35,122,85,83,49,16,240,18,37,102,122,84,31,236,171,206,3,69,85,122,83,31,253,220,222,238,255,253,122,203,186,205,222,17,34,50,50,122,33,35,52,52,52,34,15,221,123,204,223,2,53,85,67,31,236,2]},{"1719644":[122]},{"1719646":[254,224,30,243,70,102,243,122,12,175,204,16]},{"1719659":[10,37,16,138,46,222,221,239,221,18,35,49,138,238,208,50,33,15,68,52,63,138,225,33,33,2,15,21,17,13,138,222,236,223,14,17]},{"1719696":[47,254,138,187,240,20,47,1,19,66,255,138,238,2]},{"1719711":[254,2,34,30,204,138,254,205,254,240]},{"1719722":[31,241,14,138,239,3,49,17,17,51,51,47,122,225,36,65,239,3,51,218,206,122,190,252,190,238,14,223,14,236,122,208,51,51,32,19,70,97,240,122,241,51,47,15,37,78,222,206,122,254,221,188,239,242,17,32,221,122,15,2,32,17,19,83,49,240,122,36,49,14,226,83,16,221,239,122,255,219,239]},{"1719802":[17,34,253,223,122,239,17,18,1,52,49,31,240,122,34,32,207,35,51,252,221,223,122,253,204,239,255,18,30,238,222,106,14,19,31,38,85,68,1,52,122,67,252,225,52,32,238,223]},{"1719851":[106,170,188,221,208,48,220,188,205,122,1,31,241,18,68,33,32,53,122,79,239,19,67,16,238,240,15,106,185,188,173,15,29,171,203,174,122]},{"1719889":[255,240,19,51,17,19,51,122,30,224,52,82,15]},{"1719903":[17,31,106,220,172,225,17,254,221,205,240,122,240,15,1,34,66]},{"1719921":[35,32,122,238,240,52,32,255,240,16,237,122,221,206,241]},{"1719937":[240,255,240,240,122,255,240,2,67,50,34,51,31,106,223,20,101,47,206,17,15,202,122,204,208]},{"1719963":[255,239,254,239,14,106,223,15,54,117,50,69,81,237,122,224,35,50,15]},{"1719984":[15,219,122,190,1]},{"1719990":[15,255,255,14,255,106,237,3,103,99,52,99,31,221,122,241,51,32,255,16,16,13,203,106,192,17,31,255,255,255,238,254,106,224,20,103,36,69,50,14,221,122,3,50,15,240]},{"1720038":[237,204,90,161,81,14,221,241,254,222,237,106,242,70,84,69,100,48,253,224,122,35,16]},{"1720062":[255,1,30,204,222,90,176]},{"1720070":[220,206,254,205,186,187,106,2,68,68,86,67,30,206,3,122,34,16,240,1,18,253,189,224,106,240,255,240]},{"1720099":[15,238,235,223,106,37,68,52,86,67,31,205,244,123,34,16,15,1,33,253,205,223]},{"1720130":[144,221,75,61,34,15,17,240]},{"1720139":[144,59,93,45,33,228,16,2,253,144,29,225,31,3,28,15,238,241,128,3]},{"1720160":[229,224,255,243,225,30,160,30,17,241,46,29,16,28,62,160,30,2,42,109,255,31,61,1,176,30,78,47,16,15,16,44,48,176,15,18,221,63,16]},{"1720200":[226,75,176,65,1,1,238,122,110,31,225,192,1,227,224,31,43,30,15]},{"1720220":[176,32,63,63,29,15,255]},{"1720228":[16,160,19,48,240,44,31,223,2,50,160,95,50,31,46,16,240,16,3,160,226,240,15,32,28,15,241,5,164,207,32,210,199,2,3,209,255,164,238,178,238,2,254,225,226,226,148,23,247,36,100,243,245,235,249,164,105,76,77,210,176,239,195,226,164,226,17,244,214,226,31,18,15,152,50,27,122,245,251,246,235,54,148,224,242,16,228,238,78,17,81,148,32,19,20,149,239,178,226,196,148,193,255,58,225,223,62,19,18,160,32,66,35,33,2,2,3,35,148,227,207,223,209,224,17,31,15,148,78,226,19,242,227,15,16,241,148,60,31,46,240]},{"1720370":[224,240]},{"1720373":[148,194,243,226,244,209]},{"1720380":[227]},{"1720382":[148,242,227,14,17,228,193,227,243,128,192,222,201,155,207,251,45,241,128,162,44,241,70,49,32,70,85,128,225,49,35,253,252,192,13,209,144,192,254,14,225,241,45,3,36,144,19,46,63,20,194,224,45,15,144,3,15,12,12,14,242,242,15,144,15,47,237,245,65,15,50,35,116,175,189,48,183,187,93,230,14,144,15,29,32,252,238,237,240,2,132,68,194,47,35,207,29,207,223,132,223,253,242,46,80,18,2,16,132,79,3,227,223,224,226,188,16,132,211,17,15,96,95,48,225,16,132,224,207,207,239,12,225,47,48,132,79,66,94,112]},{"1720523":[15,162,31,132,204,238,255,225,17,236,96,29,132,69,241,17,111,253,36,186,34,132,206,177,63,2,242,15,52,11,132,34,240,255,75,221,80,206,17,132,45,35,90,3,126,239,35,250,132,17,234,227,122,236,80,49,242,116,26,100,253,58,47,220,106,239,132,106,30,31,64,2,31,64,16,120,244,176,62,211,29,46,210,83,132,227,17,95,226,1,4,62,57,152,66,237,1,32]},{"1720622":[193,211,68,168,14,254]},{"1720629":[34,46,12,31,47,148,65,61,221,205,242,50,45,15,136,110,63,75,31,253,2,79,28,136,29,2,241,241,1,75,13,81,136,242,29,192,93,48,252,61,45,148,253,32,255,47,45,2,36,33,148,241,51,255,207,35,203,192,2,148,29,240,19,30,240,52,31,224,132,67,221,36,61,222,252,241,13,132,44,253,244,83,11,226,35,67,136,209,255,32,77,27,15,66,15,120,173,48,98,58,60,206,97,94,132,31,237,240,1,31,252,206,4,136,240,252]},{"1720746":[32,240,242,94,208,120,227,243,243,241,173,246,3,223,120]},{"1720762":[224,64,11,110,28,99,209,132,253,253,19,244,205,14,79,31,132,209,15,238,255,62,79,91,96,116,231,193,195,48,161,242,162,18,116,12,75,241,225,228,178,213,1,116,241,46,67,21,208,205,32,255,100,13,224,223,224,52,226,14,123,100,47,246,179,36,111,31,190,5,104,145,161,84,251,197,123,58,27,116,3,84,13,204,255,52,254,207,132,3,51,16,253,238,15,1,208,120,224,38,240,155,85,59,165,63,120,193,35,218,36,46,225,48,221,120,84,218,227,48,210,33,209,34,116,64,13,205,162,238,239,19,83,100,34,203,15,223,194,19,18,113,116,45,225,32,207,16]},{"1720911":[253,31,116,240,78,243,65,34,239,16,176,116,237,225,226,68,30,255,244,255,100,28,254,199,115,208]},{"1720938":[254,6,116,253,13,33,14,15,224,66,33,116,46,224,242,253,252,64,32]},{"1720958":[112,2,4,226]},{"1720963":[62,78,14,176,116,150,238,42,111,53,228,223,45,112,111,252,157,209,2,240,242,49,136,240,63,17,222,244,228,61,254,136,179,83,223,220,65,34,252,226,136,244,92,223,226,50,237,14,51,132,85,239,203,19,2,219,224,35,116,32,207,50,67,254,75,246,236,116,60,2,237,208,78,80,223,242,120,243,192,224,80,43,209,199,37,132,30,223,226,33,31,224,2,16,132,30,16,241,241,14,210,213,212,128,254,221,193,50,33,17,20,32,116,29,245,174,63,1,14,210,228,116,20,62,255,32,47,30,241,223,116,14,239,255,48,49,254,229,23,116,12,227,206,33,32,252,240,206,116,32,30,50,2,1,5,211,164,132,1,242,195,239,15,254,15,240,132,34,4,211,50,193,209,1,255,128,253,206,208]},{"1721143":[14,238,229,78,128,46,229,67,83,243,207,174,11,144,31,208,12,34,3,28,241,208,132,50,60,196,11,17,207,241,79,132,240,78,83,57,45,255,162,91,148,16,19,255,78,223,225,239,242,132,3,255,29,113,97,241,240,28,152,1,36,13,255,193,255,3,213,152,78,1,44,62,222,30,1,1,148,17,22,240]},{"1721224":[16,206,162,17,164,16,36,33,237,225,33,190]},{"1721237":[152,13,66,223]},{"1721242":[20,220,241,64,132,125,174,51,251,255,46,34,242,152,29,14,34,91,255,34,207,209,152,245,32,228]},{"1721269":[13,193,242,45,136,47,52,238,195,33,224,252,118,152,255,165,150,34,60,11,176,242,168,19,17,240,227,194,210,1,227,164,177,193,193,253,16,38,36,33,168,224,241,226,16,16,225,46,79,180,1,255,239,15,225,1,1,228,164,35,238,26,240,33,4,255,224,184,14,32,241,16,210,226,92,27,180,253,209,3,60,31,209,2,46,180,79,30,192,194,33,95,14,224,180,245,241,254,254,241,34,66,62,180,205,252,240,110,227,14,17,179,180,240,19,4,226,192,211,47,14,164,49,241,28,246,239,177,210,252,180,15,20,33,210,92,44,28,237,184,19,34,209,221,15,66,225,255,180,16]},{"1721420":[208,47,243,3,193]},{"1721426":[176,52,18,33,237,174,18,224,171,180,19,70,175,211,254,224,255,109,180,1,63,50,17,250,61,204,82,176,203,17,242,19,54,59,178,205,176,1]},{"1721465":[63,240,66,17,176,34,176,206,1,34,47,240,209,3,46,176,13,66,192,253,21,95,222,27,176,212,242]},{"1721493":[208,18,67,252,239,176,32,224,242,78]},{"1721504":[30,17,32,192,192,16]},{"1721511":[48,222,255,48,47,180,13,51,93,221,3,17,30,241,160,223,47,254,60,239,17,46,252,160,226,65,209,240,194,213,18,243,160,229,2,252,223,212]},{"1721550":[240,18,160,52,207,13,47,47,205,32,49,176,29,239,244,18]},{"1721567":[239,238,32,160,35,30,1,51,1,235,253,80,164,46,224,242,18,221,62,17,3,144,37,79,242,81,252,252,46,37,144,79,44,2,2,222,191,35,30,160,2,29,229,31,13,191,50,254,144,36,65,19,254,237,62,44,225,144,115,227,39,60,225,221,226,34,144,202,242,83,49,221,31,93,226,144,179,240,208,76,77,35,31,237,160,255,5,16,237,1,15,209,3,160,235,16,20,252,242,15,19,14,160,13,182,38,127,28,221,250,15,164,211,50,255,46,15,30,15,239,160,176,19,111,51,31,240,254,30,160,222,208,67,16,2,49,255,241,148,76,14,16,14,229,224,208,15,152,47,16,16,254,76,32,14,255,164,240,242,241,31,64,224,241,31,148,48,17,34,189,1,13,225,225,132,16,229,47,255,98,49,241,250,148,30,236,96,63,224,224,1,242,148,244,46,29,239,33,2,254,237,148,79,19,62,13,33,226,228,237,148,252,31,67,208,255,3,67,109,164,236,194,52,61,203,224,86,48,168,176,34,53,222,205,3,66,15,168,220,1,49,32,253,255,64,1,164,31,209,255,32,1,224,16]},{"1721822":[132,223,23,49,253,187,162,67,244,148,15,13,5,243,61,238,18,17,148,11,239,225,17,17,17,15,240,152,17,253,49,251,3,17,241,62,132,223,205,32,22,47,191,187,82,132,18,1,221,67,48,240,239,192,136,15,1,241,242,223,52,27,239,136,244,243,220,51,16,193,209,50,132,81,15,255,13,32,225,28,63,144,238,255,35,51,29,254,1,255,144,222,221,49,32]},{"1721918":[18,51,1,152,195,1,13,31,17,34,237,226,148,223,50,255,31,254,240,51,242,152,253]},{"1721942":[3,63,252,225,48,244,136,59,203,78,17,80,252,194,19,116,71,37,238,30,246,12,176,34,132,3,225,224,208,51,15,253,193,120,4,160,61,60,16]},{"1721982":[229,221,120,75,4,35,60,190,63,228,44,116,29]},{"1721996":[241,245,33,30,227,47,112,35,10,218,189,241,35,80,17,116,32,253,253,32,67,46,227,208,116,242,179,207,52,176,51,242,16,100,236,163,253,210,22,20,31,233,116,205,54,50,251,223,18,82,212,112,64,237,206,13,2,18,244,53,136,208,16,3,243,207,224,20,242,136,239,208,19,47,253,241,4,47,132,254,222,227,66,30,239,241]},{"1722083":[112,220,172,225,67,16,240,53,95,117,223,212,99,30,192,240,84,175,2]},{"1722110":[138,242,82,221,255,226,63,208,35,122,46,205,34,254,18,255,17,16,122,254,51,252,209,48,238,186,173,170,20,79,190,1]},{"1722144":[16]},{"1722146":[118,100,252,36,12,4,65,237,242,166]},{"1722157":[17,15,255,15,237,221,227,170,76,180,95,173,242,33]},{"1722172":[16,138,210,29,209,65,13,239,18,49,138,14,241,30,205,208,16,240,17,186,20,45,206,241,33,15,1,16,138,205,208]},{"1722205":[15,18,33,223,154,1,16,239,255,239,1,18,84,154,47,237,187,241,34,34,16,240,122,47,205,227,79,209,65,221,21,138,31,238,241]},{"1722241":[2,253,220,230,154,100,13,224,252,208,51,32,239,122,36,52,43,159,51,15,238,240,138,16,15,18,50,30,235,188,205,170]},{"1722274":[37,96,204,239,240,17,17,138,239,67,239,14,223,18,16,240,138,255,1,18,34,32,187,221,238,186,15,241,68,30,221,224,33]},{"1722308":[138,67,49,238,17,236,242,15,2,122,49]},{"1722321":[17,254,189,239,235,186,255,1,35,63,221,239,17,17,138,45,242,1,47,205,2]},{"1722343":[241,122]},{"1722346":[3,82,221,254,171,36,12,186,15,240,19,65,220,239,17,16,138,98,13,18,33,252,206,51,31,122,238,242,83,236,2,252,225,61,170,255,255,243,118,11,172,224,35,154,49,16,240,17,15,238,242,33,122,170,212,117,251,209,30,227,76,170,255,254,1,69,64,202,206,18,134,160,34,70,102,101,29,189,241,122,218,211,101,79,206,13,191,16,170,15,255,1,36,49,237,204,242,154,99,16,16,16,15,255,240,17,122,252,225,69,65,238,221,188,224,170]},{"1722463":[240,1,18,49,253,222,240,154,37,64,224,32,255,15]},{"1722478":[16,122,14,17,16,19,14,208,220,192,154]},{"1722490":[255,241,53,66,235,205,223,138,103,97,254,1,14,240,17,16,106,47,203,224,35,48,255,254,223,154,14,239]},{"1722519":[36,84,12,187,224,138,52,83,255,1]},{"1722530":[255,1,17,106,45,154,226,34,84,1,29,170,154,240,238,240,20,101,29,204,204,138,22,115,17,16,254]},{"1722560":[122,33,238,224,36,32,15,254,221,154,15,255,255,19,69,48,203,189,154,225,68,32]},{"1722583":[15,240,240,1,122,33,239]},{"1722591":[2,49,239,13,205,154]},{"1722598":[255,240,2,53,48,236,204,154,239,36,66,15,255,15,240,17,122,32,223,1,17,15,1,31,219,154,240,15,240,1,52,49,253,203,138,160,70,102,47,236,223,18]},{"1722641":[118,3,34,17,255,255,239,36,45,154,255,15,240,1,36,50,253,206,154,221,3,68,47,238,240]},{"1722667":[16,106,82,28,240,14,240,1,52,27,154,255,255,15]},{"1722682":[51,65,30,219,154,206,18,67,48,253,224,1]},{"1722695":[122,36,30,255]},{"1722701":[241,34,253,154,255,240,15,241,35,50,15,236,154,205,242,69,48,237,224,16,1,102,83,18]},{"1722726":[34,16,255,36,45,138,238,240,254,1,37,116,254,235,154,189,242,53,48,237,240]},{"1722748":[16,102,208,67,51,51,32,238,2,31,138,254,239,240,240,37,100,46,187,154,221,226,52,49,253,208,17]},{"1722776":[102,190,36,34,70,63,206,255,255,138,254,255,255,240,36,100,16,235,154,204,225,69,49,237,209,1,1,106,209,243,1,17,236,209,66,31,138,254,239,15,240,20,100,16,251,154,205,224,53,65,237,208,17]},{"1722830":[106,98,31,255,18,252,208,68,62,138,254,239,255]},{"1722844":[19,84,47,255,154,235,192,54,65,237,223,18,16,106,255,224,17,34,252,178,98,254,138,255,255,239]},{"1722871":[18,68,65,235,154,221,224,36,66,252,208,17,16,106,222,50,15,4,61,159,67,46,138,254,255,255]},{"1722898":[18,68,17,30,154,220,207,54,81,236,208,17,16,106,30,15,51,1,253,192,50,16,138,254,240,14,255,18,68,33,31,154,219,223,53,81,236,224,1,32,106,204,16,67]},{"1722943":[13,190,69,46,138,254,240,15,255,2,52,33,16,154,235,207,53,82,235,208,18,16,106,209,193,51,241,253,192,51,49,122,236,223,15,254,242,119,83,45,154,237,206,38,81,236,223,18,32,106,222,255,18,1,12,176,84,48,138,254,255]},{"1723005":[14,241,52,49]},{"1723010":[154,252,206,38,97,219,208,18,32,106,239,252,33,2,28,191,67,66,122,236,223]},{"1723032":[238,226,87,84,62,154,237,206,38,81,236,207,35,31,106,2,14,17,18,12,175,84,49,122,236,208,16,237,225,86,67,82,154,236,206,38,97,235,207,34,17,106,60,144,2,35,28,158,68,50,122,237,208,31,254,239,54,99,34,154,253,206,21,98,235,207,19,32,122,224,255,1,17,30,206,51,16,122,253,224,31,253,208,68,68,81,154,253,206,37,82,235,176,19,17,122]},{"1723129":[223,17,1,30,206,35,33,122,237,209,17,237,208,35,69,82,154,253,206,37,97,234,207,35,32,122,239,240,17]},{"1723159":[30,222,34,32,122,254,239,17,254,206,37,67,83,154,253,206,38,82,218,176,35,32,106,237,240,17,1,13,173,68,50,122,253,224,16,14,222,19,67,68,154,13,206,22,98,218,191,35,33,122,14,208,17]},{"1723213":[15,222,34,33,122,253,224,17,14,205,19,68,66,154,254,222,21,98,233,191,35,48,122,239,31]},{"1723239":[241,31,207,34,17,122,254,224,17,14,205,3,67,84,154,253,223,21,98,217,176,35,33,122,238,224,17,241,30,207,34,33,122,254,224,17,13,206,18,35,85,154,254,222,22,97,218,191,35,33,122,30,208,17]},{"1723294":[15,206,51,1,122,14,224,17,14,205,2,51,68,170,15,239,19,48,253,223,18,32,122,237,45,1,1,14,207,34,18,122,14,224,17,14,205,242,51,68,170,15,239,19,49,236,224,17,16,122,99,235,1,1,30,190,51,17,122,14,224,18,29,189,1,35,68,170,15,239,19,49,252,223,18,32,122,223,31]},{"1723374":[241,30,206,50,32,122,15,224,18,14,204,241,35,68,170,15,255,3,49,237,208,17,17,122,60,209]},{"1723401":[241,30,206,50,17,122,30,224,18,30,188,241,34,68,170,15,255,18,49,252,208,17,17,122,78,223]},{"1723428":[1,14,207,34,18,122,14,225,33,14,204,240,34,52,170,15,255,19,48,252,223,34,16,122,17,224,240,1,14,207,50,16,122,15,240,34,14,204,224,19,67,170,15,255,19,49,236,208,17,32,122,62,61,15,242,29,191,51,17,122,255,241,17,30,204,224,18,52,170,15,240,18,49,236,208,18,16,122,50,13]},{"1723509":[1,13,207,50,17,122,15,240,34,29,188,240,18,35,170,15,240,19,48,236,208,18,17,122,224,208,1]},{"1723537":[14,206,50,33,122,14,241,33,30,203,255,17,51,170,15,240,19,48,236,208,18,17,122,208,209,1,240,14,207,50,17,122,14,242,33,14,204,239,18,35,170,15,240,19,48,236,208,18,17,122,223,226,15,241,30,190,51,17,122,15,241,18,30,188,255,1,50,170,15]},{"1723607":[18,48,236,208,18,17,122,32,207,240,1,254,207,34,33,122,14,1,33,30,204,238,2,34,170,15]},{"1723634":[18,48,236,239,18,32,122,240,240]},{"1723644":[240,14,207,50,17,122,15,241,34,30,187,255,1,34,170,15]},{"1723661":[18,49,235,208,18,32,122,241,30,15,241,14,206,50,32,122,15,1,34,14,188,255]},{"1723684":[34,170,15]},{"1723688":[18,49,235,208,18,32,122,241,29]},{"1723699":[13,207,50,17,122,15,1,33,30,203,239,17,17,170,15]},{"1723715":[18,49,236,192,18,17,122,79,207,1,240,254,207,50,17,122,15,1,33,30,203,239,16,17,170,15]},{"1723742":[19,48,236,207,35,16,122,18,224,240,241,254,207,34,33,122,15,1,33,30,188,255,241,17,170,15]},{"1723769":[19,48,236,207,35,16,122,18,224,15,240,14,206,51,17,122,15,242,34,14,188,239,17]},{"1723793":[170,15]},{"1723796":[19,48,236,192,18,17,122,65,221,31,240,29,191,66,1,122,31,241,50,14,188,239,1,16,170,15]},{"1723823":[19,48,236,192,18,17,122,65,221,16,255,14,206,51,17,122,15,242,34,14,188,255]},{"1723846":[1,170,15]},{"1723850":[19,48,236,192,18,17,122,65,221]},{"1723860":[241,13,191,50,33,122,15,241,50,14,188,224]},{"1723873":[1,170,15]},{"1723877":[19,48,236,192,18,17,122,65,221,16,224,14,191,51,17,123,15,241,50,14,188,224]},{"1723900":[1,2]},{"1723910":[74,235,222,237,205,223,222,222,235,74,14,205,222,238,254,240,238,241,90,2,33,33]},{"1723933":[33,35,18,67,90,69,67,84,50,50,51,50,52,90,1]},{"1723949":[14,223,236,222,221,206,90,204,188,220,205,222,239,238,255,74,240,2,52,100,68,101,69,68,74,97,52,66,33]},{"1723979":[238,14,220,74,220,251,204,205,202,156,157,236,90,254,224,31]},{"1723996":[17,34,52,67,90,52,69,84,52,67,50,65,33,74,32,241,47,209,205,254,188,187,90,236,237,237,223,207,238,239]},{"1724027":[74,210,19,82,83,17,1,33,36,90]},{"1724038":[17,32,253,221,204,220,223,74,219,220,202,190,2,66,68,83,90,17,1,1,241,52,18,67,51,90,38,50,19,16,1]},{"1724070":[242,47,74,240,240,252,210,222,255,15,240,74,221,220,240,206,29,255,2,254,74,34,15,18,49,20,19,33,19,58,21,3,109,28,206,173,189,13,74,192,218,204,203,155,186,189,204,90,255,255,1,241,19,52,68,20,90,67,35,52,34,50,67,18,50,74,96,15,241,13,204,237,206,171,74,235,221,205,237,206]},{"1724151":[255]},{"1724153":[74,243]},{"1724156":[50,18,65,38,35,34,74,67,66,50,79,17,34,33,224,90,14,238,224,255,238,235,206,222,90,207,221,203,220,207,241,52,69,106,17]},{"1724192":[17,35,67,34,16]},{"1724198":[74,209,85,68,35,83,14,31,220,90,222,222,13,190,237,223,239,15,74,204]},{"1724219":[62,6,52,17,5,77,90,17,33,20,50,48,1,19]},{"1724234":[90,240,1,220,205,255,237,221,206,90,237,222,237,186,207,20,49,37,106,53,69,85,49,34,32,18,35,90,50,34,15]},{"1724266":[202,188,171,155,106,221,204,222,238,239,255,254,255,90]},{"1724281":[208,34,18,18,52,53,85,90,68,52,70,82,15,240,35,32,90,254,206,1,236,238,219,185,206,122,255,255,254,240,14,224,18,53,122,84,34,34,16,1,17,1,17,106,241,17,254,254,222,236,222,203,106,203,188,187,187,188,223]},{"1724341":[51,90,51,67,84,34,36,69,68,103,90,68,101,35,85,34,33,253,222,90,254,223,217,158,220,172,254,220,122,254]},{"1724372":[255]},{"1724374":[255,240,35,86,138,68,33,15,224,1,1]},{"1724387":[106,48,14,254,222,222,220,205,221,106,204,220,203,189,205,238]},{"1724404":[18,90,50,3,34,85,70,85,68,68,90,49,16,32,224,68,31,49,207,90,16,238,221,221,237,220,222,31,90,226,33,19,82,51,4,33,49,138,18,36,49]},{"1724446":[255,255]},{"1724450":[90,94,189,255,202,203,171,169,171,90,156,204,187,219,173,31,209,35,106,33,16,13,225,16,33,36,48,90,52,30,241,15,222,18,220,19,74,186,68,238]},{"1724491":[253,208,33,2,106,34,18,67,34,67,33,17,240,122,1]},{"1724507":[35,85,81,12,222,254,90,239,13,202,190,205,171,172,188,90,204,206,221,239,240,1,253,240,90]},{"1724533":[17,35,64,206,1,52,51,90,50,16,16,238]},{"1724546":[253,208,12,90,225,12,224,14,239,240]},{"1724557":[36,90,33,85,69,103,69,103,84,18,106,31,1,18,85,84,82,14,222,90,186,204,220,204,220,171,170,171,90,205,238,220,222,1,254,220,239,90,240,255,1]},{"1724599":[68,69,85,49,74,64,221,1,227,50,17,222,13,90,240,238,254,204,236,220,192,31,106,1,34,18,35,35,51,51,51,106,49,33,34,52,51,84,47,237,90,236,221,221,203,172,187,169,186,106,220,206,15,14,222,255,15,255,122,255,255,255,240,35,67,33,17,90,236,188,35,235,70,13,19,33,90,31,13,205,185,237,205,254,255,106,240,33,2,51,52,68,52,84,90,68,68,103,84,67,102,61,239,106,15,254,254,220,222,221,238,221,106,219,221,237,239,255,240,15,222,138]},{"1724722":[15,239,239,2,35,69,45,138,205,3,29,226,16,241,16,240,106,85,27,221,221,239,221,240,255,106,35,1,68,50,69,84,101,67,90,68,83,36,51,50,32,1,17,106,255,238,221,221,204,221,223,220,106,205,238,221,1,255,224,1,16,138]},{"1724787":[254,239,255,1,36,138,82,254,254,15,209,64,223,1,106,31,212,48,239,254,221,239,3,122,17,53,32,36,49,18,50]},{"1724819":[90,101,16,35,1,33,47,237,220,106,238,238,221,220,204,204,205,223,90,237,255,254,239,3,66,35,34,122]},{"1724848":[1]},{"1724850":[240,15,237,236,205,138,241,35,19,65,188,224,48,222,106,112,206,18,49,3,63,255,242,122,54,82,20,66]},{"1724879":[19,32,1,90,66,33,33,12,223,202,239,202,106,238,219,172,239,220,205,253,221,90,222,1,36,85,34,53,67,18,90,32,15]},{"1724913":[15,15,254,203,170,122,238,237,221,241,68,33,33,218,122,191,35,237,18,16,19,50,33,122,18,36,67,52,64,255,2,32,106,243,33,14,224,236,223,236,190,106,237,223,220,204,206,204,242,15,90,220,3,34,19,85,68,50,49,90,1,33]},{"1724977":[15,237,186,156,122,238,238,238,239,17,52,63,220,122,242,11,242,47,1,35,34,52,122,34,34,17,1,19,84]},{"1725007":[17,106,15,160,48,207,15,238,221,219,106,189,220,190,14,221,239,253,225,90,30,244,50,1,35,101,50,241,106,17,16,18,255,237,240,254,221,138,255,238,255]},{"1725049":[18,50,13,192,122,111,191,18,32,243,48,5,81,106,54,99,69,65,16,32,17,34,106,69,13,221]},{"1725076":[187]},{"1725078":[220,221,106,221,205,205,204,222,224]},{"1725089":[90,240,30,2,65,52,116,32,3,90,47,1,16,31]},{"1725104":[203,221,185,138,254,254,254,240,69,48,221,1,122,172,1,81,207,83,242,68,35,106,99,20,100,66,18,32,2,34,106,34,15]},{"1725138":[218,209,236,204,236,106,220,222,221,220,205,239,255,1,90,15,241]},{"1725156":[3,118,99,1,65,90,240,20,48,207,252,220,192,12,138,255,254,238,1,33,33,34,234,122,144,102,234,4,17,52,50,51,122,51,35,50]},{"1725193":[16,240,17,18,122,32,1,13,207,15,238,239,253,106,205,236,205,221,206,254,240,1,90,62,34,34,52,83,84,99,253,90,224,17,223,33,253,223,236,171,138,15,238,255,254,1,52,62,223,122,240,13,228,78,4,66,51,69,122,66,67,31,17,253,1,16,34,106,65,13,169,190,253,171,13,170,106,221,188,206,237,222]},{"1725276":[1,17,90,34,51,51,67,67,52,35,50,90,29,221]},{"1725291":[254,255,254,236,189,138,240,255,239,238,224]},{"1725303":[19,66,122,220,209,48,226,67,36,84,34,122,52,66,17]},{"1725319":[240,14,241,31,106,37,10,172,204,153,223,203,204,106,187,204,222,254,240,1,17,34,90,116,51,53,100,32,2,33,33,90,2,15,205,239,12,221,219,188,122,255,238,254,237,237,223,18,36,122,100,16,255,52,34,52,51,51,106,50,36,83,18,30,206,252,193,122,47,224,254,220,207,253,222,254,106,203,239,238,224,16,17,34,51,90,84,86,66,51,50,32,239,17,90,33,255,253,254,205,237,203,171,122,255,239,254,239,237,238,224,54,122,101,33,35,15,36,84,32,35,106,66,69,50,50,255,15,170,221,122,239]},{"1725452":[255,222,237,190,254,238,90,203,251,144,1,243,36,67,85,106,50,67,33,34,16]},{"1725474":[17,255,90,240,33,14,221,236,188,220,219,122,254,255,238,240,254,221,224,52,122,85,69,63,224,69,80,3,66,106,52,34,51,34,16,237,221,219,106,204,221,220,254,186,204,171,204,90,221,171,15,224,35,36,67,84,90,68,70,102,65,18,48,240,240,90,15,16,14,255,220,204,171,204,122,255,254,255,254,254,222,1,35,122,85,116,14,227,116,242,34,51,106,51,17,21,64,240,252,221,202,106,205,202,223,253,222,169,170,208,106,219,241,254,1,33,17,35,50,90,68,69,84,49,50,16,255,16,90]},{"1725604":[16,236,239,237,205,236,187,122,255,238,240,255,238,239,241,53,122,102,67,18,17,20,67]},{"1725628":[34,106,33,37,50,1,254,222,219,187,106,186,188,238,240,201,171,205,187,90]},{"1725649":[221,2,34,19,102,68,85,90,71,99,51,18,31,16,15,16,90,18,12,208,252,220,204,204,187,122,255,239,255,255,254,239,240,54,122,101,83,17,32,36,66,16,34,107,32,37,50,17,253,222,219,203]},{"1725710":[116,250,203,188,188,204,222,237,223,184]},{"1725721":[50,12,31,31,16,16]},{"1725728":[148,5,50,18,18,17,17,34,17,120,68,35,51,51,34,51,33,44,168,236,47,230,16,239,192,62,31,132,237,190,205,221,238,221,222,237,152,240,255,240,255,15,241,62,99,180,44,223,69,63,204,245,97,31,184,43,1,79,65,12,31]},{"1725790":[237,180,212,47,160,225,3,48,190,241,168,208,240,30,31]},{"1725806":[18,48,251,168,175,37,51,239,66,191,17,1,132,19,51,52,67,51,51,35,51,120,52,52,36,51,52,51,35,50,168,1]},{"1725839":[1,235,215,4,66,186,168,172,117,208,15,29,31,15,240,132,252,221,206,221,237,221,222,238,168,15]},{"1725866":[255,1,35,254,238,19,168,34,254]},{"1725876":[1,16,15,223,64,136,188,126,214,238,239,239,239,239,132,238,238,238,238,255,255,35,220,152,84,63,14,226]},{"1725905":[51,223,198,164,83,1,16,238,35,49,16,1,164,30,210,65,17,17]},{"1725924":[1,17,168]},{"1725928":[1]},{"1725930":[15,207,50,83,11,168,208,192,52,30,241,15,3,31,164,1]},{"1725947":[1]},{"1725951":[237,36,152,174,32]},{"1725957":[236,193,53,13,14,152,239,14,220,19,255,239,254,255,120,185,219,188,203,203,204,204,204,120,204,220,204,221,220,220,221,221,136,254,239,255,239,224,255,245,107,184,1,15,2,252,227,48,224,18,152,47,187,1,19,85,28,223,192,168,36,47,242,13,223,51,32,15,168,3,16,254,13,211,48,2,34,152,16,173,33,17,17,1,17,1,148,17,17,17,17,17,15,243,48,168,16]},{"1726055":[16,15,13,177,98,220,152,37,223,239,255,255,254,255,255,120,219,204,220,204,205,205,221,204,104,187,169,170,186,186,187,187,204,168,15]},{"1726091":[2,62,208,193,65,31,152,16,236,210,101,251,193,84,68,164,26,173,242,33,46,223,34,250,164,192,1,17,50,17,20,111,172,168,66,14,208,35,20,75,175,70,152,217,65,16,17,52,210,17,17,120,51,84,52,68,51,51,68,34,152,31,239,17,93,161,33,83,205,168,15,30,209,48,36,235,209,1,152,84,172,82,177,10,246,45,193,168,98,170,20,12,3,252,48,240,168,34,237,255,255,65,191,63,17,164,13,225,33,220,240,31,240,15,148,240,16,34,251,227,44,193,47,168,1,15,2,48,240,12,210,50,168,30,239,52,30,33,224,29,225,152,66,225,81,211,32,224,65,209,168,14,6,77,193,34,240,1,16,136,4,49,34,17,34,17,34,33,132,34,34,34,34,17,31,214,95,168,31,241,79,209,241,240,208,36,168,218,245,63,225,221,20,235,211,164,15,240,34,220,255,240,31,239,184]},{"1726297":[17,16,254,236,20,31,240,168,47,1,12,211]},{"1726310":[255,16,2,164,81,188,34,224,84,236,3,12,168,245,94,175,85,222,15,67,173,164,35,171,15,17,222,34,70,49,180,33]},{"1726343":[15,205,36,48,236,224,168,127,161,93,241,1]},{"1726357":[33,184,255]},{"1726361":[17]},{"1726363":[240,64,208,30,164,191,32,220,50,68,30,186,18,164,32,174,66,240,12,224]},{"1726384":[16,152,15,234,228,32,188,65,19,251,164,34,255,13,208,14,2,220,70,168,205,225,2,26,228,50,191,125,180,221,1,32,205]},{"1726418":[17,17,14,164,228,82,253,239,34,14,254,223,168,66,252,243,13,240,243,62,242,164,48,219,244,81,241,50,16,19,164,28,243,31,1,50,219,1,242,168,45,242,16]},{"1726462":[221,21,48,255,164,254,244,96,206,28,229,31,69,164,31,1,236,228,81,255,34,241,168,31]},{"1726487":[16,15,223,85,254,236,168,229]},{"1726496":[31,241,30,15,254,35,168,252,192,82,220,19,27,196,33,168,223,33,203,4,30,226,63,193,164,65,174,16,1,14,190,32,223,164,255]},{"1726534":[36,11,229,92,164,145,47,37,64,20,63,239,237,168,53,252]},{"1726551":[243,47,208,66,253,168,244,44,214,93,210,1,31,16,164,15,222,36,45,211,97]},{"1726574":[164,1,33]},{"1726578":[253,240,189,19,17,168,47,177,77,227,51,235,242,237,164,229,12,221,4,47,18,254,19,168,240,11,244,45,243,188,85,224,184,15,225,32,15,222,34]},{"1726618":[255,164,244,80,171,240,240,34,238,51,148,27,173,236,208,22,109,194,53,180,17,33,220,243,64,224,32,239,168,94,194,63,244,61,159,21,111,164,15,1,1,49,240,240,66,192,164,62,192,34,33,254,3,66,236,164,226,14,53,14,240,235,227,64,168,239,52,237,50,222]},{"1726689":[17,34,152,218,5,28,18,224,64,254,194,168,33,13,242,30,34,206,35,47,164,255,253,240,239,68,32,240,14,148,242,33,239,15,53,218,207,31,164,241,254,255,206,32,239,3,61,164,193,44,175]},{"1726741":[19,29,242,16,152,28,34,241,203,211,64,240,51,148,13,2,99,206,10,175,255,52,164,35,65,240,33]},{"1726769":[241,80,227,152,250,243,37,60,212,28,225,83,152,243,44,194,16,82,191,34,238,168,52,238,14,5,14,32,238,51,148,235,36,253,20,13,36,15,31,164,3,62,205,222,1,51,239]},{"1726817":[168,16,208,31,1,2,30]},{"1726825":[189,164,195,79,225,15,15,224,18,48,168,207,19,63,238,242,62,221,243,148,55,111,207,251,37,237,255,224,148,69,234,224,253,3,34,64,186,168,17,33,31,225,13,19,28,2,164,16,207,101,17,31,254,226,68,148,111,225,219,203,6,95,209,208,164,85,252,1,1,65,240,254,237,164,241,1,62,224,240,16,36,29,160,14,201,178,82,240,16,218,160,168,236,17,29,210,79,240,32,237,168,66,236,1,67,235,2,62,224,148,244,60,242,233,228,251,71,47,152,32,254,176,68,239,225,47,33,148,12,209,46,193,46,242,237,49,164,2,31,237,207,67,254,222,36,168,13,208,18,14,2,253,3,47,148,34,21,93,177,49,13,223,34,152,241,46,226,28,227,65,31,175,164,240,1,50,1,14,222,36,12,148,1,173,102,242,80,222,188,4,168,14,1,31]},{"1727020":[31,3,221,36,168,240,30,225,32,33,252,3,12,148,179,33,31,55,80,17,236,224,132,209,98,14,187,174,103,13,32,164,221,254,2,14,237,206,36,29,164,243,63,204,241]},{"1727066":[16,237,224,168,17,240,255,254,36,204,51,15,164,16,254,222,36,48,223,50,253,148,213,110,226,254,205,85,255,2,164,15,52,255,30,226,30,224,49,164,240,17,18,67,220,2,31,241,152,236,2,54,219,69,219,51,193,164,237,20,13,222,17,19,31,18,148,17,15,14,223,237,226,81,157,164,14,241,34,236,19,15]},{"1727150":[148,18,15,218,181,109,176,50,33,148,252,4,235,15,17,219,226,49,132,18,14,254,4,27,175,14,100,148,207,64,205,36,16,30,209,48,152,226,42,246,13,225,84,187,33,152,209,51,202,69,205,19,80,188,164,208,32,2,14,17,204,1,34,160,35,32]},{"1727218":[15,4,79,208,152,208,62,220,246,62,227,27,197,152,94,209,241,47,242,238,82,237,136,196,93,255,242,32,35,59,224,148,204,19,49,223,49,19,13,205,152,115,186,5,62,225,35,218,1,152,17,2,79,173,68,234,227,100,148,94,190,254,206,54,79,238,171,148,35,17,33,237,5,28,238,224,148,254,2,33,32,1,253,203,177,164,65,222]},{"1727307":[35,32,240,254,224,152,62,222,243,63,192,48,63,191,152,239,35,65,177,28,241,17,239,148,22,78,209,16,2,51,33]},{"1727339":[132,34,30,18,253,52,210,117,84,148]},{"1727350":[250,197,98,33,254,204,243,168,31,239,47,241,48,237,244,95,148,11,206,29,222,207,67,255,255,152]},{"1727377":[4,253,45,178,85,250,163,148,17,242,31,254,242,16,68,237,152,47,1,2,28,191,67,18,238,152,30,177,65,239,2,30,15,160,148,35,236,5,29,227,83,254,240,152,224,64,188,69,16,15,191,66,148,30,244,81,221,226,48,238,242,148,32,253,243,80,242,16,202,230,152,27,191,52,252,34]},{"1727454":[47,238,148,205,1,50,253,208,49,20,95,152,194,66,254,240,16,242,1,46,132,240,16,70,27,221,2,220,53,152,222,67,239,33,170,52,50,238,152,33,223,46,241,50,13,222,2,132,52,35,234,36,254,255,3,98,152,206,4,48,13,209,64,254]},{"1727519":[148,237,2,13,206,52,31,253,208,152,16,13,242,30,207,83,236,2,148,19,30,20,29,205,224,34,32,132,3,2,95,211,95,192,3,82,132,48,156,103,254]},{"1727561":[35,36,62,132,207,47,212,65,85,30,230,61,136,52,31,237,230,80,17,191,94,148,240,221,36,16,53,11,207,51,152,223,47,241,50,237,16,208,35,152,29,206,69,239,45,244,12,241,136,251,65,17,9,179,84,254,236,152,2,238,34,222]},{"1727624":[34,205,35,148,18,49]},{"1727631":[239,253,222,223,68,152,237,208,18,49,223,253,35,225,152,47,253,212,65,240,239,18,62,148,220,242,65,15,239,33,18,32,132,255,255,238,17,36,44,175,49,136,226,62,4,227,43,206,37,61,148,2,49,205,51,237,20,31,253,152,52,236,1,32,240,29,243,62,152,239,35,62,175,19,75,195,65,152,219,2,51,43,209,17,221,52,152,239,30,226,17,222,31,3,63,148,252]},{"1727730":[241,51,31,222,35,148,16,254,238,227,65,13,223,2,152,49,252,206,51,16]},{"1727751":[14,18,152,253,18,16,254,239,84,188,35,136,46,190,98,204,244,81,189,197,128,20,32,238,2,15,34,239,35,152,1,240,30,3,30,192,84,236,132,226,28,194,49,64,208,14,53,148,14,3,79,206]},{"1727804":[19,47,239,136,226,47,82,188,17,243,79,238,148,3,49,255,15,224,16,20,29,116,174,180,107,178,65,160,62,172,148,35,254]},{"1727838":[236,190,83,221,3,132,43,194,47,241,32,186,203,153,136,52,255,15,252,19,189,20,92,132,202,208,54,29,4,51,12,192,132,35,82,173,101,13,239,53,29,136,3,63,241,15,3,12,244,126,148,255,36,62,208,16,17,18,17,136,45,225,34,63,255,18,15,227,152,46,3,14,17,241,29,225,34,136,238,17,47,211,60,224,34,239,132,65,187,239,237,207,68,253,240,148,240,15]},{"1727937":[3,44,175,17,255,132,252,229,82,32,219,226,16,19,152,255,15,17,224,17,32,205,18,136,64,192,63,191,111,239,4,94,152,205,2,50,254,241,18,13,225,136,32,16,37,203,51,227,45,240,136,241,65,224,236,53,49,202,70,132,14,35,16,206,66,238,15,238,152,17,2,27,195,81,221,18,15,136,243,31,222,20,47,189,82,242,120,43,206,245,90,228,225,32,207,116,208,83,2,203,49,241,65,238,132]},{"1728043":[35,14,255,18,34,14,4,132,62,208,241,12,212,45,225,65,132,221,242,64,190,33,13,207,1,120,60,188,242,83,13,240,203,38,148,240,31,237,2,30,223,68,253,136,97,241,176,97,235,209,98,204,136,49,239,83,238,254,211,80,224,136,225,63]},{"1728108":[241,31,47,213,94,136,223,211,48,18,28,227,29,20,116,234,22,50,29,208,71,101,65,136,225,78,194,47,17,1,30,242,136,61,208,16,51,220,16,33,191,132,20,16,242,32,17,219,223,50,136,190,18,50,249,178,66,46,237,136,241,49,204,4,76,193,32,15,132,19,45,192,12,210,49,2,63,120,225,17,19,221,48,210,78,174,136,243,96,173,51,221,70,236,210,132,63,193,47,37,47,15,243,97,116,162,80,3,52,63]},{"1728219":[36,202,116,37,83,28,159,42,146,48,223,116,66,220,19,47,239,252,237,229,136,29,223,244,79,237,225,33,30,132,238,1,15,18,254,69,11,189,136,32,240,16,63,206,17,242,60,120,226,31,226,61,31,159,113,210,132,52,32,14,203,229,93,192,33,120,226,13,193,47,241,37,13,47,132,240,27,161,85,60,193,47,224,132,35,12,226,67,31,236,193,49,112,51,13,208,28,192,253,238,3,136,222,18,94,192,62,196,44,244,132,45,193,102,217,6,48,255,16,116,189,55,10,229,92,175,84,226,120,48,170,101,237,244,26,7,75,136,209,64,179,93,209,253,53,252,116,4,252,255,19,253,71,233,225,132,15,241,50,15,222,52,252,240,136]},{"1728385":[16,221,21,254]},{"1728390":[30,226,136,46,254,5,59,177,49,237,19,136,236,18]},{"1728405":[31,208,32,16,238,128,204,4,49,16,240,14,242,32,136,64,179,79,237,243,65,237,241,120,65,240,96,174,18,31,37,235,120,35,223,2,79,207,20,62,19,132,14,241,237,20,49,206,52,237,132,240,51,254]},{"1728460":[237,4,65,253,136,244,63,30,178,46,34,254,30,116,207,50,203,2,16,207,48,218,136,226,64,225,44,209,31,241,63,116,251,206,225,52,63,4,28,227,120,252,226,44,244,95,254,226,238,120,2,46,241,18,44,144,39,95,120,157,34,67,203,208,51,49,205,116,18,34,38,94,192,64,203,223,116,35,254,67,19,65,242,18,110,136,196,62,224,50,222,50,14,208,132,1,13,227,81,204,18,14,222,116,202,5,53,95,192,31,238,17,116,201,197,109,176,17,1,62,161,132,65,205,36,32,254,225,49,255,120,17,63]},{"1728594":[254,242,51,219,85,120,220,226,45,18,241,61,179,81,116,44,192,254,36,84,252,239,241,120,61,208,4,14,45,179,96,224,136,224,241,49,239,240,30,243,30,136,239,66,236,242,63,240]},{"1728643":[30,116,178,94,158,51,236,1,221,38,116,85,61,158,102,13,254,194,113,120,177,46,229,33,46,160,66,241,120,11,228,48,15,208,51,46,205,136,4,63,207,17]},{"1728686":[32,255,46,116,178,78,193,46,190,34,35,16,120,253,67,207,81,223,189,82,18,136,254,210,66,237,239,51,237]},{"1728716":[116,15,221,36,12,189,223,50,33,116,255,1,49,224,34,250,245,96,116,204,207,51,17,2,61,209,52,120,236,245,65,237,33,175,53,46,120,238,228,32,66,189,2,32,193,120,81,235,242,34,45,227,62,210,132,1,33,220,19,16]},{"1728777":[255,254,120,22,29,2,26,162,111,209,34,120,59,178,45,3,31,204,52,221,116,209,86,94,191]},{"1728804":[219,241,116,255,17,68,252,207,82,3,45,116,225,186,37,66,14,222,54,95,116,221,225,48,4,62,194,66,13,120,2,255,67,13,189,117,1,187,100,180,67,98,173,193,94,192,255,116]},{"1728853":[16,225,101,219,1,31,21,120,221,47,209,63,2,221,52,31,120,221,18,241,45,194,64,174,34,116,18,13,208,85,253,254,221,255,120,18,30,205,18,15,243,33,238,120,211,79,190,35,209,65,192,1,116,68,48,187,37,31,36,29,241,116,240,17]},{"1728918":[2,28,177,65,238,116,240,17,240,47,210,64,1,33,116,236,223,34,2,63,221,243,48,116,254,223,221,36,65,204,254,225,116,66,187,238,2,15,16]},{"1728958":[223,120,80,207,241,30,240,36,12,224,104,64,225,240,2,17,31,14,243,116,47,191,64,226,15,33,238,18,120,253,19,17,28,209,33,240]},{"1728995":[116,242,13,4,49,16,239,2,49,112,61,208,34,15]},{"1729010":[15,226,85,104,46,209,240,32,246,77,191,20,116,49,238,32,189,68,254,1,253,116,242,79,189,239,33,221,241,51,120,192,12,228,46]},{"1729046":[15,240,33,116,34,46,206,36,253,53,27,194,104,73,19,205,52,47,192,99,155,121,17,66,209,13,51,221,1,36,2]},{"1729085":[106,220,255,207,35,35,30,211,97,122,224,50,255,14,205,1,17,17,106,237,239,1,66,239,52,82,253,106,224,1,1,251,175,63,223,50,122,255,19,14,240,18,68,29,223,106,222,20,13,227,28,158,30,229,122,50,14,238,19,68,63,206,255,122,240,240,1,16,238,240,240,36,122,29,223,18,52,49,237,224]},{"1729166":[106,236,192,49,1,15,207,68,235,122,239,19,35,66,236,241,31,255,106,219,176,85,17,19,45,169,171,122,36,51,83,236,240]},{"1729201":[253,122,222,2,33,52,30,220,188,3,122,69,84,28,190,17,1,30,189,122,17,1,85,13,223,219,225,51,122,85,62,206,240,2,30,189,17,106,35,117,28,187,255,237,244,102,122,50,13,223,17,16,203,2,2,122,84,252,206,17,15,17,241,67,122,254,255,241,32,204,239,21,116,122,252,204,241,32,17]},{"1729281":[35,30,122,222,17,15,254,221,21,101,29,122,188,241]},{"1729296":[18,240,53,30,205,122,225,15,15,253,4,115,31,220,122,241,15,16,255,53,79,236,221,122,239,34,252,6,81,1,237,2,122]},{"1729330":[14,192,36,51,14,204,205,122,18,30,20,65]},{"1729343":[255,1,17,122,13,223,16,37,47,238,187,241,122]},{"1729357":[36,33,241,18,240,17,237,122,224,15,20,49,254,203,224,15,122,52,30,1,36,63,240,236,225,122]},{"1729384":[18,34,14,204,224]},{"1729390":[35,122,15,224,38,65,240,219,208,16,122,19,50,13,206,237,3,49,254,122,222,39,98,16,219,207]},{"1729417":[18,122,68,28,190,238,243,66,237,222,122,5,101,49,204,206,225,16,54,122,45,223,219,243,65,253,222,4,122,85,65,236,205,240]},{"1729452":[53,62,122,208,252,209,65,220,224,19,69,122,81,205,252,193,47,21,79,224,122,13,208,48,203,224,20,69,82,122,237,235,192,32,20,49,255,255,122,224,32,202,207,52,68,84,252,122,238,188,18,51,32,16,238,1,122,16,217,174,37,85,68,30,221,122,202,227,82,2,32,238,3,32,138,237,206,2,51,34,16,254,238,122,192,68,1,34,253,3,63,203,122,170,228,101,67,51,251,204,190,122,69,16,35,14,243,63,188,201,122,178,101,85,65,253,205,189,37,122,16,19,16,242,48,204,201,160,122,85,85,65,14,204,222,4,64,122,242,48,225,49,205,217,159,51,122,87,98,14,188,255,241,65,240,138,17,1,16,239,237,208]},{"1729615":[37,122,97]},{"1729619":[203,240,240,66,239,50,138,1,16,239,253,223,15,21,65,122,1,219,224,241,50,240,1,35,138,31,255,237,224,254,5,66,1,122,220,224,240,50,15,1,35,32,138,253,238,255,14,2,66,17,15,122,223,240,18,16,241,35,33,235,122,171,208,31,209,85,34,34,254,138,240]},{"1729691":[1]},{"1729693":[2,17,14,204,122,209,48,224,34,19,68,30,239,138,15,1,31,2,33,14,204,239,138,18,31,240,17,35,48,239,255,138,241,17]},{"1729728":[34,30,220,205,20,138,63,239,240,53,49,254,239,240,138,33]},{"1729745":[34,31,220,205,244,64,138,222,255,37,83,30,221,239,35,138,31,18,47,221,220,211,82,221,138,224,20,85,46,206,238,4,48,138,241,32,237,236,208,82,252,223,138,36,70,64,189,238,242,65,15,138,17,14,221,223,35,12,223,34,138,85,81,236,221,241,66,15,17,138,15,237,238,241,45,192,50,37,138,99,236,222,239,52,31,240,17,138,237,255,238,31,222,35,52,84,138,13,206,239,3,49,239,17,255,138,15,204,240,255,34,51,67,47,138,221,238,2,49,255,1,16,15,138,219,207]},{"1729872":[3,67,35,48,238,138,254,208,50,255,1,33]},{"1729885":[235,138,172,1,34,51,34,34,14,238,138,255,17,31,241,34,17,235,155,122,211,68,103,82,52,63,203,222,138,240,33,255,35,49,235,171,208,122,53,85,84,51,65,236,221,238,138,1,16,19,49,252,170,208,18,122,68,52,68,83,252,222,204,242,138,16,19,66,252,171,223,2,33,122,3,86,85,29,205,220,224,33,138,19,66,13,170,209,16]},{"1729975":[1,138,35,67,31,254,238,224,17,19,138,66,13,187,208,17,255,240,20,138,68,33,237,238,255,16,18,84,138,12,204,207,34,255,238,243,85,138,66,252,222,255,17,17,67,30,138,219,223,17,31,221,241,53,100,138,13,221,223,33,17,51,47,220,138,206,18,16,236,192,53,85,47,138,220,207,18,18,35,16,236,207,138,16,1,13,205,4,85,66,236,138,205,241,52,49,240,254,222]},{"1730075":[138]},{"1730077":[15,221,226,69,67,29,188,138,240,35,67,14,240,237,241]},{"1730093":[138,255,238,224,36,51,49,203,208,138,18,69,46,223,239,241,16,237,138,255,255,19,50,34,252,222,1,138,69,64,221,239,1,31,253,238,138,16,17,33,18,31,221,241,36,138,82,253,222,1,17,253,222,241,138,18,17,1,17,237,224,20,83,138,30,220,241,49,13,205,240,18,138,49,15,1,14,239,2,85,47,138,221,209,33]},{"1730179":[235,208,17,35,138,31,240,15,238,2,52,66,252,138,207,34]},{"1730196":[253,190,2,35,32,138,255,255,255,240,36,67,30,205,138,2,33,14,188,242,34,18,15,138,239,255,255,3,101,47,204,242,138,33,15,219,208,51,32]},{"1730236":[255,138,15,222,2,69,65,252,192,50,138]},{"1730248":[236,206,35,33,31,224]},{"1730255":[138,237,224,69,82,14,206,19,16,138,253,205,18,49,31,239,1,255,138,222,4,100,32,220,242,33,255,138,220,210,83,15,238,241,16,221,138,226,70,65,237,224,34,15,221,138,208,52,47,237,224,34,253,207,138,53,67,30,222,18,16,254,206,138,20,65,236,222,18,32,221,243,138,68,33,238,225,17,15,237,242,138,67,13,205,240,35,13,209,35,138,50,31,222,34,14,15,239,52,138,46,204,239,18,32,254,2,50,122,33,236,210,48,239,255,21,81,138,236,205,2,34]},{"1730378":[240,2,17,122,32,206,33,255,17,2,83,218,138,221,208,19,33,240]},{"1730397":[1,33,122,236,2,14,20,47,20,27,155,122,204,227,101,33,254,240,19,47,122,208,15,243,67,33,14,186,221,122,205,54,99,31,220,242,50,15,122,255,240,70,64,14,202,206,235,122,228,117,66,251,190,19,49,254,138,255,19,66,14,238,239,255,223,138,37,49,15,222,240,19,31,255,138,241,67,32,237,223]},{"1730478":[238,242,138,67,32,252,223,17,34,14,224,138,36,49,254,222]},{"1730495":[254,224,36,138,50,254,205,241,34,32,254,242,138,67,15,238,224,15,239,2,67,138,31,236,222,19,49,15,224,51,122,47,253,222,15,220,243,85,65,122,234,154,226,86,81,237,242,66,122,255,255,239,236,210,84,67,12,122,169,190,53,100,46,239,33,15,138,1,15,255,239,35,17,16,220,122,173,3,102,65,15,255,238,2,138,17,15,222,3,50,16,220,207,122,2,20,84,33,15,220,209,67,138,16,253,225,51,32,237,189,2,122,17,69,49,50,234,173,36,67,138,14,239,19,50,253,188,225,50,122]},{"1730626":[36,51,30,185,209,84,49,138,253,242,67,14,203,207,35,33,122,2,35,49,218,189,20,82,15,138,240,35,16,220,189,242,67,16,122,18,17,14,204,224,52,32,1,138,17,33,252,188,208,53,49,240,106,69,203,238,172,36,35,69,68,138,17,14,187,223,3,83,31,16,122,252,240,15,1,15,20,67,34,138,14,203,206,2,52,50]},{"1730713":[254,122,191,17,1]},{"1730719":[241,70,66,14,138,220,189,225,36,51,17,15,221,138,241,16,17,15,35,32,16,252,138,187,239,2,85,49,15,237,239,138,17,16]},{"1730754":[34,33,32,237,219,138,190,17,52,83,47,220,239]},{"1730768":[138,33]},{"1730771":[18,51,31,254,204,205,138,208,36,85,65,236,206,1,1,138,31,242,67,49,253,220,204,238,138,19,68,84,13,188,241,1,32,138,224,53,67,15,202,172,239,241,138,53,84,48,203,223,2,32,255,138,18,85,48,219,171,206,241,35,138,53,67,251,191,15,19,30,241,138,69,82,12,153,205,224,18,52,138,84,45,204,255,17,32,255,37,138,84,31,185,157,238,242,51,68,138,65,219,208,1,17,255,19,84,138,48,234,155,238,224,34,52,83,138,253,206,1,1,31,242,68,67,138,251,155,222,255,241,51,69,30,138,221,225,32]},{"1730909":[53,82,14,138,185,190,255,240,18,53,64,221,138,224,17]},{"1730926":[35,83,47,218,138,171,240,15,17,18,67,13,239,138,16,17,15,3,69,49,218,156,122,206,1]},{"1730952":[35,86,62,189,2,138,17]},{"1730960":[1,36,83,252,186,189,122,18,16,34,51,48,238,2,34,138]},{"1730977":[241,35,52,62,170,188,225,122,66,17,49,16,254,242,67,17,138,15,3,68,48,203,187,207,33,122,18,66]},{"1731006":[254,209,102,16,15,138,241,68,50,251,172,205,2,17,122,35,31,222,255,38,114,15,240,138,35,51,45,171,204,225,17,18,138,16,255,255,2,67]},{"1731046":[1,138,52,47,219,188,223,18,17,33,138,254,255,241,52,33]},{"1731063":[240,51,138,49,251,188,221,1,16,34,31,138,237,240,52,65,17,254,19,49,138,30,187,221,224,17,34,31,238,138,239,20,83,17,15,242,50,15,138,220,205,239]},{"1731106":[18,48,254,221,138,3,85,33,16,224,35,16,237,138,188,224,255,242,50,14,220,226,138,101,50,32,254,18,48,237,220,138,223,15,240,35,31,237,207,70,138,67,49,254,1,34,14,220,190,138]},{"1731157":[255,3,48,222,221,6,116,138,34,30,224,34,15,221,205,241,154,15,241,33,254,254,242,66,34,138,30,224,18,31,237,204,224,31,138,224,51,14,220,209,102,83,32,138,239,2,17,237,204,208,32,238,138,19,31,237,207,54,101,48,239,138,2,17,254,204,222,1,14,2,138,16,253,206,37,101,50,14,225,138,49,255,235,190,17,14,241,32,138,254,221,3,86,98,255,15,18,138,31,237,188,241]},{"1731261":[15,255,138,253,243,84,84,31,255,2,47,138,237,220,208,16,1,31,238,238,138,2,52,84,16,15,1,32,14,138,219,206,17,16,15,254,238,18,138,35,84,17,15,241,17,31,220,122,154,210,67,15,185,176,35,70,138,51,49,31,15,17,32,220,221,122,175,86,45,186,172,39,100,71,138,32,2,15,241,34,252,205,222,138,36,46,221,221,20,50,51,16,138,17,15,1,17,14,205,222,3,138,65,203,222,243,84,34,16]},{"1731371":[138,16,15,17,31,237,221,243,65,138,220,189,3,68,50,17,255,2,138,15,1,16,237,238,225,67,234,138,190,1,69,66,16,255,241,16,138,241,16,255,236,226,66,235,188,138,3,67,67,16,15,240]},{"1731425":[138]},{"1731427":[15,254,224,50,252,188,3,138,51,67,31]},{"1731439":[254,1]},{"1731443":[138,240,15,240,17,13,188,242,52,138,67]},{"1731456":[255,15,1,14,1,138,15]},{"1731464":[16,253,205,242,52,51,106,13,22,250,171,225,251,244,46,122,36,28,204,154,5,86,83]},{"1731488":[122,19,47,187,225,254,2]},{"1731496":[38,138,30,206,238,243,50,34,15,1,122,65,202,239,238,1,18,69,60,138,188,224,18,51,47,240,17,18,138,254,222,224]},{"1731529":[17,51,45,187,122,193,85,101,62,224,16,51,28,138,222,239,240,18,52,45,171,209,138,69,34,31,239,16,17,47,221,138,222,241,19,68,14,187,193,68,138,50,31,255,240,18,17,237,205,138,224,35,67,30,203,192,69,67,138,31,239,255]},{"1731592":[18,12,206,239,138,20,84,14,204,192,52,67,31,138,255,240,15,2,29,205,239,19,138,84,29,188,241,20,83,15,15,138,255,15,242,30,206,222,5,83,138,14,221,240,18,68,16,240,255,138,224]},{"1731644":[15,237,238,3,83,14,122,171,2,19,118,47,17,253,223,122,14,223,252,173,21,100,29,205,122,20,32,37,49,18,14,238,252,122,189,16,204,4,82,237,1,34,122,49,17,34,18,33,221,237,171,122,2,236,21,46,239,2,84,48,122,253,3,67,49,237,221,170,210,122,31,19,12,207,38,117,33,219,122,211,84,34,31,186,187,207,67,138,16,253,223,36,67,32,237,224,138,51,17,17,237,205,223,20,32,138,221,207,37,100,32,236,207,52,138,32,33,236,222,238,3,64,204,138,222,37,101,64,220,205,21,65,138,2,252,207,237,244,80,187,207,138,37,102,80,204,221,243,83,31,138,14,221,238,242,66,217,190,53,138,118,81,203,222,241,52,32,255,138,237,223,17,33,217,191,52,102,138,98,235,206,224,37,48,239,254,138,223,18,15,236,173,53,85,99,138,13,204,223,36,49,254,240,239,138,18,253,221,206,36,69,83,31,138,204,239,242,67,254,240,240,17,138,252,205,238,19,68,83,32,252,138,221,241,66,254,1]},{"1731882":[34,235,138,172,241,17,52,66,34,14,221,138,224,34,31,255,18,49,234,172,122,209,68,86,84,70,62,170,222,138]},{"1731913":[17,255,20,50,234,155,225,122,101,51,51,69,98,218,190,239,138,1]},{"1731932":[19,66,235,155,209,35,122,66,2,69,101,28,187,205,242,138,16,3,84,235,154,209,34,33,138]},{"1731958":[18,68,31,222,238,225,16,138,19,83,251,186,192,51,16,255,138,3,68,48,237,237,224,33,2,138,84,252,187,192,34,16,254,242,138,85,65,237,237,223,33,18,67,138,30,186,192,34,16,237,226,69,138,83,13,220,223,18,18,51,31,138,203,207,18,32,236,224,53,100,138,30,220,222,17,34,50,31,236,138,206,18,17,252,207,36,85,64,138,219,222]},{"1732050":[35,50,31,237,207,138,17,241,14,206,2,70,82,252,138,188,241,51,66,254,255,222,1,138]},{"1732075":[15,221,225,69,83,45,187,138,240,19,67,15,239,238,1,15,138,15,238,224,36,51,49,219,207,138,19,68,46,222,255,1,31,238,138,255,255,18,51,49,253,206,242,138,53,64,221,239,1,16,253,238,138]},{"1732129":[17,34,18,47,205,240,36,138,82,253,221,2,32,14,205,241,138,18,18,1,17,237,224,19,68,138,30,205,242,33,14,204,241,17,138,34]},{"1732166":[1,15,222,3,69,47,138,220,224,49,16,235,192,17,35,138,16,240,240,238,242,68,50,252,138,191,51]},{"1732194":[253,189,2,50,33,138,254]},{"1732202":[254,255,37,82,14,205,138,3,33,254,204,241,50,17,31,138,239,14,239,20,84,47,219,242,138,49,15,204,208,35,33,31,239,138,31,222,2,69,49,252,208,49,138,31,252,206,19,49]},{"1732251":[255]},{"1732253":[138,237,224,54,82,14,205,35,47,138,253,205,19,33]},{"1732268":[255,241,14,138,222,20,84,32,220,242,48,255,138,220,226,67,15,238,241,16,237,138,225,69,66,253,208,34,15,236,138,208,67,47,237,240,17,14,206,138,53,67,46,206,18,16,254,222,138,19,65,236,223,2,33,220,243,138,83,33,253,225,33,255,237,243,138,67,12,190]},{"1732339":[19,29,208,35,138,66,15,238,18,15,255,224,52,138,30,204,224,2,48,238,17,50,122,48,252,210,48,239,254,22,96,138,236,205,2,34]},{"1732376":[240,2,18,122,31,191,33,255,33,1,67,250,139,205,224,18,34,255,1,1,17,2]},{"1732406":[106]},{"1732410":[219,108,47,48,31,106,231,195,181,226,238,255,59,62,106,240,77,17,46,242,22,227,176,90,207,9,45,46,43,51,6,51,106,198,210,14,224,240,78,162,28,118,221,254,15,31,67,51,68,36,122,208,211,255,211,14,47,63,63,106,75,65,253,15,178,240,245,178,106,177,4,30,34,63,31,79,236,122,43]},{"1732490":[1,2,255,211,180,37,122,3,239,12,254,61,59,95,255,122,227,242,212,3,227]},{"1732512":[12]},{"1732514":[122,27,47,30,45,19,239,19,243,106,68,47,156,210,188,245,223,47,106,1,1,111,37,95,31,155,17,106,160,1,191,20,208,111,60,115,122,48,16,238,221,30,225,47,225,122,242,18,33,2,79,44,236,254,122,15,17,14,15,17,17,3,21,122,245,253,235,252,45,241,60,31,122,47,34,21,7,18,175,189,191,122]},{"1732597":[49,14,14,243,62,96,21,138,48,255,207,192,16,243,14,225,138]},{"1732615":[17,34,34,48,253,204,223,122,66,20,58,29,227,64,67,52,138,49,253,204,192,17,18,15,15,138,224,34,34,36,64,220,170,224,122,38,52,31,206,226,51,66,87,138,48,253,169,192,51,17,47,224,154,255,18,17,18,33,238,204,225,122,84,102,45,221,224,51,101,85,154,16,14,205,224,17,33,16,254,154,241,17,17,34,17,237,206,224,138,18,53,16,238,225,19,34,51,138,33,234,154,192,34,68,47,252,154,240,18,32,18,32,252,205,240,138,33,68,32,254,224,18,66,35,138,32,219,154,192,50,68,47,253,138,209,35,50,51,47,219,154,177,138,34,84,47,253,225,35,50,18,138,32,219,169,192,51,69,31,237,138,241,34,50,35,47,219,153,193,138,50,69,47,238,225,35,49,19,138,47,219,153,193,67,69,46,237,138,225,51,49,35,46,203,154,209,138,50,85,46,238,225,51,48,34,138,46,218,154,225,67,69,30,237,138,226,51,33,35,46,201,155,225,138,51,85,30,238,226,35,49,18,138,45,203,170,226,50,86,29,237,138,242,34,50,35,28,203,170,210,138,67,69,31,237,226,50,49,18,138,46,186,171,226,51,86,13,237,138,242,50,49,35,28,203,154,227,138,66,85,29,253,242,50,33,19,138,29,203,154,243,50,86,13,253,138,226,51,49,3,29,203,154,227,138,66,86,13,238,242,35,48,19,138,29,187,155,227,67,85,13,237,138,242,51,48,19,29,202,155,227,138,67,69,14,238,242,35,48,3,139,45,187,170,227,67,70,13,237]},{"1732973":[116,224,19,61,226,228,83,68,238,120,33,48,224,15,18,3,222,220,148,253,237,239,81]},{"1732997":[255,66,37,132,125,13,245,60,12,187,173,32,136,13,228,34,95,57,204,53,178,152,252,18,74,34,224,76,35,254,136,58,51,11,93,239,254,112,229,164]},{"1733038":[17]},{"1733040":[15,255,255,15,78,148,253,29,101,50,79,224,242,127,168,241,240,47,20,223,225,3,239,164,224,222,237,228,78,225,1,66,164,37,60]},{"1733076":[2,61,255,221,32,152,78,203,96,208,77,44,207,38,180,64,2,15,17,2,79,224,15,164,78,209,26,1,17,47,239,253,180]},{"1733110":[240,254,238,6,1]},{"1733116":[226,184]},{"1733119":[244,205,34,212,14,242,225,152,37,227,186,19,2,14,178,161,180,224,7]},{"1733139":[210,1,36,18,45,168,36,48,12,254,82,228,27,14,168,2,48,12,15,208,47,108,3,164,1,196,53,101,31,47,48,78,164,238,236,18,1,237,240,17,17,168,208,240,242,209,30]},{"1733187":[38,146,168,195,16,17]},{"1733194":[253,243,17,255,152,17,255,229,64,236,3,47,224,180]},{"1733209":[238,239,255,254,242,80,255,168,66,30,16,31,178,94,59,213,148,240,185,226,210,177,98,243,213,184,224]},{"1733238":[14,15,31,19,60,168,235,36,18,30,58,225,20,58,164,12,252,219,32,48,239,2,49,152,16,220,242,19,192,191,254,4,168,3,228,160,241,49,45,240]},{"1733279":[152,18,4,206,74,95,36,223,58,148,1,35,17,29,239,192,254,204,168,225,241,15,43,45,65,60,14,168,46,77,64,225,210,15,79]},{"1733315":[152,164,240,49,63,224,227,17,29,136,14,211,210,106,234,227,3,176,148,250,252,31,5,246,22,53,79,148,84,68,18,2,30,95,44,13,132,241,241,224,195,245,212,191,221,136,30,44,2,193,29,3,176,45,148,1,1,239,253,225,63,44,16,148,62,99,67,2,38,52,225,50,132,48,57,58,218,76,239,237,208,116,161,227,193,209,195,12,43,156,136,14,17,241,237,227,243,240,177,136,226,255,76,63,253,46,77,93,132,49]},{"1733426":[179,50,50,33,17,16,136,66,238,29,80,46]},{"1733439":[14,17,116,207,62,193,189,16,2,254,254,100,213,176,185,191,178,10,44,235,100,173,49,108,11,64,35,34,64,120,241]},{"1733471":[93,241,30,4,225,18,116,255,2,3,32,255,253,31,16,104,27,243,34,16,194,225,241,47,104,240,12,78,16,31,225,225,2,68,115,2,188,31,18,44,63,1,52,11,1,29,51,19,64,1,82,40,19,213,191,47,99,146,32,5,21,254,34,192,13,238,15,240,238,2]},{"1733549":[122,253,20,52,44,207,20,81,204,122,223,34,31,255,21,66,13,171,122,221,223,1,32,219,206,16,253,138,221,241,17,14,239,16]},{"1733584":[236,138,209,69,48,238,243,48,222]},{"1733594":[134,226,83,17,15,255,238,241,52,122,34]},{"1733606":[52,217,243,1,81,227,138,67,33,253,242,17,51,253,208,138]},{"1733623":[238,222,19,66,33,12,170,138,207]},{"1733633":[255,238,241,17,235,173,138,240,16,253,225,49,252,207,17,122,85,16,87,117,27,207,35,49,138,52,50,47,224,48,19,46,225,138,33,33,240,69,13,188,209,69,122,114,255,36,65,240,69,67,29,138,222,237,208,19,102,28,205,255,138,14,204,225]},{"1733698":[14,188,255,238,138,219,192,50,13,221,239,14,206,138,18,53,66,17,255,15,223,53,138,68,33,1,31,239,18,50,14,138,239,19,51,47,205,240,17,255,122,55,65,220,243,85,86,50,67,138,252,171,3,68,32,1,17,13,138,188,240,16,253,255,15,235,172,138,223,17,238,17,255,235,189,239,138,20,50,38,65,221,224,34,34,138,70,82,15,239,37,49,14,223,138,69,49,16,18,31,220,242,51,138,47,224,15,240,1,53,84,11,138,189,239]},{"1733814":[1,36,82,236,239,138,255,13,223,33,32,219,221,222,138,254,239,34,32,237,222,221,222,138,2,68,66,17,15,238,240,38,138,99,15,225,51,31,221,242,33,138,255,19,33,30,188,240]},{"1733863":[1,138,33,253,204,224,37,82,241,31,138,222,204,209,53,48,1,49,254,138,238,255,17,16,255,15,238,204,138,241,15,240,34,30,220,204,239,138]},{"1733902":[19,68,48,237,223,35,66,122,255,103,101,13,241,16,253,2,138,34,33,17]},{"1733923":[15,171,5,67,138,13,188,225,33,255,53,65,253,138,204,224,240]},{"1733941":[36,83,14,239,138,240,255,240,18,16,253,205]},{"1733954":[138,237,225,34]},{"1733959":[254,238,220,204,138,3,67,48,240,16]},{"1733970":[1,34,122,68,66,70,100,28,160,68,33,138,255,19,85,44,155,243,68,30,138,222,255,254,224,52,67,31,255,122,237,202,144,87,118,33,51,14,138,238,241,18,16]},{"1734014":[253,254,220,154]},{"1734020":[15,1,16,253,206,241,122,49,193,84,83,251,210,51,49,138,241,69,66,14,240,34,30,222,138,19,83,47,238,238,3,16,17,138,254,220,209,34,18,35,34,31,138,206,240,1]},{"1734067":[52,67,31,240,138,255,1,1,33,1,252,206,255,138,220,224,17,34,235,188,222,221,122,210,51,17,254,4,64,170,229,138,84,33,17,51,16,238,225,1,138,34,18,50,252,223,17,67,28,138,206,15,238,241,51,50,16,15,138,15,237,255,19,66,16,18,46,138,206,18,33,15,240,16,235,188,138,255]},{"1734146":[16,255,15,219,172,240,122,14,221,4,101,13,173,18,18,138,33,36,84,32,255,16,31,255,138,53,82,253,224,34,33,16,17,138,13,205,240,19,49,17,35,47,122,204,206]},{"1734192":[19,68,102,44,206,138,17]},{"1734200":[255,19,33,236,206,237,138,238,239,35,30,203,208,252,189,122,189,3,65,237,17,15,219,176,138,36,83,16,35,48,236,208,68,138,49]},{"1734236":[255,2,16,2,51,30,122,155,222,222,20,51,69,51,34,122,251,172,242,69,50,2,35,32,138,253,208,52,47,224,31,220,204,138,223,35,13,223,240,254,187,206,122,241,12,193,100,33,233,191,33,138,2,52,68,49,15,240,18,34,122,37,64,209,16,38,116,34,49,138,253,222]},{"1734309":[33,16,19,67,31,122,187,224,50,30,3,101,48,220,138,240]},{"1734326":[1,34,33,236,204,207,138,16,221,1,240,14,188,239,220,138,205,2,15,1,17,14,221,223,138,53,66,34,17,33,254,18,50,122,49,15,240,19,50,54,116,13,138,238,255,15,255,20,67,15,2,122,45,205,241,51,32,19,84,28,138,221,242,50,50,13,223,15,204,138,192,17,255,254,255,253,220,206,138,254,222,241,34,32,236,205,241,122,86,84,69,64,239,35,50,34,138,17]},{"1734425":[255,241,51,33,33]},{"1734431":[138,15,237,222,34,33,18,33,16,138,253,241,47,15,1,68,48,203,122,196,100,17,20,81,235,169,206,122,254,222,224,33,218,171,221,201,138,188,223,3,49,15,236,205,240,122,70,101,48,3,66]},{"1734483":[36,85,122,33,220,243,49,19,118,83,49,122,220,222,206,2,69,67,67,253,138,19,30,206,19,67,32,255,16,138,15,255,52,66,14,255,15,236,138,239,240,17,254,239,255,254,219,138,172,239,18,34,30,204,222,241,122,50,36,101,30,241,70,100,46,138,242,49,238,226,51,35,65]},{"1734557":[122,47,186,174,53,66,16,20,100,122,11,172,17,51,66,19,64,187,122,209,51,52,50,34,46,170,222,138,255,15,255]},{"1734589":[15,224,14,203,138,171,225,50,32,238,253,222,255,122,54,99,15,20,50,70,33,38,138,33,14,240,16,34,35,84,31,122,171,224,14,239,2,103,48]},{"1734629":[122,15,221,208,20,102,30,239,15,138,240,16,2,68,31,239,240,255,138,238,240]},{"1734651":[14,1,31,253,186,138,205,224,17,34,252,205,239,15,122,2,48,2,34,17,21,101,33,138,1,16,254,255,20,117,47,240,122,50,236,187,227,85,33,53,63,122,237,204,5,82,1,51,15,254,122,205,21,100,35,65,239,254,238,138,255,254,240,33,15]},{"1734717":[254,187,138,189,208,51,30,221,255,237,239,122,2,50,254,241,36,49,20,68,122,66,235,172,3,85,69,101,33,122,253,206,238,238,4,102,82,236,122,223,19,13,243,68,99,252,204,122,3,32,54,98]},{"1734770":[18,31,220,138,238,240,15,241,17]},{"1734780":[237,170,138,191]},{"1734786":[255,255,221,206,1,138,15,239,17,17,254,3,67,33,138]},{"1734803":[238,240,19,67,50,16,138,16,15,220,241,36,49]},{"1734818":[122,49,236,241,52,68,83,252,205,122,3,83,34,51,52,50,30,189,138]},{"1734838":[238,224,18,34,13,205,221,138,205,239]},{"1734849":[31,220,239,255,221,122,209,17,31,205,2,52,52,85,138,33,253,239,1,33,18,84,49,122,45,186,208,33,19,68,65,15,122,16,254,240,37,101,49,234,194,122,50,18,17,37,84,33,1,13,138,222,255]},{"1734903":[17,16,16,235,188,138,239,254,239,255,255,236,206,255,122,241,236,190,2,253,227,87,117,138,15,239,1,253,226,68,68,33,122,15,237,206,2,51,52,51,50,122,238,239,243,86,83]},{"1734951":[16,255,138,1,17,1,17,20,66,15,238,122,239,237,223,37,98,203,204,171,138,237,221,240]},{"1734976":[221,222,238,239,122,253,206,14,203,208,52,67,52,138,33,15,237,255]},{"1734995":[52,67,34,122,31,221,239]},{"1735003":[1,70,84,31,122,222,241,35,50,70,64,239,1,122,51,30,224,71,117,68,48,239,138,238,224,1,33,15,16,14,220,138,206,255,239,255,238,238,221,239,122,16,217,173,255,239,255,37,117,138,33,15,237,239]},{"1735058":[35,68,49,122,1,253,223,239,36,84,49,17,122,30,222,37,101,47,2,67,47,138]},{"1735081":[15,1,34,35,67,47,238,122,255,255,16,240,69,46,203,204,138,254,220,241,15,237,205,240,15,122,187,206,221,238,204,226,68,70,138,65,254,254,238,1,34,51,51,122,95,204,239,33]},{"1735130":[69,100,12,122,208,18,52,33,3,84,17,18,138,16,255,240,19,85,33,16,240,138,15,239,1,33]},{"1735157":[1,15,237,138,205]},{"1735163":[255,237,222,239,14,222,138,255,239,238,222,239,240,3,67,138,17,14,239,254,239,35,83,33,122,81,237,222,241,53,67,16,17,122]},{"1735198":[17,1,68,48,18,84,67,138,13,223,34,34,35,51,32,255,122,255,1,255,2,36,65,218,189,122,238,254,203,204,206,236,205,205,138,255,238,255,220,206,3,32,19,138,33,16,237,238,240,18,51,67,122,62,220,224,34,34,33,19,49,122,222,20,50,15,2,70,116,14,138,15,255,240,36,67,33,16,17,122,30,221,2,34,51,15,254,222,122,238,222,236,187,206,254,202,173,122,17,250,154,186,189,239,20,85,138,33,15,254,237,239,34,68,48,106]},{"1735315":[13,224]},{"1735318":[55,117,253,245,122,50,15,1,16,35,67,85,65,122,234,157,53,85,51,69,67,16,122,238,255,3,32,2,50,235,208,122,31,203,206,221,220,187,222,255,122,238,219,153,170,205,239,36,102,122,64,236,186,189,3,85,68,50,106,13,190,53,83,13,5,99,50,138]},{"1735387":[1]},{"1735389":[240,20,67,32,254,138,255]},{"1735397":[17,34,51,49,1,16,106,222,241,69,83,255,36,29,202,122,223,255,236,172,221,204,222,255,138,255,253,204,237,238]},{"1735428":[2,51,122,49,252,185,189,3,101,51,67,107,12,175,53,67,14,20,83,66,174]},{"1735451":[61]},{"1735453":[255,224,184,4,112,1,255,224,184,7,144,2,255,224,184,9,192,3,255,224,184,4]},{"1735476":[4,255,224,184,4]},{"1735482":[5,255,224,184,4,112,6,255,224,184,4,112,7,255,224,184,4,112,8,255,224,184,7,160,9,143,233,184,1,224,10,138,233,184,1,224,11,255,224,184,3]},{"1735524":[12,255,224,184,3,160,13,255,224,184,1]},{"1735536":[14,255,239,184,14,160,15,255,239,184,6]},{"1735548":[16,255,224,184,3,208,17,143,224,184,3]},{"1735560":[18,143,224,184,6,240,19,253,224,184,7,160,20,255,224,184,7,160,21,255,224,184,3,208,22,143,224,184,3]},{"1735590":[23,255,224,184,2,192,24,254,143,184,6,240,50,101,127,152,178,203,229,252,25,50,76,101,114,127,140,152,165,178,191,203,216,229,242,252,247,15,167,7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1735645":[197,74,10,197,243,10,197,50,12,197,51,12,232,196,197,25,13,232,88,197,26,13,47,35,104,251,240,3,95,157,10,196,244,232,112,197,74,10,232,192,197,243,10,232,218,197,50,12,197,25,13,232,88,197,51,12,197,26,13,63,129,10,228,244,208,252,100,244,208,248,250]},{"1735717":[244,111,32,205,207,189,232]},{"1735725":[93,175,200,224,208,251,205]},{"1735733":[213]},{"1735735":[2,61,208,250,213]},{"1735741":[3,61,208,250,188,63,34,14,162,72,232,96,141,12,63,247,9,141,28,63,247,9,232,60,141,93,63,247,9,232,240,197,241]},{"1735775":[232,16,197,250]},{"1735780":[196,83,232,1,197,241]},{"1735787":[141,10,173,5,240,7,176,8,105,77,76,208,17,227,76,14,246,172,17,197,242]},{"1735809":[246,182,17,93,230,197,243]},{"1735817":[254,226,203,69,203,70,228,24,68,25,92,92,237,107,24,107,25,236,253]},{"1735837":[240,251,109,232,56,207,96,132,67,196,67,144,49,63,69,20,63,109,19,205,1,63,227,8,63,173,20,63,183,19,205,2,63,227,8,63,11,21,63,188,19,205,3,63,227,8,105,77,76,240,11,172,199,3,229,199,3,92,176,2,171,76,228,83,238,207,96,132,81,196,81,144,11,63,249,10,205]},{"1735915":[63,227,8,95,68,8,228,4,240,18,205]},{"1735927":[143,1,71,244,49,240,3,63,213,16,61,61,11,71,208,243,95,68,8,244,4,213,244]},{"1735951":[245,244]},{"1735954":[117,244]},{"1735957":[208,248,253,208]},{"1735962":[244,8,219,8,222,8,5,141]},{"1735971":[219]},{"1735973":[111,219]},{"1735976":[111,173,202,144,5,63,102,12,141,164,173,200,176,242,228,26,36,71,208,236,221,40,127,96,132,80,96,149,240,2,213,97,3,245,129,3,213,96,3,245,177,2,92,232]},{"1736021":[124,213,160,2,232]},{"1736027":[212,176,213]},{"1736031":[1,213,208,2,212,192,9,71,94,9,71,69,245,128,2,212,160,240,30,245,129,2,212,161,245,144,2,208,10,245,97,3,128,181,145,2,213,97,3,245,145,2,96,149,97,3,63,171,14,63,195,14,141]},{"1736085":[228,17,128,168,52,176,9,228,17,128,168,19,176,6,220,28,122,16,218,16,77,228,17,28,141]},{"1736111":[205,24,158,93,246,194,17,196,21,246,193,17,196,20,246,196,17,45,246,195,17,238,154,20,235,16,207,221,141]},{"1736141":[122,20,203,21,28,43,21,196,20,47,4,75,21,124,61,200,6,208,248,196,20,206,245,32,2,235,21,207,218,22,245,32,2,235,20,207,109,245,33,2,235,20,207,122,22,218,22,245,33,2,235,21,207,253,174,122,22,218,22,125,159,92,8,2,253,228,22,63,239,9,252,228,23,45,228,71,36,26,174,208,6,204,242]},{"1736225":[197,243]},{"1736228":[111,232]},{"1736231":[141,44,63,247,9,232]},{"1736238":[141,60,63,247,9,232,255,141,92,63,247,9,63,230,17,232]},{"1736255":[197,202,3,196,4,197,207,3,197,203,3,197,205,3,196,26,111,205,128,216,90,201,202,3,232]},{"1736281":[196,91,128,164,89,63,206,14,218,92,95]},{"1736293":[11,229,225,3,208,30,228,89,197,225,3,232,112,196,89,95]},{"1736310":[11,229,225,3,240,13,229,225,3,196,89,232]},{"1736323":[197,225,3,95]},{"1736328":[11,111,104,255,240,151,104,241,240,190,104,242,240,208,104,243,240,221,95,167,7]},{"1736350":[47,36,140,202,3,240,3,95,12,11,228,26,72,255,14,70]},{"1736367":[143]},{"1736369":[4,143]},{"1736372":[71,111,141]},{"1736376":[247,64,58,64,45,247,64,58,64,253,174,111,96,205]},{"1736391":[201,202,3,201,225,3,196,4,28,93,245,255,207,253,245,254,207,218,64,143,2,12,228,26,72,255,14,70]},{"1736420":[111,205,14,143,128,71,232,255,213,1,3,232,10,63,191,12,213,17,2,213,129,3,213,240,2,213,128,2,213,255,3,212,177,212,193,29,29,75,71,208,221,196,90,196,104,196,84,196,80,196,66,196,95,143,192,89,143,32,83,111,228]},{"1736482":[240,3,95,99,10,228,4,240,244,229,202,3,240,3,95,121,10,228,12,240,93,110,12,171,63,143,10,208,37,253,208,3,95,129,10,104,128,240,6,104,129,208,6,232]},{"1736527":[196,27,47,231,139,66,16,2,196,66,63,143,10,248,66,240,218,218,64,47,214,218,22,141,15,247,22,214,48]},{"1736557":[220,16,248,205]},{"1736562":[143,1,71,244,49,240,10,245,17,2,208,5,232]},{"1736576":[63,102,12,232]},{"1736581":[212,128,212,144,212,145,188,212,112,61,61,11,71,208,225,205]},{"1736598":[216,94,143,1,71,216,68,244,49,240,122,155,112,208,108,63,92,12,208,23,244,128,240,140,63,183,13,155,128,208,240,245,48,2,212,48,245,49,2,212,49,47,228,48,32,213]},{"1736645":[2,63,92,12,48,24,45,159,40,7,253,246,150,61,213,1,2,174,40,15,253,246,158,61,213,16,2,63,92,12,104,224,144,5,63,74,12,47,185,245,255,3,4,27,208,12,221,45,228,71,36,26,174,208,3,63,2,9,245]},{"1736705":[2,212,112,253,245,1,2,207,221,208,1,188,212,113,47,7,228,27,208,6,63,246,15,63,122,14,61,61,11,71,240,3,95,116,11,228,84,240,11,186,86,122,82,110,84,2,186,84,218,82,228,104,240,21,186,100,122,96,218,96,186,102,122,98,110,104,6,186,104,218,96,235,106,218,98,228,90,240,14,186,92,122,88,110,90,2,186,90,218,88,143,255,94,205]},{"1736800":[143,1,71,244,49,240,3,63,63,15,61,61,11,71,208,243,111,28,253,246,43,14,45,246,42,14,45,221,92,253,246,192,14,240,8,231,48,187,48,208,2,187,49,253,111,213,17,2,253,16,6,128,168,202,96,132,95,141,6,207,218,20,96,152]},{"1736865":[20,152,61,21,228,26,36,71,208,58,77,125,159,92,8,4,93,141]},{"1736884":[247,20,16,14,40,31,56,32,72,14,72]},{"1736896":[9,71,73,221,47,7,228,71,78,73]},{"1736907":[247,20,201,242]},{"1736912":[197,243]},{"1736915":[61,252,173,4,208,242,206,247,20,213,33,2,252,247,20,213,32,2,111,213,81,3,40,31,213,49,3,232]},{"1736944":[213,48,3,111,212,145,45,63,92,12,213,80,3,128,181,49,3,206,63,206,14,213,64,3,221,213,65,3,111,213,176,2,63,92,12,213,161,2,63,92,12,212,177,213,193,2,232]},{"1736992":[213,177,2,111,213,177,2,45,141]},{"1737002":[244,177,206,158,248,68,213,192,2,111,229,202,3,208,9,229,225,3,208,4,232]},{"1737024":[218,88,111,196,90,63,92,12,196,91,128,164,89,248,90,63,206,14,218,92,111,232]},{"1737047":[218,82,111,196,84,63,92,12,196,85,128,164,83,248,84,63,206,14,218,86,111,196,80,111,213,240,2,111,213,224,2,63,92,12,213,209,2,63,92,12,212,193,111,232,1,47,2,232]},{"1737096":[213,144,2,221,213,129,2,63,92,12,213,128,2,63,92,12,213,145,2,111,213,128,2,111,213,1,3,232]},{"1737125":[213]},{"1737127":[3,111,212,144,45,63,92,12,213,32,3,128,181,1,3,206,63,206,14,213,16,3,221,213,17,3,111,213,129,3,111,213,64,2,63,92,12,213,65,2,63,92,12,212,128,244,48,213,48,2,244,49,213,49,2,245,64,2,212,48,245,65,2,212,49,111,197,195,3,196,74,63,92,12,232]},{"1737203":[218,96,63,92,12,232]},{"1737210":[218,98,178,72,111,196,104,63,92,12,196,105,128,164,97,248,104,63,206,14,218,100,63,92,12,196,106,128,164,99,248,104,63,206,14,218,102,111,218,96,218,98,162,72,111,63,34,14,63,92,12,196,78,63,92,12,141,8,207,93,141,15,245,141,17,63,247,9,61,221,96,136,16,253,16,242,248,68,111,196,77,141,125,204,242]},{"1737296":[229,243]},{"1737299":[100,77,240,43,40,15,72,255,243,76,3,96,132,76,196,76,141,4,246,172,17,197,242]},{"1737323":[232]},{"1737325":[197,243]},{"1737328":[254,243,228,72,8,32,141,108,63,247,9,228,77,141,125,63,247,9,28,28,28,72,255,128,136,208,141,109,95,247,9,196,95,111,63,94,12,111,188,213,255,3,111,188,196,27,95,182,10,244,160,208,68,231,48,104,249,208,62,228,71,36,26,240,11,143,4,16,63,94,12,110,16,250,47,45,63,94,12,63,92,12,212,161,63,92,12,212,160,63,92,12,96,132,80,149,240,2,40,127,213,128,3,128,181,97,3,251,160,109,206,63,206,14,213,112,3,221,213,113,3,111,245,97,3,196,17,245,96,3,196,16,111,237,107,18,16,3,72,255,188,141]},{"1737471":[158,45,232]},{"1737475":[158,238,248,68,243,18,6,218,20,186,14,154,20,111,102,12,191,12,205,12,230,12,242,12,13,13,28,13,46,13,51,13,69,13,72,13,76,13,88,13,121,13,130,13,159,13,253,12,91,13,95,13,117,13,155,13,194,13,249,13]},{"1737536":[14,216,13,155,14,104,14,1,1,2,3]},{"1737548":[1,2,1,2,1,1,3]},{"1737556":[1,2,3,1,3,3]},{"1737563":[1,3]},{"1737566":[3,3,3,1,2]},{"1737574":[244,144,240,9,232]},{"1737580":[141,3,155,144,63,210,15,251,193,240,35,245,224,2,222,192,27,9,71,94,245,208,2,16,7,252,208,4,232,128,47,4,96,149,209,2,213,208,2,63,91,17,47,7,187,192,232,255,63,102,17,244,145,240,9,232,48,141,3,155,145,63,210,15,228,71,36,94,240,70,245,49,3,253,245,48,3,218,16,125,159,92,196,18,235,17,246,121,17,128,182,120,17,235,16,207,221,235,17,96,150,120,17,253,245,33,3,207,245,81,3,28,19,18,1,28,221,144,3,72,255,188,235,18,63,239,9,141,20,232]},{"1737711":[154,16,218,16,171,18,51,18,200,111,9,71,94,218,20,218,22,77,238,96,208,10,152,31,22,232]},{"1737738":[215,20,252,47,9,152,16,22,63,239,15,252,247,20,151,22,215,20,111,244,113,240,101,155,113,240,5,232,2,222,112,92,244,128,196,23,244,48,251,49,218,20,141]},{"1737782":[247,20,240,30,48,7,252,48,64,247,20,16,249,104,200,240,63,104,239,240,41,104,224,144,48,109,253,174,150,64,14,253,47,222,228,23,240,35,139,23,208,10,245,49,2,45,245,48,2,238,47,200,245,65,2,45,245,64,2,238,47,190,252,247,20,45,252,247,20,253,174,47,179,228,71,141,92,63,239,9,242,19,244,160,240,25,244,161,240,4,155,161,47,17,228,26,36,71,208,11,226,19,232,96,141,3,155,160,63,213,15,63,195,14,244,177,240,76,245,176,2,222,176,68,245]},{"1737908":[1,117,177,2,208,5,245,193,2,47,13,64,187]},{"1737922":[32,253,240,2,244,177,96,149,192,2,212,177,245,160,2,96,149,161,2,213,160,2,196,18,28,28,144,2,72,255,253,244,177,104,241,144,5,40,15,207,47,4,207,221,141]},{"1737968":[63,70,17,95,108,9,187,176,227,19,248,111,242,19,244,193,240,9,245,224,2,222,192,3,63,78,17,245,49,3,253,245,48,3,218,16,244,145,240,10,245,65,3,253,245,64,3,63,48,17,243,19,3,63,148,15,242,19,63,195,14,244,160,240,14,244,161,208,10,245,113,3,253,245,112,3,63,48,17,244,177,240,181,245,176,2,222,176,175,235,81,245,161,2,207,221,96,149,160,2,95,177,16,226,19,203,18,63,224,14,109,235,81,207,203,20,143]},{"1738086":[21,235,81,174,207,122,20,63,224,14,122,16,218,16,111,226,19,235,81,245,209,2,207,221,96,149,208,2,28,144,2,72,255,251,193,207,221,72,255,235,89,207,245,16,2,207,245,1,3,207,221,207,221,213,33,3,111]},{"1738144":[1,3,7,13,21,30,41,52,66,81,94,103,110,115,119,122,124,125,126,127,127]},{"1738172":[88,191,219,240,254,7,12,12,12,33,43,43,19,254,243,249,52,51]},{"1738191":[217,229,1,252,235,44,60,13,77,108,76,92,61,45,92,97,99,78,74,72,69,14,73,75,70,95,8,222,8,101,9,244,9,140,10,44,11,214,11,139,12,74,13,20,14,234,14,205,15,190,16,42,86,101,114,32,83,49,46,50,48,42,232,170,197,244]},{"1738258":[232,187,197,245]},{"1738263":[229,244]},{"1738266":[104,204,208,249,47,32,236,244]},{"1738275":[208,251,94,244]},{"1738280":[208,15,229,245]},{"1738285":[204,244]},{"1738288":[215,20,252,208,240,171,21,47,236,16,234,94,244]},{"1738302":[16,229,229,246]},{"1738307":[236,247]},{"1738310":[218,20,236,244]},{"1738315":[229,245]},{"1738318":[204,244]},{"1738321":[208,205,205,49,201,241]},{"1738328":[111,228,2,40,63,93,245,220,24,197,226,3,141,14,205,128,201,193,3,229,203,3,37,193,3,240,11,96,246,160,3,150,208,3,100,2,240,55,220,220,76,193,3,208,230,47,51,228,3,40,63,93,245,216,25,197,226,3,141,14,205,128,201,193,3,229,205,3,37,193,3,240,11,96,246,160,3,150,208,3,100,3,240,9,220,220,76,193,3,208,230,47,5,204,192,3,47,21,96,205,26,232,128,197,193,3,141,14,38,240,8,220,220,76,193,3,92,144,245,204,192,3,204,200,3,229,193,3,197,201,3,4,26,196,26,233,226,3,240,6,5,227,3,197,227,3,229,4]},{"1738477":[40,16,240,8,229,193,3,37,227,3,240,20,229,193,3,36,74,240,13,228,74,128,165,193,3,196,74,141,77,63,247,9,111,233,196,3,201,192,3,236,197,3,204,193,3,229,193,3,141,92,63,247,9,63,105,21,111,196,5,104,5,208,6,233,207,3,208,1,111,205]},{"1738548":[201,228,3,205,14,228,1,213,160,3,232,3,213,161,3,232]},{"1738565":[213,128,2,232,128,197,207,3,141,92,63,247,9,226,26,248,1,245,255,23,196,1,208,1,111,205,12,228,1,213,160,3,232,3,213,161,3,232]},{"1738604":[213,128,2,194,26,232,64,141,92,63,247,9,232,192,197,207,3,5,227,3,197,227,3,232,63,37,203,3,197,203,3,232,63,37,205,3,197,205,3,111,228,1,48,3,208,140,111,196,5,229,207,3,240,5,232,120,197,228,3,111,140,228,3,229,228,3,208,12,232,5,196,1,63,11,19,232]},{"1738681":[196,1,111,92,197,229,3,141,112,63,247,9,252,229,229,3,63,247,9,141,96,229,229,3,63,247,9,252,229,229,3,63,247,9,95,77,20,228,2,208,72,111,228,3,208,1,111,232,255,46,26,2,47,58,63,96,18,233,192,3,228,3,40,192,213,208,3,228,3,40,63,213,160,3,232,3,213,161,3,232]},{"1738762":[213,128,2,229,193,3,5,205,3,197,205,3,229,193,3,141,92,63,247,9,245,160,3,93,245,153,25,196,3,208,191,111,232,255,46,26,2,47,58,63,50,18,233,192,3,228,2,40,63,213,160,3,228,2,40,192,213,208,3,232,3,213,161,3,232]},{"1738828":[213,128,2,229,193,3,5,203,3,197,203,3,229,193,3,141,92,63,247,9,245,160,3,93,245,157,24,196,2,208,191,111,229,228,3,240,3,95,129,19,229,207,3,197,224,3,240,48,205,14,232,128,197,193,3,12,224,3,144,27,201,192,3,125,159,92,197,194,3,245,208,3,196,32,245,161,3,208,18,245,160,3,240,3,95,252,21,76,193,3,29,29,200,10,16,215,111,201,192,3,245,161,3,156,213,161,3,240,3,95,124,20,245,160,3,28,253,246,191,23,213,145,3,196,45,246,190,23,213,144,3,196,44,95,25,22,229,203,3,197,204,3,240,46,205,14,232,128,197,193,3,12,204,3,144,27,201,192,3,125,159,92,197,194,3,245,208,3,196,32,245,161,3,208,16,245,160,3,240,3,95,252,21,76,193,3,29,29,16,217,111,201,192,3,245,161,3,156,213,161,3,240,3,95,220,20,245,160,3,28,253,246,31,24,213,145,3,196,45,246,30,24,213,144,3,196,44,95,25,22,229,205,3,197,206,3,240,46,205,14,232,128,197,193,3,12,206,3,144,27,201,192,3,125,159,92,197,194,3,245,208,3,196,32,245,161,3,208,16,245,160,3,240,3,95,252,21,76,193,3,29,29,16,217,111,201,192,3,245,161,3,156,213,161,3,240,3,95,58,21,245,160,3,28,253,246,27,25,213,145,3,196,45,246,26,25,213,144,3,196,44,95,25,22,232]},{"1739154":[233,192,3,213,160,3,228,26,128,165,193,3,196,26,229,193,3,37,203,3,240,12,229,203,3,128,165,193,3,197,203,3,47,30,229,193,3,37,205,3,240,12,229,205,3,128,165,193,3,197,205,3,47,10,229,207,3,128,165,193,3,197,207,3,216,68,245,17,2,63,102,12,229,193,3,37,195,3,240,27,36,74,208,23,228,74,96,133,193,3,196,74,141,77,63,247,9,229,227,3,128,165,193,3,197,227,3,233,192,3,111,229,193,3,37,207,3,208,14,229,193,3,37,203,3,208,12,63,105,21,95,58,21,63,105,21,95,124,20,63,105,21,95,220,20,63,195,18,201,192,3,245,145,3,253,245,144,3,218,44,245,176,3,156,213,176,3,240,3,95,201,22,58,44,229,192,3,159,92,197,194,3,205]},{"1739338":[231,44,240,179,48,113,236,192,3,214,177,3,58,44,231,44,196,16,48,99,93,229,193,3,37,207,3,240,46,125,240,5,233,229,3,208,78,196,16,236,194,3,63,247,9,205]},{"1739385":[58,44,231,44,16,13,93,228,16,236,194,3,252,63,247,9,125,47,53,236,194,3,252,63,247,9,47,40,125,233,192,3,28,213,33,3,232,10,213,81,3,227,32,8,195,32,10,143,10,17,208,8,143,16,17,208,3,143,4,17,143]},{"1739447":[16,63,148,15,205]},{"1739453":[58,44,231,44,104,224,208,3,95,74,23,104,249,240,103,104,241,240,120,104,255,208,6,233,192,3,95,149,20,233,192,3,253,63,2,9,229,193,3,63,144,23,233,192,3,245,177,3,213,176,3,242,19,233,192,3,244,160,240,5,63,118,23,47,15,232,2,117,176,3,208,8,229,193,3,141,92,63,247,9,233,192,3,228,45,213,145,3,228,44,213,144,3,229,193,3,37,207,3,208,11,229,193,3,37,203,3,208,6,95,58,21,95,124,20,95,220,20,205]},{"1739573":[58,44,231,44,233,192,3,216,68,253,63,2,9,229,193,3,63,144,23,205]},{"1739594":[58,44,231,44,233,192,3,212,161,205]},{"1739605":[58,44,231,44,233,192,3,212,160,45,205]},{"1739617":[58,44,231,44,238,233,192,3,216,68,63,171,14,95,192,22,205]},{"1739635":[58,44,231,44,141,9,207,93,236,194,3,143,8,18,245]},{"1739651":[62,63,247,9,61,252,110,18,245,245]},{"1739662":[62,236,192,3,214,33,2,232]},{"1739671":[214,32,2,95,23,22,226,19,232,96,141,3,155,160,63,213,15,245,97,3,253,245,96,3,218,16,143]},{"1739699":[71,95,108,9,45,141,92,232]},{"1739708":[63,247,9,174,141,76,95,247,9,144,16,192,23,82,38,98,38,119,38,135,38,79,40,79,40,57,39,54,39,142,28,188,28,163,27,98,27,14,27,29,27,44,27,62,27,172,30,200,30,210,26,225,26,240,26,255,26,36,28,227,27]},{"1739773":[163,27,98,27,14,27,29,27,44,27,62,27,2]},{"1739787":[4]},{"1739789":[6]},{"1739791":[8]},{"1739793":[10]},{"1739795":[12]},{"1739797":[14]},{"1739799":[16]},{"1739801":[18]},{"1739803":[20]},{"1739805":[22]},{"1739807":[24]},{"1739809":[26]},{"1739811":[28]},{"1739813":[30]},{"1739815":[32]},{"1739817":[20,38,37,38,52,38,67,38,221,37,215,37,183,37,227,37,173,37,199,37,120,36,156,38,20,36,4,36,195,36,250,35,240,35,205,35,160,35,128,35,144,35,44,35,68,35,86,35,110,35,22,35,7,35,1,35,187,34,119,37,233,34,218,34,207,34,7,33,177,34,165,34,150,34,68,40,82,34,135,34,63,36,51,32,242,31,217,31,166,32,202,31,71,31,241,30,206,32,71,29,220,28,111,31,103,28,100,28,67,26,111,31,156,31,231,31,98,36,55,26,171,34,181,35,53,36]},{"1739955":[63]},{"1739961":[62]},{"1739978":[61]},{"1739983":[59]},{"1739986":[58]},{"1739988":[57,56]},{"1739994":[51,54]},{"1740017":[1]},{"1740046":[59,1,1]},{"1740050":[1,1,1]},{"1740058":[1,1]},{"1740065":[1]},{"1740067":[60]},{"1740069":[24,26,78,37,74,34,14,34,183,37,245,33,61,34,230,33,193,33,169,33,152,33,142,33,181,33,130,33,185,36,109,33,79,33,94,33,59,33,108,36,47,33,35,33,166,37,221,32,10,37,138,30,182,32,98,26,166,32,145,32,75,32,108,39,226,39,207,38,1,32,67,32,157,30,123,30,64,30,247,38,33,30,18,30,243,29,192,29,169,29,93,29,128,29,83,27,202,26,120,26,147,29,102,29,115,29,167,26,180,29,147,30,23,32,192,32,118,33,138,36,148,36,158,36,128,36]},{"1740209":[60,59]},{"1740220":[56,58]},{"1740229":[57]},{"1740239":[55,53,51]},{"1740247":[52]},{"1740254":[61,62,63]},{"1740269":[1,1]},{"1740272":[60,59,1,1]},{"1740284":[58]},{"1740286":[1]},{"1740288":[1,1,1,1]},{"1740293":[1]},{"1740302":[1,1,1]},{"1740306":[1]},{"1740308":[1,1,1]},{"1740312":[1]},{"1740317":[61,62,63,1,224,7,11,80,249,175]},{"1740328":[8,190,15,70,249,175]},{"1740335":[12,190,11,50,249,175]},{"1740342":[8,190,15,30,249,175]},{"1740349":[12,190]},{"1740352":[224,4,12,110,161,6]},{"1740359":[152,36,110,161]},{"1740364":[224,14,10,60,249,156]},{"1740371":[8,161,10,70,249,157]},{"1740378":[8,163,10,80,249,160]},{"1740385":[8,165]},{"1740388":[12,100,249,165]},{"1740393":[10,170,224,10,7,125,249,161]},{"1740402":[5,157,8,125,249,163]},{"1740409":[6,175,7,241]},{"1740414":[4,169]},{"1740417":[224,4,8,110,249,169]},{"1740424":[5,164,8,110,249,173]},{"1740431":[8,164,8,95,241]},{"1740437":[8,176,8,80,241]},{"1740443":[8,169,8,65,241]},{"1740449":[8,175,8,45,241]},{"1740455":[8,169,8,22,241]},{"1740461":[5,175]},{"1740464":[224,7,8,60,249,178]},{"1740471":[5,180,8,70,249,190]},{"1740478":[8,193,8,65,241]},{"1740484":[8,190,8,50,241]},{"1740490":[8,193,8,45,241]},{"1740496":[5,190]},{"1740499":[224,1,6,120,163,161,159]},{"1740507":[224]},{"1740509":[11,60,249,159]},{"1740514":[11,164,24,241]},{"1740519":[21,188]},{"1740522":[224]},{"1740524":[11,60,249,183]},{"1740529":[11,164,24,241]},{"1740534":[21,152]},{"1740537":[224,10,12,100,249,144]},{"1740544":[12,159,27,241]},{"1740549":[24,166]},{"1740552":[224,10,12,100,249,156]},{"1740559":[12,147,27,241]},{"1740564":[24,130]},{"1740567":[224,14,16,40,174,16,40,176,16,30,178,52,30,186]},{"1740582":[224,14,8]},{"1740586":[201,16,40,178,16,30,180,16,30,182]},{"1740597":[224,14,16,40,189,16,40,182,16,30,177,16,20,170,16,10,165]},{"1740615":[224,14,8]},{"1740619":[170,16,40,186,16,30,179,16,20,174,16,10,167,16,5,162]},{"1740636":[224,3,12,120,249,180]},{"1740643":[12,185,12,241]},{"1740648":[10,179]},{"1740651":[224,13,22,30,171,14,176,178,183,178,102,180,14,171,176,178,183,178,102,180,14,173,178,180,185,180,102,181,14,180,181,183,120,178,14,176,181,185,190,187,102,188,14,188,187,185,183,185,102,180,14,171,178,180,183,178,102,181,14,181,178,175,112,176,255,224,13,14,60,171,176,178,183,178,102,180,14,171,176,178,183,178,102,180,14,173,178,180,185,180,102,181,14,180,181,183,120,178,14,176,181,185,190,187,102,188,14,188,187,185,183,185,102,180,14,171,178,180,183,178,102,181,14,181,178,175,120,176,255,224,13,22,30,171,14,176,178,183,178,102,180,14,171,176,178,183,178,102,180,14,173,178,180,185,180,102,181,14,180,181,183,120,178,14,176,181,185,190,187,102,188,14,188,187,185,183,185,102,180,14,171,178,180,183,178,102,181,14,181,178,175,112,176]},{"1740845":[224,13,14,60,171,176,178,183,178,102,180,14,171,176,178,183,178,102,180,14,173,178,180,185,180,102,181,14,180,181,183,120,178,14,176,181,185,190,187,102,188,14,188,187,185,183,185,102,180,14,171,178,180,183,178,102,181,14,181,178,175,120,176]},{"1740909":[4]},{"1740911":[168,224,19,8,64,142,8,78,141,12,100,140,18,124,141,12,88,139,18,92,137,12,98,139,8,44,140,12,68,137,24,96,139,8,68,140,48,78,139]},{"1740951":[224,24,96,50,20,249,152]},{"1740959":[96,158,96,42,28,241]},{"1740966":[96,162,96,35,35,241]},{"1740973":[96,158,96,30,40,241]},{"1740980":[96,153,96,25,45,241]},{"1740987":[96,155,99,20,50,241]},{"1740994":[96,152,255,224,24,48,20,50,249,145]},{"1741005":[48,148,48,35,35,241]},{"1741012":[48,145,48,42,28,241]},{"1741019":[48,151,51,50,20,241]},{"1741026":[48,145,255,224,7,24,60,249,159]},{"1741036":[24,169,24,80,241]},{"1741042":[24,178,24,100,241]},{"1741048":[24,188,24,80,241]},{"1741054":[24,187,24,100,241]},{"1741060":[24,188,24,80,241]},{"1741066":[24,187,24,100,241]},{"1741072":[24,188,24,80,241]},{"1741078":[24,178,24,60,241]},{"1741084":[24,169,24,40,241]},{"1741090":[21,159]},{"1741093":[224,15,12,40,190,24,190,12,50,190,24,190,12,60,190,24,190,12,70,190,24,190,12,60,190,24,190,12,50,190,24,190,12,40,190,24,190,12,20,190,24,190]},{"1741136":[224,1,24,60,249,159]},{"1741143":[24,169,12,80,241]},{"1741149":[12,178,12,100,241]},{"1741155":[10,188]},{"1741158":[224,11,48,120,175,185,96,195]},{"1741167":[224,11,16]},{"1741171":[187,48,120,182,32,190,96,190]},{"1741180":[224,11,32]},{"1741184":[175,48,120,180,16,188,96,188]},{"1741193":[224,14,16,40,181,185,16,40,188,16,30,188,16,20,188,16,10,188]},{"1741212":[224,14,8]},{"1741216":[170,16,40,183,188,16,30,188,16,20,188,16,10,188,16,5,188]},{"1741234":[224,15,16,80,168,173,180,185,48,192]},{"1741245":[224,15,8]},{"1741249":[170,16,80,171,176,183,188]},{"1741257":[224,10,4,40,173,174,173,175,4,60,175,174,174,173,4,80,174,173,175,173,4,90,174,174,175,174,4,80,173,174,175,174,4,60,173,174,173,175,4,40,173,174,173,175,4,20,173,174,173,175]},{"1741308":[224,10,7,100,249,166]},{"1741315":[4,173,7,100,249,166]},{"1741322":[4,173,7,100,249,166]},{"1741329":[4,173,7,100,249,166]},{"1741336":[4,173]},{"1741339":[224,10,12,100,249,156]},{"1741346":[12,171,27,241]},{"1741351":[24,142]},{"1741354":[224,7,15,100,249,190]},{"1741361":[12,183,15,80,249,190]},{"1741368":[12,183,15,60,249,190]},{"1741375":[12,183,15,40,249,190]},{"1741382":[12,183]},{"1741385":[224,7,21,40,249,171]},{"1741392":[18,176,21,50,249,173]},{"1741399":[18,178,21,60,249,175]},{"1741406":[18,180,21,70,249,177]},{"1741413":[18,182,21,80,249,179]},{"1741420":[18,184,21,90,249,181]},{"1741427":[18,186,21,100,249,183]},{"1741434":[18,188,21,110,249,185]},{"1741441":[18,190]},{"1741444":[224]},{"1741446":[11,100,249,183]},{"1741451":[11,188,48,241]},{"1741456":[36,140]},{"1741459":[224,15,28,80,173,192,48,192]},{"1741468":[224,15,14]},{"1741472":[170,28,80,180,185]},{"1741478":[224,19,4,100,181,180,224,6,4,80,157,4,90,152]},{"1741493":[224,22,32,60,155,157,127,154,32,155,157,127,154,32,155,157,127,249,154]},{"1741513":[127,154,127,241]},{"1741518":[125,154]},{"1741521":[224,22,64,60,152,127,151,64,152,127,151,32,164,166,127,249,163]},{"1741539":[127,163,127,241]},{"1741544":[125,163]},{"1741547":[224,13,11,60,249,183]},{"1741554":[11,176,6,241]},{"1741559":[3,188]},{"1741562":[224,21,6,120,249,176]},{"1741569":[3,188,6]},{"1741573":[188,6,120,249,176]},{"1741579":[3,188,6,110,249,176]},{"1741586":[3,188,6,90,249,176]},{"1741593":[3,188]},{"1741596":[224,21,6,120,249,176]},{"1741603":[3,195,6,110,249,176]},{"1741610":[3,193,6,100,249,176]},{"1741617":[3,192,6,90,249,176]},{"1741624":[3,190,6,80,249,176]},{"1741631":[3,190,6,70,249,176]},{"1741638":[3,190,6,60,249,176]},{"1741645":[3,190]},{"1741648":[224,1,12,120,152,4]},{"1741655":[152,72,120,249,152]},{"1741661":[72,152,72,120,241]},{"1741667":[72,152,72,110,241]},{"1741673":[72,152,72,90,241]},{"1741679":[72,152,75,40,241]},{"1741685":[72,152]},{"1741688":[224,17,12,120,249,142]},{"1741695":[12,157,12,241]},{"1741700":[9,161,12,100,249,137]},{"1741707":[12,152,12,241]},{"1741712":[9,157,12,80,249,133]},{"1741719":[12,149,12,241]},{"1741724":[9,152,10,145,8,142,6,140]},{"1741733":[224,1,12,120,249,157]},{"1741740":[12,152,12,120,241]},{"1741746":[12,149,12,120,241]},{"1741752":[12,147,72,120,241]},{"1741758":[72,145,72,110,241]},{"1741764":[72,144,72,70,241]},{"1741770":[72,142,75,40,241]},{"1741776":[72,140]},{"1741779":[224,17,12,145,22,142,12,144,20,140,12,137,18,137]},{"1741794":[224]},{"1741796":[12,120,249,164]},{"1741801":[9,159,224,23,36,176]},{"1741808":[224]},{"1741810":[16,100,164,224,23,36,100,176]},{"1741819":[224,14,8,40,178,8,50,178,8,20,178,8,10,178]},{"1741834":[224,1,12,70,249,140]},{"1741841":[12,152,12,120,241]},{"1741847":[12,171,12,120,241]},{"1741853":[9,147]},{"1741856":[224,7,6,20,249,187]},{"1741863":[6,181,6,30,241]},{"1741869":[6,187,6,40,241]},{"1741875":[6,181,6,20,241]},{"1741881":[3,187]},{"1741884":[224,12,6,80,249,140]},{"1741891":[6,145,9,120,241]},{"1741897":[6,152]},{"1741900":[224,13,8,30,163,166,173]},{"1741908":[224,22,18,100,249,178]},{"1741915":[18,173,8,90,241]},{"1741921":[8,175,8,80,241]},{"1741927":[8,169,8,70,241]},{"1741933":[8,173,8,60,241]},{"1741939":[8,168,8,50,241]},{"1741945":[8,171,8,40,241]},{"1741951":[8,166,8,30,241]},{"1741957":[8,169,8,20,241]},{"1741963":[8,164,8,10,241]},{"1741969":[8,168,8,5,241]},{"1741975":[6,163]},{"1741978":[224,1,6,50,188,191,188,191,6,60,188,191,188,191,6,40,188,191,188,191]},{"1741999":[224,15,16,50,249,171]},{"1742006":[16,170,17,60,241]},{"1742012":[14,171]},{"1742015":[224,14,28,60,183,179,172,36,184]},{"1742025":[224,14,14]},{"1742029":[183,28,60,182,173,180,36,60,188]},{"1742039":[224,13,4,80,181,183,185,187,188,190,192,193,12,195]},{"1742054":[224,5,4,120,149,145,142,5,120,140,144,142,4,110,145,145,147,6,110,150,146,149,3,100,143,147,145,4,100,144,142,151,5,100,142,145,140,4,100,144,140,142,224,5,4,120,149,145,142,5,120,140,144,142,4,110,145,145,147,6,110,150,146,149,3,100,140,145,142]},{"1742124":[224,19,4,80,164,4,80,164,24,90,164]},{"1742136":[224,19,4,80,164,4,10,164,24,90,168]},{"1742148":[224,13,6,80,249,154]},{"1742155":[6,152,6,241]},{"1742160":[6,161,6,241]},{"1742165":[3,154]},{"1742168":[224,7,36,50,249,178]},{"1742175":[34,171,8,241]},{"1742180":[6,159]},{"1742183":[224,7,36,50,249,159]},{"1742190":[34,171,8,241]},{"1742195":[6,178]},{"1742198":[224,14,16,30,164,96,30,183]},{"1742207":[224,14,8]},{"1742211":[176,16,30,176,96,30,188]},{"1742219":[224,2,4,80,185,4,10,173,4,90,188]},{"1742231":[224,13,8,30,249,161]},{"1742238":[6,163]},{"1742241":[224,11,8,100,249,173]},{"1742248":[6,178,8,100,249,176]},{"1742255":[6,195]},{"1742258":[224,3,4,80,178,4,80,176,36,80,178]},{"1742270":[224,14,4,70,185,4,50,187,4,30,188]},{"1742282":[224,12,8,80,249,175]},{"1742289":[8,166,8,241]},{"1742294":[8,154,8,241]},{"1742299":[8,161,8,241]},{"1742304":[8,171,8,241]},{"1742309":[5,151,8,70,249,157]},{"1742316":[6,178]},{"1742319":[224,12,5,80,249,166]},{"1742326":[5,159,7,241]},{"1742331":[5,173]},{"1742334":[224,2,24,120,249,135]},{"1742341":[24,181,12,241]},{"1742346":[12,178,12,241]},{"1742351":[12,173,12,241]},{"1742356":[10,152]},{"1742359":[224,18,12,249,140]},{"1742365":[9,135,224,6,4,60,140,181,137,181,4,50,140,181,137,181,4,40,140,181,137,181,4,30,140,181,137,181,4,20,140,181,137,181,4,10,140,181,137,181]},{"1742406":[224,12,4,70,161,24,70,249,164]},{"1742416":[21,147]},{"1742419":[224,19,8,90,161,48,161]},{"1742427":[224,11,16,120,249,164]},{"1742434":[16,182,16,241]},{"1742439":[16,173,16,249,160]},{"1742445":[16,173,16,241]},{"1742450":[16,157,16,249,154]},{"1742456":[16,168,16,241]},{"1742461":[16,154,12,241]},{"1742466":[12,157,12,241]},{"1742471":[9,149,224,19,8,100,164,169]},{"1742480":[224,17,12,100,249,185]},{"1742487":[12,181,12,241]},{"1742492":[9,183]},{"1742495":[224,17,12,100,249,142]},{"1742502":[12,157,12,241]},{"1742507":[9,161]},{"1742510":[224,17,48,100,164]},{"1742516":[224,17,72,100,152]},{"1742522":[224,1,8,60,249,175]},{"1742529":[5,181]},{"1742532":[224,22,10,120,249,137]},{"1742539":[10,133,10,241]},{"1742544":[10,140,10,241]},{"1742549":[7,157]},{"1742552":[224,2,4,60,173,224,1,8,60,163]},{"1742563":[224,13,18,60,249,178]},{"1742570":[18,173,18,241]},{"1742575":[15,163]},{"1742578":[224,2,8,50,173,166,224,1,4,90,178,173,169,4,70,171,161,164,4,30,163,156,154]},{"1742602":[224,17,24,100,178]},{"1742608":[224,17,8,120,249,140]},{"1742615":[8,157,9,241]},{"1742620":[6,147]},{"1742623":[224,1,4,40,249,164]},{"1742630":[4,169,5,60,241]},{"1742636":[2,166,5,80,241]},{"1742642":[2,163]},{"1742645":[224,16,24,120,154,24,115,155,24,110,156,24,105,157,24,100,158,24,95,159,24,90,160]},{"1742669":[224,16,24,100,161,24,105,162,24,110,163,24,115,164,24,120,165]},{"1742687":[224,16,24,120,165,24,115,164,24,110,163,24,105,162,24,100,161,24,95,160,24,90,159]},{"1742711":[224,16,24,100,158,24,105,157,24,110,156,24,115,155,24,120,154]},{"1742729":[224,7,12,40,249,157]},{"1742736":[12,159,12,35,241]},{"1742742":[9,178]},{"1742745":[224,7,12,40,249,178]},{"1742752":[12,159,12,35,241]},{"1742758":[9,157]},{"1742761":[224,13,8,70,171,176,178,183,178,96,180,8,60,171,176,178,183,178,96,180]},{"1742782":[224,13,4]},{"1742786":[168,8,40,171,176,178,183,178,96,180,8,30,171,176,178,183,178,96,180]},{"1742806":[224,2,10,80,249,140]},{"1742813":[7,183,224,1,8,100,249,173]},{"1742822":[5,164,16]},{"1742826":[164,8,40,249,176]},{"1742832":[8,164,8,241,176]},{"1742838":[5,157]},{"1742841":[224,5,8,100,249,190]},{"1742848":[5,185]},{"1742851":[224,5,8,120,249,159]},{"1742858":[5,152]},{"1742861":[224]},{"1742863":[24,50,249,159]},{"1742868":[24,164,48,40,241]},{"1742874":[45,152]},{"1742877":[224]},{"1742879":[6,120,183,6,50,180,6,115,181,6,40,178,6,85,180,5,45,176,5,85,178,4,45,187,4,85,176,3,35,185]},{"1742910":[224,13,6,30,192,190,192,193,195]},{"1742920":[224,1,8,60,249,183]},{"1742927":[5,180,8,20,249,181]},{"1742934":[8,183,8,55,241]},{"1742940":[8,178,8,10,241]},{"1742946":[8,183,8,35,241]},{"1742952":[5,188]},{"1742955":[224,6,6,40,185,176,179,182,185]},{"1742965":[224,6,4,80,176,4,10,173,4,90,181]},{"1742977":[224,2,6,80,168,12,169]},{"1742985":[224,11,16,100,161,162,163,96,164]},{"1742995":[224,11,16,100,176,177,178,96,179]},{"1743005":[224,11,16,100,169,170,171,96,172]},{"1743015":[224,5,48,100,154,6,10,157,152,6,20,157,152,6,40,157,152,6,80,157,152,157,152,157,48,152]},{"1743042":[224,11,16,120,185,186,187,96,188]},{"1743052":[224,6,12,100,249,147]},{"1743059":[9,176,6,90,249,181]},{"1743066":[6,183,6,85,241]},{"1743072":[6,178,6,95,241]},{"1743078":[6,183,6,75,241]},{"1743084":[6,180,6,85,241]},{"1743090":[6,185,6,60,241]},{"1743096":[6,181,6,70,241]},{"1743102":[6,187,6,50,241]},{"1743108":[6,183,6,60,241]},{"1743114":[6,188,6,45,241]},{"1743120":[3,188]},{"1743123":[224,7,8,40,249,171]},{"1743130":[5,168,8,50,249,169]},{"1743137":[8,171,8,45,241]},{"1743143":[8,166,8,30,241]},{"1743149":[8,171,8,25,241]},{"1743155":[5,166]},{"1743158":[224,5,6,40,188]},{"1743164":[224]},{"1743166":[8,50,171,178,169,171,8,40,168,166,168,164,8,30,171,181,169,183,8,10,173,178,164,168]},{"1743191":[224,1,8,40,249,171]},{"1743198":[5,168,8,50,249,169]},{"1743205":[8,171,8,35,241]},{"1743211":[8,154,8,40,241]},{"1743217":[8,171,8,25,241]},{"1743223":[8,154,8,15,241]},{"1743229":[5,159]},{"1743232":[224,1,8,40,249,183]},{"1743239":[5,180,8,50,249,181]},{"1743246":[8,183,8,45,241]},{"1743252":[8,178,8,40,241]},{"1743258":[8,183,8,35,241]},{"1743264":[8,178,8,30,241]},{"1743270":[8,183,8,15,241]},{"1743276":[5,178]},{"1743279":[224,8,12,80,176,176]},{"1743286":[224]},{"1743288":[9,80,249,183]},{"1743293":[6,188]},{"1743296":[224]},{"1743298":[6,80,249,147]},{"1743303":[6,176,6,80,241]},{"1743309":[3,140]},{"1743312":[224,6,4,80,179,6,176,4,179,6,176,4,179,6,176]},{"1743328":[224,3,24,80,176]},{"1743334":[224,6,6,120,176]},{"1743340":[224,2,10,120,249,176]},{"1743347":[7,152,224,2,6,50,249,181]},{"1743356":[6,183,6,45,241]},{"1743362":[6,178,6,40,241]},{"1743368":[6,183,6,35,241]},{"1743374":[6,178,6,20,241]},{"1743380":[6,183,6,15,241]},{"1743386":[3,178]},{"1743389":[224,1,4,70,249,159]},{"1743396":[4,140,12,120,249,159]},{"1743403":[9,183]},{"1743406":[224,1,6,120,249,152]},{"1743413":[6,176,7,241]},{"1743418":[4,171]},{"1743421":[224,2,12,120,249,147]},{"1743428":[12,195,7,241]},{"1743433":[4,164]},{"1743436":[224,2,15,120,249,140]},{"1743443":[15,188,13,241]},{"1743448":[10,159]},{"1743451":[224,1,96,80]},{"1743456":[249,159]},{"1743459":[96,159,99,241]},{"1743464":[96,159,255,224,1,96]},{"1743471":[80,249,152]},{"1743475":[96,152,96,241]},{"1743480":[96,152,99,241]},{"1743485":[96,152,255,224,1,96,50]},{"1743493":[249,149]},{"1743496":[96,149,99,241]},{"1743501":[96,149,255,224,1,96]},{"1743508":[50,249,145]},{"1743512":[96,145,96,241]},{"1743517":[96,145,99,241]},{"1743522":[96,145,255,224,19,96,127,159]},{"1743531":[224,7,12]},{"1743535":[145,12,127,149,24]},{"1743541":[142,12,127,147,12,127,144,48]},{"1743550":[144,12,127,142,36]},{"1743556":[147,12,127,145,224,20,96,127,249,133]},{"1743567":[96,135,51,107,241]},{"1743573":[48,137]},{"1743576":[224,20,24,127,249,152]},{"1743583":[24,145,24,241]},{"1743588":[24,151,24,241]},{"1743593":[24,144,24,241]},{"1743598":[24,149,24,241]},{"1743603":[24,142,96,241]},{"1743608":[96,137,99,241]},{"1743613":[96,128]},{"1743616":[224,7,12,40,249,192]},{"1743623":[12,193,24,241]},{"1743628":[24,194,12,60,249,192]},{"1743635":[12,193,24,241]},{"1743640":[24,194,12,80,249,192]},{"1743647":[12,193,24,241]},{"1743652":[24,194,12,60,249,192]},{"1743659":[12,193,24,241]},{"1743664":[24,194,12,40,249,192]},{"1743671":[12,193,27,241]},{"1743676":[24,194]},{"1743679":[4]},{"1743681":[168,224,19,8]},{"1743686":[124,142,8,78,34,141,12,100,86,140,18,86,124,141,12,44,88,139,18,92,58,137,12,98,74,139,8,44,68,140,12,68,44,137,24,96,81,139,8,54,68,140,48,78,78,139,255,224,15,4,80,185,4,60,185,4,40,185,4,20,185,4,10,185]},{"1743751":[224,20,24,20,249,180]},{"1743758":[24,181,96,241]},{"1743763":[96,181,96,30,241]},{"1743769":[96,181,96,241]},{"1743774":[96,173,99,241]},{"1743779":[96,166]},{"1743782":[224,13,48]},{"1743786":[180,24,10,249,179]},{"1743792":[24,182,96,241]},{"1743797":[96,179,24,15,241]},{"1743803":[24,182,96,241]},{"1743808":[96,179,24,241]},{"1743813":[24,180,96,241]},{"1743818":[96,177,99,241]},{"1743823":[96,171]},{"1743826":[224,18,18,90,249,137]},{"1743833":[18,141,12,241]},{"1743838":[12,146,36,241]},{"1743843":[36,151,127,241]},{"1743848":[72,130]},{"1743851":[224,20,6,90,249,140]},{"1743858":[6,146,18,241]},{"1743863":[18,153,18,241]},{"1743868":[15,145]},{"1743871":[224,13,18,100,249,171]},{"1743878":[12,183,18,100,249,178]},{"1743885":[12,190]},{"1743888":[224,13,18,100,249,178]},{"1743895":[12,190,18,100,249,183]},{"1743902":[12,195]},{"1743905":[224,13,18,100,249,186]},{"1743912":[12,173,18,100,249,171]},{"1743919":[12,166]},{"1743922":[6,100,152,152,48,100,152]},{"1743930":[224,4,6,120,249,176]},{"1743937":[6,164,224,2,9,70,249,176]},{"1743946":[6,183]},{"1743949":[224,21,24,100,176]},{"1743955":[224,13,24,50,141]},{"1743961":[225]},{"1743964":[62,112,112]},{"1743968":[16]},{"1743970":[246,106,184,3,112,112]},{"1743977":[16,1,142,224,184,2,112,112]},{"1743986":[16,20,254,106,184,2,112,112]},{"1743995":[16,3,254,248,184,13,112,112]},{"1744004":[16,4,254,106,127,3,112,112]},{"1744013":[16,2,254,106,127,3,112,112]},{"1744022":[16,5,254,106,112,3,112,112]},{"1744031":[16,6,254,106,112,3,112,112]},{"1744040":[16,8,250,106,112,3,112,112]},{"1744049":[16,6,254,106,112,1,112,112]},{"1744058":[16,7,254,106,112,5,112,112]},{"1744067":[16,11,254,106,184,3,112,112]},{"1744076":[16,12,254,224,184,2,112,112]},{"1744085":[16,13,249,110,184,3,112,112]},{"1744094":[16,14,254,245,184,7,112,112]},{"1744103":[16,15,254,245,184,6,112,112]},{"1744112":[16,1,254,252,184,3,112,112]},{"1744121":[16,16,142,224,184,3,112,112]},{"1744130":[16,8,142,224,184,2,112,112]},{"1744139":[16,20,142,224,184,2,112,112]},{"1744148":[16,10,136,224,184,2,112,112]},{"1744157":[16,23,142,224,184,2,112,112]},{"1744166":[16,21,255,224,184,4,112,112]},{"1744175":[16,3,223,17,184,15,112,112]},{"1744184":[16,1,136,224,184,1,12,2,128,40,172,40,140,40,156,40,255]},{"1744202":[130,40]},{"1744206":[188,40,213,40,240,40,11,41,38,41,81,41,127,41]},{"1744222":[170,41,189,41,210,41,231,41,252,41,33,42,75,42]},{"1744238":[112,42]},{"1744254":[224,15,237,140,225,2,48,125,186,184,183,184,184,182,181,182,182,181,180,181,181,179,178,179]},{"1744279":[224,15,237,140,225,4,12,201,48,125,179,179,179,179,177,177,177,177,175,175,175,175,174,174,174,36,174,224,15,237,140,225,6,24,201,48,125,175,175,175,175,174,174,174,174,172,172,172,172,170,170,170,24,170,224,15,237,140,225,8,36,201,48,125,172,172,172,172,170,170,170,170,169,169,169,169,167,167,167,12,167,224,15,237,200,225,10,36,125,139,72,162,36,155,165,12,155,36,138,72,160,36,138,165,12,153,36,136,60,158,36,136,157,24,153,36,134,60,157,36,134,155,24,165,224,15,237,200,225,14,12,201,96,125,151,12,200,36,162,162,12,200,96,150,12,200,36,160,160,12,200,84,148,12,200,36,148,160,12,151,200,84,146,12,200,36,146,160,12,163,224,15,237,200,225,18,24,201,84,125,155,24,200,36,160,24,160,200,84,153,24,200,36,158,24,158,200,72,151,24,200,36,158,157,24,200,72,150,24,200,36,157,158,48,125,186,184,183,184,187,186,185,186,189,187,186,187,186,184,182,181]},{"1744511":[12,201,48,125,179,179,179,179,180,180,180,180,179,179,179,179,175,175,175,36,175,24,201,48,125,175,175,175,175,177,177,177,177,175,175,175,175,172,172,172,24,172,36,201,48,125,172,172,172,172,171,171,171,171,172,172,172,172,169,169,169,12,169,36,125,139,60,162,36,139,160,24,160,36,138,60,165,36,143,162,24,165,36,136,60,163,36,136,162,24,160,36,141,60,163,36,141,160,24,172,12,201,84,125,151,12,200,36,151,167,12,155,200,84,150,12,200,36,155,168,12,162,200,84,148,12,200,36,148,165,12,155,200,84,153,12,200,36,153,169,12,169,24,201,72,125,155,24,200,36,162,162,24,200,72,153,24,200,36,165,167,24,200,72,155,24,200,36,163,163,24,200,72,160,24,200,36,163,167,250,25,229,180,245,255]},{"1744698":[247,2,80,2,248,40,40,40,231,33,224,15,237,140,225,2,24,201]},{"1744718":[174,45]},{"1744721":[208,54,208,255,208,106,216,167,220,229,222,106,227,220,232,17,238,109,239,19,248,128,40,246,248]},{"1744747":[43,166,47]},{"1744751":[43]},{"1744776":[60,208,254,250]},{"1744782":[76,208,163,208,193,208,224,208,238,208]},{"1744798":[250,25,229,200,231,29,232,140,41,245,255]},{"1744811":[247,2,30,2,248,40,120,120,224,15,237,200,6,201,6,125,177,174,171,12,200,6,174,171,169,12,200,6,171,169,167,12,200,6,169,167,165,12,200,6,167,165,162,12,200,6,165,162,159,12,200,6,162,232,120,23,159,157,12,200,6,159,157,155,200,30,150,18,165,12,200,72,181]},{"1744885":[224,15,237,200,30,125,179,177,174,6,171,24,200,30,169,167,12,165,18,200,36,162,30,147,12,169,18,200,66,183,224,15,237,200,24,201,30,125,169,167,12,165,18,200,30,162,159,18,157,12,200,30,155,18,153,30,157,6,171,84,200,224,15,237,200,96,201,201,66,201,30,125,159,84,174,224,15,237,200,96,201,201,72,201,24,125,162,6,200,78,177]},{"1744977":[11,209,27,209,43,209,255]},{"1744985":[1,209]},{"1744989":[59,209,139,209,208,209,16,210,69,210,122,210,193,210,211,210,17,211,50,211,127,211,164,211,207,211,226,211]},{"1745019":[79,212,121,212,154,212,220,212,3,213,44,213,77,213,162,213,4,214,250,25,245,187]},{"1745043":[247,2,30,2,248,40]},{"1745051":[231,28,229,160,237,250,225,10,224,11,227,18,28,38,233]},{"1745067":[48,93,174,16,201,4,45,174,174,8,43,174,174,8,45,174,239,35,214,2,12,63,174,6,57,169,6,59,169,12,91,169,6,61,169,169,12,95,169,6,79,169,6,63,169,12,95,169,169]},{"1745117":[237,255,224,17,225,10,227,8,30,30,24,93,150,8,59,150,150,150,24,93,150,8,59,150,150,150,24,93,148,8,59,148,148,148,24,93,148,8,59,148,148,148,24,93,146,8,59,146,146,146,24,93,146,8,59,146,146,146,24,91,145,145,24,93,145,12,95,147,149,237,200,224,19,225,10,6,121,166,6,117,166,6,120,166,6,119,166,6,122,166,6,121,166,6,124,166,6,123,166,24,124,166,8,121,166,166,166,239,60,214,2,3,126,166,21,125,166,3,126,166,21,125,166,3,126,166,21,125,166,12,127,166,166,237,230,225,8,224,11,227,13,28,38,48,93,169,16,201,8,87,169,8,89,169,169,8,73,169,239,92,214,2,12,63,169,6,89,158,6,91,158,12,159,6,93,159,159,12,95,160,6,160,160,12,161,161,237,220,225,12,224,11,227,14,32,42,48,93,164,16,201,8,87,164,8,89,164,164,8,73,164,239,116,214,2,12,63,164,6,89,162,6,91,162,12,163,6,93,163,163,12,95,164,6,164,164,12,165,165,237,220,224,17,225,10,227,8,30,30,24,91,157,8,57,157,157,157,24,91,157,8,57,157,157,157,24,91,155,8,57,155,155,155,24,91,155,8,57,155,155,155,24,91,153,8,57,153,153,153,24,91,153,8,57,153,153,153,24,89,155,24,91,155,24,93,155,12,95,156,157,237,200,225,10,224,19,239,140,214,3,237,255,224,12,48,127,156,156,237,180,225,2,224,11,227,19,27,40,10,201,48,93,174,16,201,4,45,174,174,8,43,174,174,8,45,174,239,35,214,2,12,63,174,6,57,169,6,59,169,12,91,169,6,61,169,169,12,95,169,6,79,169,6,63,169,12,95,169,2,169,239,170,214,1,239,218,214,1,12,181,6,61,169,169,12,78,169,6,62,169,169,12,78,169,6,63,169,169,12,79,169,169]},{"1745540":[239,36,215,1,24,93,146,8,77,146,146,144,24,146,146,24,93,153,8,77,153,153,152,24,153,153,24,93,151,8,77,151,151,150,24,151,8,151,151,151,24,93,150,8,77,150,150,148,24,150,8,150,150,150,24,93,152,8,77,152,152,151,24,152,8,152,152,152,24,93,145,145,145,12,77,147,149,237,180,224,19,225,10,239,59,215,7,12,109,166,6,107,166,166,12,109,166,6,107,166,166,12,109,166,6,107,166,166,6,105,166,166,166,166,237,220,225,18,224,10,227,18,26,40,239,77,215,1,157,8,200,157,155,48,157,24,158,12,158,6,158,160,48,162,24,157,12,157,6,157,158,48,160,239,106,215,1,237,200,225,10,224,2,239,126,215,1,201,201,201,48,127,133,24,133,133,237,230,225,10,224,11,227,19,25,40,244,20,239,132,215,1,48,109,177,16,201,8,177,8,93,177,8,109,176,8,77,174,176,201,174,48,109,172,24,77,172,12,45,170,6,93,170,6,45,172,48,77,174,12,109,172,12,77,170,12,45,169,6,93,169,6,45,170,48,77,172,12,109,170,12,77,169,12,45,168,6,168,169,48,109,171,24,174,12,173,6,77,161,161,12,78,161,6,161,161,12,161,6,79,161,161,12,161,161,237,120,225,2,224,11,227,17,26,39,244,30,239,168,215,1,239,218,214,1,12,181,6,77,169,169,12,78,169,6,169,169,12,169,6,79,169,169,12,169,3,169,239,170,214,1,239,206,215,1,12,181,6,61,169,169,12,78,169,6,62,169,169,12,78,169,6,63,169,169,12,79,169,169]},{"1745900":[239,36,215,1,146,8,146,146,144,24,146,146,145,8,145,145,143,24,145,145,239,6,216,2,151,8,151,151,150,24,151,8,151,151,151,24,150,8,150,150,148,24,150,8,150,150,150,24,152,8,152,152,151,24,152,8,152,152,152,24,145,145,145,12,147,149,239,59,215,4,239,28,216,2,239,59,215,3,12,109,166,6,107,166,166,12,109,166,6,107,166,166,12,109,166,6,107,166,166,6,105,166,166,166,166,225,18,224,10,227,18,26,40,239,77,215,1,48,157,161,239,80,216,2,24,158,12,158,6,158,157,48,158,24,157,12,157,6,157,155,48,157,239,106,215,1,237,220,225,16,224,10,227,19,25,38,239,126,215,1,24,123,162,168,48,171,164,161,24,162,168,48,171,164,161,239,126,215,1,237,230,224,11,239,132,215,1,72,91,177,24,180,12,179,201,48,176,24,173,72,174,24,177,12,176,201,48,173,24,173,72,174,24,177,12,176,201,48,173,24,169,72,170,24,175,12,174,201,48,169,24,165,12,43,168,6,168,169,48,109,171,24,174,12,173,6,77,161,161,12,78,161,6,161,161,12,161,6,79,161,161,12,161,161,237,160,224,19,225,11,239,126,215,1,3,125,154,6,120,154,6,119,154,6,120,154,6,122,154,6,121,154,6,122,154,6,124,154,3,154,224,12,237,250,48,127,156,239,88,216,1,224,19,237,160,3,125,154,6,120,154,6,119,154,6,120,154,6,122,154,6,121,154,6,122,154,6,124,154,3,123,154,224,12,237,250,48,127,156,239,88,216,1,239,101,216,1,48,133,24,133,133,239,168,215,1,239,206,215,1,12,181,6,77,169,169,12,78,169,6,169,169,12,169,6,79,169,169,12,169,3,169]},{"1746293":[8,95,174,201,8,89,172,24,93,174,16,61,200,4,45,174,174,8,43,174,174,8,45,174]},{"1746318":[6,166,6,117,166,6,120,166,6,119,166,6,122,166,6,121,166,6,124,166,6,123,166,24,124,166,8,121,166,166,166]},{"1746350":[8,95,169,201,8,89,169,24,93,169,16,55,200,8,87,169,8,89,169,169,8,73,169]},{"1746374":[8,95,164,201,8,89,164,24,93,164,16,55,200,8,87,164,8,89,164,164,8,73,164]},{"1746398":[3,121,166,6,119,166,6,117,166,6,118,166,6,119,166,6,120,166,6,121,166,6,122,166,6,123,166,45,201]},{"1746428":[237,250,225,10,224,11,227,18,28,38,12,77,174,201,42,109,169,6,77,174,6,93,174,6,77,176,6,93,178,6,77,179,48,109,181,12,201,12,45,181,8,125,181,8,93,182,184]},{"1746476":[48,109,186,16,201,8,45,186,8,93,186,8,109,184,8,77,182,184,201,182,48,109,181,24,77,181,12,45,179,6,93,179,6,45,181,48,77,182,12,109,181,12,77,179,12,45,177,6,93,177,6,45,179,48,77,181,12,109,179,12,77,177,12,45,176,6,176,178,48,109,180,24,183]},{"1746550":[24,93,150,8,77,150,150,148,24,150,150,24,93,148,8,77,148,148,146,24,148,148]},{"1746573":[24,109,166,8,107,166,166,166,12,166,166,6,121,166,166,166,166]},{"1746591":[24,201,24,123,162,48,157,18,200,6,162,162,164,166,167,48,169,18,200,6,158,158,160,162,164,24,165,158]},{"1746620":[24,156,12,156,6,156,157,12,159,6,159,161,12,162,164,48,119,161,161]},{"1746640":[96,201,201,201,201]},{"1746646":[12,77,166,201,42,109,162,6,77,166,6,93,166,6,77,167,6,93,169,6,77,171,48,109,172,12,201,12,45,172,8,93,172,174,176]},{"1746682":[9,201,12,77,174,201,42,109,169,6,77,174,6,93,174,6,77,176,6,93,178,6,77,179,48,109,181,12,201,12,45,181,8,93,181,182,184]},{"1746720":[72,186,24,189,12,188,201,48,185,24,181,72,182,24,186,12,185,201,48,181,24,181,72,182,24,186,12,185,201,48,181,24,178,72,179,24,182,12,181,201,48,177,24,174,12,43,176,6,176,178,48,109,180,24,183]},{"1746776":[8,79,144,150,153,156,162,165,24,168,201,24,77,169,8,145,145,145,24,145,201]},{"1746798":[6,109,166,6,103,166,6,105,166,6,104,166,6,105,166,6,107,166,6,106,166,6,107,166,12,109,166,166,6,121,166,166,166,166,24,109,166,8,107,166,166,166,12,166,166,6,121,166,166,166,166]},{"1746850":[24,156,72,162,48,161,157]},{"1746858":[224,2,237,200,24,201,8,133,133,133,48,133]},{"1746871":[96,201,201,201]},{"1746876":[136,216,152,216,152,216,200,216,255]},{"1746886":[108,216]},{"1746890":[216,216,234,216,251,216,5,217,22,217,42,217]},{"1746906":[62,217,106,217,131,217,139,217]},{"1746922":[164,217,190,217,215,217,223,217,248,217,66,218]},{"1746938":[140,218,150,218,159,218,170,218,179,218,213,218]},{"1746954":[247,218,9,219,26,219,36,219,53,219,119,219]},{"1746970":[185,219,203,219,220,219,230,219,247,219,11,220]},{"1746986":[24,201,72,123,175,24,201,72,176,24,201,72,177,24,201,72,178]},{"1747004":[24,201,72,123,170,24,201,72,171,24,201,72,172,24,201,72,173,12,125,144,151,72,156,239,32,220,3,24,201,72,123,168,24,201,72,169,24,201,72,170,24,201,72,171,239,38,220,1,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,239,89,220,1,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,250,24,229,200,231,29,245,255]},{"1747098":[247,2,30,2,248,30,40,40,224,10,237,200,227,20,25,30,24,201,72,123,171,24,201,72,172,24,201,72,173,24,201,72,174]},{"1747132":[224,10,237,200,227,20,25,30,24,201,72,123,166,24,201,72,167,24,201,72,168,24,201,72,169,239,140,220,1,239,155,220,3,224,10,237,200,227,20,25,30,24,201,72,123,164,24,201,72,165,24,201,72,166,24,201,72,167,224,18,237,200,227,20,25,30,24,201,72,123,171,24,201,72,172,24,201,72,173,24,201,72,174]},{"1747216":[224,18,237,200,227,20,25,30,24,201,72,123,166,24,201,72,167,24,201,72,168,24,201,72,169,239,140,220,1,239,155,220,3,224,18,237,200,227,20,25,30,24,201,72,123,164,24,201,72,165,24,201,72,166,24,201,72,167,224,10,237,200,227,20,25,30,6,123,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,224,10,237,200,227,20,25,30,6,123,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,24,201,72,123,179,24,201,72,178]},{"1747432":[24,201,72,123,174,24,201,72,173,12,125,148,155,72,160,12,149,156,72,161,24,201,72,123,172,24,201,72,171,6,123,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,6,123,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,24,201,72,123,179,24,201,72,180,24,201,72,179,24,201,72,178]},{"1747547":[24,201,72,123,174,24,201,72,175,24,201,72,174,24,201,72,173,12,125,148,155,72,160,239,161,220,3,24,201,72,123,172,24,201,72,173,24,201,72,172,24,201,72,171,6,123,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,180,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,178,6,123,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,24,201,72,123,175,24,201,72,176,24,201,72,177,24,201,72,176]},{"1747741":[24,201,72,123,170,24,201,72,171,24,201,72,172,24,201,72,171,12,125,144,151,72,156,239,32,220,3,24,201,72,123,168,24,201,72,169,24,201,72,170,24,201,72,169,239,38,220,1,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,239,89,220,1,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171]},{"1747826":[12,144,151,72,156]},{"1747832":[6,123,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177]},{"1747883":[6,123,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172]},{"1747934":[224,10,237,210,227,20,25,30,12,125,140,147,72,152]},{"1747949":[12,140,147,72,152]},{"1747955":[12,148,155,72,160]},{"1747961":[213,220,181,220,197,220,229,220,255]},{"1747971":[167,220]},{"1747975":[245,220,15,221,37,221,49,221,62,221]},{"1747991":[75,221,89,221,111,221,123,221,136,221]},{"1748007":[149,221,181,221,203,221]},{"1748023":[215,221,241,221,11,222,27,222,52,222]},{"1748039":[229,200,231,35,237,200,224,18,227,20,20,20,239,77,222,1,36,125,173,60,93,166,48,200,201]},{"1748065":[237,160,224,18,227,10,30,10,12,61,154,161,161,161,161,161,161,161,239,99,222,3,237,200,224,18,227,20,30,20,239,108,222,4,239,121,222,1,36,125,169,60,93,163,48,200,201,239,151,222,1,36,125,180,60,93,173,48,200,201,239,181,222,1,36,125,173,60,93,178,48,200,201]},{"1748139":[237,160,224,18,227,10,30,10,12,61,154,161,161,161,161,161,161,161,239,99,222,3,237,200,224,18,227,20,30,20,239,108,222,4,239,121,222,1,36,125,169,60,93,175,48,200,201,239,151,222,1,36,125,180,60,93,185,48,200,201,250,23,229,200,231,37,245,255]},{"1748209":[247,2,20,2,248,40,20,20,237,200,224,18,227,20,20,20,96,201,201,201,201]},{"1748231":[237,160,224,18,227,10,30,10,12,61,154,161,161,161,161,161,161,161,239,99,222,3,237,200,224,18,227,20,30,20,239,108,222,4,239,151,222,1,36,125,180,60,93,173,48,200,24,125,173,6,172,171,12,170,96,200,48,200,201]},{"1748291":[237,160,224,18,227,10,30,10,12,61,154,161,161,161,161,161,161,161,239,99,222,3,239,211,222,2,237,200,224,18,227,20,30,20,239,108,222,4,239,220,222,2,239,121,222,1,36,125,169,60,93,163,48,200,24,125,163,6,162,161,12,160,96,200,48,200,201,239,181,222,1,36,125,173,60,93,166,48,200,48,8,166,24,201,201,201,201,201,201,201,201]},{"1748383":[12,61,166,24,201,12,168,24,201,12,169,201,201,176,24,201,12,175,201,171,201]},{"1748405":[154,161,161,161,161,161,161,161]},{"1748414":[12,77,147,12,61,154,154,154,154,154,154,154]},{"1748427":[237,200,224,18,227,20,20,20,12,61,163,24,201,12,164,24,201,12,166,201,201,173,24,201,12,171,201,168,201]},{"1748457":[237,160,224,18,227,20,20,20,12,61,173,24,201,12,175,24,201,12,176,201,201,183,24,201,12,182,201,178,201]},{"1748487":[237,200,224,18,227,20,20,20,12,61,166,24,201,12,168,24,201,12,169,201,201,176,24,201,12,175,201,171,201]},{"1748517":[153,160,160,160,160,160,160,160]},{"1748526":[146,153,153,153,153,153,153,153]},{"1748535":[241,222,1,223,33,223,255]},{"1748543":[229,222]},{"1748547":[49,223,106,223,118,223,177,223,236,223]},{"1748561":[6,224,44,224,60,224,72,224,76,224,117,224]},{"1748577":[180,224,195,224,211,224,225,224,229,224,49,225]},{"1748593":[125,225,140,225,159,225,171,225,211,225,252,225]},{"1748609":[35,226,250,23,229,200,231,29,245,255]},{"1748621":[247,2,30,2,248,40,30,30,237,200,224,10,227,30,20,30,12,201,12,41,175,12,43,175,24,75,175,12,41,175,175,175,239,54,226,1,201,175,12,43,175,48,75,175,12,201]},{"1748668":[224,9,237,180,227,30,20,30,239,80,226,2,237,180,224,10,227,30,20,30,12,201,12,41,172,12,43,172,24,75,172,12,41,172,172,172,201,173,12,43,173,48,75,173,12,201,201,12,41,172,12,43,172,24,75,172,12,41,172,172,172,201,173,12,43,173,48,75,173,12,201,237,180,224,10,227,30,20,30,12,201,12,41,168,12,43,168,24,75,168,12,41,168,168,168,201,169,12,43,169,48,75,169,12,201,201,12,41,168,12,43,168,24,75,168,12,41,168,168,168,201,169,12,43,169,48,75,169,12,201,237,160,224,22,96,201,64,201,4,59,187,185,24,125,187,96,201,60,201,6,59,187,185,24,125,187,237,130,224,10,227,30,20,30,20,201,12,41,175,12,43,175,24,75,175,12,41,175,175,175,239,54,226,1,201,175,12,43,175,48,75,175,4,201,239,90,226,1,239,116,226,1,200,166,166,48,166,12,201]},{"1748878":[237,200,227,30,20,30,96,109,159,152,157,150,239,138,226,1,237,200,224,10,227,30,20,30,12,201,12,41,171,171,171,12,91,171,12,41,171,171,171,201,171,171,12,89,171,12,43,171,12,41,171,171,171,239,202,226,2,237,200,224,10,227,30,20,30,12,201,12,41,166,166,166,12,91,166,12,41,166,166,166,201,164,164,164,12,91,164,12,41,164,164,164,201,164,164,164,12,89,164,12,43,164,12,41,164,164,201,162,162,162,12,89,162,12,43,162,12,41,162,162,239,215,226,1,239,116,226,1,200,166,166,48,166,4,201,239,90,226,1,239,116,226,1,200,166,166,48,166,12,201]},{"1749029":[224,10,237,200,227,30,20,30,96,109,159,152,157,156,239,138,226,1,237,200,224,10,227,30,20,30,239,241,226,2,6,93,169,6,89,169,169,169,6,91,169,6,89,169,169,169,6,93,169,6,89,169,169,169,6,91,169,6,89,169,169,169,6,93,168,6,89,168,168,168,6,91,168,6,89,168,168,168,6,93,168,6,89,168,168,168,6,91,168,6,89,168,168,168,237,200,224,10,227,30,20,30,6,93,166,6,89,166,166,166,6,91,166,6,89,166,166,166,6,93,166,6,89,166,166,166,6,91,166,6,89,166,166,166,239,18,227,2,6,93,163,6,89,163,163,163,6,91,163,6,89,163,163,163,6,93,163,6,89,163,163,163,6,91,163,6,89,163,163,163,239,215,226,1,239,116,226,1,200,166,166,48,166,4,201,237,200,224,10,227,30,20,30,239,51,227,1,96,88,200,96,72,200]},{"1749233":[237,200,227,30,20,30,96,109,148,150,152,200,237,200,224,22,227,30,20,30,12,201,12,41,183,12,43,183,183,12,45,183,24,41,176,12,176,200,178,180,24,181,12,180,181,183,96,88,200,96,72,200,237,200,224,10,227,30,20,30,12,201,12,41,160,160,160,12,91,160,12,41,160,160,160,201,162,162,12,89,162,12,43,162,12,41,162,162,162,239,78,227,2,237,200,224,10,227,30,20,30,12,201,12,41,167,167,167,12,91,167,12,41,167,167,167,201,169,169,169,12,91,169,12,41,169,169,169,239,91,227,2,237,140,224,10,227,30,20,30,239,51,227,1,96,88,200,96,72,200]},{"1749384":[201,175,12,43,175,48,75,175,12,201,201,12,41,175,12,43,175,24,75,175,12,41,175,175,175]},{"1749410":[72,105,156,24,109,151,48,157,152]},{"1749420":[237,200,224,10,227,30,20,30,12,201,12,41,175,12,43,175,175,12,45,175,24,41,169,12,169]},{"1749446":[200,168,168,48,168,12,201,201,173,12,43,173,173,12,45,173,24,41,168,12,168]},{"1749468":[237,200,224,22,227,30,20,30,12,201,12,41,187,12,43,187,187,12,45,187,24,73,181,12,41,181,200,180,6,180,178,48,73,180,12,201,201,12,41,185,12,43,185,185,12,45,185,24,73,180,12,41,180,200,178,6,178,176,48,73,178,12,201]},{"1749532":[201,169,169,169,12,91,169,12,41,169,169,169]},{"1749545":[237,140,224,10,227,30,20,30,20,201,12,41,175,12,43,175,175,12,45,175,24,41,169,12,169]},{"1749571":[6,93,171,6,89,171,171,171,6,91,171,6,89,171,171,171,6,93,171,6,89,171,171,171,6,91,171,6,89,171,171,171]},{"1749604":[6,93,164,6,89,164,164,164,6,91,164,6,89,164,164,164,6,93,164,6,89,164,164,164,6,91,164,6,89,164,164,164]},{"1749637":[12,201,12,41,171,12,43,171,171,12,45,171,24,41,164,12,164,200,166,168,24,169,12,168,169,171]},{"1749664":[201,171,171,171,12,91,171,12,41,171,171,171]},{"1749677":[201,164,164,164,12,89,164,12,43,164,12,41,164,164]},{"1749692":[140,227,156,227,172,227,172,227,188,227,204,227,255]},{"1749706":[110,227]},{"1749710":[220,227,238,227,12,228,26,228]},{"1749726":[44,228,88,228,100,228,108,228]},{"1749742":[120,228,137,228,149,228,157,228,169,228,221,228]},{"1749758":[11,229,29,229,59,229,73,229,91,229,163,229]},{"1749774":[245,229,6,230,17,230,51,230,62,230,78,230]},{"1749790":[124,230,141,230,152,230,186,230,197,230,233,230]},{"1749806":[239,40,231,1,72,176,12,175,173,72,176,12,175,173,96,175,200]},{"1749824":[239,64,231,1,24,201,72,169,24,201,72,174,24,201,72,172,24,201,72,173,24,201,72,173,24,201,72,170,96,200,239,78,231,1,12,147,154,72,159,12,147,154,72,159,239,118,231,1,239,140,231,1,24,201,72,166,24,201,72,166,96,200,250,23,229,200,231,29,245,255]},{"1749896":[247,2,30,2,248,30,40,40,224,10,237,200,227,20,25,30,24,201,72,123,171,24,201,72,172,24,201,72,173,24,201,72,174]},{"1749930":[239,149,231,1,239,140,231,1,24,201,72,169,239,163,231,1,239,178,231,3,239,184,231,1,24,201,72,166,24,201,72,167,239,64,231,1,24,201,72,172,24,201,72,173,24,201,72,174]},{"1749979":[239,149,231,1,239,140,231,1,24,201,72,169,239,163,231,1,239,178,231,3,239,184,231,1,24,201,72,166,24,201,72,167,239,202,231,1,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,224,10,237,200,227,20,25,30,6,123,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,239,229,231,1,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,239,40,231,1,72,176,12,175,173,72,176,12,175,173,96,175,200]},{"1750127":[239,64,231,1,24,201,72,169,24,201,72,174,24,201,72,172,24,201,72,173,24,201,72,170,24,201,72,170,96,200,239,78,231,1,12,147,154,72,159,12,147,154,72,159,239,118,231,1,239,140,231,1,24,201,72,168,24,201,72,166,96,200,239,202,231,1,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,239,6,232,3,224,10,237,200,227,20,25,30,6,123,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,239,229,231,1,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,239,23,232,2,239,40,232,1,72,173,48,169,24,174,169,168,174,72,173,200]},{"1750360":[239,63,232,1,169,174,172,173,170,170,200,239,75,232,1,12,149,156,48,161,12,149,156,48,161,12,147,154,48,159,12,140,147,48,152,12,145,152,48,157,12,145,152,48,157,239,95,232,1,164,171,167,168,168,166,200,239,107,232,1,239,142,232,2,239,155,232,2,239,168,232,2,224,10,237,200,227,20,25,30,6,123,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,239,168,232,2,239,181,232,2,239,194,232,2,239,40,232,1,72,173,48,171,24,176,171,169,171,72,173,175]},{"1750495":[239,63,232,1,169,174,172,173,170,170,200,239,75,232,1,12,149,156,48,161,12,149,156,48,161,12,148,155,48,160,12,148,155,48,160,12,147,154,48,159,12,146,153,48,158,239,95,232,1,164,171,167,168,168,166,200,239,107,232,1,239,142,232,2,239,207,232,2,170,170,170,170,170,170,170,170,170,170,170,170,171,171,171,171,171,171,171,171,171,171,171,171,224,10,237,200,227,20,25,30,6,123,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,239,168,232,4,166,166,166,166,166,166,166,166,166,166,166,166,168,168,168,168,168,168,168,168,168,168,168,168]},{"1750650":[224,10,237,200,227,20,25,30,72,123,175,12,173,171,96,173,72,178,12,176,174,96,176]},{"1750674":[224,10,237,200,227,20,25,30,24,201,72,123,171]},{"1750688":[224,10,237,210,227,20,25,30,12,125,145,152,72,157,12,150,157,72,162,12,143,150,72,155,12,148,155,72,160,12,149,156,72,161,12,142,149,72,154]},{"1750728":[224,10,237,200,227,20,25,30,24,201,72,123,168,24,201,72,164,24,201,72,171]},{"1750750":[24,201,72,167,24,201,72,168]},{"1750759":[224,10,237,200,227,20,25,30,24,201,72,123,166]},{"1750773":[224,10,237,210,227,20,25,30,12,125,140,147,72,152]},{"1750788":[12,140,147,72,152]},{"1750794":[224,10,237,200,227,20,25,30,24,201,72,123,164,24,201,72,165]},{"1750812":[224,10,237,200,227,20,25,30,6,123,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171]},{"1750839":[167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168]},{"1750872":[170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170]},{"1750889":[166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166]},{"1750906":[224,10,237,200,227,20,25,30,48,123,173,24,178,48,173,24,178,48,176,12,175,176]},{"1750929":[224,10,237]},{"1750933":[227,20,25,30,72,123,171]},{"1750941":[224,10,237,210,227,20,25,30,12,125,150,157,48,162,12,150,157,48,162]},{"1750961":[224,10,237]},{"1750965":[227,20,25,30,72,123,168]},{"1750973":[224,10,237,200,227,20,25,30,6,123,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169]},{"1751008":[168,168,168,168,168,168,168,168,168,168,168,168]},{"1751021":[166,166,166,166,166,166,166,166,166,166,166,166]},{"1751034":[164,164,164,164,164,164,164,164,164,164,164,164]},{"1751047":[162,162,162,162,162,162,162,162,162,162,162,162]},{"1751060":[161,161,161,161,161,161,161,161,161,161,161,161]},{"1751073":[167,167,167,167,167,167,167,167,167,167,167,167]},{"1751086":[66,233,242,232,2,233,242,232,18,233,34,233,50,233,82,233,255]},{"1751104":[222,232]},{"1751108":[98,233,123,233,143,233,175,233,207,233,241,233]},{"1751124":[27,234,50,234,70,234,90,234,116,234,140,234]},{"1751140":[163,234,186,234,206,234,226,234,252,234,19,235]},{"1751156":[42,235,72,235,90,235,108,235]},{"1751166":[132,235]},{"1751172":[162,235,186,235,204,235,222,235]},{"1751182":[246,235]},{"1751188":[15,236,51,236,73,236,81,236,89,236,104,236]},{"1751204":[116,236,133,236,153,236,174,236,195,236,209,236]},{"1751220":[239,221,236,1,72,109,181,48,200,24,125,169,239,221,236,1,72,109,181,48,200,24,125,181]},{"1751245":[34,109,150,36,166,147,162,152,169,145,167,150,166,147,162,152,169,145,38,167,239,234,236,1,12,201,36,154,24,159,12,201,36,159,24,162,12,201,36,157,24,164,12,201,36,157,24,162,239,252,236,1,239,15,237,1,24,201,36,159,12,154,24,201,36,162,12,159,24,201,36,164,12,161,24,201,36,162,12,157,239,33,237,1,224,22,237,200,227,20,20,20,239,221,236,1,72,109,181,48,200,24,125,169,239,221,236,1,72,109,181,48,200,224,14,24,125,169,224,10,237,160,227,30,20,20,8,201,48,109,174,24,125,169,48,109,178,24,125,174,72,109,181,48,200,24,125,169,239,221,236,1,72,109,181,48,200,16,125,181,72,109,183,48,173,24,125,183,72,109,181,178,178,239,52,237,1,48,200,24,125,169]},{"1751428":[34,109,143,36,159,145,157,150,157,147,154,152,159,145,152,150,157,150,38,157,239,61,237,1,12,201,36,154,24,162,239,89,237,1,12,201,36,157,26,162,239,108,237,1,24,201,36,162,12,157,24,201,36,162,12,154,239,130,237,1,24,201,36,162,14,157,72,109,171,48,161,24,171,72,169,166,166,48,166,24,164,72,162,48,200,224,22,24,125,169,239,149,237,1,48,173,24,125,183,72,109,181,178,178,239,52,237,1,48,200,16,125,169,72,109,183,48,173,24,125,183,72,109,181,178,178,239,52,237,1,48,200,24,125,174]},{"1751564":[34,109,143,36,159,145,157,150,157,147,154,152,159,145,152,150,157,150,38,157,239,61,237,1,12,201,36,154,24,162,239,89,237,1,12,201,36,157,26,162,239,108,237,1,24,201,36,162,12,157,24,201,36,162,12,154,239,130,237,1,24,201,36,162,14,157,72,109,171,48,161,24,171,72,169,166,166,48,166,24,164,72,162,48,200,224,22,24,201,239,149,237,1,48,173,24,125,183,72,109,181,178,178,239,52,237,1,48,200,16,125,174,72,109,174,48,173,24,125,176,72,109,174,169,48,167,24,166,48,167,24,125,169,72,109,166,48,200,24,125,174]},{"1751706":[36,109,143,159,143,159,142,157,142,157,152,159,145,152,150,157,148,157,239,163,237,1,239,185,237,2,239,89,237,1,12,201,36,157,24,160,239,192,237,1,24,201,36,162,12,159,239,208,237,2,239,130,237,1,24,201,36,160,12,157,239,215,237,1,48,173,24,125,176,72,109,174,169,48,167,24,166,48,167,24,125,169,72,109,166,48,200,16,125,174,72,109,174,48,173,24,125,176,48,109,174,24,125,169,72,109,181,179,239,52,237,1,200]},{"1751820":[36,109,143,159,143,159,142,157,142,157,152,159,145,152,150,157,150,166,239,163,237,1,239,185,237,2,239,89,237,1,12,201,36,157,24,162,239,192,237,1,24,201,36,162,12,159,239,208,237,2,239,130,237,1,24,201,36,162,12,157,239,215,237,1,48,173,24,125,176,48,109,174,24,125,169,72,109,181,179,239,52,237,1,64,200,250,24,229,180,231,21,245,255]},{"1751915":[247,2,30,2,248,30,10,10,225,15,237,200,224,10,227,30,20,20,72,201,201,239,229,237,1]},{"1751941":[225,5,237,200,224,9,227,30,20,20,34,109,150,36,166,147,162,152,169,145,38,167,239,234,236,1,239,252,236,1,239,15,237,1,239,33,237,1,224,22,237,200,227,20,20,20,72,201,201,239,229,237,1,239,236,237,1,72,201,201,48,201,16,125,169,225,15,237,200,224,10,227,30,20,20,72,201,239,229,237,1]},{"1752023":[225,5,237,200,224,9,227,30,20,20,34,109,147,36,162,152,169,145,38,167,225,13,224,9,237,180,227,30,20,20,10,201,36,125,154,24,159,239,247,237,1,225,11,224,9,237,180,227,30,20,20,22,201,36,125,159,12,154,239,4,238,1,224,22,237,200,227,20,20,20,72,201,239,229,237,1,239,236,237,1,72,201,48,201,16,125,169]},{"1752111":[48,109,174,24,125,169,48,109,178,24,125,174]},{"1752124":[225,13,224,9,237,180,227,30,20,20,10,201,36,125,157,24,162]},{"1752142":[12,201,36,154,24,159,12,201,36,159,24,162,12,201,36,157,26,164]},{"1752161":[225,11,224,9,237,180,227,30,20,20,22,201,36,125,162,12,157]},{"1752179":[24,201,36,159,12,154,24,201,36,162,12,159,24,201,36,164,14,161]},{"1752198":[48,178,24,125,176,72,109,174]},{"1752207":[224,9,237,180,227,30,20,20,10,201,36,125,150,24,162,12,201,36,152,24,161,12,201,36,157,24,162]},{"1752235":[12,201,36,159,24,162,12,201,36,152,24,161,12,201,36,157,24,162]},{"1752254":[224,9,237,180,227,30,20,20,22,201,36,125,162,12,159,24,201,36,161,12,157]},{"1752276":[24,201,36,162,12,159,24,201,36,161,12,152,24,201,36,162,12,157]},{"1752295":[224,10,237,160,227,30,20,20,8,201,72,109,183]},{"1752309":[224,9,237,180,227,30,20,20,12,201,36,125,150,24,162,12,201,36,150,24,162]},{"1752331":[12,201,36,157,24,162]},{"1752338":[224,9,237,180,227,30,20,20,24,201,36,125,162,12,159]},{"1752354":[24,201,36,162,12,157]},{"1752361":[224,10,237,160,227,30,20,20,8,201,72,109,174]},{"1752375":[201,48,201,24,125,169]},{"1752382":[224,10,237,160,227,30,20,20,80,201]},{"1752393":[12,201,36,159,24,162,12,201,36,157,26,164]},{"1752406":[24,201,36,162,12,159,24,201,36,164,14,161]},{"1752419":[21,238]},{"1752423":[37,238,91,238,116,238,176,238,204,238,10,239,62,239]},{"1752439":[250,25,229,130,230,70,160,245,255]},{"1752450":[247,2,80,2,248,96,100,100,231,25,237,200,227]},{"1752464":[10,100,224,6,225,20,226,192]},{"1752473":[96,125,152,249,48,24,169,230,96,100,248,96]},{"1752487":[200,249,24,24,152]},{"1752493":[237,200,227]},{"1752497":[10,100,224,6,225]},{"1752503":[226,192,20,96,125,147,249,50,24,164,200,249,24,24,147,237,200,224,15,225,20,226,96]},{"1752527":[6,125,190,18,123,190,6,125,190,18,123,190,6,125,190,18,123,190,6,125,190,18,123,190,226,96,20,6,125,190,18,123,190,6,125,190,18,123,190,6,125,190,18,123,190,6,125,190,18,123,190,237,250,224,10,225]},{"1752584":[48,125,151,249]},{"1752589":[48,154,200,249]},{"1752594":[48,151,151,249]},{"1752599":[48,154,200,249]},{"1752604":[48,151,237,200,224,1,225,15,24,125,147,249]},{"1752617":[24,152,225,5,149,249]},{"1752624":[32,176,225,15,151,249]},{"1752631":[24,188,225,5,153,249]},{"1752638":[24,195,225,15,152,249]},{"1752645":[24,188,225,5,150,249]},{"1752652":[24,183,225,15,148,249]},{"1752659":[24,171,225,5,146,249]},{"1752666":[24,159,237,200,224,15,225]},{"1752674":[226,48,20,6,125,180,185,171,190,188,192,190,188,226,48]},{"1752690":[185,183,187,185,183,178,176,173,226,48,20,171,168,173,168,166,166,164,161,226,48]},{"1752712":[159,156,154,158,155,151,150,148,237,200,224,9,24,125,171,249]},{"1752729":[24,152,171,249]},{"1752734":[32,152,171,249]},{"1752739":[24,152,171,249]},{"1752744":[24,152,171,249]},{"1752749":[24,152,171,249]},{"1752754":[24,152,171,249]},{"1752759":[24,152,171,249]},{"1752764":[24,152]},{"1752767":[195,239,131,239,211,239,147,239,163,239,179,239,227,239,243,239,255]},{"1752785":[111,239]},{"1752789":[3,240,16,240,24,240,57,240,61,240,65,240,73,240,95,240,105,240,134,240,142,240,170,240,250,240,34,241]},{"1752819":[62,241,83,241,99,241,107,241,139,241,247,241,61,242,76,242,110,242,126,242,156,242,164,242,217,242,250,242]},{"1752851":[47,243,78,243,116,243,124,243,140,243,144,243,148,243]},{"1752869":[167,243,181,243,189,243,222,243,226,243,230,243,239,243,17,244,29,244,56,244,64,244,117,244,170,244,223,244]},{"1752899":[243,244,16,245,34,245,42,245,58,245,62,245,66,245]},{"1752917":[239,86,245,1,239,104,245,1,84,201,12,164]},{"1752930":[224,20,237,160,239,127,245,6,239,152,245,1,24,61,145,145,145,12,201,145,24,148,148,148,12,201,12,93,148,24,61,150,150,150,12,201,150,239,167,245,1,239,185,245,1,239,22,246,1,239,115,246,1,84,201,12,159,224,9,237,120,225,8,96,201,201,201,201,84,201,6,109,176,183,84,178,6,174,171,239,155,246,1,239,104,245,1,88,201,224,10,237,200,225,14,227,24,28,24,72,109,174,12,171,174,239,175,246,1,6,169,167,72,166,6,171,173]},{"1753048":[224,20,237,160,239,189,246,4,239,213,246,1,12,148,24,148,12,148,148,148,8,148,148,148,12,150,24,150,12,150,150,150,8,150,150,150,224,17,237,200,225,7,12,201,12,61,162,162,6,59,162,6,91,162,12,162,162,8,162,162,162,12,201,12,61,164,164,6,59,164,6,61,164,12,164,164,8,164,164,164,12,201,164,164,6,59,164,6,91,164,12,164,164,8,164,164,164,12,201,12,61,166,166,6,59,166,6,61,166,12,166,166,8,166,166,166,239,243,246,1,12,201,160,160,6,59,160,6,91,160,12,160,160,8,160,160,160,12,201,12,61,157,157,6,59,157,6,61,157,12,157,157,8,157,157,157,224,22,237,180,225,8,227,24,28,24,72,109,174,12,171,174,239,175,246,1,6,169,167,72,166,6,171,173,2,201,6,109,173,72,174,12,171,174,239,175,246,1,6,169,167,72,166,4,171,224,10,237,200,225,14,227,24,28,24,239,32,247,1,201]},{"1753269":[224,20,237,160,239,189,246,6,239,213,246,1,12,144,24,144,12,144,144,144,8,144,144,144,12,142,24,142,12,142,142,142,8,142,142,142,239,56,247,2,224,17,237,200,225,7,12,201,12,61,162,162,6,59,162,6,91,162,12,162,162,8,162,162,162,12,201,12,61,164,164,6,59,164,6,61,164,12,164,164,8,164,164,164,12,201,165,165,6,59,165,6,91,165,12,165,165,8,165,165,165,12,201,12,61,161,161,6,59,161,6,61,161,12,161,161,8,161,161,161,12,201,162,162,6,59,162,6,61,162,12,164,36,164,12,201,166,166,6,59,166,6,61,166,12,164,36,164,239,243,246,1,12,201,159,159,6,59,159,6,91,159,12,159,159,8,159,159,159,12,201,12,61,158,158,6,59,158,6,61,158,12,158,158,8,158,158,158,12,201,166,166,6,59,166,6,91,166,12,168,36,168,12,201,12,61,169,169,6,59,169,6,91,169,12,168,36,168,224,22,237,160,225,8,227,24,28,24,239,32,247,1,201,224,18,237,140,225,10,227,24,28,24,72,109,171,12,167,171,6,169,171,84,173,72,171,12,170,171,6,170,169,84,170,96,166,201,2,201,6,109,173,72,174,12,171,174,239,69,247,1,88,201,224,10,237,200,225,14,227,24,28,24,6,109,176,171,169,54,171,24,176,239,87,247,1,6,173,167,166,78,167]},{"1753582":[224,20,237,160,239,102,247,4,224,24,237,200,24,125,148,12,201,24,148,12,148,8,148,148,148,24,147,12,201,24,147,12,147,8,147,147,147,24,146,12,201,24,146,12,146,8,146,146,146,24,145,12,201,24,145,12,145,8,145,145,145,224,18,237,160,24,61,167,12,201,24,167,12,167,8,167,167,167,24,166,12,201,24,166,12,166,8,166,166,166,239,121,247,2,224,18,237,160,24,61,164,12,201,24,164,12,164,8,164,164,164,24,162,12,201,24,162,12,162,8,162,162,162,24,161,12,201,24,161,12,161,8,161,161,161,24,160,12,201,24,160,12,160,8,160,160,160,224,10,237,160,225,12,227,24,28,24,5,201,6,109,176,171,169,54,171,24,176,239,87,247,1,6,173,167,166,73,167,250,25,229,200,231,28,245,255]},{"1753770":[247,2,30,2,248,30,50,50,224,10,237,200,227,24,28,24,225,14,96,201,201,201,84,201,12,125,164]},{"1753798":[224,20,237,160,239,127,245,4,239,152,245,1,24,61,140,140,140,12,201,140,239,167,245,1,239,134,247,1,239,199,247,1,224,10,237,180,225,12,227,24,28,24,96,201,201,201,84,201,12,125,159,239,86,245,1,239,104,245,1,84,201,6,171,173]},{"1753863":[224,20,237,160,239,127,245,6,239,152,245,1,24,61,145,145,145,12,201,145,24,148,148,148,12,201,12,93,148,24,61,150,150,150,12,201,150,239,167,245,1,239,185,245,1,239,22,246,1,239,115,246,1,84,201,6,167,169,224,9,237,120,225,8,48,109,176,183,84,181,6,179,178,96,179,90,178,6,178,72,176,6,181,179,178,176,238,70,90,96,107,178,239,155,246,1,239,104,245,1,84,201,4,171,224,10,237,200,225,14,227,24,28,24,6,109,171,166,165,54,166,24,171,239,8,248,1,48,200,201]},{"1753994":[224,20,237,160,239,102,247,4,224,24,237,200,24,125,144,12,201,24,144,12,144,8,144,144,144,24,143,12,201,24,143,12,143,8,143,143,143,24,142,12,201,24,142,12,142,8,142,142,142,24,147,12,201,24,147,12,147,8,147,147,147,224,18,237,160,24,61,163,12,201,24,163,12,163,8,163,163,163,24,162,12,201,24,162,12,162,8,162,162,162,24,164,12,201,24,164,12,164,8,164,164,164,24,164,12,201,24,164,12,163,8,163,163,163,224,18,237,160,24,61,160,12,201,24,160,12,160,8,160,160,160,24,159,12,201,24,159,12,159,8,159,159,159,24,161,12,201,24,161,12,161,8,161,161,161,24,159,12,201,24,159,12,157,8,157,157,157,224,18,237,160,225,10,227,24,28,24,96,201,72,201,24,109,171,96,170,169,224,10,237,200,225,12,227,24,28,24,5,201,6,109,171,166,165,54,166,24,171,239,8,248,1,48,200,43,201,224,10,237,200,227,24,28,24,96,201,201,201,84,201,12,125,164]},{"1754228":[224,20,237,160,239,127,245,4,239,152,245,1,24,61,140,140,140,12,201,140,239,167,245,1,239,134,247,1,239,199,247,1,224,10,237,180,225,12,227,24,28,24,96,201,201,201,84,201,12,125,159]},{"1754280":[224,10,237,200,225,14,227,24,28,24,60,109,171,12,164,171,176]},{"1754298":[6,173,174,78,173,6,169,24,171,60,164,12,169,6,166,167,78,166,6,162,96,164]},{"1754321":[12,61,169,12,55,169,12,61,169,12,55,169,12,61,169,12,55,169,6,57,169,169,169,169]},{"1754346":[224,24,237,200,24,61,140,140,140,12,201,12,93,140]},{"1754361":[24,140,140,140,12,201,12,93,140,24,61,140,140,140,12,201,140]},{"1754379":[224,17,237,200,225,7,12,201,12,61,159,159,6,59,159,159,12,159,36,159,12,201,12,61,161,161,6,59,161,6,61,161,12,161,36,161,12,201,159,159,6,59,159,159,12,159,36,159,12,201,12,61,157,157,6,59,157,6,61,157,12,157,36,157,12,201,159,159,6,59,159,159,12,159,36,161,12,201,12,61,162,162,6,59,162,6,61,162,12,162,36,164]},{"1754472":[224,17,237,200,225,5,12,201,12,61,155,155,6,59,155,155,12,155,36,155,12,201,12,61,157,157,6,59,157,6,61,157,12,157,36,157,12,201,155,155,6,59,155,155,12,155,36,155,12,201,12,61,154,154,6,59,154,6,61,154,12,154,36,154,12,201,155,155,6,59,155,155,12,155,36,157,12,201,12,61,159,159,6,59,159,6,61,159,12,159,36,161]},{"1754565":[224,10,237,180,225,12,227,24,28,24,60,109,167,12,159,167,171,6,169,171,78,169,6,164,24,167,60,160,12,164,6,162,164,78,162,6,157,96,159]},{"1754605":[224,10,237,160,225,12,227,24,28,24,8,201,60,109,171,12,164,171,176]},{"1754625":[6,173,171,72,169,6,167,169,72,171,12,164,171]},{"1754639":[12,61,169,12,55,169,12,61,169,12,55,169,12,61,169,12,55,169,8,57,169,169,169]},{"1754663":[224,24,237,200,12,61,143,24,143,12,143,143,143,8,143,143,143,12,145,24,145,12,145,145,145,8,145,145,145]},{"1754693":[224,17,237,200,225,5,12,201,12,61,159,159,6,59,159,6,91,159,12,159,159,8,159,159,159,12,201,12,61,161,161,6,59,161,6,61,161,12,161,161,8,161,161,161]},{"1754738":[72,109,174,12,171,174,6,173,174,84,176,72,174,12,173,174,6,173,172,84,173,96,171]},{"1754762":[12,147,24,147,12,147,147,147,8,147,147,147]},{"1754775":[6,173,174,84,176,72,174,12,173,174,6,173,172,84,173,96,171]},{"1754793":[6,174,171,169,78,171,6,174,169,167,54,169,24,174]},{"1754808":[24,61,169,6,55,169,169,169,169,12,61,169,169,8,57,169,169,169]},{"1754827":[24,164,12,201,24,164,12,164,8,164,164,164]},{"1754840":[224,17,237,200,225,7,12,201,12,61,159,159,6,59,159,159,12,159,36,161,12,201,12,61,162,162,6,59,162,6,61,162,12,162,36,164,12,201,159,159,6,59,159,159,12,159,36,161,12,201,12,61,162,162,6,59,162,6,61,162,12,162,36,164]},{"1754905":[224,17,237,200,225,5,12,201,12,61,155,155,6,59,155,155,12,155,36,157,12,201,12,61,159,159,6,59,159,6,61,159,12,159,36,161,12,201,155,155,6,59,155,155,12,155,36,157,12,201,12,61,159,159,6,59,159,6,61,159,12,159,36,161]},{"1754970":[6,176,171,169,54,171,24,176,96,178]},{"1754981":[23,248]},{"1754985":[39,248,87,248,120,248,153,248,186,248,215,248]},{"1755001":[250,24,229,180,245,255,40,40,247,2,30,2,231,41,224,15,237,220,225,10,226,190,16,48,125,171,171,171,171,171,171,224,9,230,255,240,227,28,26,30,96,172,173,174,175,200,200]},{"1755049":[224,15,237,220,225,10,226,190,13,12,201,48,125,176,176,176,176,176,36,176,224,9,227,26,28,29,96,176,177,178,179,200,200,224,15,237,220,225,10,226,190,7,24,201,48,125,178,178,178,178,178,24,178,224,9,227,26,27,28,96,179,180,181,182,200,200,224,15,237,220,225,10,226,190,4,36,201,48,125,183,183,183,183,183,12,183,224,9,227,28,26,30,96,184,185,186,187,200,200,224,9,237,220,225,10,226,190,2,227,24,28,26,48,125,160,167,171,176,96,183,224,9,162,161,160,159,200,200,224,9,237,180,225,10,227,25,26,28,8,201,48,125,160,167,171,176,88,183,8,201,96,184,185,186,187,200,88,200]},{"1755208":[2,249,18,249,34,249,255]},{"1755216":[248,248]},{"1755220":[50,249,78,249,91,249,104,249,117,249,130,249]},{"1755236":[141,249,152,249,160,249,179,249,189,249,201,249]},{"1755252":[211,249,222,249,230,249,249,249,3,250,15,250]},{"1755268":[250,24,229,180,245,255,20,20,247,2,10,2,231,37,224,11,237,200,227,26,24,20,54,201,42,109,192]},{"1755296":[237,200,224,11,227,26,24,20,48,201,48,109,186,237,200,224,11,227,26,24,20,30,201,66,109,183,237,200,224,11,227,26,24,20,24,201,72,109,180,237,200,224,11,227,26,24,20,6,201,90,109,177,237,200,224,11,227,26,24,20,96,109,171,231,45,239,26,250,2,239,47,250,2]},{"1755370":[239,68,250,2,239,89,250,2,224,17,36,91,154,154,12,154,154,36,154,154,12,154,154,239,110,250,2,224,17,239,117,250,1,239,131,250,2,224,14,237,120,239,26,250,2,239,47,250,2,224,2,239,117,250,1,239,131,250,2,231,45,239,138,250,2,239,159,250,2]},{"1755440":[239,180,250,2,239,201,250,2,224,17,36,91,156,156,12,156,156,36,156,156,12,156,156,239,222,250,2,224,17,239,229,250,1,239,243,250,2,224,14,237,120,239,138,250,2,239,159,250,2,224,2,239,229,250,1,239,243,250,2]},{"1755500":[12,93,167,12,89,166,167,12,93,166,12,89,167,166,12,93,167,12,89,166]},{"1755521":[12,93,166,12,89,165,166,12,93,165,12,89,166,165,12,93,166,12,89,165]},{"1755542":[12,93,162,12,89,162,162,12,93,162,12,89,162,162,12,93,162,12,89,162]},{"1755563":[12,93,161,12,89,161,161,12,93,161,12,89,161,161,12,93,161,12,89,161]},{"1755584":[36,153,153,12,153,153]},{"1755591":[36,91,147,147,12,147,147,36,147,147,12,147,147]},{"1755605":[36,146,146,12,146,146]},{"1755612":[12,93,169,12,89,168,169,12,93,168,12,89,169,168,12,93,169,12,89,168]},{"1755633":[12,93,168,12,89,167,168,12,93,167,12,89,168,167,12,93,168,12,89,167]},{"1755654":[12,93,164,12,89,164,164,12,93,164,12,89,164,164,12,93,164,12,89,164]},{"1755675":[12,93,163,12,89,163,163,12,93,163,12,89,163,163,12,93,163,12,89,163]},{"1755696":[36,155,155,12,155,155]},{"1755703":[36,91,149,149,12,149,149,36,149,149,12,149,149]},{"1755717":[36,148,148,12,148,148]},{"1755724":[254,250]},{"1755728":[14,251,63,251,100,251,169,251,232,251,43,252,154,252,7,253,250,25,229,200,245,255]},{"1755752":[247,2,20,2,248,40,20,20,231,43,224,11,237,200,227,24,20,26,225,12,24,201,12,77,179,184,48,109,186,239,39,253,2,239,57,253,1,96,200,201]},{"1755793":[224,11,237,200,227,24,20,26,225,14,24,201,12,77,162,167,48,109,169,239,69,253,2,200,172,36,172,6,77,171,169,48,109,172,96,200,201,224,11,237,200,227,24,20,26,225,10,24,201,12,77,169,174,48,109,176,24,200,12,77,174,169,174,176,174,169,174,169,174,201,48,109,176,24,200,12,77,174,169,174,176,174,169,174,169,174,201,48,45,176,200,48,109,179,36,179,6,77,178,176,48,109,179,96,200,201,224,17,237,220,227,22,28,26,225,4,72,109,148,6,148,148,148,148,48,148,12,61,148,201,148,201,72,109,151,6,151,151,151,151,48,151,12,61,151,201,151,201,72,109,153,6,153,153,153,153,48,153,12,61,153,201,153,201,96,109,148,200,201,224,17,237,220,227,22,28,26,225,6,72,109,155,6,155,155,155,155,48,155,12,61,155,201,155,201,72,109,158,6,158,158,158,158,48,158,12,61,158,201,158,201,72,109,160,6,160,160,160,160,48,160,12,61,160,201,160,201,96,109,155,200,24,201,201,201,201,224,2,237,200,96,125,137,239,87,253,1,96,125,137,239,87,253,1,96,125,137,224,19,237,160,3,127,167,6,126,167,6,121,167,167,6,122,167,167,6,123,167,167,6,124,167,167,6,125,167,167,6,126,167,167,6,127,167,9,167,3,167,6,126,167,6,121,167,167,6,122,167,167,6,123,167,167,6,124,167,167,6,125,167,167,6,126,167,167,6,127,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,99,167,224,12,237,220,96,125,149,239,131,253,1,96,125,149,239,131,253,1,96,125,149,224,19,237,160,6,127,167,6,126,167,6,121,167,167,6,122,167,167,6,123,167,167,6,124,167,167,6,125,167,167,6,126,167,167,6,127,167,167,167,6,126,167,6,121,167,167,6,122,167,167,6,123,167,167,6,124,167,167,6,125,167,167,6,126,167,167,6,127,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,96,167,224,11,237,160,227,24,20,26,225,8,30,201,12,77,179,184,48,109,186,239,39,253,2,239,57,253,1,90,200,96,201]},{"1756281":[24,200,12,77,184,179,184,186,184,179,184,179,184,201,48,109,186]},{"1756299":[200,189,36,189,6,77,188,186,48,109,188]},{"1756311":[24,200,12,77,167,162,167,169,167,162,167,162,167,201,48,109,169]},{"1756329":[224,19,237,160,3,127,167,6,126,167,6,121,167,167,6,122,167,167,6,123,167,167,6,124,167,167,6,125,167,167,6,126,167,167,6,127,167,9,167,224,2,237,200]},{"1756373":[224,19,237,160,6,127,167,6,126,167,6,121,167,167,6,122,167,167,6,123,167,167,6,124,167,167,6,125,167,167,6,126,167,167,6,127,167,167,224,12,237,220]},{"1756416":[136,6]},{"1756419":[43,84,43,20,43,36,43,20,43,36,43,52,43,68,43,255]},{"1756436":[2,43]},{"1756440":[100,43,149,43,171,43,211,43,238,43,30,44]},{"1756456":[63,44,108,44,124,44,132,44,155,44,199,44]},{"1756472":[226,44,12,45,40,45,52,45,91,45]},{"1756488":[132,45,171,45,189,45,212,45,4,46,55,46]},{"1756504":[69,46,100,46,108,46,128,46,142,46]},{"1756520":[224,11,237,200,225,10,227,26,26,16,32,93,176,8,77,171,179,32,93,176,8,77,171,179,24,45,176,48,109,171,8,79,176,179,183,48,111,186,32,109,184,8,76,182,184,96,124,183]},{"1756569":[224,2,237,180,225,10,239,196,46,1,141,201,201,141,140,201,16,201,8,140,24,143,239,211,46,1,24,61,169,169,169,8,169,8,59,169,8,61,169,24,169,169,169,12,59,169,6,169,169,24,61,169,169,169,8,169,8,59,169,8,61,169,224,17,237,200,239,227,46,1,24,141,141,141,12,141,6,93,141,141,24,61,140,140,140,8,143,143,143,224,11,237,160,225,13,227,28,26,16,32,93,167,8,77,164,171,32,93,167,8,77,164,171,24,45,167,48,109,164,8,79,167,171,176,48,111,179,32,109,177,8,76,175,177,96,124,176,224,17,237,180,225,8,239,248,46,1,24,160,160,160,12,59,160,6,91,160,160,24,61,159,159,159,8,59,162,8,61,162,162,32,93,176,8,77,171,179,32,93,176,8,77,171,179,24,45,176,48,109,171,8,77,171,176,179,32,125,183,8,77,182,184,12,61,183,179,8,77,175,171,179,96,125,176]},{"1756784":[239,196,46,1,136,201,201,139,140,201,16,201,8,140,24,143,239,17,47,1,239,36,47,1,239,227,46,1,24,136,136,136,12,139,6,93,139,139,24,61,140,140,140,8,143,143,143,32,93,167,8,77,164,171,32,93,167,8,77,164,171,24,45,167,48,109,164,8,79,164,167,171,32,111,176,8,77,175,177,12,61,176,171,8,77,166,163,169,96,125,167,239,248,46,1,24,164,164,164,12,59,166,6,91,166,166,24,61,159,159,159,8,59,162,8,61,162,162,224,10,237,200,225,18,32,109,176,8,176,176,24,176,12,171,176,32,174,8,172,171,48,172,32,174,8,174,174,24,174,12,169,174,32,172,8,171,170,48,171]},{"1756944":[224,10,237,180,227,24,24,18,225,15,48,125,168,24,164,168,80,169,8,168,167,48,166,164,72,162,24,163,224,20,237,200,239,17,47,1,239,36,47,1,224,17,237,200,24,61,144,144,144,12,144,6,144,144,24,145,145,145,8,145,145,145,24,138,138,138,12,138,6,138,138,24,143,143,143,8,143,143,143,224,17,225,8,237,180,24,61,159,159,159,12,159,6,159,159,24,160,160,160,8,160,160,160,24,157,157,157,12,157,6,157,157,24,159,159,159,8,159,159,159,32,109,169,8,169,169,24,169,12,171,12,61,172,32,109,171,8,169,168,48,169,32,171,8,170,172,12,171,167,8,163,159,167,96,164,201,201,201]},{"1757103":[84,125,164,12,165,80,166,8,165,164,48,163,159,96,159,201,201,201,239,17,47,1,239,54,47,2,24,169,169,169,8,59,169,8,61,169,169,239,64,47,1,24,61,136,136,136,12,136,6,136,136,24,142,142,142,8,142,142,142,24,147,147,147,12,147,6,147,147,24,140,140,140,12,143,6,143,143,24,140,140,140,8,143,143,143,239,87,47,1,24,61,155,155,155,12,155,6,155,155,24,157,157,157,8,157,157,157,24,157,157,157,12,157,6,157,157,24,159,159,159,12,162,6,162,162,24,159,159,159,8,59,162,8,61,162,162,239,107,47,1,224,2,237,180,225,10,96,201,201,201,239,131,47,1,250,25,229,170,231,28,245,255]},{"1757267":[247,2,30,2,248,30,50,50,224,17,237,200,239,227,46,1,239,87,47,1]},{"1757288":[224,2,237,180,239,131,47,1,239,211,46,1,24,61,169,169,169,8,59,169,8,61,169,169,239,64,47,1,224,17,237,200,225,5,239,248,46,1,239,107,47,1,224,17,237,200,225,8,24,61,155,155,155,12,59,158,6,91,158,158,24,61,155,155,155,8,59,158,8,61,158,158,24,155,155,155,12,59,158,6,91,158,158,24,61,155,155,155,8,59,158,8,61,158,158]},{"1757384":[24,125,140,201,201,143,140,201,16,201,8,140,24,143]},{"1757399":[224,20,237,200,24,61,169,169,169,12,59,169,6,169,169]},{"1757415":[24,61,140,140,140,12,143,6,93,143,143,24,61,140,140,140,8,143,143,143]},{"1757436":[24,61,159,159,159,12,59,162,6,91,162,162,24,61,159,159,159,8,59,162,8,61,162,162]},{"1757461":[24,61,169,169,169,12,169,6,169,169,24,169,169,169,8,169,169,169]},{"1757480":[24,169,169,169,12,169,6,169,169,24,169,169,169,8,169,169,169]},{"1757498":[24,169,169,169,12,169,6,169,169]},{"1757508":[24,169,169,169,12,59,169,6,169,169,24,61,169,169,169,8,59,169,8,61,169,169]},{"1757531":[24,140,140,140,12,143,6,93,143,143,24,61,140,140,140,8,143,143,143]},{"1757551":[24,159,159,159,12,59,162,6,91,162,162,24,61,159,159,159,8,59,162,8,61,162,162]},{"1757575":[24,125,140,140,140,8,143,143,143,24,140,140,16,140,8,140,24,143,140,140,140,8,143,143,143,24,140,140,16,140,8,140,24,143]},{"1757610":[234,47,186,47,186,47,218,47,218,47,202,47,202,47,255]},{"1757626":[168,47]},{"1757630":[250,47,3,48,25,48,33,48]},{"1757646":[56,48,65,48,94,48,102,48,131,48]},{"1757662":[160,48,169,48,191,48,199,48]},{"1757678":[222,48,1,49,15,49,31,49,45,49]},{"1757694":[224,22,237,250,239,60,49,1]},{"1757703":[224,24,237,200,12,93,148,160,148,160,146,158,146,158,148,160,148,160,146,158,146,158,224,10,237,200,239,60,49,1,224,24,237,200,12,201,12,93,155,201,155,201,155,201,155,201,155,201,155,201,155,201,155,224,24,237,250,239,80,49,1]},{"1757765":[224,24,237,200,24,93,148,148,36,146,12,148,24,200,148,48,146,24,144,144,36,142,12,144,24,200,144,48,142,224,18,237,200,239,80,49,1,224,24,237,200,24,93,160,160,36,158,12,160,24,200,160,48,158,24,156,156,36,154,12,156,24,200,156,48,154,224,24,237,200,24,93,155,155,36,153,12,155,24,200,155,48,153,24,151,151,36,149,12,151,24,200,151,48,149,224,22,237,250,239,116,49,1]},{"1757869":[224,24,237,200,12,93,144,156,144,156,142,154,142,154,144,156,144,156,142,154,142,154,224,10,237,200,239,116,49,1,224,24,237,200,12,201,12,93,151,201,151,201,151,201,151,201,151,201,151,201,151,201,151,250,25,229,180,231,39,245,255]},{"1757932":[247,2,30,2,248,40,50,50,224,22,237,250,12,93,176,174,176,174,176,174,181,179,48,200]},{"1757957":[224,24,237,200,24,93,148,148,146,12,146,146,48,200,224,18,237,200,12,93,176,174,176,174,176,174,181,179,48,200,224,24,237,200,24,93,160,160,158,12,158,158,48,200,224,24,237,200,24,93,155,155,153,12,153,153,48,200]},{"1758016":[12,93,169,176,181,169,174,179,169,176,181,169,174,179,24,201,12,176,201]},{"1758036":[12,93,176,174,176,174,170,168,201,176,201,174,176,174,170,168,24,201,12,174,172,174,172,168,166,201,174,201,172,174,172,168,166,24,201]},{"1758072":[12,93,168,172,178,166,170,176,168,172,178,166,170,176,24,201,12,174,201]},{"1758095":[8,119]},{"1758101":[1,255]},{"1758105":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1802304":[85,42,191,64,95,160,255]},{"1802312":[119,136,255]},{"1802316":[255]},{"1802318":[255]},{"1802368":[255]},{"1802370":[255]},{"1802372":[255]},{"1802374":[255]},{"1802376":[255]},{"1802378":[253,2,255]},{"1802382":[213,42]},{"1802394":[2]},{"1802398":[42]},{"1802432":[255,33,253,3,250,5,243,14,251,5,222,47,244,95,255,255]},{"1802450":[2]},{"1802452":[5]},{"1802454":[12]},{"1802456":[4]},{"1802458":[33]},{"1802460":[11]},{"1802496":[123,21,118,47,241,95,59,255,144,127,138,255,5,255,170,255,196]},{"1802514":[73,192,14]},{"1802518":[204]},{"1802520":[111]},{"1802522":[127]},{"1802524":[255]},{"1802526":[255]},{"1802530":[64]},{"1802560":[211,127,127,255,133,255,171,255,81,255,251,255,95,255,255,255,45]},{"1802578":[162]},{"1802580":[127]},{"1802582":[255]},{"1802584":[255]},{"1802586":[191]},{"1802588":[255]},{"1802590":[255]},{"1802624":[53,255,251,255,93,255,255,255,127,255,255,253,255,255,255,213,223]},{"1802642":[191]},{"1802644":[255]},{"1802646":[255]},{"1802648":[255]},{"1802650":[253,2,255]},{"1802654":[213,42]},{"1802688":[191,191,183,183,243,251,235,234,227,227,245,209,255,250,247,80,191,64,183,72,251,12,230,25,235,20,209,46,250,5,80,175]},{"1802727":[8]},{"1802752":[127,255,221,213,223,155,61,101,206,170,197,68,171,162,222]},{"1802768":[255]},{"1802770":[213,42,155,100,37,250,138,117,68,187,162,93]},{"1802783":[255]},{"1802790":[32]},{"1802816":[255,255,85,85,170,170,120,16,170,168,68]},{"1802828":[170]},{"1802830":[241]},{"1802832":[255]},{"1802834":[85,170,170,85,16,239,168,87]},{"1802843":[255]},{"1802845":[255]},{"1802847":[255]},{"1802880":[206,170,201]},{"1802884":[166,162,40]},{"1802888":[162,128,70]},{"1802892":[33]},{"1802894":[12,2,138,117]},{"1802899":[255,162,93]},{"1802903":[255,128,127]},{"1802907":[255]},{"1802909":[255]},{"1802911":[255]},{"1802944":[139,10,183,4,163,34,89,2,1,6,4,46,65,24,129,54,10,245,4,251,34,221,2,255]},{"1802969":[255,36,243,28,255,44,247]},{"1802983":[8]},{"1802986":[8,4]},{"1802989":[12]},{"1802991":[128]},{"1803008":[172,161,133,48,223]},{"1803014":[49]},{"1803016":[84]},{"1803018":[19,168,21,64,174,64,153,127,50,245]},{"1803029":[255,136,119]},{"1803033":[255,40,255]},{"1803037":[255]},{"1803039":[255]},{"1803042":[26]},{"1803046":[136]},{"1803051":[2]},{"1803055":[170]},{"1803072":[85]},{"1803074":[8,128,68]},{"1803078":[36,2,84,1,232,18,65,12,186,68]},{"1803089":[255,163,220]},{"1803093":[254,138,119,1,255,2,255,52,207]},{"1803103":[255]},{"1803106":[34]},{"1803109":[1,136,32]},{"1803115":[168]},{"1803117":[64]},{"1803119":[186]},{"1803136":[215,129,196,128,144,193,132,1,32,21,209,42,108,17,171,68,129,127,170,213,197,123,43,213,21,255,42,255,17,255,4,255]},{"1803170":[170]},{"1803172":[4,128,42,128]},{"1803179":[128]},{"1803181":[68]},{"1803183":[170]},{"1803200":[82,17,68,149,1,196,128,36]},{"1803209":[5,80,139,132,81,170,85,16,248,177,213,196,239,166,117,21,239,171,223,81,255,85,255,7]},{"1803234":[40,2,4,24,2,8,16]},{"1803242":[32]},{"1803245":[4]},{"1803247":[170]},{"1803264":[85,17,97,81,144,1,32]},{"1803273":[84,160,93,248,21,226,53]},{"1803281":[238,155,85,5,155,138,117,85,254,223,125,213,63,53,247,17]},{"1803298":[138,32,36,80,138,32,1]},{"1803306":[2,32,16,40,56,202]},{"1803328":[125,86,84,1,42,17,4,69,1,70,2,117,102,217,232,23,71,238,171,85,85,187,239,85,86,239,253,119,249,223,119,159,16]},{"1803362":[170]},{"1803364":[68]},{"1803366":[170]},{"1803368":[16,1,136,2,64,6]},{"1803375":[136]},{"1803392":[254,87,20,21,169,17,149,85]},{"1803401":[196,128,117,192,36,184,93,23,189,187,81,84,186,126,212,213,238,127,245,37,230,71,229,64]},{"1803426":[174]},{"1803428":[69]},{"1803430":[43,128,17]},{"1803434":[10,128,25,192,2,184]},{"1803456":[95,159,21,85,56,147,1,80,18,58,112,65,20,42,28,1,218,176,15,5,166,139,255,80,107,170,243,89,115,182,235,21,5]},{"1803490":[27,224,84,1,174]},{"1803496":[77,16,134,24,65,12,226,20]},{"1803520":[255,247,93,157,251,217,85,85,191,15,58,64,106,170,6,80,166,44,178,208,132,34,250,80,126,142,239,80,179,232,255,80,81]},{"1803554":[47]},{"1803556":[93,128,175]},{"1803560":[65]},{"1803562":[137,20,21,66,169]},{"1803584":[254,254,252,252,255,223,87,87,255,119,85,85,171,171,49,1,171,2,71,68,2,32,232,64]},{"1803609":[136,251,81,253,169,239,17,85]},{"1803618":[187]},{"1803620":[221]},{"1803622":[191]},{"1803624":[119]},{"1803626":[174]},{"1803628":[86]},{"1803630":[206,16]},{"1803648":[223,79,247,199,251,251,117,117,253,251,113,21,107,139,5,5,26,128,56]},{"1803668":[46,8,142,4,143,11,238,4,244,128,250]},{"1803680":[117]},{"1803682":[239]},{"1803684":[213]},{"1803686":[251]},{"1803688":[112]},{"1803690":[155,96,31,32,255]},{"1803712":[253,255,252,253,255,255,255,255,255,255,253,253,255,251,101,81,10]},{"1803730":[5,5,32]},{"1803736":[136]},{"1803738":[2]},{"1803740":[38,2,206,64,87]},{"1803746":[248,2,223]},{"1803750":[255]},{"1803752":[119]},{"1803754":[255]},{"1803756":[217,4,167,56]},{"1803776":[251,251,79,239,159,207,86,86,253,253,255,255,255,255,95,95,232,68,165,176,114,96,168,17]},{"1803801":[2]},{"1803806":[160]},{"1803808":[61]},{"1803810":[63,64,255]},{"1803814":[255]},{"1803816":[119]},{"1803818":[255]},{"1803820":[253]},{"1803822":[255]},{"1803840":[186,190,246,226,253,231,253,254,253,255,239,239,254,254,254,254,172,69,92,1,155,1,7,4,170]},{"1803867":[16,42,1]},{"1803871":[1,235]},{"1803874":[227,12,198]},{"1803878":[248,2,255]},{"1803882":[255]},{"1803884":[255]},{"1803886":[255]},{"1803904":[255,255,205,237,255,255,235,235,190,190,239,239,254,254,250,250,255]},{"1803922":[37,50,3]},{"1803926":[1,20,174,65,69,16,170,1,16,5,255]},{"1803938":[223]},{"1803940":[255]},{"1803942":[255]},{"1803944":[255]},{"1803946":[255]},{"1803948":[255]},{"1803950":[255]},{"1803968":[251,251,247,247,223,223,171,175,171,174,252,237,181,191,188,191,251,4,213,8,138,32,7,87,173,82,83]},{"1803996":[138,81,7,70,255]},{"1804002":[255]},{"1804004":[255]},{"1804006":[248]},{"1804008":[252]},{"1804010":[236,19,255]},{"1804014":[249]},{"1804032":[255,255,239,247,255,103,27,91,187,59,111,55,56,138,105,219,239]},{"1804050":[95]},{"1804052":[191]},{"1804054":[211,164,171,236,93,196,254,201,167,32,255]},{"1804066":[239,16,103,8,63,192,23,64,59,192,147,108,28,255]},{"1804096":[245,170,254,229,255,250,255,252,255,255,127,127,127,119,239,95,160,95,228,27,250,5,252,3,255]},{"1804122":[127,128,47,136,183,64,255]},{"1804130":[255]},{"1804132":[255]},{"1804134":[255]},{"1804136":[255]},{"1804138":[255]},{"1804140":[255]},{"1804142":[255,32]},{"1804160":[81,174,174,253,209,254,243,227,247,239,122,125,125,127,255,254]},{"1804177":[255,172,83,220,47,239,28,231,24,120,135,61,130,254,1,255]},{"1804194":[255]},{"1804196":[255]},{"1804198":[255]},{"1804200":[255]},{"1804202":[255]},{"1804204":[255]},{"1804206":[255]},{"1804224":[16,239,170,213,68,251,234,117,81,174,234,213,244,251,234,125]},{"1804241":[85,128,127,64,189,96,159]},{"1804249":[253,192,63,240,15,104,151,85]},{"1804258":[255]},{"1804260":[253]},{"1804262":[255]},{"1804264":[253]},{"1804266":[255]},{"1804268":[255]},{"1804270":[255]},{"1804288":[5,253,34,215,200,253,234,85]},{"1804297":[255,162,93,84,171,170,85,3,22]},{"1804307":[233,136,49,64,175]},{"1804313":[81]},{"1804315":[250]},{"1804317":[221]},{"1804319":[255,23]},{"1804322":[233,6,251,4,239]},{"1804328":[81]},{"1804330":[250]},{"1804332":[221]},{"1804334":[255]},{"1804352":[255]},{"1804354":[253,2,255]},{"1804358":[245,59,225,47,218,36,229,26,64,180]},{"1804370":[2]},{"1804374":[10]},{"1804376":[15,16,63,20,17,1,183,15]},{"1804394":[16]},{"1804396":[4,6,5,1]},{"1804412":[8]},{"1804414":[2]},{"1804416":[254,1,215,43,186,71,84,175,226,95,42,127,77,111,191,95,1]},{"1804434":[40]},{"1804436":[69]},{"1804438":[171]},{"1804440":[29]},{"1804442":[127,128,79,80,63]},{"1804460":[192]},{"1804462":[192]},{"1804476":[32]},{"1804480":[198,127,8,255,125,255,43,255,21,255,191,255,213,249,249,254,57]},{"1804498":[247]},{"1804500":[135]},{"1804502":[223]},{"1804504":[255]},{"1804506":[255]},{"1804508":[255]},{"1804510":[252,5]},{"1804526":[4,2]},{"1804544":[21,255,235,255,85,255,143,255,7,239,255,255,159,203,191,183,255]},{"1804562":[191]},{"1804564":[255]},{"1804566":[191,32,239,112,189,64,139,116,21,72]},{"1804584":[96]},{"1804587":[32]},{"1804598":[64]},{"1804602":[2]},{"1804606":[162]},{"1804608":[127,255,255,255,255,255,127,77,191,238,191,21,170,122,117]},{"1804624":[255]},{"1804626":[255]},{"1804628":[255]},{"1804630":[69,178,238,81,5,154,106,213]},{"1804639":[255]},{"1804649":[32,96]},{"1804653":[32]},{"1804662":[8]},{"1804668":[16]},{"1804672":[255,254,249,208,248,184,253,144,251,168,255]},{"1804684":[255]},{"1804686":[252,3,254,1,208,47,184,71,16,111,168,87]},{"1804699":[255]},{"1804701":[255]},{"1804703":[255]},{"1804726":[128]},{"1804734":[3]},{"1804736":[252,168,216,67,248,130,152,7,160,30,85,161,174,1,36,15,168,87,66,191,128,127,4,253,4,252,1,252]},{"1804765":[255,4,243]},{"1804774":[4,2,5,2]},{"1804779":[3]},{"1804782":[8,4]},{"1804792":[24]},{"1804794":[160]},{"1804796":[1]},{"1804798":[3]},{"1804800":[140,131,210,1,225]},{"1804806":[162,8,161]},{"1804810":[1,46]},{"1804813":[125]},{"1804815":[255,128,127]},{"1804819":[255]},{"1804821":[255]},{"1804823":[255]},{"1804825":[255]},{"1804827":[255]},{"1804829":[255]},{"1804831":[255]},{"1804835":[2]},{"1804858":[4]},{"1804864":[8]},{"1804866":[136,2,21,2,2,172,84,32,2,251,160,95]},{"1804879":[255]},{"1804881":[255]},{"1804883":[255,3,255]},{"1804887":[252,1,252]},{"1804891":[255]},{"1804893":[255]},{"1804895":[255]},{"1804900":[2,1,2]},{"1804904":[3,1]},{"1804918":[1]},{"1804920":[32]},{"1804922":[66]},{"1804924":[2]},{"1804928":[34,7,71,175,145,197,155,229,160,215,34,221]},{"1804941":[255,138,127,2,255,5,253,131,124,1,126,128,127]},{"1804955":[255]},{"1804957":[255]},{"1804959":[255,2]},{"1804962":[5,2]},{"1804965":[129]},{"1804967":[139]},{"1804969":[128]},{"1804971":[34]},{"1804975":[128]},{"1804990":[10]},{"1804992":[82,21,66,153,10,85,138,117]},{"1805001":[255,34,221]},{"1805005":[255,34,85,48,223,32,223]},{"1805013":[127,32,127]},{"1805017":[255]},{"1805019":[255]},{"1805021":[255]},{"1805023":[119,16]},{"1805027":[2,128]},{"1805031":[138]},{"1805035":[34]},{"1805038":[136,170]},{"1805056":[32,85,34,221,160,95,170,85,4,251,168,80,69,188,8,81]},{"1805073":[255,8,255,4,255]},{"1805079":[255]},{"1805081":[255,5,248,6,253,12,89]},{"1805091":[34]},{"1805095":[170]},{"1805097":[4]},{"1805099":[170,4,65,164,166]},{"1805118":[8]},{"1805120":[129,116,234,21,103,152,170,85,17,238,170,85,85,170,1,80,16,255]},{"1805139":[255]},{"1805141":[255]},{"1805143":[255]},{"1805145":[255]},{"1805147":[255]},{"1805149":[255,4,81]},{"1805153":[1]},{"1805155":[170]},{"1805157":[69]},{"1805159":[170]},{"1805161":[17]},{"1805163":[170]},{"1805165":[85,170,171]},{"1805184":[3,116,170,85,69,186,174,81,85,170,136,85,85,162,68,1,20,255,1,255,16,255]},{"1805207":[255]},{"1805209":[255]},{"1805211":[221,8,247,16,69]},{"1805217":[1]},{"1805219":[170]},{"1805221":[69]},{"1805223":[174]},{"1805225":[85,34,170]},{"1805229":[85,170,238]},{"1805248":[17,110,171,84,85,170,231]},{"1805256":[79,136,135,64,85,170,84]},{"1805264":[68,255,20,255]},{"1805269":[255,16,231,44,203,16,199]},{"1805277":[255,1,84]},{"1805281":[17]},{"1805283":[171]},{"1805285":[85,8,239,8,83,40,175]},{"1805293":[85,170,254]},{"1805312":[81,46,187,68,85,170,255]},{"1805320":[55,136,223]},{"1805324":[223,32,69]},{"1805328":[20,239,4,255]},{"1805333":[255,32,223,64,191]},{"1805339":[223]},{"1805341":[255,18,69]},{"1805345":[65]},{"1805347":[187]},{"1805349":[85]},{"1805351":[223]},{"1805353":[55,32,255]},{"1805357":[223,168,237]},{"1805377":[87,170,85,85,170,255]},{"1805384":[115,144,231,4,255]},{"1805390":[103]},{"1805392":[87,255,85,255,138,255]},{"1805399":[255,16,243,12,227,8,247,16,103]},{"1805411":[170]},{"1805413":[85]},{"1805415":[255,24,103,8,255]},{"1805421":[247,136,239]},{"1805440":[48,198,218,21,237,98,247]},{"1805448":[127,128,253]},{"1805452":[255]},{"1805454":[117]},{"1805456":[223,230,53,223,114,239,32,215,149,234,28,225,3,252,1,116,1]},{"1805474":[16,234,96,157,8,223]},{"1805481":[106,2,227]},{"1805485":[252,138,254]},{"1805504":[8,98,14,80,16,170,246,1,255,64,31,128,51,160,69]},{"1805520":[119,234,245,90,239,186,9,247,64,255,8,87,244,163,21,64,17,12,161,10,69,16,8,246,64,191]},{"1805547":[247,160,15,170,250]},{"1805564":[64]},{"1805568":[19,106,62,64,31,162,242]},{"1805576":[195]},{"1805578":[175,48,167,64,254]},{"1805584":[111,250,206,112,232,179,7,240,80,131,228,107,41,230,136,118,5,16,129,56,68,21,9,254,36,155,32,123,88,198]},{"1805615":[119]},{"1805632":[250]},{"1805634":[10,192,98,162,96,16,96,138,240]},{"1805644":[193]},{"1805646":[64,128,251]},{"1805650":[119,168,223,162,159,112,191,202,63,192,190,65,191,192,5,16,145,238,29]},{"1805670":[143,96,21,64,15,208,62,65,63,64]},{"1805694":[128]},{"1805696":[174,174,1,1,160,160,6]},{"1805704":[136,136,64]},{"1805708":[192]},{"1805710":[224]},{"1805712":[83,2,254]},{"1805716":[255,160,255]},{"1805720":[255,136,191,64,127,128,31,224,253]},{"1805730":[255]},{"1805732":[95]},{"1805734":[249,6,119]},{"1805738":[191,64,63,192,31,224]},{"1805760":[143,147,1,65,163,155,53,37,126,22,4,4,10,10,32]},{"1805776":[76]},{"1805778":[254,64,108]},{"1805782":[202,16,233]},{"1805786":[251]},{"1805788":[245]},{"1805790":[255]},{"1805792":[227,20,191]},{"1805796":[231,24,215,48,175,80,255]},{"1805804":[255]},{"1805806":[223]},{"1805814":[8]},{"1805824":[143,207,47,7,155,179,47,27,163,163,101,69,171,171,1,1,112,32,240,8,116,48,248]},{"1805848":[116,56,186]},{"1805852":[84]},{"1805854":[254]},{"1805856":[191,64,167,88,219,52,199,4,195,44,199,56,255]},{"1805870":[255]},{"1805878":[56]},{"1805888":[125,125,251,251,253,253,255,255,255,255,223,223,255,255,23,55,8,130]},{"1805907":[4]},{"1805909":[2]},{"1805914":[32]},{"1805918":[232,16,255]},{"1805922":[255]},{"1805924":[255]},{"1805926":[255]},{"1805928":[255]},{"1805930":[255]},{"1805932":[255]},{"1805934":[223,32]},{"1805952":[187,187,170,170,23,23,62,94,213,37,222,152,255,176,121,56,42,68]},{"1805971":[85,2,232,224,1,240,74,102,1,73,128,75,14,127]},{"1805986":[255]},{"1805988":[255]},{"1805990":[159,64,15,48,185,4,182]},{"1805998":[240,4]},{"1806014":[8]},{"1806016":[111,110,175,175,234,170,184,248,232,137,193,192,115,114,222,254,43,146,4,80,202,53,64,71,233,22,35,28,1,140,32,1,253,1,255]},{"1806052":[223,64,223,32,159,64,255,1,254,1,255]},{"1806080":[214,241,186,121,21,16,47,66,8,81,218,16,193,218,144,150,178,14,159,39,81,200,165,60,249,249,239,29,31,44,14,105,60,255,63,127,154,89,33,231,247,88,181,66,254,1,251,4]},{"1806132":[36]},{"1806134":[24]},{"1806144":[95,127,117,213,251,247,213,217,189,57,19,82,234,232,230,134,47,64,165,74,59]},{"1806166":[91,34,189,66,209,172,10,213,96,25,255]},{"1806178":[95,160,241,14,245,10,251,128,254]},{"1806188":[252,3,156,99]},{"1806208":[255,255,255,255,255,255,253,253,252,252,93,221,126,126,159,95,255]},{"1806226":[255]},{"1806228":[255]},{"1806230":[253,2,252,3,157,162,190,193,223,160,255]},{"1806242":[255]},{"1806244":[255]},{"1806246":[255]},{"1806248":[255]},{"1806250":[255]},{"1806252":[127]},{"1806254":[127,128]},{"1806272":[209,190,251,255,253,255,255,251,255,238,127,117,191,186,255,255,144,111,251,4,253,2,251,4,238,17,117,138,58,69,127]},{"1806304":[255]},{"1806306":[255]},{"1806308":[255]},{"1806310":[255]},{"1806312":[255]},{"1806314":[255]},{"1806316":[255]},{"1806318":[255]},{"1806336":[17,238,170,221,132,59,234,245,81,254,250,239,213,254,254,239]},{"1806353":[253,136,119,128,255,224,31,80,175,234,21,212,43,238,17,253]},{"1806370":[255]},{"1806372":[255]},{"1806374":[255]},{"1806376":[255]},{"1806378":[255]},{"1806380":[255]},{"1806382":[255]},{"1806400":[243,28,18,251,16,177,237,255,22,255,190,254,85,255,191,253,12,5,232,8,178,76,253,1,254,1,254,1,254]},{"1806430":[245,2,5,1,4,3,1]},{"1806438":[1]},{"1806448":[2]},{"1806450":[4]},{"1806454":[2]},{"1806460":[1]},{"1806462":[8]},{"1806464":[49,191,11,159,21,31,31,191,119,126,255,127,223,235,255,233,127]},{"1806482":[95,32,223,32,151,224,126,129,93,128,234,20,65,22]},{"1806497":[128,128]},{"1806518":[8]},{"1806522":[34]},{"1806524":[1]},{"1806526":[168]},{"1806528":[87,255,190,252,94,251,255,208,127,171,252,129,248,142,248,165,248,6,253,2,250,5,80,47,170,84]},{"1806555":[127,128,119,2,93]},{"1806576":[1]},{"1806580":[1]},{"1806582":[128]},{"1806584":[1]},{"1806586":[129]},{"1806588":[12]},{"1806590":[161]},{"1806592":[127,58,127,244,127,57,119,198,253,34,252,131,128,255]},{"1806607":[255,58,197,84,139,40,198]},{"1806615":[185]},{"1806617":[223]},{"1806619":[127]},{"1806621":[127]},{"1806623":[255]},{"1806642":[32]},{"1806644":[17]},{"1806646":[198]},{"1806648":[34]},{"1806650":[131]},{"1806652":[255]},{"1806654":[255]},{"1806656":[255,172,255,32,252,19]},{"1806663":[242]},{"1806665":[255]},{"1806667":[255]},{"1806669":[255]},{"1806671":[255,168,83]},{"1806675":[223]},{"1806677":[239]},{"1806679":[255]},{"1806681":[255]},{"1806683":[255]},{"1806685":[255]},{"1806687":[255]},{"1806704":[4]},{"1806706":[32]},{"1806708":[19]},{"1806710":[242]},{"1806712":[255]},{"1806714":[213]},{"1806716":[186]},{"1806718":[85]},{"1806720":[249,66,16,228]},{"1806725":[230]},{"1806727":[255]},{"1806729":[255,34,255]},{"1806733":[251,162,243]},{"1806737":[191]},{"1806739":[255]},{"1806741":[255]},{"1806743":[255]},{"1806745":[255]},{"1806747":[255]},{"1806749":[243,8,251]},{"1806764":[12]},{"1806766":[4,8,66]},{"1806770":[228]},{"1806772":[230]},{"1806774":[213]},{"1806776":[170]},{"1806778":[98]},{"1806780":[164]},{"1806782":[226]},{"1806784":[2,189,1,38]},{"1806789":[255,10,255]},{"1806793":[255,170,255,84,255,170,255,12,255,8,247]},{"1806805":[255]},{"1806807":[255]},{"1806809":[255]},{"1806811":[255]},{"1806813":[255]},{"1806815":[255,4,8]},{"1806832":[160]},{"1806836":[170]},{"1806838":[10]},{"1806842":[170]},{"1806844":[84]},{"1806846":[170]},{"1806848":[168,87,68,187]},{"1806853":[255,170,255,17,255,168,252,80,250,69,85]},{"1806865":[255]},{"1806867":[255]},{"1806869":[255]},{"1806871":[255,1,255,3,252,5,250,170,85]},{"1806888":[1]},{"1806896":[2]},{"1806900":[160]},{"1806902":[170]},{"1806904":[16]},{"1806906":[168]},{"1806908":[80]},{"1806910":[69]},{"1806912":[40,215,2,255]},{"1806917":[254,196,212,20,190,17,85,192,234,21,21]},{"1806929":[255]},{"1806931":[255,1,254,171,212,1,62,170,21,213,106,234,21]},{"1806950":[128]},{"1806952":[64,128,192,128,64,128]},{"1806960":[128]},{"1806962":[2]},{"1806966":[68]},{"1806968":[84]},{"1806970":[17]},{"1806974":[21]},{"1806977":[255,32,125,4,62,4,21]},{"1806985":[42,9,1,168,178]},{"1806991":[8]},{"1806993":[255,128,125,193,62,96,21,213,42,254,9,77,162,247]},{"1807010":[2,2]},{"1807014":[138,10]},{"1807020":[16,8,8]},{"1807026":[32]},{"1807028":[4]},{"1807030":[132]},{"1807034":[9]},{"1807036":[184]},{"1807038":[8]},{"1807041":[255]},{"1807043":[93,1,27,1,177]},{"1807049":[170]},{"1807052":[162,162]},{"1807057":[255,128,93,164,27,4,17,85,170,221]},{"1807068":[93,162,119]},{"1807074":[34,34,64]},{"1807078":[234,10]},{"1807082":[34,34]},{"1807086":[136,136]},{"1807092":[65]},{"1807094":[225]},{"1807100":[162]},{"1807104":[4,224]},{"1807107":[81,32,168,64,64,34,170,32,192,160,160]},{"1807119":[128,27,224,4,81,119,168,85,64,85,170,117,96,255,128,85]},{"1807136":[4,4,170,170,32]},{"1807142":[234,138]},{"1807146":[138,74,192,32,170,42]},{"1807158":[32]},{"1807160":[34]},{"1807162":[160]},{"1807164":[64]},{"1807166":[128]},{"1807168":[22,238,4,84,1,170]},{"1807175":[16]},{"1807177":[136]},{"1807183":[48,7,254,5,84,16,171,69,16,118,136,85]},{"1807196":[187]},{"1807198":[69]},{"1807200":[6,16,172,170,68,69,170,170,1,1,170,170,68,68,186,138]},{"1807230":[48]},{"1807232":[85,170,16,68,1,42,72,12,10,158,8,12]},{"1807245":[1]},{"1807247":[69]},{"1807249":[255,1,84,208,43,21,64,106,142,89,8,170]},{"1807262":[16]},{"1807265":[85,170,186,4,5,170,230,31,5,174,162,85,84,239,170]},{"1807286":[8]},{"1807288":[16]},{"1807290":[4]},{"1807292":[1]},{"1807294":[69]},{"1807296":[86,168,21]},{"1807300":[41]},{"1807302":[80,68,4]},{"1807306":[1]},{"1807309":[112,96,116,1,254,192,21,138,1,97,64,170,4,69]},{"1807324":[138]},{"1807326":[65,64]},{"1807329":[86,42,63,116,101,238,154,81,85,186,186,117,5,254,138]},{"1807348":[16]},{"1807350":[36]},{"1807356":[112]},{"1807358":[52]},{"1807360":[255,224,5,16,8]},{"1807366":[81,1,8,8,12,69,24,152,1,21,232,231,64,21,178,8,17,65,171,8,4,4,58,24,1,1,224,23,186,191,69,77,175,238,92,85,247,170,221,69,255,234]},{"1807418":[81]},{"1807420":[128]},{"1807422":[20]},{"1807424":[239,24,65,8,137,128,193,145,128,129,69,1,8]},{"1807438":[17,17,56,215,28,81,171,136,73,17,168,129,69,1,170]},{"1807454":[17,17]},{"1807457":[223,162,251,212,72,187,62,213,87,187,186,85,85,255,238]},{"1807476":[20]},{"1807478":[128]},{"1807488":[255]},{"1807490":[220]},{"1807492":[154,48,17,16,34,2,5,5,170]},{"1807505":[255,25,196,112,154,49,48,170,2,5,5,170]},{"1807521":[255,34,231,21,238,158,238,87,85,255,250,85,85,255,255]},{"1807540":[1]},{"1807552":[236,3,68,129,15,8,85]},{"1807560":[170]},{"1807562":[85]},{"1807564":[170]},{"1807566":[17,16,26,230,18,198,157,138,197]},{"1807576":[162,8,85]},{"1807580":[170]},{"1807582":[17,16,2,245,168,255,120,210,26,186,85,93,170,170,85,85,254,238]},{"1807616":[254]},{"1807618":[79]},{"1807620":[226,1,98,14,165,4,21,19,152,53,131,8,152,102,4,67,120,129,118,9,179,15,176,16,176,2,145,53,1,103,168,251,7,157,175,152,71,88,16,239,64,127,241,14]},{"1807668":[2]},{"1807670":[39]},{"1807672":[7]},{"1807674":[31]},{"1807676":[63]},{"1807678":[255]},{"1807680":[245]},{"1807682":[255]},{"1807684":[254]},{"1807686":[215,128,63,192,149,128,251]},{"1807694":[85,128,138,117,160,95,113,142,83,132,189,194,85]},{"1807708":[59,128,85,128,10,117]},{"1807715":[95]},{"1807717":[143,40,172,192,106,42,239,68,166,42,170]},{"1807736":[128]},{"1807738":[192]},{"1807740":[192]},{"1807742":[128]},{"1807746":[192]},{"1807748":[169]},{"1807750":[247]},{"1807752":[251]},{"1807754":[209,128,191]},{"1807758":[21,16,255]},{"1807762":[63,192,214,41,247]},{"1807768":[255]},{"1807770":[215,128,255]},{"1807774":[85,16,255]},{"1807778":[63,192,86,169,8,125,2,229,40,63]},{"1807789":[111,170,239]},{"1807802":[128]},{"1807806":[16]},{"1807808":[64,160,32]},{"1807812":[3]},{"1807814":[173]},{"1807816":[254]},{"1807818":[221]},{"1807820":[190]},{"1807822":[87,96,255]},{"1807826":[255]},{"1807828":[255]},{"1807830":[127,128,175,80,215,8,187,4,83,100,143,112,223]},{"1807844":[252,3,82,172,1,254,34,253,1,222,168,255]},{"1807872":[184,136,34,32,128,2,108]},{"1807880":[224,8,240]},{"1807884":[252]},{"1807886":[255]},{"1807888":[119]},{"1807890":[255,32,255]},{"1807894":[255,128,255]},{"1807898":[255]},{"1807900":[255]},{"1807902":[127,128,207,16,221,2,191,64,83,172,31,224,15,240,3,252]},{"1807919":[255]},{"1807922":[32]},{"1807936":[183,159,9,69,226,34,192,1]},{"1807945":[170]},{"1807947":[4]},{"1807949":[10,152]},{"1807952":[104,16,254]},{"1807956":[221]},{"1807958":[255]},{"1807960":[255]},{"1807962":[255]},{"1807964":[255]},{"1807966":[255]},{"1807968":[255]},{"1807970":[247,8,63,192,63,192,255]},{"1807978":[255]},{"1807980":[255]},{"1807982":[103,152]},{"1808000":[255,253,211,221,186,187,100,49,127,138,100,21,2,170,1]},{"1808016":[6,4,42]},{"1808020":[69,14,251,36,240,5,251]},{"1808028":[253]},{"1808030":[254,1,249]},{"1808034":[243,12,251,4,159,64,143,112,159,96,255]},{"1808046":[255]},{"1808048":[4]},{"1808054":[36]},{"1808056":[5]},{"1808062":[1]},{"1808064":[84,84,186,186,221,221,119,119,255,255,71,85,51,159,5,1]},{"1808081":[171]},{"1808083":[69]},{"1808085":[34,136]},{"1808090":[184,2,252,16,250,52,255]},{"1808098":[255]},{"1808100":[255]},{"1808102":[255]},{"1808104":[255]},{"1808106":[255]},{"1808108":[207]},{"1808110":[207,48]},{"1808122":[2]},{"1808124":[16]},{"1808126":[4]},{"1808128":[142,130,133,141,93,90,249,247,215,215,254,254,241,233,94,94,140,113,10,116,7,160,6,8]},{"1808153":[40]},{"1808155":[1,28,10,160,21,247]},{"1808162":[251]},{"1808164":[250,5,255]},{"1808168":[255]},{"1808170":[255]},{"1808172":[235,4,247,8]},{"1808182":[8]},{"1808192":[168,168,130,131,225,225,131,131]},{"1808201":[1,251,251,20,108,208,200,137,84,1,124,32,30]},{"1808215":[124,1,254]},{"1808219":[4,48,203,56,7,254]},{"1808226":[255]},{"1808228":[255]},{"1808230":[255]},{"1808232":[255]},{"1808234":[255]},{"1808236":[239,16,223,32,1]},{"1808252":[72]},{"1808256":[191,63,69,69,11,27,25,169,202,202,42,170,32,32]},{"1808272":[191,64,69,186,27,228,145,102,10,181]},{"1808283":[213,32,223]},{"1808287":[255,127]},{"1808290":[255]},{"1808292":[255]},{"1808294":[255,16,255]},{"1808298":[255]},{"1808300":[255]},{"1808302":[255]},{"1808310":[32]},{"1808314":[128]},{"1808320":[255,255,245,245,251,251,5,5,155,171,45,61,187,163,9,25,255]},{"1808338":[245,10,251,4,1,250,179,68,21,194,187,68,25,238,255]},{"1808354":[255]},{"1808356":[255]},{"1808358":[255]},{"1808360":[255]},{"1808362":[255]},{"1808364":[231,16,247]},{"1808382":[8]},{"1808384":[245,250,255,252,255,255,95,95,191,191,31,31,191,191,85,85,240,15,252,3,255]},{"1808406":[95,160,191,64,31,224,191,64,85,170,255]},{"1808418":[255]},{"1808420":[255]},{"1808422":[255]},{"1808424":[255]},{"1808426":[255]},{"1808428":[255]},{"1808430":[255]},{"1808448":[87,254,255,255,95,250,254,244,119,255,254,247,255,235,255,230,254,1,221]},{"1808468":[186,5,116,11,235]},{"1808474":[84,9,170,20]},{"1808479":[25]},{"1808489":[1]},{"1808498":[34]},{"1808500":[64]},{"1808502":[128]},{"1808504":[20]},{"1808506":[162]},{"1808508":[65]},{"1808510":[230]},{"1808512":[119,170,255,231,255,250,127,104,127,125,79,200,215,212,195,254,168,85,64,24,160,5]},{"1808535":[151,168,2,48,7,48,27]},{"1808543":[29]},{"1808556":[16]},{"1808560":[2]},{"1808562":[167]},{"1808564":[90]},{"1808566":[104]},{"1808568":[85]},{"1808570":[200]},{"1808572":[196]},{"1808574":[246]},{"1808576":[248,207,252,128,252,199,240,11,224,30,192,63,224,191]},{"1808591":[255,128,55]},{"1808595":[127]},{"1808597":[59]},{"1808599":[255,1,254]},{"1808603":[253]},{"1808605":[95]},{"1808607":[255]},{"1808624":[77]},{"1808626":[128]},{"1808628":[199]},{"1808630":[11]},{"1808632":[30]},{"1808634":[62]},{"1808636":[191]},{"1808638":[253]},{"1808640":[64,191,132,125,8,187,10,255]},{"1808649":[255,2,255,1,255,42,255]},{"1808657":[255,6,249,14,247,6,255]},{"1808665":[255]},{"1808667":[255]},{"1808669":[255]},{"1808671":[255]},{"1808675":[4,2,8,6,8]},{"1808688":[191]},{"1808690":[113]},{"1808692":[177]},{"1808694":[121]},{"1808696":[126]},{"1808698":[86]},{"1808700":[233]},{"1808702":[122]},{"1808705":[255,2,255,4,255,170,255,5,255,170,255,69,143,254,199]},{"1808721":[255]},{"1808723":[255]},{"1808725":[255]},{"1808727":[255]},{"1808729":[255]},{"1808731":[255,80,143,80,215]},{"1808748":[32,64,64,184,238]},{"1808754":[86]},{"1808756":[166]},{"1808758":[234]},{"1808760":[165]},{"1808762":[170]},{"1808764":[109]},{"1808766":[134]},{"1808768":[1,255,168,249,83,251,165,245,86,255,168,254,95,254,245,244]},{"1808785":[255,6,249,4,251,10,245]},{"1808793":[255]},{"1808795":[252,1,254,10,244]},{"1808805":[2]},{"1808807":[1,1,7,2,2]},{"1808813":[15,1,113,161]},{"1808818":[168]},{"1808820":[83]},{"1808822":[165]},{"1808824":[87]},{"1808826":[170,1,95]},{"1808830":[245]},{"1808832":[21,255,169,253,85,255,37,117,215,64,32,64,42,97,21,80]},{"1808849":[255,2,253]},{"1808853":[255,138,117,191,111]},{"1808859":[64,20,36,42,80]},{"1808872":[111,255,96,64,75,79,69,69,21]},{"1808882":[169]},{"1808884":[85]},{"1808886":[37]},{"1808888":[255]},{"1808890":[96,159,111,128,85,128,4,238,245,213,218,250,85,85]},{"1808905":[240,1]},{"1808908":[31,224,16]},{"1808912":[113,238,74,149,5,250,170,85,15]},{"1808924":[31,24,239]},{"1808928":[64,32]},{"1808931":[97]},{"1808933":[128]},{"1808936":[240,240,1]},{"1808940":[248,255,16,16,4]},{"1808946":[149]},{"1808948":[218]},{"1808950":[85]},{"1808952":[240]},{"1808954":[1,254,255]},{"1808958":[16]},{"1808960":[106,234,84,84,170,162,16,16,170,13,37,27,196,39,4,232,21,234,171,84,85,166,239,16,82,74]},{"1808987":[24,131,35,17,18]},{"1808993":[40]},{"1808996":[8,44]},{"1809000":[167,231,56,24,100,163,239,114,106]},{"1809010":[84]},{"1809012":[174]},{"1809014":[16]},{"1809016":[239]},{"1809018":[56,199,227,28,254,1,170,170]},{"1809029":[192]},{"1809031":[138]},{"1809033":[1,55,130,235,251,196,19,85,170,255,32,63]},{"1809046":[117]},{"1809048":[254,22,89,131,252,16,16,11]},{"1809059":[32,192,128,138]},{"1809064":[1,22,7,139,4,16,200,19,170]},{"1809074":[32]},{"1809076":[192]},{"1809078":[138]},{"1809080":[23]},{"1809082":[143,112,16,239,211,44,128,144]},{"1809091":[58]},{"1809093":[68,6,175,3,31,2,255,155,196,213,221,111,192,197,192,187,144,84,4,227,67]},{"1809116":[44,64,254,8,16,64,58,192,68,144,175,2,31,72,255,66,11,68,34,8,208]},{"1809138":[250]},{"1809140":[212]},{"1809142":[171]},{"1809144":[92]},{"1809146":[255]},{"1809148":[71,184,8,247]},{"1809153":[17]},{"1809155":[168]},{"1809157":[69]},{"1809159":[239]},{"1809161":[119]},{"1809163":[255,255,93,130,109,238,64,85]},{"1809172":[186,16,16]},{"1809176":[136]},{"1809180":[171,11,21,238,17,64,170,2,69,16,239]},{"1809192":[119]},{"1809194":[255]},{"1809196":[95,246,140,101,81]},{"1809202":[168]},{"1809204":[85]},{"1809206":[239]},{"1809208":[119]},{"1809210":[255]},{"1809212":[246]},{"1809214":[101,154,80,101,32,207]},{"1809221":[223,3,254,1,254,2,255,66,254,160,225,234,96]},{"1809236":[32]},{"1809238":[1,1]},{"1809241":[1,3]},{"1809244":[71,69,90,174,69,48,223,32,223]},{"1809254":[254,3,255,1,254,2,253,6,46,213,5]},{"1809266":[223]},{"1809268":[222]},{"1809270":[254]},{"1809272":[255]},{"1809274":[254,1,191]},{"1809278":[87,40]},{"1809281":[87,128,253,96,127,64,117,66,124,196,182,43,99,118,253,168]},{"1809298":[128,128,32,32,64,192,100,131,55,185]},{"1809309":[132,1,3,87]},{"1809314":[255,2,255,64,127,138,91,231,153,124,16,255,1,254,87]},{"1809330":[125]},{"1809332":[95]},{"1809334":[53]},{"1809336":[127]},{"1809338":[253,2,255]},{"1809342":[255]},{"1809345":[78,6,87,2,255,141,221,137,63,159,23,243,255,125,249,160]},{"1809362":[4,4,2,6,5,5,24,120,21,69,14,10,5,7,95,17,255,168,255,4,255,34,223,112,39,224,15,240,5,248,78]},{"1809394":[83]},{"1809396":[249]},{"1809398":[216]},{"1809400":[119]},{"1809402":[226,24,249,4,248,6]},{"1809409":[10,23,23,135,175,155,155,210,186,159,223,255,255,81,85,160]},{"1809426":[21,21,226,162,17,17,130,162,21,117,170,170,81,255,95,85,255,136,207,112,255,4,191,101,223,64,255]},{"1809454":[85,4,10]},{"1809458":[98]},{"1809460":[77]},{"1809462":[234]},{"1809464":[24]},{"1809466":[138,32,85]},{"1809471":[170,10,42,84,84,168,170,187,187,170,170,238,238,253,253,3,16,138,10,84,84,168,168,17,17,170,170,68,68,170,170]},{"1809503":[184,127,85,255,171,255,85,255,68,255,85,238,17,252,3,16,87,32]},{"1809524":[2]},{"1809526":[170]},{"1809530":[170]},{"1809532":[84]},{"1809535":[168,170,2]},{"1809540":[170,170,128,128,170,170,234,232,85,84,14,13,170,2,8]},{"1809556":[234,170,13]},{"1809560":[171,170,87,64,4,6,12,168,87,85,247,255,191,85,242,127,254,85,234,21,84,171,8,86]},{"1809590":[128]},{"1809594":[170]},{"1809596":[84]},{"1809598":[14,161,170]},{"1809602":[1,96,139,181,32]},{"1809608":[151,175,173,143,115,100,151,210,170]},{"1809618":[65,96,143,160,104,62,160,160,72,56,32,36,60,214,85,85,190,190,255,47,153,215,224,127,152,79,112,135,66,229]},{"1809650":[64]},{"1809652":[79]},{"1809654":[63]},{"1809656":[63]},{"1809658":[159,32,87,8,7]},{"1809664":[70,1,172,129,156,35,188,65,188,129,122,131,101,14,236,29,225,249,129,144,197,199,5,6]},{"1809689":[66,10,15,12,151,11,25,32,223,2,255,68,186,7,251]},{"1809705":[255,14,242,20,233,6,240,127]},{"1809714":[255]},{"1809716":[254]},{"1809718":[255]},{"1809720":[255]},{"1809722":[254,1,248]},{"1809726":[240]},{"1809728":[111]},{"1809730":[85]},{"1809732":[171,1,144,16,216,216,122,186,149,3,80,47,191,64,213]},{"1809748":[43,129,41,160,237,232,69,192,246,3,175,47]},{"1809761":[80,170,42,84,212,198,191,138,247,58,5,20,104,96,208]},{"1809780":[1]},{"1809782":[192]},{"1809784":[192]},{"1809786":[122,128,22,1]},{"1809791":[47,238,1,61,8,179,17,80,72]},{"1809801":[12,146,142,136,47,18,251,159,1,125,8,187,17,93,72,239,4,77,15,111,111,253,255,96,122,163,194,68,78,162,167,16,251,176,80,144,136,8,16,1]},{"1809842":[40]},{"1809844":[17]},{"1809846":[72]},{"1809848":[4]},{"1809850":[172,3]},{"1809853":[119,1,238,191]},{"1809858":[213]},{"1809860":[127,64,85,69,154,128,114,95,193,207,250,135,255]},{"1809874":[213]},{"1809876":[255,64,87,69,191,135,250,255,255,247,125,135,128,79,170,63]},{"1809893":[170,168,170,88,103]},{"1809899":[85]},{"1809901":[201,120]},{"1809906":[128]},{"1809908":[64]},{"1809910":[69]},{"1809912":[144]},{"1809915":[170,6,48,124,131,254]},{"1809922":[215]},{"1809924":[255]},{"1809926":[119,98,191,213,1,1,84,200,135,120,255]},{"1809938":[255]},{"1809940":[255]},{"1809942":[247,98,255,213,127,65,183,192,255,248,1,254,40,215]},{"1809957":[255,8,136]},{"1809961":[128,128,62,28,35,7]},{"1809974":[98]},{"1809976":[85]},{"1809978":[1,192,20,200,127,128,250,18,216,1,255,1,247,162,252,84,78,81,112,95,232,25,252,18,252]},{"1810004":[255,1,247,162,255,84,122,80,223,17,251,26,7,232,38,217]},{"1810021":[254,8,92]},{"1810025":[139,143,160,96,158,232,5,16]},{"1810036":[1]},{"1810038":[162]},{"1810040":[84]},{"1810042":[90,5,1,96,240,14,136,42,43,70,195,44,247,132,249,194,238,65,182]},{"1810062":[255,160,247]},{"1810066":[255,2,247]},{"1810070":[251,140,247,200,251,68,253,2,126,161,127,128,84,161,35,220,4,123,14,49,149,42,139,116,65,30]},{"1810098":[2]},{"1810102":[128]},{"1810104":[200]},{"1810106":[196]},{"1810108":[2]},{"1810110":[33,128,55,234,41,84,19,170,84,1,166,8,103,17,115,136,222,37,88,165,254,1,236,17,171,84,95,160,191,65,252,3,223,4,255]},{"1810146":[215,40,255]},{"1810150":[255]},{"1810152":[248,7,216,38,143,112,33,218,133]},{"1810162":[1]},{"1810164":[17]},{"1810166":[84]},{"1810168":[160]},{"1810170":[65]},{"1810172":[3]},{"1810174":[4,32,217,251,246,93,243,191,87,17,253,46,149,196,153,42,221,64]},{"1810193":[38,8,163,4,72,168,70,128,83,234,145,103,144,186,69,255]},{"1810210":[255]},{"1810212":[255]},{"1810214":[255]},{"1810216":[127,128,127]},{"1810220":[254,1,71,184,34]},{"1810226":[163]},{"1810228":[72]},{"1810230":[70]},{"1810232":[83]},{"1810234":[145]},{"1810236":[144]},{"1810238":[5]},{"1810240":[124,108,152,136,4,108,166,118,205,189,15,85,221,170,80,5,16,131,56,79,120,227,88,193,112,2,240,10,98,21,175,80,239,16,247]},{"1810276":[239,16,223,32,191,64,159,96,191,64,255]},{"1810290":[8]},{"1810294":[128]},{"1810298":[10]},{"1810300":[21]},{"1810302":[80]},{"1810310":[164,162,12,15,175,175,192,224,226,74]},{"1810321":[255]},{"1810323":[255]},{"1810325":[255,12,83,1,254]},{"1810331":[80]},{"1810333":[63]},{"1810335":[189,255]},{"1810338":[255]},{"1810340":[255]},{"1810342":[243,8,255]},{"1810346":[255]},{"1810348":[255]},{"1810350":[255]},{"1810358":[2]},{"1810360":[2]},{"1810364":[32]},{"1810366":[168]},{"1810368":[170,170,1,1,34,34]},{"1810376":[10,10]},{"1810380":[2,2,128,152,170,85,1,254,34,221]},{"1810391":[255,10,245]},{"1810395":[255,2,253,24,103,255]},{"1810402":[255]},{"1810404":[255]},{"1810406":[255]},{"1810408":[255]},{"1810410":[255]},{"1810412":[255]},{"1810414":[255]},{"1810432":[239,239,85,85,171,171,1,1,147,147,69,69,42,42,5,5,239,16,85,170,171,84,1,254,131,108,69,186,42,213,5,250,255]},{"1810466":[255]},{"1810468":[255]},{"1810470":[255]},{"1810472":[255]},{"1810474":[255]},{"1810476":[255]},{"1810478":[255]},{"1810496":[127,174,255,237,243,233,243,123,255,151,205,159,168,211,200,255,170,81,64,18,160,30]},{"1810519":[140,128,104,32,80,36,107,48,55]},{"1810541":[16,16,32,4]},{"1810546":[173]},{"1810548":[73]},{"1810550":[123]},{"1810552":[23]},{"1810554":[143]},{"1810556":[129]},{"1810558":[205]},{"1810560":[112,255,112,255,227,191,202,255,132,255,128,255]},{"1810573":[255]},{"1810575":[255]},{"1810577":[143]},{"1810579":[141]},{"1810581":[92]},{"1810583":[53]},{"1810585":[123]},{"1810587":[127]},{"1810589":[255]},{"1810591":[255]},{"1810608":[243]},{"1810610":[255]},{"1810612":[191]},{"1810614":[255]},{"1810616":[255]},{"1810618":[255]},{"1810620":[255]},{"1810622":[255]},{"1810625":[255,3,253,4,255,10,254]},{"1810633":[255,42,255,5,255,186,255]},{"1810641":[255,1,253,3,255,3,126]},{"1810649":[255]},{"1810651":[255]},{"1810653":[255]},{"1810655":[255]},{"1810658":[3]},{"1810661":[7,2]},{"1810672":[255]},{"1810674":[222]},{"1810676":[252]},{"1810678":[252]},{"1810680":[234]},{"1810682":[239]},{"1810684":[175]},{"1810686":[186]},{"1810688":[1,255,42,255,85,255,174,255,17,251,161,245,91,255,255,255]},{"1810705":[255]},{"1810707":[255]},{"1810709":[255]},{"1810711":[255,4,251,12,245,6,255]},{"1810719":[255]},{"1810727":[6]},{"1810729":[1,2,4,6,9]},{"1810735":[53,233]},{"1810738":[250]},{"1810740":[245]},{"1810742":[174]},{"1810744":[145]},{"1810746":[163]},{"1810748":[89]},{"1810750":[255]},{"1810752":[101,239,143,207,69,239,245,245,86,254,253,252,223,250,85,81,40,215,48,207,16,239,10,245,1,254,2,252]},{"1810781":[250,170,81]},{"1810785":[60]},{"1810787":[133]},{"1810789":[64]},{"1810791":[244]},{"1810793":[18,1,29,5,223,4,69,77]},{"1810802":[143]},{"1810804":[69]},{"1810806":[245]},{"1810808":[86]},{"1810810":[253]},{"1810812":[223]},{"1810814":[85]},{"1810816":[87,255,245,245,250,250,108,112,250,225,28,199,26,106,20,96]},{"1810833":[255,10,245,5,250,131,96,28,228,88,12,197,74,139,1]},{"1810849":[67]},{"1810851":[5]},{"1810853":[154,20,12,27,191,131,247,48,90,116,117,87]},{"1810866":[245]},{"1810868":[250]},{"1810870":[100]},{"1810872":[255]},{"1810874":[223]},{"1810876":[26]},{"1810878":[117]},{"1810880":[14,138,4,16,129,226,96,9,180,147,66,145,10,1,6,168,49,42,203,64,13,164,164,40,68,148,34,2,254,72,87,17,164,174,84,84,98,231,107,104,55,183,211,211,9,79,169,189,174,64,84,32,231,16,106,16,183,8,211,12,79]},{"1810942":[189,2,232,129]},{"1810947":[2,32,5,2,173,129,87,11,244,159,97,183,194,22,134,253,45,218,130,82,18,40,8,11,10,30,30,109,224,105,239,2,47,37,167,175,183,215,223,254,255,255,63,122,231,239]},{"1810994":[47]},{"1810996":[167]},{"1810998":[191]},{"1811000":[223]},{"1811002":[255]},{"1811004":[191]},{"1811006":[127]},{"1811008":[196,16,15,241,30,224,110,150,239,80,240,138,240]},{"1811022":[3,32,238,169,12,12,31,30,89,78,160,128,107,32,199,65,253,206,147,252,254,252,254,254,230,87,223,224,154,193,49,134,237,208,253,2,254,1,254,1,255]},{"1811064":[239]},{"1811066":[241,14,246,9,16,239,71,185,103,185,254,176,185,64,230,212,100,195,107,6,44,223,198,70,68,129,108,36,27,90,127,4,216,55,182,203,174,76,127,239,59,229,51,25,39,196,190]},{"1811114":[62,133,225,38,46,243,255]},{"1811122":[255]},{"1811124":[30,193,120,135,12,243,13,242,2,253,78,177,236,1,255,187,255,24,17,40,198,110,176,111,168,253,31,63,154,1,68,1,103,93,174,128,127,119,47,244,138,29,64,159,104,145,187,255,152,58,191]},{"1811176":[49,110,164,79,53,72,159,255,241,14,255]},{"1811188":[255]},{"1811190":[23,232,110,145,100,155,8,247,128,127,107,190,208,11,255,160,32,239]},{"1811209":[170,64,191,197,213,255,255]},{"1811217":[129,180,139,88,248,223,32,255,101,191,68,239,213]},{"1811231":[255,1,212,88,35,167,160,239,16,117,170,4,191,85,128,255,255,128,127,227,28,255]},{"1811254":[16,239,186,69,4,251,197,58]},{"1811263":[255,8,216,205,96,129,32,59,224,6,128,28,193,60,3,57,131,36,215,16,130,104,30,224,36,209,120,161,98,132,71,5,1,20,195,144,47,152,119,192,63,112,175,34,221,69,59,2,253,199,56,15,240,255]},{"1811318":[63,192,190,65,127,128,126,128,121,132,53,56,208,2,155,39,31,76,102,201,65,190,254,126,237,211,7,203,26,39,55,71,52,143,120,119,62,193,126,255,195]},{"1811360":[3,243,32,192,76,247,195,156,209,8,129,190,127,1,238,255,243,12,224,16,255]},{"1811382":[148,3,40,23]},{"1811387":[127,127,128,193,62,201,159,53,138,116,199,185,195,182,3,121,7,118,6,116,12,134,37,194,69,135,76,71]},{"1811416":[199,200,137,141,142,133,137,135,5,122,192,190,197,62,131,191,199,63,139,118,135,123,143,124,126,129,252,3,254,1,59,68,250,5,253,2,247,8,243,12,63,117,224,32,127,127,199,227,81,254,139,127,199,147,167,127,10,58,61,194]},{"1811477":[127,216,71,254]},{"1811482":[127]},{"1811484":[130,59,6,1,240,5,29,50,254,1,248,163,255,251,255,203,63,213,3,251,138,53,29,226,128,126,216,36,4,251,116,139,234,21,250,5,144,127,143,79,255,248,254,248,94,166,230,239,129,203,136]},{"1811536":[128,239,16,239,10,249,26,227,160,1,243,16,193,146,37,243,111,127,16,239,15,247,19,253,225,255,209,237,196,127,103,152,128,16,16,232,11,4,31]},{"1811576":[190,65,61,194,255]},{"1811582":[123,132,31,195,247,151,64,9,134,16,7,144,95,32,31,64,92]},{"1811600":[8,216,24,168,144,118,32,233,193,105,129,128,130,163,33,162,248,215,8,247,176,79,96,223,193,190,129,127,131,125,163,94,63]},{"1811634":[31,32,191,64,127,128,127,128,254,1,255]},{"1811646":[255]},{"1811648":[65,204,195,208,197,144,3,96,223,48,14,128,244,128,31,129,142,202,100,92,48,2,136,92,16,32,80,49,161,170,163,99,226,25,44,243,112,239,184,119]},{"1811689":[127,241,46,225,94,226,29,163,68,207,16,191,64,31,224,63,128,127]},{"1811708":[190,65,255]},{"1811712":[83,2,197,46,176,111,235,89,191,159,84,191,18,238,253,22,38,134,74,110,105,79,205,210]},{"1811737":[31,144,175,2,81,20,136,8,243,80,165,9,246,132,127,64,63,128,255,175,127,118,255,200,36,240,10,192,13,192,27,64,151,128,63,3,124,21,232,136,116,128]},{"1811780":[169,64,250,255,170,190,5,175,241,127,111,64,119,119,106,106,86,86,82,5,3,252,1,254,113,4,80,175,4,136,21,170,64,169,168,255,1,255]},{"1811819":[255,138,255,208,127]},{"1811825":[119,21,106]},{"1811829":[86]},{"1811831":[255,1,254]},{"1811835":[255]},{"1811837":[255,208,47,20,59,95,18,192]},{"1811846":[118,157,72,200,69,254,4,255,255]},{"1811856":[99,123,160,178,31,31,107,255,104,128,1,255,4,219]},{"1811871":[255,132,12,69,237,32,192]},{"1811879":[246,55,232]},{"1811883":[255,32,255]},{"1811887":[255,163,80]},{"1811891":[178,32,31]},{"1811895":[255]},{"1811897":[223]},{"1811899":[255]},{"1811901":[255]},{"1811903":[255,3,254,174,173,9,13,21,233,164,164,11,243,21,246,254,12,239,254,7,175,209,209,229,233,174,4,5,248,28,227,13,250,16,19,80,6,38,13,98,25,91,170,14,255,8,255,1,247,236,1,80,171,32,210,4,234]},{"1811961":[245,4,251,8,247,1,254,17,254,168,239,252,159,7,135,34,226,133,125,192,191,128,124,239,94,71,175,3,159,248,255,125,255,127,255,255,127,28,252,1,160,16,64,96,96,128]},{"1812008":[64,160,24,133,12,192,3,224,79,16,23,168,3,156]},{"1812023":[255]},{"1812025":[95]},{"1812027":[250]},{"1812029":[255]},{"1812031":[255,213,53,28,222,119,247,51,49,126,127,223,116,246,174,175,21,229,53,254,190,247,119,247,243,255,255,255,255,247,255,191,151,193,14]},{"1812067":[95,8,243,8,49]},{"1812073":[126]},{"1812075":[85]},{"1812077":[175,64,173,96,27,128,35]},{"1812085":[12,4,202]},{"1812089":[129]},{"1812091":[170]},{"1812093":[80]},{"1812095":[250,213,138,158,200,47,192,35,64,111,68,31,251,223,240,7,230,127,64,63,8,223,64,255,192,63,68,255,187,223,208,247,166,10,245,1,254,40,151,48,23,40,147]},{"1812139":[71,96,143,8,217]},{"1812147":[8,64,32,104,144,4,192,56,131,16,96,38,128,118,136,247,2,206,36,255]},{"1812168":[252,18,255,8,255,64,255,144,253,2,190,67,119,140,254,1,223,48,255,8,253,66,255,144,139,84,73,180,185,70,1,254,35,220]},{"1812203":[247,2,253]},{"1812207":[127,2]},{"1812210":[67]},{"1812212":[136,4,1]},{"1812216":[32,16,8]},{"1812220":[2,64,128,16,61,210,249,36,97,170,89,68,69,170,219,20,247,29,245,181,250,21,254,33,222,33,222,113,186,117,190,81,111,149,250,189,167,72,7,216,175,80,135,40,239,16,69,170,176,75,7,234,21]},{"1812274":[33]},{"1812276":[1]},{"1812278":[65]},{"1812280":[69]},{"1812282":[81]},{"1812284":[132,1,16,162,125,170,250,85,221,187,95,21,95,170,89,4,155,37,80,5,2,213,7,168]},{"1812309":[102,160,74,160,85,167,88,103,153,175,80,255]},{"1812322":[253,2,255]},{"1812326":[255]},{"1812328":[255]},{"1812330":[252,2,254,2,255]},{"1812336":[213]},{"1812338":[168]},{"1812340":[102]},{"1812342":[74]},{"1812344":[85]},{"1812346":[88]},{"1812348":[153]},{"1812350":[80]},{"1812352":[208,208,168,42,84,213,235,87,85,213,255,93,125,173,126,21]},{"1812369":[47]},{"1812371":[215]},{"1812373":[171]},{"1812375":[188]},{"1812377":[170]},{"1812379":[162,128,82,128,107,255]},{"1812386":[255]},{"1812388":[255]},{"1812390":[255]},{"1812392":[255]},{"1812394":[255]},{"1812396":[255]},{"1812398":[255]},{"1812402":[130]},{"1812404":[129]},{"1812406":[188]},{"1812408":[128]},{"1812410":[162]},{"1812412":[80]},{"1812414":[107]},{"1812417":[24,136,136,128,193,33,98,6,5,195,224,240,176,248,88,16,239]},{"1812435":[119,65,62,129,94,3,248,3,60]},{"1812445":[79]},{"1812447":[167,255]},{"1812450":[255]},{"1812452":[255]},{"1812454":[254,1,254,1,252,2,255]},{"1812462":[255]},{"1812464":[8]},{"1812470":[66]},{"1812474":[32]},{"1812476":[64]},{"1812478":[160]},{"1812480":[202,202,164,228,130,98,88,32,199,22,228,22,75,6,50,192,138,53,100,59,194,61,248,7,233,62,241,43,97,190,98,185,255]},{"1812514":[223]},{"1812516":[127,128,39,152,110,144,113,182,218,29,181,114]},{"1812530":[32]},{"1812532":[32]},{"1812538":[8]},{"1812540":[32]},{"1812542":[136]},{"1812544":[248,47,242,63,200,59,224,247,140,255,2,247,224,255,234,255]},{"1812561":[215]},{"1812563":[205,12,251,8,23,4,123]},{"1812571":[243]},{"1812573":[31]},{"1812575":[31]},{"1812580":[8]},{"1812585":[4,12]},{"1812592":[47]},{"1812594":[55]},{"1812596":[51]},{"1812598":[243]},{"1812600":[211]},{"1812602":[251]},{"1812604":[250]},{"1812606":[251]},{"1812609":[255,2,255,5,255,10,255,1,255,43,255,21,255,191,255]},{"1812625":[255]},{"1812627":[255]},{"1812629":[255]},{"1812631":[255]},{"1812633":[255]},{"1812635":[255]},{"1812637":[255]},{"1812639":[255]},{"1812649":[1]},{"1812655":[130,254]},{"1812658":[255]},{"1812660":[255]},{"1812662":[90]},{"1812664":[251]},{"1812666":[251]},{"1812668":[191]},{"1812670":[255]},{"1812672":[21,255,171,255,85,255,239,255,117,255,255,255,95,255,255,255]},{"1812689":[255]},{"1812691":[255]},{"1812693":[255]},{"1812695":[255]},{"1812697":[255]},{"1812699":[255]},{"1812701":[255]},{"1812703":[255]},{"1812713":[17]},{"1812715":[35]},{"1812717":[1]},{"1812719":[151,149]},{"1812722":[235]},{"1812724":[245]},{"1812726":[239]},{"1812728":[245]},{"1812730":[255]},{"1812732":[95]},{"1812734":[255]},{"1812736":[87,255,253,253,95,255,253,253,127,255,223,213,255,186,149,196]},{"1812753":[255,2,253]},{"1812757":[255,2,253]},{"1812761":[255,32,213]},{"1812765":[186,90,244]},{"1812769":[23]},{"1812771":[156]},{"1812773":[95]},{"1812775":[253]},{"1812777":[127,10,223,69,255,17,245,87]},{"1812786":[253]},{"1812788":[95]},{"1812790":[253]},{"1812792":[127]},{"1812794":[223]},{"1812796":[255]},{"1812798":[149]},{"1812800":[251,250,245,86,250,168,84,90,238,171,85,74,171,174,17,170,4,250,8,84,5,168,161,80,16,170,160,64,80,170,68,4,1,251,163,247,82,250,14,94,69,239,31,95,5,175,187,191,251]},{"1812850":[247]},{"1812852":[250]},{"1812854":[94]},{"1812856":[239]},{"1812858":[95]},{"1812860":[175]},{"1812862":[191]},{"1812864":[238,168,85,2,186,37,81,170,232,157,64,171,160,85,32,255,17,168,168]},{"1812884":[64,32,4,4,2,138,20,20,10,10,32,32,70,238,87,87,159,191,251,255,117,255,235,255,245,255,223,223,238]},{"1812914":[87]},{"1812916":[191]},{"1812918":[255]},{"1812920":[255]},{"1812922":[255]},{"1812924":[255]},{"1812926":[255,32,168,86,66,168,129,85,2,237,133,82,15,250,5,93,171,248,1,2,22,22,42,43,18,18,47,42,13,10,166,167,171,168,254,255,234,254,213,255,239,255,208,255,240,247,91,251,80,80,255]},{"1812978":[254,1,255]},{"1812982":[255]},{"1812984":[253]},{"1812986":[253,10,255,4,248,175,150,100,62,72,25,100,244,41,249,55,161,224,54,144,232,1,147,129,53,48,156,84,83,48,175,181,235,202,33,136,247]},{"1813024":[229,247,122,125,116,252,191,50,148,191,127,124,184,128,224,7,246,9,127,128,252,3,177,64,191,64,224,159,128,127,7,248,184,7,42,128,181,189,170,160,139,12,41,20,131,193,156,107,189,255,234,191,202,119,218,127,187,183,157,14,62,89,50,59,253,133,191,64,119]},{"1813094":[127]},{"1813096":[243,64,15,32,153,37,251,5]},{"1813105":[255,191,64,119,136,127,128,112,143,108,211,25,230,255,192,239,205,35]},{"1813124":[85,221,168]},{"1813128":[169,90,141,1,254,94,255,250,205,220,35,255,170,119,168,255,185,251,234,1,164,164,6]},{"1813152":[220,254,255]},{"1813156":[119]},{"1813158":[255]},{"1813160":[185,24,9,101,252,252,248,248]},{"1813169":[255,255]},{"1813172":[119,136,255]},{"1813176":[4,255,97,158,248,7,248,7,46,56,248,2,5,5,240,10,155,149,68,70,175,168,229,143,168,14,24,31,250,255,208,223,250,146,231,88,104,144,90,41,78,200,31,226,255]},{"1813222":[223,42,155,252,94,237,147,128,167,153,65,191,253,2,255]},{"1813238":[245,10,16,239,157,98,147,108,137,118,191,170]},{"1813251":[42,84,92]},{"1813255":[170,170,18]},{"1813259":[160,251]},{"1813262":[253,216,170,191]},{"1813267":[255,171,247,1,255,255,185,189,3,4]},{"1813278":[38,114,191,170,255,42,247]},{"1813286":[255,170,185,16,163,28,248,3,222,85,64,255,213,42,247,8,85,170,1,254,31,224,251,4,251,140,19]},{"1813314":[112,12,125,7,104,10,192,17,208,8,250,20,189,88,198,97,136,143,154,145,152,143,31,17,61,16,103,64,102,69,75,184,131,124,157,108,159,102,49,249,58,213,127,147,27,243,120,135,255]},{"1813364":[249,2,237,18,248,7,215,42,219,36,253,8,172,16,1,168,81,252,10,168,13,208,3,192,3,224,182,225,1,67,2,254,174,82,12,245,120,218,152,12,193,45,96,73,67,82,254,169,82,1,244,171,88,87,248,7,193,62,192,127,175,252,87,168,83,172,95,160,143,240,47,176,63,192,255,128,96]},{"1813442":[227,1,198,2,211,52,131,73,20,97,140,131,47,135,10,151,22,14]},{"1813461":[49,121,73,210,246,32,202,167,247,131,147,22,225,30,233,48,223,105,182,178,108,131,94,103,155,130,249,247,8,239,16,255]},{"1813494":[223,32,254,1,222,32,255]},{"1813502":[249,4,254,253,4,255,241,5,24,65,122,64,186,134,51,4,120,9]},{"1813523":[3,128,137,96,163,12,203,206,76,78,70,154,158]},{"1813537":[252,3,255,129,126,167,157,205,176,78,183,78,181,150,109,255,3,252,3,255]},{"1813558":[190,65,249,6,255]},{"1813564":[247,8,255]},{"1813568":[48,130,62,129,81]},{"1813574":[127,7,117,3,254,15,104,4,244,22,2,5,64,193,131,168,135,130,133,138,5,4]},{"1813597":[149,48,53,13,252,192,191,135,125,129,123,143,115,5,243,31,229,47,218,125,130,127,128,253,2,251,4,249,4,240,11,251]},{"1813630":[241,6,52,193,57,1,186,133,116,1,118,14,99,11,116,28,124,8,198,13,67,196,207,72,130,142,144,159,131,146,161,175,162,167,132,185,199,63,76,176,141,117,149,104,158,97,171,78,166,77,188,67,254,1,255,3,252]},{"1813688":[251,6,247]},{"1813692":[227,16,231,24,183,129,28,131,59,129,122,135,181,1,177,5,120,8,237,9,130,73,39,36,193,68,134,2,8,70,10,71,25,153,2,27,194,191,167,218,70,56,5,125,1,251,12,247,22,233,25,230,252,3,127]},{"1813748":[125,129,124,130,240,15,240,11,254,1,240,11,124,4,7,69]},{"1813765":[249,21,73,8,178,76,36,48,102,128,138,134,10,189,1,253,4,170,17,67,83,56,152,105,3,35,235,247,253,65,71,7,2,64,71,182,191,57,226,134,122,114,221,131,124,191,184,247,248,180,187,78,241,25,164,176,73,120,3,127]},{"1813826":[128,64,128,93,128]},{"1813832":[31,17]},{"1813838":[1,193]},{"1813841":[255,191]},{"1813844":[221,34,255]},{"1813848":[238,238,255,255,223,222,254,254,128,255,64,64]},{"1813864":[17,31]},{"1813867":[170,32,84,192,43]},{"1813873":[255,191,63,255,255,255,127,224,255]},{"1813883":[255,33,222]},{"1813887":[254,255]},{"1813893":[85]},{"1813896":[255,17,1,1,42,139]},{"1813903":[193]},{"1813905":[255,255]},{"1813908":[85,170,255]},{"1813912":[238,238,255,255,213,223,255,255]},{"1813921":[255]},{"1813928":[17,187,1,170,32,113,64,40]},{"1813937":[255,255,255,255,255,255,255,68,255]},{"1813947":[255]},{"1813949":[223]},{"1813951":[255,255]},{"1813957":[84]},{"1813960":[247,118,28,252,91,99,213,141]},{"1813969":[255,255]},{"1813972":[84,171,255]},{"1813976":[128,129,183,247,252,127,218,143,81,255]},{"1813992":[127,247,40,92,128,128,40,16]},{"1814001":[255,255,255,255,255,255,255]},{"1814009":[255]},{"1814011":[171]},{"1814013":[127,64,191,255,255,1]},{"1814021":[68,3,2,241,138,255,12,235,152,94,216]},{"1814034":[255]},{"1814036":[69,186,251,5,11,126,223,226,92,243,188,130,255,255]},{"1814054":[1,1,240,240,34,98,34,35,67,194]},{"1814065":[255,255,254,255,255,254,254,15,254,29,236,28,255,60,251,74,159,179,193,214,35,247,9,94,11,255]},{"1814092":[127,16,190,224,23,215,51,115,127,255,127,191,151,71,254,161,151,121,31,78,96,195,140,225,128,203,128,225,160,211,161,161,233,233,160,240,8,125]},{"1814131":[190]},{"1814133":[245]},{"1814135":[254,136,125,94,1,6,120,1,254,31,60,47,170,143,188,143,119,170,225,22,94,244,52,206,54,63,44,159,170,239,204,255,231,245,241,167,116,239,52,191,228,16,195]},{"1814179":[213,16,163,8,112,10,228,10,65]},{"1814189":[43,202,209,44,208,10,224,12,80,15,224,1,90,132,58,196,16,12,98,255,68,251,26,255,4,191,202,63,19,255,170,255,245,103,102,255,68,255,26,255,4,255,10,191,243,95,202,255,181,79,118]},{"1814241":[251]},{"1814243":[245]},{"1814245":[251,160,87,128,46]},{"1814251":[117,64,11,136,153,4,64,10,16,4]},{"1814262":[40,130,81,2,10,128,180,65,78,32,255,7,231,4,245,82,239,180,247,56,255,176,255,144,252,249,127,135,255,28,247,80,255,180,253,50,255,176,255,144,255,248,128,124,24,231,10,245,8,71,2,253]},{"1814315":[79]},{"1814317":[255]},{"1814319":[31,131,4]},{"1814323":[4]},{"1814325":[64,184,4,2,32,176]},{"1814333":[144,224,24,93,162,255,66,125,128,190,227,127,128,254,1,221,38,255,146,162,93,174,83,254,67,255,162,220,35,191,64,119,140,255,146,255]},{"1814370":[81,172,39,216,1,92,163,92,65,190,170,85]},{"1814383":[255,93]},{"1814386":[19]},{"1814388":[1]},{"1814390":[162]},{"1814392":[35]},{"1814394":[64]},{"1814396":[136,4]},{"1814399":[146,119,175,159,69,127,139,119,49,61,194,191,64,247,10,211,4]},{"1814417":[216,96,154,128,116,184,118,240,15,96,159,8,245,172,83,255]},{"1814434":[255]},{"1814436":[255]},{"1814438":[207,16,207,48,223,32,255]},{"1814446":[127,128,216]},{"1814450":[154]},{"1814452":[116]},{"1814454":[102,16,15]},{"1814458":[159]},{"1814460":[245]},{"1814462":[83]},{"1814464":[68,92,174,246,88,92,232,23,209,53,248,20,212,175,123,79,24,163,24,65]},{"1814485":[167,192,63,128,46,7,233,14,117,142,62,255]},{"1814498":[247,8,255]},{"1814502":[63,192,126,129,254,1,251]},{"1814510":[245,4]},{"1814514":[64]},{"1814516":[4]},{"1814518":[63]},{"1814520":[36,64,232]},{"1814524":[117]},{"1814526":[58]},{"1814528":[79,249,182,89,8,20,40,182,228,60,10,88,145,97,249,67,174,88,79,176,28,227,140,83,208,139,240,7]},{"1814557":[254,2,188,199,58,241,14,255,8,247,8,63,192,127]},{"1814572":[255]},{"1814574":[254,1]},{"1814578":[160]},{"1814582":[18]},{"1814584":[8]},{"1814586":[130]},{"1814588":[240]},{"1814590":[184]},{"1814592":[64,255,2,255,5,255,42,255,81,191,59,31,53,191,207,255]},{"1814609":[191]},{"1814611":[255]},{"1814613":[255]},{"1814615":[255,96,255,160,95,64,191,32,239]},{"1814633":[32,32,122]},{"1814637":[48]},{"1814639":[58,254]},{"1814642":[255]},{"1814644":[255]},{"1814646":[190]},{"1814648":[31]},{"1814650":[59]},{"1814652":[189]},{"1814654":[207]},{"1814656":[23,255,191,255,95,255,255,255,87,255,255,255,255,255,255,245]},{"1814673":[255]},{"1814675":[255]},{"1814677":[255]},{"1814679":[255]},{"1814681":[255]},{"1814683":[255]},{"1814685":[255]},{"1814687":[245]},{"1814691":[10]},{"1814693":[16]},{"1814695":[3]},{"1814697":[7]},{"1814699":[153]},{"1814701":[63,10,255,191]},{"1814706":[191]},{"1814708":[95]},{"1814710":[255]},{"1814712":[215]},{"1814714":[255]},{"1814716":[255]},{"1814718":[255]},{"1814720":[127,255,223,221,239,255,255,253,255,255,253,247,255,186,85,250]},{"1814737":[255,32,221]},{"1814741":[239]},{"1814743":[253]},{"1814745":[255]},{"1814747":[245]},{"1814749":[186]},{"1814751":[80]},{"1814753":[107,2,23,16,255,2,255]},{"1814761":[127,10,255,69,255,175,255,127]},{"1814770":[223]},{"1814772":[255]},{"1814774":[255]},{"1814776":[255]},{"1814778":[255]},{"1814780":[255]},{"1814782":[255]},{"1814784":[238,155,149,198,255,170,85,90,250,171,212,106,170,231,170,119,96,202,8,132]},{"1814805":[170,160,80,4,174,1,65,16,178,171,171,21,207,115,215,85,255,15,95,81,255,190,255,77,255,221,85,175,32,247]},{"1814836":[255]},{"1814838":[95]},{"1814840":[255]},{"1814842":[255]},{"1814844":[255]},{"1814846":[255,170,58,73,68,186,160,213,90,175,139,156,43,190,119,120,127,112,132,140,1,1,42,170,90,90,99,235,105,106,215,247,255,127,115,255,254,255,117,255,245,213,23,255,150,215,15,175,143,7,255]},{"1814898":[255]},{"1814900":[255]},{"1814902":[223,10,255]},{"1814906":[255,40,255,80,255,120,192,183,18,207,101,31,170,245,149,122,191,104,255,64,86,2,104,136,82,98,197,197,170,170,21,21,191,191,255,255,253,253,23,255,205,189,122,218,95,95,239,239,215,215,191,191,255,87,255]},{"1814962":[159,2,255,5,255,160,255,16,255,40,255,64,255,168,19,236,169,80,93,240,254,99,127,128,253,56,149,4,254,254,19,21,175,172,95,94,254,255,127,127,199,215,235,235,1,255,255,253,252,254,174,174,157,157,255,255,255,253,255,239,255,255,252,3,254,1,254,81,255,98,255]},{"1815034":[255,2,255]},{"1815038":[255]},{"1815040":[11,1,228,161,94,88,111,40,85,52,205,156,62,76,201,196,253,241,95,209,167,104,81,216,74,44,67,182,179,204,42,214,250,245,245,251,122,249,253,120,60,62,191,158,236,207,215,230,231,24,251,4,249,6,60,195,62,193,156,99,207,48,229,26,48,148,16,177,80,56,8,42,43,157,110,30,230,22,15,59,254,169,214,54,130,35,127,73,226,83,207,63,62,1,201,184,233,130,126,152,115,132,201,44,123,128,95,6,37,20,190,6,200,119,78,241,199,120,129,254,131,124,11,244,5,250,8,245,255,214,127,124,191,47,143,166,206,38,31,191,15,47,113,72,42,174,130,16,208,254,169,216,145,247,224,63,208,207,191,247,254,255,126,253,238,110,231,150,239,7,63,111,207,31,254,6,252,3,252,3,62,193,174,65,174,97,15,240,223,32,225,30,153,29,213,66,154,158,223,136,223,139,237,76,110,34,151,68,58,4,41,67,31,22,172,32,159,201,70,1,27,68,167,196,193,71,96,92,114,119,36,38,237,173,25,18,205,144,47,7,135,120,99,190,5,250]},{"1815287":[255]},{"1815289":[255]},{"1815291":[255,16,239,200,127,243,84,243,248,227,192,254,200,118,96,103,32,189,192,167,3,168,4,4,12,53,29,56,32,137,88,202,90,98]},{"1815326":[88,184,84,255,212,251,221,250,209,79,121,230,186,20,225,30,249,5,251,4,223,32,239,16,239,144,238,17,254,161,29,226,93,226,95,55,95,30,63,207,127,255,127,236,232,253,232,210,144,245,8]},{"1815378":[65,161,49,144,3,2,22,30,26,14,28,45,121,11,182,159,148,222,75,175,222,117,234,237,246,205,220,131,232,55,190,65,213,42,251,4,95,40,255]},{"1815418":[235,52,223,96,191,192,135,3,14,128,85,34,160,76,70,150,158,46,47,92,155,79,33,121,199,112,8,2,29,6,53,13,97,16,131,35,84,112,225,92,196,190,5,248,2,249,7,242,14,229,92,136,175,1,252,2,122,132,245,8,235,18,210,33,175,66,31,132,187,46,19,135,120,9,4,14,240,138,135,158,224,152,16,2,60,150,71,235,4,131,74,241,147,13,198,116,186,55,68,220,124,60,75,180,128,241,215,40,27,250,76,179,54,217,253,163,252,20,253]},{"1815538":[241,10,253,2,227,20,255]},{"1815546":[247,8,239,16,60,67,112]},{"1815554":[103,130,88,20,79,11,57,22,14,22,55,191,149,63,20,15,179,35,144,161,221,237,100,141,52,156,160,168,42,193,20,251,51,78,129,120,238,29,82,177,164,11,248,207,42,149,231,16,111,144,249,6,229,24,178,64,128,66,144,7]},{"1815615":[126,89,8,234,42,174,28,14,60,244,62,127,63,188,190,86,119,60,138,102,98,32,54,64,178,226,40,193,2,128,195,168,136,12,243,84,189,82,223,240,61,40,223,130,61,131,63,33,222,213,32,225,10,227,12,129,78,195,20,1,62,1,124]},{"1815679":[254,203,24,74,24,247,43,99,1,243,55,13,59,240,34,114,38,33,13,174,151,3,24,201,248,51,12,140,194]},{"1815709":[19,112,229,29,226,159,120,8,205,252,21]},{"1815721":[223,131,119,7,246,237,175,199,40,207,32,197,58,221,34,221,32,244,8,241,8,225,18,64,24,231,30,214,14,74,30,223,26,80,28,81,24,71,18,21,189]},{"1815763":[27]},{"1815765":[11,150,172,38,24,138,158,172,150,138,154,10,253,8,252,43,237,166,83,16,235,183,101,156,107,171,118,242,5,240,7,225,22,243,12,199,60,227,28,206,49,255]},{"1815808":[138,137,192,146,30,7,201,79,165,220,78,158,221,255,85,85,89,97,147,3,171,151,75,7,227,154,1,247,145,170,42,110,84,42,44,248,200,82,30,180,153,252,16,216,243,38,128,187,100,145,244,2,201,37,136,75,193,7,128,47,81,29]},{"1815871":[127,96,160,23,39,5,53,76,252,5,79,91,143,191,191,23,23,125,189,72,239,180,241,119,115,117,122,160,175,64,247,232,239,66,165]},{"1815907":[56,142,128,132,138,143,10,20,116]},{"1815917":[72]},{"1815919":[248,66,221,128,175,78,53,4,127,5,245]},{"1815931":[171]},{"1815933":[255]},{"1815935":[255,181,196,125,126,3,120,246,224,84,210,84,48,164,169,105,124,195,199,131,255,247,254,63,207,87,199,255,239,85,253,143,191,56,177,2,129,73,8,48,6,184,196,16,196,3,12,4,211,8,71]},{"1815987":[255,49,199,48,235,56,23,16,191,2,245]},{"1815999":[239,47,159,58,30,57,150,155,133,183,206,186,61,215,117,79,67,241,255,245,255,239,181,188,134,249,207,245,206,171,250,255,184,1]},{"1816034":[16,32,72,98,219,1,115,129,55,130,6,6,64,160]},{"1816049":[255,4,251,141,17,62,195,58,70,49,255,33,221,79,251,206,32,143,177,255,98,27,2,247,196,58,133,255,12,122,45,236,154,121,6,243,29,161,89,239,19,195,63,75,179,163,119,41,10,150,135,16,31,30,27,24,31,32,62,4,62,72,94,116,179,120,247,224,111,224,255,224,215,192,255,192,63,128,255,109,186,91,162,27,232,23,241,157,193,204,96,185,197,253,5,93,222,127,254,250,249,253,243,247,251,255,227,245,205,255,207]},{"1816161":[202]},{"1816163":[196,5,9,66,19,9,202,32,68,73,174,5,64,33,116,1,250,2,245,12,226,4,121,24,167,16,111,48,207,239,39,95,119,159,255,111,127,95,255,187,219,189,253,191,215,95,151,15,7,223,211,207,229,159,78,255,192,127,192,63,128,136,192,168,112,12,240,90]},{"1816232":[49,128,187,4,61,2,127]},{"1816240":[39,240,15,128,3,76,5,250,14,113,96,155,64,189,40,215,211,119,183,166,207,223,255,255,254,244,255,254,255,255,159,127,219,107,247,180,239,135,255,95,253,245,254,84,255,171,159,1,4,160,42,81,88,34,160]},{"1816296":[2,8,171]},{"1816300":[84]},{"1816302":[254]},{"1816304":[83,20,132,42,133,90,95,160,244,3,84,171,171,84,129,126,188,22,252,249,255,85,255,184,255,241,255,251,255,255,254,255,254,23,255,216,255,85,255,184,255,241,255,251,255,255,255,65,34,207,32,7]},{"1816357":[254]},{"1816359":[87]},{"1816361":[47]},{"1816363":[69]},{"1816365":[35,190]},{"1816368":[16,4,216,32,1,84,168,16,208,33,186,65,220,35,65,190,247,155,255,180,61,82,63,170,255,196,255,218,255,88,191,191,95,147,255,180,94,49,254,171,245,206,255,218,255,88,127,63,168,69]},{"1816419":[79,163,76,1,118,10,245]},{"1816427":[255]},{"1816429":[255,64,215,18,33,176,4,49]},{"1816438":[137,34,10,196]},{"1816443":[218]},{"1816445":[88,40,87,223,32,255,128,223,32,251,60,125,242,255,34,255,48,255,240,224,31,160,223,112,143,188,123,243,124,187,102,244,59,254,241,63,192,95,160,175,80,71,168,142,97,68,187,11,244,1,222,31]},{"1816498":[95,128,143]},{"1816502":[83,40,28,96,68,34,11,48,33,208,85,175,239,17,213,40,127,144,247,10,223,32,255]},{"1816526":[246,5,6,252,3,253,3,255,129,109,1,252,161,94]},{"1816541":[255,173,86,251]},{"1816546":[252,3,254,1,254,2,255]},{"1816554":[126,129,255]},{"1816558":[83,168,252]},{"1816562":[252,1,252]},{"1816566":[108]},{"1816568":[252]},{"1816570":[94]},{"1816572":[255]},{"1816574":[86]},{"1816576":[82,98,162,27,211,229,251,80,211,18,235,213,213,59,119,24,48,143,19,239,1,191,128,47,128,109,144,174,56,215,189,90,238,16,253,3,254,1,255]},{"1816616":[255]},{"1816618":[127]},{"1816620":[239]},{"1816622":[199,48,1]},{"1816626":[168,2,54,1,43]},{"1816632":[65]},{"1816634":[174]},{"1816636":[214]},{"1816638":[74,16,95,239,255,253,255,254,245,95,254,235,126,220,255,238,111,122,48,255]},{"1816659":[253]},{"1816661":[254]},{"1816663":[85]},{"1816665":[234,43,127,85,255,111,111,32,15,2,127,1,255,170,255,21,255,162,213,17,170,21,16,207]},{"1816690":[255]},{"1816692":[255]},{"1816694":[255]},{"1816696":[255]},{"1816698":[255,42,255,85,127,239,255,254,247,94,187,175,254,159,255,184,185,209,255,236,245,50]},{"1816721":[254,2,86,65,235,174,190,87,255,191,191,127,255,255,255,1,255,169,253,20,254,97,81,71,174,110,76,19,128,207]},{"1816752":[255]},{"1816754":[255,2,255,1,255,174,255,81,255,179,255,127,255,255,251,174,235,239,247,238,255,210,254,144,244,160,184,16,84,2,1,171,187,251,85,247,255,255,126,254,255,255,255,255,255,255,85,254,4,84,25,171,45]},{"1816808":[110,136,95,1,239,2,255,1,255,1,255,171,255,84,255,255,254,119,255,254,255,253,255,254,255,236,252,77,253,128,16,130,160,64,66,171,1,23,42,255,87,252,255,255,255,255,255,127,127,127,253,63,254,255,213,255,16,170,178,1,127,34,127,197,191,94,63,214,255,169,255,42,255,85,254,254,255,221,255,58,63,33,255,41,255,86,255,213,252]},{"1816898":[16]},{"1816900":[132,4,46,127,21,63,168,253,80,255,16,119,255,191,255,127,251,255,209,255,234,255,86,255,170,255,200,255,63,239,255,77,255,126,255,46,255,149,255,171,255,85,255,191,255,16,255,50,255,129,255,209,255,106,253,86,255,170,119,200,129,1,46,63,90,255,80,249,96,243]},{"1816971":[213,24,234,18,200,254,255,208,255,160,255,14,243,132,243,32,245,24,234,18,202,255,255,255,111,255,95,251,247,251,127,247,247,247,239,239,231,255]},{"1817010":[255,144,255,160,245,10,247,136,213,42,234,21,192,63,119,255,149,253,42,186]},{"1817031":[85]},{"1817033":[232,16]},{"1817036":[117]},{"1817038":[157,6,8,255,194,127,197,191,170,255]},{"1817049":[232,50,16,117,69,181,179,255,247,255,255,191,255,255,255,255,255,221,255,239,207,255,213,255,8,253,2,250,5,85,170,232,23,34,221]},{"1817085":[255,12,251,112,226,88,192,12,164,2,10,5,3,129,1,90]},{"1817102":[80,5,148,234,34,224,89,250,14,3,5,7,171,131,94,91,255,250,235,103,241,231,254,249,255,242,253,253,215,253,251,254,250,85,230,153,214,45,161,94,4,255,2,255,40,215,4,251,5,255,119,54,119,60,47,31,46,6,45,26,165,139,161,204,66,172,58,53,192,10,97,86,80,75,234,79,216,141,244,199,176,231,183,166,62,128,235,147,239,3,223,10,253,137,223,198,251,161,18,237,129,127,20,239,161,254,144,255,114,255,24,255,28,255,64,64,240,168,208,85,244,222,206,90,187,110,178,113,86,182,181,105,132,32,239,116,205,16,119,15,55,27,52,144,50,5,107,151,35,81,245,206,146,161,15,34,27,66,144,94,45,42,100,155,114,143,114,141,51,206,140,243,154,229,30,229,207,242,48,36,54,160,45,74,17,23,171,2,139,3,82,138,61,129,201,134,157,2,123]},{"1817302":[81,28,250,229,116,122,35,36,193,135,130,219,246,81,215,135,190,82,255,174,251,6,252,4,255,1,76,183]},{"1817331":[255]},{"1817333":[255,236,181,22,249,128,255,220,251,250,125,207,192,107,65,24]},{"1817350":[89,3,27,2,23,4,48,13,100,12,215,117,85,146,161,99,96,228,224,97,107,227,92,223,25,131,118,104,145,173,103,156,224,31,100,159,231,27,216,40,133,125,61,194,185,70,127,128,255]},{"1817400":[127,128,241,14,248]},{"1817406":[236,19,155,10,148,149,177,124,218,150,72,100,146,80,93,192,85]},{"1817424":[129,64,198,101,31,5,48,88,13,97,5,229,2,2]},{"1817439":[42,196,125,72,188]},{"1817445":[232,23,200,87,216,63,128,255]},{"1817454":[213,42,125,130,252]},{"1817460":[233,16,199,35,202,135,58,63,253,127,213,255,97,223]},{"1817475":[95]},{"1817477":[170]},{"1817479":[128,64,64,88]},{"1817484":[249]},{"1817486":[85]},{"1817488":[62,160,95,128,170]},{"1817494":[192,32,224,32,5,167]},{"1817501":[4,168,170,95,64,127]},{"1817508":[255]},{"1817510":[95,224,255,64,93,162,251,4,85,2,97,31,32,255,85,255,95,191,223,63,88,255,251,255,253,255,9,14,168,132,162,223,136,16,16,16,1]},{"1817548":[128]},{"1817550":[16]},{"1817552":[200,31,52,13,1,196,152,6,136,156,64,234]},{"1817565":[87,138,239,28,5,2,202,189,70,249,6,235,20,85,170,168,87,16,101,12,56]},{"1817587":[129,56,195,233,255,99,239,21,255,168,255,154,255,232,255,128,253]},{"1817605":[255,170]},{"1817608":[17]},{"1817610":[49,16,136,2]},{"1817616":[151,128,127,2,255]},{"1817622":[170]},{"1817624":[17]},{"1817626":[33,154,2,85,234,255,151,104,253,2,255]},{"1817638":[255]},{"1817640":[255]},{"1817642":[101,154,168,87]},{"1817647":[21]},{"1817649":[127,128,255]},{"1817653":[255,255,255,255,255,101,239,168,255,234,255,34,254,48,93]},{"1817669":[190,170,17,85]},{"1817674":[15,4,6]},{"1817678":[20]},{"1817680":[220,48,238,155,255,69,187]},{"1817688":[85]},{"1817690":[43,244,100,249,190,235,253,3,109,147,190,65,255]},{"1817704":[255]},{"1817706":[11,212,6,153,20,65]},{"1817713":[254,32,238]},{"1817717":[255,238,255,255,255,43,251,102,255,190,255,55,7,97,85,64,206,138,117,85,10,255]},{"1817740":[175]},{"1817742":[21]},{"1817744":[177]},{"1817746":[78,123,31,149,255,37,95]},{"1817754":[255]},{"1817756":[175,80,191,234,1,47,149,186,206,176,255]},{"1817768":[255]},{"1817770":[255]},{"1817772":[175,80,21,64,33,70]},{"1817779":[15,64,31,138,255,245,255,255,255,175,255,191,255,76,38,95,19,9,146,200,103,49,8,143]},{"1817804":[255]},{"1817806":[87]},{"1817808":[135,132,4,168,255,155,83,79,23,46,255,112,255]},{"1817822":[255,168,148,127,132,123,88,175,103,140,137,110,143,112,255]},{"1817838":[87]},{"1817840":[254]},{"1817842":[248,4,16,105,32,3,129,7,143,255,255,255,255,255,40,104,128,192,128,192,130,104,81,6,255]},{"1817868":[247]},{"1817870":[255]},{"1817872":[215,215,191,255,127,255,253,127,190,239,220,43,255,12,255,10,64,191]},{"1817891":[127,64,191,234,21,87,168,247,8,243,4,245]},{"1817905":[127]},{"1817907":[191]},{"1817909":[127,130,255,81,255,247,255,251,255,255,255,159,175,48]},{"1817924":[4,8,171,4,85,130,255]},{"1817932":[255]},{"1817934":[255]},{"1817936":[112,239,255,239,251,255,85,255,171,255,144,111,25,230,255,170,16,64,16,239,12,241,174,80,214,41,255]},{"1817964":[255]},{"1817966":[85,8,16,255,16,255,4,255,170,255,84,255,255,255,255,255,247,255,247,236,106,71,54,24,250,160,85,78,255]},{"1817996":[247,17,255,11,23,255,141,229,239,237,91,91,146,27,151,127,166,196,52,228,4,25,59,134,24,247,164,176,231,204,168,105,91,241,235,235]},{"1818033":[247,40,255]},{"1818037":[255,8,255,1,119,150,255,6,255,20,207,217,204,49,18,117,46,233,8,251,88,254,153,149,18,247,117,52,247,235,229,159,226,91,228,191,128,31,96,95,160,255,129,8,8,17,145,104]},{"1818086":[160,96,64,64,193,192,130,128,132,132,7,254,14,254,127,234,159,246,63,212,63,200,127,232,122,93,223,72,235,8,214,86,239,14,246,23,189,168,243,165,251,147,111,215,131,35,96,66,129,96,2,98,227,180,162,242,142,235,160,190,124,106,191,180,62,110,221,245,92,92,95,87,121,120,32,223,128,127,34,223,129,126]},{"1818169":[254,67,190]},{"1818173":[249,5,247,233,77,187,39,241,15,119,143,191,15,239,223,207,191,255,159,236,205,126,255,254,29,94,63,53,151,59,127,125,255,127,127,16,14,130,132]},{"1818213":[46,166,168,197,168,203,176,141,112,159,128,32,215]},{"1818227":[191,192,61,64,63,8,255,64,255,128,255,32,255,42,255,42,245]},{"1818245":[255,234,255,247,250,63,241,191,87,255,238,42]},{"1818258":[170,128,192,192,4,238]},{"1818265":[242,224,241,192,215,238,238,255]},{"1818274":[127]},{"1818276":[3,60]},{"1818279":[17]},{"1818281":[13,32,78]},{"1818285":[104,238,17]},{"1818289":[255,170,117,252,63,21,251,13,255,14,255,40,255,17,255,25,247,51,249]},{"1818309":[255,136,255,20,247,186,217,84,251,255,226,209,192,213,224,4,4,176,56,8,16,8,152]},{"1818333":[80]},{"1818335":[226,63]},{"1818338":[29,6,251]},{"1818342":[129,70,8,239,8,103]},{"1818349":[175]},{"1818351":[29,192,63,194,63,4,251,246,207,231,255,99,255,175,255,29,255,250,246,220,254,108,253,192,191,18,255,185,175,193,124,106,254,243,160,222,2,239,193]},{"1818391":[128,34,48,128,169,192,65,192,234,95,1,252,1,127,3,63,64,199,8,128,86,73,183,64,149,160,95,2,253,128,126,64,255,40,223,22,255,180,255,20,255,63,251,127,251,251,117,247,254,191,117,21,255,131,255,128,126,127,59,123,81,113,33,246]},{"1818456":[53]},{"1818458":[21]},{"1818460":[131,128]},{"1818465":[239,174,1,222]},{"1818470":[255]},{"1818472":[255]},{"1818474":[127,128,127,128,62,193,16,43,80,175,33,222]},{"1818487":[255]},{"1818489":[255,128,255]},{"1818493":[127,192,255,255,219,223,238,255,255,255,255,255,255,255,255,255,223,213,255,223,203,207,206,255,251,255,81,255,175,255,5,223,2,213,128,48,207,48,69,4,160,174,1,80,138,250]},{"1818540":[253,2,127,128]},{"1818545":[251,138,116,91,164,80,175,37,218,5,250]},{"1818557":[255]},{"1818559":[127,243,80,247,246,255,236,255,232,255,255,255,254,143,127,223,239,94,241,254,255,253,238,255,104,255,255,255,30,15,15,207,5,161,66,1,254,2,253,128,95]},{"1818601":[255,224,5,240,11,250,5,189,64,1,242,2,236,32,200]},{"1818617":[255,26,228,4,251]},{"1818623":[255,255,4,255,16,223,116,255,246,223,144,255,250,254,255,254,251,12,247,52,211,116,215,254,247,176,159,251,254,254,190,254,122,251,8,203,52,171,80,1,222,111,160,4,91,65,174,129,20,247]},{"1818674":[195,24,135,88,33,214,31,224,164,90,16,239,106,145,127,168,253,16,218,152,80,129,170,69,64,45,64,221]},{"1818703":[255,215,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,215,168,239]},{"1818724":[103,32,255]},{"1818728":[255]},{"1818730":[255]},{"1818732":[255,98,255]},{"1818736":[255,87,255,255,255,223,255,255,255,255,255,255,255,157,255,255,240,32,85]},{"1818756":[138,21]},{"1818759":[215]},{"1818761":[23,10,255]},{"1818765":[255,2,255,255,255,255,255,255,255,255,255,255,255,241,255,255,255,125,255,223,14,255]},{"1818788":[255,32,255]},{"1818792":[255,168,255,14,255]},{"1818798":[255,130,255,241,255,255,255,223,255,255,255,87,255,241,255,255,255,125,64,5,80,163]},{"1818821":[23,2,255]},{"1818825":[247,162,255]},{"1818829":[255]},{"1818831":[119,255,255,255,255,255,255,253,255,255,254,92,255,255,255,221,255,255,170,255,4,255,168,255,2,254,9,255,163,255]},{"1818862":[255,170,255,85,255,251,255,87,255,253,255,246,255,92,255,255,119,221,16,127,169,253,80,255]},{"1818887":[127,65,62,128,156]},{"1818893":[254,2,253,238,255,86,255,170,255,80,127,105,190,177,188,160,254,2,255,255,145,255,171,255,85,127,47,127,150,190,46,254,94,255,255,255,110,253,86,255,170,127,208,62,105,156,115,254,161,253,2]},{"1818945":[255]},{"1818947":[253]},{"1818949":[250,11,80,21,8,251,128,215,32,255]},{"1818960":[168,255]},{"1818963":[253,128,250,11,91,149,29,251,251,215,247,255,255,255,87,255,255,255,127,255,255,95,223,127,255,255,255,255,255,255,168,253,2,250,133,80,175,136,119,128,127,32,223]},{"1819007":[255,5,128,45]},{"1819012":[95]},{"1819014":[117,2,248,7,225,29,134,123,164,84,5,133,47,45,95,95,255,125,255,248,255,193,254,130,255,4,255,255,253,255,255,255,125,247,248,255,195,220,131,248,12,80,128,127,2,253]},{"1819061":[255,130,127,7,255,31,255,123,255,92,255,125,10,220,1,237,18,161,85,66,170,68,95,170,191,80,239,125,122,251,208,255,168,255,1,255,2,228,68,234,187,64,249,240,250,210,241,168,186,11,84,23,168,255]},{"1819116":[238]},{"1819118":[86,32,14,245,35,223,18,255,95,255,191,255,255,255,255,255,239,223,252,2,130,85,64,170]},{"1819143":[2,168,191,64,255,128,255,2,253,255,233,253,40,255]},{"1819158":[253]},{"1819160":[232,168,192,242]},{"1819165":[63,2,255,233,234,42,85,21,170,255]},{"1819176":[255]},{"1819178":[205,192,128,64,2]},{"1819184":[2,255,87,255,191,255,255,255,255,255,63,255,63,255,253,255,107,214,89,122,116,148,225,175,215,159,226,170,128,192,40,224,223,94,154,85,85,171,79,241,216,224,77,247,71,247,71,127,95,247,248,117,190,63,254,255,223,95,255,255,159,159,63,63,128,255,141,199,65,129,1,129,167,39]},{"1819259":[128,104,232,192,192,186,170,71,191,4,4,24,248,248,248]},{"1819275":[6]},{"1819277":[4,2,4,185,67,187,68,69,251,251,27,5,141,255,249,253,249,253,251,83,84,4,67,190,255,230,255,252,253,254,255,254,255,254,255,7,248,239,251,65,65,29,29,115,113,1,1,3,3,1,1,144,197,56,166,2,62,42,63,128,143,178,191,16,7,18,23,235,68]},{"1819347":[161,128,161,225,90,64,168,89,191,229,135,197,255,125,67,157,131,223,65,69,129,166,64,185,81,133,117,253,37,56,255,125,254,221,62,222,191,255,95,254,71,250,111,250,39,132,159,62,204,208,160,28,60,110,14,143,191,148,197,133,167,129,249,212,7,113,23,86,186,79,147,143,83,133,248,23,233,231,153,28,221,6,119,158,62,197,87,212,167,229,229,102,103,122,135,83,161,121,129,161,64,186,114,91,179,58,216,217,185,1,255,171]},{"1819460":[68,68,85,85,255,255,170,34]},{"1819472":[84,255]},{"1819475":[255,85,187,255,255]},{"1819481":[136,85,119,255,255,255,255,84,84]},{"1819491":[255,238,255,170,255,255,255,255,255,255,255,255,255,171,255,255,255,17,17,85,85,119,119,136,136]},{"1819520":[18,252,212,89,86,92,55,231,151,6,59,36,194,133,105,63,69,241,91,170,89,173,224,7,32,39,165,142,147,240,190,201,74,68,76,169,234,240,224,240,128,177,228,254,113,224,239,233,187,255,230,191,31,7,31,15,254,175,89,70,159,141,14,18,169,3,104,41,118,228,205,109,210,82,55,50,110,76,223,158,86,85,150,178,151,75,124,243,247,15,109,136,209,17,224,38,168,2,77,13,32,163,31,159,61,63,127,127,255,255,255,255,253,255,244,248,95,227,32,224,226,98,215,215,174,174,89,89,85,255,234,64,196,196,18,127,255,85,128,128,42,42,133,133,170,127,64,191,197,59,255,146,170]},{"1819674":[127,255,255,255,127,255,42,170,64,63,254,255,237,255,255,255,255,255,213,255,250,255,85,255,255,63,1,1,18,18,255,255]},{"1819708":[42,42,5,5,119,255,255,68,69,69,117,245,255,127,1]},{"1819724":[128,128]},{"1819728":[136,255,68,187,69,186,255,127,128,8,254,254,255,255,255,255,136,136,68,187,255,255,138,255,255,255,255,255,127,255,255,255,119,255,255,187]},{"1819766":[117,117,247,247,1,1,128,128]},{"1819776":[127,255,187]},{"1819780":[85,85,31,10,128,251,225,191,227,125,241,191,128,255]},{"1819795":[255,85,170,224,234,26,4,82,128,26,2,66,128,128,128]},{"1819811":[255,255,255,255,255,255,255,255,255,253,255,255,255,127,255,255,255]},{"1819830":[21,21,251,251,127,127,255,255,127,127,254,254,190,28,91,93,136,189,188,89,205,141,243,151,193,201,1,255,24,227,95,162,122,194,207,148,110,48,20,10,90,116]},{"1819874":[28,229,249,251,253,255,123,255,255,255,251,251,163,243,255,255,251,227,6,2,7,7,231,231,199,199,237,237,215,223,251,255,251,226,64,64,80,95,127,255,104,160,64]},{"1819918":[120,168]},{"1819921":[255,226,29,68,191,127,112,128,10,151,55,63,63,135,47]},{"1819937":[4,64,29,251,255,47,127,255,255,255,255,127,127,255,255,251,255,255,191,4,4,208,80,117,117,72,72,192,64,80,80,183,250,191,42]},{"1819975":[255,255,85]},{"1819980":[10,10]},{"1819984":[8,243,42,213]},{"1819989":[255,255]},{"1819992":[170,1,255,255,255,255,255,255,12,69]},{"1820003":[213,255,255,255,255,255,255,255,255,245,255,255,255,186,247,255,255]},{"1820024":[254,254]},{"1820028":[10,10]},{"1820032":[247,40,28,163]},{"1820039":[255,255,85]},{"1820044":[2,2]},{"1820048":[49,70,163,92,4,255,255]},{"1820056":[170,64,255,255,255,255,255,255,168,238]},{"1820067":[92,251,255,255,255,255,255,255,255,253,255,255,255,17,238,255,255,4,4]},{"1820088":[191,191]},{"1820092":[2,2]},{"1820096":[76,237,161,190,68,68,22,255,255,94]},{"1820107":[1,2,2,1,3,253,130,250,69,69,187,255,22,161,10,255,254,254,254,255,253,15,12,64,69,254,255,233,255,255,255,255,255,253,255,254,255,243,188,191,31,1,1,22,22,245,245]},{"1820156":[3,3,1,1,215,3,15,135,77,73,207,88,15,23,223,212,15,56,159,136,52,10,128,121,104,180,45,179,32,114,115,147,71,231,199,23,227,225,7,118,207,253,219,251,223,253,220,252,168,248,168,248,62,195,249,255,48,63,100,122,162,191,51,47,69,127,103,95,255,63,175,95,199,47,239,87,255,111,255,213,255,207,255,21,255,255,215,255,169,237,16,255,146,255,32,255,16,255,232,255,63]},{"1820258":[39,216,81,46,168,215,2,109,202,21,224,47,2,21]},{"1820273":[255,40,255,70,255,111,255,125,255,255,255,223,255,255,255,255,92,255,255,255,253,255,255,255,255,255,255,255,255,255,79,92,92,254,255,253,253,127,255,255,255,69,255,8,253,48,255,92,163,254]},{"1820324":[253,2,127,128,255]},{"1820330":[69,186,8,247,128,79,163,255]},{"1820339":[255,2,255,128,255]},{"1820345":[255,186,255,247,255,207,255,255,81,255,251,253,94,255,255,85,254,251,255,245,255,255,255,16,80,187,251,94,94,240,248,255,255,214,246,63,127,84,254,16,175,187,4,92,163,240,15,84,170,210,45,53,202,84,171,175,255,4,255,163,255,15,255,170,255,45,255,202,255,171,255,112,31,58,69,253,18,255,234,119,255,255,255,223,251,234,249]},{"1820433":[208]},{"1820435":[64]},{"1820437":[16,234,234,140,156]},{"1820443":[250,180,248,87,251,64,239,128,127]},{"1820453":[239,234,21,4,251]},{"1820459":[255,144,105,64,185,47,127,63,191,239,255,21,255,251,255,255,255,111,251,189,251,1,254,56,199,108,147,255,192,245,10,255,128,111,208,191,232,1]},{"1820498":[1,1,24,16]},{"1820503":[192]},{"1820506":[128,128,208,208,104,232,46,209]},{"1820515":[254,2,253]},{"1820519":[63]},{"1820521":[255,128,127,64,191,40,215,208,255,255,254,253,255,63,255,255,255,127,255,191,255,215,255,168,247,128,127]},{"1820549":[255,224,223,64,223,186,197,244,11,254,129,32]},{"1820566":[128,128,192,192,192,192]},{"1820574":[128,128,127]},{"1820578":[126,129,239,16,135,120,138,181,128,127]},{"1820589":[255,128,127,128,255,129,255,16,255,120,255,21,127,63,255,255,255,127,255,207,251,103,223,175,255,1,255,8,255]},{"1820619":[255]},{"1820621":[255,128,127,203,139,119,21,175,42,1]},{"1820632":[8,8]},{"1820640":[116,138,202,36,213,42,255]},{"1820648":[246,9,95,160,63,192,5,250,1,254,49,238]},{"1820661":[255]},{"1820663":[255,1,255,160,255,192,255,250,255,255,255,239,139,137,198,83,140,144,102,172,99,43,255,21,255,255,255,171,1,166,134,70,4,144]},{"1820698":[169,33,43,10,21,1]},{"1820705":[191,206,49,111,182,153,98,102,153,102,152,245,10,254,1,64,191,32,255]},{"1820725":[249,70,251,144,255,137,254]},{"1820733":[255]},{"1820735":[255]},{"1820737":[127]},{"1820739":[255]},{"1820741":[255]},{"1820743":[255]},{"1820745":[255]},{"1820747":[255]},{"1820749":[255]},{"1820751":[127,255,255,255,255,255,255,247,255,255,255,253,255,254,255,247,255,255,128,255]},{"1820772":[255]},{"1820774":[255,8,255]},{"1820778":[255,2,255,1,255,8,255,127,255,255,255,255,255,247,255,255,255,253,255,254,255,247]},{"1820801":[255]},{"1820803":[255]},{"1820805":[255]},{"1820807":[255]},{"1820809":[255]},{"1820811":[255,16,255,16,239,255,255,85,255,251,255,85,255,171,255,5,255,186,255,53,207,255]},{"1820834":[255,170,255,4,255,170,255,84,255,250,207,117,255,250,255,255,255,85,255,251,255,85,255,171,255,5,223,138,255,5]},{"1820865":[255]},{"1820867":[255]},{"1820869":[255]},{"1820871":[255]},{"1820873":[255]},{"1820875":[255]},{"1820877":[255,128,127,234,255,212,255,170,255,81,255,234,255,85,255,170,255,149,255,255,21,255,43,255,85,255,174,255,21,255,170,255,85,255,234,255,234,255,212,255,170,255,81,255,234,255,85,255,170,127,149,4,218,34,189]},{"1820933":[254,2,253]},{"1820937":[254,10,245,24,231,8,245,132,222,34,191,128,254,2,255,128,254,26,247,24,231,8,253,223,95,159,191,255,127,255,255,255,127,247,247,255,231,255,255,218,165,189,66,254,129,253,2,254,129,245,10,231,24,245,10,94,129,189,2,94,129,252,3,94,129,189,2,95,160,191]},{"1821008":[95,222,191,189,95,222,255,252,95,222,191,189,95,255,191,191,254,255,253,255,254,255,252,255,254,255,253,255,255,255,255,255,129,127,2,255,129,127,3,255,129,127,2,255,160,95]},{"1821055":[255,152,123,37,247,26,234,177,123,74,175,53,207,154,123,181,71,251,156,252,38,254,11,241,53,250,15,245,5,254,154,253,5,159,224,45,210,15,224,63,64,26,160,15,192,159,224,15,64,123,252,254,253,238,255,123,255,191,255,207,255,127,255,79,255,160,191,68,251,170,253]},{"1821127":[251,128,255,65,254,171,250,4,251,160,239,68,127,174,251,10,247,132,255,69,255,171,255,10,63,224,48,196]},{"1821156":[174,8,14,10,132,4,69,4,175,14,206,10,143,255,251,255,245,251,253,243,251,255,250,255,244,251,241,255,4,251,25,238,183,72,117,138,207,48,253,2,127,128,49,206,4,255,27,251,187,251,127,255,207,255,255,255,127,255,59,255,4]},{"1821218":[27,14,187,8,127,10,207]},{"1821226":[255,2,127]},{"1821230":[59,10,251,255,224,255,68,255,128,255,48,255]},{"1821243":[255,128,255,196,255,136,200,40,232,128,64,172,124,134,78,36,228,143,71,171,103,207,127,79,127,79,127,95,111,87,111,79,127,71,119,71,115,159,159,63,63,23,23,187,191,25,31,51,55,16,23,180,183,224,96,192,192,232,224,84,212,254,254,204,196,239,231,75,195,10,12,2]},{"1821316":[42,42,18,16,170,170,82,80,250,250,118,120,253,251,249,251,251,251,249,251,251,251,249,251,251,251,249,247,246,255,250,251,210,251,234,251,86,255,174,255,6,255,142,255,9,9,5,1,45,41,21,17,173,173,85,85,253,253,113,113,165,39,6,1,134,23,18,2,130,66,100,68,141,73,132,6,6,119,189,165,19,15,158,240]},{"1821401":[118,192,190,11,120,7,60,54,222,229,89,111,235,240,14,87,237,158,99,120,239,124,197,253,19,254,27,238,25,255,13,191,100,255,34,191,67,253,3,84,165,128,208,4,244,46,204,134,228,151,228,23,44,71,229,5,184,84,232,180,136,196,218,244,234,212,91,60,179,213,27,39,39,100,68,166,230,207,223,231,231,87,87,191,55,7,7,218,234,191,220,27,250,49,241,25,249,40,232,200,104,40,232,136,136]},{"1821508":[170,170,85,85,63,255,5,255]},{"1821517":[95]},{"1821519":[175,255,255,255,255,255,255,255,255,255,63,255,5,95]},{"1821534":[175]},{"1821536":[119,255,255,255,85,255,170,255,192,255,250,255,95,95,175,175,136,136]},{"1821556":[170,170,85,85,63,63,5,5,160]},{"1821566":[80]},{"1821568":[201,137,97,237,73,201,74,203,77,68,97,251,71,85,105,121,157,242,247,88,218,116,251,116,80,127,255,65,87,105,127,67,113,225,255,235,243,235,211,227,119,111,231,231,231,231,231,231,150,142,22,14,31,7,60,44,152,8,14,30,138,154,140,148,191,222,63,190,127,92,63,174,148,128,65,65,140,255]},{"1821647":[254,97,8,193,96,3,64,208,102,235,235,255,255,255,140,254]},{"1821664":[255,255,255,255,255,255,255,255,127,255,190,255,115,255,254,254,183,183,31,31,191,191,25,25,148,148,65,65,140,140,1]},{"1821696":[46,46,149,21,63,63,86,87,192,240,15,170,93,93,248,111,255,255,127,127,255,255,255,254,240,192,176,26,93,98,47,151,209,255,234,255,192,255,169,255,58,250,191,191,63,127,240,240,46,46,149,149,63,63,86,86,207,202,69,5,192,64,95,95,169,168,64,64,168,168,84,84]},{"1821769":[5,250,170,85,85,1,254,254,254,255,255,255,255,255,255,5]},{"1821786":[5,175,85,170,254,255,87,255,191,255,87,255,171,255,173,173,255,255,255,255]},{"1821808":[169,169,64,64,168,168,84,84,250,168,80,80]},{"1821822":[255,254,251,63,255,62,126,4,62,43,104,233,40,33,84,84,1,254,64,32,1,32,155,129,197,234,253,124,214,246,85,171,254,87,255,255,255,255,255,255,255,255,149,253,255,255,254,255,168]},{"1821872":[223,223,223,223,126,126,20,20,106,104,9,9,1,1,255,254,99,47,33,237,227,207,81,93,251,231,169,181,219,103,57,213,164,154,166]},{"1821908":[196,178,246,48,172,98,174]},{"1821916":[76,146,14,32,255,251,239,251,127,235,255,219,231,227,135,195,199,211,151,179,85,93,87,71,181,165,183,135,125,85,95,55,173,245,79,119,96]},{"1821954":[106,34,80]},{"1821958":[168,8,128,128,128]},{"1821964":[171,171,215,87,31,31,21,55,47,47,87,223,255,127,127,255,255,127,127,255,255,255,255,255,255,255,255,255,255,127,255,255,212,127,168,255,224,224,200,200,208,208,32,32,128]},{"1822012":[171,43,87,87,8,8]},{"1822020":[32,32]},{"1822024":[160,169,104,111,189,253,55,87,255,255,255,255,255,255,255,255,249,240,255,248,237,162,203,140,247,255,255,255,223,255,255,255,89,249,151,255,127,255,212,216,8,8]},{"1822068":[32,32]},{"1822072":[166,160,104,104,144,144,63,26]},{"1822086":[8,8,31,127,209,209,255,255,104,232,255,255,255,255,255,255,247,255,127,31,255,255,255]},{"1822110":[168,87,255,255,255,255,255,255,255,255,96,127,46,255,255,255,64,64]},{"1822136":[159,31,209,209]},{"1822142":[191,23,2,1,1,7,15,11,130,138,4,244,86,86,208,209,203,213,252,254,255,248,249,252,122,241,250,10,252,250,212,42,210,40,255,255,255,255,247,255,251,251,244,247,175,255,252,255,21,5,1,1]},{"1822196":[10,10,5,1,15,6,83,82,6,7,250,177,31,40,63,80,127,106,127,40,127,234,255,108,255,234,255,172,135,159,47,207,85,31,23,151,149,63,19,23,21,63,83,83,8,240,208,208,106,224,232,104,234,192,236,232,234,192,172,172,207,191,175,223,159,127,151,127,63,255,23,255,63,255,83,255,255,175,255,21,255,43,255,5,255,55,255,69,255,139,255,5,80,255,234,255,212,255,250,255,200,239,186,255,116,255,248,255]},{"1822305":[175]},{"1822307":[21]},{"1822309":[43]},{"1822311":[5,48,23,64,5,128,11,2,5,255,255,255,255,255,255,239,255,103,255,239,255,223,255,255,255,255,199,255,239,251,249,255,121,255,255,255,95,255,252,255,117,42,255,16,255,2,251,134,255,10,255,128,255,3,255,10,255,18,213]},{"1822371":[239,4,249]},{"1822375":[121,10,245,33,94]},{"1822381":[252,128,117,197,255,239,255,249,255,249,255,245,255,255,255,252,255,253,255,245,255,255,255,237,231,255,199,255,127,255,127,253,255,255,243,170,255,4,255,138,239,48,223,128,253]},{"1822427":[255,2,223,12,255,160,95,4,251,144,103,24,255,16,111,128,255]},{"1822445":[255]},{"1822447":[243,95,255,251,255,103,255,199,239,127,255,127,255,255,255,243,255,85,255,255,255,253,255,254,255,125,255,254,255,221,251,254,247,234,251]},{"1822483":[191,2,127,1,255,130,255,1,255,38,255,9,255,64,191]},{"1822499":[255]},{"1822501":[255]},{"1822503":[255]},{"1822505":[255,12,243]},{"1822509":[251]},{"1822511":[247,191,255,255,255,255,255,255,255,255,255,255,255,251,255,247,255,198,249,171,254,65,254,235,255,81,255,170,255,80,255,170,255,57,185,124,255,191,254,20,255,190,255,95,255,175,255,87,255]},{"1822561":[255,41,215]},{"1822565":[254]},{"1822567":[255,16,239,10,245]},{"1822573":[255,2,253,255,255,214,255,253,254,255,255,239,255,245,255,255,255,253,255,179,76,175,88,223,96,239,240,207,112,191,248,22,249,166,249,108,76,212,216,160,96,16,208,184,176,96,248,235,249,249,249]},{"1822625":[255]},{"1822627":[127]},{"1822629":[255,128,127]},{"1822633":[191,32,223]},{"1822637":[255,160,95,255,255,127,255,127,255,255,255,127,127,223,255,255,255,95,255]},{"1822657":[255,184,71,84,171,234,21,208,47,226,45,240,15,232,23]},{"1822682":[24,8,56,40,48,48,139,116,1,254,3,252,1,254,2,253,8,239]},{"1822701":[239,17,222,116,255,254,255,252,255,254,255,253,255,247,231,215,207,206,239,47,255,5,250,3,255,1,254,11,255,5,255,11,247,5,255,47,10]},{"1822740":[3,2]},{"1822744":[11,10,5,1,3,2,5,1,245,10,255]},{"1822756":[253,2,127,128,245,10,254,1,253,2,254,1]},{"1822769":[255]},{"1822771":[255]},{"1822773":[255,128,255]},{"1822777":[255]},{"1822779":[255]},{"1822781":[255]},{"1822783":[255]},{"1822785":[127]},{"1822787":[255,128,95]},{"1822791":[55,160,197,84,9,154,101,189,68,255,255,253,255,255,255,255,255,255,255,255,255,223,191,223,159,255,128,255,2,255,32,255]},{"1822824":[127,10,255]},{"1822828":[191,96,187,192,255,127,255,253,255,223,255,255,255,245,255,255,255,159,255,31]},{"1822849":[239]},{"1822851":[255]},{"1822853":[255,128,247]},{"1822857":[87,66,55,160,85,16,230,142,239,68,255,255,255,125,255,255,255,253,255,255,255,255,255,239,97,255,187,255]},{"1822886":[255,138,255,168,255,2,255,10,255,1,239,158,255,68,255,255,247,125,255,87,255,253,255,245,255,254,128,63]},{"1822915":[127]},{"1822917":[255]},{"1822919":[255,1,255,162,255]},{"1822925":[95,8,255,170,63,21,127,250,255,85,255,254,255,93,255,255,255,247,255,191,21,255,234,255,5,255,170,255,1,255,162,255,160,255,8,63,234,127,149,255,250,255,85,255,254,255,93,255,95,255,247]},{"1822977":[254]},{"1822979":[255]},{"1822981":[255]},{"1822983":[127,64,255,128,253,80,255,165,255,160,254]},{"1822995":[255,160,255,208,255,170,255,86,255,170,255,80,255,255,95,255,255,255,95,255,175,255,85,255,171,255,85,255,175,254,161,255]},{"1823028":[255,160,127,208,255,170,253,86,255,170,255,80,23,160,43,70,15,230,15,208,1,250]},{"1823051":[253]},{"1823053":[255]},{"1823055":[255,23,183,43,111,15,235,15,223,129,251]},{"1823067":[253,160,255]},{"1823071":[255,255,255,249,255,253,255,255,255,255,127,255,255,255,95,255,255,160,95,70,185,230,25,208,47,250,133,253,2,255,160,255]},{"1823104":[142,126,241,21,161,31,254,1,94,1,173]},{"1823116":[5,160,10,64,239,142,255,145,255,129,255,212,95,94,175,173,5,165,10,74,159,224,155,132,129,158,212,213,254,255,253,255,255,255,255,255,127,255,31,255,31,255,1,255,1,255,2,253,160,95,64,191,169,190,64,111,170,191,80,91,146,107,104,148,237,18,86,1,169,255,192,95,234,175,244,80,254,130,255,64,255,232,255,92,233]},{"1823202":[240]},{"1823204":[250]},{"1823206":[255]},{"1823208":[135,232,67,212,232,250,92,245,190,255,239,255,255,255,255,255,111,255,151,255,18,255,161,95,42,213,9,246,4,251]},{"1823239":[255,136,223]},{"1823243":[162]},{"1823245":[142,86,7,42,255,11,255,4,255]},{"1823255":[211,168,139,93]},{"1823260":[249,4,255,130,42]},{"1823266":[11,2,4]},{"1823270":[44]},{"1823272":[252]},{"1823274":[255]},{"1823276":[119,136,174,5,213,255,244,255,251,255,255,255,255,255,255,255,251,255,47,249]},{"1823297":[199,96,162,4,192,111,180,199,135,226,162,69,130,202,144,79,120,74,120,72,124,84,103,79,127,79,255,88,234,213,229,31,31,126,126,31,31,119,119,223,95,122,122,218,90,213,85,232,232,141,140,235,235,152,144,40,168,141,136,63,186,191,53,6,82,6,132,70,6,252,84,92,92,12,14,212,6,140,2,83,7,133,7,7,69,85,253,253,253,255,253,47,45,115,113,94,95,150,151,254,253,254,255,94,95,14,15,38,39,114,115,169,9,121,17,187,185,3,3,163,3,241,1,249,33,253,113,197,69,234,74,231,117,155,107,200,119,78,251,44,31,24,111,197,254,110,18,247,169,11,4,231,168,83,152,17,180,68,220,238,93,58,175,191,63,14,142,175,39,155,155,189,23,212,5,255,17,147,108,137,118,180,123,144,127,36,255,192,127,234,63,135,207,34,96,7,190,115,240,165,188,96,96,13,173,93,159,31,209,245,59,206,32,20,234,156,32,85,233,29,97,167,25,207,69,38,166,62,116,230,150,46,70,228,212,103,247,159,175,170,104,173,204,75,232,125,140,123,154,127,156,26,242,80,224,64]},{"1823554":[254,64,255,250,239,239,64,72,235,100,48,32,40,192]},{"1823569":[64,64,190,250,255,255,255,247,255,112,244,47,47,215,55,254,254,255,191,255,255,239,239,72,72,228,228,175,175,231,231,191,190,65,1]},{"1823606":[16]},{"1823608":[191,8,31,4,223,143,31,7,131,147,160,56,201,216,170,170,74,202,174,38,70,70,115,122,215,99,127,195,222,226,237,211,77,241,99,77,206,224,115,196,165,39,166,166,230,230,167,183,231,247,38,54,227,243,107,123,206,22,77,28,13,28,93,29,159,159,217]},{"1823676":[157,137,149,5]},{"1823682":[3]},{"1823684":[255,42,255,85,85,85,129]},{"1823692":[93,34,42]},{"1823699":[3,42,215,85,255,255,255,126,126,128,162,85,213,171,171,95,95,255,215,255,255,85,85]},{"1823724":[162,162,85,85,255,171,252,92,40]},{"1823736":[170]},{"1823738":[255]},{"1823740":[255,162,255,85,15]},{"1823746":[183,180,208,211,151,113,158,143,192,120,223,56,234]},{"1823760":[128,247,144,247,160,188,125,138,128,128,120,64,24,63,21,21,112,103,240,243,220,228,119,255,159,159,125,125,63,63,21,21,184,47,60,47,123,103,175,175,127,31,135,5,224,32,255,21,255,44,255,127,89,182,255,231,174,255]},{"1823820":[228]},{"1823822":[170]},{"1823824":[4,215,128,125,16]},{"1823830":[231,8]},{"1823837":[228,85,85,40,251,2,2,16,144,255,255,255,255,85,85,255,255,85,85]},{"1823857":[255,253,127,111,255,255,255,255,255,255,85,27,27,255,85,255,139,255,222,51,207,252,101,145,215,162,6]},{"1823885":[123,200,5,1,117]},{"1823891":[117,8,10,101,27,81,42,11,169,123]},{"1823902":[55,58,138,254,138,171,9,9,231,247,252,255,254,255,251,251,15,15]},{"1823921":[255,84,255,246,255,248,255,199,198,85,85,133,129,240]},{"1823936":[251,183,249,245,251,247,109,225,175,227,157,145,135,211,231,235,132,106,142,128,4,170,30,84,212,126,134,92,220,54,76,54,159,219,119,115,95,91,39,39,79,79,207,207,191,159,255,231,37,253,15,247,165,253,219,243,49,249,243,187,105,17,185,161,64,127,128,170,128]},{"1824006":[255,21,117,117,87]},{"1824012":[85]},{"1824016":[255,192,170,128]},{"1824022":[21,127,255,255,168,168,170,170,127,255,63,127,170,170,127,127,127,127,245,245,128,128,170,170,127,127,192,64,85]},{"1824052":[255,127,128]},{"1824056":[138,128,255,128,255,170,255,127,19,213,49,147,17,19,250,58,75,79,32,42,87,7,2]},{"1824080":[233,38,138,1,45,38,46,229,223,219,234,224,175,175,253,253,244,252,213,221,245,251,251,255,116,127,42,42,167,167,253,253,59,62,126,90,255,251,20,20,171,43,213]},{"1824124":[248,160,255,253,146,193,228,159,127,170]},{"1824135":[4,234,234]},{"1824139":[255,255,170,253]},{"1824144":[102,154,132,96,160,85,250,235,255,255,255]},{"1824156":[170,247,2,2,131,131,31,31,10,43,21,255,21,255,255,255,255,247]},{"1824176":[124,116,224,100,245,213,254,254,234,234]},{"1824188":[8]},{"1824190":[255]},{"1824192":[255,67,191,196,45,126]},{"1824199":[117,236,245,28,244,252,164,220,5,112,140,161,26,44,129,140,138,244,224,244,26,164,88,37,43,15,15,94,94,124,253,114,248,28,254,252,254,252,94,13,15,240,79,161,158,130,175,255,249,235,233,3,3,163,1,242,3,255,170,255,160,255,32,255,128,247,170,255,133,253,42,127,4,85,255,95,95,223,255,126,127,28,127,106,63,195,255,139,255,170]},{"1824290":[160,160,32]},{"1824294":[129,128,225,202,144,197,20,42,112,4,255,255,95,255,255,255,127,255,55,255,63,255,253,255,254,255,255,47,255,21,255,191,255,87,127,255,255,95,95,191,255,31,208,255,232,255,64,255,161,255,139,255,21,255,239,255,223,191]},{"1824353":[47,2,21]},{"1824357":[191,9,86,11,244,181,74,15,176,63,64,127,255,255,255,255,255,254,255,116,255,234,255,80,255,160,255,255,251,255,255,255,255,255,255,255,255,255,255,255,221,255,255,6,255,65,255,187,255,87,255,255,255,255,255,209,213,250,251,2,249,65,190,187,68,87,168,255]},{"1824426":[255]},{"1824428":[209,46,250,4,249,255,190,255,68,255,168,255]},{"1824441":[255]},{"1824443":[255,46,255,4,255,247,243,255,243,245,255,255,255,253,127,255,255,255,79,255,170,224,247,28,191,223,223,230,238,102,119,175,239,68,76,170,170,236,23,16,227,213,42,230,25,100,155,175,16,68,179,170,85,19,255,227,255,42,255,25,255,155,255,16,255,179,255,85,255,85,243,254,247,213,255,234,127,217,246,255,162,255,16,254,161,174,247,9,239,63,127,159,255,54,118,34,34]},{"1824541":[16,128,160]},{"1824545":[243]},{"1824547":[247,21,234,74,53,16,239,34,221]},{"1824557":[239,128,95,251,247,247,255,234,255,117,255,239,255,221,255,239,255,95,255]},{"1824577":[255,162,255,67,252,175,248,245,10,250,37,68,187,161,94,255,255,223,255,254,252,248,248,128]},{"1824603":[32]},{"1824606":[1]},{"1824609":[255,130,125,64,191,168,87]},{"1824617":[255]},{"1824619":[223]},{"1824621":[255]},{"1824623":[255,255,255,125,255,191,255,87,255,255,255,223,255,255,255,255,255,63,192,111,152,252,7,254,17,16,239,224,95,18,175,128,127,194,192,144,144,184,24,8,8]},{"1824668":[2]},{"1824673":[255]},{"1824675":[255]},{"1824677":[239]},{"1824679":[247,11,244,7,248,143,112,127,128,255,255,255,255,231,247,247,255,244,255,248,255,48,255,128,255,64,191,163,94,5,248,6,248,8,253,18,254,172,223,71,255]},{"1824722":[3,2,1,3,2,3,11,9,16,1,141,1,71]},{"1824737":[255,2,253,9,247,122,134,244,8,252,2,255,1,255]},{"1824752":[255,255,253,255,244,252,133,252,3,253,1,252]},{"1824765":[254]},{"1824767":[255,43,255,21,250,57,255,117,255,127,127,255,127,127,253,127,255,43,10,16]},{"1824788":[57,40,245,149,255,47,127,221,125,61,127,63,245,10,255]},{"1824804":[215,40,234,149,80,47,162,213,66,184,192,21]},{"1824817":[255]},{"1824819":[255]},{"1824821":[255]},{"1824823":[127,128,127,8,247,133,250,42,213,254,164,253,116,255,160,255,110,254,184,252,40,250,201,72,181,95,255,191,255,95,255,255,255,87,255,255,255,255,255,247,247,91,160,139,64,95,160,145]},{"1824872":[71,168,215,129,55]},{"1824878":[255,16,255,95,255,191,255,95,255,255,255,87,255,126,255,255,255,231,232,5,80,11,160,145,80,47,80,84,42,207]},{"1824909":[127,160,255,255,255,255,255,255,255,255,255,143,223,133,239,223,255,87,255,255,2,255,4,127,10,255]},{"1824936":[223,218,239,106,255,160,255,168,255,253,255,251,255,245,255,255,223,37,239,149,255,95,255,87]},{"1824961":[87,10,31]},{"1824965":[87,10,255]},{"1824969":[31,168,255,4,255]},{"1824975":[255,255,255,245,255,255,255,245,255,255,255,85,255,187,255,21,255,255,168,255,74,255,160,255,10,255,160,255,170,255,68,255,234,255,87,255,181,255,95,255,245,255,95,255,85,255,187,255,21]},{"1825025":[255,130,219,16,253,160,159,18,254,16,255]},{"1825037":[255]},{"1825039":[255,232,255,66,219,136,253,48,159,136,254,68,255,170,255]},{"1825055":[255,255,23,217,155,253,117,191,143,254,118,255,187,255,85,255,255,255,232,219,100,253,138,159,112,254,137,255,68,255,170,255]},{"1825089":[255]},{"1825091":[223,128,255]},{"1825095":[247,32,127,3,124,3,248,10,240,168,255,100,255,42,255,24,255,136,127,3,125,3,251,10,250,255,87,255,187,255,213,255,239,127,247,125,125,255,255,255,255,255,168,223,100,255,42,247,24,255,8,124,131,248,7,240,15,1,224,2,192]},{"1825157":[224,10,192,1,160,43]},{"1825164":[21]},{"1825166":[183]},{"1825168":[1,225,2,194]},{"1825173":[224,10,202,1,161,43,43,21,21,191,183,255,255,255,255,255,255,255,255,255,255,255,255,255,255,247,255,224,31,192,63,224,31,192,63,160,95]},{"1825211":[255]},{"1825213":[255,8,247,94,1,149]},{"1825220":[94,1,85]},{"1825224":[121,6,222,11,253,8,176,72,95,94,191,151,95,94,255,95,123,120,255,246,255,228,247]},{"1825248":[254,255,215,253,254,255,95,245,252,250,250,221,232,236,15,64,1,255,40,215,1,255,160,95,6,255,15,241,12,243,79,255,145,104,130,85,177,10,14,81,224,10,144,64]},{"1825293":[170]},{"1825295":[27,255,128,253,40,255,228,245,160,255,128,255]},{"1825308":[255]},{"1825310":[228]},{"1825312":[134,232,42,85,228,170,170,81,149,138,47,64,85,170,255]},{"1825328":[110,255,87,255,10,255,91,255,31,255,111,255,255,255,255,255,192,128,72,128,74,144,79,144,64,152,202,144,78,145,207,144,207,255,71,183,82,231,79,239,80,224,74,234,90,234,95,239,95,223,151,23,216,85,215,87,208,88,82,82,210,82,215,208,175,47,111,167,48,176,55,183,48,176,178,178,50,178,48,176]},{"1825410":[2]},{"1825412":[186]},{"1825414":[248,4,4]},{"1825419":[5,245,3,228,27,253,253,221,255,185,253,250,255,4,7]},{"1825435":[6,246,246,167,190,254,255,222,223]},{"1825445":[85,253,249,5,7,5,3,247,241,191,1,255,255,253,221,3,1,248,248,4,4,1,1,241,241]},{"1825472":[30,111,67,47,139,79,5,111,18,101,155,166,232,215,194,191,8,252,84,199,176,193,24,68,8,70,128,35,96,224,169,51,154,8,228,4,186]},{"1825510":[53,140,62,128,31,130,254,192,165,201,165,127,171,127,181,127,178,127,185,127,252,255,223,191,118,31,21,213,132,100,12,252,160,241,194,248,128,240,230,125,65,160,29,41,69,25,238,131,32,143,14,66,68,202,14,226,21,27,45,253,213,229,244,245,181,180,220,118,212,212,252,118,5,4,18,224,27,233,10,232,74,232,14,236,46,236,10,232,238,236,240,32,36]},{"1825604":[42]},{"1825606":[95,160,1]},{"1825610":[189,2,171,84,255,10,47,239,213,219,42,255,31,191,1,1,189,189,161,245,253,255,239,239,17,17]},{"1825637":[213,191,31,1,1,189,189,245,160,245]},{"1825648":[31,15,255,21]},{"1825654":[31,31,1,1,189,189,160,160]},{"1825664":[217,93,103,123,156,26,198,16,94,29,83,158,215,12,215,7,223,228,101,214,223,232,162,183,25,47,61,40,8,45,160,47,107,251,119,127,107,121,210,182,106,58,74,62,106,49,72,56,150,14,128,24,87,75,169,189,21,15,49,46,30,7,55,47,129,128,130,128,192,192,223,207,207,207,113,247,180,116,251,27,254,254,125,253,192,127,144,111,96,191,171,74,209,41,115,172,254,254,253,253,192,255,192,224,224,240,250,125,127,63,47,175,127,126,127,125]},{"1825786":[152,152,199,71,80,144]},{"1825794":[32]},{"1825796":[85]},{"1825798":[247,247,255,255,255,255,65,63,56,104,255,255,223,223]},{"1825813":[170,255,8,23,232,191,64,74,202,199,143,255,255,223,223,85,170,8,247]},{"1825833":[23]},{"1825835":[191,10,245,127,255,255,255,255,223]},{"1825854":[240,240,1]},{"1825860":[68]},{"1825862":[127,127,255,254,255,255,3,255,143,140,254,254,255,255]},{"1825877":[187,248,135,81,174,248,7,191,188,117,255,254,254,255,255,68,187,128,120]},{"1825897":[80]},{"1825899":[248,172,83,250,255,255,254,255,255]},{"1825918":[5,4,20,4,60,11,89,1,244,248,248,63,252,191,255,255,127,255,237,237,203,204,15,175,28,239,204,180,79,179,1,254,96,31,231,231,207,207,85,173,8,19,132,11,3,12]},{"1825965":[1]},{"1825967":[224,250,226,240,192,14,4]},{"1825984":[127,251,3,103,183,51,213,20,19,230,93,108,247,168,233,222,188,14,244,158,120,71,206,248,236,250,46,96,86,182,32,192,239,255,227,251,51,27,19,59,211,59,191,15,9,15,15,31,89,81,61,61,236,8,15,15,13,13,7,7,15,15,15,15,136]},{"1826050":[4]},{"1826052":[59]},{"1826054":[127,128,128,128,106]},{"1826060":[235,148,127,128,255,255,213,251,59,255,255,255,128]},{"1826074":[234,234,171,59,255,255,119,255,209,209]},{"1826085":[213,255,127]},{"1826089":[128,234,106,59,171,255]},{"1826096":[255,119,255,213]},{"1826102":[127,127]},{"1826106":[106,106,43,43]},{"1826114":[64]},{"1826116":[186]},{"1826118":[255]},{"1826124":[165,90,209,63,255,255,85,191,186,255,255,255]},{"1826140":[165,165,252,240,255,255,21,21]},{"1826149":[85,255,255]},{"1826156":[160,154,239,31,255,255,255,85]},{"1826166":[255,255]},{"1826172":[128,128,31,31,5]},{"1826178":[2]},{"1826180":[160]},{"1826182":[241,14,6,1,44,3,85,170,16,255,250,250,253,253,160,255,240,242,6,6,44,45,85,85,70]},{"1826208":[250,250,253,253]},{"1826213":[95,242,240,6,6,45,44]},{"1826221":[170,255,255,255,250,255,253]},{"1826230":[240,240,6,6,44,44]},{"1826238":[255,255,76,44,172,5,4,5,240,1,124,132,120,129,244,4,2,243,156,176,85,91,13,249,253,255,20,144,57,191,252,248,111,13,188,182,93,95,13,255,241,7,156,6,181,15,12,14,241,255,251,177,242,83,10,9,6,7,3,1,10,3,11,9,254,253,215,42,255,21,255,43,255,17,245,42,255,5,95,42,255,129,168,127,128,255,130,127,142,255,142,127,170,255,244,255,126,127,213,42,106,21,214,41,96,145,209,42,80,5,1,42,128,129,215,255,255,255,253,255,123,255,241,255,255,255,223,255,127,255,63,255,255,95,255,253,255,87,255,255,255,95,255,191,255,5,223,223,29,191,187,255,85,255,175,255,5,255,2,255,184,255,31,224,189,66,185,68,253,2,175,80,165,90,66,189,66,5,32,255,226,255,68,255,170,255,80,255,250,255,253,255,239,255,249,251,255,225,255,221,255,255,255,245,255,255,255,223,223,95,247,243,238,235,213,221,255,255,245,245,93,253,175,255]},{"1826463":[223,243,2,224,20,213,34,255]},{"1826472":[245,10,93,162,143,80,160,95,12,249,16,255,34,255]},{"1826487":[255,10,255,162,255,80,255,223,255,255,208,255,42,255,200,255,187,255,213,251,255,245,255,255,255,80,208,32,42]},{"1826517":[200,170,187,211,213,126,254,186,250,17,255,80,47,32,213]},{"1826533":[55,170,68,209,42,122,133,176,79,21,234,47,255,213,255,55,255,68,255,42,255,133,255,79,255,238,255,245,122,218,165,205,215,254,213,247,8,255,163,127,196,239,250]},{"1826577":[112,48,160,16,213,128,212,130]},{"1826586":[34,35,192,196,122,250]},{"1826593":[143,32,127,16,58,128,43]},{"1826601":[255,34,220,64,187,106,149,143,255,79,223,10,239,43,255,255,255,220,255,187,255,149,255,1,254,128,127,64,255,8,183]},{"1826633":[255,224,31,208,47,186,5]},{"1826644":[128,128,128,128]},{"1826652":[96,32,192,224,14,241,5,250,135,184,7,248,11,244,1,254,2,253,32,63,241,255,250,255,120,127,56,255,244,255,254,255,157,255,31,191,46,247,21,255,43,253,21,255,11,245,5,255,67,189,161,31,38]},{"1826706":[21]},{"1826708":[41]},{"1826710":[21]},{"1826712":[1]},{"1826714":[5]},{"1826716":[1]},{"1826718":[1]},{"1826720":[255]},{"1826722":[255]},{"1826724":[255]},{"1826726":[255]},{"1826728":[255]},{"1826730":[255]},{"1826732":[191,64,31,224]},{"1826737":[255]},{"1826739":[255]},{"1826741":[255]},{"1826743":[255]},{"1826745":[255]},{"1826747":[255,64,255,160,255,255,95,199,175,193,79,109,255,191,95,127,206,143,247,31,254,95,11,135,5,113]},{"1826774":[109,1,31,11,110,4,167,34,30]},{"1826784":[244,10,234,17,239,32,254,1,244,10,219,36,253,34,255]},{"1826800":[1,254,4,251,16,239]},{"1826807":[255,1,254,32,255]},{"1826813":[223]},{"1826815":[255,253,188,157,239,255,221,255,255,255,239,254,255,62,124,127,190,190,188,175,47,221,159,255,127,239,239,254,92,189,60,190,148,67,154,240,44,98,141,128,87,16,238,163,84,195,185,107,20,36,219,3,220,18,237,40,215,1,254,8,247,4,251,128,127,144,173,80,47,160,31]},{"1826887":[119,160,7]},{"1826891":[127,160,95]},{"1826895":[191,127,239,255,231,255,255,255,255,255,255,255,255,255,255,255,255,71,170,247,56,255]},{"1826918":[255]},{"1826920":[255,8,255]},{"1826924":[255]},{"1826926":[255]},{"1826928":[215,85,255,199,255,255,255,255,255,247,255,255,255,255,255,255]},{"1826945":[255]},{"1826947":[255]},{"1826949":[255]},{"1826951":[255]},{"1826953":[255]},{"1826955":[255]},{"1826957":[255]},{"1826959":[255,254,255,213,255,234,255,80,255,234,255,196,255,234,255,80,255,255,1,255,42,255,21,255,175,255,21,255,59,255,21,255,175,255,254,255,213,255,234,255,80,255,234,255,196,255,234,255,80]},{"1827009":[255,8,243,21,226,170,85,1,254,42,213,5,250,138,117,170,255,72,251,149,247,170,255,137,255,42,255,5,255,138,255,255,85,251,187,247,119,255,255,255,119,255,255,255,255,255,255,255,170,243,76,226,157,85,170,254,137,213,42,250,5,117,138]},{"1827073":[255,162,85,213,42,175,80,23,168,175,64,86,170,172,17,128,255,162,247,213,127,175,255,23,191,175,239,86,255,172,187,255,127,255,255,127,127,255,255,255,255,255,255,253,254,250,251,255,128,85,170,42,213,80,175,168,87,64,191,170,85,19,236,5,224,175,64,85,160,255]},{"1827144":[87]},{"1827146":[255]},{"1827148":[223,32,255]},{"1827152":[5,229,175,239,85,245,255,255,87,87,255,255,159,175,223,191,255,255,255,255,255,255,255,255,255,255,255,255,143,175,255,191,224,31,64,191,160,95]},{"1827191":[255]},{"1827193":[255]},{"1827195":[255,32,223,32,223,94,1,246,9,249,6,251,4,224,30,235,21,165,90,234,21,95,94,255,244,255,248,255,80,255,224,255,193,255,160,255,64,254,255,244,253,248,254,80,84,225,254,193,212,160,250,64,85,1,255,9,255,6,255,4,255,31,255,21,255,90,255,21,255,146,106,148,87,10,175,16,155,170,175,68,111,170,175,16,27,255,130,252,20,250,10,116,16,250,170,212,68,250,170,244,16,135,232,63,64,95,160,255]},{"1827304":[255]},{"1827306":[255]},{"1827308":[255]},{"1827310":[255]},{"1827312":[111,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,160,239,16,255,32,255]},{"1827335":[255,128,255]},{"1827339":[255]},{"1827341":[255]},{"1827343":[191,176,168,8,45,32,255]},{"1827351":[95,128,255]},{"1827355":[127,64,239,192,181,231]},{"1827362":[218,8,32]},{"1827366":[160]},{"1827368":[128]},{"1827370":[128]},{"1827372":[80,64,138,128,239,255,231,255,255,255,255,255,255,255,255,255,191,255,63,255,207,129,239,167,90,159,204,139,80,179,73,232,6,244,223,238,78,123,75,252,223,229,87,167,38,190,13,215,126,193,20,218,210,80,240,251,221,210,25,26,92,95,108,110,124,77,223,222,32,160,8,128,40,160,248,184,164,228,144,208,186,218,32,224,172,84,252,254,170,234,1,254]},{"1827465":[255,255]},{"1827470":[254]},{"1827472":[253,253,162,95,234,65,255,255,174,174,255,255]},{"1827485":[255]},{"1827487":[1,171,1,2,161,84,171,126,128,8,247]},{"1827501":[255,254,1,1,1]},{"1827520":[109,79,130,159,225,127,52,117,49,51,250,26,57,18,247,5,72,181,108,115,76,63,237,153,123,236,210,221,52,246,13,14,154,248,188,220,124,116,121,113,84,253,31,95,22,246,255,14,127,71,231,219,171,55,26,23,109,110,96]},{"1827580":[47,6,9,8,165,220,193,241,84,237,52,213,124,253,14,14,221,32,253,84,15,2,101,202,47,211,199,203,30,130,174,243,2,38,86,174,158,86,116,117,47,38,215,214,230,231,94,255,37,36,247,174,42,234,142,236,218,250,42,234,26,146,160,160,250,32,90,10,255,63,244,246]},{"1827653":[95,11,244,121,128,15]},{"1827660":[126,1,115]},{"1827664":[193,190,246,2,94,94,91,91,248,254,3,243,30,153,244,252,128,1,11,244,254,1,64,180,1,134,12,243,97,153,4,116]},{"1827706":[3]},{"1827708":[31,7,127,4,215,143,83,151,71,135,75,15,137,15,96,51,82,211,249,185]},{"1827729":[167,180,167,208,247,108,239,95,120,180,140,69,248,175,211,96,48,196,52,48,224,12,252,255,105,167,175,247,231,247,231,23,15,59,47,95,15,123,39,94,65,203,155,158,142,28,4,121,197,255,243,255,255,253,255,85,85]},{"1827787":[255]},{"1827789":[244,31,128,159,102,3,255]},{"1827797":[255]},{"1827799":[253,85,170]},{"1827804":[244,32,128,31]},{"1827809":[160]},{"1827811":[12]},{"1827816":[255,255,255,255,244,244,151,159,95,228,240,255,255,255,255,255,170,85,255,255,43,32,104,8,127,64,255]},{"1827844":[253,251,247,249,85,93]},{"1827851":[255]},{"1827853":[85,191,17,191,191,255,42]},{"1827861":[253]},{"1827863":[243,93,162]},{"1827868":[85]},{"1827870":[17,174,192,255,42,42,2,6,4,6,255,247,255,255,85,85,119,238,127,127,213]},{"1827892":[249,255,249,255,170,85,255,255,170]},{"1827902":[217,200,234,130,250,6,254,248,238,233,84,244,2,250,2,82,255,81,126,233,255,168,6,163,19,246,241,8,2,5,83,1,81,175,151,255,173,169,90,90,11,14,253,93,255,255,82,80,253,175,124,124,87,5,165,249,241,253,171,81,248,248,175]},{"1827966":[82,2,127,63,197,175,64,127,194,223,144,143,63]},{"1827982":[126]},{"1827984":[125,66,175,106,159,31,149,53,154,58,223,223,192,255,128,129,128,189,250,197,223,224,193,254,128,175,224,200,64,127,254,129,128,128]},{"1828020":[192,192,64,64,64]},{"1828026":[64,64,192,64,128,128,235,244,73,86,33,118,9,254,25,230,225,14,51,4,157,28,18,242,240,176,120,88,224,232,185,176,233,240,55,250,31,112,29,15,191,79,207,63,111,159,15,239,15,31,9,219,159,127,15,15,15,15,7,7,7,7,15,15,15,15,23,3,7,7,127,16,127,255,34,247]},{"1828103":[255]},{"1828105":[255,125]},{"1828110":[255]},{"1828112":[111,58,255,128,247,213,127,127,42,42,125,255]},{"1828125":[255]},{"1828128":[170]},{"1828130":[128,127,221,34,117,138]},{"1828137":[255]},{"1828139":[138]},{"1828141":[255,255]},{"1828160":[209,53,241,242,19,112,55,212,115,147,120,24,117,2,255]},{"1828176":[239,170,193,12,104,101,108,101,226,236,106,231,40,186,160,175,178,26,26,254,215,59,86,159,25,159,29,255,82,178,69,175,29,24,29,28,28,27,28,27,30,28,50,18,47,2,186,10,93,93,255]},{"1828228":[255,213,255,125,255,255]},{"1828236":[221,34,238]},{"1828240":[255,170,160,95,42,42]},{"1828247":[146]},{"1828250":[34,255]},{"1828253":[34]},{"1828255":[238,162,170,95,95,213,247,109,239,255,255,221,255,34,34,85,255,93,8,160,95,8,255,16,255]},{"1828282":[34,34,255,34,187,187,215,217,255,6,255,84,255,199,255,239]},{"1828300":[222,32,160,1,248,164,1,249,171,171]},{"1828311":[56]},{"1828313":[16,35,255,3,33,1,162,43,175,254,254,84,84,199,255,239,239,220,255,33,33,85,245,212,135,1,255,171,255]},{"1828343":[255,16]},{"1828346":[35,35,254,34,254,244,255,32,255,50,253,173,255,233,31,122,127,192,31,162,31,32,223,255,205,221,80,250,20,23,37,143,223,95,29,31,159,223,32,16,50,34,173,7,235,234,186,144,96,96,194,192,64,144,239,255,221,255,248,253,21,255,239,95,223,63,255,191,239,191,239,175,255,21,255,2,255,1,255,138,255]},{"1828428":[255,2,255]},{"1828432":[64,239,234,255,253,255,254,255,117,255,255,255,253,255,255,255,24,167,16,5]},{"1828453":[2]},{"1828455":[1,128,10]},{"1828461":[2]},{"1828464":[239,255,255,255,215,255,255,255,223,255,255,255,223,255,255,255,255,255,255,127,255,191,255,85,255,174,255,85,255,191,255,23]},{"1828497":[255,128,255,64,255,170,255,81,255,170,255,64,255,232,255]},{"1828513":[255]},{"1828515":[127]},{"1828517":[191]},{"1828519":[85]},{"1828521":[174]},{"1828523":[85]},{"1828525":[191]},{"1828527":[23,255,255,255,255,255,255,255,255,254,255,255,255,255,255,191,255,247,255,255,247,253,243,255,79,255,175,255,127,253,255,255,127,40,252,9,255,6,255,161,255,80,255,128,255,2,255,128,255,32,223,1,246,24,235,25,86,128,47]},{"1828587":[127]},{"1828589":[255]},{"1828591":[127,223,255,246,255,243,255,206,255,175,255,127,255,255,255,255,255,119,249,250,255,84,255,234,255,85,254,251,255,239,239,255,255,137,233,79,239,191,255,21,255,171,235,4,254]},{"1828637":[103,64,254,1,254,74,181,20,235]},{"1828647":[255]},{"1828649":[254]},{"1828651":[254,17,230,64,191,254,255,181,255,235,255,255,255,254,255,255,255,239,255,191,255,148,171,190,225,125,130,190,193,189,194,191,226,125,194,255,136,32,32,224,224,128,128,192,192,72,64,96,226,224,192,136,136,64,191,160,95]},{"1828709":[255,128,127]},{"1828713":[127,160,93,64,191,136,119,159,255,95,255,255,255,127,255,255,255,221,255,191,255,119,255,66,191,128,127]},{"1828741":[255,168,87,8,247,168,95,64,191,128,127,2]},{"1828760":[8]},{"1828762":[8,8]},{"1828768":[191,64,31,224,30,225,7,248,35,220,15,240,15,240,23,232,64,255,224,255,225,255,248,255,220,255,240,255,240,255,232,255,255,223,77,242,35,253,17,254,175,255,21,254,41,255,17,253,223,138,72]},{"1828820":[41,40,16]},{"1828824":[175,10,20]},{"1828828":[41,40,17]},{"1828832":[117,138,247,8,215,32,255]},{"1828840":[245,10,255]},{"1828844":[215,40,253,2]},{"1828849":[255,8,255,8,247]},{"1828855":[255]},{"1828857":[255]},{"1828859":[255]},{"1828861":[255]},{"1828863":[255,239,255,247,239,235,247,65,255,255,252,121,186,185,254,87,255,239,239,231,69,227,163,65,1,252,168,62,18,184,40,87,17,16,239,186,65,92,163,254,1,87,168,239,6,215,40,238,17]},{"1828913":[255,4,251]},{"1828917":[255]},{"1828919":[255]},{"1828921":[255,16,237]},{"1828925":[255]},{"1828927":[255,168,23,64,21,232,149,80,203,226,225,212,1,250,225,245,38,255,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,255]},{"1828962":[255]},{"1828964":[127,2,191]},{"1828968":[31,136,255]},{"1828972":[31]},{"1828974":[219]},{"1828976":[255,255,255,255,255,253,255,255,255,119,255,255,255,255,255,255]},{"1828993":[255]},{"1828995":[255]},{"1828997":[255]},{"1828999":[247]},{"1829001":[223]},{"1829003":[255,32,95]},{"1829007":[255,254,255,245,255,255,255,125,255,255,255,255,255,255,255,255,255,255,1,255,10,255]},{"1829030":[255,138,255,32,255]},{"1829036":[255,128,255]},{"1829040":[255,254,255,245,255,255,247,125,255,223,255,255,255,127,255,255]},{"1829057":[255,2,253]},{"1829061":[255]},{"1829063":[255]},{"1829065":[255]},{"1829067":[255,64,255,128,255,160,255,66,255,160,255,80,255,234,255,84,255,170,255,85,255,255,95,255,191,255,95,255,175,255,21,255,171,255,85,255,170,255,160,253,66,255,160,255,80,255,234,255,84,255,170,255,85,23,232,43,80,5,250,11,240]},{"1829129":[254,2,253]},{"1829133":[255]},{"1829135":[255,151,252,43,123,5,255,11,251,128,254,2,255,128,255]},{"1829151":[255,252,124,255,255,255,255,255,255,255,127,255,255,255,127,255,255,232,151,80,175,250,5,240,15,254,129,253,2,255,128,255]},{"1829184":[127,128,191]},{"1829188":[95,32,255]},{"1829192":[85,168,171,64,69,168,170,80,127,255,191,191,95,127,255,255,85,253,171,235,69,237,170,250,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,128,127]},{"1829235":[255,32,223]},{"1829239":[255,168,87,64,191,168,87,80,175,233,22,234,21,228,19,251,4,254,1,255]},{"1829260":[95]},{"1829262":[247]},{"1829264":[255,232,255,192,247,232,255,241,255,254,255,253,95,95,255,247,232,254,192,213,232,243,241,245,254,255,253,253,255,255,247,255,22,255,21,255,19,255,4,255,1,255]},{"1829307":[255]},{"1829309":[255,8,247,42,235,212,20,64,170,164,85,148,106,168,85,220,35,66,53,190,42,255,20,255]},{"1829334":[255,4,255,128,255]},{"1829340":[255,136,223,136,127,128,63]},{"1829348":[21,170,14,81,129,234,2,85,136,171,168,21,255,255,63,255,191,255,95,255,107,255,87,255,35,255,53,255,168,255]},{"1829379":[191,168,191]},{"1829383":[11,32,171,2,66,64,171,12,80,168,168,64]},{"1829396":[232,168,244]},{"1829400":[252,32,255]},{"1829404":[252]},{"1829406":[247,128,255]},{"1829410":[255]},{"1829412":[255]},{"1829414":[255]},{"1829416":[119,136,190,66,23,168,171,80,255,255,255,255,255,255,255,255,255,255,254,253,191,255,123,255,19,202,26,243,1,253,13,243,6,21,3,2,1,33,128]},{"1829456":[126,193,10,92,13,22,6,1,235,4,253,2,255,1,127]},{"1829472":[79,71,187,27,249,1,251,9,249]},{"1829482":[254,2,223,32,255]},{"1829488":[156,236,229,245,238,246,246,250,255,253,253,254,255,254,255,255,255]},{"1829506":[255]},{"1829508":[234,128,232,230,245,250,103,255,189,125,231,199,81,81,127,85,63,21,177,55,80,138,175,71,217,36,102,248,174,81]},{"1829539":[85,149,149,247,247,250,234,255,127,125,60,47,47,81]},{"1829554":[255,42,255,191,95,87,63,42,144,144,195,64,145,209,255]},{"1829570":[255]},{"1829572":[170]},{"1829575":[239,85,171,255,255,255,255,46]},{"1829584":[7,7,255,93,255,85,16,255,1,171,255,255,255]},{"1829598":[128,174,248,7]},{"1829603":[93,85,85,255,255,171,171,255,255,255]},{"1829614":[145,191,7]},{"1829618":[255,162,255,255,255,255,254,170]},{"1829628":[255]},{"1829630":[127,63,255]},{"1829634":[252]},{"1829636":[160,1,43,212,87,191,255,255,253,168,80]},{"1829648":[255,255,255,83,254,95]},{"1829655":[212,23,191,255,208,168,85]},{"1829663":[80]},{"1829665":[255,3,83,95,95,212,208,191,151,255,208,186,87]},{"1829679":[80,255]},{"1829682":[255,175,255,255,255,212,232,168,47]},{"1829692":[239,71,255,80,231,1,47,19,95,190,254,252,248,248,236,64,32,5]},{"1829711":[255,249,153,195,210,30,191,252,242,248,128,64,172,5,37,242,253,25,153,211,210,191,191,253,243,254,134,80,188,133,165,242,255,254,120,253,208,224,160,15,3,127,6,255,188,255,165,253,253,146,152,187,59,19,88,58,122,3,88,34,122,10,152,34,186,164,184,41,150,108,113,108,82,116,41,56,70,126,224,248,68,214,238,183,166,215,231,119,103,198,239,39,103,70,230,230,230,127,110,89]},{"1829812":[254,238,221,69,175,191,201,89,175,190,11,26,127,112,224,120,212,203,255,122,127,127,63,31,23,2,1,224,112,48,103,255,224,107,122,186,127,15,31,32,2,21,64,225,240,176,255,255,203,75,122,186,255,143,95,96,42,61,64,225,207,128,31,31,191,11,197,128,240,128,255,96,255,61,255,225,81,174,5]},{"1829893":[64,238,153,85,255,255,255,255,171,86]},{"1829905":[174,255,250,191,255,136,153,85,255,255,85,171,84]},{"1829919":[86,174,174,250,250,255,255,153,153,255,85,255,85,187,84,1,87,255,174,255,255,255,255,119,17,170,170,170]},{"1829948":[239,68,255,87,3,208,93]},{"1829956":[2]},{"1829958":[168,87,85,250,255,255,255,191,238]},{"1829968":[47,253,253,162,255,253]},{"1829975":[87,80,250,255,255,191,64]},{"1829983":[238,252,253,160,160,253,253,87,87,250,90,255,255,255,64,17,255,255,254,255,253,255,255,255,87,175,170]},{"1830012":[191]},{"1830014":[255,255,255]},{"1830018":[255]},{"1830020":[191]},{"1830023":[160,80,175,254,254,252,251,231,7,80,80,255,95,255,66,95,255]},{"1830041":[175,254,254,251,4,11,232,175,80]},{"1830051":[95,64,66,255,255,175,171,255,255,251,7,15,239,80]},{"1830066":[255,160,255,253,255,255,255,175,1,1,253,5,244,228,243,5,197,5,215,31,97,53,171,255,97,205,138,215,48,161,14,10,174,184,244,170,166,200,188,134,102,20,220,34,170,68,241,27,115,187,51,187,247,251,235,235,251,235,183,131,115,51,31,31,175,47,205,77,159,159,85,93,183,167,125,5,207,63,255]},{"1830146":[253]},{"1830148":[160,1,42,221,87,255,255,255,253,160]},{"1830160":[95,95,255,210,254,95,8,221,87,255,255,192,160,93]},{"1830176":[160,95,2,210,95,95,221,216,255,215,255,192,170,95]},{"1830192":[95]},{"1830194":[255,47,255,255,247,213,168,168,63]},{"1830204":[247,87,255]},{"1830208":[250]},{"1830210":[68]},{"1830213":[85,255,170,119,255,255,223,85]},{"1830222":[1]},{"1830224":[255,253,255,187,170,255,170,170,119,255,223,32]},{"1830237":[85]},{"1830239":[1,5,253,187,187,255,255,170,170,255,119,223,32,170,255]},{"1830255":[1,255,7,255,255,255,255,85]},{"1830264":[136,136,255,32,255,255,255,1,238]},{"1830274":[68]},{"1830277":[85,238,153,87,253,255,255,127,43,22]},{"1830288":[255,17,255,187,170,255,136,153,85,253,255,85,43,84]},{"1830303":[22,17,17,187,187,255,255,153,153,253,85,255,85,187,212,1,23,255,255,255,255,255,255,119,17,170,168,170]},{"1830332":[239,196,255,23,171,1,67,1,2,92,236,152,85,254,255,254,255,170,239]},{"1830352":[255,87,255,191,163,255,139,155,84,254,254,86,171,84,1,238,84,87,188,191,253,255,155,155,255,87,255,87,187,85,17,255,255,253,255,253,254,252,118,18,171,171,169,1,239,69,255,255,159,160,95,96,63,162,95,97,191,170,95,100,63,170,127,101,31,223,223,223,29,63,222,223,21,255,218,223,16,127,192,255,192,208,64,192,192,194,64,193,192,202,65,196,197,202,90,197,239,191,255,191,255,191,255,191,255,191,255,191,255,191,255,191,255,42,255,4,255,171,255,21,255,175,255,85,255,191,255,87,213,255,251,255,84,255,234,255]},{"1830489":[255,160,255,2,255]},{"1830495":[255]},{"1830497":[42]},{"1830499":[4]},{"1830501":[171]},{"1830503":[21,80,175,10,85,66,189,168,87,127,255,254,255,255,255,255,255,255,255,255,255,253,255,255,255,255,95,255,95,255,255,255,125,255,188,254,222,255,255,255,127,160,255,160,255]},{"1830549":[255,130,255,75,254,4,254,139,223,87,255,64,31]},{"1830563":[95]},{"1830565":[255]},{"1830567":[125,8,181,39,216,139,116,215,40,95,255,255,255,255,255,253,255,180,255,250,255,116,255,168,255,247,255,255,249,255,249,251,249,253,255,251,247,213,255,255,255,8,255,7,255,7,209,23,251,67,87,79,239,254,254,127,255]},{"1830625":[255,1,248,1,254,17,232,69,178,67,180,212,43,127,128,255,255,248,255,248,255,236,251,188,255,176,255,43,255,128,255,85,255,234,255,85,254,239,250,117,222,191,234,127,196,254,225,251,251,31,191,254,254,122,250,218,218,234,234,192,196,96,96,81,174,10,245,84,171,106,149,80,175,170,85,64,187,96,159,174,255,245,255,171,255,149,255,175,255,85,255,187,255,159,255,243,13,229,50,245,30,254,1,208,47,234,21,213,42,170,213,142,12,54,50,56,28]},{"1830751":[128]},{"1830753":[255,40,215,16,235]},{"1830759":[255]},{"1830761":[255]},{"1830763":[255]},{"1830765":[255]},{"1830767":[127,253,255,197,255,235,255,255,255,255,255,255,255,255,255,127,255]},{"1830785":[255,128,127]},{"1830789":[255,128,127,2,255,1,255,2,239,241,47]},{"1830808":[2]},{"1830810":[1]},{"1830812":[2]},{"1830814":[17]},{"1830816":[143,112,31,224,63,192,31,224,63,192,95,160,111,144,15,240,112,255,224,255,192,255,224,255,192,255,160,255,128,255,240,255,168,255,85,255,43,223,69,254,171,221,87,250,191,255,87,255,168,168,85]},{"1830868":[11,2,68]},{"1830872":[137,136,82]},{"1830876":[191,42,87,1,87,168,255]},{"1830884":[253,2,255]},{"1830888":[119,136,255]},{"1830892":[213,42,254,1]},{"1830897":[255]},{"1830899":[255]},{"1830901":[255]},{"1830903":[255]},{"1830905":[255]},{"1830907":[255]},{"1830909":[255]},{"1830911":[255,63,251,63,239,255,239,247,255,255,191,223,175,207,15,223,235,59,43,175,133,239,171,247,85,191,175,143,5,127,11,203,1,212,43,122,5,84,171,170,21,80,175,250,5,180,123,254,1]},{"1830961":[255,128,127]},{"1830965":[255,64,191]},{"1830969":[255]},{"1830971":[255,64,255]},{"1830975":[255,254,206,255,133,255,176,255,35,255,254,255,245,255,175,255,188,119,255,255,255,95,255,255,255,87,255,191,255,85,255,175,191,49,136,122]},{"1831012":[79,160,220,8,1,168,10,64,80,170,67,80,255,119,255,255,255,95,255,247,255,87,255,191,255,85,255,175]},{"1831041":[5,80,43,160,17,193,142,226,65,213]},{"1831052":[251]},{"1831054":[245,80,255,255,255,255,243,243,255,251,255,255,255,255,255,255,255,255,255,170,255,4,243,2,123,28,191,140,255]},{"1831084":[255]},{"1831086":[175]},{"1831088":[255,85,255,251,243,253,255,227,255,115,255,255,255,255,255,255]},{"1831105":[127,40,255]},{"1831109":[95,10,127]},{"1831113":[87,2,187,128,5,64,3,254,255,213,255,255,255,245,255,255,255,253,255,255,255,255,255,255,129,255,42,255,160,255,10,255,168,255,70,255,42,255,20,255,126,255,213,255,95,255,245,255,87,255,185,255,213,255,235,16,207,56,199,16,239,132,247,16,255,1,255,80,255,160,255,144,207,88,207,146,255,88,255,234,255,212,255,170,255,85,255,207,79,223,159,255,125,255,175,255,21,255,43,255,85,255,170,207,176,215,104,239,146,247,88,255,234,255,212,255,170,255,85,1,234,2,244]},{"1831237":[250]},{"1831239":[253]},{"1831241":[255]},{"1831243":[95]},{"1831245":[255,64,255,1,235,2,246]},{"1831253":[250]},{"1831255":[253,160,255,224,255,162,255]},{"1831263":[255,255,255,255,255,255,255,255,255,255,95,255,191,255,93,255,255,234,21,244,11,250,5,253,2,255,160,95,224,255,162,255]},{"1831296":[87,128,169]},{"1831300":[69]},{"1831302":[170]},{"1831305":[128]},{"1831307":[208]},{"1831309":[248]},{"1831311":[240,87,215,171,169,69,69,170,170]},{"1831321":[128]},{"1831323":[208]},{"1831325":[248]},{"1831327":[240,255,255,253,255,255,255,255,255,255,255,255,255,255,255,255,255,128,127,2,253]},{"1831349":[255]},{"1831351":[255,128,127,208,47,248,7,240,15,190,65,85]},{"1831364":[95]},{"1831366":[117]},{"1831368":[85]},{"1831370":[9]},{"1831372":[5]},{"1831374":[1]},{"1831376":[255,170,255,95,95,95,255,117,85,85,43,9,5,5,11,2,170,235,95,245,255,255,117,255,255,255,221,255,255,255,246,252,65,255,160,95]},{"1831413":[255,138,117]},{"1831417":[255,34,221]},{"1831421":[255,8,247,149,106,64,21,187]},{"1831430":[85]},{"1831432":[110]},{"1831434":[85]},{"1831436":[89]},{"1831438":[21]},{"1831440":[255,128,255,234,255,238,255,255,127,111,255,87,93,89,189,21,128,234,234,85,238,170,255,85,239,254,87,253,251,255,87,253,106,255,21,255]},{"1831477":[255]},{"1831479":[255,16,239,168,87,4,251,170,87,64,170,30,64,16,170,1,80,168,2,84]},{"1831500":[170]},{"1831502":[85]},{"1831504":[255]},{"1831506":[245,160,255,68,255,174,255,253,255,255,251,251,117,117,21,170,171,64,69,170,174,80,253,170,255,84,255,170,255,85,191,255,75,255,171,255,80,255,2,255]},{"1831547":[255,4,255,138,255,53,77,37,19,17,228,171,4,1,170,34,64,128,34]},{"1831568":[221,42,223,2,110,1,84,16,254,84,221,157,255,221,95,95,131,99,232,24,151,99,251,4,85,170,191,64,221,162,255]},{"1831600":[156,232,239,243,182,249,235,255,171,255,98,255,34,255,160,255,189,160,191,191,223,128,32,255,21,224,42]},{"1831628":[4,32,10]},{"1831632":[146,66,127,128,192,253,149,42,138,106,213,213,251,219,245,245,255,255,255,255,64,64,64,223,127,128,255]},{"1831660":[223,32,255]},{"1831664":[61,61,64,64,63,128,32,255,149,255,42,255,36,255,10,255,127]},{"1831682":[255,255,253]},{"1831686":[150,255,85]},{"1831690":[171]},{"1831692":[69]},{"1831694":[170]},{"1831696":[128,128,255]},{"1831700":[2,223]},{"1831703":[247,170,170,84,84,186,186,85,85,255,255,255,255]},{"1831718":[8,105,255]},{"1831722":[255]},{"1831724":[255]},{"1831726":[255]},{"1831728":[127,127]},{"1831732":[255]},{"1831734":[150,255,85,255,171,255,69,255,170,255,255]},{"1831746":[255,255,215,7,62,225,230,31,195,31,105,23,180,11,23]},{"1831762":[255]},{"1831764":[47,250,1,124,16,6,12,51,150,129,74,65,255,255,255,255,2,2,131,222,232,16,208,44,232,22,245,10,255,255]},{"1831796":[253,5,33,254,239,255,195,255,105,255,180,255,209,82,251,251,239,191,106,138,69,180,176,70,159,231,152,231,37,56,239,16,151,202,138,21,129,6,71,8,69,130,167,128,215,231,247,231,170,162,219,78,199,217,232,225,210,245,180,20,255,239,28,4,77,21,189,110,46,241,24,247,15,248,232,95,255]},{"1831874":[255,255,255,96,59,175,234,208,123,104,8,152,24,20]},{"1831890":[255]},{"1831892":[96,191,33,84,224,5,98,8,154,111,20,226,255,255,255,255,32,160,234,191,234,229,247,240,250,181,249,94,255,255]},{"1831924":[223,192,64,63,26,255,143,127,104,151,225,31,87]},{"1831938":[255,255,221]},{"1831942":[171,127,40]},{"1831946":[71]},{"1831950":[81,16,168,168,255]},{"1831956":[34,255]},{"1831959":[212,1,213,3,184]},{"1831965":[85,1,190,255,255,255,255]},{"1831974":[171,255,42,212,71,184,170,85,65,190,87,87]},{"1831988":[255]},{"1831991":[255,43,255,71,255,170,255,65,239,85]},{"1832002":[255,255,157,66,171,126,84]},{"1832010":[162]},{"1832012":[24,8,248,1,170,170,255]},{"1832020":[98,191,1,213,84,163,162,93,17,79,250,7,255,255,255,255,64]},{"1832038":[42,255,92,163,162,93,176,78,248,5,85,85]},{"1832052":[255,66]},{"1832055":[255,92,255,162,255,177,247,250,255,239,44,236,249,77,131,234,252,5,124,3,242,1,254,3,248,78,19,226,14,144,245,1,22,131,252,12,253]},{"1832093":[253,4,254,252,255,248,252,10,14,233,255,2,122,2,243,2,255,1,251,227,227,21,21,225,143,1,254,135,252,12,255]},{"1832125":[255,4,255,119,135,235,27,117,91,239,153,236,123,249,37,155,214,187,76,149,10,41,134,219,70,159,160,122,128,175,80,210,32,74,165,227,107,83,211,160,160,65,65,79,205,5,1,159,191,28,29,156,104,44,196,159,127,62,249,50,252,254,83,96,251,226,125,255]},{"1832194":[255,255,85,66,126,38,103,161,239,32,223,64,159]},{"1832210":[255]},{"1832212":[106,63,224,56,150,88,31,80,63,160,122,229,255,255,255,255]},{"1832230":[7,30,167,105,175,224,95,192,31,128,255,255]},{"1832244":[255,66,192,191,150,127,31,255,63,255,127,255,255]},{"1832258":[255,255,23,96,255,245,247,8,255]},{"1832268":[213,42,255]},{"1832274":[255]},{"1832276":[232,189,10,95,232,31,200,55,106,191,32,223,255,255,255,255,64]},{"1832294":[245,170,255]},{"1832298":[255]},{"1832300":[255]},{"1832302":[255]},{"1832304":[255,255]},{"1832308":[255,96,85,255,247,255,255,255,213,255,255,255,117]},{"1832322":[255,255,85,170,255,127,127,128,255]},{"1832332":[221,32,255]},{"1832336":[138,138,255]},{"1832340":[170,255,128,255,128,255]},{"1832347":[255,34,255]},{"1832351":[255,255,255,255,255]},{"1832358":[127,128,255]},{"1832362":[255]},{"1832364":[253]},{"1832366":[255]},{"1832368":[117,117]},{"1832372":[255,170,127,255,127,255,255,255,221,255,255,255,84,1,255,255,4,250,254,239,119,138,254,5,126,42,251,17,170,170,255]},{"1832404":[250,175,17,239,138,255,5,255,171,255,21,255,255,255,255,255,80]},{"1832422":[238,17,119,136,254,1,126,129,251,4,85,85]},{"1832436":[255,250,238,255,117,255,250,255,84,255,234,255,191,170,159,69,63,131,255,1,255,175,191,85,255,143,191,23,64,191,160,63,248,77,25,255,143,223,85,255,175,255,87,255,149,202,154,197,180,3,231,8,223,32,191,64,223]},{"1832494":[191]},{"1832496":[191,255,191,255,247,127,230,255,112,255,170,255,80,255,168,255,255,255,255,95,255,255,255,87,255,255,255,223,255,255,255,255,34,119,85,255,159,223,87,255,223,223,207,239,255,255,255,255,34,221,245,10,159,96,255]},{"1832552":[223,32,239,16,255]},{"1832558":[255]},{"1832560":[221,255,170,255,96,255,168,255,32,255,48,255]},{"1832573":[255]},{"1832575":[255,255,255,255,255,255,255,255,255,255,247,255,254,255,121,255,255,127,127,95,255,255,255,239,239,247,247,250,254,80,121,232,255,127,128,95,160,255]},{"1832614":[239,16,247,8,250,1,80,134,232]},{"1832624":[128,255,160,255]},{"1832629":[255,16,255,8,255,1,255,134,255]},{"1832639":[255,255,85,255,234,255,192,255,235,255,117,255,232,253,18,254,241,93,85,234,234,192,192,234,235,112,117,160,232]},{"1832669":[16,128,240,85,170,234,21,192,63,234,20,112,138,160,23]},{"1832685":[239,128,15,170,255,21,255,63,255,20,255,138,255,23,255,239,255,15,255,253,118,254,225,208,47,250,141,80,151,168,119,32,223,160,255,208,84,160,224,12,12,4,132,8]},{"1832730":[16,16,48,16,8,168,80,171,160,31,8,255]},{"1832743":[127,8,239]},{"1832747":[255,3,252,1,86,171,255,31,255,243,247,115,247,215,255,239,255,236,255,94,247]},{"1832769":[255,160,95,4,251,128,127]},{"1832777":[255]},{"1832779":[255,2,255]},{"1832783":[255]},{"1832796":[2]},{"1832800":[2,253,1,254,10,245,25,230,59,196,95,160,255]},{"1832814":[127,128,253,255,254,255,245,255,230,255,196,255,160,255]},{"1832829":[255,128,255,74,159,133,127,11,253,21,255,175,255,93,255,191,213,95,255,74]},{"1832850":[5]},{"1832852":[9]},{"1832854":[21]},{"1832856":[175,10,93]},{"1832860":[149]},{"1832862":[95]},{"1832864":[159,96,127,128,127,128,255]},{"1832872":[245,10,255]},{"1832876":[255]},{"1832878":[255]},{"1832880":[64,255,128,255,128,255]},{"1832887":[255]},{"1832889":[255]},{"1832891":[255]},{"1832893":[255]},{"1832895":[255,239,247,71,187,255,127,255,239,255,255,255,239,255,95,255,255,231,162,3,1,127,43,239,5,255,171,239,69,95,11,255,23,93,162,254,1,212,42,250,1,84,170,186,5,244,11,232,21]},{"1832945":[255]},{"1832947":[255,1,254,4,251,1,254,64,191]},{"1832957":[255,2,253,255,251,255,255,249,253,255,253,255,254,255,255,255,255,255,253,251,187,255,85,251,251,253,125,255,254,255,127,255,255,255,253,68,171,170,81,6,184,130,81]},{"1833001":[255,128,85]},{"1833005":[174]},{"1833007":[23,16,239,4,251,65,188,44,211]},{"1833017":[254,42,213,81,174,232,21,255,190,255,78,175,255,255,190,255,175,126,253,255,170,254,249,21,191,43,111,5,175,175,191,21,191,42,126,5,175,170,250,65,234,177,212,80,250,65,80,80,234,131,213,85,250,7,85,255,21,255,43,255,5,255,175,255,21,255,42,255,5,255,170,255,165,253,112,248,168,245,232,247,143,179,97,255,243,255,151,127,255,255,255,95,255,255,255,123,247,191,191,95,255,255,255,90,136,143,2,87,163,31]},{"1833128":[116,140,222,76,12,164,104]},{"1833136":[255,119,255,253,255,92,255,255,255,115,255,179,255,91,255,255,96,16,52,41,136,17,20,32]},{"1833161":[16,16,2,248,197,244,129,255,255,223,255,159,159,223,255,255,255,255,255,255,255,254,255,255,138,255,96,159,2,255,97,255,234,255,69,63,2,127,1,255,117,255,159,159,253,255,158,255,21,255,186,255,253,255,254,17,95,42,191,5,95,42,255,1,63,42,191,4,95,10,143,238,255,213,255,250,255,213,255,254,255,213,255,251,255,117,255,255,177,255,106,255,165,255,42,255,129,255,106,255,164,255,218,255,78,255,149,255,90,255,213,255,126,255,149,255,91,255,37,64,255]},{"1833283":[255,10,255]},{"1833287":[119,16,255,128,223,84,255,229,247,168,255,64,255,160,255,216,255,234,255,116,255,170,255,24,255,255,87,255,191,255,95,255,175,255,21,255,171,255,85,255,239,255,168,255,64,255,160,119,216,255,234,223,116,255,170,247,24]},{"1833345":[250]},{"1833347":[252]},{"1833349":[254]},{"1833351":[255]},{"1833353":[255]},{"1833355":[221]},{"1833357":[187]},{"1833359":[209]},{"1833361":[250]},{"1833363":[252]},{"1833365":[254]},{"1833367":[255]},{"1833369":[255,32,253,64,251,42,249,255,255,255,255,255,255,255,255,255,255,255,255,255,255,253,255,250,5,252,3,254,1,255]},{"1833400":[255]},{"1833402":[221,34,187,68,211,44,7,128]},{"1833412":[1]},{"1833417":[160]},{"1833419":[192]},{"1833421":[224]},{"1833423":[80,7,134,10]},{"1833428":[1,1,10]},{"1833433":[160,2,192]},{"1833437":[224,128,208,254,254,245,255,191,191,245,255,255,255,253,255,255,255,255,255,128,127,10,245]},{"1833461":[255,10,245,160,95,194,61,224,31,80,175,20]},{"1833474":[129]},{"1833476":[81]},{"1833478":[5]},{"1833480":[20]},{"1833484":[5]},{"1833488":[21,20,171,129,85,81,175,5,21,20,42]},{"1833500":[5,5,58,32,254,255,213,255,251,255,85,255,254,255,213,255,255,255,101,95,1,254,42,213,4,251,170,85,1,254,42,213]},{"1833533":[255,26,229,66]},{"1833538":[84]},{"1833540":[138]},{"1833542":[85]},{"1833544":[98]},{"1833546":[21]},{"1833548":[16]},{"1833552":[87,67,215,87,223,141,87,87,118,98,151,23,85,16,160]},{"1833568":[235,254,127,212,173,248,255,85,235,254,127,213,186,255,95,245,20,235,168,127,80,175,168,255,21,235,168,127,69,186,170,95,170]},{"1833602":[64]},{"1833604":[170]},{"1833608":[170]},{"1833610":[64]},{"1833612":[162]},{"1833616":[255,255,119,119,255,255,87,23,191,191,127,127,191,183,87,2,255,170,255,64,255,170,191,64,255,170,255,64,247,170,170,85]},{"1833649":[255,136,255]},{"1833653":[255,232,191,64,255,128,255,72,247,253,170,161,9,2,1,160]},{"1833672":[8]},{"1833676":[2]},{"1833680":[254,247,253,252,255,255,255,255,255,255,255,255,190,190]},{"1833696":[247,169,254,1,255,160,255]},{"1833704":[255,8,255]},{"1833708":[255,2,255]},{"1833712":[8,255,2,255]},{"1833717":[255]},{"1833719":[255]},{"1833721":[255]},{"1833723":[255,65,255,255,255,128,128,130]},{"1833732":[6,1,231,14,85,3,7,11,23,11,7,11,255,255,125,253,248,255,31,22,171,162,247,248,167,172,117,118,127,128,127]},{"1833764":[249]},{"1833766":[244,8,252,4,249,1,253,5,255,15,128,127,2,255]},{"1833781":[255,229,250,91,254,6,248,82,248,128,248,22,1,188,3,7,255,17,8,116,116,254,254,255,255,254,254,233,232,67,64,3,167,247,230,100,155,255]},{"1833820":[254,1,254,1,254,1,252,3,251,88,8,8,16,16,255,255,255,255,254,254,22,255,188,255,7,252,17]},{"1833848":[239,139,1,1]},{"1833854":[1,1,125,193,212,234,236,247,250,253,225,113,47,191,223,31,79,239]},{"1833873":[195,10,193,134,225,153,227,208,175,247,184,191,160,127,64,147,16,26,27,143,15,60,60,241,225,79,79,207,207,191,159,111,252,229,255,240,127,83,235,94,38,208,176,16,64,48,112,212,220,156,222,174,234,117,239,169,167,236,235,244,247,250,249,218,103,30,192,104,147,228,17,67,184,249,4,252,2,248,6,122,249,253,126,188,45,12,12,231,231,243,242,251,251,249,249,228,31,165,91,210,111,243,183,89,90,29,20,12,14,6,6,4]},{"1833986":[15,5]},{"1833989":[120,210,3,20,16,59,191,127,254,127,124,4,19,10,181,12,199,124,171,135,252,255,131,255,2,127,129,236,19,74,181,48,251,4,133,23,23,124,120,248,120,121,121,236,255,74,250,4,255,86,131,107,104,196,199,133,134,134,132,80]},{"1834050":[144]},{"1834053":[127,226,128,145,24,251,250,116,113,246,243,83,7,159,111,128,64,253,186,159,228,247,15,119,141,119,139,248,4,144,96,191,127,37,39,138,130,121,121,118,118,240,240,251,255,159,255,128,127,69,130,123,104,128,130,139,137,13,11,70,245,7,251,118,129,80,39,87,215,255,255,255,255,127,127,8,250,3,180,13,114,223,212,192,63,127,128,127,128,255]},{"1834144":[5,183,74,254,136,248,112,112,151,23,255,255,255,255,255,255,72,254,1,255,15,243,15,15,232,168]},{"1834174":[128,128,111,156,118,217,103,56,191,92,81,111,147,163,55,71,39,87,156,67,240,2,104,135,31,173,91,128,155,68,247,24,255,80,60,47,93,95,56,183,81,81,46,36,163,163,215,151,143,143,208,175,160,215,200,167,162,188,219,194,92,76,232,200,248,216,119,136,27,132,119,56,123]},{"1834248":[244,249,250,248,249,251,253,252,126,201,125,230,39,72,251,114,14,245,250,6,255,1,253,2,63,192,31,128,151,120,117,114,254,247,251,250,254,252,252,252,55,255,123,255,7,255,137,135,10,9,4,5,6,7,3,2,117,138,191,64,247,8,254]},{"1834312":[85,22,191,254,189,188,253,125,170,223,234,85,247,124,190,236,199,121,253,131,189,195,253,3,255]},{"1834338":[255]},{"1834340":[131,124,109,236,211,209,127,63,61,61,60,60,117,255,191,255,131,255,18,193,46,42,64,192,66,194,194,67,87,162,251]},{"1834372":[87,130,254]},{"1834376":[223,10,186,192,214,2,234]},{"1834384":[234,191,4,255,170,255,129,255,170,255,69,127,171,255,149,255,247]},{"1834402":[251,4,215,40,126,129,95,160,250,133,86,137,106,149,85,255,251,255,85,255,126,255,85,255,58,255,84,255,106,255,122,42,175,5,254,170,255,21,238,174,229,69,171,171,149,21,175,255,85,255,171,255,21,255,191,255,95,255,255,255,127,255,122,5,175,80,254,1,255]},{"1834472":[238,17,229,10,171,84,149,106,80,255,170,255,84,255,234,255,64,255,160,255]},{"1834493":[255,128,255,255,255,93,93,191,191,85,85,255,255,93,93,255,255,87,87,255,255,255,255,255,255,255,255,255,255,255,255,253,255,255,255,255]},{"1834530":[93,162,191,64,85,170,255]},{"1834538":[93,162,253]},{"1834542":[87,168]},{"1834545":[255]},{"1834547":[255]},{"1834549":[255]},{"1834551":[255]},{"1834553":[255]},{"1834555":[255]},{"1834557":[255]},{"1834559":[255,127,255,191,127,255,255,255,255,255,255,255,255,247,251,127,127,213,255,250,255,221,255,254,255,85,255,255,255,220,255,254,255,85,128,58,192,221]},{"1834598":[254]},{"1834600":[85]},{"1834602":[255]},{"1834604":[208,8,126,128]},{"1834609":[255]},{"1834611":[255]},{"1834613":[255]},{"1834615":[255]},{"1834617":[255]},{"1834619":[255]},{"1834621":[255]},{"1834623":[255,255,252,255,229,255,195,255,128,255,169,255,187,253,227,255,203,64,252,160,229]},{"1834645":[195,128,128]},{"1834649":[169,160,187]},{"1834653":[225,128,203,64,3,160,26]},{"1834661":[60,128,127]},{"1834665":[86,160,68]},{"1834669":[30,128,52,3,255,26,255,60,255,127,255,86,255,68,255,30,255,52,255,80,63,122,189,212,239,250,239,95,247,242,107,220,255,184,207]},{"1834705":[16,128,184]},{"1834709":[196]},{"1834711":[234,8,87,8,106]},{"1834717":[220]},{"1834719":[136]},{"1834721":[239]},{"1834723":[199]},{"1834725":[59]},{"1834727":[21]},{"1834729":[168]},{"1834731":[157]},{"1834733":[35,1,118,111,255,71,255,59,255,21,255,168,255,145,255,35,255,118,255]},{"1834753":[255]},{"1834755":[255,16,255,128,255]},{"1834761":[255,160,255,80,207,32,255]},{"1834773":[16,72,200,64,64]},{"1834779":[160]},{"1834781":[64,136,168,15,240,5,250,8,231,5,50,15,176,5,90,11,180,7,80,240,255,250,255,231,255,122,183,240,191,90,255,148,255,216,119,2,255,1,255,64,255,25,231,131,215,5,255,35,253,133,191,2]},{"1834834":[1]},{"1834836":[32,32,17]},{"1834840":[179,16,13,8,33]},{"1834846":[133,128,255]},{"1834850":[255]},{"1834852":[31,192,7,248,231,56,199,48,255]},{"1834862":[191,64]},{"1834865":[255]},{"1834867":[255,224,223,248,255]},{"1834873":[255,56,247]},{"1834877":[255]},{"1834879":[255,255,95,127,255,191,221,127,255,191,255,95,255,255,213,220,253,95,10,127]},{"1834900":[157,8,127,1,191,10,95,4,213]},{"1834910":[222]},{"1834912":[245,10,255]},{"1834916":[247]},{"1834918":[254]},{"1834920":[245,10,251]},{"1834924":[255]},{"1834926":[255,2]},{"1834929":[255]},{"1834931":[255,8,247,1,254]},{"1834937":[255,4,251]},{"1834941":[255]},{"1834943":[255,255,254,255,191,255,127,31,191,255,255,255,255,255,255,255,255,255,190,191,31,95,127,95,23,255,191,255,95,255,191,255,95,64,175,224,21,160,75,232,85,64,175,160,85,64,43,160,21,16,238,10,245,20,139,2,253,16,239,10,245,148,107,74,181,255,255,255,207,255,255,255,255,255,172,255,214,255,237,255,252,255,255,255,207,255,255,255,255,253,174,255,214,253,239,254,253]},{"1835041":[255]},{"1835043":[255]},{"1835045":[255]},{"1835047":[127,2,253]},{"1835051":[255,2,253,1,126]},{"1835057":[255]},{"1835059":[207]},{"1835061":[255,128,127,2,172]},{"1835067":[214,2,237,129,124,255,235,214,126,250,191,223,127,255,235,215,92,251,170,125,219,1,235,3,87]},{"1835093":[186,10,95,1,235,34,118,4,174,8,89,20,254,168,253,69,255,160,245,20,254,139,253,81,255,166,247,255,1,255,2,255]},{"1835126":[255,10,255,1,255,2,255]},{"1835134":[255,8,255,253,251,239,247,174,191,115,255,202,235,14,255,234,175,219,87,255,187,251,85,247,191,191,117,239,171,171,85,255,175,175,2,170,20,68,89,170,204,64,37,186,229,68,21,170,116,80,255,85,255,187,255,85,255,191,255,69,239,187,255,85,255,175,240,144,245,176,249,80,245,144,254,224,253,80,253,84,245,240,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,111,139,79]},{"1835236":[175,162,111]},{"1835240":[31,128,175]},{"1835244":[171,162,15]},{"1835248":[255,116,255,255,255,93,255,255,255,127,255,255,255,93,255,255,1,69,2,39,132,69,2,7,65,21,2,139,1,65]},{"1835279":[11,254,255,253,255,251,255,253,255,254,255,253,255,254,255,255,255,255,171,255,82,255,62,255,82,255,171,255,86,255,187,255,84,255,84,255,173,255,193,255,173,255,84,255,169,255,68,255,171,84,255,169,255,85,255,170,255,85,127,170,255,84,254,239,255,170,255,84,255,170,255,85,255,170,255,84,255,170,254,16,255,255,85,255,171,255,85,255,170,255,213,255,171,254,84,255,239,255,170,255,84,255,170,255,85,255,42,255,84,254,171,255,16,40,255,64,253,32,255,80,247,66,255,64,93,32,126,64,87,128,255,2,255,128,255,8,255,168,255,34,127]},{"1835421":[126,168,255,255,127,255,255,255,127,255,255,255,87,127,127,127,127,255,255,255,128,253,2,255,128,247,8,255,168,93,162,126,129,87,168]},{"1835457":[248]},{"1835459":[212]},{"1835461":[254]},{"1835463":[84]},{"1835465":[238]},{"1835467":[85,192,191,128,21]},{"1835473":[248,40,252]},{"1835477":[254,168,252,16,254,40,125,192,191,162,55,255,255,255,255,255,255,255,255,255,255,127,127,63,191,127,127,248,7,212,43,254,1,84,171,238,17,85,170,191,64,21,234,32]},{"1835529":[160]},{"1835531":[64]},{"1835533":[128]},{"1835536":[48,32,162]},{"1835540":[64]},{"1835542":[8]},{"1835545":[160,2,64]},{"1835549":[128,8]},{"1835552":[239,255,93,255,191,255,215,223,255,255,253,255,255,255,247,255,16,239,162,93,64,191,8,247,160,95,66,189,128,127,8,247]},{"1835591":[128]},{"1835600":[17]},{"1835602":[168]},{"1835604":[5]},{"1835606":[160]},{"1835608":[1]},{"1835610":[168]},{"1835612":[4]},{"1835614":[162]},{"1835616":[238,255,87,253,250,255,223,117,254,255,87,253,251,255,93,247,17,238,170,87,5,250,42,223,1,254,170,87,4,251,170,93]},{"1835650":[4]},{"1835662":[16]},{"1835664":[68]},{"1835666":[150,134,80]},{"1835670":[85]},{"1835672":[84,16,17]},{"1835676":[84]},{"1835678":[85,16,187,238,239,84,175,250,170,85,187,238,238,85,171,254,186,85,85,187,57,239,85,175,255,170,69,187,187,238,85,171,239,186,32]},{"1835714":[64]},{"1835716":[130]},{"1835720":[2]},{"1835722":[4]},{"1835728":[49,49,194,194,138,130,16]},{"1835736":[2,2,5,5]},{"1835742":[16]},{"1835744":[255,168,255,64,247,170,239,16,255,170,255,68,255,170,239,16,70,255,61,255,93,247,255,239,85,255,186,255,85,255,255,239,9,11,15,2,6,1]},{"1835783":[1]},{"1835785":[1,130]},{"1835788":[1,2,65,2,95,92,147,150,216,222,111,110,194,194,29,156,191,156,173,173,242,136,252,4,249,1,254,1,255,9,127,1,220,34,255,3,43,242,109,250,32,255,144,255,52,255,99,254,97,222,80,254,92,92,124,61,60,124,189,190,255,124,58,185,112,117,255,250,126,129,223,225,221,99,190,192,186,71,250,132,127,128,118,143,62,62,126,126,188,188,63,61,126,127,121,121,126,123,254,252,227,163,3,3,194,66,66,195,128,1,198,197,142,141,2,1,92,156,255,62,125,60,221,28,156,95,157,92,190,255,62,190,222,33,93,35,253,67,125,195,126,192,125,195,221,227,94,97,158,30,191,191,221,221,125,253,191,189,61,189,190,62,190,190,227,35,64,128,162,2,34,162,226,98,98,226,193,65,1,129,115,112,59,184,117,244,121,127,4,138,198,124,248,102,112,158,120,135,248,7,252,3,119,136,138,245,196,3,100,3,4,49,120,120,248,120,248,122,120,120,8]},{"1836010":[124,124,254,250,214,242,143,143,199,199,143,138,135,135,255,255,131,69,101,155,13,121,123,120,251,248,254,253,126,125,126,124,252,254,250,248,249,251,123,133,123,135,127,131,251,6,250,7,250,5,254,3,255]},{"1836064":[121,121,251,251,250,250,255,254,254,254,254,252,254,254,254,252,134,132,4,4,5,1,129,129,129,129,3,3,5,5,7,6,246,251,102,109,110,100,246,240,247,241,237,225,252,246,234,246,127,130,239,20,254,13,234,19,234,27,234,25,255,6,255]},{"1836128":[249,240,249,240,248,248,246,246,247,247,237,237,225,225,245,225,13,11,139,141,147,149,9,13]},{"1836153":[4,18,22,27,23,31,19,117,117,242,244,231,234,251,252,255,247,243,245,231,224,241,246,252,3,245,14,250,4,234,17,230,25,252,3,236,17,231,26,249,249,240,240,251,243,244,245,246,246,228,226,226,227,244,240,142,138,15,13,28,31,10,9,11,13,29,11,28,27,15,14,39,215,31,223,111,15,254,30,126,158,127,223,126,222,175,79,183,8,126,33,174,81,62,225,46,241,110,177,47,144,47,208,223,79,207,143,143,207,46,238,62,254,63,255,95,223,15,207,176,144,80,16,176,80,17,193,1,193]},{"1836283":[192,33,193,48,208,29,28,221,28,157,95,153,90,195,36,255,80,71,240,251,132,61,194,253,194,255,129,254,131,230,89,248,215,198,121,94,245,60,60,252,252,254,188,253,189,101,65,132,135,134,57,238,241,227,226,35,34,98,99,102,103,190,61,40,87,134,255,10,63,189,62,184,58,255,125,251,120,251,120,59,188,48,181,62,187,190,65,190,194,186,70,187,199,185,199,253,131,253,133,245,13,63,61,189,188,127,127,250,251,250,251,126,122,123,120,255,126,194,67,70,71,128,1,4,5,4,7,196,199,204,207,192,195,10,138,168]},{"1836420":[66,130,169,65,74,170,160]},{"1836428":[2,2,129,1,255,255,215,255,191,255,87,255,255,255,95,255,255,255,127,255,138,117,40,87,194,29,233,22,170,85,160,95,2,253,129,126]},{"1836465":[255,40,255,64,255,168,255]},{"1836473":[255,160,255]},{"1836477":[255,128,255,174,174,85,85,171,171,21,21,175,175,85,85,171,171,21,21,255,255,255,255,255,255,255,255,253,255,255,255,253,255,255,255,174,81,85,170,171,84,21,234,173,80,85,170,169,84,21,234]},{"1836529":[255]},{"1836531":[255]},{"1836533":[255]},{"1836535":[255]},{"1836537":[255]},{"1836539":[255]},{"1836541":[255]},{"1836543":[255,254,254,222,223,255,255,87,87,239,239,71,95,255,255,87,87,119,255,255,255,221,255,254,255,93,255,186,255,213,255,234,255,118]},{"1836578":[222,33,221]},{"1836582":[86,168,77]},{"1836586":[10,176,213]},{"1836590":[66,168]},{"1836593":[255]},{"1836595":[255]},{"1836597":[255]},{"1836599":[255]},{"1836601":[255]},{"1836603":[255]},{"1836605":[255]},{"1836607":[255,255,255,127,122,239,255,215,238,255,255,255,255,255,255,255,249,80,255,168,250,112,255,184,238,16,255,160,255]},{"1836637":[255,168,249,80]},{"1836642":[40,5,96,16,128,57,16]},{"1836650":[160]},{"1836654":[168,6]},{"1836657":[255,5,255]},{"1836661":[255,1,255]},{"1836665":[255]},{"1836667":[255]},{"1836669":[255,6,255,245,254,250,255,245,255,254,223,181,255,255,251,213,255,254,255]},{"1836689":[244,128,250]},{"1836693":[245,128,222,64,245]},{"1836699":[251]},{"1836701":[213]},{"1836703":[254]},{"1836705":[11,128,5]},{"1836709":[10,128,33]},{"1836713":[74]},{"1836715":[4]},{"1836717":[42]},{"1836719":[1,11,255,5,255,10,255,33,255,10,255,4,255,42,255,1,255,16,231,160,255,64,255,186,255,17,245,170,255,192,191,224,255,8]},{"1836755":[160]},{"1836757":[64]},{"1836759":[186,26,17,17,187]},{"1836765":[128]},{"1836767":[224,10,253,1,94,3,188]},{"1836775":[69,26,238]},{"1836779":[68,3,124]},{"1836783":[31,245,255,94,255,188,255,69,255,228,255,85,238,124,255,31,255,2,255]},{"1836803":[255,2,223,160,255,8,255,20,255]},{"1836813":[255,2,255,2]},{"1836818":[32,32,98,64,64,224,8]},{"1836826":[4,16,16,16,1,3,239,16,223]},{"1836836":[63,224,31,64,255]},{"1836842":[231,8,239]},{"1836846":[124,128,16,255,32,223,128,255]},{"1836855":[255]},{"1836857":[255,8,255,16,239,129,254,63,247,87,255,191,221,95,255,255,117,93,255,191,221,85,255,55]},{"1836882":[87]},{"1836884":[157]},{"1836886":[95]},{"1836888":[117]},{"1836890":[93]},{"1836892":[157]},{"1836894":[85]},{"1836896":[255]},{"1836898":[255]},{"1836900":[255]},{"1836902":[255]},{"1836904":[255]},{"1836906":[255]},{"1836908":[255]},{"1836910":[255]},{"1836913":[255]},{"1836915":[255]},{"1836917":[255]},{"1836919":[255]},{"1836921":[255]},{"1836923":[255]},{"1836925":[255]},{"1836927":[255,255,93,255,185,255,253,255,254,255,255,255,255,255,255,255,255,93,8,187,1,253,168,254,20,255,175,255,21,255,43,255,21,247,8,252,2,87,32,235,16,80,170,234,5,212,42,234,1]},{"1836977":[255,3,254,136,119,4,251,5,250,16,239,1,254,20,235,255,254,255,254,249,253,255,255,255,254,255,239,255,255,255,255,255,254,255,254,255,253,255,125,255,254,255,239,255,255,255,255]},{"1837025":[239]},{"1837027":[81,2,187,130,81]},{"1837033":[185]},{"1837035":[85]},{"1837037":[187]},{"1837039":[87,16,238,174,80,68,187,44,211,70,184,170,69,68,187,168,87,255,145,255,82,255,120,255,212,255,212,255,251,255,20,255,122,213,187,250,87,252,123,254,213,213,254,251,255,212,63,254,123,42,213,5,250,3,252,1,254,42,213,4,123,43,212,1,254,42,145,5,82,3,120,1,212,42,212,132,123,43,20,1,122,254,235,215,94,250,175,253,90,239,168,214,46,235,47,74,171]},{"1837137":[234,34,118]},{"1837141":[170,15,93,23,189,3,7,17,59,30,30,21,255,137,253,85,255,165,247,69,254,248,253,196,254,225,245,255]},{"1837170":[255,2,255]},{"1837174":[255,8,255,1,255,2,255,1,255,10,191,250,239,54,255,190,175,251,255,235,191,184,247,62,255,124,21,191,239,239,85,255,175,175,87,255,255,255,87,119,255,255,69,234,217,80,65,234,84,80,20,168,7,68,201,168,131,1,255,21,255,175,255,21,255,175,255,87,255,187,255,87,255,254,252,160,253,196,254,224,245,128,222,64,53,68,200,64,84,64,127,255,255,255,255,255,255,255,191,255,223,223,191,255,255,255,95,138,59]},{"1837284":[31,1,127]},{"1837288":[255,232,251,192,255,98,191,1,255,117,255,255,255,254,255,255,255,23,255,31,255,157,255,254]},{"1837313":[17,2,131,64,212,136,137,128,17,2,163,128,68,10,15,255,255,253,255,63,255,119,255,255,255,253,255,255,255,245,255,255,234,255,86,255,234,255,216,255,42,255,86,255,42,255,26,255,21,255,169,255,21,255,39,255,213,255,169,255,213,255,229,21,127,169,255,85,127,175,255,85,127,168,253,69,255,160,245,234,255,84,255,170,255,80,255,170,255,87,255,186,255,95,255,255,149,255,171,255,213,255,175,255,213,255,170,255,69,255,170,255,106,255,84,255,42,255,80,255,42,253,87,255,186,245,95,66,255,84,247,138,255,80,215,64,238]},{"1837451":[85,8,175]},{"1837455":[21,168,255,8,255,32,255,40,255,187,255,250,255,240,255,250,255,255,87,255,255,255,223,255,255,255,85,255,175,255,95,255,239,255,168,247,8,255,32,215,40,238,187,85,250,175,240,21,250]},{"1837505":[254]},{"1837507":[84,128,142]},{"1837511":[69,8,238]},{"1837515":[85]},{"1837517":[190]},{"1837519":[85,129,255,169,253,80,206,138,207,144,254,170,255,64,254,160,245,255,127,255,255,239,255,223,223,255,127,255,255,255,255,255,255,254,129,84,171,158,97,69,186,238,145,85,170,190,65,85,170]},{"1837569":[160,2,64]},{"1837573":[160]},{"1837575":[64]},{"1837577":[128]},{"1837581":[128,2]},{"1837585":[160]},{"1837587":[64]},{"1837589":[160]},{"1837591":[64]},{"1837593":[128]},{"1837597":[128,2,2,255,255,255,253,255,255,255,255,255,255,255,255,255,255,255,255,160,95,66,189,160,95,64,191,128,127]},{"1837627":[255,128,127]},{"1837631":[255]},{"1837646":[34]},{"1837648":[1]},{"1837650":[40]},{"1837654":[2]},{"1837658":[34]},{"1837662":[170,34,254,255,215,253,255,255,253,247,255,255,221,255,255,255,119,255,1,254,42,215]},{"1837685":[255,10,253]},{"1837689":[255,34,221]},{"1837693":[255,136,119]},{"1837698":[16]},{"1837704":[4]},{"1837706":[129]},{"1837708":[81]},{"1837710":[4]},{"1837712":[84]},{"1837714":[145,16,85]},{"1837720":[20,4,137,129,85,81,164,4,171,254,126,213,170,255,255,85,239,254,247,221,251,255,95,245,85,171,171,126,85,170,170,255,17,239,42,247,4,251,170,95]},{"1837766":[64]},{"1837768":[2]},{"1837770":[20]},{"1837772":[24,16,85]},{"1837778":[20]},{"1837782":[64,64,67,3,21,21,24,24,125,125,255,170,235,84,255,170,255,80,191,234,255,84,255,186,255,85,85,255,191,235,85,255,175,255,84,191,170,255,85,255,130,255,132,1]},{"1837827":[4,6,4,5,9,41,9,89,5,167,31,39,31,171,140,74,15,31,30,25,18,125,126,103,108,191,160,195,212,219,162,188,64,255,163,245,13,241,169,243,75,235,179,255,15,115,221,241,189,69,249,226,254,10,242,150,254,76,244,32,240,116,122,228,236,252,244,236,248,236,248,240,232,192,225,216,242,255,1,252,10,251,7,248,8,217,61,247,15,255,6,151,84,249,242,245,246,227,224,247,224,235,224,207,192,254,209,253,227,140,139,29,27,28,7,23,31,26,23,48,15,56,47,25,14,207,111,47,79,119,7,7,47,3,23,253,9,221,159,7,251,127,192,47,176,151,248,247,192,253,230,13,10,191,196,119,16,63,31,111,239,183,55,219,59,235,27,249,1,187,121,233,137,48,240,16,208,40,200,20,224,12,244,254,242,186,70,118,114,25,77,133,169,152,174,248,230,225,247,201,221,201,209,203,223,38,153,146,65,255,2,215,48,223,48,253,26,245,6,249,26,109,121,181,181,237,201,255,249,239,233,229,225,249,233,231,231,166,154,90,78,127,99,7,11,30,18,54,58,50,58,48,56,249,251,254,254,223,223,207,207,231,247,231,247,207,223,207,223,254,1,253,2,239,16,239,16,223,32,223,32,215,40,215,56,255,253,255,255,255,255,239,239,255,239,255,239,223,207,207,207,6,6,1,1,32,32,48,48,24,24,24,24,48,48,48,48,201,213,207,211,237,237,235,231,211,203,213,221,197,213,171,179,241,2,249,22,221,34,213,42,201,54,223,32,215,40,243,12,253,237,227,227,233,233,227,227,195,195,195,195,195,203,195,195,50,58,60,52,22,30,28,20,60,60,62,62,62,62,124,92,242,242,255,254,253,252,233,232,225,252,218,200,208,232,208,232,252,3,253,3,253,3,253,2,222,47,221,58,242,7,228,15,254,254,255,255,253,253,252,252,240,225,213,214,234,205,244,219,13,12]},{"1838260":[2,2,23,22,28,29,37,42,48,47,32,63,143,223,147,35,121,177,125,1,215,161,82,87,84,65,196,57,183,88,23,232,89,166,245,142,114,143,3,254,235,21,127,199,47,239,7,231,67,179,117,13,115,143,1,252,170,126,124,196,48,208,28,236,76,212,242,250,80,124,1,175,171,85,57,185,251,196,255,224,221,209,255,245,245,250,243,250,117,126,116,112,174,117,214,57,253,7,239,27,249,14,255]},{"1838364":[253,6,243,14,255,241,247,249,224,230,248,254,240,246,252,246,248,242,245,245,10,31,6,15,56,55]},{"1838391":[7,9,14,13,10,137,142,139,142,118,241,118,245,119,248,98,104,124,118,236,226,72,74,12,103,247,11,247,15,251,5,123,137,111,155,111,159,107,157,243,30,241,114,241,114,254,117,118,113,122,125,234,237,98,101,99,12,140,139,136,143,138,143,154,159,128,135,16,23,176,191,224,235,8,8]},{"1838467":[128]},{"1838469":[128]},{"1838471":[8]},{"1838477":[162]},{"1838479":[144,255,255,255,255,255,255,255,255,255,255,255,255,255,93,255,239,8,247,128,127,128,127,8,247]},{"1838505":[255]},{"1838507":[255,162,93,144,111]},{"1838513":[255]},{"1838515":[255]},{"1838517":[255]},{"1838519":[255]},{"1838521":[255]},{"1838523":[255]},{"1838525":[255]},{"1838527":[255,170,170,5,5,42,42,1,1,8,8]},{"1838540":[2,2]},{"1838544":[247,255,255,255,221,255,255,255,255,255,255,255,253,253,255,255,162,85,5,250,8,213,1,254,8,247]},{"1838571":[255]},{"1838573":[255]},{"1838575":[255]},{"1838577":[255]},{"1838579":[255]},{"1838581":[255]},{"1838583":[255]},{"1838585":[255]},{"1838587":[255]},{"1838589":[255]},{"1838591":[255,255,255,87,87,43,43,21,21,175,175,21,21,42,42,1,1,84,255,250,255,220,255,234,255,80,255,234,251,213,255,254,255,84]},{"1838626":[82,168,8,84]},{"1838631":[234]},{"1838633":[80]},{"1838635":[238]},{"1838637":[213]},{"1838639":[254]},{"1838641":[255]},{"1838643":[255]},{"1838645":[255]},{"1838647":[255]},{"1838649":[255]},{"1838651":[255]},{"1838653":[255]},{"1838655":[255,255,255,255,255,255,255,119,119,255,255,85,85,143,143,85,85,16,255,184,255,16,255,136,255]},{"1838681":[255,170,255,112,126,170,239,16]},{"1838690":[184]},{"1838692":[16]},{"1838695":[136]},{"1838699":[170]},{"1838701":[209]},{"1838703":[186]},{"1838705":[255]},{"1838707":[255]},{"1838709":[255]},{"1838711":[255]},{"1838713":[255]},{"1838715":[255]},{"1838717":[255]},{"1838719":[255,245,255,254,255,221,223,255,255,255,255,255,255,255,255,255,255]},{"1838737":[245,32,254,32,253]},{"1838743":[255,5,250,8,247,19,236,22,169]},{"1838753":[10,32,1]},{"1838757":[2]},{"1838760":[5]},{"1838762":[8]},{"1838764":[19]},{"1838766":[22,64,10,255,1,255,2,255]},{"1838775":[255,5,255,8,255,19,255,22,255]},{"1838785":[255,170,255,64,255,234,255,85,255,250,255,255,253,255,255,39,39,43,129,92,28,126,148,77,24,55,205,191,64,111,144,8,209,46,80,99,128,107]},{"1838824":[71,160,50]},{"1838828":[191]},{"1838830":[111]},{"1838832":[246,217,123,254,220,227,126,235,237,247,55,250,191,253,111,255,16,239,39,221,74,191,171,245,90,191,187,231,215,126,255,250,8,8,39]},{"1838868":[74]},{"1838870":[187,16,90]},{"1838874":[251,64,215]},{"1838878":[255]},{"1838880":[103,144,255]},{"1838884":[255]},{"1838886":[239]},{"1838888":[255]},{"1838890":[191]},{"1838892":[255]},{"1838894":[255]},{"1838896":[152,247,34,221,64,191,186,229,80,191,250,167,213,126,255,250,255,245,127,255,255,255,255,127,255,255,255,95,253,173,255,180,245]},{"1838930":[127]},{"1838932":[255]},{"1838934":[255]},{"1838936":[255]},{"1838938":[255]},{"1838940":[255]},{"1838942":[255]},{"1838944":[255]},{"1838946":[255]},{"1838948":[255]},{"1838950":[255]},{"1838952":[255]},{"1838954":[255]},{"1838956":[253,2,255]},{"1838961":[255]},{"1838963":[255]},{"1838965":[255,128,127]},{"1838969":[255,160,95,80,173,235,180,255,255,255,255,255,255,255,255,253,125,255,255,215,215,127,63,255,175,255,85,255,171,255,21,127,41,255,5,247,3,223,129,80,170,170,4,84,40,234]},{"1839016":[212,2,250]},{"1839020":[220,40,126]},{"1839024":[5,250,81,174,131,124,21,234,41,212,5,250,3,212,97,158,255,255,255,251,255,254,255,238,255,250,255,254,191,181,239,239,255,255,255,251,255,254,255,238,255,250,255,92,191,181,255,69]},{"1839073":[175]},{"1839075":[93]},{"1839077":[187]},{"1839079":[21]},{"1839081":[175,162,5,64,74,170,17,80,175,162,89,68,186,234,4,80,170,88,166,181]},{"1839102":[68,171,255,146,255,246,255,8,255,146,255,2,255,168,255]},{"1839118":[221,200,215,186,255,246,221,42,255,146,247,10,255,168,255]},{"1839134":[223,64,40,215]},{"1839139":[249,34,221]},{"1839143":[255,8,247]},{"1839147":[255]},{"1839149":[255,170,117,40,146,6,240,34,8]},{"1839159":[146,8,2]},{"1839163":[168]},{"1839167":[200,171,173,43,63,61,126,191,247,127,239,253,204,170,170,168,168,81,249,235,235,157,189,191,191,127,127,255,255,255,255,87,87,6,254,20,212,67,227,72,72,144,144,51,49,85]},{"1839214":[255,168,255,1,255,43,255,28,255,183,255,111,255,206,255,255,255,87,223,255,249,136,248,120,80,64,232,65,2,2,4,12,160,176,95,223,255,255,255,255,255,255,255,255,253,255,251,255,95,255,32,160,119,68,135,130,191,16,191,170,255,2,255,4,255,170,255,95,255,187,255,125,255,239,255,85,255,253,255,251,245,95,192,128,64,8,4,21,44,38,8,14,32,32]},{"1839309":[43,10,79,255,255,255,255,227,247,211,239,247,255,223,255,255,255,255,255,127,106,255,68,255,190,231,52,255,152,255,34,255]},{"1839342":[255,170,255,149,255,187,247,73,247,203,239,119,253,223,255,255,95,255,1,87,42,239]},{"1839365":[255,160,241]},{"1839369":[136]},{"1839371":[85]},{"1839373":[186,170,191,254,255,213,255,255,255,95,255,255,255,255,255,255,255,255,255,255,169,255,42,255]},{"1839398":[255,170,255,1,255,170,255,69,255,170,255,86,255,213,255,255,245,95,254,255,85,255,186,255,255,255,16,254,128,213,64,250]},{"1839431":[85]},{"1839433":[238,32,117]},{"1839437":[170,138,128,239,255,127,255,191,255,255,255,250,254,252,253,170,170,138,138,255,17,255,170,255,69,255,170,255,21,255,171,255,85,255,255,254,239,213,127,250,191,85,255,238,251,117,254,170,255,128,255]},{"1839489":[239]},{"1839491":[85]},{"1839493":[186]},{"1839495":[80]},{"1839497":[234,2,64,1,34,170]},{"1839504":[186,255,232,253,234,250,144,208,170,234,66,66,35,35,170,170,255,85,255,191,255,85,255,239,255,85,255,191,255,221,255,255,239,186,85,234,186,239,80,191,234,191,64,255,34,255]},{"1839551":[255]},{"1839553":[250]},{"1839555":[80]},{"1839557":[160,2]},{"1839560":[1,136,170]},{"1839564":[85]},{"1839566":[255]},{"1839568":[128,250]},{"1839571":[80]},{"1839573":[160,2,2,137,137,170,170,85,85,255,255,255,127,255,255,255,255,255,255,255,119,255,255,255,255,255,255,250,133,80,175,160,95]},{"1839607":[255,136,255]},{"1839611":[255]},{"1839613":[255]},{"1839615":[255,2]},{"1839618":[2]},{"1839620":[5]},{"1839622":[170]},{"1839624":[85]},{"1839626":[191]},{"1839628":[255]},{"1839630":[213,42,6,2,2,2,5,5,170,170,85,85,191,191,255,255,255,197,251,255,255,255,255,255,255,255,255,255,255,255,255,255,197,239,4,251]},{"1839667":[255]},{"1839669":[255]},{"1839671":[255]},{"1839673":[255]},{"1839675":[255]},{"1839677":[255,42,255,1]},{"1839682":[170]},{"1839684":[85]},{"1839686":[255]},{"1839688":[127]},{"1839690":[251,12,251,4]},{"1839695":[255,1,1,170,170,85,85,255,255,127,127,255,251,255,251,255]},{"1839712":[255,255,255,255,255,255,255,255,255,255,251,247,251,255]},{"1839727":[255]},{"1839729":[255]},{"1839731":[255]},{"1839733":[255]},{"1839735":[255]},{"1839737":[255,12,255,4,255,255,255,85]},{"1839746":[189]},{"1839748":[93]},{"1839750":[255]},{"1839752":[255]},{"1839754":[84,171,160,95,8,255,85,85,191,191,93,93,255,255,255,255,255,84,255,160,255,8,255,255,255,253,255,255,255,255,255,255,84,255,160,255,8,247]},{"1839793":[255]},{"1839795":[255]},{"1839797":[255]},{"1839799":[255]},{"1839801":[255,171,255,95,255,255,255,118]},{"1839810":[213]},{"1839812":[255]},{"1839814":[213,34,238,17,64,191]},{"1839821":[255,170,255,119,119,253,253,255,255,255,221,255,238,255,64,255]},{"1839838":[255,170,255,254,255,213,255,255,221,247,238,255,64,255]},{"1839853":[255,170,85]},{"1839857":[255,2,255]},{"1839861":[255,34,255,17,255,191,255,255,255,255,255,3,11,71,55,47,191,47,95,31,191,95,127,143,207,16,80,123,76,215,168,199,8,159,128,255]},{"1839898":[143,16,159,224,41,214,247,151,183,7,127,159,255,47,47,143,255,63,159,95,159,95,56,232,24,232,192,224,80,240,176,192,128,192,240,144,105,169,138,178,34,83,190,159,2,117,218,221,240,247,250,253,2,7,175,87,206,82,85,143,253,1,241,8,251,1,248,2,119,138,180,130,191,161,190,186,246,130,255,254,254,252,247,245,247,243,98,92,206,252,85,107,253,251,33,35,11,9,8,2,125,122,5,11,245,241,117,121,247,243,125,125,255,255,255,255,254,254,127,132,117,138,253,6,245,14,243,12,255]},{"1840028":[127,128,191,64,127,117,241,241,253,245,247,247,255,255,255,255,255,255,127,127,250,250,14,10,138,138,8,8,130,130]},{"1840062":[129,129,203,215,233,245,233,245,251,239,203,243,147,155,95,127,48,16,241,18,199,36,231,4,255,8,243,4,251,4,239,16,91,252,239,239,251,251,219,219,199,195,251,203,219,211,187,155,51,19,48,56,6,14,38,14,52,12,52,44,124,100,228,216,135,183,199,231,143,175,135,183,215,215,215,247,143,191,135,191,76,52,247,8,247,8,231,40,183,72,215,8,159,64,191,64,179,76,231,199,239,207,215,215,215,215,183,183,183,167,191,135,183,183,56,56,112,112,104,104,40,56,72,24,88,72,120,72,251,131,139,139,195,219,247,223,199,215,163,187,243,235,7,127,136,184,203,52,131,116,147,100,251,4,191,72,239]},{"1840220":[255]},{"1840222":[63,192,203,219,219,219,223,223,151,135,183,167,191,183,255,167,183,183,116,124,36,52,32,48,120,40,92,108,76,124,248,200,111,31,128,169,212,217,255,219,131,159,245,244,253,255,253,255,5,7,255,38,184,66,187,119,223,38,242,14,249,4,254,1,14,240,214,217,213,219,233,238,217,193,253,253,255,255,251,249,251,248,112,111,52,47,11,20,125,126]},{"1840313":[1,1]},{"1840316":[6,1,14,13,82,81,186,57,251,121,58,56,56,184,127,127,255,255,191,127,123,135,187,198,187,196,250,7,253,130,191,64,255]},{"1840350":[95,96,58,186,187,186,248,248,122,122,125,125,127,127,191,191,191,191,109,109,69,69,7,5,197,197,199,199,128,128,64,128,64,192,112,120,224,233,237,224,244,254,224,234,237,251,201,207,30,58,255,1,255,10,251,12,228,17,239,18,251,8,215,56,147,72,254,244,244,245,250,254,254,254,237,229,247,229,207,201,181,181,143,137,30,27,19,20,5,1,31,19,18,30,38,42,219,207,152,158,172,237,128,3,248,224,204,208,204,216,236,250,58,57,247,9,3,190,219,96,52,220,241,25,243,27,195,33,117,136,102,249,69,90,31,48,215,216,239,232,239,232,253,242,214,209,96,151,160,247,156,7,35,15,62,55,52,63,6,15,111,95]},{"1840513":[234,32,197]},{"1840517":[175]},{"1840519":[1]},{"1840522":[128]},{"1840524":[2,168,168,85,255,21,239,10,175]},{"1840534":[1]},{"1840536":[128,128,122,122,255,87,87,2,234,21,245,10,255]},{"1840550":[255]},{"1840552":[255]},{"1840554":[255]},{"1840556":[87,170,170,85]},{"1840561":[255,48,255,80,255,254,255,127,255,133,255,168,255,253,255,10,170,16,85]},{"1840581":[255,2,119,129,175]},{"1840588":[42,136,33,16,245,85,239,170,255]},{"1840598":[117]},{"1840600":[174,128,128,128,254,126,223,207,160,95,85,170,255]},{"1840614":[255]},{"1840616":[255,128,255]},{"1840620":[127,170,239,17]},{"1840625":[255,16,255]},{"1840629":[255,138,255,209,255,127,255,137,255,48,255,170,170,21,85,43,187]},{"1840647":[247,21,255]},{"1840651":[71,162,162,17,17,85,85,234,170,212,68,255,8,234]},{"1840666":[71]},{"1840668":[162,162,253,253]},{"1840673":[255,64,191,145,110,247,8,255]},{"1840682":[255]},{"1840684":[255,162,255,17]},{"1840689":[255]},{"1840691":[255,1,255]},{"1840695":[255,21,255,184,255,255,255,19,255,251,251,85,85,255,255,87,87,63,255,1,255,170,175,21,21,4,70,170,171]},{"1840726":[168,168,192]},{"1840730":[254]},{"1840732":[175,170,21,21]},{"1840737":[189]},{"1840739":[254,64,191,66,189,245,10,255]},{"1840748":[255,170,255,21]},{"1840753":[255]},{"1840755":[255,64,255,66,255,53,255,1,255,250,255,255,255,247,255,255,255,255,255,253,253,255,255,223,255,243,255,85,95,52,202,10,21,4]},{"1840790":[2,2]},{"1840794":[32]},{"1840796":[174,162,95,85,60,9,10,224,4,251,136,119,80,175,255]},{"1840812":[255,162,255,85,52,247,10,255,4,255,136,255,80,255,223,255,243,255,245,255,87,255,255,255,244,246,234,234,85,85,251,251,255,255,95,255,87,168,159]},{"1840853":[11]},{"1840855":[21]},{"1840857":[170]},{"1840859":[4]},{"1840862":[224,64,255,168,159,96,2,246]},{"1840871":[234]},{"1840873":[85,186,65,255]},{"1840878":[255,64,87,87,159,255]},{"1840885":[253]},{"1840887":[255]},{"1840889":[255,186,255,255,255,95,255,223,112,255,250,70,100,170,170]},{"1840905":[8,170,170,213,213,63,191,255,32,255]},{"1840916":[70,185,42,85]},{"1840921":[255]},{"1840923":[85]},{"1840925":[42,128]},{"1840928":[223]},{"1840930":[255]},{"1840932":[102,32,42,128,8,8,170]},{"1840940":[215]},{"1840942":[255]},{"1840944":[255,80,255,250,70,221,42,255]},{"1840953":[247,170,255,215,255,127,255,255,171,255,160,183,46,149,133,2,8,12,12,68,68,234,234,255]},{"1840978":[255]},{"1840980":[145,76,152,106,2,253]},{"1840987":[247]},{"1840989":[187]},{"1840991":[21,255]},{"1840994":[255]},{"1840996":[187,8,145,12,10,8,4,8,238]},{"1841006":[255]},{"1841008":[85,171,255,160,179,68,145,238,2,245]},{"1841019":[255,238,255,255,255,245,181,255,95,255,191,255,149,239,175,5,5,2,2,128,128,125,128,245]},{"1841044":[106]},{"1841046":[234]},{"1841048":[64,16]},{"1841051":[250]},{"1841053":[253]},{"1841055":[127,119,10,255]},{"1841060":[255]},{"1841062":[255]},{"1841064":[239]},{"1841066":[5]},{"1841068":[170]},{"1841070":[213]},{"1841072":[64,181,170,85,213,42,255,128,239,16,5,250,170,253,213,255,218,202,170,170,220,92,246,118,255,255,95,95,171,171,1,1,250,138,186]},{"1841108":[166]},{"1841110":[132,8,10]},{"1841115":[160]},{"1841117":[84]},{"1841119":[254,85,37,239,85,221,35,247,1,255]},{"1841130":[95]},{"1841132":[191]},{"1841134":[87]},{"1841136":[154,64]},{"1841139":[170,216,4,242,12,245,10,95,160,191,84,87,254,255,84,85,84,170,168,168,168,80,80,250,250,255,255,85,85,255,84,85,84,170,168,232]},{"1841176":[144]},{"1841183":[170]},{"1841185":[171,170,171,85,87,191,87,127,175,255,5,255]},{"1841198":[255]},{"1841200":[84]},{"1841202":[84]},{"1841204":[168]},{"1841207":[168,64,16,250]},{"1841212":[255]},{"1841214":[255,170,1,1]},{"1841220":[85,85,85,85,84,1,255,255,64,191,255,255,254,255,255,255,255,255,247,247,170]},{"1841242":[81,251,191]},{"1841246":[138]},{"1841248":[255,1,255,171,255,255,255,85,255]},{"1841258":[119,34,255,255,117,255,255,254,84,255,85,255,93,255,255,255,217,174,191,64,138]},{"1841281":[12,42,42,85,85,16,85]},{"1841289":[87,254,255]},{"1841293":[255,255,255,255,255,255,255,85,85,255,186,168]},{"1841306":[17,251,255]},{"1841310":[170]},{"1841312":[255,17,255,191,255,255,186,85,255]},{"1841322":[255,235,255,191,85,255,238,255,106,255,85,255,85,255,255,255,16,239,250,5,170]},{"1841345":[34,170,170,95,68,10,85]},{"1841353":[255,255,255]},{"1841357":[255,254,255,254,254,170,170,95,95,245,160]},{"1841369":[7,5,191,255]},{"1841374":[170,1,255,85,255,255,255,255,170,85,248]},{"1841386":[255,191,255,239,85,254,170,255,170,255,68,255,95,255,255,255]},{"1841403":[255,144,111,171,1]},{"1841409":[160,10]},{"1841412":[255]},{"1841414":[133,85]},{"1841417":[255,255,253]},{"1841421":[255,238,255,160,160,10,10,255,255,127,5]},{"1841433":[255,85,255,255]},{"1841438":[238,17,255,95,255,255,255,255,175,80]},{"1841450":[255,253,255,255,17,238,160,255]},{"1841459":[255]},{"1841461":[255,255,255,255,255]},{"1841467":[255]},{"1841469":[255,255,17,1,136,191]},{"1841476":[170,85,21,21]},{"1841481":[238,255,213]},{"1841485":[255,255,255,137,137,191,191,255,170,255,21,17,238,85,255,255]},{"1841502":[255]},{"1841504":[255,119,255,255,170,255,255]},{"1841514":[255,213,255,255]},{"1841519":[255,136,255]},{"1841523":[255,85,255,255,255,238,255]},{"1841531":[255]},{"1841533":[255,255]},{"1841536":[87]},{"1841538":[253,2]},{"1841541":[255,17,251,174,81,255,85]},{"1841549":[213,255,255,87,87,255,253,255]},{"1841558":[17,23,191,255,85,255,255]},{"1841566":[255]},{"1841568":[255,255,253,255]},{"1841573":[255,253]},{"1841576":[191,17,255,85,255,213]},{"1841583":[255]},{"1841585":[255,2,255,255,255,251,255,64,255]},{"1841595":[255]},{"1841597":[255,255]},{"1841600":[254,65,64,191,85,255]},{"1841607":[174,170,85,251,68,21]},{"1841614":[127,127,255,254,255,64,255,85]},{"1841623":[255,255,255,68,255,191,64,127,128,254,191,64,255,85,170,81]},{"1841640":[255,85,255,64,255,85]},{"1841647":[255,65,255,191,255,255,255,174,255]},{"1841657":[255,4,251,64,191,255,128,232,23,42,255,223,255,38,128,168,87,94,161,255]},{"1841678":[85,85,255,232,255,42,255,223,38,166,253,255]},{"1841691":[94,255]},{"1841694":[85,170,232,255,42,213,223,32,38,89,253,85,94]},{"1841708":[255,255]},{"1841711":[255,23,255,255,255,255,255,217,255]},{"1841721":[255]},{"1841723":[255]},{"1841725":[255,255,170,128,127,175,255,255,255,239,16]},{"1841737":[255,167,88,255]},{"1841742":[85,85,255,128,255,175,255,255,239,255,80,255]},{"1841755":[167,255]},{"1841758":[85,170,128,255,175,80,255]},{"1841766":[239]},{"1841768":[80,80,167]},{"1841772":[255,255]},{"1841775":[255,127,255,255,255,255,255,16,255]},{"1841785":[255]},{"1841787":[255]},{"1841789":[255,255,170,21,255,255,255,251,250,255]},{"1841800":[81,255,128,127,170]},{"1841806":[85,85,255,21,255,255,251,251,255,255,81,255]},{"1841819":[128,187,68,85,170,21,234,255]},{"1841828":[251,4,255]},{"1841832":[81,81,128]},{"1841836":[238,255]},{"1841839":[255,255,255,255,255,254,255]},{"1841847":[255]},{"1841849":[255]},{"1841851":[255,68,187,255,170,87,255,255,255,186,186,255]},{"1841864":[8,255,128,127]},{"1841870":[81,81,255,87,255,255,186,186,255,255,29,255]},{"1841884":[170,85,81,170,87,168,255]},{"1841892":[186,69,255]},{"1841896":[29,8]},{"1841899":[128,85,255]},{"1841903":[255,255,255,255,255,255,255]},{"1841911":[255,21,234]},{"1841915":[255,85,170,255,170,217,254,159,176,255,160,85,170]},{"1841929":[255]},{"1841931":[255]},{"1841936":[166,135,176,191,255,255,85,255,95,255]},{"1841948":[187,68]},{"1841951":[170,248,24,191,112,255]},{"1841958":[85]},{"1841960":[95]},{"1841964":[68,255]},{"1841967":[255,167,199,192,255,160,255]},{"1841975":[255,95,160]},{"1841979":[255,68,187,255,170,7,241,255,8,255,2,85,170]},{"1841993":[255,34,255]},{"1841998":[32,32,243,255,15,255,255,255,85,255,255,255,34]},{"1842012":[187,68,32,136,15,9,255,8,255]},{"1842022":[85]},{"1842024":[255]},{"1842028":[68,255,32,223,248,247]},{"1842035":[255,2,255]},{"1842039":[255,255]},{"1842043":[255,68,187,255,136,34,162,73,174,170,93]},{"1842055":[255]},{"1842057":[255,34,255]},{"1842062":[32,32,227,28,174,209,170,255]},{"1842071":[255,255,255,34]},{"1842076":[187,68,32,136,128,128,255,186,170,8]},{"1842088":[255]},{"1842092":[68,255,32,223,127,255,20,235]},{"1842101":[255]},{"1842103":[255,255]},{"1842107":[255,68,187,255,136,59,206,103,140,254,33]},{"1842119":[255]},{"1842121":[255,170,255]},{"1842128":[176,113,100,239,254,255]},{"1842135":[255,255,255,170]},{"1842140":[187,68]},{"1842143":[136,182,70,103,20,254]},{"1842152":[255]},{"1842156":[68,191]},{"1842159":[255,193,57,16,255,32,255]},{"1842167":[255,255]},{"1842171":[255,68,187,255,136,121,102,215,104,186,69]},{"1842183":[255]},{"1842185":[255,171,255]},{"1842192":[102,183,88,252,186,255]},{"1842199":[255,255,255,171]},{"1842204":[187,68]},{"1842207":[128,120,96,220,67,186]},{"1842216":[255]},{"1842220":[68,187]},{"1842223":[255,135,118,8,247]},{"1842229":[255]},{"1842231":[255,255]},{"1842235":[255,68,187,255,128,49,38,79,240,186,69]},{"1842247":[255]},{"1842249":[255,186,255]},{"1842256":[38,255,64,121,186,255]},{"1842263":[255,255,255,186]},{"1842268":[171,84]},{"1842272":[120,104,73,70,186]},{"1842280":[255]},{"1842284":[84,171]},{"1842287":[255,207,54]},{"1842291":[255]},{"1842293":[255]},{"1842295":[255,255]},{"1842299":[255,84,171,255]},{"1842304":[83,162,254,4,143,112]},{"1842311":[255]},{"1842313":[255,170,255]},{"1842320":[167,255,6,254,143,255,32,255,255,255,170]},{"1842332":[187,68]},{"1842336":[3,2,254,5,143]},{"1842342":[32]},{"1842344":[255]},{"1842348":[68,187]},{"1842351":[255,248,243,1,255]},{"1842357":[255,32,223,255]},{"1842363":[255,68,187,255]},{"1842368":[149,117,46,95,236,31]},{"1842375":[255]},{"1842377":[255,170,255]},{"1842382":[128,128,213,130,31,96,236,255]},{"1842391":[255,255,255,170]},{"1842396":[187,68,128]},{"1842400":[224,96,63,159,236,12]},{"1842408":[255]},{"1842412":[68,187,128,127,95,147,144,239]},{"1842421":[255]},{"1842423":[255,255]},{"1842427":[255,68,187,255]},{"1842432":[102,207,199,122,255]},{"1842438":[17,238]},{"1842441":[255,234,255]},{"1842446":[129,129,211,173,70,255,255,255,17,255,255,255,234]},{"1842460":[171,84,129,8,102,70,199,66,255]},{"1842470":[17]},{"1842472":[255]},{"1842476":[84,191,128,127,137,255,56,255]},{"1842485":[255]},{"1842487":[255,255]},{"1842491":[255,84,171,255,8]},{"1842497":[250,213,111,236,17,85,170,138,255,163,254]},{"1842510":[17,17,215,200,21,253,236,253,85,255,255,255,162]},{"1842524":[170,85,17,136,53,50,215,96,236,2,85]},{"1842536":[255,138]},{"1842539":[1,85,255]},{"1842543":[255,223,207,47,223,19,255]},{"1842551":[255,117,138]},{"1842555":[255,85,170,255,136]},{"1842561":[238,85,117,98,191,127,128,170,255,64,191]},{"1842574":[21,21,255]},{"1842578":[95,213,98,255,127,255,255,255]},{"1842588":[170,85,21,168,17,238,255]},{"1842596":[98]},{"1842598":[127]},{"1842600":[255,170]},{"1842603":[64,85,255]},{"1842607":[255,255,255,127,255,191,255]},{"1842615":[255,85,170]},{"1842619":[255,85,170,255,168]},{"1842625":[174,64,69,170,255,219,36,255,255,215,40,2]},{"1842638":[85,85,255,1,255,64,170,250,219,255,255,255]},{"1842652":[170,85,85,170,81,174,250,5,175]},{"1842662":[219]},{"1842664":[255,255]},{"1842667":[215,87,255]},{"1842671":[255,254,255,255,255,255,255,36,255]},{"1842681":[255]},{"1842683":[255,85,170,255,170,10,224]},{"1842691":[85,162,254,11,244,254,255,95,160,171]},{"1842702":[85,85,255,29,255]},{"1842708":[163,162,11,255,255,255]},{"1842715":[10,171,84,85,170,29,232,170,85,255]},{"1842726":[11]},{"1842728":[255,255,10,85,255,255]},{"1842735":[255,224,255,255,255,255,255,244,255]},{"1842745":[255]},{"1842747":[255,84,171,255,170,170]},{"1842755":[85,160,162,128,127,234,255,255]},{"1842764":[168]},{"1842766":[87,87,255,255,255,170,255,160,128,255,245,245]},{"1842779":[191,170,85,87,168,255,170,170,85,253,2,128]},{"1842792":[255,245,191,64,255,253]},{"1842799":[255]},{"1842801":[255,85,255,255,255,127,255]},{"1842809":[255]},{"1842811":[255,85,170,255,168,110,102,69,17,5,170]},{"1842823":[255,164,245,255]},{"1842828":[128,1,127,127,110,110,255,239,250]},{"1842840":[91,81]},{"1842843":[255,171,84,127,128,255,238,239,85,85,170,255]},{"1842856":[245,81,255]},{"1842860":[255,213]},{"1842863":[255,119,255,17,255,255,255,255,255]},{"1842873":[255]},{"1842875":[255,84,171,255,128,254,254,85,85,64,170]},{"1842887":[250]},{"1842889":[17,187,69]},{"1842893":[11,255,255,254,254,255,255,191,21,5]},{"1842904":[255,17]},{"1842907":[255,171,84,255]},{"1842912":[255,254,255,85,85,170,255]},{"1842920":[17,17,187,69,255,94]},{"1842927":[255,255,255,85,255,234,255,255,255]},{"1842937":[255,68,187,85,170,255]},{"1842944":[181,245,85,85,42,136,10]},{"1842953":[155,191,85]},{"1842957":[191,255,255,234,170,85,85,255,127,245]},{"1842968":[100,155]},{"1842971":[255,191,64,255]},{"1842976":[255,170,255,85,127,170,255]},{"1842984":[17]},{"1842986":[191,85,255,235]},{"1842991":[255,181,255,255,255,136,255,255,255,138,255,64,191,84,171,255]},{"1843008":[93,93,127,255,170,170,254]},{"1843017":[223,255,255]},{"1843021":[255,254,255,160,170,213,85,234,234,1,1,32,221]},{"1843035":[255,255]},{"1843038":[238,1,255,168,255,85,255,170,255]},{"1843048":[87]},{"1843050":[255,255,255,170,17,254,95,247,127,255,191,255,254,255,138,255]},{"1843067":[255,85,170,239,1,217,217,251,251,170,191,168]},{"1843081":[255,255,255]},{"1843085":[255,254,255]},{"1843089":[174,68,68,191,170,87,87,1,212]},{"1843099":[255,255]},{"1843102":[170,1,255,136,255,68,255,170,255]},{"1843112":[126,1,255,255,255,170,85,254,255,119,251,255,234,255,168,255,170,255]},{"1843131":[255,95,160,171,1]},{"1843138":[186,186,175,239]},{"1843144":[2,245,255,255]},{"1843149":[255,235,255]},{"1843153":[255,64,69,234,170,18,18,93]},{"1843162":[69,255,255]},{"1843166":[170,20,255]},{"1843170":[255,64,255,170,255]},{"1843176":[170,85,255,186,255,170,85,235,255,255,191,255,191,255,237,255,170,255,69,186,255]},{"1843198":[190,20,10,10,168,168,223,223,129,1,174,80,255,255,9,246,235,255]},{"1843217":[245]},{"1843219":[87,160,160]},{"1843224":[80,9,93,255,246]},{"1843230":[136,20,255]},{"1843234":[253]},{"1843236":[255,160,255]},{"1843240":[166,81,255,162,255,171,119,235,255,245,253,255,223,255,255,255,166,255,93,162,246,9,156,20,255]},{"1843266":[255,255,255,255,255,255,255,255,163,252,241,14,56,254,85]},{"1843282":[255]},{"1843284":[255]},{"1843286":[255]},{"1843288":[255]},{"1843290":[95,3]},{"1843293":[255]},{"1843295":[1,255,255,255,255,255,255,255,255,255,255,160,163]},{"1843309":[255,255,255,255,255]},{"1843322":[255,163,255,255,1]},{"1843328":[255]},{"1843330":[255,255,255,255,255,255,245,245,213,42,242,34,2,170,87]},{"1843346":[255]},{"1843348":[255]},{"1843350":[255]},{"1843352":[255,10,250,133,34,221,2,85,255,255,255,255,255,255,255,255,245,255,85,213,34,221,255,255,255,255]},{"1843384":[10,10,255,213,255,221,85,2,255]},{"1843394":[255,255,255,255,255,255,85,85,223,32,168,170,42,170,119]},{"1843410":[255]},{"1843412":[255]},{"1843414":[255]},{"1843416":[255,170,160,26,168,127,42,85,255,255,255,255,255,255,255,255,85,255,223,223,170,125,255,255,255,255]},{"1843448":[170,170,255,223,215,87,85,42,255]},{"1843458":[255,255,255,255,255,255,87,87,249,6,13,147,50,186,127,128,255]},{"1843476":[255]},{"1843478":[255]},{"1843480":[127,168,14,160,17,238,34,69,255,255,255,255,255,255,255,255,215,255,249,249,130,109,223,191,255,255]},{"1843512":[40,40,255,249,239,254,101,2,254]},{"1843522":[255,255,255,255,255,255,81,81,255,255,255,255,152,141,254,1,255]},{"1843540":[255]},{"1843542":[255]},{"1843544":[119,174,255]},{"1843548":[213]},{"1843550":[157,98,255,255,255,255,255,255,255,255,217,255,255,255,42,255,255,255,255,255]},{"1843576":[38,38,255,255,213]},{"1843582":[98,157,239]},{"1843586":[255,255,255,255,255,255]},{"1843594":[251,255,253,255,154,237,239,16,255]},{"1843604":[255]},{"1843606":[255]},{"1843608":[119,255,250,5,84,2,255]},{"1843616":[255,255,255,255,255,255,255,255,136,255,123,254,171,255,255,255,255,255]},{"1843640":[119,119,255,254,84,2]},{"1843647":[255,238,17,255,255,255,255,255,255,4,4,190,231,77,221,102,104,255]},{"1843666":[255]},{"1843668":[255]},{"1843670":[255]},{"1843672":[95,251,174,81,88,162,15,144,238,238,255,255,255,255,255,255,164,255,60,255,135,237,255,126,255,238]},{"1843704":[91,91,255,255,106,176,144,15,160,85,255,255,255,255,255,255]},{"1843722":[171,255,84,213,127,128,245,10,255]},{"1843732":[255]},{"1843734":[255]},{"1843736":[117,255,32,223]},{"1843741":[171,255]},{"1843744":[170,170,255,255,255,255,255,255,138,255,171,116,255,213,255,255,255,170]},{"1843768":[117,117,255,116,42,129]},{"1843775":[255,179,85,255,255,255,255,255,255]},{"1843786":[187,255,68,84,254,16,230,25,255]},{"1843796":[255]},{"1843798":[255]},{"1843800":[127,255]},{"1843803":[255]},{"1843805":[187,255]},{"1843808":[187,187,255,255,255,255,255,255,128,255,187,68,255,84,238,239,255,187]},{"1843832":[127,127,255,68,171,16]},{"1843839":[255,55,85,255,255,255,255,255,255,16,16,223,223,128,208,149,213,98,157,255]},{"1843860":[255]},{"1843862":[255]},{"1843864":[247,239,16,239,192,31,191,64,191,191,255,255,255,255,255,255,24,255,239,48,31,176,64,234,255,191]},{"1843896":[231,231,255,48,175,80,128,127,215,85,255,255,255,255,255,255]},{"1843913":[170,255,255]},{"1843918":[21,85,130,125,255]},{"1843924":[255]},{"1843926":[255]},{"1843928":[85,85]},{"1843931":[255]},{"1843933":[255,255,64,255,255,255,255,255,255,255,255,170,255,255]},{"1843948":[255]},{"1843951":[234,255,255]},{"1843960":[255,255,255]},{"1843964":[255]},{"1843966":[64,191,125,85,255,255,255,255,255,255]},{"1843977":[170,251,255]},{"1843982":[1]},{"1843984":[40,215,255]},{"1843988":[255]},{"1843990":[255]},{"1843992":[85,85,4,251]},{"1843997":[254,252,2,255,255,255,255,255,255,255,255,170,255,251]},{"1844012":[254,1,2,253,255,255]},{"1844024":[255,255,251,4,255]},{"1844030":[3,252,87,87,255,255,255,255,255,255]},{"1844041":[42,122,127,64,192]},{"1844049":[255,255]},{"1844052":[255]},{"1844054":[255]},{"1844056":[85,213,69,186,192,63,127,128,255,255,255,255,255,255,255,255,170,255,186,192,63,64,128,127,255,255]},{"1844088":[127,127,250,197,127,128,128,127,119,119,255,255,255,255,255,255,136,170,170,255,64]},{"1844110":[8,8]},{"1844113":[255,255]},{"1844116":[255]},{"1844118":[255]},{"1844120":[85,221,85,170,64,255,255,8,255,255,255,255,255,255,255,255,170,255,170]},{"1844140":[255]},{"1844142":[8,255,255,255]},{"1844152":[255,255,170,85,255]},{"1844158":[8,247,127,127,255,255,255,255,255,255,168,168,171,255,64,4,138,138]},{"1844177":[255,255]},{"1844180":[255]},{"1844182":[255]},{"1844184":[87,255,87,168,64,252,250,141,255,255,255,255,255,255,255,255,168,255,168,3,252,7,141,250,255,255]},{"1844216":[255,255,171,87,251,4,143,112,255,255,255,255,255,255,255,255,170,170,160,255,68]},{"1844238":[170,170]},{"1844241":[255,255]},{"1844244":[255]},{"1844246":[255]},{"1844248":[85,255,95,160,68,255,255,170,255,255,255,255,255,255,255,255,170,255,160]},{"1844268":[255]},{"1844270":[170,255,255,255]},{"1844280":[255,255,160,95,255]},{"1844286":[170,85,119,119,255,255,255,255,255,255,170,238]},{"1844299":[255,69]},{"1844302":[170,170]},{"1844305":[255,255]},{"1844308":[255]},{"1844310":[255]},{"1844312":[17,187,255]},{"1844316":[69,255,255,170,255,255,255,255,255,255,255,255,238,255]},{"1844332":[255]},{"1844334":[170,255,255,255]},{"1844344":[255,255]},{"1844347":[255,255]},{"1844350":[170,85,117,117,255,255,255,255,255,255,160,170,46,255,90,2,164,160]},{"1844369":[255,255]},{"1844372":[255]},{"1844374":[255]},{"1844376":[85,245,213,42,90,249,245,174,255,255,255,255,255,255,255,255,170,255,42,4,249,6,174,241,255,255]},{"1844408":[255,255,46,213,255]},{"1844414":[174,81,85,85,255,255,255,255,255,255,170,170,170,255,84]},{"1844430":[168,168]},{"1844433":[255,255]},{"1844436":[255]},{"1844438":[255]},{"1844440":[85,255,85,170,84,255,255,168,255,255,255,255,255,255,255,255,170,255,170]},{"1844460":[255]},{"1844462":[168,255,255,255]},{"1844472":[255,255,170,85,255]},{"1844478":[168,87,85,85,255,255,255,255,255,255,136,170,187,255,68]},{"1844497":[255,255]},{"1844500":[255]},{"1844502":[255]},{"1844504":[85,221,68,187,68,255,255]},{"1844512":[255,255,255,255,255,255,255,255,170,255,187]},{"1844524":[255]},{"1844527":[255,255,255]},{"1844536":[255,255,187,68,255]},{"1844543":[255,87,85,255,255,255,255,255,255,128,170,255,255,20,85,8,8,2,253,255]},{"1844564":[255]},{"1844566":[255]},{"1844568":[85,213,24,231,20,227,251,4,255,255,255,255,255,255,255,255,170,255,231,24,227,93,4,251,255,255]},{"1844600":[255,255,255,24,190,65,12,243,87,85,255,255,255,255,255,255]},{"1844617":[170,255,255,69,85]},{"1844624":[2,253,255]},{"1844628":[255]},{"1844630":[255]},{"1844632":[85,85]},{"1844635":[255,69,186,117,138,255,255,255,255,255,255,255,255,170,255,255]},{"1844652":[186,85,138,255,255,255]},{"1844664":[255,255,255]},{"1844668":[239,16,138,117,8,85,255,255,255,255,255,255]},{"1844681":[170,255,255,85,93]},{"1844688":[93,162,255]},{"1844692":[255]},{"1844694":[255]},{"1844696":[85,85,34,221,85,170,85,170,170,170,255,255,255,255,255,255,170,255,221,34,170,93,170,127,255,170]},{"1844728":[255,255,255,34,247,8,170,85,175]},{"1844738":[255,255,255,255,255,255]},{"1844745":[136,251,255,109,239]},{"1844752":[175,80,255]},{"1844756":[255]},{"1844758":[255]},{"1844760":[119,119,42,213,109,146,64,191,255,255,255,255,255,255,255,255,136,255,209,46,130,255,191,71,255,255]},{"1844792":[255,255,255,46,125,146,191,64,186]},{"1844802":[255,255,255,255,255,255]},{"1844809":[128,186,255,221,255]},{"1844816":[186,69,255]},{"1844820":[255]},{"1844822":[255]},{"1844824":[117,127,170,85,85,34]},{"1844831":[255,255,255,255,255,255,255,255,255,138,255,16,239,170,255,255,119,255,255]},{"1844856":[245,245,255,239,85,34,255]},{"1844864":[175]},{"1844866":[255,255,255,255,255,255]},{"1844874":[187,255,255,255]},{"1844880":[175,80,255]},{"1844884":[255]},{"1844886":[255]},{"1844888":[117,255,171,84,213]},{"1844895":[255,255,255,255,255,255,255,255,255,138,255,17,239,42,255,255,127,255,255]},{"1844920":[117,117,255,239,213]},{"1844926":[255]},{"1844928":[254]},{"1844930":[255,255,255,255,255,255]},{"1844938":[255,255,191,191]},{"1844944":[118,137,255]},{"1844948":[255]},{"1844950":[255]},{"1844952":[85,255,255]},{"1844956":[189,64]},{"1844959":[255,255,255,255,255,255,255,255,255,170,255,223,255,2,255,255,199,255,255]},{"1844984":[85,85,255,255,253,64,255]},{"1844992":[255]},{"1844994":[255,255,255,255,255,255]},{"1845002":[255,255,216,250]},{"1845008":[119,136,255]},{"1845012":[255]},{"1845014":[255]},{"1845016":[119,255,255]},{"1845020":[216,39]},{"1845023":[255,255,255,255,255,255,255,255,255,136,255,255,255,34,221,255,255,255,255]},{"1845048":[119,119,255,255,255,39,255]},{"1845056":[255]},{"1845058":[255,255,255,255,255,255,21,21,255,208]},{"1845069":[170]},{"1845071":[136,87,40,255]},{"1845076":[255]},{"1845078":[255]},{"1845080":[119,234,211,40]},{"1845085":[255]},{"1845087":[119,255,255,255,255,255,255,255,255,157,255,255,255,170,85,255,255,255,255]},{"1845112":[98,98,255,255,255,255,119]},{"1845120":[255]},{"1845122":[255,255,255,255,255,255,85,85,253,2,234,42]},{"1845135":[170,85,32,255]},{"1845140":[255]},{"1845142":[255]},{"1845144":[127,170,170,1,42,255]},{"1845151":[85,255,255,255,255,255,255,255,255,213,255,253,253,42,255,255,191,255,255]},{"1845176":[42,42,255,253,213,213,85]},{"1845184":[255]},{"1845186":[255,255,255,255,255,255,85,85,223,32,42,42]},{"1845199":[170,85]},{"1845202":[255]},{"1845204":[255]},{"1845206":[255]},{"1845208":[247,170,191]},{"1845212":[42,213]},{"1845215":[85,255,255,255,255,255,255,255,255,93,255,223,223,42,213,255,255,255,255]},{"1845240":[162,162,255,223,255,213,85]},{"1845248":[255]},{"1845250":[255,255,255,255,255,255,119,119,68,191,126,33,4,170,85]},{"1845266":[255]},{"1845268":[255]},{"1845270":[255]},{"1845272":[255,136,251]},{"1845276":[32,223,4,85,255,255,255,255,255,255,255,255,119,255,68,68,32,223,251,254,255,255]},{"1845304":[136,136,255,68,255,223,85]},{"1845313":[159,251,123,21,2,255,255,17,17,213,208,85,85,124,124,159,96,68,122,234,232,255,255,255,255,223,223,170,175,119,247,255,111,193,128,253,2,255,255,255,119,255,213,255,85,139,8,255]},{"1845362":[122,191,23,255,255,255,153,255,240,255,255,170,255,247]},{"1845377":[255,191,191,85,42,253,238,85,85,66,21,4,7,178,182,250]},{"1845394":[64,170,170,128,255,253,213,213,252,232,254,252,71,83,250,255,21]},{"1845412":[213,42,253,255,255,255,235,84,253,86,251,182,250,5,170,255,127,255,238,255,85,255,23,255,175,255,255,79]},{"1845441":[255,172,175,78,186,73,252,141,81]},{"1845451":[244]},{"1845453":[10,160,160,1]},{"1845458":[87,172,163,6,211,91,173,141,31,64,126,126,95,255,1,255,7,7,94,162,127,217,223,143,171,20,255,213,255,170]},{"1845489":[255,168,255,240,255,228,255,81,255,255,255,42,255,245,95,10,53,212,127,138,170,80,239,127]},{"1845514":[64,111]},{"1845517":[128,10,11,32,200,43,171,255,138,255,80,127,127,208,64,128,128,255,255,232,245,255,43,223,32,80,255,255,255,255]},{"1845548":[255,127,255,170,194,63]},{"1845555":[255,255,255,239,255]},{"1845561":[255,255,255,128,255,95,255,128,85]},{"1845571":[255,170,239]},{"1845575":[255,232,23]},{"1845579":[255,84]},{"1845582":[160,241]},{"1845585":[42,255,255,186,170,255]},{"1845592":[255,232]},{"1845595":[255,85,84,243,241,42,255,255,255,255]},{"1845607":[255,232,255]},{"1845612":[255,254,255,173]},{"1845617":[255]},{"1845619":[255,255,255,255,255,23,255,255,255,1,255,242,255,131,82,4,254,168,241,188,231,45,199,79,208,63,192,106,128,3,44,255,252,169,191,245,190,239,45,223,223,127,255,106,234,45,253,254,255,239,7,188,69,45,194,223,208,127,127,127,127]},{"1845681":[255]},{"1845683":[255,240,255,227,255,215,255,32,255]},{"1845693":[255,128,255,32,32,197,127,171,254,255,255,87,255,212,43,160,95,255]},{"1845712":[32,223,111,127,171,255,255,255,255,87,254,255,255,160,255,255,223,223,111,231,171]},{"1845734":[255]},{"1845736":[87,168,254,42,160,255,255,255,192,63,8,247,254,255,255,255,255,255]},{"1845755":[255,95,255]},{"1845759":[255,191,191,68,255,255,170,255,255,255,255,1,255,21,255,244,11,191,64,255,255,255,255,255,255,255,255,171,255,255,21,255,244,64,64,255,196,255]},{"1845798":[255]},{"1845800":[255]},{"1845802":[171,169,21,234,244,255]},{"1845809":[255,59,196,170,255,255,255,255,255,2,253,255,255,11,255,246,254,64,248,242,171,253,239,251,255,88,215,143,255,64,191,246,1,249,250,246,249,253,243,251,231,211,239,223,223,191,224,1]},{"1845858":[250,73,240,4,241]},{"1845864":[227]},{"1845866":[235,98,223,16,224,191,1,254,182,77,160,255,225,255,227,255,129,126,207,191,31,255,119,63,128,127,255,162,255,117,255,254]},{"1845899":[255,255,255,170,255,119,128,127,255,255,255,255,255,255,255,255,255,255,255,255,170,192,192,255]},{"1845924":[255]},{"1845926":[255]},{"1845928":[255]},{"1845930":[255]},{"1845932":[255]},{"1845934":[170,85,128,127,127,128,162,255,117,255,254,255,255]},{"1845948":[255,255,255,255,247,255]},{"1845955":[255,250,5,247,93,255,170]},{"1845963":[255,191,191,255,255,247]},{"1845970":[255,255,250,255,247,255,255,255,255,255,191,191,255,255]},{"1845986":[255]},{"1845988":[250]},{"1845990":[247]},{"1845992":[255]},{"1845994":[255]},{"1845996":[191,64,255]},{"1846001":[255,255]},{"1846005":[255,85,255,170,255,255]},{"1846012":[255,255,255,255,248,248,5,221,162,91,121,138,231,180,18,213,247,170,255,183,252,3,213,210,174,249,127,243,255,243,217,195,255,239,255,207,3,4,210]},{"1846052":[168,4,115,4,243,8,195,8,255,48,207]},{"1846064":[3,252,242,45,8,247,2,253,176,239,225,62,138,247,135,255,255,255,2,125]},{"1846085":[255,81,174,254,137]},{"1846091":[255,191,170,95,85,255]},{"1846098":[85,87]},{"1846101":[255,81,255,254,255,221,221,191,191,95,95]},{"1846114":[85,2]},{"1846118":[81]},{"1846120":[254]},{"1846122":[221]},{"1846124":[191,64,95,160]},{"1846129":[255,215,168]},{"1846133":[255]},{"1846135":[255,136,255,221,34,234,255,245,255,235,235,42,213]},{"1846149":[255]},{"1846151":[255,170,85]},{"1846155":[255,255]},{"1846158":[255,16,255,1,68,110]},{"1846165":[255]},{"1846167":[255,170,255,85,85,255,255,255,255,1,21,68,42]},{"1846184":[170]},{"1846186":[85]},{"1846188":[255]},{"1846190":[255]},{"1846192":[1,254,110,145]},{"1846197":[255]},{"1846199":[255]},{"1846201":[255,85,170]},{"1846205":[255,16,255,248,248,169,1,4,253,2,251,128,123,4,223,245,14,253,14,253,18,5,168,31,253,14,251,140,249,85,81,245,243,255,243,18,21,2,174,29,6,10,6,136,4,81]},{"1846252":[241]},{"1846254":[243,2,18,237,250,85,29,226,10,245,8,247,113,174]},{"1846269":[255]},{"1846271":[255,170,168,170,85]},{"1846277":[255]},{"1846279":[255,136,119]},{"1846283":[247,255]},{"1846286":[235,20,253,2]},{"1846291":[170,93,255]},{"1846295":[255,136,255,85,85,255,255,235,255]},{"1846305":[87]},{"1846307":[170,93]},{"1846312":[136]},{"1846314":[85]},{"1846316":[255]},{"1846318":[235]},{"1846320":[2,253,170,85,93,162]},{"1846327":[255]},{"1846329":[255,93,170]},{"1846333":[255,20,255,170,130,170,17]},{"1846341":[255]},{"1846343":[255,138,117]},{"1846347":[255,255]},{"1846350":[249,6,215,40]},{"1846355":[170,85,255]},{"1846359":[255,138,255,93,93,255,255,249,255]},{"1846369":[125]},{"1846371":[170,85]},{"1846376":[138]},{"1846378":[93]},{"1846380":[255]},{"1846382":[249]},{"1846384":[40,215,238,85,85,170]},{"1846391":[255]},{"1846393":[255,93,162]},{"1846397":[255,6,255,232,136,168,65,6,255,2,255,168,85,33,221,250,4,64,190,155,100,68,232,87,249,3,251,174,252,223,252,251,252,66,253,4,115,66,174,81]},{"1846438":[3,2,172,2,252,2,251,2,67,3,100,155,250,21,81,174,3,252,4,251,220,35]},{"1846461":[255,189,254,255,239,170,85]},{"1846469":[255]},{"1846471":[255,174,81]},{"1846475":[255,255]},{"1846478":[40,215,239,16,68,238,64,255]},{"1846487":[255,174,255,255,255,255,255,168,255]},{"1846497":[16,68,170,64]},{"1846504":[174]},{"1846506":[255]},{"1846508":[255]},{"1846510":[168,128,16,239,238,17,64,191]},{"1846519":[255]},{"1846521":[255,255]},{"1846525":[255,87,255,255,255,34,197]},{"1846533":[255,1,254,175,80,69,255,191,64]},{"1846543":[255,255]},{"1846546":[68,102,69,255,1,255,175,255,255,255,191,255]},{"1846559":[255]},{"1846562":[68,34,69]},{"1846566":[1]},{"1846568":[175]},{"1846570":[255,69,191]},{"1846577":[255,126,153,69,186]},{"1846583":[255]},{"1846585":[255,186,69,64,255,255,255,241,241]},{"1846595":[232,2,254,18,239,255,3,86,253,144,111]},{"1846607":[255,251,4,70,64,82,248,18,252,255,254,252,254,145,255]},{"1846623":[255,4,10,64,6,80]},{"1846630":[16]},{"1846632":[254,2,254,84,145,1]},{"1846640":[4,251,81,191,81,175]},{"1846647":[255]},{"1846649":[255,168,87,110,255,255,255,238,239]},{"1846659":[125]},{"1846661":[255,1,254,238,145,221,127,228,91,72,191,255,1]},{"1846676":[85,255,129,255,238,255,127,127,100,127,32,127]},{"1846689":[17]},{"1846692":[85]},{"1846694":[129,128,238,128,127,221,100,192,96,32,1,254,130,255,85,170]},{"1846711":[255]},{"1846713":[255,34,221,27,255,159,255,255,234,32,147,162,255,17,238,254,1,255,255]},{"1846733":[251,136,255,255]},{"1846739":[32,255,255,27,255,255,255,255,255,68,251]},{"1846751":[254,21,21,32]},{"1846756":[255,166,27,10,255,1,255,255,64,64,35]},{"1846769":[255,76,255,89,166]},{"1846775":[255]},{"1846777":[255]},{"1846779":[255,187,255,221,255,243,226,213,6,13,248,21,234,172,83,221,255]},{"1846797":[175]},{"1846799":[255,251,4,6,209,216,255,190,254,253,255,255,255,80,175]},{"1846815":[234,21,29,211,2,223,10,190,171,253,81,255,255,4]},{"1846830":[191]},{"1846832":[4,251,40,255,208,47]},{"1846839":[255,2,255]},{"1846843":[255,171,255,85,255,170,171,238]},{"1846852":[162,255,81,46,128,255,196,63,32,255,56,255,255]},{"1846867":[238,255,255,123,127,208,255,31,223,112,245,2,248,85,1,238]},{"1846884":[255,239,123,42,208,208,223,31,127,112,245,50]},{"1846897":[255,17,255,16,239,132,255,47,255,32,255,138,255,13,255,170,191,255,4,128,255]},{"1846919":[255]},{"1846921":[255,119,255,1,252,5,170,255]},{"1846930":[4,255,223,255,170,255]},{"1846937":[255,136,170,6]},{"1846942":[250]},{"1846944":[85,21,255,4,223,223,170,170]},{"1846954":[221,136,251,4,85,170]},{"1846961":[255]},{"1846963":[255]},{"1846965":[255,85,255,255,255,34,255,251,255,85,255,168,247,249,86,3,254,9,255]},{"1846985":[255,170,171,21,64,126,128,253]},{"1846994":[80,249,254,255,162,254]},{"1847001":[224,84,171,234,1,129,1,93,95,249,86,255,254,163,162,31]},{"1847018":[1]},{"1847020":[190,64,127,128]},{"1847025":[255]},{"1847027":[255]},{"1847029":[255,92,255,255,255,170,255,190,255,126,255]},{"1847041":[255,213,127,128,247,128,191]},{"1847049":[240,32,175,196,24,2,12,85]},{"1847058":[85,213,93,119,64,172,79,224,82,168,35,27,120,244,85,255,213,85,213,85,187,128,95,64,141,2,255]},{"1847086":[119,136]},{"1847089":[255,42,255,34,255,23,255,191,255,37,255,228,255,3,255]},{"1847105":[255,238,255]},{"1847109":[255,6,248,117]},{"1847114":[23,168,2,2]},{"1847119":[23,84]},{"1847122":[85,255,64,255,1]},{"1847128":[138,10,232]},{"1847132":[242,242,23]},{"1847136":[84,255,255,255,85,64,255]},{"1847144":[255]},{"1847146":[87,168,255,2,255]},{"1847152":[84,171]},{"1847155":[255,170,255,255,255,245,255,87,255,15,255,232,255]},{"1847169":[255,191,241,7,255,254,1,2,10,250]},{"1847180":[42,191,15,255,255]},{"1847186":[64,255]},{"1847189":[69]},{"1847192":[254,246,5,69,191,42,240]},{"1847200":[255,239,254,240,250]},{"1847206":[255]},{"1847208":[247,10,191]},{"1847212":[255,42,255]},{"1847216":[215,40,1,255,189,255,255,255,11,255,186,255,106,255,15,255,1,254,255,255,9,212,168,192,106,15,24]},{"1847244":[209,211,236,239,254]},{"1847251":[187,102,128,22,150,159,154,64,96,166,164,3,16,255,255,238,170,59,68,127]},{"1847272":[255,10,223,32,255,160,255]},{"1847280":[254,1,17,255,187,255,233,255,106,255,159,255,217,255,252,255,21,234,255,255,255]},{"1847304":[255,255]},{"1847307":[95,224,224,129,129,234]},{"1847314":[158,191]},{"1847317":[16,224,224,234,234,95]},{"1847325":[63]},{"1847327":[126,255,255,222]},{"1847332":[239]},{"1847334":[255]},{"1847336":[255,234,255]},{"1847340":[255,160,255]},{"1847344":[234,21,191,97,239,255,31,255,255,255,160,255,255,95,255,254,95,95,43,47,94,120,216,13,242,140,223,145,47,15,255,63,255,255,251,251,223,223,240,253,27,159,40,185,240,239,128,191]},{"1847393":[160,4,212,39,167,255,223,126,119,126,94,96,233,192,192,255,95,255,43,254,89,253,34,255,8,255,32,239]},{"1847422":[255]},{"1847424":[128,144,149,149,5,5,124,125,129,1,208,2,255,170,255,212,247,231,47,159,58,63,130,255,127,127,45,13]},{"1847453":[170]},{"1847455":[212,111,60,218,240,255,205,255,255,128,254,210,223,85,255,43,107,211,255,191,79,63,242,125,130,255,1,223]},{"1847484":[255]},{"1847486":[255]},{"1847490":[64]},{"1847492":[85,95]},{"1847495":[85,87,93,43,47,160,5,80,10,255,255,255,255,170,255,170,255,247,247,251,251,90,90,165,5,255,128,255,64,255,85,255,255,10,170,4,212,165,255,90,95,255,127,255,191,255,170,85,170,255,85,255,43,255]},{"1847550":[95]},{"1847553":[174,160,173]},{"1847557":[187,5]},{"1847560":[224,193,241,128,82,112,181,162,255,255,95,255,228,255,15,5,254,255,253,252,218,216,245,243,255,1,255,162,255,95,245,255,63,43,126,118,44,172,19,83,254,255,253,95,187,228,10,245,255,212,252,139,248,87,243,172,2,225,2,73,36,144,154,32,209,51,192,64,248,16,253,8,243,246,227,239,36,188,223,32,206,191,191,127,255,255,255,255,254,25,247,178,239,231,64,5,191,185,127,69,239,170,247,117,225,255,73,255,144,127,101,250,63,198,127,186,255,85,255,138,1,170,32,117,85]},{"1847686":[255]},{"1847688":[16,254,170,191,5,7,10,10,171,171,244,245,85,85,255]},{"1847704":[239,255,85,255,250,255,245,255,255,85,255,171,255,255]},{"1847720":[255,17,255,170,255,165,255,91,170,255,117,254]},{"1847733":[255]},{"1847735":[255,254,239,255,85,255,90,255,164,21,168,10,64,255]},{"1847750":[80]},{"1847753":[174,128,213,85,127,239,255,189,189,74,74,255,250,251,4,251,255,127,255,170,255,16,255,255,87,255,191,250,250,175]},{"1847784":[255,85,255,170,255,85,255,239,168,255,64,255]},{"1847797":[255,171,255,174,251,213,127,255,170,255,16,126,129,173]},{"1847812":[227,25,6,138,14,236,60,89,56,178,5,37,255,255,174,173,253,163,42,95,154,234,190,223,207,143,218,47,255,127,253,252,163,185,255,10,255,107,223,223,191,77,15,191,128,255]},{"1847859":[255,24,255,160,255,240,159,65,190,194,191,181,74,122,197,127,128,220,34,132,59]},{"1847885":[170]},{"1847887":[80,191,186,255,255,255]},{"1847895":[123]},{"1847900":[85,255,174,254,250,63,255,255,1,34,64]},{"1847912":[255,255,255,255,255,255,255,255,133,127]},{"1847923":[255,35,255,59,255]},{"1847929":[255]},{"1847931":[255,170,85,80,175,128,127,84,171,170,130,128,117,85]},{"1847946":[42]},{"1847952":[255,128,255,84,191,194,10,117,85,85,42,42]},{"1847966":[192,192,128,255,84,255,215]},{"1847976":[255,255,255,255,255,255,255,255,127,255,171,255,151,255,117,255]},{"1847993":[255]},{"1847995":[255]},{"1847997":[255]},{"1847999":[255,21,255,2,255,32,100,1,81,125,3,158,2,64,2,5,129,255,21,255,2,32,187,175,81,127,124,190,159,70,69,169,6,21,234,2,253,255]},{"1848038":[1,1,253,255,223,253,255,251,215,125,255,255,255,255,100,255,80,255,3,254,35,220,1,254,47,208,127,255,105,141,160,225,64,170,45,18,212,129,138]},{"1848080":[255,95,15,185,128,159,191,106,255,40,255,62,31,15,7,2,95,208,59,68,190,192,234,170,168,58,190,149,111,58,250,85,143,255,143,255,1,255]},{"1848119":[255,18,255,129,127,80,239,173,250,254,255,85,95]},{"1848133":[127,5,175,64,168,87]},{"1848140":[138,32]},{"1848144":[254,255,245,85]},{"1848149":[255,250,170,255]},{"1848154":[253,168,255,213,127,127,254]},{"1848162":[255]},{"1848164":[128]},{"1848166":[175,170,23,168,170]},{"1848172":[213,160,255]},{"1848176":[255,255,255,255,127,255]},{"1848183":[255,191,255,2,255,32,255,128,255,171,254,64,239]},{"1848197":[186,119,255]},{"1848202":[226]},{"1848204":[239]},{"1848206":[170]},{"1848208":[171,255,64,127,69,186,136,136,255]},{"1848218":[93]},{"1848220":[186,16,85,85,171]},{"1848226":[208]},{"1848230":[255,136,255]},{"1848234":[191]},{"1848236":[85]},{"1848238":[255]},{"1848240":[254,255,239,255,186,255]},{"1848247":[255,255,255,191,255,69,255,170,255,154,233,20,251,22,188,209,239,24,37,24,46,77,24,239,56,154,247,24,247,67,182,42,182,194,28,203,48,178,12,56,104,150,4,28,24,22,28,251,174,255]},{"1848298":[253,10,219,24,191,16,225,255,227,255,160,255,4,251,227,255,205,247,211,239,191,199,16,239]},{"1848323":[255]},{"1848325":[170,255,255]},{"1848329":[81,139,32,223]},{"1848334":[255]},{"1848336":[16,255]},{"1848339":[255,85,170]},{"1848343":[170,174]},{"1848346":[116,10,32,64]},{"1848351":[5,16]},{"1848358":[255,170,255]},{"1848362":[213,32,191]},{"1848366":[250]},{"1848368":[239,255,255,255,170,255]},{"1848375":[255,255,255,213,255,191,255,250,255]},{"1848385":[255]},{"1848387":[255]},{"1848389":[170,255,255,1,80,159,32,221]},{"1848398":[80]},{"1848401":[255]},{"1848403":[230,85,170]},{"1848407":[170,174]},{"1848410":[96]},{"1848412":[34,247,5,239]},{"1848418":[25]},{"1848422":[87,2,255]},{"1848426":[223,32,42]},{"1848430":[21,170,255,255,255,255,170,255,168,255,255,255,223,255,8,255,16,255]},{"1848449":[254,1,255,29,29,188,255,66,20,253,2,83]},{"1848462":[5,4,2,253,2,232,228,7,12,241,188,3,1,14,168,238,80,254,3,2,23,3,31,2,190,255,234,23,242]},{"1848492":[185,4,81,175,253,254,252,254,7,248,77,177,235,253,241,255,16,254]},{"1848511":[251,128,255]},{"1848515":[255,53,253,175,183,71,240,213,192,192,128,135,135,128,254,128,64,118,140,54,193,88,163,64,106,42,127,80,63,129,128,191,128,245,56,255,47,236,80,213,170,170,213,208,239,127,255,127,255,252,131,214,41,204,191,85,63]},{"1848573":[127,64,56]},{"1848577":[255]},{"1848579":[255]},{"1848581":[95,255,255,255]},{"1848586":[85]},{"1848590":[85,85]},{"1848593":[159,2]},{"1848596":[160,95,101,239]},{"1848601":[134]},{"1848603":[255,170,255]},{"1848607":[255,96]},{"1848610":[253,2,95]},{"1848614":[245,128,121]},{"1848619":[170,170,85]},{"1848623":[255,255,255,253,255]},{"1848629":[255,111,154,121,255]},{"1848635":[255]},{"1848637":[255]},{"1848639":[170]},{"1848641":[255]},{"1848643":[255]},{"1848645":[255,239,255,250,4,68]},{"1848652":[170,42,85,85]},{"1848657":[95,42]},{"1848661":[255,67,255,4,251]},{"1848667":[255]},{"1848669":[255]},{"1848671":[255,160]},{"1848674":[213,42,255]},{"1848678":[83]},{"1848681":[5]},{"1848683":[187]},{"1848685":[127]},{"1848687":[255,255,255,213,255]},{"1848693":[255,239,188]},{"1848697":[255]},{"1848699":[255]},{"1848701":[213]},{"1848703":[170,224,191,96,255,112,255,254,255,154,60,24,28,164,160,89,91]},{"1848721":[87,41,210,96,223,54,206,60,203,28,243,24,231,12,243,249]},{"1848738":[246,105,255,48,63,57,24,117,24,239,24,239,4,255,14,255,36,223,96,159,246,201,24,231,24,231,24,71,4,170]},{"1848769":[255]},{"1848771":[255]},{"1848773":[255,248,255,170]},{"1848780":[186,186,21,183]},{"1848785":[85,59,128,20,235,136,248]},{"1848793":[255]},{"1848795":[255]},{"1848797":[255,162,255,255]},{"1848802":[196,59,235,20,143,7]},{"1848809":[85]},{"1848811":[255]},{"1848813":[255]},{"1848815":[93,170,255,68,255]},{"1848821":[255,248,119]},{"1848825":[255]},{"1848827":[255]},{"1848829":[85]},{"1848831":[234]},{"1848833":[255]},{"1848835":[255]},{"1848837":[255,20,255,170,2,69,69,171,175,87,125,5,80,255]},{"1848852":[111,144]},{"1848855":[20]},{"1848857":[255]},{"1848859":[255,4,255,42,253,250,5]},{"1848867":[255,144,111,235,235]},{"1848873":[87]},{"1848875":[255]},{"1848877":[251,2,213,170,255]},{"1848883":[255]},{"1848885":[255,20,255]},{"1848889":[253]},{"1848891":[186]},{"1848893":[84,2,170,26,253,77,190,6,223,3,253,173,45,87,215,191,255,84,255,93,24,190,13,251,6,17,7,3,252,128,255,64,255,171,255,186,69,76,178,38,221,233,254,2,125]},{"1848939":[127]},{"1848941":[191,1,84,186,231,76,243,34,221,1,254,2,209]},{"1848955":[169]},{"1848957":[64]},{"1848959":[171,191,64,85,128,42,64]},{"1848967":[224,127,127,158,255,234,245,101,250,64,51,128,47,192,63,95,170,128,127,161,127,85,181,186,218,140,64,80,170,128,85,21,224,128,127,1,222,21,234,2,101,140,255,80,255,128,127,31,234,128]},{"1849019":[225]},{"1849021":[245]},{"1849023":[250,208]},{"1849026":[2,2,191,159,33,33,254,219,213,170,172,64,64,232,47,47,84,254]},{"1849045":[255,80,175,1,219,42,170,83,83,255,255,255]},{"1849058":[85,170]},{"1849061":[223,80,175,139,116,42,213,64,188,168,64,208,255,1,253]},{"1849077":[96,80,174]},{"1849081":[139]},{"1849083":[42]},{"1849085":[83]},{"1849087":[191,4]},{"1849090":[3,6,255,255,127,126,164,164,64]},{"1849100":[1,1,22]},{"1849104":[130,133,4,3]},{"1849109":[255]},{"1849111":[254,81,245,186,186,212,213,232,232,250,1,252,2,46,209]},{"1849127":[255,174,81,5,234,42,68,23,190,122,253,248,253]},{"1849141":[46]},{"1849143":[128,10,245,5,186,42,213,1,232,1,255,143,127,243,63,213,221,124,127,170,163,80,112,168,252,254]},{"1849170":[112,128,12,240,42,223]},{"1849177":[59,4,165,6,54,83,255,255]},{"1849186":[122,5,60,3,45,210,171,87,81,11,169,96,4,4,1,255,10,255]},{"1849205":[255,32,15,128,108,80,166,137,86,80,171,255,95,122,250,253,255,7,39,5,240,59,193,5,209,254,128,160,160,128,5]},{"1849237":[2,168,136,5,240,58,192,6,208,127,128,95,10,160,90,2,255,112,143,245,250,251,196,213,250,126,1,255,85,32,255]},{"1849269":[253,80,175,5]},{"1849274":[59]},{"1849276":[5]},{"1849278":[126,128,171,171]},{"1849285":[170,160,245,93,93,234,74,66,64,133,132]},{"1849297":[84]},{"1849299":[255]},{"1849301":[255]},{"1849303":[95,10,8,180]},{"1849308":[182]},{"1849310":[125,4,171,170,5]},{"1849316":[170,170,85,245,93,162,235,21,73,189,130,122,171,85,5,255]},{"1849333":[85]},{"1849335":[170,85]},{"1849338":[234]},{"1849340":[64]},{"1849342":[132]},{"1849344":[231,239,71,103,17,57]},{"1849351":[6,13,4,4]},{"1849356":[175]},{"1849358":[87]},{"1849361":[16,32,152]},{"1849365":[108]},{"1849367":[174,9]},{"1849370":[5]},{"1849372":[175]},{"1849374":[81,6,63,224,39,64,41,186,6,87,245,242,250,251,80,123,168,191,63,208,7,248,1,84]},{"1849399":[168,5]},{"1849408":[21,255,221,194,93,255,138,127]},{"1849417":[255,224,127,224,31,240,95]},{"1849425":[255,32,192]},{"1849429":[255]},{"1849431":[255]},{"1849433":[255]},{"1849435":[159]},{"1849437":[255]},{"1849439":[175]},{"1849442":[31,95]},{"1849445":[5]},{"1849456":[125]},{"1849458":[223]},{"1849460":[93]},{"1849462":[127]},{"1849464":[255]},{"1849466":[127]},{"1849468":[31]},{"1849470":[95]},{"1849472":[127,254,67,172,251,250,175,255,21,255,43,255,5,255,170,255]},{"1849489":[254,19,19,4,250]},{"1849495":[255]},{"1849497":[255]},{"1849499":[255]},{"1849501":[255]},{"1849503":[255,1,9,239,253,1,187]},{"1849511":[11]},{"1849520":[127]},{"1849522":[255,2,251]},{"1849526":[175]},{"1849528":[189]},{"1849530":[107]},{"1849532":[175]},{"1849534":[234]},{"1849536":[254,169,240,128,161,244,253,246,123,253,255,241,115,231,199,207]},{"1849553":[168,255,255,11,171,1,244,2,249,14,251,24,251,48,247,87,255,127,127,85,255,10,203,5,111,10,191,28,111,56,127,255]},{"1849586":[255,128,255]},{"1849590":[255]},{"1849592":[127]},{"1849594":[255]},{"1849596":[127,16,255]},{"1849600":[129,131,197,139,159]},{"1849606":[85,56,254,171,85,86,251,250,85,85,101,229,100,139,191,63,66,80]},{"1849625":[170,168,84,4,250,170,85,38,230,139,239,63,191,109,125,85,255,3,87,1,251]},{"1849647":[69,231,25,239,16,191,64,125,128,255]},{"1849658":[87]},{"1849660":[251]},{"1849662":[85]},{"1849664":[215,172,70,253,128]},{"1849670":[10,175,168,221,64,171,170,183,81,11,87,215]},{"1849683":[253,255,255,90,90,2,138,20,20,64,162,164,1,123,248,255,253,255,255,165,245,117,255,235,255,29,191,90,91,255,7,255]},{"1849716":[255]},{"1849718":[255,10,255]},{"1849722":[255]},{"1849724":[191]},{"1849726":[91]},{"1849728":[232]},{"1849730":[162,80,95,93,191,209,20,111,42,191,128,85,16,238,255,255]},{"1849747":[80,162,253,191,191,148,148,106,106,42,42,1,1,255,255,242,80,253,255,110,110,123,251,149,213,213,255,254,255,255]},{"1849778":[242,13,255]},{"1849782":[255,145,255,4,255,42,255]},{"1849790":[255]},{"1849792":[20,22,3]},{"1849796":[171,217,254,10,117,152,169,64,85,139,138,39,234,254,42]},{"1849812":[33,217,247,250,107,97,183,163,77,69,186,170,255,189,132,172,216,249,252,251,241,251,227,247,198,206,173,189,254,67,40,215,249,6,251,4,251,4,247,8,207,49,191,66,182,30,98,128,80,42,239,175,237,5,247,162,95,224,255,162,105,63,127,128,128,42,80,80,250,250,253,253,95,95,255,255,63,55,64,157,126,174,255,255,255,239,95,87,191,191,93,93,30,233,157,98,250,5,255]},{"1849912":[255,16,255,168,255,64,255,162,170,234,149]},{"1849924":[32]},{"1849926":[255,255,95,95,255,191,253,21,255,175,21,255,255,42,5]},{"1849943":[127,160,191,64,77,234,234,80,80,255,255,42,64,48,21,255,255,255,255,255,255,255,255,255,255,234,21,64,191,37,218,255]},{"1849976":[255]},{"1849978":[255]},{"1849980":[255]},{"1849982":[255]},{"1849984":[128,168,85]},{"1849990":[125,125,255,255,255,255,255,255,255,255,86,254,255,170,85]},{"1850006":[130,255]},{"1850009":[255]},{"1850011":[151]},{"1850013":[183]},{"1850015":[35,255,255,175]},{"1850020":[40,125,255,255,255,255,255,255,255,255,255,255,168,87]},{"1850035":[255,85,170,125,130,255]},{"1850042":[255]},{"1850044":[255]},{"1850046":[255]},{"1850048":[10,1,241,10,24,18,8,58,249,180,159,226,247,155,23,101,9,4,91,4,255,30,255,193,111,235,69,149,12,167,154,111,254,245,255,10,2,251,247,205,178,158,170,248,211,251,221,61,4,249,174,241,251]},{"1850102":[28,227,237,2,215,26,175,96,247,104]},{"1850114":[160,10]},{"1850117":[10]},{"1850119":[138,77,1,103,34,255,136,251,234,20]},{"1850130":[95,160,255,85,250,112,242,242,216,216,118,254,21,85,235,254,85,10,85,170,255,117,191,178,191,152,137,136,238,68,21,235,85,255,170,85]},{"1850167":[255,77,179,103,186,255]},{"1850174":[251,174]},{"1850178":[20,171,1,32]},{"1850183":[255,160,87,4,171,106,85,187,174,127,21,239,16,254,223,255]},{"1850200":[87]},{"1850202":[251,80,149,128,68,64,149,234,68,171,222,32,255]},{"1850216":[255,8,255,80,255,128,255,64,106,149,64,255,32,223]},{"1850231":[255,160,95,4,251,106,213,187,238]},{"1850243":[255,87]},{"1850247":[64,2,98]},{"1850251":[253,160,95]},{"1850255":[255,255,127,245,10,168,255,66,2,232,2,253]},{"1850268":[95]},{"1850270":[255]},{"1850272":[127,128,10,245,168]},{"1850278":[255]},{"1850280":[119,136,255]},{"1850284":[255]},{"1850286":[255]},{"1850288":[128,127]},{"1850291":[255]},{"1850293":[255,189,255,157,119,2,255,160,95]},{"1850303":[255,120,56,112,255,191,80,58,122,170,218,53,69,255,255,212,255,191,239,243,68,64,190,245,159,80,170]},{"1850331":[53,96,255,75,212,183,24,60,251,49,112,181,106,175,112,207,96,239,16,127,160,56,199,112,143,33,223,48,197,37,223,138,255,96,143,64,63,85]},{"1850371":[187,255]},{"1850374":[170,170,171,171,87,87,175,255,179,255,170,251,255]},{"1850389":[255]},{"1850391":[170]},{"1850393":[171]},{"1850395":[87,80,175,76,179,174]},{"1850402":[68,187]},{"1850406":[85,170,254,1,253,2,255]},{"1850414":[255]},{"1850416":[4,255,68,187]},{"1850421":[255,85,85,84,254,168,253]},{"1850429":[255]},{"1850431":[255,85,21]},{"1850435":[170,174,4,171,169,191,191,125,95,171,255,85,213,170,255,255]},{"1850453":[255,2,169]},{"1850457":[191,34,95,84,171,170,255,170,21,85,170]},{"1850469":[85,87,168,239,16,255]},{"1850476":[255]},{"1850478":[213,42]},{"1850481":[234,85,170]},{"1850485":[251,86,87,64,239,160,255]},{"1850493":[255]},{"1850495":[255,85,84,1,33,186,138,255,85,255,255,81,255,186,186,85,215,170,255,119,139,1,254,170,85]},{"1850521":[255,174,251,69,255,170,255,170,85,85,168,1,206,254,1,254,1,255]},{"1850540":[186,69,215,40]},{"1850545":[171,87,170,1,116,170,254]},{"1850553":[254]},{"1850555":[255]},{"1850557":[255]},{"1850559":[255,181,53,64,32,95,95,221,146,43,63,20,191,74,31,96,250,192,181,148,171,96,223,138,178,212,63,75,63,53,223,255,159,74,245,84,107,32,159,90,101,222,225,223,224,63,192,26,101,202,10,20,107,32,64,8,250,64,62,64,191,32,223]},{"1850623":[255,87,87,4,6,251,251,240,63,170,221,64,191,170,117,16,170]},{"1850641":[87,64,191]},{"1850645":[255,143,63,85,221,191,191,85,117,239,239,168,87,64,191]},{"1850661":[255,143,112,221,34,191,64,117,138,170,81,168,168,64,191]},{"1850677":[4,128,143]},{"1850681":[221]},{"1850683":[191]},{"1850685":[117]},{"1850687":[239,255,255,65,107,170,191,10,255,152,119,2,255,34,221]},{"1850703":[255]},{"1850705":[255]},{"1850707":[255,21,255,245,255,103,119,253,255,221,221,255,255]},{"1850721":[255]},{"1850723":[255]},{"1850725":[234,245,10,103,152,253,2,221,34,255]},{"1850739":[255]},{"1850741":[85]},{"1850743":[245]},{"1850745":[103]},{"1850747":[253]},{"1850749":[221]},{"1850751":[255,242,243,84,253,174,254,244,254,3,255,1,255,42,247,1,255,15,241,6,249,83,252,9,254,253,254,254,255,247,247,255,255,12,246,2,255,1,175,1,247,252,3,252,1,212,42,254,1,12,3,2,253]},{"1850805":[86]},{"1850807":[10]},{"1850809":[253]},{"1850811":[255]},{"1850813":[213]},{"1850815":[254,239,250,87,253,162,255,1,255,202,191,198,253,11,191,221,119,21,250,2,255,93,255,126,255,255,63,191,125,63,191,223,183,5,234]},{"1850851":[255]},{"1850853":[162,84,129,116,138,27,196,116,139,10,245,5,21]},{"1850867":[255]},{"1850869":[221]},{"1850871":[254,64,245,2,251]},{"1850877":[244,8,234,173,250,255,85,32,255,41,215,175,255,117,223,191,255,215,127,87,250,170,255,223,255,255,215,255,255,255,223,255,255,255,127,7,168]},{"1850915":[255]},{"1850917":[32,124,1,80,175,170,85,64,191,168,87,5,87]},{"1850931":[255]},{"1850933":[223,40,254]},{"1850937":[80,32,170]},{"1850941":[64,128,168,136,255,234,127,34,255,221,119,255,255,93,255,255,255,87,255,119,255,149,255,255,255,255,127,255,255,255,255,255,255,255,255,119,136]},{"1850979":[234,8,34,130,85]},{"1850985":[255,160,95]},{"1850989":[255]},{"1850991":[255]},{"1850993":[119]},{"1850995":[255]},{"1850997":[221,128,170]},{"1851003":[162]},{"1851007":[168,170,127]},{"1851011":[255,179,255,121,255,164,167,72,235,145,145,224,224,79,127,231,255,251,255,253,255,247,247,251,251,213,213,232,232,69,186,1,24]},{"1851045":[183,128,123,2,174,1,239]},{"1851053":[187]},{"1851055":[247]},{"1851057":[117]},{"1851059":[239]},{"1851061":[72]},{"1851063":[132]},{"1851065":[89]},{"1851067":[182]},{"1851069":[110]},{"1851071":[31,64,64,93,255,248,248,2,3,17,63,10,27,5,221,10,255,255,255,255,255,253,253,239,238,126,81,191,170,250,197,253,235]},{"1851105":[64,2,93,2,248,2,17,16,174,14,213,226,250,104,244]},{"1851121":[191]},{"1851123":[162]},{"1851125":[5]},{"1851127":[254]},{"1851129":[209]},{"1851131":[110]},{"1851133":[39,1,138,181,7,240,240,5,47,168,255,64,255,160,191]},{"1851149":[255,129,62,66,71,254,254,122,85,87,175,191,95,95,191,252,124,255,62,184,176]},{"1851171":[241]},{"1851173":[170]},{"1851175":[80]},{"1851177":[160,64,64,3,128,65,192,10,69]},{"1851187":[15]},{"1851189":[213,7,168,31,64,31,224,124,3,190,192,2,253,10,95,2,253,30,224,170,80,95,160,191,96,93,161,255,252,245,171,255,61,255,224,165]},{"1851226":[218,128,128,32,75,1,2,1]},{"1851235":[84,2,192,30,1,250,5,127]},{"1851244":[255]},{"1851246":[252,2,254]},{"1851250":[1,170,61]},{"1851254":[234]},{"1851257":[90,138,37]},{"1851261":[95,9,180,240,64,134,152,200,48,149,137,187,55,93,91,255,159,127,126,63,64,63,184,255]},{"1851286":[251,9,113,51,252,89,190,159,255,126,176,143,70,1,200,55,148,98,142,64,7,164,97,32]},{"1851311":[129,16,64,26,160,64]},{"1851318":[9,132,49,140,88,2,158,64,126]},{"1851328":[191,16,164,4,191,148,255,232,255,68,254,177,252,67,122,45,255,16,255,4,255,148,255,232,255,68,255,176,127,64,191,40]},{"1851361":[66,160,91]},{"1851365":[67]},{"1851367":[23]},{"1851369":[191,1,94,131,60,69,154,16]},{"1851378":[164]},{"1851380":[148]},{"1851382":[232]},{"1851384":[64,4,160,16,64,128,32,72,248]},{"1851394":[127,42,253,2,229,17,18,239,140,87,51,239,41,215,239,16,255,42,255]},{"1851414":[186,68,237,16,242,9,192,28,192,62,7,248]},{"1851427":[149,2,253,95,160,255]},{"1851434":[127,128,255]},{"1851438":[255]},{"1851442":[42]},{"1851446":[68]},{"1851448":[16]},{"1851450":[9]},{"1851452":[28]},{"1851454":[62]},{"1851456":[240,239,43,255,5,255,255,175,238,255,235,92,251,213,252,61]},{"1851473":[31]},{"1851475":[255]},{"1851477":[255]},{"1851479":[80,128,17]},{"1851483":[183,128,46]},{"1851487":[195]},{"1851491":[11]},{"1851504":[239]},{"1851506":[43]},{"1851508":[239]},{"1851510":[175]},{"1851512":[127]},{"1851514":[92]},{"1851516":[85]},{"1851518":[60]},{"1851520":[1,255,212,223,91,252,5,243,9,235,138,255,48,255,106,255]},{"1851537":[255,32,212,3,251,12,117,20,235]},{"1851547":[79]},{"1851549":[191]},{"1851551":[127]},{"1851554":[11,223,7,94,6,7]},{"1851561":[8,48,56,64,112,128,192,235]},{"1851570":[223]},{"1851572":[95,1,215]},{"1851576":[201]},{"1851578":[186]},{"1851580":[122]},{"1851582":[254]},{"1851584":[149,191,2,61,170,175,174,255,85,255,170,255,85,255,174,255,64,223,194,194,80,170]},{"1851607":[255]},{"1851609":[255]},{"1851611":[255]},{"1851613":[255]},{"1851615":[255,96,245,255,253,5,175]},{"1851623":[6]},{"1851625":[1]},{"1851627":[40]},{"1851629":[5]},{"1851631":[12,245]},{"1851634":[255,2,175]},{"1851638":[174]},{"1851640":[85]},{"1851642":[170]},{"1851644":[85]},{"1851646":[174]},{"1851648":[127,255,254]},{"1851652":[160,255,247,247,85,255,221,221,85,255,175,255]},{"1851665":[255,255,255]},{"1851669":[160,8,247]},{"1851673":[255,34,221]},{"1851677":[255]},{"1851679":[255]},{"1851681":[127,255,89,95,255]},{"1851687":[119]},{"1851689":[68]},{"1851691":[221]},{"1851693":[1]},{"1851695":[165,127]},{"1851698":[255,166,255]},{"1851702":[247]},{"1851704":[85]},{"1851706":[221]},{"1851708":[85]},{"1851710":[175]},{"1851712":[238,186,235,2,71,184,85,85,118,254,85,85,219,251,117,117,1,170,253,246,71,71,170,85,1,254,170,85,4,251,138,117,84,254,246,255,255,255]},{"1851751":[85]},{"1851753":[38]},{"1851755":[85]},{"1851757":[219]},{"1851759":[117,254]},{"1851762":[255]},{"1851764":[255]},{"1851766":[85]},{"1851768":[118]},{"1851770":[85]},{"1851772":[219]},{"1851774":[117]},{"1851776":[170,221,252,170,245,2,86,1,233,160,67,80,134,162,13,69]},{"1851793":[136,84,170,253,254,175,4,29,169,170,66,69,134,138,5,119,255,170,254,255,254,84,85,73,236,19,27,36,38,64,76,255]},{"1851826":[254,1,254,1,85,2,237,3,91,4,166,24,77,48,80,135,235,20,69,64,128,47,168,128,64]},{"1851852":[170,168,85,84,120,152,192,20,191,122,208,144,87,130,191,5,85,173,170,84,215,191,255,20,122,255,175,191,40,170,64,69,2,167,1,17,191,64,63,192,255]},{"1851894":[191]},{"1851896":[170]},{"1851898":[69]},{"1851900":[175]},{"1851902":[85]},{"1851904":[87,168,245]},{"1851908":[255,69]},{"1851911":[255]},{"1851913":[23]},{"1851915":[43]},{"1851917":[5]},{"1851919":[10,87,87]},{"1851924":[186,69]},{"1851928":[232,104,212,64,250,2,245,1,255,255,245]},{"1851940":[69,255,255,255,23,127,43,107,5,7,10,11,255]},{"1851954":[245,10,255]},{"1851958":[255]},{"1851960":[127]},{"1851962":[107]},{"1851964":[7]},{"1851966":[11]},{"1851968":[255,1,132,42,191,18,175,248]},{"1851977":[255,34,255]},{"1851981":[95]},{"1851983":[175,254,254,42]},{"1851988":[232,82,175,175]},{"1851994":[34,34,160,32,80,16,255,255,174]},{"1852004":[87,250,87,87,255,254,221,221,95,123,175,181,255]},{"1852018":[132,123,191,64,255,168,255]},{"1852026":[255,34,127]},{"1852030":[191]},{"1852032":[254,87,11,180,241,15,254,15,108,145,8,240,12,245,31,226,169,166,180,14,6,2,242,243,108,111,14,11,13,3,23,26,246,255,135,54,249,7,253,254,249,234,252,73,245,239,244,87,255]},{"1852082":[54,200,244]},{"1852086":[255,1,253,1,252]},{"1852092":[253]},{"1852094":[247,8,176,13,206,176,27,65,63,110,255,87,111,191,247,13,159,235,95,104,204,53,157,243,81,192,170,42,68,68,242,242,21,21,249,126,210,229,207,190,46,255,255,253,255,107,255,247,255,158,30,1,252,248,79,64,191,128,253]},{"1852154":[123]},{"1852156":[255]},{"1852158":[254]},{"1852160":[255,42,199,32,5,191,255,239,255,213,221,221,255,247,255,255,85,127,24,71,250,133,16]},{"1852184":[170,128]},{"1852187":[34,170,162,16,16,170,42,248,224,69,186,229,255,213,127,221,221,247,93,255,239,255]},{"1852210":[88,167,122,5,245,10,127]},{"1852218":[221,34,93]},{"1852222":[239]},{"1852224":[207,129,250,39,93,253,255,218,255,98,119,51,251,81,85,84,112,240,5,250,162,93,37,37,157,21,68,136,170,4,1,170,191,176]},{"1852259":[39,93,162,90,208,98,234,17,119,81,251,84,85,207,49,5,216,162,93,127,138,255]},{"1852282":[85,170,251,4,85,170,170,85,187,212,251,255,254,171,255,137,255,107,255,95,127,107,87,2,68,187,4,251,84,84,118,119,148,149,160,1,20,133,253]},{"1852323":[212,255]},{"1852326":[169,2,137,136,65,106,10,255,64,123,170,85,68,43]},{"1852341":[255,252,170,254,1,212,43,170,84,84,170,145,95,31,119,63,95,53,255,31,53,95,171,127,85,123,106,38,145,128,31,128,63,10,32,202,10,52,84,170,106,145,85,127,64,224,119,223,64,234,213,224,21,160,139,128,85,192,42,32,215,128,104,128,127]},{"1852407":[255,202,21,20,235,170,21,145,110,125,255,255,183,255,255,85,255,253,85,223,187,247,93,255,239,130,125]},{"1852435":[255]},{"1852437":[255,170]},{"1852440":[168,168,100,68,162,170,16,16,255]},{"1852451":[183,186,69,170,85,2,85,32,155,8,93]},{"1852463":[239]},{"1852465":[255]},{"1852467":[72]},{"1852469":[186]},{"1852471":[255,170,85,68,187,162,85,16,239,252,254,255,95,255,238,68,228,85,85,187,187,213,213,255,255,3,253]},{"1852499":[255]},{"1852501":[238,170,10]},{"1852512":[254,1]},{"1852515":[95,170,85,177,78,170,85,68,187,42,213]},{"1852527":[255]},{"1852529":[255]},{"1852531":[160]},{"1852533":[170,17,238,170,85,68,187,42,213]},{"1852543":[255,102,102,253,255,251,172,4,4,85,85,185,185,85,85,238,238,17,119,2,255,4,172,170,170]},{"1852570":[2,2]},{"1852576":[238,17]},{"1852579":[253,172,83,81,174,170,85,68,187,170,85,17,238,136,119]},{"1852595":[2]},{"1852597":[172,81,174,170,85,68,187,170,85,17,238,158,122,61,255,202,117,80,112,112,112,80,48,89,25,182,190,1,123,162,223,53,117,142,254,5,117,138,186,36,29,8,62,10,245]},{"1852643":[125,5,234,1,250,138,117,5,250,170,84,73,176]},{"1852657":[107]},{"1852659":[226]},{"1852661":[85,1,238,138,53,5,186,162,29,65,190,136,133,85,255,170,85,4]},{"1852686":[4]},{"1852688":[119,247,170,255,85,85,251,251,85,85,187,187,85,85,170,170,133,88]},{"1852707":[85,85,170]},{"1852711":[174,170,16,68,170,170,84,85,174]},{"1852721":[247]},{"1852723":[170]},{"1852725":[85]},{"1852727":[251,170,85,68,187,170,85,81,170,138,87,64,255,170,85]},{"1852743":[10]},{"1852750":[64]},{"1852752":[119,119,191,255,85,85,255,255,95,95,255,255,95,95,191,191,85,138,4,64,85,170,10,128,160]},{"1852779":[32,160,64,64,200]},{"1852785":[117]},{"1852787":[191]},{"1852789":[85]},{"1852791":[255,160,95]},{"1852795":[255,160,95]},{"1852799":[191,170,127]},{"1852803":[255,170,127,5,175,3,3]},{"1852812":[1,1]},{"1852816":[127,127,255,255,127,127,255,255,255,255,255,255,255,255,255,255,85,170]},{"1852836":[16,170,170,5]},{"1852841":[3]},{"1852845":[1]},{"1852849":[85]},{"1852851":[255]},{"1852853":[85]},{"1852855":[250]},{"1852857":[252]},{"1852859":[255]},{"1852861":[254]},{"1852863":[255,239,255]},{"1852867":[223,146,255,86,254,115,127,200,222,103,111]},{"1852879":[14,159,159,143,223,207,239,239,239,231,255,243,247,243,251,251,255]},{"1852897":[239,32,80]},{"1852901":[178,128,86]},{"1852905":[123,2,204]},{"1852909":[111]},{"1852911":[4]},{"1852913":[16]},{"1852915":[175]},{"1852917":[77]},{"1852919":[169]},{"1852921":[148]},{"1852923":[51]},{"1852925":[144]},{"1852927":[251,255,255,130,56,171,171,247,255,248,248,248,248,72,64,1]},{"1852944":[255,255,255,255,255,255,255,255,253,253,250,250,246,246,254,254]},{"1852961":[255]},{"1852963":[69]},{"1852965":[255]},{"1852967":[255]},{"1852969":[250,5,248,10,73,1,1]},{"1852979":[186]},{"1852983":[8]},{"1852985":[7]},{"1852987":[2]},{"1852989":[181]},{"1852991":[254,181,181,167,21,255,255,64,64,16,16]},{"1853005":[2,66,23,245,245,255,255,255,255,234,234,16,16,170,170,110,68,191,170]},{"1853025":[191,16,93]},{"1853029":[255,4,81,128,127]},{"1853035":[85,40,187,66,85]},{"1853041":[74]},{"1853043":[162]},{"1853047":[187]},{"1853049":[111]},{"1853051":[255]},{"1853053":[253]},{"1853055":[170]},{"1853058":[93,255,244,244,10,30]},{"1853065":[41,42,58,64,226,170,235,24,24,255,255,244,244,157,138,175]},{"1853082":[125,42,255,64,213,171,8,231,162,255]},{"1853093":[255,9,117,134,255,109,213,93,191,148,84]},{"1853105":[247]},{"1853109":[11]},{"1853111":[235]},{"1853113":[214]},{"1853115":[239]},{"1853117":[93,1,190,112,123,200,248,28,28,172,173]},{"1853129":[168,130,186]},{"1853133":[238,128,118,255,113,249,248,63,60,223,173,249]},{"1853146":[126,186,254,236,249,112,132,254,53,251,35,223,210,94,81,255,68,71,17,18,15,137,1,132]},{"1853171":[3]},{"1853173":[195,1,242]},{"1853177":[87,56,197,236,16,240,143,10,245,8,14,2,161,21,107,175,82,85,174,47,80,23,56,90,80,119,14,255,1,244,97,164,2,208,132,228,192,96,48,175]},{"1853218":[113,241,94,252,159,128,255]},{"1853226":[127]},{"1853228":[191]},{"1853230":[223,64,80,165,6,249,1,92,96,138]},{"1853241":[89,128,43,64,27,32,79,255,65,21,138,191,108,87,135,255,21,255,43,255,85,127,63,1,65,244,128,128,44,47,7,31,21,47,43,95,85,191,63,254]},{"1853282":[127,96,255]},{"1853286":[208,40,234,10,212,4,170,10,64,128,1,190,128,107]},{"1853301":[83,7,208,21,224,43,208,85,160,63,64,255,124,255,27,255,23,255,251,255,214,255,238,253,234,254,253,255,124,31,27,63,23,255,251,255,214,255,238,255,232,255,252,128,139,228,4,232,42]},{"1853351":[21]},{"1853353":[175]},{"1853355":[85,2,61,1,22,116,8,27,224,21,194,234,17,80,134,170,68,192,40,232,20,240,95,255,170,254,79,239,190,77,242,176,207,80,239,144,239,255,80,239,170,255,78,255,174,243,76,239,144,236,83,238,145,47,160,80,69,1,186,16,237,191,65,95,160,191,64,127,128,80]},{"1853426":[170,16,68,10,2,172,12,64,16,128,19,64,17,128,7,255,178,237,36,223,138,126]},{"1853449":[244,224,218,64,248,4,252,192,56,236,179,192,59]},{"1853463":[245,192,63,192,255,112,207,184,67,255]},{"1853474":[95,160,255]},{"1853478":[255]},{"1853480":[255]},{"1853482":[63,192,191,64,255]},{"1853488":[56]},{"1853490":[19,160,59]},{"1853494":[244]},{"1853496":[52]},{"1853498":[58,192,136,64,64]},{"1853504":[120,222,244,221,236,159,181,245,72,255,63,209,127,177,255,253,129,38,66,37]},{"1853525":[127,10,245]},{"1853529":[247]},{"1853531":[238,32,206]},{"1853535":[2]},{"1853539":[4]},{"1853541":[12]},{"1853543":[53]},{"1853545":[64]},{"1853552":[92]},{"1853554":[156]},{"1853556":[159]},{"1853558":[181]},{"1853560":[222]},{"1853562":[17]},{"1853564":[145]},{"1853566":[253]},{"1853568":[1,255]},{"1853571":[255]},{"1853573":[255,16,31,5,255,192,255,64,127,16,223]},{"1853585":[255]},{"1853587":[255]},{"1853589":[255,224,16]},{"1853593":[255]},{"1853595":[29]},{"1853597":[191]},{"1853599":[103]},{"1853606":[15,31]},{"1853609":[1]},{"1853616":[127]},{"1853618":[244]},{"1853620":[248]},{"1853622":[31]},{"1853624":[133]},{"1853626":[255]},{"1853628":[127]},{"1853630":[223]},{"1853632":[21,255,170,255,85,255,175,80,118,254,34,255]},{"1853645":[255,10,255]},{"1853649":[255]},{"1853651":[255]},{"1853653":[255,175,175,1,254]},{"1853659":[255]},{"1853661":[255]},{"1853663":[255]},{"1853665":[16]},{"1853667":[42]},{"1853669":[5,255,222]},{"1853673":[118]},{"1853680":[149]},{"1853682":[170]},{"1853684":[85]},{"1853686":[255,33,118]},{"1853690":[34]},{"1853692":[160]},{"1853694":[10]},{"1853696":[21,255,185,253,89,251,234]},{"1853704":[170,170,170,255,84,255,170,255]},{"1853713":[255,2,253,4,251,255,245,85,170]},{"1853723":[255]},{"1853725":[255]},{"1853727":[255]},{"1853729":[20]},{"1853731":[185]},{"1853733":[89,245,223]},{"1853737":[170]},{"1853739":[32]},{"1853741":[84]},{"1853744":[21]},{"1853746":[185]},{"1853748":[89]},{"1853750":[255,32,170]},{"1853754":[170]},{"1853756":[84]},{"1853758":[170]},{"1853760":[85,255,156,220,139,170,191,136,173,170,175,241,78,243,154,235]},{"1853777":[255,35,220,85,170,116,200,85,170,10,249,12,227,20,203]},{"1853793":[68]},{"1853795":[148]},{"1853797":[139,203,252,2,175,12,171,16,94,40,184,85]},{"1853810":[156]},{"1853812":[139]},{"1853814":[255]},{"1853816":[175]},{"1853818":[175]},{"1853820":[94]},{"1853822":[186]},{"1853824":[222,142,181,21,106,42,254,33,170,185,170,255,68,255,170,255,17,158,42,21,85,42,84,33,68,168]},{"1853851":[255]},{"1853853":[255]},{"1853855":[255,80,158,128,36]},{"1853861":[106,171,117,19,187]},{"1853872":[222,32,181,64,106,128,255]},{"1853880":[187]},{"1853882":[170]},{"1853884":[68]},{"1853886":[170]},{"1853888":[238,238,85,85,170,162,174,81]},{"1853897":[81,137,221,68,255,170,255,17,238,170,85,85,163]},{"1853911":[81,174]},{"1853914":[34,221]},{"1853917":[255]},{"1853919":[255]},{"1853921":[170]},{"1853923":[64,8,171,255,81,81,81]},{"1853936":[238]},{"1853938":[85]},{"1853940":[171]},{"1853942":[255]},{"1853944":[81]},{"1853946":[137]},{"1853948":[68]},{"1853950":[170]},{"1853952":[168,128,84]},{"1853957":[17,251]},{"1853961":[127,145,213,85,255,34,119,87,135,171]},{"1853972":[238]},{"1853976":[128]},{"1853978":[42,213]},{"1853981":[255,136,119,40,175,84,84,17,17,251]},{"1853992":[127,127]},{"1853997":[16]},{"1854000":[175]},{"1854002":[84]},{"1854004":[17]},{"1854006":[251,4,127]},{"1854010":[145]},{"1854012":[85]},{"1854014":[34]},{"1854017":[5]},{"1854019":[34]},{"1854021":[31,199,8,21,239,84,84,42,170,85,84,250,18,221,17,224,64,8]},{"1854040":[21,21,171,84,85,170,43,85,5,22,34,17,31,91,207]},{"1854056":[255,250]},{"1854061":[2,129,129,23]},{"1854066":[51]},{"1854068":[95]},{"1854070":[199,56,250]},{"1854074":[84]},{"1854076":[42]},{"1854078":[85]},{"1854080":[23,104,40,215,53,218,24,247,143,112,176,66,136,80,32,192,139,143,52,56,29,25,176,56,191,174,221,160,71,65,255]},{"1854112":[117,237,251,125,235,223,231,48,238,191,130,208,216,73]},{"1854127":[224,247]},{"1854130":[255]},{"1854132":[255]},{"1854134":[48,136,191]},{"1854138":[210,32,217,32,224]},{"1854144":[5,251,2,255,67,189]},{"1854151":[63,255,81]},{"1854155":[175]},{"1854157":[85]},{"1854160":[4,4]},{"1854164":[66,66,200]},{"1854168":[238,234,80,16,170]},{"1854174":[119]},{"1854176":[255,173,255,66,255,227,63,192,251,191,175,16,85]},{"1854190":[136,136,255]},{"1854194":[255]},{"1854196":[255]},{"1854198":[192,8,191]},{"1854202":[191]},{"1854204":[85]},{"1854208":[63,215,187,255,255,125]},{"1854215":[191,255,24]},{"1854219":[255]},{"1854221":[127]},{"1854223":[111,42,42,16,16,170,170,64]},{"1854232":[239,136]},{"1854236":[128]},{"1854238":[16]},{"1854240":[255,189,255,171,255,215,191,64,152,247,255]},{"1854252":[127]},{"1854254":[239,128,253]},{"1854258":[239]},{"1854260":[215]},{"1854262":[64]},{"1854264":[247]},{"1854266":[255]},{"1854268":[127]},{"1854270":[111]},{"1854272":[254,244,213,209,250,242,139,255,238,129,97,253]},{"1854285":[255]},{"1854287":[255,170,161,68,106,170,167]},{"1854295":[139,238,145,65,67]},{"1854304":[244,94,209,149,242,88,255]},{"1854312":[129,111,255,32,255]},{"1854318":[255]},{"1854320":[94,1,149,42,88,5]},{"1854327":[139,110,16,190,2,255]},{"1854334":[255]},{"1854336":[235,64,85,2,169,2,63,255,173,83,215,209,127,251,246,243,170,23,86,169,168,85,128,63,174,85,84,121,124,127,116,126,64,232,2,84,2,168,252,3,80,251,217,134,251]},{"1854382":[251]},{"1854384":[234,21,84,171,168,85]},{"1854391":[188,174]},{"1854394":[140,41,132,3,140,10,191,85,242,167,106,209,255,255,41,86,213,85,186,59,85,85,42,128,80,205,170,21]},{"1854423":[255,41,119,213,255,170,111,85,255,64,63,5,183,17,251,127,128,214,94,85]},{"1854444":[59,129,85]},{"1854448":[42,149,80,42,170,68]},{"1854455":[127,169]},{"1854458":[128,42,144,68]},{"1854463":[170,221,119,170,255,32,159,255,117,241,14,68,84,170,186,81,81,136,42]},{"1854483":[85,32,223]},{"1854487":[117,241,255,68,254,170,255,81,251,34,247,85,255,159,191,117,138,14,14,84,17,186,16,81,4,136,85]},{"1854515":[170,32,64]},{"1854519":[117,241]},{"1854523":[170]},{"1854525":[69]},{"1854527":[170,85,255,170,255,69,255,223,17,16,234]},{"1854539":[1,170,171]},{"1854545":[170]},{"1854547":[85]},{"1854549":[186,32,49,16,250]},{"1854555":[171,170,255]},{"1854559":[170,170,255,85,255,186,255,17,206,239,234,1,85,171,1]},{"1854575":[85]},{"1854577":[85]},{"1854579":[170]},{"1854581":[69]},{"1854583":[49,21]},{"1854587":[170]},{"1854589":[84]},{"1854591":[170,85,255,170,255,84,254,255]},{"1854601":[170]},{"1854603":[157]},{"1854605":[85]},{"1854609":[170]},{"1854611":[85]},{"1854613":[170]},{"1854617":[170]},{"1854619":[191]},{"1854621":[85]},{"1854623":[170,170,255,85,255,171,254]},{"1854631":[255,255,170,157,221,85,255]},{"1854639":[85]},{"1854641":[85]},{"1854643":[170,1,84]},{"1854648":[85]},{"1854651":[34]},{"1854655":[170,29,149,178,178,108,214,239,40,28,148,16,195,24,97,85,34,32,177,8,56,16,146,16,56]},{"1854681":[148,9,203,5,101,73,170,194,188,69,186,131,238]},{"1854695":[255,231,152,230,218,96,250,99,62,66,21,69,130,1,84]},{"1854712":[99,4,37]},{"1854716":[1,4,65,128,17,144,168,168,69,69,247,73,1]},{"1854731":[245]},{"1854733":[255,16,239]},{"1854737":[144,2,170]},{"1854741":[69,73,73]},{"1854746":[36,245,129,255,17,239,239,129,85,2,186]},{"1854759":[247,255,1,219,209,126,126,254,238,110,16,85,170,186,69]},{"1854775":[8,254]},{"1854778":[46]},{"1854780":[129]},{"1854782":[17]},{"1854784":[70]},{"1854786":[21]},{"1854788":[26]},{"1854790":[85,138,6]},{"1854794":[162,231]},{"1854797":[254]},{"1854799":[255,17,17,170,170,69,69,170,170,81,81,5,231,150,254,174,255,238,70,85,191,186,26]},{"1854823":[117,174,6,88,64,105,104,81,81,168,17,64,170,160,69]},{"1854839":[138,168,81,29,162,151]},{"1854846":[174]},{"1854848":[42]},{"1854850":[84]},{"1854852":[170]},{"1854854":[17,139,170]},{"1854858":[174,170,4,174,8,95,85,85,171,171,85,85,239,239,85,85]},{"1854875":[170,170,164,87,95,170,42,84,84,170,170]},{"1854887":[117,170,170,85,4,81,10,160]},{"1854896":[128,85]},{"1854899":[171]},{"1854901":[85]},{"1854903":[138]},{"1854905":[85,81,170,241,4,247,8,160,6,68,7,168,1,16,155,168]},{"1854922":[235,124,64,255,168,255,93,95,189,191,86,87,254,255,85,85,20,104,191,198,87,186,160,163,64,70,168,171]},{"1854951":[117,170,169,131,151]},{"1854957":[57]},{"1854959":[69]},{"1854961":[92]},{"1854963":[185]},{"1854965":[84]},{"1854967":[138]},{"1854969":[84]},{"1854971":[104,134,64,18,168,128,40,193,148,188,134,85,213,5]},{"1854986":[10,159,224,255,32,111,127,85,190,170,198,196,255,255,218,216,245,238,191,171,143,197,130,170,65,213,60,187]},{"1855015":[127,47,199]},{"1855019":[81]},{"1855021":[244,16,106]},{"1855025":[87]},{"1855027":[42]},{"1855029":[69]},{"1855031":[128]},{"1855033":[18,4,170,11]},{"1855038":[5,128]},{"1855041":[133,162,247,16,42,87,127,16,174,128,255]},{"1855053":[255]},{"1855055":[255,175]},{"1855058":[247,162,171]},{"1855062":[255,255,175]},{"1855066":[127,157,255,62,255,255,42,255,162,93,145,255,40,255,17,255]},{"1855083":[98]},{"1855085":[193]},{"1855089":[122]},{"1855091":[170]},{"1855093":[197]},{"1855097":[65,29,128,62]},{"1855102":[255]},{"1855105":[187,128,255,64,127,104,232]},{"1855113":[255,5,250,42,213,5,250,255,3,127,174,191,71,232,232,255,1,255,250,250,208,229,224,68,252]},{"1855139":[81,128,184,148,235]},{"1855145":[254,5]},{"1855148":[47]},{"1855150":[31]},{"1855152":[3,68,46,128,7,192]},{"1855159":[3,1]},{"1855162":[250]},{"1855164":[208,5,224,26,10,245,5,122,43,212]},{"1855175":[5,46,193,85,172,191,96,125,132,218,208,245,112,255,212,215,192,254,192,210,132,144,32,42,4,47]},{"1855202":[143,128,43]},{"1855206":[82,63,63,16,125,2,255]},{"1855214":[253,2,208,37,112,138,212]},{"1855223":[186,192,17,128,41]},{"1855229":[79,40,209,31,128,15,154,135,108,1,14,251,48,85,1,190,25,127,126,48]},{"1855250":[82,26,24,12,255,14,198,48,174,1,88,24,255,126,255,32,205,96,247,16,241,240,255,4,87,170,167,64,1,128]},{"1855281":[175,18,229,8,243,14,240]},{"1855289":[13]},{"1855291":[82,24,167,126]},{"1855296":[255,87,255,63,255,95,87,168,255,23,255,250,255,92,127,104,127,87,127,63,127,95,64]},{"1855320":[191,23,255,250,127,92,255,104,168,40,192,64,160,34,255]},{"1855336":[232,168]},{"1855339":[5,128,47,128,151,87,128,63,128,93,130]},{"1855351":[191,23,64,250]},{"1855356":[80,140,104,128,253,195,250,239,253,102,255,14,253,115,250,71,224,191,232,31,255,193,255,234,255,100,31,14,255,113,255,66,255,160,254,9,2,189,5,90,2,189,241,17,2,189,5,250,31,224,23,232,64,129,160,74,64,36,14,224,64,49]},{"1855419":[66]},{"1855421":[160,1,8]},{"1855425":[255,193,191]},{"1855429":[255,254,187,64,191,19,255,3,255,38,254,240,15,186,196,244,11,255,186,253,2,224,12,192,60,192,25,255]},{"1855458":[127,128,255]},{"1855462":[65,86,191,64,255]},{"1855468":[255]},{"1855470":[255]},{"1855472":[15]},{"1855474":[68,128,11]},{"1855478":[168,18,2]},{"1855482":[12]},{"1855484":[60]},{"1855486":[24]},{"1855489":[220,64,239,1,214,128,255]},{"1855497":[208,160,160]},{"1855502":[128,128,12,243,6,185]},{"1855509":[255,251,132]},{"1855513":[255]},{"1855515":[95]},{"1855517":[255]},{"1855519":[127,255]},{"1855522":[255]},{"1855524":[255]},{"1855526":[127,128,255]},{"1855530":[255]},{"1855532":[255]},{"1855534":[255]},{"1855536":[208]},{"1855538":[169]},{"1855540":[215]},{"1855542":[4,128,208]},{"1855552":[127,169,255,222,95,235,255,246,127,250,255,254,95,251,248,215,168,86,212,33,226,20,80,9,248,5,212,1,250,4]},{"1855583":[47]},{"1855600":[1]},{"1855602":[10]},{"1855604":[9]},{"1855606":[166]},{"1855608":[2]},{"1855610":[42]},{"1855612":[1]},{"1855614":[212]},{"1855616":[240,255,224,235,240,179,240,31,250,159,253,107,224,255,165,245]},{"1855633":[15]},{"1855635":[31]},{"1855637":[79]},{"1855639":[231,128,100]},{"1855643":[150]},{"1855645":[31,10,245]},{"1855663":[165,255]},{"1855666":[233]},{"1855668":[179]},{"1855670":[31]},{"1855672":[31]},{"1855674":[107]},{"1855676":[255]},{"1855678":[165]},{"1855680":[1,255,2,255]},{"1855685":[255]},{"1855687":[255]},{"1855689":[255]},{"1855691":[223]},{"1855693":[255]},{"1855695":[175]},{"1855697":[255]},{"1855699":[255]},{"1855701":[255]},{"1855703":[95]},{"1855705":[255]},{"1855707":[255]},{"1855709":[255,80]},{"1855726":[175,175,169]},{"1855730":[198]},{"1855732":[250]},{"1855734":[245]},{"1855736":[238]},{"1855738":[213]},{"1855740":[170]},{"1855742":[175]},{"1855744":[1,255,42,255,4,254,129,252,7,252,10,253,85,251,142,113]},{"1855761":[255]},{"1855763":[255,1,254,3,253,3,254,2,248,4,245,142,134]},{"1855782":[1]},{"1855784":[2,7,5,15,14,31,247,127,129]},{"1855794":[42]},{"1855796":[132]},{"1855798":[129,1,175]},{"1855802":[15]},{"1855804":[95]},{"1855806":[255,128,56,207,106,47,96,63,168,63,128,255,32,255]},{"1855821":[255,191,96,48,143,208,47,192,191,192,63]},{"1855833":[255]},{"1855835":[255]},{"1855837":[255,191,191,64,120,32,96,128,224]},{"1855847":[128]},{"1855849":[128]},{"1855854":[255,95,120]},{"1855858":[106]},{"1855860":[226]},{"1855862":[168]},{"1855864":[138]},{"1855866":[100]},{"1855870":[223,128]},{"1855873":[255,162,255]},{"1855877":[255]},{"1855879":[255]},{"1855881":[255]},{"1855883":[255]},{"1855885":[255,255]},{"1855889":[255]},{"1855891":[255]},{"1855893":[255]},{"1855895":[255]},{"1855897":[255]},{"1855899":[255]},{"1855901":[255,255,223]},{"1855918":[223,239,8]},{"1855922":[162]},{"1855924":[34]},{"1855928":[170]},{"1855930":[85]},{"1855934":[255,16,1,255,42,255]},{"1855941":[255]},{"1855943":[255]},{"1855945":[255]},{"1855947":[255]},{"1855949":[255,255]},{"1855953":[255]},{"1855955":[255]},{"1855957":[255]},{"1855959":[255]},{"1855961":[255]},{"1855963":[255]},{"1855965":[255,255,85]},{"1855982":[85,255,1]},{"1855986":[42]},{"1855988":[170]},{"1855990":[1]},{"1855992":[174]},{"1855994":[85]},{"1855998":[255]},{"1856000":[1,255,34,255]},{"1856005":[255,10,255,2,253,65,190]},{"1856013":[255,255]},{"1856017":[255]},{"1856019":[255]},{"1856021":[255]},{"1856023":[255]},{"1856025":[255]},{"1856027":[255]},{"1856029":[255,255,80]},{"1856046":[80,255,1]},{"1856050":[34]},{"1856054":[10]},{"1856056":[136]},{"1856062":[255]},{"1856064":[85,252,138,220,2,248,135,240,7,241,14,241,13,243,255]},{"1856080":[2,252,34,220,4,252,4,240,9,241,10,241,8,225,247]},{"1856096":[1]},{"1856099":[2,2,4,11,12,7]},{"1856106":[4,10,22,26,8,247,85]},{"1856114":[138,1,6,1,135]},{"1856120":[134]},{"1856122":[14]},{"1856124":[31]},{"1856126":[255]},{"1856128":[98,170,149,85,144,58]},{"1856135":[117]},{"1856137":[255,42,221]},{"1856141":[186,255]},{"1856144":[149,42,40,21,197,58,128,117]},{"1856153":[255]},{"1856155":[255,69,186,255]},{"1856160":[64,128,194,66]},{"1856165":[128,10,10]},{"1856171":[34]},{"1856175":[255,226]},{"1856178":[213]},{"1856180":[144]},{"1856186":[8]},{"1856190":[255]},{"1856192":[160,161,64,64]},{"1856197":[170,64,80]},{"1856201":[238,128,213,8,170,247,8,94,160,157,64,85,170,37,80,17,238]},{"1856219":[213,85,170,247,8,1]},{"1856226":[34,34]},{"1856230":[138,138]},{"1856234":[42,42]},{"1856238":[8,255,161]},{"1856242":[64]},{"1856246":[64]},{"1856250":[128]},{"1856252":[8]},{"1856254":[247]},{"1856257":[21]},{"1856259":[12,160,160]},{"1856265":[170]},{"1856267":[84]},{"1856270":[85,42,234]},{"1856274":[209,128,95,160,85]},{"1856280":[69,170,1,84,255]},{"1856286":[85,170,21]},{"1856290":[46,162]},{"1856294":[170,170,16,16,170,170]},{"1856302":[42,127,21]},{"1856306":[140]},{"1856308":[160]},{"1856318":[85,128]},{"1856321":[127]},{"1856323":[63]},{"1856325":[21]},{"1856327":[1]},{"1856329":[128]},{"1856334":[85,171,128]},{"1856338":[64]},{"1856340":[234]},{"1856342":[84]},{"1856344":[127,128,85]},{"1856348":[191]},{"1856350":[85,171,127]},{"1856354":[191,128,21]},{"1856358":[171,170]},{"1856362":[170,170,64,64,171,254,127]},{"1856370":[63]},{"1856372":[21]},{"1856374":[1]},{"1856382":[84]},{"1856384":[6,250,13,250,10,93,5,65,15,25,4,11,30,83,85,171,4,6,9,9,168,9,17,9,235,11,84,14,190,22,85,171,251]},{"1856418":[254]},{"1856420":[95,1,231,160,29]},{"1856426":[171,170,83,8,171,254,253,2,245]},{"1856436":[82]},{"1856438":[70,8,22]},{"1856442":[5]},{"1856444":[77]},{"1856446":[84]},{"1856448":[223,255,127,255,29,255]},{"1856455":[85]},{"1856457":[70]},{"1856460":[1,81,85,63,222,222,85,85,29,29]},{"1856472":[168]},{"1856474":[85]},{"1856476":[171,1,85,191,255]},{"1856482":[255]},{"1856484":[255]},{"1856486":[255,170,87,17,170,170,85,4,63,106,33]},{"1856498":[170]},{"1856500":[226]},{"1856502":[85]},{"1856504":[70]},{"1856508":[80]},{"1856510":[64,128,235,235,254,254,239,239,125,125,4,46,20,17,48,24]},{"1856527":[254,234,234,84,84,170,170,85,85,132,4,84,16,178,16]},{"1856543":[254,235,20,254,1,255,16,255,130,127,81,187,170,93,69,254,255,1]},{"1856562":[170]},{"1856564":[69]},{"1856566":[40]},{"1856568":[42]},{"1856570":[1]},{"1856572":[8]},{"1856576":[170,170,234,234,238,238,255,255,234,106,21,85,186,186]},{"1856591":[255,170,170,64,64,186,170,85,85,234,106,21,21,186,186]},{"1856607":[255,170,85,234,21,238,17,255]},{"1856616":[127,21,255,170,255,69,255,255]},{"1856626":[170]},{"1856628":[68]},{"1856630":[170]},{"1856634":[64]},{"1856640":[128,128,170,170,230,230,154,154,170,170,85,85,170,170]},{"1856655":[255,128,128]},{"1856660":[162,162,85,16,191,170,85,85,239,170]},{"1856671":[255,128,127,170,85,230,25,186,101,234,85,255,170,186,85,255,255]},{"1856690":[170]},{"1856692":[68]},{"1856694":[138]},{"1856704":[12,3,140,130,1,19,164,34,164,162,80,80,160,170]},{"1856719":[241]},{"1856721":[3]},{"1856723":[34,4,22,137,10,224,162,209,80,224,170]},{"1856735":[241,19,239,146,79,27,242,166,87,174,87,126,161,174,91,255,241,16]},{"1856754":[144,32,9,4,160,8,8]},{"1856762":[14]},{"1856764":[4]},{"1856766":[14]},{"1856768":[68,17,8,163,85]},{"1856774":[170]},{"1856776":[184,168,34,32,162,162]},{"1856783":[85,68,17,8,163,85]},{"1856790":[170]},{"1856792":[186,168,215]},{"1856796":[170,162,69,16,85,187,171,247,85,170,170,85,184,71,34,221,162,93,186,85,68]},{"1856818":[8]},{"1856820":[85]},{"1856822":[170]},{"1856824":[16]},{"1856826":[34]},{"1856830":[170]},{"1856833":[119,160,11,4,65,168,2,5]},{"1856842":[42]},{"1856847":[21,52,119,168,11,4,65,170,2,133]},{"1856858":[106]},{"1856862":[21]},{"1856864":[67,203,163,87,69,251,168,85,5,250,42,213]},{"1856877":[255,234,21,52]},{"1856882":[168]},{"1856884":[4]},{"1856886":[170]},{"1856888":[5]},{"1856890":[42]},{"1856894":[234]},{"1856897":[255]},{"1856899":[191,2,85,136,34,83]},{"1856906":[171]},{"1856908":[174]},{"1856910":[159]},{"1856912":[159,255,172,191,86,85,170,34,83]},{"1856922":[171]},{"1856924":[174]},{"1856928":[96,96,19,83,3,169,136,85,83,172,171,84,174,81,255,159,159]},{"1856946":[172]},{"1856948":[84]},{"1856950":[170]},{"1856952":[81]},{"1856954":[170]},{"1856956":[4]},{"1856958":[96]},{"1856961":[255]},{"1856963":[255,10,85,23,232,123]},{"1856970":[251]},{"1856972":[174,81,144,19,255,255,253,255,95,85,255,232,251]},{"1856986":[255]},{"1856988":[255,81,60,63]},{"1856994":[2,2,10,160,23]},{"1857000":[123,132,251,4,174]},{"1857006":[64,191,255]},{"1857010":[253]},{"1857012":[85]},{"1857014":[234]},{"1857016":[80]},{"1857018":[170]},{"1857020":[81]},{"1857025":[191,40,239,186,109,201,50,229,2,225,18,162,81,137,194,207,215,223,143,247,113,239,6,247,28,253,4,254,14,58,4]},{"1857057":[120,16,120,130,60,193,52,225,30,225,18,160,91,2,194,135]},{"1857074":[135]},{"1857076":[65]},{"1857078":[138]},{"1857082":[168]},{"1857084":[2]},{"1857086":[61]},{"1857088":[138,117,85,170,191,64,237,2,250,170,224,64,63,67,168,24,255,117,255,170,255,64,252]},{"1857112":[85,170,191,64,124,3,166,230,138]},{"1857122":[85]},{"1857124":[191]},{"1857126":[239,16,250,5,224,31,191,64,129,254,117]},{"1857138":[170]},{"1857140":[64]},{"1857142":[168,3,80]},{"1857146":[160]},{"1857152":[191,72,119,136,250,48,217,17,170,8,5,5,170,160,149,106,181,8,114]},{"1857172":[69,48,174,17,87,8,255,5,87,160,127,34,255]},{"1857186":[255]},{"1857188":[250,5,217,38,170,87]},{"1857195":[250,170,87,149,200]},{"1857201":[66,34,141]},{"1857205":[138,136,64]},{"1857209":[160,5]},{"1857213":[8,34]},{"1857216":[250,144,85,5,171,1,23,23,191,55,95,95,191,191,119,141,5,144,175,5,95,1,255,23,255,55,255,95,255,191,242,133,250,5,80,170,170,94]},{"1857255":[232,136,200]},{"1857259":[160]},{"1857261":[64,127]},{"1857265":[106,5,80,1,160,23]},{"1857272":[55]},{"1857274":[95]},{"1857276":[191]},{"1857278":[128,8,255,87,95,95,255,253,255,254,255,85,255,235,255,212,117,128,255,87,255,95,255,253,255,254,255,85,255,235,255,212,15]},{"1857312":[168,168]},{"1857315":[160]},{"1857317":[2]},{"1857319":[17]},{"1857321":[171]},{"1857323":[21]},{"1857325":[43,245,15,87]},{"1857330":[95]},{"1857332":[253]},{"1857334":[238,16,84,1,234,1,212]},{"1857343":[240,255,48,255,155,253,106,254,171,252,87,254,11,255,5,255,255,63,48,159,155,207,104,239,170,255,84,255,10,255,5,255,255,192,31,96,15,50,141,17,70,11,232,5,244,2,251]},{"1857392":[32,208,144,107,64,24,168,18,20,64,10]},{"1857404":[4,1,255]},{"1857408":[64,191,130,125,4,251,136,247,1,255,4,255,5,255,250,191,255]},{"1857426":[253,2,249,6,246,137,240,14,250,1,240,10,255,186,191,64,127,128,255]},{"1857446":[127,128,255]},{"1857450":[255]},{"1857452":[255]},{"1857454":[5,90]},{"1857458":[2]},{"1857460":[6]},{"1857462":[9,128,14]},{"1857466":[1]},{"1857468":[10]},{"1857470":[160,26,21,253,34,250,20,252,64,248]},{"1857481":[208,104,232,16,212,97,159]},{"1857489":[234,128,93]},{"1857493":[235]},{"1857495":[191]},{"1857497":[255]},{"1857499":[151]},{"1857501":[239,138,116,255]},{"1857506":[255]},{"1857508":[255]},{"1857510":[255]},{"1857512":[255]},{"1857514":[255]},{"1857516":[255]},{"1857518":[255]},{"1857520":[232]},{"1857522":[88]},{"1857524":[232]},{"1857526":[184]},{"1857528":[208]},{"1857530":[128]},{"1857532":[196]},{"1857534":[116]},{"1857536":[2,2]},{"1857540":[2,2,1,1,10,10,5,5,2,2,26,250,2,253]},{"1857555":[255,2,253,1,254,10,245,5,250,2,253,128,101,255]},{"1857570":[255]},{"1857572":[255]},{"1857574":[255]},{"1857576":[255]},{"1857578":[255]},{"1857580":[255]},{"1857582":[255]},{"1857598":[96]},{"1857600":[127,232,47,255,149,255,175,255,21,255,2,255,149,127,82,175,232,23,253]},{"1857620":[127]},{"1857622":[255]},{"1857624":[255]},{"1857626":[255]},{"1857628":[107]},{"1857630":[175]},{"1857650":[2]},{"1857665":[255,255,122,255,170,255,252,119,234,255,247,85,254,175,255]},{"1857681":[255,80,133,170,85,80,3,234,21,213,8,254,1,255]},{"1857712":[250]},{"1857714":[42]},{"1857718":[172]},{"1857722":[34]},{"1857728":[1,255,236,79,238,13,248,1,248,179,248,70,242,187,229,230]},{"1857745":[255]},{"1857747":[179]},{"1857749":[243]},{"1857751":[255,160,78,65,188,164,75,72,23]},{"1857761":[1]},{"1857768":[1,1,2,2]},{"1857773":[2]},{"1857775":[4,1]},{"1857778":[79]},{"1857780":[13]},{"1857784":[17]},{"1857786":[2]},{"1857788":[26]},{"1857790":[164]},{"1857792":[84,238,96,223,160,246,28,185,189,219,127,200,255]},{"1857806":[255,40,17,214,32,239]},{"1857813":[191,64,39]},{"1857817":[230]},{"1857819":[183]},{"1857821":[255]},{"1857823":[215,56,124,48,112,64,224,128,128]},{"1857833":[128]},{"1857840":[124]},{"1857842":[117]},{"1857844":[230]},{"1857846":[153]},{"1857848":[155]},{"1857850":[72]},{"1857854":[40]},{"1857856":[96,234]},{"1857859":[184,2,77,124,128,223,32,254]},{"1857868":[255]},{"1857870":[217,1,21,234]},{"1857875":[255]},{"1857877":[255]},{"1857879":[255]},{"1857881":[255]},{"1857883":[255]},{"1857885":[255,1,254]},{"1857889":[96]},{"1857904":[96]},{"1857906":[152]},{"1857908":[77]},{"1857910":[128]},{"1857912":[32]},{"1857920":[34,170]},{"1857923":[1]},{"1857925":[162,139,64,239,8,229]},{"1857932":[255,2,191,17,85,170]},{"1857939":[255]},{"1857941":[255]},{"1857943":[255,8,247]},{"1857947":[255,2,253,17,238]},{"1857953":[34]},{"1857968":[34]},{"1857970":[1]},{"1857972":[162]},{"1857974":[64]},{"1857985":[170,249]},{"1857988":[248]},{"1857990":[156]},{"1857992":[255,10,23,4,255,10,245,21,85,170]},{"1858003":[255]},{"1858005":[255]},{"1858007":[255,10,245,4,251,10,245,21,234]},{"1858048":[8,136,240,2,2]},{"1858054":[9]},{"1858056":[40,1,27,1,168,169,85,84,119,136]},{"1858067":[255]},{"1858069":[255]},{"1858071":[255]},{"1858073":[255]},{"1858075":[255,168,86,87,169]},{"1858081":[8]},{"1858092":[1,1,1,1,8]},{"1858106":[1]},{"1858108":[1]},{"1858110":[1]},{"1858112":[184,132,57,70,52,72,98,24,105,144,207]},{"1858124":[223,72,151,5,107,160,56,207,48,143,224,79,96,63,224,95,200,247,197,58,52,172,8,56,64,112,80,112,160,224,64,192,192,128]},{"1858159":[128,188]},{"1858162":[56]},{"1858164":[112]},{"1858166":[112]},{"1858168":[224]},{"1858170":[192]},{"1858172":[128]},{"1858174":[128]},{"1858178":[80,175,162,69,69,186,85]},{"1858186":[240,2,89]},{"1858190":[165]},{"1858192":[255]},{"1858195":[255]},{"1858197":[255]},{"1858199":[255]},{"1858201":[255]},{"1858203":[255]},{"1858205":[255]},{"1858207":[255]},{"1858230":[16]},{"1858242":[106,157,2,93,139,36,52,1,169,2,68]},{"1858254":[226,8,255]},{"1858259":[255]},{"1858261":[255]},{"1858263":[255]},{"1858265":[255]},{"1858267":[255]},{"1858269":[255,8,255]},{"1858275":[34]},{"1858279":[138]},{"1858283":[32]},{"1858290":[8]},{"1858305":[17,42,213,4,251,170,85,2,85,122,128,16,69,64,138,238]},{"1858323":[255]},{"1858325":[255]},{"1858327":[255]},{"1858329":[255,128,255,4,255,170,223,17]},{"1858339":[42]},{"1858341":[4]},{"1858343":[170]},{"1858347":[42]},{"1858350":[32]},{"1858352":[17]},{"1858369":[21,160,85,69,186,170,85,17,68,174,80,78,17,246,8,234]},{"1858387":[245]},{"1858389":[255]},{"1858391":[255]},{"1858393":[255]},{"1858395":[255,1,255,8,255,21]},{"1858402":[10,170]},{"1858405":[69]},{"1858407":[170]},{"1858409":[17]},{"1858411":[170]},{"1858413":[68]},{"1858415":[162,21]},{"1858432":[27,87,149,92,93,190,150,93,29,90,154,89,88,25,177,118,187,23,20,221,28,255,52,223,124,219,28,219,61,219,118,247,87,12,62,171,28,65,28,138,24,1,56,162,24,64,56,136,72]},{"1858496":[21,119,152]},{"1858500":[149,42,117]},{"1858504":[117,138,171,84,85,42,170,69,157,21,69,152,64,191,130,117]},{"1858521":[255,16,255]},{"1858525":[255,69,255,119]},{"1858530":[34,186]},{"1858533":[149,8,125]},{"1858537":[117]},{"1858539":[171]},{"1858541":[85]},{"1858543":[170,98]},{"1858560":[127,255,205]},{"1858564":[247]},{"1858566":[244]},{"1858568":[118,136,255]},{"1858572":[5,250,170,85,127,127,16,205,8,247,3,244,1,254]},{"1858587":[255,208,255,85,255,255]},{"1858594":[34,239]},{"1858597":[247,8,252]},{"1858601":[118]},{"1858603":[255]},{"1858605":[5]},{"1858607":[170,128]},{"1858624":[238,110,65]},{"1858628":[167]},{"1858630":[245]},{"1858632":[255]},{"1858634":[255]},{"1858636":[87,168,162,93,239,110,20,65,89,166]},{"1858647":[245]},{"1858649":[255]},{"1858651":[255,168,255,93,255,126,17,170,235]},{"1858661":[166,10,255]},{"1858665":[255]},{"1858667":[255]},{"1858669":[87]},{"1858671":[162]},{"1858688":[234,234,85]},{"1858692":[179]},{"1858694":[85]},{"1858696":[255]},{"1858698":[255]},{"1858700":[255]},{"1858702":[170,85,255,234,21,64,25,162]},{"1858711":[85,1,254]},{"1858715":[255]},{"1858717":[255,85,255,234,21,170,234,68,230,170,255]},{"1858729":[254]},{"1858731":[255]},{"1858733":[255]},{"1858735":[170]},{"1858752":[160,163,80,4,218,6,80,2,248]},{"1858762":[252,6,248]},{"1858766":[252]},{"1858768":[226,161,88,4,122,132,88,2,16,232,44,214,4,248,4,248,165,91,166,173,4,135,162,175]},{"1858793":[239,6,211]},{"1858797":[255]},{"1858799":[251,4]},{"1858802":[2]},{"1858816":[128,128,85,1,255,5,85]},{"1858824":[127]},{"1858826":[95]},{"1858828":[255]},{"1858830":[127]},{"1858832":[128,128,95,1,255,5,85]},{"1858840":[247,8,95]},{"1858844":[213,42,139,116,128,127,161,170,5]},{"1858854":[170,170]},{"1858857":[8,160,160]},{"1858861":[42]},{"1858863":[245]},{"1858882":[84,16,186,16,85,4,255]},{"1858890":[255]},{"1858892":[255]},{"1858894":[255]},{"1858898":[255,16,255,16,95,4,255]},{"1858906":[255]},{"1858908":[85,170,255]},{"1858913":[255,16,171,16,69,164,170]},{"1858925":[170]},{"1858927":[1]},{"1858944":[110,3,64,64,170,8,81]},{"1858952":[255]},{"1858954":[255]},{"1858956":[255]},{"1858958":[255]},{"1858960":[111]},{"1858962":[255,64,255,8,255]},{"1858968":[255]},{"1858970":[255]},{"1858972":[223,32,254,1,108,147,64,191,8,85]},{"1858983":[174]},{"1858989":[32]},{"1858991":[5]},{"1859008":[157,225]},{"1859012":[170]},{"1859014":[81]},{"1859016":[255]},{"1859018":[255,34,255]},{"1859022":[255]},{"1859024":[225,1,255]},{"1859028":[255]},{"1859030":[255]},{"1859032":[255]},{"1859034":[255,34,255]},{"1859038":[255]},{"1859040":[30,253]},{"1859043":[255]},{"1859045":[85]},{"1859047":[174]},{"1859053":[10]},{"1859055":[81]},{"1859066":[34]},{"1859072":[16,56,2,4,169]},{"1859078":[84]},{"1859080":[255,20,255,2,255]},{"1859086":[255]},{"1859088":[99,103,255,7,253,1,255,1,255,20,255,2,255]},{"1859102":[255]},{"1859104":[160,92]},{"1859107":[250,2,85]},{"1859111":[171,1]},{"1859117":[42]},{"1859119":[23,3]},{"1859122":[4]},{"1859128":[20]},{"1859130":[2]},{"1859136":[160,113,129,129,127,149,31,14,63,32,31,162,47,64,255,152,131,146,127,1,127,21,191,14,223,224,191,2,255]},{"1859166":[239,152,14,241]},{"1859171":[254,64,128,192,160,32,203,64,173,32,223,112,7]},{"1859186":[1]},{"1859188":[21]},{"1859190":[14]},{"1859194":[2]},{"1859198":[136]},{"1859200":[234,104,255,191,255,85,255,170,255]},{"1859210":[255,32,253,2,248,5,151,104,255,191,255,85,255,170,255]},{"1859226":[255,32,255]},{"1859230":[255]},{"1859232":[234,23]},{"1859237":[34]},{"1859239":[17]},{"1859241":[255]},{"1859243":[223,2,253,7,248]},{"1859250":[191]},{"1859252":[85]},{"1859254":[170]},{"1859258":[32]},{"1859264":[171,1,255,170,255,64,255,128,245,10,250,5,84,171,136,87,255,1,255,170,255,64,255,128,255]},{"1859290":[255]},{"1859292":[255]},{"1859294":[255]},{"1859296":[170,254]},{"1859299":[85]},{"1859301":[191]},{"1859303":[127,10,245,5,250,171,84,119,136,1]},{"1859314":[170]},{"1859316":[64]},{"1859318":[128]},{"1859328":[255,84,234,21,212,107,232,23]},{"1859337":[255]},{"1859339":[127,42,191,5,127,255,84,255]},{"1859348":[255,64,255]},{"1859352":[255]},{"1859354":[255]},{"1859356":[213]},{"1859358":[248,2,128,171,21,234,43,212,23,232,255]},{"1859370":[255]},{"1859372":[255]},{"1859374":[255]},{"1859376":[84]},{"1859381":[64]},{"1859390":[2]},{"1859392":[253,23]},{"1859395":[255]},{"1859397":[255,5,255,237,255,28,255,185,253,70,254,255,21,255]},{"1859412":[245,10,234,16,16,2,160,67,64,6,128,57,2,252,255]},{"1859428":[255]},{"1859430":[255]},{"1859432":[255]},{"1859434":[255]},{"1859436":[255]},{"1859438":[255]},{"1859440":[1,20]},{"1859444":[10]},{"1859446":[16]},{"1859448":[2]},{"1859450":[67]},{"1859452":[4]},{"1859454":[56]},{"1859456":[198,63,192,250,68,180,32,216,68,124,244,252,80,94,173,175,240,9,224,223,224,27,240,15,24,163,8,3,4,171,2,80,63,192,63,192,191,64,223,32,255]},{"1859498":[255]},{"1859500":[255]},{"1859502":[255]},{"1859504":[9]},{"1859506":[26,192,16]},{"1859510":[8]},{"1859512":[32]},{"1859516":[10]},{"1859520":[80,240]},{"1859524":[2,2,129,129,10,10,5,5,43,43,23,23]},{"1859537":[175]},{"1859539":[255,2,253,1,126,10,245,5,250,43,212,23,232,255]},{"1859554":[255]},{"1859556":[255]},{"1859558":[255]},{"1859560":[255]},{"1859562":[255]},{"1859564":[255]},{"1859566":[255]},{"1859568":[160]},{"1859584":[10,10,85,85,191,191,87,87,191,191,95,95,255,255,126,127,10,245,85,170,191,64,87,168,191,64,95,160,255]},{"1859614":[126,129,255]},{"1859618":[255]},{"1859620":[255]},{"1859622":[255]},{"1859624":[255]},{"1859626":[255]},{"1859628":[255]},{"1859630":[255]},{"1859648":[1]},{"1859650":[2]},{"1859652":[3]},{"1859654":[4]},{"1859656":[5]},{"1859658":[6]},{"1859660":[7]},{"1859662":[8]},{"1859664":[9]},{"1859666":[10]},{"1859668":[11]},{"1859670":[12]},{"1859672":[13]},{"1859674":[14]},{"1859676":[15]},{"1859678":[16]},{"1859680":[17]},{"1859682":[18]},{"1859684":[19]},{"1859686":[20]},{"1859688":[21]},{"1859690":[22]},{"1859692":[23]},{"1859694":[24]},{"1859696":[25]},{"1859698":[26]},{"1859700":[27]},{"1859702":[28]},{"1859704":[29]},{"1859706":[30]},{"1859708":[31]},{"1859710":[32]},{"1859712":[33]},{"1859714":[34]},{"1859716":[35]},{"1859718":[36]},{"1859720":[37]},{"1859722":[38]},{"1859724":[39]},{"1859726":[40]},{"1859728":[41]},{"1859730":[42]},{"1859732":[43]},{"1859734":[44]},{"1859736":[45]},{"1859738":[46]},{"1859740":[47]},{"1859742":[48]},{"1859744":[49]},{"1859746":[50]},{"1859748":[51]},{"1859750":[52]},{"1859752":[53]},{"1859754":[54]},{"1859756":[55]},{"1859758":[56]},{"1859760":[57]},{"1859762":[58]},{"1859764":[59]},{"1859766":[60]},{"1859768":[61]},{"1859770":[62]},{"1859772":[63]},{"1859774":[64]},{"1859776":[65]},{"1859778":[66]},{"1859780":[67]},{"1859782":[68]},{"1859784":[69]},{"1859786":[70]},{"1859788":[71]},{"1859790":[72]},{"1859792":[73]},{"1859794":[74]},{"1859796":[75]},{"1859798":[76]},{"1859800":[77]},{"1859802":[78]},{"1859804":[79]},{"1859806":[80]},{"1859808":[81]},{"1859810":[82]},{"1859812":[83]},{"1859814":[84]},{"1859816":[85]},{"1859818":[86]},{"1859820":[87]},{"1859822":[88]},{"1859824":[89]},{"1859826":[90]},{"1859828":[91]},{"1859830":[92]},{"1859832":[93]},{"1859834":[94]},{"1859836":[95]},{"1859838":[96]},{"1859840":[97]},{"1859842":[98]},{"1859844":[99]},{"1859846":[100]},{"1859848":[101]},{"1859850":[102]},{"1859852":[103]},{"1859854":[104]},{"1859856":[105]},{"1859858":[106]},{"1859860":[107]},{"1859862":[108]},{"1859864":[109]},{"1859866":[110]},{"1859868":[111]},{"1859870":[112]},{"1859872":[113]},{"1859874":[114]},{"1859876":[115]},{"1859878":[116]},{"1859880":[117]},{"1859882":[118]},{"1859884":[119]},{"1859886":[120]},{"1859888":[121]},{"1859890":[122]},{"1859892":[123]},{"1859894":[124]},{"1859896":[125]},{"1859898":[126]},{"1859900":[127]},{"1859902":[128]},{"1859904":[129]},{"1859906":[130]},{"1859908":[131]},{"1859910":[132]},{"1859912":[133]},{"1859914":[134]},{"1859916":[135]},{"1859918":[136]},{"1859920":[137]},{"1859922":[138]},{"1859924":[139]},{"1859926":[140]},{"1859928":[141]},{"1859930":[142]},{"1859932":[143]},{"1859934":[144]},{"1859936":[145]},{"1859938":[146]},{"1859940":[147]},{"1859942":[148]},{"1859944":[149]},{"1859946":[150]},{"1859948":[151]},{"1859950":[152]},{"1859952":[153]},{"1859954":[154]},{"1859956":[155]},{"1859958":[156]},{"1859960":[157]},{"1859962":[158]},{"1859964":[159]},{"1859966":[160]},{"1859968":[161]},{"1859970":[162]},{"1859972":[163]},{"1859974":[164]},{"1859976":[165]},{"1859978":[166]},{"1859980":[167]},{"1859982":[168]},{"1859984":[169]},{"1859986":[170]},{"1859988":[171]},{"1859990":[172]},{"1859992":[173]},{"1859994":[174]},{"1859996":[175]},{"1859998":[176]},{"1860000":[177]},{"1860002":[178]},{"1860004":[179]},{"1860006":[180]},{"1860008":[181]},{"1860010":[182]},{"1860012":[183]},{"1860014":[184]},{"1860016":[185]},{"1860018":[186]},{"1860020":[187]},{"1860022":[188]},{"1860024":[189]},{"1860026":[190]},{"1860028":[191]},{"1860030":[192]},{"1860032":[193]},{"1860034":[194]},{"1860036":[195]},{"1860038":[196]},{"1860040":[197]},{"1860042":[198]},{"1860044":[199]},{"1860046":[200]},{"1860048":[201]},{"1860050":[202]},{"1860052":[203]},{"1860054":[204]},{"1860056":[205]},{"1860058":[206]},{"1860060":[207]},{"1860062":[208]},{"1860064":[209]},{"1860066":[210]},{"1860068":[211]},{"1860070":[212]},{"1860072":[213]},{"1860074":[214]},{"1860076":[215]},{"1860078":[216]},{"1860080":[217]},{"1860082":[218]},{"1860084":[219]},{"1860086":[220]},{"1860088":[221]},{"1860090":[222]},{"1860092":[223]},{"1860094":[224]},{"1860096":[225]},{"1860098":[226]},{"1860100":[227]},{"1860102":[228]},{"1860104":[229]},{"1860106":[230]},{"1860108":[231]},{"1860110":[232]},{"1860112":[233]},{"1860114":[234]},{"1860116":[235]},{"1860118":[236]},{"1860120":[237]},{"1860122":[238]},{"1860124":[239]},{"1860126":[240]},{"1860128":[241]},{"1860130":[242]},{"1860132":[243]},{"1860134":[244]},{"1860136":[245]},{"1860138":[246]},{"1860140":[247]},{"1860142":[248]},{"1860144":[249]},{"1860146":[250]},{"1860148":[251]},{"1860150":[252]},{"1860152":[253]},{"1860154":[254]},{"1860156":[255]},{"1860159":[1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,1,10,1,11,1,12,1,13,1,14,1,15,1,16,1,17,1,18,1,19,1,20,1,21,1,22,1,23,1,24,1,25,1,26,1,27,1,28,1,29,1,30,1,31,1,32,1,33,1,34,1,35,1,36,1,37,1,38,1,39,1,40,1,41,1,42,1,43,1,44,1,45,1,46,1,47,1,48,1,49,1,50,1,51,1,52,1,53,1,54,1,55,1,56,1,57,1,58,1,59,1,60,1,61,1,62,1,63,1,64,1,65,1,66,1,67,1,68,1,69,1,70,1,71,1,72,1,73,1,74,1,75,1,76,1,77,1,78,1,79,1,80,1,81,1,82,1,83,1,84,1,85,1,86,1,87,1,88,1,89,1,90,1,91,1,92,1,93,1,94,1,95,1,96,1,97,1,98,1,99,1,100,1,101,1,102,1,103,1,104,1,105,1,106,1,107,1,108,1,109,1,110,1,111,1,112,1,113,1,114,1,115,1,116,1,117,1,118,1,119,1,120,1,121,1,122,1,123,1,124,1,125,1,126,1,127,1,128,1,129,1,130,1,131,1,132,1,133,1,134,1,135,1,136,1,137,1,138,1,139,1,140,1,141,1,142,1,143,1,144,1,145,1,146,1,147,1,148,1,149,1,150,1,151,1,152,1,153,1,154,1,155,1,156,1,157,1,158,1,159,1,160,1,161,1,162,1,163,1,164,1,165,1,166,1,167,1,168,1,169,1,170,1,171,1,172,1,173,1,174,1,175,1,176,1,177,1,178,1,179,1,180,1,181,1,182,1,183,1,184,1,185,1,186,1,187,1,188,1,189,1,190,1,191,1,192,1,193,1,194,1,195,1,196,1,197,1,198,1,199,1,200,1,201,1,202,1,203,1,204,1,205,1,206,1,207,1,208,1,209,1,210,1,211,1,212,1,213,1,214,1,215,1,216,1,217,1,218,1,219,1,220,1,221,1,222,1,223,1,224,1,225,1,226,1,227,1,228,1,229,1,230,1,231,1,232,1,233,1,234,1,235,1,236,1,237,1,238,1,239,1,240,1,241,1,242,1,243,1,244,1,245,1,246,1,247,1,248,1,249,1,250,1,251,1,252,1,253,1,254,1,255,1]},{"1860671":[2,1,2,2,2,3,2,4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,2,19,2,20,2,21,2,22,2,23,2,24,2,25,2,26,2,27,2,28,2,29,2,30,2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2,39,2,40,2,41,2,42,2,43,2,44,2,45,2,46,2,47,2,48,2,49,2,50,2,51,2,52,2,53,2,54,2,55,2,56,2,57,2,58,2,59,2,60,2,61,2,62,2,63,2,64,2,65,2,66,2,67,2,68,2,69,2,70,2,71,2,72,2,73,2,74,2,75,2,76,2,77,2,78,2,79,2,80,2,81,2,82,2,83,2,84,2,85,2,86,2,87,2,88,2,89,2,90,2,91,2,92,2,93,2,94,2,95,2,96,2,97,2,98,2,99,2,100,2,101,2,102,2,103,2,104,2,105,2,106,2,107,2,108,2,109,2,110,2,111,2,112,2,113,2,114,2,115,2,116,2,117,2,118,2,119,2,120,2,121,2,122,2,123,2,124,2,125,2,126,2,127,2,128,2,129,2,130,2,131,2,132,2,133,2,134,2,135,2,136,2,137,2,138,2,139,2,140,2,141,2,142,2,143,2,144,2,145,2,146,2,147,2,148,2,149,2,150,2,151,2,152,2,153,2,154,2,155,2,156,2,157,2,158,2,159,2,160,2,161,2,162,2,163,2,164,2,165,2,166,2,167,2,168,2,169,2,170,2,171,2,172,2,173,2,174,2,175,2,176,2,177,2,178,2,179,2,180,2,181,2,182,2,183,2,184,2,185,2,186,2,187,2,188,2,189,2,190,2,191,2,192,2,193,2,194,2,195,2,196,2,197,2,198,2,199,2,200,2,201,2,202,2,203,2,204,2,205,2,206,2,207,2,208,2,209,2,210,2,211,2,212,2,213,2,214,2,215,2,216,2,217,2,218,2,219,2,220,2,221,2,222,2,223,2,224,2,225,2,226,2,227,2,228,2,229,2,230,2,231,2,232,2,233,2,234,2,235,2,236,2,237,2,238,2,239,2,240,2,241,2,242,2,243,2,244,2,245,2,246,2,247,2,248,2,249,2,250,2,251,2,252,2,253,2,254,2,255,2]},{"1861183":[3,1,3,2,3,3,3,4,3,5,3,6,3,7,3,8,3,9,3,10,3,11,3,12,3,13,3,14,3,15,3,16,3,17,3,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3,27,3,28,3,29,3,30,3,31,3,32,3,33,3,34,3,35,3,36,3,37,3,38,3,39,3,40,3,41,3,42,3,43,3,44,3,45,3,46,3,47,3,48,3,49,3,50,3,51,3,52,3,53,3,54,3,55,3,56,3,57,3,58,3,59,3,60,3,61,3,62,3,63,3,64,3,65,3,66,3,67,3,68,3,69,3,70,3,71,3,72,3,73,3,74,3,75,3,76,3,77,3,78,3,79,3,80,3,81,3,82,3,83,3,84,3,85,3,86,3,87,3,88,3,89,3,90,3,91,3,92,3,93,3,94,3,95,3,96,3,97,3,98,3,99,3,100,3,101,3,102,3,103,3,104,3,105,3,106,3,107,3,108,3,109,3,110,3,111,3,112,3,113,3,114,3,115,3,116,3,117,3,118,3,119,3,120,3,121,3,122,3,123,3,124,3,125,3,126,3,127,3,128,3,129,3,130,3,131,3,132,3,133,3,134,3,135,3,136,3,137,3,138,3,139,3,140,3,141,3,142,3,143,3,144,3,145,3,146,3,147,3,148,3,149,3,150,3,151,3,152,3,153,3,154,3,155,3,156,3,157,3,158,3,159,3,160,3,161,3,162,3,163,3,164,3,165,3,166,3,167,3,168,3,169,3,170,3,171,3,172,3,173,3,174,3,175,3,176,3,177,3,178,3,179,3,180,3,181,3,182,3,183,3,184,3,185,3,186,3,187,3,188,3,189,3,190,3,191,3,192,3,193,3,194,3,195,3,196,3,197,3,198,3,199,3,200,3,201,3,202,3,203,3,204,3,205,3,206,3,207,3,208,3,209,3,210,3,211,3,212,3,213,3,214,3,215,3,216,3,217,3,218,3,219,3,220,3,221,3,222,3,223,3,224,3,225,3,226,3,227,3,228,3,229,3,230,3,231,3,232,3,233,3,234,3,235,3,236,3,237,3,238,3,239,3,240,3,241,3,242,3,243,3,244,3,245,3,246,3,247,3,248,3,249,3,250,3,251,3,252,3,253,3,254,3,255,3]},{"1861695":[4]},{"1861698":[35,12,33,8,35,16,103,32,132,32,36,12,36,20,69,20,37,24,70,24,166,24,49,90,174,57,100,28,99,20,7,49,50,74,202,52,98,24,99,32,197,40,130,28,65,16,97,24,33,16,65,12,196,36,6,45,99,12,42,41,135,36,166,40,233,56,139,61,106,65,164,40,131,32,230,44,199,32,208,69,100,32,73,65,234,64,41,57,206,69,77,57,7,57,101,44,231,48,50,102,86,102,108,69,195,36,57,107,255,127,222,119,23,95,167,48,186,123,91,111,78,102,71,61,215,94,25,103,181,94,70,20,38,20,139,73,206,97,125,123,57,123,147,94,181,106,38,24,39,32,213,94,169,48,197,48,163,40,200,48,170,48,103,40,102,48,12,65,165,48,178,89,216,94,186,101,129,32,129,28,221,118,61,118,188,105,213,80,46,73,92,110,190,113,62,109,156,104,172,56,137,40,204,52,89,106,126,113,217,92,49,73,40,28,40,40,84,78,118,85,14,65,123,113,40,36,104,36,105,48,110,77,144,61,114,85,80,81,181,89,79,69,108,52,106,48,106,40,105,40,237,56,89,101,172,48,239,64,22,85,52,77,240,68,174,60,188,110,54,89,135,56,236,64,180,76,197,56,231,56,39,73,41,65,174,89,106,73,195,40,195,52,241,72,117,85,206,56,170,60,163,48,176,68,51,85,238,72,202,56,172,64,178,72,232,64,229,64,5,57,52,85,83,89,168,56,88,93,72,73,237,72,76,73,235,72,77,85,43,73,42,65,199,64,41,73,6,65,161,40,108,56,113,89,45,73,74,85,5,49,118,89,116,89,180,101,52,89,170,89,218,113,48,81,107,56,110,60,241,80,242,76,246,96,51,89,48,89,71,69,81,114,117,86,218,122,213,118,85,123,86,114,176,72,238,80,235,80,7,81,178,106,41,48,171,64,173,72,175,72,137,64,174,68,233,72,210,118,165,56,104,56,231,72,150,94,71,77,42,52,106,36,76,44,113,68,178,68,227,64,195,56,5,65,30,123,3,61,111,68,30,119,90,114,217,106,26,107,5,73,191,127,157,123,3,65,89,103,24,95,92,111,190,119,157,119,220,127,125,119,221,119,60,119,94,119,61,123,150,86,126,123,149,86,33,4,26,103,107,64]},{"2064384":[8,226,32,175,205,80,127,240,16,24,105,41,197,188,240,9,133,188,156,16,7,34,48,128,191,40,107,175,205,80,127,208,34,169,16,133,188,194,33,175,91,243,126,34,255,237,27,107,226,48,175,205,80,127,208,11,194,48,175,84,243,126,34,33,238,27,107,218,90,72,139,75,171,194,32,175,91,243,126,41,255]},{"2064466":[170,191,6,236,27,41,255]},{"2064474":[10,105]},{"2064477":[240,133]},{"2064480":[194,16,169,226,1,162,14]},{"2064488":[155,170,165,188,41,255]},{"2064495":[133,2,167]},{"2064499":[159]},{"2064501":[195,126,159]},{"2064505":[197,126,230]},{"2064509":[230]},{"2064511":[232,232,136,16,237,226,48,171,230,21,104,122,250,107]}] \ No newline at end of file diff --git a/data/sprites/official/adol.1.zspr b/data/sprites/official/adol.1.zspr new file mode 100644 index 00000000..da8210a9 Binary files /dev/null and b/data/sprites/official/adol.1.zspr differ diff --git a/data/sprites/official/aggretsuko.1.zspr b/data/sprites/official/aggretsuko.1.zspr new file mode 100644 index 00000000..c23d9d83 Binary files /dev/null and b/data/sprites/official/aggretsuko.1.zspr differ diff --git a/data/sprites/official/angry-video-game-nerd.1.zspr b/data/sprites/official/angry-video-game-nerd.1.zspr new file mode 100644 index 00000000..79aee561 Binary files /dev/null and b/data/sprites/official/angry-video-game-nerd.1.zspr differ diff --git a/data/sprites/official/arcane.1.zspr b/data/sprites/official/arcane.1.zspr new file mode 100644 index 00000000..b0fd4760 Binary files /dev/null and b/data/sprites/official/arcane.1.zspr differ diff --git a/data/sprites/official/ark-dorana.1.zspr b/data/sprites/official/ark-dorana.1.zspr new file mode 100644 index 00000000..afd1c574 Binary files /dev/null and b/data/sprites/official/ark-dorana.1.zspr differ diff --git a/data/sprites/official/ark.1.zspr b/data/sprites/official/ark.1.zspr new file mode 100644 index 00000000..6ee7c09e Binary files /dev/null and b/data/sprites/official/ark.1.zspr differ diff --git a/data/sprites/official/astronaut.1.zspr b/data/sprites/official/astronaut.1.zspr new file mode 100644 index 00000000..a4db3020 Binary files /dev/null and b/data/sprites/official/astronaut.1.zspr differ diff --git a/data/sprites/official/asuna.1.zspr b/data/sprites/official/asuna.1.zspr new file mode 100644 index 00000000..f6f41545 Binary files /dev/null and b/data/sprites/official/asuna.1.zspr differ diff --git a/data/sprites/official/badeline.1.zspr b/data/sprites/official/badeline.1.zspr new file mode 100644 index 00000000..b9fb1346 Binary files /dev/null and b/data/sprites/official/badeline.1.zspr differ diff --git a/data/sprites/official/bananas-in-pyjamas.1.zspr b/data/sprites/official/bananas-in-pyjamas.1.zspr new file mode 100644 index 00000000..f75af2b2 Binary files /dev/null and b/data/sprites/official/bananas-in-pyjamas.1.zspr differ diff --git a/data/sprites/official/blazer.1.zspr b/data/sprites/official/blazer.1.zspr new file mode 100644 index 00000000..9a15c25c Binary files /dev/null and b/data/sprites/official/blazer.1.zspr differ diff --git a/data/sprites/official/bobross.1.zspr b/data/sprites/official/bobross.1.zspr new file mode 100644 index 00000000..eaa9811b Binary files /dev/null and b/data/sprites/official/bobross.1.zspr differ diff --git a/data/sprites/official/boco.1.zspr b/data/sprites/official/boco.1.zspr new file mode 100644 index 00000000..21825520 Binary files /dev/null and b/data/sprites/official/boco.1.zspr differ diff --git a/data/sprites/official/botw-link.1.zspr b/data/sprites/official/botw-link.1.zspr new file mode 100644 index 00000000..1e14eff1 Binary files /dev/null and b/data/sprites/official/botw-link.1.zspr differ diff --git a/data/sprites/official/botw-zelda.1.zspr b/data/sprites/official/botw-zelda.1.zspr new file mode 100644 index 00000000..39f4a893 Binary files /dev/null and b/data/sprites/official/botw-zelda.1.zspr differ diff --git a/data/sprites/official/bowsette-red.1.zspr b/data/sprites/official/bowsette-red.1.zspr new file mode 100644 index 00000000..d4bd4346 Binary files /dev/null and b/data/sprites/official/bowsette-red.1.zspr differ diff --git a/data/sprites/official/bowsette.1.zspr b/data/sprites/official/bowsette.1.zspr new file mode 100644 index 00000000..017414bc Binary files /dev/null and b/data/sprites/official/bowsette.1.zspr differ diff --git a/data/sprites/official/brian.1.zspr b/data/sprites/official/brian.1.zspr new file mode 100644 index 00000000..013a2207 Binary files /dev/null and b/data/sprites/official/brian.1.zspr differ diff --git a/data/sprites/official/carlsagan42.1.zspr b/data/sprites/official/carlsagan42.1.zspr new file mode 100644 index 00000000..2632cb6f Binary files /dev/null and b/data/sprites/official/carlsagan42.1.zspr differ diff --git a/data/sprites/official/charizard.1.zspr b/data/sprites/official/charizard.1.zspr new file mode 100644 index 00000000..babed511 Binary files /dev/null and b/data/sprites/official/charizard.1.zspr differ diff --git a/data/sprites/official/chrizzz.1.zspr b/data/sprites/official/chrizzz.1.zspr new file mode 100644 index 00000000..337d5e5d Binary files /dev/null and b/data/sprites/official/chrizzz.1.zspr differ diff --git a/data/sprites/official/cornelius.1.zspr b/data/sprites/official/cornelius.1.zspr new file mode 100644 index 00000000..4c58f356 Binary files /dev/null and b/data/sprites/official/cornelius.1.zspr differ diff --git a/data/sprites/official/crewmate.1.zspr b/data/sprites/official/crewmate.1.zspr new file mode 100644 index 00000000..f2ce441d Binary files /dev/null and b/data/sprites/official/crewmate.1.zspr differ diff --git a/data/sprites/official/d_owls.1.zspr b/data/sprites/official/d_owls.2.zspr similarity index 84% rename from data/sprites/official/d_owls.1.zspr rename to data/sprites/official/d_owls.2.zspr index 147283ea..a49080bb 100644 Binary files a/data/sprites/official/d_owls.1.zspr and b/data/sprites/official/d_owls.2.zspr differ diff --git a/data/sprites/official/dark-panda.1.zspr b/data/sprites/official/dark-panda.1.zspr new file mode 100644 index 00000000..1b39b747 Binary files /dev/null and b/data/sprites/official/dark-panda.1.zspr differ diff --git a/data/sprites/official/deadpool-mythic.1.zspr b/data/sprites/official/deadpool-mythic.1.zspr new file mode 100644 index 00000000..abcda926 Binary files /dev/null and b/data/sprites/official/deadpool-mythic.1.zspr differ diff --git a/data/sprites/official/deadpool.1.zspr b/data/sprites/official/deadpool.1.zspr new file mode 100644 index 00000000..3d2e87f7 Binary files /dev/null and b/data/sprites/official/deadpool.1.zspr differ diff --git a/data/sprites/official/dekar.1.zspr b/data/sprites/official/dekar.1.zspr new file mode 100644 index 00000000..203abccd Binary files /dev/null and b/data/sprites/official/dekar.1.zspr differ diff --git a/data/sprites/official/fierce-deity-link.2.zspr b/data/sprites/official/fierce-deity-link.2.zspr new file mode 100644 index 00000000..0700bcac Binary files /dev/null and b/data/sprites/official/fierce-deity-link.2.zspr differ diff --git a/data/sprites/official/finn.1.zspr b/data/sprites/official/finn.3.zspr similarity index 57% rename from data/sprites/official/finn.1.zspr rename to data/sprites/official/finn.3.zspr index 6272246f..265b197c 100644 Binary files a/data/sprites/official/finn.1.zspr and b/data/sprites/official/finn.3.zspr differ diff --git a/data/sprites/official/freya.1.zspr b/data/sprites/official/freya.1.zspr new file mode 100644 index 00000000..b43338d5 Binary files /dev/null and b/data/sprites/official/freya.1.zspr differ diff --git a/data/sprites/official/fujin.1.zspr b/data/sprites/official/fujin.2.zspr similarity index 97% rename from data/sprites/official/fujin.1.zspr rename to data/sprites/official/fujin.2.zspr index 23ae8234..9254ff7b 100644 Binary files a/data/sprites/official/fujin.1.zspr and b/data/sprites/official/fujin.2.zspr differ diff --git a/data/sprites/official/ganon.1.zspr b/data/sprites/official/ganon.1.zspr new file mode 100644 index 00000000..a6adda43 Binary files /dev/null and b/data/sprites/official/ganon.1.zspr differ diff --git a/data/sprites/official/gbc-link.1.zspr b/data/sprites/official/gbc-link.1.zspr new file mode 100644 index 00000000..e98a6d08 Binary files /dev/null and b/data/sprites/official/gbc-link.1.zspr differ diff --git a/data/sprites/official/geno.1.zspr b/data/sprites/official/geno.1.zspr new file mode 100644 index 00000000..3d747a2a Binary files /dev/null and b/data/sprites/official/geno.1.zspr differ diff --git a/data/sprites/official/gliitchwiitch.1.zspr b/data/sprites/official/gliitchwiitch.1.zspr new file mode 100644 index 00000000..0f618df0 Binary files /dev/null and b/data/sprites/official/gliitchwiitch.1.zspr differ diff --git a/data/sprites/official/goose.1.zspr b/data/sprites/official/goose.1.zspr new file mode 100644 index 00000000..d2ffb5ba Binary files /dev/null and b/data/sprites/official/goose.1.zspr differ diff --git a/data/sprites/official/gretis.1.zspr b/data/sprites/official/gretis.1.zspr new file mode 100644 index 00000000..87607a17 Binary files /dev/null and b/data/sprites/official/gretis.1.zspr differ diff --git a/data/sprites/official/guiz.1.zspr b/data/sprites/official/guiz.1.zspr new file mode 100644 index 00000000..995c08ad Binary files /dev/null and b/data/sprites/official/guiz.1.zspr differ diff --git a/data/sprites/official/hanna.1.zspr b/data/sprites/official/hanna.1.zspr new file mode 100644 index 00000000..92ce372e Binary files /dev/null and b/data/sprites/official/hanna.1.zspr differ diff --git a/data/sprites/official/hat-kid.1.zspr b/data/sprites/official/hat-kid.1.zspr new file mode 100644 index 00000000..d0341060 Binary files /dev/null and b/data/sprites/official/hat-kid.1.zspr differ diff --git a/data/sprites/official/hidari.1.zspr b/data/sprites/official/hidari.1.zspr new file mode 100644 index 00000000..54a4d0da Binary files /dev/null and b/data/sprites/official/hidari.1.zspr differ diff --git a/data/sprites/official/hollow-knight.1.zspr b/data/sprites/official/hollow-knight.1.zspr new file mode 100644 index 00000000..31d8ee3d Binary files /dev/null and b/data/sprites/official/hollow-knight.1.zspr differ diff --git a/data/sprites/official/homer.zspr b/data/sprites/official/homer.1.zspr similarity index 100% rename from data/sprites/official/homer.zspr rename to data/sprites/official/homer.1.zspr diff --git a/data/sprites/official/hotdog.1.zspr b/data/sprites/official/hotdog.1.zspr new file mode 100644 index 00000000..4ed5e636 Binary files /dev/null and b/data/sprites/official/hotdog.1.zspr differ diff --git a/data/sprites/official/jack-frost.1.zspr b/data/sprites/official/jack-frost.1.zspr new file mode 100644 index 00000000..12dd417a Binary files /dev/null and b/data/sprites/official/jack-frost.1.zspr differ diff --git a/data/sprites/official/jasp.1.zspr b/data/sprites/official/jasp.1.zspr new file mode 100644 index 00000000..6dc74496 Binary files /dev/null and b/data/sprites/official/jasp.1.zspr differ diff --git a/data/sprites/official/katsura.1.zspr b/data/sprites/official/katsura.1.zspr new file mode 100644 index 00000000..422a0faf Binary files /dev/null and b/data/sprites/official/katsura.1.zspr differ diff --git a/data/sprites/official/ketchup.1.zspr b/data/sprites/official/ketchup.1.zspr new file mode 100644 index 00000000..9dbb326c Binary files /dev/null and b/data/sprites/official/ketchup.1.zspr differ diff --git a/data/sprites/official/korok.1.zspr b/data/sprites/official/korok.1.zspr new file mode 100644 index 00000000..3045b95b Binary files /dev/null and b/data/sprites/official/korok.1.zspr differ diff --git a/data/sprites/official/lapras.1.zspr b/data/sprites/official/lapras.1.zspr new file mode 100644 index 00000000..bcec01b2 Binary files /dev/null and b/data/sprites/official/lapras.1.zspr differ diff --git a/data/sprites/official/linja.1.zspr b/data/sprites/official/linja.1.zspr new file mode 100644 index 00000000..414efaf7 Binary files /dev/null and b/data/sprites/official/linja.1.zspr differ diff --git a/data/sprites/official/link-redrawn.1.zspr b/data/sprites/official/link-redrawn.1.zspr new file mode 100644 index 00000000..1cbb7501 Binary files /dev/null and b/data/sprites/official/link-redrawn.1.zspr differ diff --git a/data/sprites/official/little-hylian.1.zspr b/data/sprites/official/little-hylian.1.zspr new file mode 100644 index 00000000..fbee749c Binary files /dev/null and b/data/sprites/official/little-hylian.1.zspr differ diff --git a/data/sprites/official/locke.1.zspr b/data/sprites/official/locke.1.zspr new file mode 100644 index 00000000..c2273791 Binary files /dev/null and b/data/sprites/official/locke.1.zspr differ diff --git a/data/sprites/official/luffy.1.zspr b/data/sprites/official/luffy.1.zspr new file mode 100644 index 00000000..0661577b Binary files /dev/null and b/data/sprites/official/luffy.1.zspr differ diff --git a/data/sprites/official/luna-maindo.1.zspr b/data/sprites/official/luna-maindo.1.zspr new file mode 100644 index 00000000..5a8acdbf Binary files /dev/null and b/data/sprites/official/luna-maindo.1.zspr differ diff --git a/data/sprites/official/madeline.1.zspr b/data/sprites/official/madeline.1.zspr new file mode 100644 index 00000000..8256e6a3 Binary files /dev/null and b/data/sprites/official/madeline.1.zspr differ diff --git a/data/sprites/official/mallow-cat.1.zspr b/data/sprites/official/mallow-cat.1.zspr new file mode 100644 index 00000000..395684b2 Binary files /dev/null and b/data/sprites/official/mallow-cat.1.zspr differ diff --git a/data/sprites/official/marin.1.zspr b/data/sprites/official/marin.2.zspr similarity index 97% rename from data/sprites/official/marin.1.zspr rename to data/sprites/official/marin.2.zspr index 51c27bb6..72a06ecf 100644 Binary files a/data/sprites/official/marin.1.zspr and b/data/sprites/official/marin.2.zspr differ diff --git a/data/sprites/official/metroid.1.zspr b/data/sprites/official/metroid.1.zspr new file mode 100644 index 00000000..d81187cb Binary files /dev/null and b/data/sprites/official/metroid.1.zspr differ diff --git a/data/sprites/official/moblin.1.zspr b/data/sprites/official/moblin.1.zspr new file mode 100644 index 00000000..3e425e12 Binary files /dev/null and b/data/sprites/official/moblin.1.zspr differ diff --git a/data/sprites/official/momiji.1.zspr b/data/sprites/official/momiji.1.zspr new file mode 100644 index 00000000..86a18586 Binary files /dev/null and b/data/sprites/official/momiji.1.zspr differ diff --git a/data/sprites/official/ms-paintdog.1.zspr b/data/sprites/official/ms-paintdog.1.zspr new file mode 100644 index 00000000..75f5f541 Binary files /dev/null and b/data/sprites/official/ms-paintdog.1.zspr differ diff --git a/data/sprites/official/navirou.2.zspr b/data/sprites/official/navirou.2.zspr new file mode 100644 index 00000000..ea9d95a4 Binary files /dev/null and b/data/sprites/official/navirou.2.zspr differ diff --git a/data/sprites/official/ned-flanders.1.zspr b/data/sprites/official/ned-flanders.1.zspr new file mode 100644 index 00000000..78ed5bc4 Binary files /dev/null and b/data/sprites/official/ned-flanders.1.zspr differ diff --git a/data/sprites/official/neosad.1.zspr b/data/sprites/official/neosad.1.zspr new file mode 100644 index 00000000..7e95d7f7 Binary files /dev/null and b/data/sprites/official/neosad.1.zspr differ diff --git a/data/sprites/official/niddraig.1.zspr b/data/sprites/official/niddraig.1.zspr new file mode 100644 index 00000000..d02794bc Binary files /dev/null and b/data/sprites/official/niddraig.1.zspr differ diff --git a/data/sprites/official/niko.1.zspr b/data/sprites/official/niko.1.zspr new file mode 100644 index 00000000..5d39e6bb Binary files /dev/null and b/data/sprites/official/niko.1.zspr differ diff --git a/data/sprites/official/ori.1.zspr b/data/sprites/official/ori.2.zspr similarity index 72% rename from data/sprites/official/ori.1.zspr rename to data/sprites/official/ori.2.zspr index bbb84eae..10c1e462 100644 Binary files a/data/sprites/official/ori.1.zspr and b/data/sprites/official/ori.2.zspr differ diff --git a/data/sprites/official/porg_knight.1.zspr b/data/sprites/official/porg_knight.1.zspr new file mode 100644 index 00000000..4d6f9635 Binary files /dev/null and b/data/sprites/official/porg_knight.1.zspr differ diff --git a/data/sprites/official/princess_bubblegum.1.zspr b/data/sprites/official/princess_bubblegum.1.zspr new file mode 100644 index 00000000..c46dcc0f Binary files /dev/null and b/data/sprites/official/princess_bubblegum.1.zspr differ diff --git a/data/sprites/official/psyduck.1.zspr b/data/sprites/official/psyduck.2.zspr similarity index 98% rename from data/sprites/official/psyduck.1.zspr rename to data/sprites/official/psyduck.2.zspr index 2a2ff949..c9e17117 100644 Binary files a/data/sprites/official/psyduck.1.zspr and b/data/sprites/official/psyduck.2.zspr differ diff --git a/data/sprites/official/pyro.1.zspr b/data/sprites/official/pyro.1.zspr new file mode 100644 index 00000000..9037c8e4 Binary files /dev/null and b/data/sprites/official/pyro.1.zspr differ diff --git a/data/sprites/official/rat.1.zspr b/data/sprites/official/rat.1.zspr new file mode 100644 index 00000000..b4574c06 Binary files /dev/null and b/data/sprites/official/rat.1.zspr differ diff --git a/data/sprites/official/red-mage.1.zspr b/data/sprites/official/red-mage.1.zspr new file mode 100644 index 00000000..803a5b6f Binary files /dev/null and b/data/sprites/official/red-mage.1.zspr differ diff --git a/data/sprites/official/remeer.1.zspr b/data/sprites/official/remeer.1.zspr new file mode 100644 index 00000000..8d7f245a Binary files /dev/null and b/data/sprites/official/remeer.1.zspr differ diff --git a/data/sprites/official/rover.1.zspr b/data/sprites/official/rover.1.zspr new file mode 100644 index 00000000..8b9e9edd Binary files /dev/null and b/data/sprites/official/rover.1.zspr differ diff --git a/data/sprites/official/saitama.1.zspr b/data/sprites/official/saitama.1.zspr new file mode 100644 index 00000000..acd9170d Binary files /dev/null and b/data/sprites/official/saitama.1.zspr differ diff --git a/data/sprites/official/samus-sm.1.zspr b/data/sprites/official/samus-sm.1.zspr new file mode 100644 index 00000000..c8fde01b Binary files /dev/null and b/data/sprites/official/samus-sm.1.zspr differ diff --git a/data/sprites/official/selan.1.zspr b/data/sprites/official/selan.1.zspr new file mode 100644 index 00000000..eb3b0318 Binary files /dev/null and b/data/sprites/official/selan.1.zspr differ diff --git a/data/sprites/official/shy-gal.1.zspr b/data/sprites/official/shy-gal.1.zspr new file mode 100644 index 00000000..b86b27bc Binary files /dev/null and b/data/sprites/official/shy-gal.1.zspr differ diff --git a/data/sprites/official/slime.1.zspr b/data/sprites/official/slime.1.zspr new file mode 100644 index 00000000..711e459f Binary files /dev/null and b/data/sprites/official/slime.1.zspr differ diff --git a/data/sprites/official/slowpoke.1.zspr b/data/sprites/official/slowpoke.1.zspr new file mode 100644 index 00000000..d1b40e23 Binary files /dev/null and b/data/sprites/official/slowpoke.1.zspr differ diff --git a/data/sprites/official/spongebob.1.zspr b/data/sprites/official/spongebob.1.zspr new file mode 100644 index 00000000..714f6983 Binary files /dev/null and b/data/sprites/official/spongebob.1.zspr differ diff --git a/data/sprites/official/squall.1.zspr b/data/sprites/official/squall.1.zspr new file mode 100644 index 00000000..b9cd9556 Binary files /dev/null and b/data/sprites/official/squall.1.zspr differ diff --git a/data/sprites/official/squirrel.1.zspr b/data/sprites/official/squirrel.1.zspr new file mode 100644 index 00000000..64e399a1 Binary files /dev/null and b/data/sprites/official/squirrel.1.zspr differ diff --git a/data/sprites/official/stan.1.zspr b/data/sprites/official/stan.1.zspr new file mode 100644 index 00000000..5fd3eb11 Binary files /dev/null and b/data/sprites/official/stan.1.zspr differ diff --git a/data/sprites/official/steamedhams.1.zspr b/data/sprites/official/steamedhams.1.zspr new file mode 100644 index 00000000..bcae82fb Binary files /dev/null and b/data/sprites/official/steamedhams.1.zspr differ diff --git a/data/sprites/official/susie.1.zspr b/data/sprites/official/susie.1.zspr new file mode 100644 index 00000000..c1127b87 Binary files /dev/null and b/data/sprites/official/susie.1.zspr differ diff --git a/data/sprites/official/tasbot.1.zspr b/data/sprites/official/tasbot.1.zspr new file mode 100644 index 00000000..b7278587 Binary files /dev/null and b/data/sprites/official/tasbot.1.zspr differ diff --git a/data/sprites/official/thomcrow.1.zspr b/data/sprites/official/thomcrow.1.zspr new file mode 100644 index 00000000..81bba95d Binary files /dev/null and b/data/sprites/official/thomcrow.1.zspr differ diff --git a/data/sprites/official/Toadette.2.zspr b/data/sprites/official/toadette.2.zspr similarity index 100% rename from data/sprites/official/Toadette.2.zspr rename to data/sprites/official/toadette.2.zspr diff --git a/data/sprites/official/vera.1.zspr b/data/sprites/official/vera.1.zspr new file mode 100644 index 00000000..b8914365 Binary files /dev/null and b/data/sprites/official/vera.1.zspr differ diff --git a/data/sprites/official/wixb.1.zspr b/data/sprites/official/wixb.1.zspr deleted file mode 100644 index 2e67941b..00000000 Binary files a/data/sprites/official/wixb.1.zspr and /dev/null differ diff --git a/data/sprites/official/zeck.1.zspr b/data/sprites/official/zeck.1.zspr new file mode 100644 index 00000000..630acd1a Binary files /dev/null and b/data/sprites/official/zeck.1.zspr differ diff --git a/docs/BUILDING.md b/docs/BUILDING.md new file mode 100644 index 00000000..fd0233f0 --- /dev/null +++ b/docs/BUILDING.md @@ -0,0 +1,13 @@ +# Running from source + +1. Get [python](http://python.org/downloads) +1. Get the [Door Randomizer Unstable source code](https://github.com/Aerinon/ALttPDoorRandomizer/archive/DoorDevUnstable.zip) +1. Install Platform-specific dependencies +1. Run `DoorRandomizer.py` for command-line script +1. Run `Gui.py` for user interface + +## Platform-specific dependencies + +### Windows + +* Run `resources/ci/common/local_install.py` diff --git a/resources/app/cli/args.json b/resources/app/cli/args.json index 5eef6a3a..70bc1148 100644 --- a/resources/app/cli/args.json +++ b/resources/app/cli/args.json @@ -59,6 +59,23 @@ "expert" ] }, + "keydropshuffle" : { + "action": "store_true", + "type": "bool" + }, + "mixed_travel" : { + "choices": [ + "prevent", + "allow", + "force" + ] + }, + "standardize_palettes" : { + "choices": [ + "standardize", + "original" + ] + }, "timer": { "choices": [ "none", diff --git a/resources/app/cli/lang/en.json b/resources/app/cli/lang/en.json index e03fac9b..a0fa6296 100644 --- a/resources/app/cli/lang/en.json +++ b/resources/app/cli/lang/en.json @@ -8,6 +8,7 @@ "player": "Player", "shuffling.world": "Shuffling the World about", "shuffling.dungeons": "Shuffling dungeons", + "shuffling.pots": "Shuffling pots", "basic.traversal": "--Basic Traversal", "generating.dungeon": "Generating dungeons", "shuffling.keydoors": "Shuffling Key doors", @@ -202,7 +203,7 @@ "Door Shuffle Intensity Level (default: %(default)s)", "1: Shuffles normal doors and spiral staircases", "2: And shuffles open edges and straight staircases", - "3: (Coming soon) And shuffles dungeon lobbies", + "3: And shuffles dungeon lobbies", "random: Picks one of those at random" ], "experimental": [ "Enable experimental features. (default: %(default)s)" ], @@ -244,6 +245,18 @@ "compassshuffle": [ "Compasses are no longer restricted to their dungeons, but can be anywhere. (default: %(default)s)" ], "keyshuffle": [ "Small Keys are no longer restricted to their dungeons, but can be anywhere. (default: %(default)s)" ], "bigkeyshuffle": [ "Big Keys are no longer restricted to their dungeons, but can be anywhere. (default: %(default)s)" ], + "keydropshuffle": [ "Key Drops (Pots and Enemies) are shuffled and other items can take their place (default: %(default)s)" ], + "mixed_travel": [ + "How to handle potential traversal between dungeon in Crossed door shuffle", + "Prevent: Rails are placed to prevent bombs jump and hovering from changing dungeon except with glitched logic settings", + "Allow: Take the rails off, \"I know what I'm doing\"", + "Force: Force these troublesome connections to be in the same dungeon (but not in logic). No rails will appear" + ], + "standardize_palettes": [ + "In cross dungeon shuffle, we can keep the rooms original palette or attempt to standardize them", + "Standardize: Attempts to make the palette the same between dungeons", + "Original: Dungeons rooms retain original palettes" + ], "retro": [ "Keys are universal, shooting arrows costs rupees,", "and a few other little things make this more like Zelda-1. (default: %(default)s)" diff --git a/resources/app/gui/lang/en.json b/resources/app/gui/lang/en.json index 81da7110..b3140d40 100644 --- a/resources/app/gui/lang/en.json +++ b/resources/app/gui/lang/en.json @@ -46,12 +46,12 @@ "adjust.rom.dialog.success": "Success", "adjust.rom.dialog.success.message": "Rom patched successfully.", - "randomizer.dungeon.keysanity": "Shuffle: ", "randomizer.dungeon.mapshuffle": "Maps", "randomizer.dungeon.compassshuffle": "Compasses", "randomizer.dungeon.smallkeyshuffle": "Small Keys", "randomizer.dungeon.bigkeyshuffle": "Big Keys", + "randomizer.dungeon.keydropshuffle": "Key Drops (pots and enemies)", "randomizer.dungeon.dungeondoorshuffle": "Dungeon Door Shuffle", "randomizer.dungeon.dungeondoorshuffle.vanilla": "Vanilla", @@ -61,9 +61,10 @@ "randomizer.dungeon.dungeonintensity": "Intensity Level", "randomizer.dungeon.dungeonintensity.1": "1: Normal Supertile and Spiral Stairs", "randomizer.dungeon.dungeonintensity.2": "2: Open Edges and Straight Stairs", - "randomizer.dungeon.dungeonintensity.3": "3: (Coming soon) Dungeon Lobbies", + "randomizer.dungeon.dungeonintensity.3": "3: Dungeon Lobbies", "randomizer.dungeon.dungeonintensity.random": "Random", + "randomizer.dungeon.potshuffle": "Pot Shuffle", "randomizer.dungeon.experimental": "Enable Experimental Features", "randomizer.dungeon.dungeon_counters": "Dungeon Chest Counters", @@ -72,8 +73,14 @@ "randomizer.dungeon.dungeon_counters.on": "On", "randomizer.dungeon.dungeon_counters.pickup": "On Compass Pickup", + "randomizer.dungeon.mixed_travel": "Mixed Dungeon Travel ", + "randomizer.dungeon.mixed_travel.prevent": "Prevent Mixed Dungeon Travel", + "randomizer.dungeon.mixed_travel.allow": "Allow Mixed Dungeon Travel", + "randomizer.dungeon.mixed_travel.force": "Force Reachable Areas to Same Dungeon", - "randomizer.enemizer.potshuffle": "Pot Shuffle", + "randomizer.dungeon.standardize_palettes": "Crossed Dungeon Palette ", + "randomizer.dungeon.standardize_palettes.standardize": "Standardize Palettes", + "randomizer.dungeon.standardize_palettes.original": "Keep Original Palettes", "randomizer.enemizer.enemyshuffle": "Enemy Shuffle", "randomizer.enemizer.enemyshuffle.none": "None", diff --git a/resources/app/gui/randomize/dungeon/keysanity.json b/resources/app/gui/randomize/dungeon/keysanity.json index 49a17237..b7077f0e 100644 --- a/resources/app/gui/randomize/dungeon/keysanity.json +++ b/resources/app/gui/randomize/dungeon/keysanity.json @@ -3,6 +3,7 @@ "mapshuffle": { "type": "checkbox" }, "compassshuffle": { "type": "checkbox" }, "smallkeyshuffle": { "type": "checkbox" }, - "bigkeyshuffle": { "type": "checkbox" } + "bigkeyshuffle": { "type": "checkbox" }, + "keydropshuffle": { "type": "checkbox" } } } diff --git a/resources/app/gui/randomize/dungeon/widgets.json b/resources/app/gui/randomize/dungeon/widgets.json index 736f2aeb..be7a3422 100644 --- a/resources/app/gui/randomize/dungeon/widgets.json +++ b/resources/app/gui/randomize/dungeon/widgets.json @@ -19,9 +19,10 @@ "random" ], "config": { - "width": 40 + "width": 35 } }, + "potshuffle": { "type": "checkbox" }, "experimental": { "type": "checkbox" }, "dungeon_counters": { "type": "selectbox", @@ -32,6 +33,29 @@ "on", "pickup" ] + }, + "mixed_travel": { + "type" : "selectbox", + "default": "prevent", + "options": [ + "prevent", + "allow", + "force" + ], + "config": { + "width": 35 + } + }, + "standardize_palettes" : { + "type": "selectbox", + "default": "standardize", + "options": [ + "standardize", + "original" + ], + "config": { + "width": 35 + } } } } diff --git a/resources/app/gui/randomize/enemizer/widgets.json b/resources/app/gui/randomize/enemizer/widgets.json index 1068cc02..bb731cc2 100644 --- a/resources/app/gui/randomize/enemizer/widgets.json +++ b/resources/app/gui/randomize/enemizer/widgets.json @@ -1,7 +1,4 @@ { - "checkboxes": { - "potshuffle": { "type": "checkbox" } - }, "leftEnemizerFrame": { "enemyshuffle": { "type": "selectbox", diff --git a/resources/app/meta/manifests/pip_requirements.txt b/resources/app/meta/manifests/pip_requirements.txt index a8c8af56..f192a6b3 100644 --- a/resources/app/meta/manifests/pip_requirements.txt +++ b/resources/app/meta/manifests/pip_requirements.txt @@ -1,2 +1,3 @@ aenum -fast-enum \ No newline at end of file +fast-enum +python-bps-continued \ No newline at end of file diff --git a/resources/ci/common/get_get_pip.py b/resources/ci/common/get_get_pip.py new file mode 100644 index 00000000..9b69930d --- /dev/null +++ b/resources/ci/common/get_get_pip.py @@ -0,0 +1,39 @@ +import common +import urllib.request, ssl +import subprocess # do stuff at the shell level + +env = common.prepare_env() + +def get_get_pip(): + print("Getting pip getter!") + #make the request! + url = "https://bootstrap.pypa.io/get-pip.py" + context = ssl._create_unverified_context() + req = urllib.request.urlopen(url, context=context) + got_pip = req.read().decode("utf-8") + + with open("get-pip.py", "w") as g: + req = urllib.request.Request( + url, + data=None, + headers={ + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36" + } + ) + req = urllib.request.urlopen(req, context=context) + data = req.read().decode("utf-8") + g.write(data) + + # get executables + # python + # linux/windows: python + # macosx: python3 + PYTHON_EXECUTABLE = "python3" if "osx" in env["OS_NAME"] else "python" + print("Getting pip!") + subprocess.check_call([PYTHON_EXECUTABLE,"get-pip.py"]) + +if __name__ == "__main__": + try: + import pip + except ImportError: + get_get_pip() diff --git a/resources/ci/common/install.py b/resources/ci/common/install.py index 8cd40df2..70d10202 100644 --- a/resources/ci/common/install.py +++ b/resources/ci/common/install.py @@ -1,27 +1,30 @@ import common -import os # for env vars import subprocess # do stuff at the shell level env = common.prepare_env() -# get executables -# python -# linux/windows: python -# macosx: python3 -# pip -# linux/macosx: pip3 -# windows: pip -PYTHON_EXECUTABLE = "python3" if "osx" in env["OS_NAME"] else "python" -PIP_EXECUTABLE = "pip" if "windows" in env["OS_NAME"] else "pip3" -PIP_EXECUTABLE = "pip" if "osx" in env["OS_NAME"] and "actions" in env["CI_SYSTEM"] else PIP_EXECUTABLE +def run_install(): + # get executables + # python + # linux/windows: python + # macosx: python3 + # pip + # linux/macosx: pip3 + # windows: pip + PYTHON_EXECUTABLE = "python3" if "osx" in env["OS_NAME"] else "python" + PIP_EXECUTABLE = "pip" if "windows" in env["OS_NAME"] else "pip3" + PIP_EXECUTABLE = "pip" if "osx" in env["OS_NAME"] and "actions" in env["CI_SYSTEM"] else PIP_EXECUTABLE -# upgrade pip -subprocess.check_call([PYTHON_EXECUTABLE,"-m","pip","install","--upgrade","pip"]) + # upgrade pip + subprocess.check_call([PYTHON_EXECUTABLE,"-m","pip","install","--upgrade","pip"]) -# pip version -subprocess.check_call([PIP_EXECUTABLE,"--version"]) -# if pip3, install wheel -if PIP_EXECUTABLE == "pip3": - subprocess.check_call([PIP_EXECUTABLE,"install","-U","wheel"]) -# install listed dependencies -subprocess.check_call([PIP_EXECUTABLE,"install","-r","./resources/app/meta/manifests/pip_requirements.txt"]) + # pip version + subprocess.check_call([PIP_EXECUTABLE,"--version"]) + # if pip3, install wheel + if PIP_EXECUTABLE == "pip3": + subprocess.check_call([PIP_EXECUTABLE,"install","-U","wheel"]) + # install listed dependencies + subprocess.check_call([PIP_EXECUTABLE,"install","-r","./resources/app/meta/manifests/pip_requirements.txt"]) + +if __name__ == "__main__": + run_install() diff --git a/resources/ci/common/local_install.py b/resources/ci/common/local_install.py new file mode 100644 index 00000000..8cde8348 --- /dev/null +++ b/resources/ci/common/local_install.py @@ -0,0 +1,8 @@ +import install +import get_get_pip + +# get & install pip +get_get_pip.get_get_pip() + +# run installer +install.run_install() diff --git a/source/classes/constants.py b/source/classes/constants.py index 647ae19f..18bca6ac 100644 --- a/source/classes/constants.py +++ b/source/classes/constants.py @@ -75,7 +75,6 @@ SETTINGSTOPROCESS = { "entranceshuffle": "shuffle" }, "enemizer": { - "potshuffle": "shufflepots", "enemyshuffle": "shuffleenemies", "bossshuffle": "shufflebosses", "enemydamage": "enemy_damage", @@ -86,10 +85,14 @@ SETTINGSTOPROCESS = { "compassshuffle": "compassshuffle", "smallkeyshuffle": "keyshuffle", "bigkeyshuffle": "bigkeyshuffle", + "keydropshuffle": "keydropshuffle", "dungeondoorshuffle": "door_shuffle", "dungeonintensity": "intensity", + "potshuffle": "shufflepots", "experimental": "experimental", - "dungeon_counters": "dungeon_counters" + "dungeon_counters": "dungeon_counters", + "mixed_travel": "mixed_travel", + "standardize_palettes": "standardize_palettes", }, "gameoptions": { "hints": "hints", diff --git a/source/gui/bottom.py b/source/gui/bottom.py index 5e43b9d1..70bf9bd9 100644 --- a/source/gui/bottom.py +++ b/source/gui/bottom.py @@ -80,7 +80,7 @@ def bottom_frame(self, parent, args=None): needEnemizer = False if hasEnemizer: falsey = ["none", "default", False, 0] - for enemizerOption in [ "shufflepots", "shuffleenemies", "enemy_damage", "shufflebosses", "enemy_health" ]: + for enemizerOption in ["shuffleenemies", "enemy_damage", "shufflebosses", "enemy_health"]: if enemizerOption in argsDump: if isinstance(argsDump[enemizerOption], dict): for playerID,playerSetting in argsDump[enemizerOption].items(): @@ -268,7 +268,7 @@ def create_guiargs(parent): guiargs.randomSprite = parent.randomSprite.get() # Get output path - guiargs.outputpath = parent.outputPath.get() + guiargs.outputpath = parent.settings["outputpath"] guiargs = update_deprecated_args(guiargs)