From 54c53ea07e4591a53b1cfd2a0ffce3cc41878981 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Tue, 9 Jul 2019 20:26:45 -0400 Subject: [PATCH 001/185] Fix breakage from PyInstaller 3.5's release --- bundle/EntranceRandomizer.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/EntranceRandomizer.spec b/bundle/EntranceRandomizer.spec index c01d6155..308a3ba9 100644 --- a/bundle/EntranceRandomizer.spec +++ b/bundle/EntranceRandomizer.spec @@ -24,7 +24,7 @@ exe = EXE(pyz, debug=False, strip=False, upx=False, - icon='data/ER.ico', + icon='../data/ER.ico', console=is_win ) coll = COLLECT(exe, a.binaries, @@ -35,5 +35,5 @@ coll = COLLECT(exe, name='EntranceRandomizer') app = BUNDLE(coll, name ='EntranceRandomizer.app', - icon = 'data/ER.icns', + icon = '../data/ER.icns', bundle_identifier = None) From d44d194de79cb3832183c97038b52e36e79751dc Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Mon, 8 Jul 2019 22:48:16 -0400 Subject: [PATCH 002/185] Switch to simpler caching system This should speed up generating the seeds the currently take the longest. Seems to have no impact on the average case. --- BaseClasses.py | 80 ++++++++++++++++++-------------------------------- Dungeons.py | 4 --- Main.py | 1 + 3 files changed, 29 insertions(+), 56 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 2395d32e..bacf3368 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -172,7 +172,6 @@ class World(object): 'Small Key (Swamp Palace)', 'Big Key (Ice Palace)'] + ['Small Key (Ice Palace)'] * 2 + ['Big Key (Misery Mire)', 'Big Key (Turtle Rock)', 'Big Key (Ganons Tower)'] + ['Small Key (Misery Mire)'] * 3 + ['Small Key (Turtle Rock)'] * 4 + ['Small Key (Ganons Tower)'] * 4): soft_collect(item) ret.sweep_for_events() - ret.clear_cached_unreachable() return ret def get_items(self): @@ -233,7 +232,6 @@ class World(object): def unlocks_new_location(self, item): temp_state = self.state.copy() - temp_state.clear_cached_unreachable() temp_state.collect(item, True) for location in self.get_unfilled_locations(): @@ -320,75 +318,50 @@ class CollectionState(object): def __init__(self, parent): self.prog_items = [] self.world = parent - self.region_cache = {} - self.location_cache = {} - self.entrance_cache = {} - self.recursion_count = 0 + self.reachable_regions = set() self.events = [] self.path = {} self.locations_checked = set() + self.stale = True + def update_reachable_regions(self): + self.stale=False - def clear_cached_unreachable(self): - # we only need to invalidate results which were False, places we could reach before we can still reach after adding more items - self.region_cache = {k: v for k, v in self.region_cache.items() if v} - self.location_cache = {k: v for k, v in self.location_cache.items() if v} - self.entrance_cache = {k: v for k, v in self.entrance_cache.items() if v} + new_regions = True + reachable_regions_count = len(self.reachable_regions) + while new_regions: + possible = [region for region in self.world.regions if region not in self.reachable_regions] + for candidate in possible: + if candidate.can_reach_private(self): + self.reachable_regions.add(candidate) + new_regions = len(self.reachable_regions) > reachable_regions_count + reachable_regions_count = len(self.reachable_regions) def copy(self): ret = CollectionState(self.world) ret.prog_items = copy.copy(self.prog_items) - ret.region_cache = copy.copy(self.region_cache) - ret.location_cache = copy.copy(self.location_cache) - ret.entrance_cache = copy.copy(self.entrance_cache) + ret.reachable_regions = copy.copy(self.reachable_regions) ret.events = copy.copy(self.events) ret.path = copy.copy(self.path) ret.locations_checked = copy.copy(self.locations_checked) + ret.stale = True return ret def can_reach(self, spot, resolution_hint=None): try: spot_type = spot.spot_type - if spot_type == 'Location': - correct_cache = self.location_cache - elif spot_type == 'Region': - correct_cache = self.region_cache - elif spot_type == 'Entrance': - correct_cache = self.entrance_cache - else: - raise AttributeError except AttributeError: # try to resolve a name if resolution_hint == 'Location': spot = self.world.get_location(spot) - correct_cache = self.location_cache elif resolution_hint == 'Entrance': spot = self.world.get_entrance(spot) - correct_cache = self.entrance_cache else: # default to Region spot = self.world.get_region(spot) - correct_cache = self.region_cache + - if spot.recursion_count > 0: - return False - - if spot not in correct_cache: - # for the purpose of evaluating results, recursion is resolved by always denying recursive access (as that ia what we are trying to figure out right now in the first place - spot.recursion_count += 1 - self.recursion_count += 1 - can_reach = spot.can_reach(self) - spot.recursion_count -= 1 - self.recursion_count -= 1 - - # we only store qualified false results (i.e. ones not inside a hypothetical) - if not can_reach: - if self.recursion_count == 0: - correct_cache[spot] = can_reach - else: - correct_cache[spot] = can_reach - return can_reach - return correct_cache[spot] + return spot.can_reach(self) def sweep_for_events(self, key_only=False): # this may need improvement @@ -566,12 +539,12 @@ class CollectionState(object): elif event or item.advancement: self.prog_items.append(item.name) changed = True + + self.stale = True if changed: - self.clear_cached_unreachable() if not event: self.sweep_for_events() - self.clear_cached_unreachable() def remove(self, item): if item.advancement: @@ -603,10 +576,8 @@ class CollectionState(object): return # invalidate caches, nothing can be trusted anymore now - self.region_cache = {} - self.location_cache = {} - self.entrance_cache = {} - self.recursion_count = 0 + self.reachable_regions = set() + self.stale = True def __getattr__(self, item): if item.startswith('can_reach_'): @@ -647,6 +618,11 @@ class Region(object): self.recursion_count = 0 def can_reach(self, state): + if state.stale: + state.update_reachable_regions() + return self in state.reachable_regions + + def can_reach_private(self, state): for entrance in self.entrances: if state.can_reach(entrance): if not self in state.path: @@ -683,7 +659,7 @@ class Entrance(object): self.access_rule = lambda state: True def can_reach(self, state): - if self.access_rule(state) and state.can_reach(self.parent_region): + if state.can_reach(self.parent_region) and self.access_rule(state): if not self in state.path: state.path[self] = (self.name, state.path.get(self.parent_region, (self.parent_region.name, None))) return True @@ -768,7 +744,7 @@ class Location(object): return self.always_allow(state, item) or (self.parent_region.can_fill(item) and self.item_rule(item) and (not check_access or self.can_reach(state))) def can_reach(self, state): - if self.access_rule(state) and state.can_reach(self.parent_region): + if state.can_reach(self.parent_region) and self.access_rule(state): return True return False diff --git a/Dungeons.py b/Dungeons.py index 1ef2c17d..a53e0b40 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -71,7 +71,6 @@ def fill_dungeons(world): world.push_item(bk_location, big_key, False) bk_location.event = True dungeon_locations.remove(bk_location) - all_state.clear_cached_unreachable() big_key = None # next place small keys @@ -97,7 +96,6 @@ def fill_dungeons(world): world.push_item(sk_location, small_key, False) sk_location.event = True dungeon_locations.remove(sk_location) - all_state.clear_cached_unreachable() if small_keys: # key placement not finished, loop again @@ -109,7 +107,6 @@ def fill_dungeons(world): di_location = dungeon_locations.pop() world.push_item(di_location, dungeon_item, False) - world.state.clear_cached_unreachable() def get_dungeon_item_pool(world): return [item for dungeon in world.dungeons for item in dungeon.all_items if item.key or world.place_dungeon_items] @@ -142,7 +139,6 @@ def fill_dungeons_restrictive(world, shuffled_locations): fill_restrictive(world, all_state_base, shuffled_locations, dungeon_items) - world.state.clear_cached_unreachable() dungeon_music_addresses = {'Eastern Palace - Prize': [0x1559A], diff --git a/Main.py b/Main.py index c118299d..d8de72ba 100644 --- a/Main.py +++ b/Main.py @@ -200,6 +200,7 @@ def copy_world(world): # copy progress items in state ret.state.prog_items = list(world.state.prog_items) + ret.state.stale = True set_rules(ret) From 1a62b1da282de6fbbcfe2553681b2b6ebc768a4e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 18 Apr 2019 11:23:24 +0200 Subject: [PATCH 003/185] Multiworld core implementation By Bonta0 Does not include the server/client code or the rom writes specific to it. Indeed it cannot write multiworld roms at all right now, pending addition future updates to support the official ALTTPR Multiworld client. Includes some GUI changes by Alaszun Co-authored-by: Alaszun --- .gitignore | 3 + AdjusterMain.py | 2 +- BaseClasses.py | 461 ++++++++++++----------- Bosses.py | 104 +++--- Dungeons.py | 70 ++-- EntranceRandomizer.py | 9 +- EntranceShuffle.py | 498 ++++++++++++------------- Fill.py | 162 ++++++-- Gui.py | 16 +- ItemList.py | 146 ++++---- Items.py | 4 +- Main.py | 125 ++++--- Plando.py | 36 +- Regions.py | 846 +++++++++++++++++++++--------------------- Rom.py | 175 +++++---- Rules.py | 775 +++++++++++++++++++------------------- 16 files changed, 1821 insertions(+), 1611 deletions(-) diff --git a/.gitignore b/.gitignore index af03169d..4ac9fd67 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,6 @@ build bundle/components.wxs dist README.html +.vs/ +*multidata +*multisave diff --git a/AdjusterMain.py b/AdjusterMain.py index 346e9301..63466142 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -21,7 +21,7 @@ def adjust(args): outfilebase = os.path.basename(args.rom)[:-4] + '_adjusted' - if os.stat(args.rom).st_size == 2097152 and os.path.splitext(args.rom)[-1].lower() == '.sfc': + if os.stat(args.rom).st_size in (0x200000, 0x400000) and os.path.splitext(args.rom)[-1].lower() == '.sfc': rom = LocalRom(args.rom, False) else: raise RuntimeError('Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.') diff --git a/BaseClasses.py b/BaseClasses.py index bacf3368..93612364 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -7,7 +7,8 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, shuffle, logic, mode, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): + def __init__(self, players, shuffle, logic, mode, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): + self.players = players self.shuffle = shuffle self.logic = logic self.mode = mode @@ -22,7 +23,7 @@ class World(object): self.itempool = [] self.seed = None self.state = CollectionState(self) - self.required_medallions = ['Ether', 'Quake'] + self.required_medallions = dict([(player, ['Ether', 'Quake']) for player in range(1, players + 1)]) self._cached_entrances = None self._cached_locations = None self._entrance_cache = {} @@ -32,10 +33,10 @@ class World(object): self.required_locations = [] self.place_dungeon_items = place_dungeon_items # configurable in future self.shuffle_bonk_prizes = False - self.swamp_patch_required = False - self.powder_patch_required = False - self.ganon_at_pyramid = True - self.ganonstower_vanilla = True + self.swamp_patch_required = {player: False for player in range(1, players + 1)} + self.powder_patch_required = {player: False for player in range(1, players + 1)} + self.ganon_at_pyramid = {player: True for player in range(1, players + 1)} + self.ganonstower_vanilla = {player: True for player in range(1, players + 1)} self.sewer_light_cone = mode == 'standard' self.light_world_light_cone = False self.dark_world_light_cone = False @@ -78,52 +79,52 @@ class World(object): for region in self.regions: region.world = self - def get_region(self, regionname): + def get_region(self, regionname, player): if isinstance(regionname, Region): return regionname try: - return self._region_cache[regionname] + return self._region_cache[(regionname, player)] except KeyError: for region in self.regions: - if region.name == regionname: - self._region_cache[regionname] = region + if region.name == regionname and region.player == player: + self._region_cache[(regionname, player)] = region return region - raise RuntimeError('No such region %s' % regionname) + raise RuntimeError('No such region %s for player %d' % (regionname, player)) - def get_entrance(self, entrance): + def get_entrance(self, entrance, player): if isinstance(entrance, Entrance): return entrance try: - return self._entrance_cache[entrance] + return self._entrance_cache[(entrance, player)] except KeyError: for region in self.regions: for exit in region.exits: - if exit.name == entrance: - self._entrance_cache[entrance] = exit + if exit.name == entrance and exit.player == player: + self._entrance_cache[(entrance, player)] = exit return exit - raise RuntimeError('No such entrance %s' % entrance) + raise RuntimeError('No such entrance %s for player %d' % (entrance, player)) - def get_location(self, location): + def get_location(self, location, player): if isinstance(location, Location): return location try: - return self._location_cache[location] + return self._location_cache[(location, player)] except KeyError: for region in self.regions: for r_location in region.locations: - if r_location.name == location: - self._location_cache[location] = r_location + if r_location.name == location and r_location.player == player: + self._location_cache[(location, player)] = r_location return r_location - raise RuntimeError('No such location %s' % location) + raise RuntimeError('No such location %s for player %d' % (location, player)) - def get_dungeon(self, dungeonname): + def get_dungeon(self, dungeonname, player): if isinstance(dungeonname, Dungeon): return dungeonname for dungeon in self.dungeons: - if dungeon.name == dungeonname: + if dungeon.name == dungeonname and dungeon.player == player: return dungeon - raise RuntimeError('No such dungeon %s' % dungeonname) + raise RuntimeError('No such dungeon %s for player %d' % (dungeonname, player)) def get_all_state(self, keys=False): ret = CollectionState(self) @@ -131,58 +132,61 @@ class World(object): def soft_collect(item): if item.name.startswith('Progressive '): if 'Sword' in item.name: - if ret.has('Golden Sword'): + if ret.has('Golden Sword', item.player): pass - elif ret.has('Tempered Sword') and self.difficulty_requirements.progressive_sword_limit >= 4: - ret.prog_items.append('Golden Sword') - elif ret.has('Master Sword') and self.difficulty_requirements.progressive_sword_limit >= 3: - ret.prog_items.append('Tempered Sword') - elif ret.has('Fighter Sword') and self.difficulty_requirements.progressive_sword_limit >= 2: - ret.prog_items.append('Master Sword') + elif ret.has('Tempered Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 4: + ret.prog_items.append(('Golden Sword', item.player)) + elif ret.has('Master Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 3: + ret.prog_items.append(('Tempered Sword', item.player)) + elif ret.has('Fighter Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 2: + ret.prog_items.append(('Master Sword', item.player)) elif self.difficulty_requirements.progressive_sword_limit >= 1: - ret.prog_items.append('Fighter Sword') + ret.prog_items.append(('Fighter Sword', item.player)) elif 'Glove' in item.name: - if ret.has('Titans Mitts'): + if ret.has('Titans Mitts', item.player): pass - elif ret.has('Power Glove'): - ret.prog_items.append('Titans Mitts') + elif ret.has('Power Glove', item.player): + ret.prog_items.append(('Titans Mitts', item.player)) else: - ret.prog_items.append('Power Glove') + ret.prog_items.append(('Power Glove', item.player)) elif 'Shield' in item.name: - if ret.has('Mirror Shield'): + if ret.has('Mirror Shield', item.player): pass - elif ret.has('Red Shield') and self.difficulty_requirements.progressive_shield_limit >= 3: - ret.prog_items.append('Mirror Shield') - elif ret.has('Blue Shield') and self.difficulty_requirements.progressive_shield_limit >= 2: - ret.prog_items.append('Red Shield') + elif ret.has('Red Shield', item.player) and self.difficulty_requirements.progressive_shield_limit >= 3: + ret.prog_items.append(('Mirror Shield', item.player)) + elif ret.has('Blue Shield', item.player) and self.difficulty_requirements.progressive_shield_limit >= 2: + ret.prog_items.append(('Red Shield', item.player)) elif self.difficulty_requirements.progressive_shield_limit >= 1: - ret.prog_items.append('Blue Shield') + ret.prog_items.append(('Blue Shield', item.player)) elif item.name.startswith('Bottle'): - if ret.bottle_count() < self.difficulty_requirements.progressive_bottle_limit: - ret.prog_items.append(item.name) + if ret.bottle_count(item.player) < self.difficulty_requirements.progressive_bottle_limit: + ret.prog_items.append((item.name, item.player)) elif item.advancement or item.key: - ret.prog_items.append(item.name) + ret.prog_items.append((item.name, item.player)) for item in self.itempool: soft_collect(item) + if keys: - from Items import ItemFactory - for item in ItemFactory(['Small Key (Escape)', 'Big Key (Eastern Palace)', 'Big Key (Desert Palace)', 'Small Key (Desert Palace)', 'Big Key (Tower of Hera)', 'Small Key (Tower of Hera)', 'Small Key (Agahnims Tower)', 'Small Key (Agahnims Tower)', - 'Big Key (Palace of Darkness)'] + ['Small Key (Palace of Darkness)'] * 6 + ['Big Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Skull Woods)'] + ['Small Key (Skull Woods)'] * 3 + ['Big Key (Swamp Palace)', - 'Small Key (Swamp Palace)', 'Big Key (Ice Palace)'] + ['Small Key (Ice Palace)'] * 2 + ['Big Key (Misery Mire)', 'Big Key (Turtle Rock)', 'Big Key (Ganons Tower)'] + ['Small Key (Misery Mire)'] * 3 + ['Small Key (Turtle Rock)'] * 4 + ['Small Key (Ganons Tower)'] * 4): - soft_collect(item) + for p in range(1, self.players + 1): + from Items import ItemFactory + for item in ItemFactory(['Small Key (Escape)', 'Big Key (Eastern Palace)', 'Big Key (Desert Palace)', 'Small Key (Desert Palace)', 'Big Key (Tower of Hera)', 'Small Key (Tower of Hera)', 'Small Key (Agahnims Tower)', 'Small Key (Agahnims Tower)', + 'Big Key (Palace of Darkness)'] + ['Small Key (Palace of Darkness)'] * 6 + ['Big Key (Thieves Town)', 'Small Key (Thieves Town)', 'Big Key (Skull Woods)'] + ['Small Key (Skull Woods)'] * 3 + ['Big Key (Swamp Palace)', + 'Small Key (Swamp Palace)', 'Big Key (Ice Palace)'] + ['Small Key (Ice Palace)'] * 2 + ['Big Key (Misery Mire)', 'Big Key (Turtle Rock)', 'Big Key (Ganons Tower)'] + ['Small Key (Misery Mire)'] * 3 + ['Small Key (Turtle Rock)'] * 4 + ['Small Key (Ganons Tower)'] * 4, + p): + soft_collect(item) ret.sweep_for_events() return ret def get_items(self): return [loc.item for loc in self.get_filled_locations()] + self.itempool - def find_items(self, item): - return [location for location in self.get_locations() if location.item is not None and location.item.name == item] + def find_items(self, item, player): + return [location for location in self.get_locations() if location.item is not None and location.item.name == item and location.item.player == player] def push_item(self, location, item, collect=True): if not isinstance(location, Location): - location = self.get_location(location) + raise RuntimeError('Cannot assign item %s to location %s (player %d).' % (item, location, item.player)) if location.can_fill(self.state, item, False): location.item = item @@ -214,21 +218,21 @@ class World(object): def clear_location_cache(self): self._cached_locations = None - def get_unfilled_locations(self): - return [location for location in self.get_locations() if location.item is None] + def get_unfilled_locations(self, player=None): + return [location for location in self.get_locations() if (player is None or location.player == player) and location.item is None] - def get_filled_locations(self): - return [location for location in self.get_locations() if location.item is not None] + def get_filled_locations(self, player=None): + return [location for location in self.get_locations() if (player is None or location.player == player) and location.item is not None] - def get_reachable_locations(self, state=None): + def get_reachable_locations(self, state=None, player=None): if state is None: state = self.state - return [location for location in self.get_locations() if state.can_reach(location)] + return [location for location in self.get_locations() if (player is None or location.player == player) and state.can_reach(location)] - def get_placeable_locations(self, state=None): + def get_placeable_locations(self, state=None, player=None): if state is None: state = self.state - return [location for location in self.get_locations() if location.item is None and state.can_reach(location)] + return [location for location in self.get_locations() if (player is None or location.player == player) and location.item is None and state.can_reach(location)] def unlocks_new_location(self, item): temp_state = self.state.copy() @@ -241,11 +245,10 @@ class World(object): return False def has_beaten_game(self, state): - if state.has('Triforce'): + if all([state.has('Triforce', player) for player in range(1, self.players + 1)]): + return True + if self.goal in ['triforcehunt'] and all([((state.item_count('Triforce Piece', player) + state.item_count('Power Star', player)) > self.treasure_hunt_count) for player in range(1, self.players + 1)]): return True - if self.goal in ['triforcehunt']: - if state.item_count('Triforce Piece') + state.item_count('Power Star') > self.treasure_hunt_count: - return True return False def can_beat_game(self, starting_state=None): @@ -259,17 +262,21 @@ class World(object): prog_locations = [location for location in self.get_locations() if location.item is not None and (location.item.advancement or location.event) and location not in state.locations_checked] - treasure_pieces_collected = state.item_count('Triforce Piece') + state.item_count('Power Star') + treasure_pieces_collected = dict([(player, state.item_count('Triforce Piece', player) + state.item_count('Power Star', player)) for player in range(1, self.players + 1)]) + triforces_collected = dict([(player, state.has('Triforce', player)) for player in range(1, self.players + 1)]) + while prog_locations: sphere = [] # build up spheres of collection radius. Everything in each sphere is independent from each other in dependencies and only depends on lower spheres for location in prog_locations: if state.can_reach(location): if location.item.name == 'Triforce': - return True + triforces_collected[location.item.player] = True + if all(triforces_collected.values()): + return True elif location.item.name in ['Triforce Piece', 'Power Star']: - treasure_pieces_collected += 1 - if self.goal in ['triforcehunt'] and treasure_pieces_collected >= self.treasure_hunt_count: + treasure_pieces_collected[location.item.player] += 1 + if self.goal in ['triforcehunt'] and all([treasure_pieces_collected[player] >= self.treasure_hunt_count for player in range(1, self.players + 1)]): return True sphere.append(location) @@ -283,8 +290,7 @@ class World(object): return False - @property - def option_identifier(self): + def option_identifier(self, maxbytes, player): id_value = 0 id_value_max = 1 @@ -309,10 +315,11 @@ class World(object): markbool(self.shuffle_ganon) markbool(self.keysanity) markbool(self.retro) - assert id_value_max <= 0xFFFFFFFF + marksequence(range(1, 256), self.players) + marksequence(range(1, self.players + 1), player) + assert id_value_max < (1 << (maxbytes * 8)) return id_value - class CollectionState(object): def __init__(self, parent): @@ -326,7 +333,6 @@ class CollectionState(object): def update_reachable_regions(self): self.stale=False - new_regions = True reachable_regions_count = len(self.reachable_regions) while new_regions: @@ -347,149 +353,149 @@ class CollectionState(object): ret.stale = True return ret - def can_reach(self, spot, resolution_hint=None): + def can_reach(self, spot, resolution_hint=None, player=None): try: spot_type = spot.spot_type except AttributeError: # try to resolve a name if resolution_hint == 'Location': - spot = self.world.get_location(spot) + spot = self.world.get_location(spot, player) elif resolution_hint == 'Entrance': - spot = self.world.get_entrance(spot) + spot = self.world.get_entrance(spot, player) else: # default to Region - spot = self.world.get_region(spot) + spot = self.world.get_region(spot, player) - return spot.can_reach(self) - def sweep_for_events(self, key_only=False): + def sweep_for_events(self, key_only=False, locations=None): # this may need improvement new_locations = True checked_locations = 0 while new_locations: - reachable_events = [location for location in self.world.get_filled_locations() if location.event and (not key_only or location.item.key) and self.can_reach(location)] + if locations is None: + locations = self.world.get_filled_locations() + reachable_events = [location for location in locations if location.event and (not key_only or location.item.key) and self.can_reach(location)] for event in reachable_events: - if event.name not in self.events: - self.events.append(event.name) + if (event.name, event.player) not in self.events: + self.events.append((event.name, event.player)) self.collect(event.item, True, event) new_locations = len(reachable_events) > checked_locations checked_locations = len(reachable_events) - - def has(self, item, count=1): + def has(self, item, player, count=1): if count == 1: - return item in self.prog_items - return self.item_count(item) >= count + return (item, player) in self.prog_items + return self.item_count(item, player) >= count - def has_key(self, item, count=1): + def has_key(self, item, player, count=1): if self.world.retro: - return self.can_buy_unlimited('Small Key (Universal)') + return self.can_buy_unlimited('Small Key (Universal)', player) if count == 1: - return item in self.prog_items - return self.item_count(item) >= count + return (item, player) in self.prog_items + return self.item_count(item, player) >= count - def can_buy_unlimited(self, item): + def can_buy_unlimited(self, item, player): for shop in self.world.shops: - if shop.has_unlimited(item) and shop.region.can_reach(self): + if shop.region.player == player and shop.has_unlimited(item) and shop.region.can_reach(self): return True return False - def item_count(self, item): - return len([pritem for pritem in self.prog_items if pritem == item]) + def item_count(self, item, player): + return len([pritem for pritem in self.prog_items if pritem == (item, player)]) - def can_lift_rocks(self): - return self.has('Power Glove') or self.has('Titans Mitts') + def can_lift_rocks(self, player): + return self.has('Power Glove', player) or self.has('Titans Mitts', player) - def has_bottle(self): - return self.bottle_count() > 0 + def has_bottle(self, player): + return self.bottle_count(player) > 0 - def bottle_count(self): - return len([pritem for pritem in self.prog_items if pritem.startswith('Bottle')]) + def bottle_count(self, player): + return len([pritem for pritem in self.prog_items if pritem[0].startswith('Bottle') and pritem[1] == player]) - def has_hearts(self, count): + def has_hearts(self, player, count): # Warning: This only considers items that are marked as advancement items - return self.heart_count() >= count + return self.heart_count(player) >= count - def heart_count(self): + def heart_count(self, player): # Warning: This only considers items that are marked as advancement items return ( - self.item_count('Boss Heart Container') - + self.item_count('Sanctuary Heart Container') - + self.item_count('Piece of Heart') // 4 + self.item_count('Boss Heart Container', player) + + self.item_count('Sanctuary Heart Container', player) + + self.item_count('Piece of Heart', player) // 4 + 3 # starting hearts ) - def can_lift_heavy_rocks(self): - return self.has('Titans Mitts') + def can_lift_heavy_rocks(self, player): + return self.has('Titans Mitts', player) - def can_extend_magic(self, smallmagic=16, fullrefill=False): #This reflects the total magic Link has, not the total extra he has. + def can_extend_magic(self, player, smallmagic=16, fullrefill=False): #This reflects the total magic Link has, not the total extra he has. basemagic = 8 - if self.has('Quarter Magic'): + if self.has('Quarter Magic', player): basemagic = 32 - elif self.has('Half Magic'): + elif self.has('Half Magic', player): basemagic = 16 - if self.can_buy_unlimited('Green Potion') or self.can_buy_unlimited('Blue Potion'): + if self.can_buy_unlimited('Green Potion', player) or self.can_buy_unlimited('Blue Potion', player): if self.world.difficulty == 'hard' and not fullrefill: - basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count()) + basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count(player)) elif self.world.difficulty == 'expert' and not fullrefill: - basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count()) + basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count(player)) elif self.world.difficulty == 'insane' and not fullrefill: basemagic = basemagic else: - basemagic = basemagic + basemagic * self.bottle_count() + basemagic = basemagic + basemagic * self.bottle_count(player) return basemagic >= smallmagic - def can_kill_most_things(self, enemies=5): - return (self.has_blunt_weapon() - or self.has('Cane of Somaria') - or (self.has('Cane of Byrna') and (enemies < 6 or self.can_extend_magic())) - or self.can_shoot_arrows() - or self.has('Fire Rod') + def can_kill_most_things(self, player, enemies=5): + return (self.has_blunt_weapon(player) + or self.has('Cane of Somaria', player) + or (self.has('Cane of Byrna', player) and (enemies < 6 or self.can_extend_magic(player))) + or self.can_shoot_arrows(player) + or self.has('Fire Rod', player) ) - def can_shoot_arrows(self): + def can_shoot_arrows(self, player): if self.world.retro: #TODO: need to decide how we want to handle wooden arrows longer-term (a can-buy-a check, or via dynamic shop location) #FIXME: Should do something about hard+ ganon only silvers. For the moment, i believe they effective grant wooden, so we are safe - return self.has('Bow') and (self.has('Silver Arrows') or self.can_buy_unlimited('Single Arrow')) - return self.has('Bow') + return self.has('Bow', player) and (self.has('Silver Arrows', player) or self.can_buy_unlimited('Single Arrow', player)) + return self.has('Bow', player) - def can_get_good_bee(self): - cave = self.world.get_region('Good Bee Cave') + def can_get_good_bee(self, player): + cave = self.world.get_region('Good Bee Cave', player) return ( - self.has_bottle() and - self.has('Bug Catching Net') and - (self.has_Boots() or (self.has_sword() and self.has('Quake'))) and + self.has_bottle(player) and + self.has('Bug Catching Net', player) and + (self.has_Boots(player) or (self.has_sword(player) and self.has('Quake', player))) and cave.can_reach(self) and - (cave.is_light_world or self.has_Pearl()) + (cave.is_light_world or self.has_Pearl(player)) ) - def has_sword(self): - return self.has('Fighter Sword') or self.has('Master Sword') or self.has('Tempered Sword') or self.has('Golden Sword') + def has_sword(self, player): + return self.has('Fighter Sword', player) or self.has('Master Sword', player) or self.has('Tempered Sword', player) or self.has('Golden Sword', player) - def has_beam_sword(self): - return self.has('Master Sword') or self.has('Tempered Sword') or self.has('Golden Sword') + def has_beam_sword(self, player): + return self.has('Master Sword', player) or self.has('Tempered Sword', player) or self.has('Golden Sword', player) - def has_blunt_weapon(self): - return self.has_sword() or self.has('Hammer') + def has_blunt_weapon(self, player): + return self.has_sword(player) or self.has('Hammer', player) - def has_Mirror(self): - return self.has('Magic Mirror') + def has_Mirror(self, player): + return self.has('Magic Mirror', player) - def has_Boots(self): - return self.has('Pegasus Boots') + def has_Boots(self, player): + return self.has('Pegasus Boots', player) - def has_Pearl(self): - return self.has('Moon Pearl') + def has_Pearl(self, player): + return self.has('Moon Pearl', player) - def has_fire_source(self): - return self.has('Fire Rod') or self.has('Lamp') + def has_fire_source(self, player): + return self.has('Fire Rod', player) or self.has('Lamp', player) - def has_misery_mire_medallion(self): - return self.has(self.world.required_medallions[0]) + def has_misery_mire_medallion(self, player): + return self.has(self.world.required_medallions[player][0], player) - def has_turtle_rock_medallion(self): - return self.has(self.world.required_medallions[1]) + def has_turtle_rock_medallion(self, player): + return self.has(self.world.required_medallions[player][1], player) def collect(self, item, event=False, location=None): if location: @@ -497,47 +503,47 @@ class CollectionState(object): changed = False if item.name.startswith('Progressive '): if 'Sword' in item.name: - if self.has('Golden Sword'): + if self.has('Golden Sword', item.player): pass - elif self.has('Tempered Sword') and self.world.difficulty_requirements.progressive_sword_limit >= 4: - self.prog_items.append('Golden Sword') + elif self.has('Tempered Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 4: + self.prog_items.append(('Golden Sword', item.player)) changed = True - elif self.has('Master Sword') and self.world.difficulty_requirements.progressive_sword_limit >= 3: - self.prog_items.append('Tempered Sword') + elif self.has('Master Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 3: + self.prog_items.append(('Tempered Sword', item.player)) changed = True - elif self.has('Fighter Sword') and self.world.difficulty_requirements.progressive_sword_limit >= 2: - self.prog_items.append('Master Sword') + elif self.has('Fighter Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 2: + self.prog_items.append(('Master Sword', item.player)) changed = True elif self.world.difficulty_requirements.progressive_sword_limit >= 1: - self.prog_items.append('Fighter Sword') + self.prog_items.append(('Fighter Sword', item.player)) changed = True elif 'Glove' in item.name: - if self.has('Titans Mitts'): + if self.has('Titans Mitts', item.player): pass - elif self.has('Power Glove'): - self.prog_items.append('Titans Mitts') + elif self.has('Power Glove', item.player): + self.prog_items.append(('Titans Mitts', item.player)) changed = True else: - self.prog_items.append('Power Glove') + self.prog_items.append(('Power Glove', item.player)) changed = True elif 'Shield' in item.name: - if self.has('Mirror Shield'): + if self.has('Mirror Shield', item.player): pass - elif self.has('Red Shield') and self.world.difficulty_requirements.progressive_shield_limit >= 3: - self.prog_items.append('Mirror Shield') + elif self.has('Red Shield', item.player) and self.world.difficulty_requirements.progressive_shield_limit >= 3: + self.prog_items.append(('Mirror Shield', item.player)) changed = True - elif self.has('Blue Shield') and self.world.difficulty_requirements.progressive_shield_limit >= 2: - self.prog_items.append('Red Shield') + elif self.has('Blue Shield', item.player) and self.world.difficulty_requirements.progressive_shield_limit >= 2: + self.prog_items.append(('Red Shield', item.player)) changed = True elif self.world.difficulty_requirements.progressive_shield_limit >= 1: - self.prog_items.append('Blue Shield') + self.prog_items.append(('Blue Shield', item.player)) changed = True elif item.name.startswith('Bottle'): - if self.bottle_count() < self.world.difficulty_requirements.progressive_bottle_limit: - self.prog_items.append(item.name) + if self.bottle_count(item.player) < self.world.difficulty_requirements.progressive_bottle_limit: + self.prog_items.append((item.name, item.player)) changed = True elif event or item.advancement: - self.prog_items.append(item.name) + self.prog_items.append((item.name, item.player)) changed = True self.stale = True @@ -551,27 +557,27 @@ class CollectionState(object): to_remove = item.name if to_remove.startswith('Progressive '): if 'Sword' in to_remove: - if self.has('Golden Sword'): + if self.has('Golden Sword', item.player): to_remove = 'Golden Sword' - elif self.has('Tempered Sword'): + elif self.has('Tempered Sword', item.player): to_remove = 'Tempered Sword' - elif self.has('Master Sword'): + elif self.has('Master Sword', item.player): to_remove = 'Master Sword' - elif self.has('Fighter Sword'): + elif self.has('Fighter Sword', item.player): to_remove = 'Fighter Sword' else: to_remove = None elif 'Glove' in item.name: - if self.has('Titans Mitts'): + if self.has('Titans Mitts', item.player): to_remove = 'Titans Mitts' - elif self.has('Power Glove'): + elif self.has('Power Glove', item.player): to_remove = 'Power Glove' else: to_remove = None if to_remove is not None: try: - self.prog_items.remove(to_remove) + self.prog_items.remove((to_remove, item.player)) except ValueError: return @@ -582,8 +588,8 @@ class CollectionState(object): def __getattr__(self, item): if item.startswith('can_reach_'): return self.can_reach(item[10]) - elif item.startswith('has_'): - return self.has(item[4]) + #elif item.startswith('has_'): + # return self.has(item[4]) raise RuntimeError('Cannot parse %s.' % item) @@ -602,7 +608,7 @@ class RegionType(Enum): class Region(object): - def __init__(self, name, type, hint): + def __init__(self, name, type, hint, player): self.name = name self.type = type self.entrances = [] @@ -616,6 +622,7 @@ class Region(object): self.spot_type = 'Region' self.hint_text = hint self.recursion_count = 0 + self.player = player def can_reach(self, state): if state.stale: @@ -634,7 +641,7 @@ class Region(object): is_dungeon_item = item.key or item.map or item.compass sewer_hack = self.world.mode == 'standard' and item.name == 'Small Key (Escape)' if sewer_hack or (is_dungeon_item and not self.world.keysanity): - return self.dungeon and self.dungeon.is_dungeon_item(item) + return self.dungeon and self.dungeon.is_dungeon_item(item) and (item.player == self.player or self.world.keysanity) return True @@ -642,12 +649,12 @@ class Region(object): return str(self.__unicode__()) def __unicode__(self): - return '%s' % self.name + return '%s (Player %d)' % (self.name, self.player) class Entrance(object): - def __init__(self, name='', parent=None): + def __init__(self, player, name='', parent=None): self.name = name self.parent_region = parent self.connected_region = None @@ -657,6 +664,7 @@ class Entrance(object): self.recursion_count = 0 self.vanilla = None self.access_rule = lambda state: True + self.player = player def can_reach(self, state): if state.can_reach(self.parent_region) and self.access_rule(state): @@ -677,18 +685,19 @@ class Entrance(object): return str(self.__unicode__()) def __unicode__(self): - return '%s' % self.name + return '%s (Player %d)' % (self.name, self.player) class Dungeon(object): - def __init__(self, name, regions, big_key, small_keys, dungeon_items): + def __init__(self, name, regions, big_key, small_keys, dungeon_items, player): self.name = name self.regions = regions self.big_key = big_key self.small_keys = small_keys self.dungeon_items = dungeon_items self.bosses = dict() + self.player = player @property def boss(self): @@ -707,25 +716,26 @@ class Dungeon(object): return self.dungeon_items + self.keys def is_dungeon_item(self, item): - return item.name in [dungeon_item.name for dungeon_item in self.all_items] + return item.player == self.player and item.name in [dungeon_item.name for dungeon_item in self.all_items] def __str__(self): return str(self.__unicode__()) def __unicode__(self): - return '%s' % self.name + return '%s (Player %d)' % (self.name, self.player) class Boss(object): - def __init__(self, name, enemizer_name, defeat_rule): + def __init__(self, name, enemizer_name, defeat_rule, player): self.name = name self.enemizer_name = enemizer_name self.defeat_rule = defeat_rule + self.player = player def can_defeat(self, state): - return self.defeat_rule(state) + return self.defeat_rule(state, self.player) class Location(object): - def __init__(self, name='', address=None, crystal=False, hint_text=None, parent=None): + def __init__(self, player, name='', address=None, crystal=False, hint_text=None, parent=None): self.name = name self.parent_region = parent self.item = None @@ -739,6 +749,7 @@ class Location(object): self.always_allow = lambda item, state: False self.access_rule = lambda state: True self.item_rule = lambda item: True + self.player = player def can_fill(self, state, item, check_access=True): return self.always_allow(state, item) or (self.parent_region.can_fill(item) and self.item_rule(item) and (not check_access or self.can_reach(state))) @@ -752,12 +763,12 @@ class Location(object): return str(self.__unicode__()) def __unicode__(self): - return '%s' % self.name + return '%s (Player %d)' % (self.name, self.player) class Item(object): - def __init__(self, name='', advancement=False, priority=False, type=None, code=None, pedestal_hint=None, pedestal_credit=None, sickkid_credit=None, zora_credit=None, witch_credit=None, fluteboy_credit=None, hint_text=None): + def __init__(self, name='', advancement=False, priority=False, type=None, code=None, pedestal_hint=None, pedestal_credit=None, sickkid_credit=None, zora_credit=None, witch_credit=None, fluteboy_credit=None, hint_text=None, player=None): self.name = name self.advancement = advancement self.priority = priority @@ -771,6 +782,7 @@ class Item(object): self.hint_text = hint_text self.code = code self.location = None + self.player = player @property def key(self): @@ -792,7 +804,7 @@ class Item(object): return str(self.__unicode__()) def __unicode__(self): - return '%s' % self.name + return '%s (Player %d)' % (self.name, self.player) # have 6 address that need to be filled @@ -874,11 +886,14 @@ class Spoiler(object): self.shops = [] self.bosses = OrderedDict() - def set_entrance(self, entrance, exit, direction): - self.entrances[(entrance, direction)] = OrderedDict([('entrance', entrance), ('exit', exit), ('direction', direction)]) + def set_entrance(self, entrance, exit, direction, player): + self.entrances[(entrance, direction, player)] = OrderedDict([('player', player), ('entrance', entrance), ('exit', exit), ('direction', direction)]) def parse_data(self): - self.medallions = OrderedDict([('Misery Mire', self.world.required_medallions[0]), ('Turtle Rock', self.world.required_medallions[1])]) + self.medallions = OrderedDict() + for player in range(1, self.world.players + 1): + self.medallions['Misery Mire (Player %d)' % player] = self.world.required_medallions[player][0] + self.medallions['Turtle Rock (Player %d)' % player] = self.world.required_medallions[player][1] self.locations = OrderedDict() listed_locations = set() @@ -897,7 +912,7 @@ class Spoiler(object): 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[dungeon.name] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in dungeon_locations]) + self.locations[str(dungeon)] = OrderedDict([(str(location), 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] @@ -905,10 +920,11 @@ class Spoiler(object): self.locations['Other Locations'] = OrderedDict([(str(location), str(location.item) if location.item is not None else 'Nothing') for location in other_locations]) listed_locations.update(other_locations) + self.shops = [] for shop in self.world.shops: if not shop.active: continue - shopdata = {'location': shop.region.name, + shopdata = {'location': str(shop.region), 'type': 'Take Any' if shop.type == ShopType.TakeAny else 'Shop' } for index, item in enumerate(shop.inventory): @@ -917,22 +933,24 @@ class Spoiler(object): shopdata['item_{}'.format(index)] = "{} — {}".format(item['item'], item['price']) if item['price'] else item['item'] self.shops.append(shopdata) - self.bosses["Eastern Palace"] = self.world.get_dungeon("Eastern Palace").boss.name - self.bosses["Desert Palace"] = self.world.get_dungeon("Desert Palace").boss.name - self.bosses["Tower Of Hera"] = self.world.get_dungeon("Tower of Hera").boss.name - self.bosses["Hyrule Castle"] = "Agahnim" - self.bosses["Palace Of Darkness"] = self.world.get_dungeon("Palace of Darkness").boss.name - self.bosses["Swamp Palace"] = self.world.get_dungeon("Swamp Palace").boss.name - self.bosses["Skull Woods"] = self.world.get_dungeon("Skull Woods").boss.name - self.bosses["Thieves Town"] = self.world.get_dungeon("Thieves Town").boss.name - self.bosses["Ice Palace"] = self.world.get_dungeon("Ice Palace").boss.name - self.bosses["Misery Mire"] = self.world.get_dungeon("Misery Mire").boss.name - self.bosses["Turtle Rock"] = self.world.get_dungeon("Turtle Rock").boss.name - self.bosses["Ganons Tower Basement"] = self.world.get_dungeon('Ganons Tower').bosses['bottom'].name - self.bosses["Ganons Tower Middle"] = self.world.get_dungeon('Ganons Tower').bosses['middle'].name - self.bosses["Ganons Tower Top"] = self.world.get_dungeon('Ganons Tower').bosses['top'].name - self.bosses["Ganons Tower"] = "Agahnim 2" - self.bosses["Ganon"] = "Ganon" + for player in range(1, self.world.players + 1): + self.bosses[str(player)] = OrderedDict() + self.bosses[str(player)]["Eastern Palace"] = self.world.get_dungeon("Eastern Palace", player).boss.name + self.bosses[str(player)]["Desert Palace"] = self.world.get_dungeon("Desert Palace", player).boss.name + self.bosses[str(player)]["Tower Of Hera"] = self.world.get_dungeon("Tower of Hera", player).boss.name + self.bosses[str(player)]["Hyrule Castle"] = "Agahnim" + self.bosses[str(player)]["Palace Of Darkness"] = self.world.get_dungeon("Palace of Darkness", player).boss.name + self.bosses[str(player)]["Swamp Palace"] = self.world.get_dungeon("Swamp Palace", player).boss.name + self.bosses[str(player)]["Skull Woods"] = self.world.get_dungeon("Skull Woods", player).boss.name + self.bosses[str(player)]["Thieves Town"] = self.world.get_dungeon("Thieves Town", player).boss.name + self.bosses[str(player)]["Ice Palace"] = self.world.get_dungeon("Ice Palace", player).boss.name + self.bosses[str(player)]["Misery Mire"] = self.world.get_dungeon("Misery Mire", player).boss.name + self.bosses[str(player)]["Turtle Rock"] = self.world.get_dungeon("Turtle Rock", player).boss.name + self.bosses[str(player)]["Ganons Tower Basement"] = self.world.get_dungeon('Ganons Tower', player).bosses['bottom'].name + self.bosses[str(player)]["Ganons Tower Middle"] = self.world.get_dungeon('Ganons Tower', player).bosses['middle'].name + self.bosses[str(player)]["Ganons Tower Top"] = self.world.get_dungeon('Ganons Tower', player).bosses['top'].name + self.bosses[str(player)]["Ganons Tower"] = "Agahnim 2" + self.bosses[str(player)]["Ganon"] = "Ganon" from Main import __version__ as ERVersion @@ -951,7 +969,8 @@ class Spoiler(object): 'quickswap': self.world.quickswap, 'fastmenu': self.world.fastmenu, 'disable_music': self.world.disable_music, - 'keysanity': self.world.keysanity} + 'keysanity': self.world.keysanity, + 'players': self.world.players} def to_json(self): self.parse_data() @@ -982,13 +1001,15 @@ class Spoiler(object): outfile.write('Maps and Compasses in Dungeons: %s\n' % ('Yes' if self.metadata['dungeonitems'] else 'No')) outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.metadata['quickswap'] else 'No')) outfile.write('Menu speed: %s\n' % self.metadata['fastmenu']) - outfile.write('Keysanity enabled: %s' % ('Yes' if self.metadata['keysanity'] else 'No')) + outfile.write('Keysanity enabled: %s\n' % ('Yes' if self.metadata['keysanity'] else 'No')) + outfile.write('Players: %d' % self.metadata['players']) if self.entrances: outfile.write('\n\nEntrances:\n\n') - outfile.write('\n'.join(['%s %s %s' % (entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) - outfile.write('\n\nMedallions') - outfile.write('\n\nMisery Mire Medallion: %s' % self.medallions['Misery Mire']) - outfile.write('\nTurtle Rock Medallion: %s' % self.medallions['Turtle Rock']) + outfile.write('\n'.join(['Player %d: %s %s %s' % (entry['player'], entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) + outfile.write('\n\nMedallions\n') + for player in range(1, self.world.players + 1): + outfile.write('\nMisery Mire Medallion (Player %d): %s' % (player, self.medallions['Misery Mire (Player %d)' % player])) + outfile.write('\nTurtle Rock Medallion (Player %d): %s' % (player, self.medallions['Turtle Rock (Player %d)' % player])) outfile.write('\n\nLocations:\n\n') outfile.write('\n'.join(['%s: %s' % (location, item) for grouping in self.locations.values() for (location, item) in grouping.items()])) outfile.write('\n\nShops:\n\n') diff --git a/Bosses.py b/Bosses.py index 20c7aabf..43072966 100644 --- a/Bosses.py +++ b/Bosses.py @@ -4,101 +4,101 @@ import random from BaseClasses import Boss from Fill import FillError -def BossFactory(boss): +def BossFactory(boss, player): if boss is None: return None if boss in boss_table: enemizer_name, defeat_rule = boss_table[boss] - return Boss(boss, enemizer_name, defeat_rule) + return Boss(boss, enemizer_name, defeat_rule, player) logging.getLogger('').error('Unknown Boss: %s', boss) return None -def ArmosKnightsDefeatRule(state): +def ArmosKnightsDefeatRule(state, player): # Magic amounts are probably a bit overkill return ( - state.has_blunt_weapon() or - (state.has('Cane of Somaria') and state.can_extend_magic(10)) or - (state.has('Cane of Byrna') and state.can_extend_magic(16)) or - (state.has('Ice Rod') and state.can_extend_magic(32)) or - (state.has('Fire Rod') and state.can_extend_magic(32)) or - state.has('Blue Boomerang') or - state.has('Red Boomerang')) + state.has_blunt_weapon(player) or + (state.has('Cane of Somaria', player) and state.can_extend_magic(player, 10)) or + (state.has('Cane of Byrna', player) and state.can_extend_magic(player, 16)) or + (state.has('Ice Rod', player) and state.can_extend_magic(player, 32)) or + (state.has('Fire Rod', player) and state.can_extend_magic(player, 32)) or + state.has('Blue Boomerang', player) or + state.has('Red Boomerang', player)) -def LanmolasDefeatRule(state): +def LanmolasDefeatRule(state, player): # TODO: Allow the canes here? return ( - state.has_blunt_weapon() or - state.has('Fire Rod') or - state.has('Ice Rod') or - state.can_shoot_arrows()) + state.has_blunt_weapon(player) or + state.has('Fire Rod', player) or + state.has('Ice Rod', player) or + state.can_shoot_arrows(player)) -def MoldormDefeatRule(state): - return state.has_blunt_weapon() +def MoldormDefeatRule(state, player): + return state.has_blunt_weapon(player) -def HelmasaurKingDefeatRule(state): - return state.has_blunt_weapon() or state.can_shoot_arrows() +def HelmasaurKingDefeatRule(state, player): + return state.has_blunt_weapon(player) or state.can_shoot_arrows(player) -def ArrghusDefeatRule(state): - if not state.has('Hookshot'): +def ArrghusDefeatRule(state, player): + if not state.has('Hookshot', player): return False # TODO: ideally we would have a check for bow and silvers, which combined with the # hookshot is enough. This is not coded yet because the silvers that only work in pyramid feature # makes this complicated - if state.has_blunt_weapon(): + if state.has_blunt_weapon(player): return True - return ((state.has('Fire Rod') and (state.can_shoot_arrows() or state.can_extend_magic(12))) or #assuming mostly gitting two puff with one shot - (state.has('Ice Rod') and (state.can_shoot_arrows() or state.can_extend_magic(16)))) + return ((state.has('Fire Rod', player) and (state.can_shoot_arrows(player) or state.can_extend_magic(player, 12))) or #assuming mostly gitting two puff with one shot + (state.has('Ice Rod', player) and (state.can_shoot_arrows(player) or state.can_extend_magic(player, 16)))) -def MothulaDefeatRule(state): +def MothulaDefeatRule(state, player): return ( - state.has_blunt_weapon() or - (state.has('Fire Rod') and state.can_extend_magic(10)) or + state.has_blunt_weapon(player) or + (state.has('Fire Rod', player) and state.can_extend_magic(player, 10)) or # TODO: Not sure how much (if any) extend magic is needed for these two, since they only apply # to non-vanilla locations, so are harder to test, so sticking with what VT has for now: - (state.has('Cane of Somaria') and state.can_extend_magic(16)) or - (state.has('Cane of Byrna') and state.can_extend_magic(16)) or - state.can_get_good_bee() + (state.has('Cane of Somaria', player) and state.can_extend_magic(player, 16)) or + (state.has('Cane of Byrna', player) and state.can_extend_magic(player, 16)) or + state.can_get_good_bee(player) ) -def BlindDefeatRule(state): - return state.has_blunt_weapon() or state.has('Cane of Somaria') or state.has('Cane of Byrna') +def BlindDefeatRule(state, player): + return state.has_blunt_weapon(player) or state.has('Cane of Somaria', player) or state.has('Cane of Byrna', player) -def KholdstareDefeatRule(state): +def KholdstareDefeatRule(state, player): return ( ( - state.has('Fire Rod') or + state.has('Fire Rod', player) or ( - state.has('Bombos') and + state.has('Bombos', player) and # FIXME: the following only actually works for the vanilla location for swordless mode - (state.has_sword() or state.world.mode == 'swordless') + (state.has_sword(player) or state.world.mode == 'swordless') ) ) and ( - state.has_blunt_weapon() or - (state.has('Fire Rod') and state.can_extend_magic(20)) or + state.has_blunt_weapon(player) or + (state.has('Fire Rod', player) and state.can_extend_magic(player, 20)) or # FIXME: this actually only works for the vanilla location for swordless mode ( - state.has('Fire Rod') and - state.has('Bombos') and + state.has('Fire Rod', player) and + state.has('Bombos', player) and state.world.mode == 'swordless' and - state.can_extend_magic(16) + state.can_extend_magic(player, 16) ) ) ) -def VitreousDefeatRule(state): - return state.can_shoot_arrows() or state.has_blunt_weapon() +def VitreousDefeatRule(state, player): + return state.can_shoot_arrows(player) or state.has_blunt_weapon(player) -def TrinexxDefeatRule(state): - if not (state.has('Fire Rod') and state.has('Ice Rod')): +def TrinexxDefeatRule(state, player): + if not (state.has('Fire Rod', player) and state.has('Ice Rod', player)): return False - return state.has('Hammer') or state.has_beam_sword() or (state.has_sword() and state.can_extend_magic(32)) + return state.has('Hammer', player) or state.has_beam_sword(player) or (state.has_sword(player) and state.can_extend_magic(player, 32)) -def AgahnimDefeatRule(state): - return state.has_sword() or state.has('Hammer') or state.has('Bug Catching Net') +def AgahnimDefeatRule(state, player): + return state.has_sword(player) or state.has('Hammer', player) or state.has('Bug Catching Net', player) boss_table = { 'Armos Knights': ('Armos', ArmosKnightsDefeatRule), @@ -137,7 +137,7 @@ def can_place_boss(world, boss, dungeon_name, level=None): return False return True -def place_bosses(world): +def place_bosses(world, player): if world.boss_shuffle == 'none': return # Most to least restrictive order @@ -162,7 +162,7 @@ def place_bosses(world): if world.boss_shuffle in ["basic", "normal"]: # temporary hack for swordless kholdstare: if world.mode == 'swordless': - world.get_dungeon('Ice Palace').boss = BossFactory('Kholdstare') + world.get_dungeon('Ice Palace', player).boss = BossFactory('Kholdstare', player) logging.getLogger('').debug('Placing boss Kholdstare at Ice Palace') boss_locations.remove(['Ice Palace', None]) placeable_bosses.remove('Kholdstare') @@ -183,7 +183,7 @@ def place_bosses(world): bosses.remove(boss) logging.getLogger('').debug('Placing boss %s at %s', boss, loc_text) - world.get_dungeon(loc).bosses[level] = BossFactory(boss) + world.get_dungeon(loc, player).bosses[level] = BossFactory(boss, player) elif world.boss_shuffle == "chaos": #all bosses chosen at random for [loc, level] in boss_locations: loc_text = loc + (' ('+level+')' if level else '') @@ -193,4 +193,4 @@ def place_bosses(world): raise FillError('Could not place boss for location %s' % loc_text) logging.getLogger('').debug('Placing boss %s at %s', boss, loc_text) - world.get_dungeon(loc).bosses[level] = BossFactory(boss) + world.get_dungeon(loc, player).bosses[level] = BossFactory(boss, player) diff --git a/Dungeons.py b/Dungeons.py index a53e0b40..bed73730 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -6,44 +6,45 @@ from Fill import fill_restrictive from Items import ItemFactory -def create_dungeons(world): +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 else small_keys, dungeon_items) - dungeon.boss = BossFactory(default_boss) + dungeon = Dungeon(name, dungeon_regions, big_key, [] if world.retro else small_keys, dungeon_items, player) + dungeon.boss = BossFactory(default_boss, player) for region in dungeon.regions: - world.get_region(region).dungeon = dungeon + world.get_region(region, player).dungeon = dungeon return dungeon - ES = make_dungeon('Hyrule Castle', None, ['Hyrule Castle', 'Sewers', 'Sewer Drop', 'Sewers (Dark)', 'Sanctuary'], None, [ItemFactory('Small Key (Escape)')], [ItemFactory('Map (Escape)')]) - EP = make_dungeon('Eastern Palace', 'Armos Knights', ['Eastern Palace'], ItemFactory('Big Key (Eastern Palace)'), [], ItemFactory(['Map (Eastern Palace)', 'Compass (Eastern Palace)'])) - DP = make_dungeon('Desert Palace', 'Lanmolas', ['Desert Palace North', 'Desert Palace Main (Inner)', 'Desert Palace Main (Outer)', 'Desert Palace East'], ItemFactory('Big Key (Desert Palace)'), [ItemFactory('Small Key (Desert Palace)')], ItemFactory(['Map (Desert Palace)', 'Compass (Desert Palace)'])) - ToH = make_dungeon('Tower of Hera', 'Moldorm', ['Tower of Hera (Bottom)', 'Tower of Hera (Basement)', 'Tower of Hera (Top)'], ItemFactory('Big Key (Tower of Hera)'), [ItemFactory('Small Key (Tower of Hera)')], ItemFactory(['Map (Tower of Hera)', 'Compass (Tower of Hera)'])) - AT = make_dungeon('Agahnims Tower', 'Agahnim', ['Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2), []) - PoD = make_dungeon('Palace of Darkness', 'Helmasaur King', ['Palace of Darkness (Entrance)', 'Palace of Darkness (Center)', 'Palace of Darkness (Big Key Chest)', 'Palace of Darkness (Bonk Section)', 'Palace of Darkness (North)', 'Palace of Darkness (Maze)', 'Palace of Darkness (Harmless Hellway)', 'Palace of Darkness (Final Section)'], ItemFactory('Big Key (Palace of Darkness)'), ItemFactory(['Small Key (Palace of Darkness)'] * 6), ItemFactory(['Map (Palace of Darkness)', 'Compass (Palace of Darkness)'])) - TT = make_dungeon('Thieves Town', 'Blind', ['Thieves Town (Entrance)', 'Thieves Town (Deep)', 'Blind Fight'], ItemFactory('Big Key (Thieves Town)'), [ItemFactory('Small Key (Thieves Town)')], ItemFactory(['Map (Thieves Town)', 'Compass (Thieves Town)'])) - SW = make_dungeon('Skull Woods', 'Mothula', ['Skull Woods Final Section (Entrance)', 'Skull Woods First Section', 'Skull Woods Second Section', 'Skull Woods Second Section (Drop)', 'Skull Woods Final Section (Mothula)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Top)'], ItemFactory('Big Key (Skull Woods)'), ItemFactory(['Small Key (Skull Woods)'] * 2), ItemFactory(['Map (Skull Woods)', 'Compass (Skull Woods)'])) - SP = make_dungeon('Swamp Palace', 'Arrghus', ['Swamp Palace (Entrance)', 'Swamp Palace (First Room)', 'Swamp Palace (Starting Area)', 'Swamp Palace (Center)', 'Swamp Palace (North)'], ItemFactory('Big Key (Swamp Palace)'), [ItemFactory('Small Key (Swamp Palace)')], ItemFactory(['Map (Swamp Palace)', 'Compass (Swamp Palace)'])) - IP = make_dungeon('Ice Palace', 'Kholdstare', ['Ice Palace (Entrance)', 'Ice Palace (Main)', 'Ice Palace (East)', 'Ice Palace (East Top)', 'Ice Palace (Kholdstare)'], ItemFactory('Big Key (Ice Palace)'), ItemFactory(['Small Key (Ice Palace)'] * 2), ItemFactory(['Map (Ice Palace)', 'Compass (Ice Palace)'])) - MM = make_dungeon('Misery Mire', 'Vitreous', ['Misery Mire (Entrance)', 'Misery Mire (Main)', 'Misery Mire (West)', 'Misery Mire (Final Area)', 'Misery Mire (Vitreous)'], ItemFactory('Big Key (Misery Mire)'), ItemFactory(['Small Key (Misery Mire)'] * 3), ItemFactory(['Map (Misery Mire)', 'Compass (Misery Mire)'])) - TR = make_dungeon('Turtle Rock', 'Trinexx', ['Turtle Rock (Entrance)', 'Turtle Rock (First Section)', 'Turtle Rock (Chain Chomp Room)', 'Turtle Rock (Second Section)', 'Turtle Rock (Big Chest)', 'Turtle Rock (Crystaroller Room)', 'Turtle Rock (Dark Room)', 'Turtle Rock (Eye Bridge)', 'Turtle Rock (Trinexx)'], ItemFactory('Big Key (Turtle Rock)'), ItemFactory(['Small Key (Turtle Rock)'] * 4), ItemFactory(['Map (Turtle Rock)', 'Compass (Turtle Rock)'])) - GT = make_dungeon('Ganons Tower', 'Agahnim2', ['Ganons Tower (Entrance)', 'Ganons Tower (Tile Room)', 'Ganons Tower (Compass Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower (Map Room)', 'Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)', 'Ganons Tower (Bottom)', 'Ganons Tower (Top)', 'Ganons Tower (Before Moldorm)', 'Ganons Tower (Moldorm)', 'Agahnim 2'], ItemFactory('Big Key (Ganons Tower)'), ItemFactory(['Small Key (Ganons Tower)'] * 4), ItemFactory(['Map (Ganons Tower)', 'Compass (Ganons Tower)'])) + ES = make_dungeon('Hyrule Castle', None, ['Hyrule Castle', 'Sewers', 'Sewer Drop', 'Sewers (Dark)', 'Sanctuary'], None, [ItemFactory('Small Key (Escape)', player)], [ItemFactory('Map (Escape)', player)]) + EP = make_dungeon('Eastern Palace', 'Armos Knights', ['Eastern Palace'], ItemFactory('Big Key (Eastern Palace)', player), [], ItemFactory(['Map (Eastern Palace)', 'Compass (Eastern Palace)'], player)) + DP = make_dungeon('Desert Palace', 'Lanmolas', ['Desert Palace North', 'Desert Palace Main (Inner)', 'Desert Palace Main (Outer)', 'Desert Palace East'], 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', ['Tower of Hera (Bottom)', 'Tower of Hera (Basement)', 'Tower of Hera (Top)'], ItemFactory('Big Key (Tower of Hera)', player), [ItemFactory('Small Key (Tower of Hera)', player)], ItemFactory(['Map (Tower of Hera)', 'Compass (Tower of Hera)'], player)) + AT = make_dungeon('Agahnims Tower', 'Agahnim', ['Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) + PoD = make_dungeon('Palace of Darkness', 'Helmasaur King', ['Palace of Darkness (Entrance)', 'Palace of Darkness (Center)', 'Palace of Darkness (Big Key Chest)', 'Palace of Darkness (Bonk Section)', 'Palace of Darkness (North)', 'Palace of Darkness (Maze)', 'Palace of Darkness (Harmless Hellway)', 'Palace of Darkness (Final Section)'], 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 Town (Entrance)', 'Thieves Town (Deep)', 'Blind Fight'], 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 Woods Final Section (Entrance)', 'Skull Woods First Section', 'Skull Woods Second Section', 'Skull Woods Second Section (Drop)', 'Skull Woods Final Section (Mothula)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Top)'], ItemFactory('Big Key (Skull Woods)', player), ItemFactory(['Small Key (Skull Woods)'] * 2, player), ItemFactory(['Map (Skull Woods)', 'Compass (Skull Woods)'], player)) + SP = make_dungeon('Swamp Palace', 'Arrghus', ['Swamp Palace (Entrance)', 'Swamp Palace (First Room)', 'Swamp Palace (Starting Area)', 'Swamp Palace (Center)', 'Swamp Palace (North)'], 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 Palace (Entrance)', 'Ice Palace (Main)', 'Ice Palace (East)', 'Ice Palace (East Top)', 'Ice Palace (Kholdstare)'], 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', ['Misery Mire (Entrance)', 'Misery Mire (Main)', 'Misery Mire (West)', 'Misery Mire (Final Area)', 'Misery Mire (Vitreous)'], 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', ['Turtle Rock (Entrance)', 'Turtle Rock (First Section)', 'Turtle Rock (Chain Chomp Room)', 'Turtle Rock (Second Section)', 'Turtle Rock (Big Chest)', 'Turtle Rock (Crystaroller Room)', 'Turtle Rock (Dark Room)', 'Turtle Rock (Eye Bridge)', 'Turtle Rock (Trinexx)'], ItemFactory('Big Key (Turtle Rock)', player), ItemFactory(['Small Key (Turtle Rock)'] * 4, player), ItemFactory(['Map (Turtle Rock)', 'Compass (Turtle Rock)'], player)) + GT = make_dungeon('Ganons Tower', 'Agahnim2', ['Ganons Tower (Entrance)', 'Ganons Tower (Tile Room)', 'Ganons Tower (Compass Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower (Map Room)', 'Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)', 'Ganons Tower (Bottom)', 'Ganons Tower (Top)', 'Ganons Tower (Before Moldorm)', 'Ganons Tower (Moldorm)', 'Agahnim 2'], 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') - GT.bosses['middle'] = BossFactory('Lanmolas') - GT.bosses['top'] = BossFactory('Moldorm') + GT.bosses['bottom'] = BossFactory('Armos Knights', player) + GT.bosses['middle'] = BossFactory('Lanmolas', player) + GT.bosses['top'] = BossFactory('Moldorm', player) - world.dungeons = [ES, EP, DP, ToH, AT, PoD, TT, SW, SP, IP, MM, TR, GT] + world.dungeons += [ES, EP, DP, ToH, AT, PoD, TT, SW, SP, IP, MM, TR, GT] def fill_dungeons(world): freebes = ['Ganons Tower - Map Chest', 'Palace of Darkness - Harmless Hellway', 'Palace of Darkness - Big Key Chest', 'Turtle Rock - Big Key Chest'] all_state_base = world.get_all_state() - if world.retro: - world.push_item(world.get_location('Skull Woods - Pinball Room'), ItemFactory('Small Key (Universal)'), False) - else: - world.push_item(world.get_location('Skull Woods - Pinball Room'), ItemFactory('Small Key (Skull Woods)'), False) - world.get_location('Skull Woods - Pinball Room').event = True + for player in range(1, world.players + 1): + if world.retro: + world.push_item(world.get_location('Skull Woods - Pinball Room', player), ItemFactory('Small Key (Universal)', player), False) + else: + world.push_item(world.get_location('Skull Woods - Pinball Room', player), ItemFactory('Small Key (Skull Woods)', player), False) + world.get_location('Skull Woods - Pinball Room', player).event = True dungeons = [(list(dungeon.regions), dungeon.big_key, list(dungeon.small_keys), list(dungeon.dungeon_items)) for dungeon in world.dungeons] @@ -88,7 +89,7 @@ def fill_dungeons(world): small_keys.append(small_key) dungeons.append((dungeon_regions, big_key, small_keys, dungeon_items)) # infinite regression protection - if loopcnt < 30: + if loopcnt < (30 * world.players): break else: raise RuntimeError('No suitable location for %s' % small_key) @@ -114,13 +115,14 @@ def get_dungeon_item_pool(world): def fill_dungeons_restrictive(world, shuffled_locations): all_state_base = world.get_all_state() - skull_woods_big_chest = world.get_location('Skull Woods - Pinball Room') - if world.retro: - world.push_item(skull_woods_big_chest, ItemFactory('Small Key (Universal)'), False) - else: - world.push_item(skull_woods_big_chest, ItemFactory('Small Key (Skull Woods)'), False) - skull_woods_big_chest.event = True - shuffled_locations.remove(skull_woods_big_chest) + for player in range(1, world.players + 1): + skull_woods_big_chest = world.get_location('Skull Woods - Pinball Room', player) + if world.retro: + world.push_item(skull_woods_big_chest, ItemFactory('Small Key (Universal)', player), False) + else: + world.push_item(skull_woods_big_chest, ItemFactory('Small Key (Skull Woods)', player), False) + skull_woods_big_chest.event = True + shuffled_locations.remove(skull_woods_big_chest) if world.keysanity: #in keysanity dungeon items are distributed as part of the normal item pool diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index fed67800..55bf1d58 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -8,7 +8,7 @@ import sys from Gui import guiMain from Main import main -from Utils import is_bundled, close_console +from Utils import is_bundled, close_console, output_path class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter): @@ -213,8 +213,15 @@ def start(): Output .json patch to stdout instead of a patched rom. Used for VT site integration, do not use otherwise. ''') + parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) + parser.add_argument('--skip_playthrough', action='store_true', default=False) + + parser.add_argument('--outputpath') args = parser.parse_args() + if args.outputpath and os.path.isdir(args.outputpath): + output_path.cached_path = args.outputpath + if is_bundled() and len(sys.argv) == 1: # for the bundled builds, if we have no arguments, the user # probably wants the gui. Users of the bundled build who want the command line diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 73709adb..0265dae8 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -3,9 +3,9 @@ import random # ToDo: With shuffle_ganon option, prevent gtower from linking to an exit only location through a 2 entrance cave. -def link_entrances(world): - connect_two_way(world, 'Links House', 'Links House Exit') # unshuffled. For now - connect_exit(world, 'Chris Houlihan Room Exit', 'Links House') # should always match link's house, except for plandos +def link_entrances(world, player): + connect_two_way(world, 'Links House', 'Links House Exit', player) # unshuffled. For now + connect_exit(world, 'Chris Houlihan Room Exit', 'Links House', player) # should always match link's house, except for plandos Dungeon_Exits = Dungeon_Exits_Base.copy() Cave_Exits = Cave_Exits_Base.copy() @@ -16,24 +16,24 @@ def link_entrances(world): # setup mandatory connections for exitname, regionname in mandatory_connections: - connect_simple(world, exitname, regionname) + connect_simple(world, exitname, regionname, player) # if we do not shuffle, set default connections if world.shuffle == 'vanilla': for exitname, regionname in default_connections: - connect_simple(world, exitname, regionname) + connect_simple(world, exitname, regionname, player) for exitname, regionname in default_dungeon_connections: - connect_simple(world, exitname, regionname) + connect_simple(world, exitname, regionname, player) elif world.shuffle == 'dungeonssimple': for exitname, regionname in default_connections: - connect_simple(world, exitname, regionname) + connect_simple(world, exitname, regionname, player) simple_shuffle_dungeons(world) elif world.shuffle == 'dungeonsfull': for exitname, regionname in default_connections: - connect_simple(world, exitname, regionname) + connect_simple(world, exitname, regionname, player) - skull_woods_shuffle(world) + skull_woods_shuffle(world, player) dungeon_exits = list(Dungeon_Exits) lw_entrances = list(LW_Dungeon_Entrances) @@ -41,26 +41,26 @@ def link_entrances(world): if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: dungeon_exits.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) lw_entrances.append('Hyrule Castle Entrance (South)') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) else: dw_entrances.append('Ganons Tower') dungeon_exits.append('Ganons Tower Exit') if world.mode == 'standard': # rest of hyrule castle must be in light world, so it has to be the one connected to east exit of desert - connect_mandatory_exits(world, lw_entrances, [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], list(LW_Dungeon_Entrances_Must_Exit)) + connect_mandatory_exits(world, lw_entrances, [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], list(LW_Dungeon_Entrances_Must_Exit), player) else: - connect_mandatory_exits(world, lw_entrances, dungeon_exits, list(LW_Dungeon_Entrances_Must_Exit)) - connect_mandatory_exits(world, dw_entrances, dungeon_exits, list(DW_Dungeon_Entrances_Must_Exit)) - connect_caves(world, lw_entrances, dw_entrances, dungeon_exits) + connect_mandatory_exits(world, lw_entrances, dungeon_exits, list(LW_Dungeon_Entrances_Must_Exit), player) + connect_mandatory_exits(world, dw_entrances, dungeon_exits, list(DW_Dungeon_Entrances_Must_Exit), player) + connect_caves(world, lw_entrances, dw_entrances, dungeon_exits, player) elif world.shuffle == 'simple': - simple_shuffle_dungeons(world) + simple_shuffle_dungeons(world, player) old_man_entrances = list(Old_Man_Entrances) caves = list(Cave_Exits) @@ -79,8 +79,8 @@ def link_entrances(world): while two_door_caves: entrance1, entrance2 = two_door_caves.pop() exit1, exit2 = caves.pop() - connect_two_way(world, entrance1, exit1) - connect_two_way(world, entrance2, exit2) + connect_two_way(world, entrance1, exit1, player) + connect_two_way(world, entrance2, exit2, player) # now the remaining pairs two_door_caves = list(Two_Door_Caves) @@ -88,8 +88,8 @@ def link_entrances(world): while two_door_caves: entrance1, entrance2 = two_door_caves.pop() exit1, exit2 = caves.pop() - connect_two_way(world, entrance1, exit1) - connect_two_way(world, entrance2, exit2) + connect_two_way(world, entrance1, exit1, player) + connect_two_way(world, entrance2, exit2, player) # at this point only Light World death mountain entrances remain # place old man, has limited options @@ -100,38 +100,38 @@ def link_entrances(world): remaining_entrances.extend(old_man_entrances) random.shuffle(remaining_entrances) old_man_entrance = remaining_entrances.pop() - connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') - connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) # add old man house to ensure it is always somewhere on light death mountain caves.extend(list(Old_Man_House)) caves.extend(list(three_exit_caves)) # connect rest - connect_caves(world, remaining_entrances, [], caves) + connect_caves(world, remaining_entrances, [], caves, player) # scramble holes - scramble_holes(world) + scramble_holes(world, player) # place blacksmith, has limited options random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) bomb_shop_doors.extend(blacksmith_doors) # place bomb shop, has limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) single_doors.extend(bomb_shop_doors) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) # place remaining doors - connect_doors(world, single_doors, door_targets) + connect_doors(world, single_doors, door_targets, player) elif world.shuffle == 'restricted': - simple_shuffle_dungeons(world) + simple_shuffle_dungeons(world, player) lw_entrances = list(LW_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances) dw_entrances = list(DW_Entrances + DW_Single_Cave_Doors) @@ -144,17 +144,17 @@ def link_entrances(world): door_targets = list(Single_Cave_Targets) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) # in restricted, the only mandatory exits are in dark world - connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, 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] random.shuffle(old_man_entrances) old_man_exit = old_man_entrances.pop() - connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) lw_entrances.remove(old_man_exit) # place blacksmith, has limited options @@ -163,7 +163,7 @@ def link_entrances(world): blacksmith_doors = [door for door in blacksmith_doors if door in all_entrances] random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) if blacksmith_hut in lw_entrances: lw_entrances.remove(blacksmith_hut) if blacksmith_hut in dw_entrances: @@ -176,7 +176,7 @@ def link_entrances(world): bomb_shop_doors = [door for door in bomb_shop_doors if door in all_entrances] random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) if bomb_shop in lw_entrances: lw_entrances.remove(bomb_shop) if bomb_shop in dw_entrances: @@ -185,24 +185,24 @@ def link_entrances(world): # place the old man cave's entrance somewhere in the light world random.shuffle(lw_entrances) old_man_entrance = lw_entrances.pop() - connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) # place Old Man House in Light World - connect_caves(world, lw_entrances, [], list(Old_Man_House)) #for multiple seeds + connect_caves(world, lw_entrances, [], list(Old_Man_House), player) #for multiple seeds # now scramble the rest - connect_caves(world, lw_entrances, dw_entrances, caves) + connect_caves(world, lw_entrances, dw_entrances, caves, player) # scramble holes - scramble_holes(world) + scramble_holes(world, player) doors = lw_entrances + dw_entrances # place remaining doors - connect_doors(world, doors, door_targets) + connect_doors(world, doors, door_targets, player) elif world.shuffle == 'restricted_legacy': - simple_shuffle_dungeons(world) + simple_shuffle_dungeons(world, player) lw_entrances = list(LW_Entrances) dw_entrances = list(DW_Entrances) @@ -216,7 +216,7 @@ def link_entrances(world): door_targets = list(Single_Cave_Targets) # only use two exit caves to do mandatory dw connections - connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, player) # add three exit doors to pool for remainder caves.extend(three_exit_caves) @@ -227,37 +227,37 @@ def link_entrances(world): lw_entrances.extend(old_man_entrances) random.shuffle(lw_entrances) old_man_entrance = lw_entrances.pop() - connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') - connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) # place Old Man House in Light World - connect_caves(world, lw_entrances, [], Old_Man_House) + connect_caves(world, lw_entrances, [], Old_Man_House, player) # connect rest. There's 2 dw entrances remaining, so we will not run into parity issue placing caves - connect_caves(world, lw_entrances, dw_entrances, caves) + connect_caves(world, lw_entrances, dw_entrances, caves, player) # scramble holes - scramble_holes(world) + scramble_holes(world, player) # place blacksmith, has limited options random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) bomb_shop_doors.extend(blacksmith_doors) # place dam and pyramid fairy, have limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) single_doors.extend(bomb_shop_doors) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) # place remaining doors - connect_doors(world, single_doors, door_targets) + connect_doors(world, single_doors, door_targets, player) elif world.shuffle == 'full': - skull_woods_shuffle(world) + skull_woods_shuffle(world, player) lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances) dw_entrances = list(DW_Entrances + DW_Dungeon_Entrances + DW_Single_Cave_Doors) @@ -271,17 +271,17 @@ def link_entrances(world): old_man_house = list(Old_Man_House) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: caves.append(tuple(random.sample(['Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)'],3))) lw_entrances.append('Hyrule Castle Entrance (South)') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) else: dw_entrances.append('Ganons Tower') caves.append('Ganons Tower Exit') @@ -291,34 +291,34 @@ def link_entrances(world): #we also places the Old Man House at this time to make sure he can be connected to the desert one way if random.randint(0, 1) == 0: caves += old_man_house - connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player) try: caves.remove(old_man_house[0]) except ValueError: pass else: #if the cave wasn't placed we get here - connect_caves(world, lw_entrances, [], old_man_house) - connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + connect_caves(world, lw_entrances, [], old_man_house, player) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, player) else: - connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, player) caves += old_man_house - connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player) try: caves.remove(old_man_house[0]) except ValueError: pass else: #if the cave wasn't placed we get here - connect_caves(world, lw_entrances, [], old_man_house) + connect_caves(world, lw_entrances, [], old_man_house, player) if world.mode == 'standard': # rest of hyrule castle must be in light world - connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')]) + connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], 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] random.shuffle(old_man_entrances) old_man_exit = old_man_entrances.pop() - connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) lw_entrances.remove(old_man_exit) # place blacksmith, has limited options @@ -327,7 +327,7 @@ def link_entrances(world): blacksmith_doors = [door for door in blacksmith_doors if door in all_entrances] random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) if blacksmith_hut in lw_entrances: lw_entrances.remove(blacksmith_hut) if blacksmith_hut in dw_entrances: @@ -340,7 +340,7 @@ def link_entrances(world): bomb_shop_doors = [door for door in bomb_shop_doors if door in all_entrances] random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) if bomb_shop in lw_entrances: lw_entrances.remove(bomb_shop) if bomb_shop in dw_entrances: @@ -348,21 +348,21 @@ def link_entrances(world): # place the old man cave's entrance somewhere in the light world old_man_entrance = lw_entrances.pop() - connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) # now scramble the rest - connect_caves(world, lw_entrances, dw_entrances, caves) + connect_caves(world, lw_entrances, dw_entrances, caves, player) # scramble holes - scramble_holes(world) + scramble_holes(world, player) doors = lw_entrances + dw_entrances # place remaining doors - connect_doors(world, doors, door_targets) + connect_doors(world, doors, door_targets, player) elif world.shuffle == 'crossed': - skull_woods_shuffle(world) + skull_woods_shuffle(world, player) entrances = list(LW_Entrances + LW_Dungeon_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances + DW_Entrances + DW_Dungeon_Entrances + DW_Single_Cave_Doors) must_exits = list(DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + LW_Dungeon_Entrances_Must_Exit) @@ -374,34 +374,34 @@ def link_entrances(world): door_targets = list(Single_Cave_Targets) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: caves.append(tuple(random.sample(['Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)'],3))) entrances.append('Hyrule Castle Entrance (South)') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) else: entrances.append('Ganons Tower') caves.append('Ganons Tower Exit') #place must-exit caves - connect_mandatory_exits(world, entrances, caves, must_exits) + connect_mandatory_exits(world, entrances, caves, must_exits, player) if world.mode == 'standard': # rest of hyrule castle must be dealt with - connect_caves(world, entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')]) + connect_caves(world, entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], 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 entrances] random.shuffle(old_man_entrances) old_man_exit = old_man_entrances.pop() - connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) entrances.remove(old_man_exit) # place blacksmith, has limited options @@ -409,7 +409,7 @@ def link_entrances(world): blacksmith_doors = [door for door in blacksmith_doors if door in entrances] random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) entrances.remove(blacksmith_hut) bomb_shop_doors.extend(blacksmith_doors) @@ -419,26 +419,26 @@ def link_entrances(world): bomb_shop_doors = [door for door in bomb_shop_doors if door in entrances] random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) entrances.remove(bomb_shop) # place the old man cave's entrance somewhere random.shuffle(entrances) old_man_entrance = entrances.pop() - connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) # now scramble the rest - connect_caves(world, entrances, [], caves) + connect_caves(world, entrances, [], caves, player) # scramble holes - scramble_holes(world) + scramble_holes(world, player) # place remaining doors - connect_doors(world, entrances, door_targets) + connect_doors(world, entrances, door_targets, player) elif world.shuffle == 'full_legacy': - skull_woods_shuffle(world) + skull_woods_shuffle(world, player) lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + Old_Man_Entrances) dw_entrances = list(DW_Entrances + DW_Dungeon_Entrances) @@ -453,27 +453,27 @@ def link_entrances(world): if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: caves.append(tuple(random.sample(['Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)'],3))) lw_entrances.append('Hyrule Castle Entrance (South)') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) else: dw_entrances.append('Ganons Tower') caves.append('Ganons Tower Exit') # we randomize which world requirements we fulfill first so we get better dungeon distribution if random.randint(0, 1) == 0: - connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) - connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, player) else: - connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) - connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, player) + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player) if world.mode == 'standard': # rest of hyrule castle must be in light world - connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')]) + connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], player) # place old man, has limited options # exit has to come from specific set of doors, the entrance is free to move about @@ -484,35 +484,35 @@ def link_entrances(world): random.shuffle(lw_entrances) old_man_entrance = lw_entrances.pop() - connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') - connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) # place Old Man House in Light World - connect_caves(world, lw_entrances, [], list(Old_Man_House)) #need this to avoid badness with multiple seeds + connect_caves(world, lw_entrances, [], list(Old_Man_House), player) #need this to avoid badness with multiple seeds # now scramble the rest - connect_caves(world, lw_entrances, dw_entrances, caves) + connect_caves(world, lw_entrances, dw_entrances, caves, player) # scramble holes - scramble_holes(world) + scramble_holes(world, player) # place blacksmith, has limited options random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) bomb_shop_doors.extend(blacksmith_doors) # place bomb shop, has limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) single_doors.extend(bomb_shop_doors) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) # place remaining doors - connect_doors(world, single_doors, door_targets) + connect_doors(world, single_doors, door_targets, player) elif world.shuffle == 'madness_legacy': # here lie dragons, connections are no longer two way lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + Old_Man_Entrances) @@ -554,18 +554,18 @@ def link_entrances(world): if world.mode == 'standard': # cannot move uncle cave - connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance') - connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs') - connect_entrance(world, lw_doors.pop(), 'Hyrule Castle Secret Entrance Exit') + connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) + connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) + connect_entrance(world, lw_doors.pop(), 'Hyrule Castle Secret Entrance Exit', player) else: lw_hole_entrances.append('Hyrule Castle Secret Entrance Drop') hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) lw_entrances.append('Hyrule Castle Secret Entrance Stairs') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') - connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit') - connect_entrance(world, 'Pyramid Hole', 'Pyramid') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) + connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit', player) + connect_entrance(world, 'Pyramid Hole', 'Pyramid', player) else: dw_entrances.append('Ganons Tower') caves.append('Ganons Tower Exit') @@ -587,29 +587,29 @@ def link_entrances(world): sw_hole_pool = dw_hole_entrances mandatory_dark_world.append('Skull Woods First Section Exit') for target in ['Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)']: - connect_entrance(world, sw_hole_pool.pop(), target) + connect_entrance(world, sw_hole_pool.pop(), target, player) # sanctuary has to be in light world - connect_entrance(world, lw_hole_entrances.pop(), 'Sewer Drop') + connect_entrance(world, lw_hole_entrances.pop(), 'Sewer Drop', player) mandatory_light_world.append('Sanctuary Exit') # fill up remaining holes for hole in dw_hole_entrances: exits, target = hole_targets.pop() mandatory_dark_world.append(exits) - connect_entrance(world, hole, target) + connect_entrance(world, hole, target, player) for hole in lw_hole_entrances: exits, target = hole_targets.pop() mandatory_light_world.append(exits) - connect_entrance(world, hole, target) + connect_entrance(world, hole, target, player) # hyrule castle handling if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) random.shuffle(lw_entrances) - connect_exit(world, 'Hyrule Castle Exit (South)', lw_entrances.pop()) + connect_exit(world, 'Hyrule Castle Exit (South)', lw_entrances.pop(), player) mandatory_light_world.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) else: lw_doors.append('Hyrule Castle Entrance (South)') @@ -648,8 +648,8 @@ def link_entrances(world): exit = cave[-1] cave = cave[:-1] - connect_exit(world, exit, entrance) - connect_entrance(world, worldoors.pop(), exit) + connect_exit(world, exit, entrance, player) + connect_entrance(world, worldoors.pop(), exit, player) # rest of cave now is forced to be in this world worldspecific.append(cave) @@ -672,8 +672,8 @@ def link_entrances(world): old_man_exit = old_man_entrances.pop() lw_entrances.remove(old_man_exit) - connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit) - connect_entrance(world, lw_doors.pop(), 'Old Man Cave Exit (East)') + connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit, player) + connect_entrance(world, lw_doors.pop(), 'Old Man Cave Exit (East)', player) mandatory_light_world.append('Old Man Cave Exit (West)') # we connect up the mandatory associations we have found @@ -682,18 +682,18 @@ def link_entrances(world): mandatory = (mandatory,) for exit in mandatory: # point out somewhere - connect_exit(world, exit, lw_entrances.pop()) + connect_exit(world, exit, lw_entrances.pop(), player) # point in from somewhere - connect_entrance(world, lw_doors.pop(), exit) + connect_entrance(world, lw_doors.pop(), exit, player) for mandatory in mandatory_dark_world: if not isinstance(mandatory, tuple): mandatory = (mandatory,) for exit in mandatory: # point out somewhere - connect_exit(world, exit, dw_entrances.pop()) + connect_exit(world, exit, dw_entrances.pop(), player) # point in from somewhere - connect_entrance(world, dw_doors.pop(), exit) + connect_entrance(world, dw_doors.pop(), exit, player) # handle remaining caves while caves: @@ -727,8 +727,8 @@ def link_entrances(world): target_entrances = dw_entrances for exit in cave: - connect_exit(world, exit, target_entrances.pop()) - connect_entrance(world, target_doors.pop(), exit) + connect_exit(world, exit, target_entrances.pop(), player) + connect_entrance(world, target_doors.pop(), exit, player) # handle simple doors @@ -740,20 +740,20 @@ def link_entrances(world): # place blacksmith, has limited options random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) bomb_shop_doors.extend(blacksmith_doors) # place dam and pyramid fairy, have limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) single_doors.extend(bomb_shop_doors) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) # place remaining doors - connect_doors(world, single_doors, door_targets) + connect_doors(world, single_doors, door_targets, player) elif world.shuffle == 'insanity': # beware ye who enter here @@ -789,13 +789,13 @@ def link_entrances(world): 'Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)'] # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) if world.mode == 'standard': # cannot move uncle cave - connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance') - connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs') - connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit') + connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) + connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) + connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit', player) else: hole_entrances.append('Hyrule Castle Secret Entrance Drop') hole_targets.append('Hyrule Castle Secret Entrance') @@ -803,9 +803,9 @@ def link_entrances(world): caves.append('Hyrule Castle Secret Entrance Exit') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') - connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit') - connect_entrance(world, 'Pyramid Hole', 'Pyramid') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) + connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit', player) + connect_entrance(world, 'Pyramid Hole', 'Pyramid', player) else: entrances.append('Ganons Tower') caves.extend(['Ganons Tower Exit', 'Pyramid Exit']) @@ -820,13 +820,13 @@ def link_entrances(world): # fill up holes for hole in hole_entrances: - connect_entrance(world, hole, hole_targets.pop()) + connect_entrance(world, hole, hole_targets.pop(), player) # hyrule castle handling if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') - connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop()) + connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop(), player) caves.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) else: doors.append('Hyrule Castle Entrance (South)') @@ -854,8 +854,8 @@ def link_entrances(world): exit = cave[-1] cave = cave[:-1] - connect_exit(world, exit, entrance) - connect_entrance(world, doors.pop(), exit) + connect_exit(world, exit, entrance, player) + connect_entrance(world, doors.pop(), exit, player) # rest of cave now is forced to be in this world caves.append(cave) @@ -870,22 +870,22 @@ def link_entrances(world): old_man_exit = old_man_entrances.pop() entrances.remove(old_man_exit) - connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit) - connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)') + connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit, player) + connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)', player) caves.append('Old Man Cave Exit (West)') # place blacksmith, has limited options blacksmith_doors = [door for door in blacksmith_doors if door in doors] random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) doors.remove(blacksmith_hut) # place dam and pyramid fairy, have limited options bomb_shop_doors = [door for door in bomb_shop_doors if door in doors] random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) doors.remove(bomb_shop) # handle remaining caves @@ -894,11 +894,11 @@ def link_entrances(world): cave = (cave,) for exit in cave: - connect_exit(world, exit, entrances.pop()) - connect_entrance(world, doors.pop(), exit) + connect_exit(world, exit, entrances.pop(), player) + connect_entrance(world, doors.pop(), exit, player) # place remaining doors - connect_doors(world, doors, door_targets) + connect_doors(world, doors, door_targets, player) elif world.shuffle == 'insanity_legacy': world.fix_fake_world = False # beware ye who enter here @@ -926,9 +926,9 @@ def link_entrances(world): if world.mode == 'standard': # cannot move uncle cave - connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance') - connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs') - connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit') + connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) + connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) + connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit', player) else: hole_entrances.append('Hyrule Castle Secret Entrance Drop') hole_targets.append('Hyrule Castle Secret Entrance') @@ -936,9 +936,9 @@ def link_entrances(world): caves.append('Hyrule Castle Secret Entrance Exit') if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') - connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit') - connect_entrance(world, 'Pyramid Hole', 'Pyramid') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) + connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit', player) + connect_entrance(world, 'Pyramid Hole', 'Pyramid', player) else: entrances.append('Ganons Tower') caves.extend(['Ganons Tower Exit', 'Pyramid Exit']) @@ -953,13 +953,13 @@ def link_entrances(world): # fill up holes for hole in hole_entrances: - connect_entrance(world, hole, hole_targets.pop()) + connect_entrance(world, hole, hole_targets.pop(), player) # hyrule castle handling if world.mode == 'standard': # must connect front of hyrule castle to do escape - connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') - connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop()) + connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop(), player) caves.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) else: doors.append('Hyrule Castle Entrance (South)') @@ -987,8 +987,8 @@ def link_entrances(world): exit = cave[-1] cave = cave[:-1] - connect_exit(world, exit, entrance) - connect_entrance(world, doors.pop(), exit) + connect_exit(world, exit, entrance, player) + connect_entrance(world, doors.pop(), exit, player) # rest of cave now is forced to be in this world caves.append(cave) @@ -1003,8 +1003,8 @@ def link_entrances(world): old_man_exit = old_man_entrances.pop() entrances.remove(old_man_exit) - connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit) - connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)') + connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit, player) + connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)', player) caves.append('Old Man Cave Exit (West)') # handle remaining caves @@ -1013,8 +1013,8 @@ def link_entrances(world): cave = (cave,) for exit in cave: - connect_exit(world, exit, entrances.pop()) - connect_entrance(world, doors.pop(), exit) + connect_exit(world, exit, entrances.pop(), player) + connect_entrance(world, doors.pop(), exit, player) # handle simple doors @@ -1026,52 +1026,52 @@ def link_entrances(world): # place blacksmith, has limited options random.shuffle(blacksmith_doors) blacksmith_hut = blacksmith_doors.pop() - connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) bomb_shop_doors.extend(blacksmith_doors) # place dam and pyramid fairy, have limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() - connect_entrance(world, bomb_shop, 'Big Bomb Shop') + connect_entrance(world, bomb_shop, 'Big Bomb Shop', player) single_doors.extend(bomb_shop_doors) # tavern back door cannot be shuffled yet - connect_doors(world, ['Tavern North'], ['Tavern']) + connect_doors(world, ['Tavern North'], ['Tavern'], player) # place remaining doors - connect_doors(world, single_doors, door_targets) + connect_doors(world, single_doors, door_targets, player) else: raise NotImplementedError('Shuffling not supported yet') # check for swamp palace fix - if world.get_entrance('Dam').connected_region.name != 'Dam' or world.get_entrance('Swamp Palace').connected_region.name != 'Swamp Palace (Entrance)': - world.swamp_patch_required = True + if world.get_entrance('Dam', player).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', player).connected_region.name != 'Swamp Palace (Entrance)': + world.swamp_patch_required[player] = True # check for potion shop location - if world.get_entrance('Potion Shop').connected_region.name != 'Potion Shop': - world.powder_patch_required = True + if world.get_entrance('Potion Shop', player).connected_region.name != 'Potion Shop': + world.powder_patch_required[player] = True # check for ganon location - if world.get_entrance('Pyramid Hole').connected_region.name != 'Pyramid': - world.ganon_at_pyramid = False + if world.get_entrance('Pyramid Hole', player).connected_region.name != 'Pyramid': + world.ganon_at_pyramid[player] = False # check for Ganon's Tower location - if world.get_entrance('Ganons Tower').connected_region.name != 'Ganons Tower (Entrance)': - world.ganonstower_vanilla = False + if world.get_entrance('Ganons Tower', player).connected_region.name != 'Ganons Tower (Entrance)': + world.ganonstower_vanilla[player] = False -def connect_simple(world, exitname, regionname): - world.get_entrance(exitname).connect(world.get_region(regionname)) +def connect_simple(world, exitname, regionname, player): + world.get_entrance(exitname, player).connect(world.get_region(regionname, player)) -def connect_entrance(world, entrancename, exitname): - entrance = world.get_entrance(entrancename) +def connect_entrance(world, entrancename, exitname, player): + entrance = world.get_entrance(entrancename, player) # check if we got an entrance or a region to connect to try: - region = world.get_region(exitname) + region = world.get_region(exitname, player) exit = None except RuntimeError: - exit = world.get_entrance(exitname) + exit = world.get_entrance(exitname, player) region = exit.parent_region # if this was already connected somewhere, remove the backreference @@ -1082,24 +1082,24 @@ def connect_entrance(world, entrancename, exitname): addresses = door_addresses[entrance.name][0] entrance.connect(region, addresses, target) - world.spoiler.set_entrance(entrance.name, exit.name if exit is not None else region.name, 'entrance') + world.spoiler.set_entrance(entrance.name, exit.name if exit is not None else region.name, 'entrance', player) -def connect_exit(world, exitname, entrancename): - entrance = world.get_entrance(entrancename) - exit = world.get_entrance(exitname) +def connect_exit(world, exitname, entrancename, player): + entrance = world.get_entrance(entrancename, player) + exit = world.get_entrance(exitname, player) # if this was already connected somewhere, remove the backreference if exit.connected_region is not None: exit.connected_region.entrances.remove(exit) exit.connect(entrance.parent_region, door_addresses[entrance.name][1], exit_ids[exit.name][1]) - world.spoiler.set_entrance(entrance.name, exit.name, 'exit') + world.spoiler.set_entrance(entrance.name, exit.name, 'exit', player) -def connect_two_way(world, entrancename, exitname): - entrance = world.get_entrance(entrancename) - exit = world.get_entrance(exitname) +def connect_two_way(world, entrancename, exitname, player): + entrance = world.get_entrance(entrancename, player) + exit = world.get_entrance(exitname, player) # if these were already connected somewhere, remove the backreference if entrance.connected_region is not None: @@ -1109,10 +1109,10 @@ def connect_two_way(world, entrancename, exitname): entrance.connect(exit.parent_region, door_addresses[entrance.name][0], exit_ids[exit.name][0]) exit.connect(entrance.parent_region, door_addresses[entrance.name][1], exit_ids[exit.name][1]) - world.spoiler.set_entrance(entrance.name, exit.name, 'both') + world.spoiler.set_entrance(entrance.name, exit.name, 'both', player) -def scramble_holes(world): +def scramble_holes(world, player): hole_entrances = [('Kakariko Well Cave', 'Kakariko Well Drop'), ('Bat Cave Cave', 'Bat Cave Drop'), ('North Fairy Cave', 'North Fairy Cave Drop'), @@ -1127,15 +1127,15 @@ def scramble_holes(world): ('Lumberjack Tree Exit', 'Lumberjack Tree (top)')] if not world.shuffle_ganon: - connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit') - connect_entrance(world, 'Pyramid Hole', 'Pyramid') + connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit', player) + connect_entrance(world, 'Pyramid Hole', 'Pyramid', player) else: hole_targets.append(('Pyramid Exit', 'Pyramid')) if world.mode == 'standard': # cannot move uncle cave - connect_two_way(world, 'Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Exit') - connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance') + connect_two_way(world, 'Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Exit', player) + connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) else: hole_entrances.append(('Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Drop')) hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) @@ -1146,30 +1146,30 @@ def scramble_holes(world): if world.shuffle_ganon: random.shuffle(hole_targets) exit, target = hole_targets.pop() - connect_two_way(world, 'Pyramid Entrance', exit) - connect_entrance(world, 'Pyramid Hole', target) + connect_two_way(world, 'Pyramid Entrance', exit, player) + connect_entrance(world, 'Pyramid Hole', target, player) if world.shuffle != 'crossed': hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) random.shuffle(hole_targets) for entrance, drop in hole_entrances: exit, target = hole_targets.pop() - connect_two_way(world, entrance, exit) - connect_entrance(world, drop, target) + connect_two_way(world, entrance, exit, player) + connect_entrance(world, drop, target, player) -def connect_random(world, exitlist, targetlist, two_way=False): +def connect_random(world, exitlist, targetlist, player, two_way=False): targetlist = list(targetlist) random.shuffle(targetlist) for exit, target in zip(exitlist, targetlist): if two_way: - connect_two_way(world, exit, target) + connect_two_way(world, exit, target, player) else: - connect_entrance(world, exit, target) + connect_entrance(world, exit, target, player) -def connect_mandatory_exits(world, entrances, caves, must_be_exits): +def connect_mandatory_exits(world, entrances, caves, must_be_exits, player): """This works inplace""" random.shuffle(entrances) random.shuffle(caves) @@ -1187,7 +1187,7 @@ def connect_mandatory_exits(world, entrances, caves, must_be_exits): raise RuntimeError('No more caves left. Should not happen!') # all caves are sorted so that the last exit is always reachable - connect_two_way(world, exit, cave[-1]) + connect_two_way(world, exit, cave[-1], player) if len(cave) == 2: entrance = entrances.pop() # ToDo Better solution, this is a hot fix. Do not connect both sides of trock ledge only to each other @@ -1195,10 +1195,10 @@ def connect_mandatory_exits(world, entrances, caves, must_be_exits): new_entrance = entrances.pop() entrances.append(entrance) entrance = new_entrance - connect_two_way(world, entrance, cave[0]) + connect_two_way(world, entrance, cave[0], player) elif cave[-1] == 'Spectacle Rock Cave Exit': #Spectacle rock only has one exit for exit in cave[:-1]: - connect_two_way(world,entrances.pop(),exit) + connect_two_way(world,entrances.pop(),exit, player) else:#save for later so we can connect to multiple exits caves.append(cave[0:-1]) random.shuffle(caves) @@ -1207,11 +1207,11 @@ def connect_mandatory_exits(world, entrances, caves, must_be_exits): for cave in used_caves: if cave in caves: #check if we placed multiple entrances from this 3 or 4 exit for exit in cave: - connect_two_way(world, entrances.pop(), exit) + connect_two_way(world, entrances.pop(), exit, player) caves.remove(cave) -def connect_caves(world, lw_entrances, dw_entrances, caves): +def connect_caves(world, lw_entrances, dw_entrances, caves, player): """This works inplace""" random.shuffle(lw_entrances) random.shuffle(dw_entrances) @@ -1236,40 +1236,40 @@ def connect_caves(world, lw_entrances, dw_entrances, caves): target = lw_entrances if target is dw_entrances else dw_entrances for exit in cave: - connect_two_way(world, target.pop(), exit) + connect_two_way(world, target.pop(), exit, player) -def connect_doors(world, doors, targets): +def connect_doors(world, doors, targets, player): """This works inplace""" random.shuffle(doors) random.shuffle(targets) while doors: door = doors.pop() target = targets.pop() - connect_entrance(world, door, target) + connect_entrance(world, door, target, player) -def skull_woods_shuffle(world): +def skull_woods_shuffle(world, player): connect_random(world, ['Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', 'Skull Woods Second Section Hole'], - ['Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)', 'Skull Woods Second Section (Drop)']) + ['Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)', 'Skull Woods Second Section (Drop)'], player) connect_random(world, ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'], - ['Skull Woods First Section Exit', 'Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)'], True) + ['Skull Woods First Section Exit', 'Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)'], player, True) -def simple_shuffle_dungeons(world): - skull_woods_shuffle(world) +def simple_shuffle_dungeons(world, player): + skull_woods_shuffle(world, player) dungeon_entrances = ['Eastern Palace', 'Tower of Hera', 'Thieves Town', 'Skull Woods Final Section', 'Palace of Darkness', 'Ice Palace', 'Misery Mire', 'Swamp Palace'] dungeon_exits = ['Eastern Palace Exit', 'Tower of Hera Exit', 'Thieves Town Exit', 'Skull Woods Final Section Exit', 'Palace of Darkness Exit', 'Ice Palace Exit', 'Misery Mire Exit', 'Swamp Palace Exit'] if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) else: dungeon_entrances.append('Ganons Tower') dungeon_exits.append('Ganons Tower Exit') # shuffle up single entrance dungeons - connect_random(world, dungeon_entrances, dungeon_exits, True) + connect_random(world, dungeon_entrances, dungeon_exits, player, True) # mix up 4 door dungeons multi_dungeons = ['Desert', 'Turtle Rock'] @@ -1287,52 +1287,52 @@ def simple_shuffle_dungeons(world): # ToDo improve this? if hc_target == 'Hyrule Castle': - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') - connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)') - connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Hyrule Castle Exit (West)') - connect_two_way(world, 'Agahnims Tower', 'Agahnims Tower Exit') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Agahnims Tower', 'Agahnims Tower Exit', player) elif hc_target == 'Desert': - connect_two_way(world, 'Desert Palace Entrance (South)', 'Hyrule Castle Exit (South)') - connect_two_way(world, 'Desert Palace Entrance (East)', 'Hyrule Castle Exit (East)') - connect_two_way(world, 'Desert Palace Entrance (West)', 'Hyrule Castle Exit (West)') - connect_two_way(world, 'Desert Palace Entrance (North)', 'Agahnims Tower Exit') + connect_two_way(world, 'Desert Palace Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Agahnims Tower Exit', player) elif hc_target == 'Turtle Rock': - connect_two_way(world, 'Turtle Rock', 'Hyrule Castle Exit (South)') - connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Hyrule Castle Exit (East)') - connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Hyrule Castle Exit (West)') - connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Agahnims Tower Exit') + connect_two_way(world, 'Turtle Rock', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Agahnims Tower Exit', player) if dp_target == 'Hyrule Castle': - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Desert Palace Exit (South)') - connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Desert Palace Exit (East)') - connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Desert Palace Exit (West)') - connect_two_way(world, 'Agahnims Tower', 'Desert Palace Exit (North)') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Agahnims Tower', 'Desert Palace Exit (North)', player) elif dp_target == 'Desert': - connect_two_way(world, 'Desert Palace Entrance (South)', 'Desert Palace Exit (South)') - connect_two_way(world, 'Desert Palace Entrance (East)', 'Desert Palace Exit (East)') - connect_two_way(world, 'Desert Palace Entrance (West)', 'Desert Palace Exit (West)') - connect_two_way(world, 'Desert Palace Entrance (North)', 'Desert Palace Exit (North)') + connect_two_way(world, 'Desert Palace Entrance (South)', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Desert Palace Exit (North)', player) elif dp_target == 'Turtle Rock': - connect_two_way(world, 'Turtle Rock', 'Desert Palace Exit (South)') - connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Desert Palace Exit (East)') - connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Desert Palace Exit (West)') - connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Desert Palace Exit (North)') + connect_two_way(world, 'Turtle Rock', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Desert Palace Exit (North)', player) if tr_target == 'Hyrule Castle': - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Turtle Rock Exit (Front)') - connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Turtle Rock Ledge Exit (East)') - connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Turtle Rock Ledge Exit (West)') - connect_two_way(world, 'Agahnims Tower', 'Turtle Rock Isolated Ledge Exit') + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Turtle Rock Ledge Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Agahnims Tower', 'Turtle Rock Isolated Ledge Exit', player) elif tr_target == 'Desert': - connect_two_way(world, 'Desert Palace Entrance (South)', 'Turtle Rock Exit (Front)') - connect_two_way(world, 'Desert Palace Entrance (North)', 'Turtle Rock Ledge Exit (East)') - connect_two_way(world, 'Desert Palace Entrance (West)', 'Turtle Rock Ledge Exit (West)') - connect_two_way(world, 'Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Exit') + connect_two_way(world, 'Desert Palace Entrance (South)', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Turtle Rock Ledge Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Exit', player) elif tr_target == 'Turtle Rock': - connect_two_way(world, 'Turtle Rock', 'Turtle Rock Exit (Front)') - connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Isolated Ledge Exit') - connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Turtle Rock Ledge Exit (West)') - connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Turtle Rock Ledge Exit (East)') + connect_two_way(world, 'Turtle Rock', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Isolated Ledge Exit', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Turtle Rock Ledge Exit (East)', player) def unbias_some_entrances(Dungeon_Exits, Cave_Exits, Old_Man_House, Cave_Three_Exits): def shuffle_lists_in_list(ls): diff --git a/Fill.py b/Fill.py index c1becd44..86e0a5a7 100644 --- a/Fill.py +++ b/Fill.py @@ -1,6 +1,9 @@ import random import logging +from BaseClasses import CollectionState + + class FillError(RuntimeError): pass @@ -167,31 +170,41 @@ def fill_restrictive(world, base_state, locations, itempool): return new_state while itempool and locations: - item_to_place = itempool.pop() + items_to_place = [] + nextpool = [] + placing_players = set() + for item in reversed(itempool): + if item.player not in placing_players: + placing_players.add(item.player) + items_to_place.append(item) + else: + nextpool.insert(0, item) + itempool = nextpool + maximum_exploration_state = sweep_from_pool() perform_access_check = True if world.check_beatable_only: perform_access_check = not world.has_beaten_game(maximum_exploration_state) + for item_to_place in items_to_place: + spot_to_fill = None + for location in locations: + if location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): + spot_to_fill = location + break - spot_to_fill = None - for location in locations: - if location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): - spot_to_fill = location - break + if spot_to_fill is None: + # we filled all reachable spots. Maybe the game can be beaten anyway? + if world.can_beat_game(): + if not world.check_beatable_only: + logging.getLogger('').warning('Not all items placed. Game beatable anyway. (Could not place %s)' % item_to_place) + continue + raise FillError('No more spots to place %s' % item_to_place) - if spot_to_fill is None: - # we filled all reachable spots. Maybe the game can be beaten anyway? - if world.can_beat_game(): - if not world.check_beatable_only: - logging.getLogger('').warning('Not all items placed. Game beatable anyway.') - break - raise FillError('No more spots to place %s' % item_to_place) - - world.push_item(spot_to_fill, item_to_place, False) - locations.remove(spot_to_fill) - spot_to_fill.event = True + world.push_item(spot_to_fill, item_to_place, False) + locations.remove(spot_to_fill) + spot_to_fill.event = True def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=None): @@ -207,20 +220,25 @@ def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=No restitempool = [item for item in world.itempool if not item.advancement and not item.priority] # fill in gtower locations with trash first - if world.ganonstower_vanilla: - gtower_locations = [location for location in fill_locations if 'Ganons Tower' in location.name] - random.shuffle(gtower_locations) - trashcnt = 0 - while gtower_locations and restitempool and trashcnt < gftower_trash_count: - spot_to_fill = gtower_locations.pop() - item_to_place = restitempool.pop() - world.push_item(spot_to_fill, item_to_place, False) - fill_locations.remove(spot_to_fill) - trashcnt += 1 + for player in range(1, world.players + 1): + if world.ganonstower_vanilla[player]: + gtower_locations = [location for location in fill_locations if 'Ganons Tower' in location.name and location.player == player] + random.shuffle(gtower_locations) + trashcnt = 0 + while gtower_locations and restitempool and trashcnt < gftower_trash_count: + spot_to_fill = gtower_locations.pop() + item_to_place = restitempool.pop() + world.push_item(spot_to_fill, item_to_place, False) + fill_locations.remove(spot_to_fill) + trashcnt += 1 random.shuffle(fill_locations) fill_locations.reverse() + # Make sure the escape small key is placed first in standard keysanity to prevent running out of spots + if world.keysanity and world.mode == 'standard': + progitempool.sort(key=lambda item: 1 if item.name == 'Small Key (Escape)' else 0) + fill_restrictive(world, world.state, fill_locations, progitempool) random.shuffle(fill_locations) @@ -297,3 +315,93 @@ def flood_items(world): world.push_item(location, item_to_place, True) itempool.remove(item_to_place) break + +def balance_multiworld_progression(world): + state = CollectionState(world) + checked_locations = [] + unchecked_locations = world.get_locations().copy() + random.shuffle(unchecked_locations) + + reachable_locations_count = {} + for player in range(1, world.players + 1): + reachable_locations_count[player] = 0 + + def get_sphere_locations(sphere_state, locations): + if not world.keysanity: + sphere_state.sweep_for_events(key_only=True, locations=locations) + return [loc for loc in locations if sphere_state.can_reach(loc)] + + while True: + sphere_locations = get_sphere_locations(state, unchecked_locations) + for location in sphere_locations: + unchecked_locations.remove(location) + reachable_locations_count[location.player] += 1 + + if checked_locations: + average_reachable_locations = sum(reachable_locations_count.values()) / world.players + threshold = ((average_reachable_locations + max(reachable_locations_count.values())) / 2) * 0.8 #todo: probably needs some tweaking + + balancing_players = [player for player, reachables in reachable_locations_count.items() if reachables < threshold] + if balancing_players: + balancing_state = state.copy() + balancing_unchecked_locations = unchecked_locations.copy() + balancing_reachables = reachable_locations_count.copy() + balancing_sphere = sphere_locations.copy() + candidate_items = [] + while True: + for location in balancing_sphere: + if location.event: + balancing_state.collect(location.item, True, location) + if location.item.player in balancing_players: + candidate_items.append(location) + balancing_sphere = get_sphere_locations(balancing_state, balancing_unchecked_locations) + for location in balancing_sphere: + balancing_unchecked_locations.remove(location) + balancing_reachables[location.player] += 1 + if world.has_beaten_game(balancing_state) or all([reachables >= threshold for reachables in balancing_reachables.values()]): + break + + unlocked_locations = [l for l in unchecked_locations if l not in balancing_unchecked_locations] + items_to_replace = [] + for player in balancing_players: + locations_to_test = [l for l in unlocked_locations if l.player == player] + items_to_test = [l for l in candidate_items if l.item.player == player and l.player != player] + while items_to_test: + testing = items_to_test.pop() + reducing_state = state.copy() + for location in [*[l for l in items_to_replace if l.item.player == player], *items_to_test]: + reducing_state.collect(location.item, True, location) + + reducing_state.sweep_for_events(locations=locations_to_test) + + if world.has_beaten_game(balancing_state): + if not world.has_beaten_game(reducing_state): + items_to_replace.append(testing) + else: + reduced_sphere = get_sphere_locations(reducing_state, locations_to_test) + if reachable_locations_count[player] + len(reduced_sphere) < threshold: + items_to_replace.append(testing) + + replaced_items = False + locations_for_replacing = [l for l in checked_locations if not l.event] + while locations_for_replacing and items_to_replace: + new_location = locations_for_replacing.pop() + old_location = items_to_replace.pop() + new_location.item, old_location.item = old_location.item, new_location.item + new_location.event = True + old_location.event = False + state.collect(new_location.item, True, new_location) + replaced_items = True + if replaced_items: + for location in get_sphere_locations(state, [l for l in unlocked_locations if l.player in balancing_players]): + unchecked_locations.remove(location) + reachable_locations_count[location.player] += 1 + sphere_locations.append(location) + + for location in sphere_locations: + if location.event: + state.collect(location.item, True, location) + checked_locations.extend(sphere_locations) + + if world.has_beaten_game(state): + break diff --git a/Gui.py b/Gui.py index 33d83c7f..50f60756 100755 --- a/Gui.py +++ b/Gui.py @@ -244,15 +244,20 @@ def guiMain(args=None): bottomFrame = Frame(randomizerWindow) + worldLabel = Label(bottomFrame, text='Worlds') + worldVar = StringVar() + worldSpinbox = Spinbox(bottomFrame, from_=1, to=100, width=5, textvariable=worldVar) + seedLabel = Label(bottomFrame, text='Seed #') seedVar = StringVar() - seedEntry = Entry(bottomFrame, textvariable=seedVar) + seedEntry = Entry(bottomFrame, width=15, textvariable=seedVar) countLabel = Label(bottomFrame, text='Count') countVar = StringVar() - countSpinbox = Spinbox(bottomFrame, from_=1, to=100, textvariable=countVar) + countSpinbox = Spinbox(bottomFrame, from_=1, to=100, width=5, textvariable=countVar) def generateRom(): guiargs = Namespace + guiargs.multi = int(worldVar.get()) guiargs.seed = int(seedVar.get()) if seedVar.get() else None guiargs.count = int(countVar.get()) if countVar.get() != '1' else None guiargs.mode = modeVar.get() @@ -290,6 +295,8 @@ def guiMain(args=None): guiargs.rom = romVar.get() guiargs.jsonout = None guiargs.sprite = sprite + guiargs.skip_playthrough = False + guiargs.outputpath = None try: if guiargs.count is not None: seed = guiargs.seed @@ -305,7 +312,9 @@ def guiMain(args=None): generateButton = Button(bottomFrame, text='Generate Patched Rom', command=generateRom) - seedLabel.pack(side=LEFT) + worldLabel.pack(side=LEFT) + worldSpinbox.pack(side=LEFT) + seedLabel.pack(side=LEFT, padx=(5, 0)) seedEntry.pack(side=LEFT) countLabel.pack(side=LEFT, padx=(5, 0)) countSpinbox.pack(side=LEFT) @@ -384,6 +393,7 @@ def guiMain(args=None): fastMenuLabel2 = Label(fastMenuFrame2, text='Menu speed') fastMenuLabel2.pack(side=LEFT) + heartbeepFrame2.pack(expand=True, anchor=E) heartcolorFrame2.pack(expand=True, anchor=E) fastMenuFrame2.pack(expand=True, anchor=E) diff --git a/ItemList.py b/ItemList.py index 8c7f3d71..97ab4198 100644 --- a/ItemList.py +++ b/ItemList.py @@ -207,7 +207,7 @@ difficulties = { ), } -def generate_itempool(world): +def generate_itempool(world, player): if (world.difficulty not in ['easy', 'normal', 'hard', 'expert', 'insane'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] or world.mode not in ['open', 'standard', 'swordless'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') @@ -215,20 +215,20 @@ def generate_itempool(world): if world.timer in ['ohko', 'timed-ohko']: world.can_take_damage = False - world.push_item('Ganon', ItemFactory('Triforce'), False) - world.get_location('Ganon').event = True - world.push_item('Agahnim 1', ItemFactory('Beat Agahnim 1'), False) - world.get_location('Agahnim 1').event = True - world.push_item('Agahnim 2', ItemFactory('Beat Agahnim 2'), False) - world.get_location('Agahnim 2').event = True - world.push_item('Dark Blacksmith Ruins', ItemFactory('Pick Up Purple Chest'), False) - world.get_location('Dark Blacksmith Ruins').event = True - world.push_item('Frog', ItemFactory('Get Frog'), False) - world.get_location('Frog').event = True - world.push_item('Missing Smith', ItemFactory('Return Smith'), False) - world.get_location('Missing Smith').event = True - world.push_item('Floodgate', ItemFactory('Open Floodgate'), False) - world.get_location('Floodgate').event = True + world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) + world.get_location('Ganon', player).event = True + world.push_item(world.get_location('Agahnim 1', player), ItemFactory('Beat Agahnim 1', player), False) + world.get_location('Agahnim 1', player).event = True + world.push_item(world.get_location('Agahnim 2', player), ItemFactory('Beat Agahnim 2', player), False) + world.get_location('Agahnim 2', player).event = True + world.push_item(world.get_location('Dark Blacksmith Ruins', player), ItemFactory('Pick Up Purple Chest', player), False) + world.get_location('Dark Blacksmith Ruins', player).event = True + world.push_item(world.get_location('Frog', player), ItemFactory('Get Frog', player), False) + world.get_location('Frog', player).event = True + world.push_item(world.get_location('Missing Smith', player), ItemFactory('Return Smith', player), False) + world.get_location('Missing Smith', player).event = True + world.push_item(world.get_location('Floodgate', player), ItemFactory('Open Floodgate', player), False) + world.get_location('Floodgate', player).event = True # set up item pool if world.custom: @@ -236,10 +236,10 @@ def generate_itempool(world): world.rupoor_cost = min(world.customitemarray[67], 9999) else: (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.retro) - world.itempool = ItemFactory(pool) + world.itempool += ItemFactory(pool, player) for (location, item) in placed_items: - world.push_item(location, ItemFactory(item), False) - world.get_location(location).event = True + world.push_item(world.get_location(location, player), ItemFactory(item, player), False) + world.get_location(location, player).event = True world.lamps_needed_for_dark_rooms = lamps_needed_for_dark_rooms if clock_mode is not None: world.clock_mode = clock_mode @@ -249,30 +249,30 @@ def generate_itempool(world): world.treasure_hunt_icon = treasure_hunt_icon if world.keysanity: - world.itempool.extend(get_dungeon_item_pool(world)) + world.itempool.extend([item for item in get_dungeon_item_pool(world) if item.player == player]) # logic has some branches where having 4 hearts is one possible requirement (of several alternatives) # rather than making all hearts/heart pieces progression items (which slows down generation considerably) # We mark one random heart container as an advancement item (or 4 heart pieces in expert mode) if world.difficulty in ['easy', 'normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): - [item for item in world.itempool if item.name == 'Boss Heart Container'][0].advancement = True + [item for item in world.itempool if item.name == 'Boss Heart Container' and item.player == player][0].advancement = True elif world.difficulty in ['expert'] and not (world.custom and world.customitemarray[29] < 4): - adv_heart_pieces = [item for item in world.itempool if item.name == 'Piece of Heart'][0:4] + adv_heart_pieces = [item for item in world.itempool if item.name == 'Piece of Heart' and item.player == player][0:4] for hp in adv_heart_pieces: hp.advancement = True # shuffle medallions mm_medallion = ['Ether', 'Quake', 'Bombos'][random.randint(0, 2)] tr_medallion = ['Ether', 'Quake', 'Bombos'][random.randint(0, 2)] - world.required_medallions = (mm_medallion, tr_medallion) + world.required_medallions[player] = (mm_medallion, tr_medallion) - place_bosses(world) - set_up_shops(world) + place_bosses(world, player) + set_up_shops(world, player) if world.retro: - set_up_take_anys(world) + set_up_take_anys(world, player) - create_dynamic_shop_locations(world) + create_dynamic_shop_locations(world, player) take_any_locations = [ 'Snitch Lady (East)', 'Snitch Lady (West)', 'Bush Covered House', 'Light World Bomb Hut', @@ -284,39 +284,39 @@ take_any_locations = [ 'Palace of Darkness Hint', 'East Dark World Hint', 'Archery Game', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave', 'Fortune Teller (Dark)', 'Dark Sanctuary Hint', 'Dark Desert Hint'] -def set_up_take_anys(world): +def set_up_take_anys(world, player): regions = random.sample(take_any_locations, 5) - old_man_take_any = Region("Old Man Sword Cave", RegionType.Cave, 'the sword cave') + old_man_take_any = Region("Old Man Sword Cave", RegionType.Cave, 'the sword cave', player) world.regions.append(old_man_take_any) world.dynamic_regions.append(old_man_take_any) reg = regions.pop() - entrance = world.get_region(reg).entrances[0] - connect_entrance(world, entrance, old_man_take_any) + entrance = world.get_region(reg, player).entrances[0] + connect_entrance(world, entrance, old_man_take_any, player) entrance.target = 0x58 old_man_take_any.shop = Shop(old_man_take_any, 0x0112, ShopType.TakeAny, 0xE2, True) world.shops.append(old_man_take_any.shop) old_man_take_any.shop.active = True - swords = [item for item in world.itempool if item.type == 'Sword'] + swords = [item for item in world.itempool if item.type == 'Sword' and item.player == player] if swords: sword = random.choice(swords) world.itempool.remove(sword) - world.itempool.append(ItemFactory('Rupees (20)')) + world.itempool.append(ItemFactory('Rupees (20)', player)) old_man_take_any.shop.add_inventory(0, sword.name, 0, 0, create_location=True) else: old_man_take_any.shop.add_inventory(0, 'Rupees (300)', 0, 0) for num in range(4): - take_any = Region("Take-Any #{}".format(num+1), RegionType.Cave, 'a cave of choice') + take_any = Region("Take-Any #{}".format(num+1), RegionType.Cave, 'a cave of choice', player) world.regions.append(take_any) world.dynamic_regions.append(take_any) target, room_id = random.choice([(0x58, 0x0112), (0x60, 0x010F), (0x46, 0x011F)]) reg = regions.pop() - entrance = world.get_region(reg).entrances[0] - connect_entrance(world, entrance, take_any) + entrance = world.get_region(reg, player).entrances[0] + connect_entrance(world, entrance, take_any, player) entrance.target = target take_any.shop = Shop(take_any, room_id, ShopType.TakeAny, 0xE3, True) world.shops.append(take_any.shop) @@ -326,50 +326,52 @@ def set_up_take_anys(world): world.intialize_regions() -def create_dynamic_shop_locations(world): +def create_dynamic_shop_locations(world, player): for shop in world.shops: - for i, item in enumerate(shop.inventory): - if item is None: - continue - if item['create_location']: - loc = Location("{} Item {}".format(shop.region.name, i+1), parent=shop.region) - shop.region.locations.append(loc) - world.dynamic_locations.append(loc) + if shop.region.player == player: + for i, item in enumerate(shop.inventory): + if item is None: + continue + if item['create_location']: + loc = Location(player, "{} Item {}".format(shop.region.name, i+1), parent=shop.region) + shop.region.locations.append(loc) + world.dynamic_locations.append(loc) - world.clear_location_cache() + world.clear_location_cache() - world.push_item(loc, ItemFactory(item['item']), False) - loc.event = True + world.push_item(loc, ItemFactory(item['item'], player), False) + loc.event = True def fill_prizes(world, attempts=15): - crystals = ItemFactory(['Red Pendant', 'Blue Pendant', 'Green Pendant', 'Crystal 1', 'Crystal 2', 'Crystal 3', 'Crystal 4', 'Crystal 7', 'Crystal 5', 'Crystal 6']) - crystal_locations = [world.get_location('Turtle Rock - Prize'), world.get_location('Eastern Palace - Prize'), world.get_location('Desert Palace - Prize'), world.get_location('Tower of Hera - Prize'), world.get_location('Palace of Darkness - Prize'), - world.get_location('Thieves\' Town - Prize'), world.get_location('Skull Woods - Prize'), world.get_location('Swamp Palace - Prize'), world.get_location('Ice Palace - Prize'), - world.get_location('Misery Mire - Prize')] - placed_prizes = [loc.item.name for loc in crystal_locations if loc.item is not None] - unplaced_prizes = [crystal for crystal in crystals if crystal.name not in placed_prizes] - empty_crystal_locations = [loc for loc in crystal_locations if loc.item is None] + all_state = world.get_all_state(keys=True) + for player in range(1, world.players + 1): + crystals = ItemFactory(['Red Pendant', 'Blue Pendant', 'Green Pendant', 'Crystal 1', 'Crystal 2', 'Crystal 3', 'Crystal 4', 'Crystal 7', 'Crystal 5', 'Crystal 6'], player) + crystal_locations = [world.get_location('Turtle Rock - Prize', player), world.get_location('Eastern Palace - Prize', player), world.get_location('Desert Palace - Prize', player), world.get_location('Tower of Hera - Prize', player), world.get_location('Palace of Darkness - Prize', player), + world.get_location('Thieves\' Town - Prize', player), world.get_location('Skull Woods - Prize', player), world.get_location('Swamp Palace - Prize', player), world.get_location('Ice Palace - Prize', player), + world.get_location('Misery Mire - Prize', player)] + placed_prizes = [loc.item.name for loc in crystal_locations if loc.item is not None] + unplaced_prizes = [crystal for crystal in crystals if crystal.name not in placed_prizes] + empty_crystal_locations = [loc for loc in crystal_locations if loc.item is None] - while attempts: - attempts -= 1 - try: - prizepool = list(unplaced_prizes) - prize_locs = list(empty_crystal_locations) - random.shuffle(prizepool) - random.shuffle(prize_locs) - fill_restrictive(world, world.get_all_state(keys=True), prize_locs, prizepool) - except FillError: - logging.getLogger('').info("Failed to place dungeon prizes. Will retry %s more times", attempts) - for location in empty_crystal_locations: - location.item = None - continue - break - else: - raise FillError('Unable to place dungeon prizes') + for attempt in range(attempts): + try: + prizepool = list(unplaced_prizes) + prize_locs = list(empty_crystal_locations) + random.shuffle(prizepool) + random.shuffle(prize_locs) + fill_restrictive(world, all_state, prize_locs, prizepool) + except FillError as e: + logging.getLogger('').info("Failed to place dungeon prizes (%s). Will retry %s more times" % (e, attempts)) + for location in empty_crystal_locations: + location.item = None + continue + break + else: + raise FillError('Unable to place dungeon prizes') -def set_up_shops(world): +def set_up_shops(world, player): # Changes to basic Shops # TODO: move hard+ mode changes for sheilds here, utilizing the new shops @@ -377,13 +379,13 @@ def set_up_shops(world): shop.active = True if world.retro: - rss = world.get_region('Red Shield Shop').shop + rss = world.get_region('Red Shield Shop', player).shop rss.active = True rss.add_inventory(2, 'Single Arrow', 80) # Randomized changes to Shops if world.retro: - for shop in random.sample([s for s in world.shops if s.replaceable], 5): + for shop in random.sample([s for s in world.shops if s.replaceable and s.region.player == player], 5): shop.active = True shop.add_inventory(0, 'Single Arrow', 80) shop.add_inventory(1, 'Small Key (Universal)', 100) diff --git a/Items.py b/Items.py index 2e0d8506..1bc94cc9 100644 --- a/Items.py +++ b/Items.py @@ -3,7 +3,7 @@ import logging from BaseClasses import Item -def ItemFactory(items): +def ItemFactory(items, player): ret = [] singleton = False if isinstance(items, str): @@ -12,7 +12,7 @@ def ItemFactory(items): for item in items: if item in item_table: advancement, priority, type, code, pedestal_hint, pedestal_credit, sickkid_credit, zora_credit, witch_credit, fluteboy_credit, hint_text = item_table[item] - ret.append(Item(item, advancement, priority, type, code, pedestal_hint, pedestal_credit, sickkid_credit, zora_credit, witch_credit, fluteboy_credit, hint_text)) + ret.append(Item(item, advancement, priority, type, code, pedestal_hint, pedestal_credit, sickkid_credit, zora_credit, witch_credit, fluteboy_credit, hint_text, player)) else: logging.getLogger('').warning('Unknown Item: %s', item) return None diff --git a/Main.py b/Main.py index d8de72ba..413c1a0e 100644 --- a/Main.py +++ b/Main.py @@ -12,7 +12,7 @@ from EntranceShuffle import link_entrances from Rom import patch_rom, Sprite, LocalRom, JsonRom 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 +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 Utils import output_path @@ -40,7 +40,7 @@ def main(args, seed=None): start = time.clock() # initialize the world - world = World(args.shuffle, args.logic, args.mode, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -49,26 +49,32 @@ def main(args, seed=None): world.seed = int(seed) random.seed(world.seed) + world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} + logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed) world.difficulty_requirements = difficulties[world.difficulty] - create_regions(world) - - create_dungeons(world) + for player in range(1, world.players + 1): + create_regions(world, player) + create_dungeons(world, player) logger.info('Shuffling the World about.') - link_entrances(world) + for player in range(1, world.players + 1): + link_entrances(world, player) + mark_light_world_regions(world) logger.info('Generating Item Pool.') - generate_itempool(world) + for player in range(1, world.players + 1): + generate_itempool(world, player) logger.info('Calculating Access Rules.') - set_rules(world) + for player in range(1, world.players + 1): + set_rules(world, player) logger.info('Placing Dungeon Prizes.') @@ -102,9 +108,9 @@ def main(args, seed=None): elif args.algorithm == 'balanced': distribute_items_restrictive(world, gt_filler(world)) - logger.info('Calculating playthrough.') - - create_playthrough(world) + if world.players > 1: + logger.info('Balancing multiworld progression.') + balance_multiworld_progression(world) logger.info('Patching ROM.') @@ -118,20 +124,38 @@ def main(args, seed=None): outfilebase = 'ER_%s_%s-%s-%s%s_%s-%s%s%s%s%s_%s' % (world.logic, world.difficulty, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "", world.seed) + jsonout = {} if not args.suppress_rom: - if args.jsonout: - rom = JsonRom() + if world.players > 1: + raise NotImplementedError("Multiworld rom writes have not been implemented") else: - rom = LocalRom(args.rom) - patch_rom(world, rom, bytearray(logic_hash), args.heartbeep, args.heartcolor, sprite) - if args.jsonout: - print(json.dumps({'patch': rom.patches, 'spoiler': world.spoiler.to_json()})) - else: - rom.write_to_file(args.jsonout or output_path('%s.sfc' % outfilebase)) + player = 1 + + if args.jsonout: + rom = JsonRom() + else: + rom = LocalRom(args.rom) + patch_rom(world, player, rom, bytearray(logic_hash), args.heartbeep, args.heartcolor, sprite, player_names) + + if args.jsonout: + jsonout['patch'] = rom.patches + + else: + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) + rom.write_to_file(output_path('%s.sfc' % outfilebase)) if args.create_spoiler and not args.jsonout: world.spoiler.to_file(output_path('%s_Spoiler.txt' % outfilebase)) + if not args.skip_playthrough: + logger.info('Calculating playthrough.') + create_playthrough(world) + + if args.jsonout: + print(json.dumps({**jsonout, 'spoiler': world.spoiler.to_json()})) + elif args.create_spoiler and not args.skip_playthrough: + world.spoiler.to_file(output_path('%s_Spoiler.txt' % outfilebase)) + logger.info('Done. Enjoy.') logger.debug('Total Time: %s', time.clock() - start) @@ -144,10 +168,12 @@ def gt_filler(world): def copy_world(world): # ToDo: Not good yet - ret = World(world.shuffle, world.logic, world.mode, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) - ret.required_medallions = list(world.required_medallions) - ret.swamp_patch_required = world.swamp_patch_required - ret.ganon_at_pyramid = world.ganon_at_pyramid + ret = World(world.players, world.shuffle, world.logic, world.mode, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) + ret.required_medallions = world.required_medallions.copy() + ret.swamp_patch_required = world.swamp_patch_required.copy() + ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() + ret.powder_patch_required = world.powder_patch_required.copy() + ret.ganonstower_vanilla = world.ganonstower_vanilla.copy() ret.treasure_hunt_count = world.treasure_hunt_count ret.treasure_hunt_icon = world.treasure_hunt_icon ret.sewer_light_cone = world.sewer_light_cone @@ -162,53 +188,56 @@ def copy_world(world): ret.difficulty_requirements = world.difficulty_requirements ret.fix_fake_world = world.fix_fake_world ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms - create_regions(ret) - create_dungeons(ret) + + for player in range(1, world.players + 1): + create_regions(ret, player) + create_dungeons(ret, player) copy_dynamic_regions_and_locations(world, ret) # copy bosses for dungeon in world.dungeons: for level, boss in dungeon.bosses.items(): - ret.get_dungeon(dungeon.name).bosses[level] = boss + ret.get_dungeon(dungeon.name, dungeon.player).bosses[level] = boss for shop in world.shops: - copied_shop = ret.get_region(shop.region.name).shop + copied_shop = ret.get_region(shop.region.name, shop.region.player).shop copied_shop.active = shop.active copied_shop.inventory = copy.copy(shop.inventory) # connect copied world for region in world.regions: - copied_region = ret.get_region(region.name) + 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 for entrance in region.entrances: - ret.get_entrance(entrance.name).connect(copied_region) + ret.get_entrance(entrance.name, entrance.player).connect(copied_region) # fill locations for location in world.get_locations(): if location.item is not None: - item = Item(location.item.name, location.item.advancement, location.item.priority, location.item.type) - ret.get_location(location.name).item = item - item.location = ret.get_location(location.name) + 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) if location.event: - ret.get_location(location.name).event = True + ret.get_location(location.name, location.player).event = True # copy remaining itempool. No item in itempool should have an assigned location for item in world.itempool: - ret.itempool.append(Item(item.name, item.advancement, item.priority, item.type)) + ret.itempool.append(Item(item.name, item.advancement, item.priority, item.type, player = item.player)) # copy progress items in state ret.state.prog_items = list(world.state.prog_items) ret.state.stale = True - set_rules(ret) + for player in range(1, world.players + 1): + set_rules(ret, player) return ret def copy_dynamic_regions_and_locations(world, ret): for region in world.dynamic_regions: - new_reg = Region(region.name, region.type, region.hint_text) + new_reg = Region(region.name, region.type, region.hint_text, region.player) ret.regions.append(new_reg) ret.dynamic_regions.append(new_reg) @@ -219,8 +248,8 @@ def copy_dynamic_regions_and_locations(world, ret): ret.shops.append(new_reg.shop) for location in world.dynamic_locations: - new_loc = Location(location.name, location.address, location.crystal, location.hint_text, location.parent_region) - new_reg = ret.get_region(location.parent_region.name) + new_loc = Location(location.player, location.name, location.address, location.crystal, location.hint_text, location.parent_region,) + new_reg = ret.get_region(location.parent_region.name, location.parent_region.player) new_reg.locations.append(new_loc) @@ -231,7 +260,8 @@ def create_playthrough(world): # in treasure hunt and pedestal goals, ganon is invincible if world.goal in ['pedestal', 'triforcehunt']: - world.get_location('Ganon').item = None + for player in range(1, world.players + 1): + world.get_location('Ganon', player).item = None # if we only check for beatable, we can do this sanity check first before writing down spheres if world.check_beatable_only and not world.can_beat_game(): @@ -264,7 +294,7 @@ def create_playthrough(world): logging.getLogger('').debug('Calculated sphere %i, containing %i of %i progress items.', len(collection_spheres), len(sphere), len(prog_locations)) if not sphere: - logging.getLogger('').debug('The following items could not be reached: %s', ['%s at %s' % (location.item.name, location.name) for location in sphere_candidates]) + logging.getLogger('').debug('The following items could not be reached: %s', ['%s (Player %d) at %s (Player %d)' % (location.item.name, location.item.player, location.name, location.player) for location in sphere_candidates]) if not world.check_beatable_only: raise RuntimeError('Not all progression items reachable. Something went terribly wrong here.') else: @@ -275,11 +305,11 @@ def create_playthrough(world): to_delete = [] for location in sphere: # we remove the item at location and check if game is still beatable - logging.getLogger('').debug('Checking if %s is required to beat the game.', location.item.name) + logging.getLogger('').debug('Checking if %s (Player %d) is required to beat the game.', location.item.name, location.item.player) old_item = location.item location.item = None state.remove(old_item) - ##if world.can_beat_game(state_cache[num]): + ##if world.can_beat_game(state_cache[num]): if world.can_beat_game(): to_delete.append(location) else: @@ -316,7 +346,7 @@ def create_playthrough(world): raise RuntimeError('Not all required items reachable. Something went terribly wrong here.') # store the required locations for statistical analysis - old_world.required_locations = [location.name for sphere in collection_spheres for location in sphere] + old_world.required_locations = [(location.name, location.player) for sphere in collection_spheres for location in sphere] def flist_to_iter(node): while node: @@ -331,9 +361,12 @@ def create_playthrough(world): pathpairs = zip_longest(pathsiter, pathsiter) return list(pathpairs) - old_world.spoiler.paths = {location.name : get_path(state, location.parent_region) for sphere in collection_spheres for location in sphere} - if any(exit == 'Pyramid Fairy' for path in old_world.spoiler.paths.values() for (_, exit) in path): - old_world.spoiler.paths['Big Bomb Shop'] = get_path(state, world.get_region('Big Bomb Shop')) + 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}) + for _, path in dict(old_world.spoiler.paths).items(): + if any(exit == 'Pyramid Fairy' for (_, exit) in path): + old_world.spoiler.paths[str(world.get_region('Big Bomb Shop', player))] = get_path(state, world.get_region('Big Bomb Shop', player)) # we can finally output our playthrough old_world.spoiler.playthrough = OrderedDict([(str(i + 1), {str(location): str(location.item) for location in sphere}) for i, sphere in enumerate(collection_spheres)]) diff --git a/Plando.py b/Plando.py index f2f68873..0bb3dd1a 100755 --- a/Plando.py +++ b/Plando.py @@ -33,7 +33,7 @@ def main(args): start_time = time.clock() # initialize the world - world = World('vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, False, None) + world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, False, None, 'none', False) logger = logging.getLogger('') hasher = hashlib.md5() @@ -48,14 +48,14 @@ def main(args): world.difficulty_requirements = difficulties[world.difficulty] - create_regions(world) - create_dungeons(world) + create_regions(world, 1) + create_dungeons(world, 1) - link_entrances(world) + link_entrances(world, 1) logger.info('Calculating Access Rules.') - set_rules(world) + set_rules(world, 1) logger.info('Fill the world.') @@ -63,8 +63,8 @@ def main(args): fill_world(world, args.plando, text_patches) - if world.get_entrance('Dam').connected_region.name != 'Dam' or world.get_entrance('Swamp Palace').connected_region.name != 'Swamp Palace (Entrance)': - world.swamp_patch_required = True + if world.get_entrance('Dam', 1).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', 1).connected_region.name != 'Swamp Palace (Entrance)': + world.swamp_patch_required[1] = True logger.info('Calculating playthrough.') @@ -84,7 +84,7 @@ def main(args): sprite = None rom = LocalRom(args.rom) - patch_rom(world, rom, logic_hash, args.heartbeep, args.heartcolor, sprite) + patch_rom(world, 1, rom, logic_hash, args.heartbeep, args.heartcolor, sprite) for textname, texttype, text in text_patches: if texttype == 'text': @@ -174,33 +174,33 @@ def fill_world(world, plando, text_patches): continue locationstr, itemstr = line.split(':', 1) - location = world.get_location(locationstr.strip()) + location = world.get_location(locationstr.strip(), 1) if location is None: logger.warning('Unknown location: %s', locationstr) continue else: - item = ItemFactory(itemstr.strip()) + item = ItemFactory(itemstr.strip(), 1) if item is not None: world.push_item(location, item) if item.key: location.event = True elif '<=>' in line: entrance, exit = line.split('<=>', 1) - connect_two_way(world, entrance.strip(), exit.strip()) + connect_two_way(world, entrance.strip(), exit.strip(), 1) elif '=>' in line: entrance, exit = line.split('=>', 1) - connect_entrance(world, entrance.strip(), exit.strip()) + connect_entrance(world, entrance.strip(), exit.strip(), 1) elif '<=' in line: entrance, exit = line.split('<=', 1) - connect_exit(world, exit.strip(), entrance.strip()) + connect_exit(world, exit.strip(), entrance.strip(), 1) - world.required_medallions = (mm_medallion, tr_medallion) + world.required_medallions[1] = (mm_medallion, tr_medallion) # set up Agahnim Events - world.get_location('Agahnim 1').event = True - world.get_location('Agahnim 1').item = ItemFactory('Beat Agahnim 1') - world.get_location('Agahnim 2').event = True - world.get_location('Agahnim 2').item = ItemFactory('Beat Agahnim 2') + world.get_location('Agahnim 1', 1).event = True + world.get_location('Agahnim 1', 1).item = ItemFactory('Beat Agahnim 1', 1) + world.get_location('Agahnim 2', 1).event = True + world.get_location('Agahnim 2', 1).item = ItemFactory('Beat Agahnim 2', 1) def start(): diff --git a/Regions.py b/Regions.py index f95216a3..70ae3b0b 100644 --- a/Regions.py +++ b/Regions.py @@ -2,10 +2,10 @@ import collections from BaseClasses import Region, Location, Entrance, RegionType, Shop, ShopType -def create_regions(world): +def create_regions(world, player): - world.regions = [ - create_lw_region('Light World', ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest'], + world.regions += [ + 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', 'Blacksmiths Hut', 'Bat Cave Drop Ledge', 'Bat Cave Cave', 'Sick Kids House', 'Hobo Bridge', 'Lost Woods Hideout Drop', 'Lost Woods Hideout Stump', @@ -15,118 +15,118 @@ def create_regions(world): 'Elder House (East)', 'Elder House (West)', 'North Fairy Cave', 'North Fairy Cave Drop', 'Lost Woods Gamble', 'Snitch Lady (East)', 'Snitch Lady (West)', 'Tavern (Front)', 'Bush Covered House', 'Light World Bomb Hut', 'Kakariko Shop', 'Long Fairy Cave', 'Good Bee Cave', '20 Rupee Cave', 'Cave Shop (Lake Hylia)', 'Waterfall of Wishing', 'Hyrule Castle Main Gate', 'Bonk Fairy (Light)', '50 Rupee Cave', 'Fortune Teller (Light)', 'Lake Hylia Fairy', 'Light Hype Fairy', 'Desert Fairy', 'Lumberjack House', 'Lake Hylia Fortune Teller', 'Kakariko Gamble Game', 'Top of Pyramid']), - create_lw_region('Death Mountain Entrance', None, ['Old Man Cave (West)', 'Death Mountain Entrance Drop']), - create_lw_region('Lake Hylia Central Island', None, ['Capacity Upgrade', 'Lake Hylia Central Island Teleporter']), - create_cave_region('Blinds Hideout', 'a bounty of five items', ["Blind\'s Hideout - Top", + create_lw_region(player, 'Death Mountain Entrance', None, ['Old Man Cave (West)', 'Death Mountain Entrance Drop']), + create_lw_region(player, 'Lake Hylia Central Island', None, ['Capacity Upgrade', 'Lake Hylia Central Island Teleporter']), + create_cave_region(player, 'Blinds Hideout', 'a bounty of five items', ["Blind\'s Hideout - Top", "Blind\'s Hideout - Left", "Blind\'s Hideout - Right", "Blind\'s Hideout - Far Left", "Blind\'s Hideout - Far Right"]), - create_cave_region('Hyrule Castle Secret Entrance', 'a drop\'s exit', ['Link\'s Uncle', 'Secret Passage'], ['Hyrule Castle Secret Entrance Exit']), - create_lw_region('Zoras River', ['King Zora', 'Zora\'s Ledge']), - create_cave_region('Waterfall of Wishing', 'a cave with two chests', ['Waterfall Fairy - Left', 'Waterfall Fairy - Right']), - create_lw_region('Kings Grave Area', None, ['Kings Grave', 'Kings Grave Inner Rocks']), - create_cave_region('Kings Grave', 'a cave with a chest', ['King\'s Tomb']), - create_cave_region('North Fairy Cave', 'a drop\'s exit', None, ['North Fairy Cave Exit']), - create_cave_region('Dam', 'the dam', ['Floodgate', 'Floodgate Chest']), - create_cave_region('Links House', 'your house', ['Link\'s House'], ['Links House Exit']), - create_cave_region('Chris Houlihan Room', 'I AM ERROR', None, ['Chris Houlihan Room Exit']), - create_cave_region('Tavern', 'the tavern', ['Kakariko Tavern']), - create_cave_region('Elder House', 'a connector', None, ['Elder House Exit (East)', 'Elder House Exit (West)']), - create_cave_region('Snitch Lady (East)', 'a boring house'), - create_cave_region('Snitch Lady (West)', 'a boring house'), - create_cave_region('Bush Covered House', 'the grass man'), - create_cave_region('Tavern (Front)', 'the tavern'), - create_cave_region('Light World Bomb Hut', 'a restock room'), - create_cave_region('Kakariko Shop', 'a common shop'), - create_cave_region('Fortune Teller (Light)', 'a fortune teller'), - create_cave_region('Lake Hylia Fortune Teller', 'a fortune teller'), - create_cave_region('Lumberjack House', 'a boring house'), - create_cave_region('Bonk Fairy (Light)', 'a fairy fountain'), - create_cave_region('Bonk Fairy (Dark)', 'a fairy fountain'), - create_cave_region('Lake Hylia Healer Fairy', 'a fairy fountain'), - create_cave_region('Swamp Healer Fairy', 'a fairy fountain'), - create_cave_region('Desert Healer Fairy', 'a fairy fountain'), - create_cave_region('Dark Lake Hylia Healer Fairy', 'a fairy fountain'), - create_cave_region('Dark Lake Hylia Ledge Healer Fairy', 'a fairy fountain'), - create_cave_region('Dark Desert Healer Fairy', 'a fairy fountain'), - create_cave_region('Dark Death Mountain Healer Fairy', 'a fairy fountain'), - create_cave_region('Chicken House', 'a house with a chest', ['Chicken House']), - create_cave_region('Aginahs Cave', 'a cave with a chest', ['Aginah\'s Cave']), - create_cave_region('Sahasrahlas Hut', 'Sahasrahla', ['Sahasrahla\'s Hut - Left', 'Sahasrahla\'s Hut - Middle', 'Sahasrahla\'s Hut - Right', 'Sahasrahla']), - create_cave_region('Kakariko Well (top)', 'a drop\'s exit', ['Kakariko Well - Top', 'Kakariko Well - Left', 'Kakariko Well - Middle', + create_cave_region(player, 'Hyrule Castle Secret Entrance', 'a drop\'s exit', ['Link\'s Uncle', 'Secret Passage'], ['Hyrule Castle Secret Entrance Exit']), + create_lw_region(player, 'Zoras River', ['King Zora', 'Zora\'s Ledge']), + create_cave_region(player, 'Waterfall of Wishing', 'a cave with two chests', ['Waterfall Fairy - Left', 'Waterfall Fairy - Right']), + create_lw_region(player, 'Kings Grave Area', None, ['Kings Grave', 'Kings Grave Inner Rocks']), + create_cave_region(player, 'Kings Grave', 'a cave with a chest', ['King\'s Tomb']), + create_cave_region(player, 'North Fairy Cave', 'a drop\'s exit', None, ['North Fairy Cave Exit']), + create_cave_region(player, 'Dam', 'the dam', ['Floodgate', 'Floodgate Chest']), + create_cave_region(player, 'Links House', 'your house', ['Link\'s House'], ['Links House Exit']), + create_cave_region(player, 'Chris Houlihan Room', 'I AM ERROR', None, ['Chris Houlihan Room Exit']), + create_cave_region(player, 'Tavern', 'the tavern', ['Kakariko Tavern']), + create_cave_region(player, 'Elder House', 'a connector', None, ['Elder House Exit (East)', 'Elder House Exit (West)']), + create_cave_region(player, 'Snitch Lady (East)', 'a boring house'), + create_cave_region(player, 'Snitch Lady (West)', 'a boring house'), + create_cave_region(player, 'Bush Covered House', 'the grass man'), + create_cave_region(player, 'Tavern (Front)', 'the tavern'), + create_cave_region(player, 'Light World Bomb Hut', 'a restock room'), + create_cave_region(player, 'Kakariko Shop', 'a common shop'), + create_cave_region(player, 'Fortune Teller (Light)', 'a fortune teller'), + create_cave_region(player, 'Lake Hylia Fortune Teller', 'a fortune teller'), + create_cave_region(player, 'Lumberjack House', 'a boring house'), + create_cave_region(player, 'Bonk Fairy (Light)', 'a fairy fountain'), + create_cave_region(player, 'Bonk Fairy (Dark)', 'a fairy fountain'), + create_cave_region(player, 'Lake Hylia Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Swamp Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Desert Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Lake Hylia Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Lake Hylia Ledge Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Desert Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Death Mountain Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Chicken House', 'a house with a chest', ['Chicken House']), + create_cave_region(player, 'Aginahs Cave', 'a cave with a chest', ['Aginah\'s Cave']), + create_cave_region(player, 'Sahasrahlas Hut', 'Sahasrahla', ['Sahasrahla\'s Hut - Left', 'Sahasrahla\'s Hut - Middle', 'Sahasrahla\'s Hut - Right', 'Sahasrahla']), + create_cave_region(player, 'Kakariko Well (top)', 'a drop\'s exit', ['Kakariko Well - Top', 'Kakariko Well - Left', 'Kakariko Well - Middle', 'Kakariko Well - Right', 'Kakariko Well - Bottom'], ['Kakariko Well (top to bottom)']), - create_cave_region('Kakariko Well (bottom)', 'a drop\'s exit', None, ['Kakariko Well Exit']), - create_cave_region('Blacksmiths Hut', 'the smith', ['Blacksmith', 'Missing Smith']), - create_lw_region('Bat Cave Drop Ledge', None, ['Bat Cave Drop']), - create_cave_region('Bat Cave (right)', 'a drop\'s exit', ['Magic Bat'], ['Bat Cave Door']), - create_cave_region('Bat Cave (left)', 'a drop\'s exit', None, ['Bat Cave Exit']), - create_cave_region('Sick Kids House', 'the sick kid', ['Sick Kid']), - create_lw_region('Hobo Bridge', ['Hobo']), - create_cave_region('Lost Woods Hideout (top)', 'a drop\'s exit', ['Lost Woods Hideout'], ['Lost Woods Hideout (top to bottom)']), - create_cave_region('Lost Woods Hideout (bottom)', 'a drop\'s exit', None, ['Lost Woods Hideout Exit']), - create_cave_region('Lumberjack Tree (top)', 'a drop\'s exit', ['Lumberjack Tree'], ['Lumberjack Tree (top to bottom)']), - create_cave_region('Lumberjack Tree (bottom)', 'a drop\'s exit', None, ['Lumberjack Tree Exit']), - create_lw_region('Cave 45 Ledge', None, ['Cave 45']), - create_cave_region('Cave 45', 'a cave with an item', ['Cave 45']), - create_lw_region('Graveyard Ledge', None, ['Graveyard Cave']), - create_cave_region('Graveyard Cave', 'a cave with an item', ['Graveyard Cave']), - create_cave_region('Checkerboard Cave', 'a cave with an item', ['Checkerboard Cave']), - create_cave_region('Long Fairy Cave', 'a fairy fountain'), - create_cave_region('Mini Moldorm Cave', 'a bounty of five items', ['Mini Moldorm Cave - Far Left', 'Mini Moldorm Cave - Left', 'Mini Moldorm Cave - Right', + create_cave_region(player, 'Kakariko Well (bottom)', 'a drop\'s exit', None, ['Kakariko Well Exit']), + create_cave_region(player, 'Blacksmiths Hut', 'the smith', ['Blacksmith', 'Missing Smith']), + create_lw_region(player, 'Bat Cave Drop Ledge', None, ['Bat Cave Drop']), + create_cave_region(player, 'Bat Cave (right)', 'a drop\'s exit', ['Magic Bat'], ['Bat Cave Door']), + create_cave_region(player, 'Bat Cave (left)', 'a drop\'s exit', None, ['Bat Cave Exit']), + create_cave_region(player, 'Sick Kids House', 'the sick kid', ['Sick Kid']), + create_lw_region(player, 'Hobo Bridge', ['Hobo']), + create_cave_region(player, 'Lost Woods Hideout (top)', 'a drop\'s exit', ['Lost Woods Hideout'], ['Lost Woods Hideout (top to bottom)']), + create_cave_region(player, 'Lost Woods Hideout (bottom)', 'a drop\'s exit', None, ['Lost Woods Hideout Exit']), + create_cave_region(player, 'Lumberjack Tree (top)', 'a drop\'s exit', ['Lumberjack Tree'], ['Lumberjack Tree (top to bottom)']), + create_cave_region(player, 'Lumberjack Tree (bottom)', 'a drop\'s exit', None, ['Lumberjack Tree Exit']), + create_lw_region(player, 'Cave 45 Ledge', None, ['Cave 45']), + create_cave_region(player, 'Cave 45', 'a cave with an item', ['Cave 45']), + create_lw_region(player, 'Graveyard Ledge', None, ['Graveyard Cave']), + create_cave_region(player, 'Graveyard Cave', 'a cave with an item', ['Graveyard Cave']), + create_cave_region(player, 'Checkerboard Cave', 'a cave with an item', ['Checkerboard Cave']), + create_cave_region(player, 'Long Fairy Cave', 'a fairy fountain'), + create_cave_region(player, 'Mini Moldorm Cave', 'a bounty of five items', ['Mini Moldorm Cave - Far Left', 'Mini Moldorm Cave - Left', 'Mini Moldorm Cave - Right', 'Mini Moldorm Cave - Far Right', 'Mini Moldorm Cave - Generous Guy']), - create_cave_region('Ice Rod Cave', 'a cave with a chest', ['Ice Rod Cave']), - create_cave_region('Good Bee Cave', 'a cold bee'), - create_cave_region('20 Rupee Cave', 'a cave with some cash'), - create_cave_region('Cave Shop (Lake Hylia)', 'a common shop'), - create_cave_region('Cave Shop (Dark Death Mountain)', 'a common shop'), - create_cave_region('Bonk Rock Cave', 'a cave with a chest', ['Bonk Rock Cave']), - create_cave_region('Library', 'the library', ['Library']), - create_cave_region('Kakariko Gamble Game', 'a game of chance'), - create_cave_region('Potion Shop', 'the potion shop', ['Potion Shop']), - create_lw_region('Lake Hylia Island', ['Lake Hylia Island']), - create_cave_region('Capacity Upgrade', 'the queen of fairies'), - create_cave_region('Two Brothers House', 'a connector', None, ['Two Brothers House Exit (East)', 'Two Brothers House Exit (West)']), - create_lw_region('Maze Race Ledge', ['Maze Race'], ['Two Brothers House (West)']), - create_cave_region('50 Rupee Cave', 'a cave with some cash'), - create_lw_region('Desert Ledge', ['Desert Ledge'], ['Desert Palace Entrance (North) Rocks', 'Desert Palace Entrance (West)']), - create_lw_region('Desert Ledge (Northeast)', None, ['Checkerboard Cave']), - create_lw_region('Desert Palace Stairs', None, ['Desert Palace Entrance (South)']), - create_lw_region('Desert Palace Lone Stairs', None, ['Desert Palace Stairs Drop', 'Desert Palace Entrance (East)']), - create_lw_region('Desert Palace Entrance (North) Spot', None, ['Desert Palace Entrance (North)', 'Desert Ledge Return Rocks']), - create_dungeon_region('Desert Palace Main (Outer)', 'Desert Palace', ['Desert Palace - Big Chest', 'Desert Palace - Torch', 'Desert Palace - Map Chest'], + create_cave_region(player, 'Ice Rod Cave', 'a cave with a chest', ['Ice Rod Cave']), + create_cave_region(player, 'Good Bee Cave', 'a cold bee'), + create_cave_region(player, '20 Rupee Cave', 'a cave with some cash'), + create_cave_region(player, 'Cave Shop (Lake Hylia)', 'a common shop'), + create_cave_region(player, 'Cave Shop (Dark Death Mountain)', 'a common shop'), + create_cave_region(player, 'Bonk Rock Cave', 'a cave with a chest', ['Bonk Rock Cave']), + create_cave_region(player, 'Library', 'the library', ['Library']), + create_cave_region(player, 'Kakariko Gamble Game', 'a game of chance'), + create_cave_region(player, 'Potion Shop', 'the potion shop', ['Potion Shop']), + create_lw_region(player, 'Lake Hylia Island', ['Lake Hylia Island']), + create_cave_region(player, 'Capacity Upgrade', 'the queen of fairies'), + create_cave_region(player, 'Two Brothers House', 'a connector', None, ['Two Brothers House Exit (East)', 'Two Brothers House Exit (West)']), + create_lw_region(player, 'Maze Race Ledge', ['Maze Race'], ['Two Brothers House (West)']), + create_cave_region(player, '50 Rupee Cave', 'a cave with some cash'), + create_lw_region(player, 'Desert Ledge', ['Desert Ledge'], ['Desert Palace Entrance (North) Rocks', 'Desert Palace Entrance (West)']), + create_lw_region(player, 'Desert Ledge (Northeast)', None, ['Checkerboard Cave']), + create_lw_region(player, 'Desert Palace Stairs', None, ['Desert Palace Entrance (South)']), + create_lw_region(player, 'Desert Palace Lone Stairs', None, ['Desert Palace Stairs Drop', 'Desert Palace Entrance (East)']), + create_lw_region(player, 'Desert Palace Entrance (North) Spot', None, ['Desert Palace Entrance (North)', 'Desert Ledge Return Rocks']), + create_dungeon_region(player, 'Desert Palace Main (Outer)', 'Desert Palace', ['Desert Palace - Big Chest', 'Desert Palace - Torch', 'Desert Palace - Map Chest'], ['Desert Palace Pots (Outer)', 'Desert Palace Exit (West)', 'Desert Palace Exit (East)', 'Desert Palace East Wing']), - create_dungeon_region('Desert Palace Main (Inner)', 'Desert Palace', None, ['Desert Palace Exit (South)', 'Desert Palace Pots (Inner)']), - create_dungeon_region('Desert Palace East', 'Desert Palace', ['Desert Palace - Compass Chest', 'Desert Palace - Big Key Chest']), - create_dungeon_region('Desert Palace North', 'Desert Palace', ['Desert Palace - Boss', 'Desert Palace - Prize'], ['Desert Palace Exit (North)']), - create_dungeon_region('Eastern Palace', 'Eastern Palace', ['Eastern Palace - Compass Chest', 'Eastern Palace - Big Chest', 'Eastern Palace - Cannonball Chest', + create_dungeon_region(player, 'Desert Palace Main (Inner)', 'Desert Palace', None, ['Desert Palace Exit (South)', 'Desert Palace Pots (Inner)']), + create_dungeon_region(player, 'Desert Palace East', 'Desert Palace', ['Desert Palace - Compass Chest', 'Desert Palace - Big Key Chest']), + create_dungeon_region(player, 'Desert Palace North', 'Desert Palace', ['Desert Palace - Boss', 'Desert Palace - Prize'], ['Desert Palace Exit (North)']), + create_dungeon_region(player, 'Eastern Palace', 'Eastern Palace', ['Eastern Palace - Compass Chest', 'Eastern Palace - Big Chest', 'Eastern Palace - Cannonball Chest', 'Eastern Palace - Big Key Chest', 'Eastern Palace - Map Chest', 'Eastern Palace - Boss', 'Eastern Palace - Prize'], ['Eastern Palace Exit']), - create_lw_region('Master Sword Meadow', ['Master Sword Pedestal']), - create_cave_region('Lost Woods Gamble', 'a game of chance'), - create_lw_region('Hyrule Castle Courtyard', None, ['Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Entrance (South)']), - create_lw_region('Hyrule Castle Ledge', None, ['Hyrule Castle Entrance (East)', 'Hyrule Castle Entrance (West)', 'Agahnims Tower', 'Hyrule Castle Ledge Courtyard Drop']), - create_dungeon_region('Hyrule Castle', 'Hyrule Castle', ['Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest'], + 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 Courtyard', None, ['Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Entrance (South)']), + 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, 'Hyrule Castle', 'Hyrule Castle', ['Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest'], ['Hyrule Castle Exit (East)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (South)', 'Throne Room']), - create_dungeon_region('Sewer Drop', 'a drop\'s exit', None, ['Sewer Drop']), # This exists only to be referenced for access checks - create_dungeon_region('Sewers (Dark)', 'a drop\'s exit', ['Sewers - Dark Cross'], ['Sewers Door']), - create_dungeon_region('Sewers', 'a drop\'s exit', ['Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', + create_dungeon_region(player, 'Sewer Drop', 'a drop\'s exit', None, ['Sewer Drop']), # This exists only to be referenced for access checks + create_dungeon_region(player, 'Sewers (Dark)', 'a drop\'s exit', ['Sewers - Dark Cross'], ['Sewers Door']), + create_dungeon_region(player, 'Sewers', 'a drop\'s exit', ['Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', 'Sewers - Secret Room - Right'], ['Sanctuary Push Door', 'Sewers Back Door']), - create_dungeon_region('Sanctuary', 'a drop\'s exit', ['Sanctuary'], ['Sanctuary Exit']), - create_dungeon_region('Agahnims Tower', 'Castle Tower', ['Castle Tower - Room 03', 'Castle Tower - Dark Maze'], ['Agahnim 1', 'Agahnims Tower Exit']), - create_dungeon_region('Agahnim 1', 'Castle Tower', ['Agahnim 1'], None), - create_cave_region('Old Man Cave', 'a connector', ['Old Man'], ['Old Man Cave Exit (East)', 'Old Man Cave Exit (West)']), - create_cave_region('Old Man House', 'a connector', None, ['Old Man House Exit (Bottom)', 'Old Man House Front to Back']), - create_cave_region('Old Man House Back', 'a connector', None, ['Old Man House Exit (Top)', 'Old Man House Back to Front']), - create_lw_region('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']), - create_cave_region('Death Mountain Return Cave', 'a connector', None, ['Death Mountain Return Cave Exit (West)', 'Death Mountain Return Cave Exit (East)']), - create_lw_region('Death Mountain Return Ledge', None, ['Death Mountain Return Ledge Drop', 'Death Mountain Return Cave (West)']), - create_cave_region('Spectacle Rock Cave (Top)', 'a connector', ['Spectacle Rock Cave'], ['Spectacle Rock Cave Drop', 'Spectacle Rock Cave Exit (Top)']), - create_cave_region('Spectacle Rock Cave (Bottom)', 'a connector', None, ['Spectacle Rock Cave Exit']), - create_cave_region('Spectacle Rock Cave (Peak)', 'a connector', None, ['Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave Exit (Peak)']), - create_lw_region('East Death Mountain (Bottom)', None, ['Broken Bridge (East)', 'Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'East Death Mountain Teleporter', 'Hookshot Fairy', 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)']), - create_cave_region('Hookshot Fairy', 'fairies deep in a cave'), - create_cave_region('Paradox Cave Front', 'a connector', None, ['Paradox Cave Push Block Reverse', 'Paradox Cave Exit (Bottom)', 'Light World Death Mountain Shop']), - create_cave_region('Paradox Cave Chest Area', 'a connector', ['Paradox Cave Lower - Far Left', + create_dungeon_region(player, 'Sanctuary', 'a drop\'s exit', ['Sanctuary'], ['Sanctuary Exit']), + create_dungeon_region(player, 'Agahnims Tower', 'Castle Tower', ['Castle Tower - Room 03', 'Castle Tower - Dark Maze'], ['Agahnim 1', 'Agahnims Tower Exit']), + create_dungeon_region(player, 'Agahnim 1', 'Castle Tower', ['Agahnim 1'], None), + 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 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']), + create_cave_region(player, 'Death Mountain Return Cave', 'a connector', None, ['Death Mountain Return Cave Exit (West)', 'Death Mountain Return Cave Exit (East)']), + create_lw_region(player, 'Death Mountain Return Ledge', None, ['Death Mountain Return Ledge Drop', 'Death Mountain Return Cave (West)']), + create_cave_region(player, 'Spectacle Rock Cave (Top)', 'a connector', ['Spectacle Rock Cave'], ['Spectacle Rock Cave Drop', 'Spectacle Rock Cave Exit (Top)']), + create_cave_region(player, 'Spectacle Rock Cave (Bottom)', 'a connector', None, ['Spectacle Rock Cave Exit']), + create_cave_region(player, 'Spectacle Rock Cave (Peak)', 'a connector', None, ['Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave Exit (Peak)']), + create_lw_region(player, 'East Death Mountain (Bottom)', None, ['Broken Bridge (East)', 'Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'East Death Mountain Teleporter', 'Hookshot Fairy', 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)']), + create_cave_region(player, 'Hookshot Fairy', 'fairies deep in a cave'), + create_cave_region(player, 'Paradox Cave Front', 'a connector', None, ['Paradox Cave Push Block Reverse', 'Paradox Cave Exit (Bottom)', 'Light World Death Mountain Shop']), + create_cave_region(player, 'Paradox Cave Chest Area', 'a connector', ['Paradox Cave Lower - Far Left', 'Paradox Cave Lower - Left', 'Paradox Cave Lower - Right', 'Paradox Cave Lower - Far Right', @@ -134,174 +134,174 @@ def create_regions(world): 'Paradox Cave Upper - Left', 'Paradox Cave Upper - Right'], ['Paradox Cave Push Block', 'Paradox Cave Bomb Jump']), - create_cave_region('Paradox Cave', 'a connector', None, ['Paradox Cave Exit (Middle)', 'Paradox Cave Exit (Top)', 'Paradox Cave Drop']), - create_cave_region('Light World Death Mountain Shop', 'a common shop'), - create_lw_region('East Death Mountain (Top)', None, ['Paradox Cave (Top)', 'Death Mountain (Top)', 'Spiral Cave Ledge Access', 'East Death Mountain Drop', 'Turtle Rock Teleporter', 'Fairy Ascension Ledge']), - create_lw_region('Spiral Cave Ledge', None, ['Spiral Cave', 'Spiral Cave Ledge Drop']), - create_cave_region('Spiral Cave (Top)', 'a connector', ['Spiral Cave'], ['Spiral Cave (top to bottom)', 'Spiral Cave Exit (Top)']), - create_cave_region('Spiral Cave (Bottom)', 'a connector', None, ['Spiral Cave Exit']), - create_lw_region('Fairy Ascension Plateau', None, ['Fairy Ascension Drop', 'Fairy Ascension Cave (Bottom)']), - create_cave_region('Fairy Ascension Cave (Bottom)', 'a connector', None, ['Fairy Ascension Cave Climb', 'Fairy Ascension Cave Exit (Bottom)']), - create_cave_region('Fairy Ascension Cave (Drop)', 'a connector', None, ['Fairy Ascension Cave Pots']), - create_cave_region('Fairy Ascension Cave (Top)', 'a connector', None, ['Fairy Ascension Cave Exit (Top)', 'Fairy Ascension Cave Drop']), - create_lw_region('Fairy Ascension Ledge', None, ['Fairy Ascension Ledge Drop', 'Fairy Ascension Cave (Top)']), - create_lw_region('Death Mountain (Top)', ['Ether Tablet'], ['East Death Mountain (Top)', 'Tower of Hera', 'Death Mountain Drop']), - create_lw_region('Spectacle Rock', ['Spectacle Rock'], ['Spectacle Rock Drop']), - create_dungeon_region('Tower of Hera (Bottom)', 'Tower of Hera', ['Tower of Hera - Basement Cage', 'Tower of Hera - Map Chest'], ['Tower of Hera Small Key Door', 'Tower of Hera Big Key Door', 'Tower of Hera Exit']), - create_dungeon_region('Tower of Hera (Basement)', 'Tower of Hera', ['Tower of Hera - Big Key Chest']), - create_dungeon_region('Tower of Hera (Top)', 'Tower of Hera', ['Tower of Hera - Compass Chest', 'Tower of Hera - Big Chest', 'Tower of Hera - Boss', 'Tower of Hera - Prize']), + create_cave_region(player, 'Paradox Cave', 'a connector', None, ['Paradox Cave Exit (Middle)', 'Paradox Cave Exit (Top)', 'Paradox Cave Drop']), + create_cave_region(player, 'Light World Death Mountain Shop', 'a common shop'), + create_lw_region(player, 'East Death Mountain (Top)', None, ['Paradox Cave (Top)', 'Death Mountain (Top)', 'Spiral Cave Ledge Access', 'East Death Mountain Drop', 'Turtle Rock Teleporter', 'Fairy Ascension Ledge']), + create_lw_region(player, 'Spiral Cave Ledge', None, ['Spiral Cave', 'Spiral Cave Ledge Drop']), + create_cave_region(player, 'Spiral Cave (Top)', 'a connector', ['Spiral Cave'], ['Spiral Cave (top to bottom)', 'Spiral Cave Exit (Top)']), + create_cave_region(player, 'Spiral Cave (Bottom)', 'a connector', None, ['Spiral Cave Exit']), + create_lw_region(player, 'Fairy Ascension Plateau', None, ['Fairy Ascension Drop', 'Fairy Ascension Cave (Bottom)']), + create_cave_region(player, 'Fairy Ascension Cave (Bottom)', 'a connector', None, ['Fairy Ascension Cave Climb', 'Fairy Ascension Cave Exit (Bottom)']), + create_cave_region(player, 'Fairy Ascension Cave (Drop)', 'a connector', None, ['Fairy Ascension Cave Pots']), + create_cave_region(player, 'Fairy Ascension Cave (Top)', 'a connector', None, ['Fairy Ascension Cave Exit (Top)', 'Fairy Ascension Cave Drop']), + create_lw_region(player, 'Fairy Ascension Ledge', None, ['Fairy Ascension Ledge Drop', 'Fairy Ascension Cave (Top)']), + create_lw_region(player, 'Death Mountain (Top)', ['Ether Tablet'], ['East Death Mountain (Top)', 'Tower of Hera', 'Death Mountain Drop']), + create_lw_region(player, 'Spectacle Rock', ['Spectacle Rock'], ['Spectacle Rock Drop']), + create_dungeon_region(player, 'Tower of Hera (Bottom)', 'Tower of Hera', ['Tower of Hera - Basement Cage', 'Tower of Hera - Map Chest'], ['Tower of Hera Small Key Door', 'Tower of Hera Big Key Door', 'Tower of Hera Exit']), + create_dungeon_region(player, 'Tower of Hera (Basement)', 'Tower of Hera', ['Tower of Hera - Big Key Chest']), + create_dungeon_region(player, 'Tower of Hera (Top)', 'Tower of Hera', ['Tower of Hera - Compass Chest', 'Tower of Hera - Big Chest', 'Tower of Hera - Boss', 'Tower of Hera - Prize']), - create_dw_region('East Dark World', ['Pyramid'], ['Pyramid Fairy', 'South Dark World Bridge', 'Palace of Darkness', 'Dark Lake Hylia Drop (East)', 'Dark Lake Hylia Teleporter', + create_dw_region(player, 'East Dark World', ['Pyramid'], ['Pyramid Fairy', 'South Dark World Bridge', 'Palace of Darkness', 'Dark Lake Hylia Drop (East)', 'Dark Lake Hylia Teleporter', 'Hyrule Castle Ledge Mirror Spot', 'Dark Lake Hylia Fairy', 'Palace of Darkness Hint', 'East Dark World Hint', 'Pyramid Hole', 'Northeast Dark World Broken Bridge Pass']), - create_dw_region('Northeast Dark World', ['Catfish'], ['West Dark World Gap', 'Dark World Potion Shop', 'East Dark World Broken Bridge Pass']), - create_cave_region('Palace of Darkness Hint', 'a storyteller'), - create_cave_region('East Dark World Hint', 'a storyteller'), - create_dw_region('South Dark World', ['Stumpy', 'Digging Game', 'Bombos Tablet'], ['Dark Lake Hylia Drop (South)', 'Hype Cave', 'Swamp Palace', 'Village of Outcasts Heavy Rock', 'Maze Race Mirror Spot', + create_dw_region(player, 'Northeast Dark World', ['Catfish'], ['West Dark World Gap', 'Dark World Potion Shop', 'East Dark World Broken Bridge Pass']), + create_cave_region(player, 'Palace of Darkness Hint', 'a storyteller'), + create_cave_region(player, 'East Dark World Hint', 'a storyteller'), + create_dw_region(player, 'South Dark World', ['Stumpy', 'Digging Game', 'Bombos Tablet'], ['Dark Lake Hylia Drop (South)', 'Hype Cave', 'Swamp Palace', 'Village of Outcasts Heavy Rock', 'Maze Race Mirror Spot', 'Cave 45 Mirror Spot', 'East Dark World Bridge', 'Big Bomb Shop', 'Archery Game', 'Bonk Fairy (Dark)', 'Dark Lake Hylia Shop']), - create_cave_region('Big Bomb Shop', 'the bomb shop'), - create_cave_region('Archery Game', 'a game of skill'), - create_dw_region('Dark Lake Hylia', None, ['Lake Hylia Island Mirror Spot', 'East Dark World Pier', 'Dark Lake Hylia Ledge']), - create_dw_region('Dark Lake Hylia Central Island', None, ['Ice Palace', 'Lake Hylia Central Island Mirror Spot']), - create_dw_region('Dark Lake Hylia Ledge', None, ['Dark Lake Hylia Ledge Drop', 'Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave']), - create_cave_region('Dark Lake Hylia Ledge Hint', 'a storyteller'), - create_cave_region('Dark Lake Hylia Ledge Spike Cave', 'a spiky hint'), - create_cave_region('Hype Cave', 'a bounty of five items', ['Hype Cave - Top', 'Hype Cave - Middle Right', 'Hype Cave - Middle Left', + create_cave_region(player, 'Big Bomb Shop', 'the bomb shop'), + create_cave_region(player, 'Archery Game', 'a game of skill'), + create_dw_region(player, 'Dark Lake Hylia', None, ['Lake Hylia Island Mirror Spot', 'East Dark World Pier', 'Dark Lake Hylia Ledge']), + create_dw_region(player, 'Dark Lake Hylia Central Island', None, ['Ice Palace', 'Lake Hylia Central Island Mirror Spot']), + create_dw_region(player, 'Dark Lake Hylia Ledge', None, ['Dark Lake Hylia Ledge Drop', 'Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave']), + create_cave_region(player, 'Dark Lake Hylia Ledge Hint', 'a storyteller'), + create_cave_region(player, 'Dark Lake Hylia Ledge Spike Cave', 'a spiky hint'), + create_cave_region(player, 'Hype Cave', 'a bounty of five items', ['Hype Cave - Top', 'Hype Cave - Middle Right', 'Hype Cave - Middle Left', 'Hype Cave - Bottom', 'Hype Cave - Generous Guy']), - create_dw_region('West Dark World', ['Frog'], ['Village of Outcasts Drop', 'East Dark World River Pier', 'Brewery', 'C-Shaped House', 'Chest Game', 'Thieves Town', 'Graveyard Ledge Mirror Spot', 'Kings Grave Mirror Spot', 'Bumper Cave Entrance Rock', + create_dw_region(player, 'West Dark World', ['Frog'], ['Village of Outcasts Drop', 'East Dark World River Pier', 'Brewery', 'C-Shaped House', 'Chest Game', 'Thieves Town', 'Graveyard Ledge Mirror Spot', 'Kings Grave Mirror Spot', 'Bumper Cave Entrance Rock', 'Skull Woods Forest', 'Village of Outcasts Pegs', 'Village of Outcasts Eastern Rocks', 'Red Shield Shop', 'Dark Sanctuary Hint', 'Fortune Teller (Dark)', 'Dark World Lumberjack Shop']), - create_dw_region('Dark Grassy Lawn', None, ['Grassy Lawn Pegs', 'Dark World Shop']), - create_dw_region('Hammer Peg Area', ['Dark Blacksmith Ruins'], ['Bat Cave Drop Ledge Mirror Spot', 'Dark World Hammer Peg Cave', 'Peg Area Rocks']), - create_dw_region('Bumper Cave Entrance', None, ['Bumper Cave (Bottom)', 'Bumper Cave Entrance Mirror Spot', 'Bumper Cave Entrance Drop']), - create_cave_region('Fortune Teller (Dark)', 'a fortune teller'), - create_cave_region('Village of Outcasts Shop', 'a common shop'), - create_cave_region('Dark Lake Hylia Shop', 'a common shop'), - create_cave_region('Dark World Lumberjack Shop', 'a common shop'), - create_cave_region('Dark World Potion Shop', 'a common shop'), - create_cave_region('Dark World Hammer Peg Cave', 'a cave with an item', ['Peg Cave']), - create_cave_region('Pyramid Fairy', 'a cave with two chests', ['Pyramid Fairy - Left', 'Pyramid Fairy - Right']), - create_cave_region('Brewery', 'a house with a chest', ['Brewery']), - create_cave_region('C-Shaped House', 'a house with a chest', ['C-Shaped House']), - create_cave_region('Chest Game', 'a game of 16 chests', ['Chest Game']), - create_cave_region('Red Shield Shop', 'the rare shop'), - create_cave_region('Dark Sanctuary Hint', 'a storyteller'), - create_cave_region('Bumper Cave', 'a connector', None, ['Bumper Cave Exit (Bottom)', 'Bumper Cave Exit (Top)']), - create_dw_region('Bumper Cave Ledge', ['Bumper Cave Ledge'], ['Bumper Cave Ledge Drop', 'Bumper Cave (Top)', 'Bumper Cave Ledge Mirror Spot']), - create_dw_region('Skull Woods Forest', None, ['Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', + create_dw_region(player, 'Dark Grassy Lawn', None, ['Grassy Lawn Pegs', 'Dark World Shop']), + create_dw_region(player, 'Hammer Peg Area', ['Dark Blacksmith Ruins'], ['Bat Cave Drop Ledge Mirror Spot', 'Dark World Hammer Peg Cave', 'Peg Area Rocks']), + create_dw_region(player, 'Bumper Cave Entrance', None, ['Bumper Cave (Bottom)', 'Bumper Cave Entrance Mirror Spot', 'Bumper Cave Entrance Drop']), + create_cave_region(player, 'Fortune Teller (Dark)', 'a fortune teller'), + create_cave_region(player, 'Village of Outcasts Shop', 'a common shop'), + create_cave_region(player, 'Dark Lake Hylia Shop', 'a common shop'), + create_cave_region(player, 'Dark World Lumberjack Shop', 'a common shop'), + create_cave_region(player, 'Dark World Potion Shop', 'a common shop'), + create_cave_region(player, 'Dark World Hammer Peg Cave', 'a cave with an item', ['Peg Cave']), + create_cave_region(player, 'Pyramid Fairy', 'a cave with two chests', ['Pyramid Fairy - Left', 'Pyramid Fairy - Right']), + create_cave_region(player, 'Brewery', 'a house with a chest', ['Brewery']), + create_cave_region(player, 'C-Shaped House', 'a house with a chest', ['C-Shaped House']), + create_cave_region(player, 'Chest Game', 'a game of 16 chests', ['Chest Game']), + create_cave_region(player, 'Red Shield Shop', 'the rare shop'), + create_cave_region(player, 'Dark Sanctuary Hint', 'a storyteller'), + create_cave_region(player, 'Bumper Cave', 'a connector', None, ['Bumper Cave Exit (Bottom)', 'Bumper Cave Exit (Top)']), + create_dw_region(player, 'Bumper Cave Ledge', ['Bumper Cave Ledge'], ['Bumper Cave Ledge Drop', 'Bumper Cave (Top)', 'Bumper Cave Ledge Mirror Spot']), + create_dw_region(player, 'Skull Woods Forest', None, ['Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', 'Skull Woods First Section Door', 'Skull Woods Second Section Door (East)']), - create_dw_region('Skull Woods Forest (West)', None, ['Skull Woods Second Section Hole', 'Skull Woods Second Section Door (West)', 'Skull Woods Final Section']), - create_dw_region('Dark Desert', None, ['Misery Mire', 'Mire Shed', 'Desert Ledge (Northeast) Mirror Spot', 'Desert Ledge Mirror Spot', 'Desert Palace Stairs Mirror Spot', + create_dw_region(player, 'Skull Woods Forest (West)', None, ['Skull Woods Second Section Hole', 'Skull Woods Second Section Door (West)', 'Skull Woods Final Section']), + create_dw_region(player, 'Dark Desert', None, ['Misery Mire', 'Mire Shed', 'Desert Ledge (Northeast) Mirror Spot', 'Desert Ledge Mirror Spot', 'Desert Palace Stairs Mirror Spot', 'Desert Palace Entrance (North) Mirror Spot', 'Dark Desert Hint', 'Dark Desert Fairy']), - create_cave_region('Mire Shed', 'a cave with two chests', ['Mire Shed - Left', 'Mire Shed - Right']), - create_cave_region('Dark Desert Hint', 'a storyteller'), - create_dw_region('Dark Death Mountain (West Bottom)', None, ['Spike Cave', 'Spectacle Rock Mirror Spot', 'Dark Death Mountain Fairy']), - create_dw_region('Dark Death Mountain (Top)', None, ['Dark Death Mountain Drop (East)', 'Dark Death Mountain Drop (West)', 'Ganons Tower', 'Superbunny Cave (Top)', + create_cave_region(player, 'Mire Shed', 'a cave with two chests', ['Mire Shed - Left', 'Mire Shed - Right']), + create_cave_region(player, 'Dark Desert Hint', 'a storyteller'), + create_dw_region(player, 'Dark Death Mountain (West Bottom)', None, ['Spike Cave', 'Spectacle Rock Mirror Spot', 'Dark Death Mountain Fairy']), + create_dw_region(player, 'Dark Death Mountain (Top)', None, ['Dark Death Mountain Drop (East)', 'Dark Death Mountain Drop (West)', 'Ganons Tower', 'Superbunny Cave (Top)', 'Hookshot Cave', 'East Death Mountain (Top) Mirror Spot', 'Turtle Rock']), - create_dw_region('Dark Death Mountain Ledge', None, ['Dark Death Mountain Ledge (East)', 'Dark Death Mountain Ledge (West)', 'Mimic Cave Mirror Spot', 'Spiral Cave Mirror Spot']), - create_dw_region('Dark Death Mountain Isolated Ledge', None, ['Isolated Ledge Mirror Spot', 'Turtle Rock Isolated Ledge Entrance']), - create_dw_region('Dark Death Mountain (East Bottom)', None, ['Superbunny Cave (Bottom)', 'Cave Shop (Dark Death Mountain)', 'Fairy Ascension Mirror Spot']), - create_cave_region('Superbunny Cave', 'a connector', ['Superbunny Cave - Top', 'Superbunny Cave - Bottom'], + create_dw_region(player, 'Dark Death Mountain Ledge', None, ['Dark Death Mountain Ledge (East)', 'Dark Death Mountain Ledge (West)', 'Mimic Cave Mirror Spot', 'Spiral Cave Mirror Spot']), + create_dw_region(player, 'Dark Death Mountain Isolated Ledge', None, ['Isolated Ledge Mirror Spot', 'Turtle Rock Isolated Ledge Entrance']), + create_dw_region(player, 'Dark Death Mountain (East Bottom)', None, ['Superbunny Cave (Bottom)', 'Cave Shop (Dark Death Mountain)', 'Fairy Ascension Mirror Spot']), + create_cave_region(player, 'Superbunny Cave', 'a connector', ['Superbunny Cave - Top', 'Superbunny Cave - Bottom'], ['Superbunny Cave Exit (Top)', 'Superbunny Cave Exit (Bottom)']), - create_cave_region('Spike Cave', 'Spike Cave', ['Spike Cave']), - create_cave_region('Hookshot Cave', 'a connector', ['Hookshot Cave - Top Right', 'Hookshot Cave - Top Left', 'Hookshot Cave - Bottom Right', 'Hookshot Cave - Bottom Left'], + create_cave_region(player, 'Spike Cave', 'Spike Cave', ['Spike Cave']), + create_cave_region(player, 'Hookshot Cave', 'a connector', ['Hookshot Cave - Top Right', 'Hookshot Cave - Top Left', 'Hookshot Cave - Bottom Right', 'Hookshot Cave - Bottom Left'], ['Hookshot Cave Exit (South)', 'Hookshot Cave Exit (North)']), - create_dw_region('Death Mountain Floating Island (Dark World)', None, ['Floating Island Drop', 'Hookshot Cave Back Entrance', 'Floating Island Mirror Spot']), - create_lw_region('Death Mountain Floating Island (Light World)', ['Floating Island']), - create_dw_region('Turtle Rock (Top)', None, ['Turtle Rock Drop']), - create_lw_region('Mimic Cave Ledge', None, ['Mimic Cave']), - create_cave_region('Mimic Cave', 'Mimic Cave', ['Mimic Cave']), + create_dw_region(player, 'Death Mountain Floating Island (Dark World)', None, ['Floating Island Drop', 'Hookshot Cave Back Entrance', 'Floating Island Mirror Spot']), + create_lw_region(player, 'Death Mountain Floating Island (Light World)', ['Floating Island']), + create_dw_region(player, 'Turtle Rock (Top)', None, ['Turtle Rock Drop']), + create_lw_region(player, 'Mimic Cave Ledge', None, ['Mimic Cave']), + create_cave_region(player, 'Mimic Cave', 'Mimic Cave', ['Mimic Cave']), - create_dungeon_region('Swamp Palace (Entrance)', 'Swamp Palace', None, ['Swamp Palace Moat', 'Swamp Palace Exit']), - create_dungeon_region('Swamp Palace (First Room)', 'Swamp Palace', ['Swamp Palace - Entrance'], ['Swamp Palace Small Key Door']), - create_dungeon_region('Swamp Palace (Starting Area)', 'Swamp Palace', ['Swamp Palace - Map Chest'], ['Swamp Palace (Center)']), - create_dungeon_region('Swamp Palace (Center)', 'Swamp Palace', ['Swamp Palace - Big Chest', 'Swamp Palace - Compass Chest', + create_dungeon_region(player, 'Swamp Palace (Entrance)', 'Swamp Palace', None, ['Swamp Palace Moat', 'Swamp Palace Exit']), + create_dungeon_region(player, 'Swamp Palace (First Room)', 'Swamp Palace', ['Swamp Palace - Entrance'], ['Swamp Palace Small Key Door']), + create_dungeon_region(player, 'Swamp Palace (Starting Area)', 'Swamp Palace', ['Swamp Palace - Map Chest'], ['Swamp Palace (Center)']), + create_dungeon_region(player, 'Swamp Palace (Center)', 'Swamp Palace', ['Swamp Palace - Big Chest', 'Swamp Palace - Compass Chest', 'Swamp Palace - Big Key Chest', 'Swamp Palace - West Chest'], ['Swamp Palace (North)']), - create_dungeon_region('Swamp Palace (North)', 'Swamp Palace', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right', + create_dungeon_region(player, 'Swamp Palace (North)', 'Swamp Palace', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right', 'Swamp Palace - Waterfall Room', 'Swamp Palace - Boss', 'Swamp Palace - Prize']), - create_dungeon_region('Thieves Town (Entrance)', 'Thieves\' Town', ['Thieves\' Town - Big Key Chest', + create_dungeon_region(player, 'Thieves Town (Entrance)', 'Thieves\' Town', ['Thieves\' Town - Big Key Chest', 'Thieves\' Town - Map Chest', 'Thieves\' Town - Compass Chest', 'Thieves\' Town - Ambush Chest'], ['Thieves Town Big Key Door', 'Thieves Town Exit']), - create_dungeon_region('Thieves Town (Deep)', 'Thieves\' Town', ['Thieves\' Town - Attic', + create_dungeon_region(player, 'Thieves Town (Deep)', 'Thieves\' Town', ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell'], ['Blind Fight']), - create_dungeon_region('Blind Fight', 'Thieves\' Town', ['Thieves\' Town - Boss', 'Thieves\' Town - Prize']), - create_dungeon_region('Skull Woods First Section', 'Skull Woods', ['Skull Woods - Map Chest'], ['Skull Woods First Section Exit', 'Skull Woods First Section Bomb Jump', 'Skull Woods First Section South Door', 'Skull Woods First Section West Door']), - create_dungeon_region('Skull Woods First Section (Right)', 'Skull Woods', ['Skull Woods - Pinball Room'], ['Skull Woods First Section (Right) North Door']), - create_dungeon_region('Skull Woods First Section (Left)', 'Skull Woods', ['Skull Woods - Compass Chest', 'Skull Woods - Pot Prison'], ['Skull Woods First Section (Left) Door to Exit', 'Skull Woods First Section (Left) Door to Right']), - create_dungeon_region('Skull Woods First Section (Top)', 'Skull Woods', ['Skull Woods - Big Chest'], ['Skull Woods First Section (Top) One-Way Path']), - create_dungeon_region('Skull Woods Second Section (Drop)', 'Skull Woods', None, ['Skull Woods Second Section (Drop)']), - create_dungeon_region('Skull Woods Second Section', 'Skull Woods', ['Skull Woods - Big Key Chest'], ['Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)']), - create_dungeon_region('Skull Woods Final Section (Entrance)', 'Skull Woods', ['Skull Woods - Bridge Room'], ['Skull Woods Torch Room', 'Skull Woods Final Section Exit']), - create_dungeon_region('Skull Woods Final Section (Mothula)', 'Skull Woods', ['Skull Woods - Boss', 'Skull Woods - Prize']), - create_dungeon_region('Ice Palace (Entrance)', 'Ice Palace', None, ['Ice Palace Entrance Room', 'Ice Palace Exit']), - create_dungeon_region('Ice Palace (Main)', 'Ice Palace', ['Ice Palace - Compass Chest', 'Ice Palace - Freezor Chest', + create_dungeon_region(player, 'Blind Fight', 'Thieves\' Town', ['Thieves\' Town - Boss', 'Thieves\' Town - Prize']), + create_dungeon_region(player, 'Skull Woods First Section', 'Skull Woods', ['Skull Woods - Map Chest'], ['Skull Woods First Section Exit', 'Skull Woods First Section Bomb Jump', 'Skull Woods First Section South Door', 'Skull Woods First Section West Door']), + create_dungeon_region(player, 'Skull Woods First Section (Right)', 'Skull Woods', ['Skull Woods - Pinball Room'], ['Skull Woods First Section (Right) North Door']), + create_dungeon_region(player, 'Skull Woods First Section (Left)', 'Skull Woods', ['Skull Woods - Compass Chest', 'Skull Woods - Pot Prison'], ['Skull Woods First Section (Left) Door to Exit', 'Skull Woods First Section (Left) Door to Right']), + create_dungeon_region(player, 'Skull Woods First Section (Top)', 'Skull Woods', ['Skull Woods - Big Chest'], ['Skull Woods First Section (Top) One-Way Path']), + create_dungeon_region(player, 'Skull Woods Second Section (Drop)', 'Skull Woods', None, ['Skull Woods Second Section (Drop)']), + create_dungeon_region(player, 'Skull Woods Second Section', 'Skull Woods', ['Skull Woods - Big Key Chest'], ['Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)']), + create_dungeon_region(player, 'Skull Woods Final Section (Entrance)', 'Skull Woods', ['Skull Woods - Bridge Room'], ['Skull Woods Torch Room', 'Skull Woods Final Section Exit']), + create_dungeon_region(player, 'Skull Woods Final Section (Mothula)', 'Skull Woods', ['Skull Woods - Boss', 'Skull Woods - Prize']), + create_dungeon_region(player, 'Ice Palace (Entrance)', 'Ice Palace', None, ['Ice Palace Entrance Room', 'Ice Palace Exit']), + create_dungeon_region(player, 'Ice Palace (Main)', 'Ice Palace', ['Ice Palace - Compass Chest', 'Ice Palace - Freezor Chest', 'Ice Palace - Big Chest', 'Ice Palace - Iced T Room'], ['Ice Palace (East)', 'Ice Palace (Kholdstare)']), - create_dungeon_region('Ice Palace (East)', 'Ice Palace', ['Ice Palace - Spike Room'], ['Ice Palace (East Top)']), - create_dungeon_region('Ice Palace (East Top)', 'Ice Palace', ['Ice Palace - Big Key Chest', 'Ice Palace - Map Chest']), - create_dungeon_region('Ice Palace (Kholdstare)', 'Ice Palace', ['Ice Palace - Boss', 'Ice Palace - Prize']), - create_dungeon_region('Misery Mire (Entrance)', 'Misery Mire', None, ['Misery Mire Entrance Gap', 'Misery Mire Exit']), - create_dungeon_region('Misery Mire (Main)', 'Misery Mire', ['Misery Mire - Big Chest', 'Misery Mire - Map Chest', 'Misery Mire - Main Lobby', + create_dungeon_region(player, 'Ice Palace (East)', 'Ice Palace', ['Ice Palace - Spike Room'], ['Ice Palace (East Top)']), + create_dungeon_region(player, 'Ice Palace (East Top)', 'Ice Palace', ['Ice Palace - Big Key Chest', 'Ice Palace - Map Chest']), + create_dungeon_region(player, 'Ice Palace (Kholdstare)', 'Ice Palace', ['Ice Palace - Boss', 'Ice Palace - Prize']), + create_dungeon_region(player, 'Misery Mire (Entrance)', 'Misery Mire', None, ['Misery Mire Entrance Gap', 'Misery Mire Exit']), + create_dungeon_region(player, 'Misery Mire (Main)', 'Misery Mire', ['Misery Mire - Big Chest', 'Misery Mire - Map Chest', 'Misery Mire - Main Lobby', 'Misery Mire - Bridge Chest', 'Misery Mire - Spike Chest'], ['Misery Mire (West)', 'Misery Mire Big Key Door']), - create_dungeon_region('Misery Mire (West)', 'Misery Mire', ['Misery Mire - Compass Chest', 'Misery Mire - Big Key Chest']), - create_dungeon_region('Misery Mire (Final Area)', 'Misery Mire', None, ['Misery Mire (Vitreous)']), - create_dungeon_region('Misery Mire (Vitreous)', 'Misery Mire', ['Misery Mire - Boss', 'Misery Mire - Prize']), - create_dungeon_region('Turtle Rock (Entrance)', 'Turtle Rock', None, ['Turtle Rock Entrance Gap', 'Turtle Rock Exit (Front)']), - create_dungeon_region('Turtle Rock (First Section)', 'Turtle Rock', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', + create_dungeon_region(player, 'Misery Mire (West)', 'Misery Mire', ['Misery Mire - Compass Chest', 'Misery Mire - Big Key Chest']), + create_dungeon_region(player, 'Misery Mire (Final Area)', 'Misery Mire', None, ['Misery Mire (Vitreous)']), + create_dungeon_region(player, 'Misery Mire (Vitreous)', 'Misery Mire', ['Misery Mire - Boss', 'Misery Mire - Prize']), + create_dungeon_region(player, 'Turtle Rock (Entrance)', 'Turtle Rock', None, ['Turtle Rock Entrance Gap', 'Turtle Rock Exit (Front)']), + create_dungeon_region(player, 'Turtle Rock (First Section)', 'Turtle Rock', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', 'Turtle Rock - Roller Room - Right'], ['Turtle Rock Pokey Room', 'Turtle Rock Entrance Gap Reverse']), - create_dungeon_region('Turtle Rock (Chain Chomp Room)', 'Turtle Rock', ['Turtle Rock - Chain Chomps'], ['Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)']), - create_dungeon_region('Turtle Rock (Second Section)', 'Turtle Rock', ['Turtle Rock - Big Key Chest'], ['Turtle Rock Ledge Exit (West)', 'Turtle Rock Chain Chomp Staircase', 'Turtle Rock Big Key Door']), - create_dungeon_region('Turtle Rock (Big Chest)', 'Turtle Rock', ['Turtle Rock - Big Chest'], ['Turtle Rock (Big Chest) (North)', 'Turtle Rock Ledge Exit (East)']), - create_dungeon_region('Turtle Rock (Crystaroller Room)', 'Turtle Rock', ['Turtle Rock - Crystaroller Room'], ['Turtle Rock Dark Room Staircase', 'Turtle Rock Big Key Door Reverse']), - create_dungeon_region('Turtle Rock (Dark Room)', 'Turtle Rock', None, ['Turtle Rock (Dark Room) (North)', 'Turtle Rock (Dark Room) (South)']), - create_dungeon_region('Turtle Rock (Eye Bridge)', 'Turtle Rock', ['Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', + create_dungeon_region(player, 'Turtle Rock (Chain Chomp Room)', 'Turtle Rock', ['Turtle Rock - Chain Chomps'], ['Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)']), + create_dungeon_region(player, 'Turtle Rock (Second Section)', 'Turtle Rock', ['Turtle Rock - Big Key Chest'], ['Turtle Rock Ledge Exit (West)', 'Turtle Rock Chain Chomp Staircase', 'Turtle Rock Big Key Door']), + create_dungeon_region(player, 'Turtle Rock (Big Chest)', 'Turtle Rock', ['Turtle Rock - Big Chest'], ['Turtle Rock (Big Chest) (North)', 'Turtle Rock Ledge Exit (East)']), + create_dungeon_region(player, 'Turtle Rock (Crystaroller Room)', 'Turtle Rock', ['Turtle Rock - Crystaroller Room'], ['Turtle Rock Dark Room Staircase', 'Turtle Rock Big Key Door Reverse']), + create_dungeon_region(player, 'Turtle Rock (Dark Room)', 'Turtle Rock', None, ['Turtle Rock (Dark Room) (North)', 'Turtle Rock (Dark Room) (South)']), + create_dungeon_region(player, 'Turtle Rock (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 Dark Room (South)', 'Turtle Rock (Trinexx)', 'Turtle Rock Isolated Ledge Exit']), - create_dungeon_region('Turtle Rock (Trinexx)', 'Turtle Rock', ['Turtle Rock - Boss', 'Turtle Rock - Prize']), - create_dungeon_region('Palace of Darkness (Entrance)', 'Palace of Darkness', ['Palace of Darkness - Shooter Room'], ['Palace of Darkness Bridge Room', 'Palace of Darkness Bonk Wall', 'Palace of Darkness Exit']), - create_dungeon_region('Palace of Darkness (Center)', 'Palace of Darkness', ['Palace of Darkness - The Arena - Bridge', 'Palace of Darkness - Stalfos Basement'], + create_dungeon_region(player, 'Turtle Rock (Trinexx)', 'Turtle Rock', ['Turtle Rock - Boss', 'Turtle Rock - Prize']), + create_dungeon_region(player, 'Palace of Darkness (Entrance)', 'Palace of Darkness', ['Palace of Darkness - Shooter Room'], ['Palace of Darkness Bridge Room', 'Palace of Darkness Bonk Wall', 'Palace of Darkness Exit']), + create_dungeon_region(player, 'Palace of Darkness (Center)', 'Palace of Darkness', ['Palace of Darkness - The Arena - Bridge', 'Palace of Darkness - Stalfos Basement'], ['Palace of Darkness Big Key Chest Staircase', 'Palace of Darkness (North)', 'Palace of Darkness Big Key Door']), - create_dungeon_region('Palace of Darkness (Big Key Chest)', 'Palace of Darkness', ['Palace of Darkness - Big Key Chest']), - create_dungeon_region('Palace of Darkness (Bonk Section)', 'Palace of Darkness', ['Palace of Darkness - The Arena - Ledge', 'Palace of Darkness - Map Chest'], ['Palace of Darkness Hammer Peg Drop']), - create_dungeon_region('Palace of Darkness (North)', 'Palace of Darkness', ['Palace of Darkness - Compass Chest', 'Palace of Darkness - Dark Basement - Left', 'Palace of Darkness - Dark Basement - Right'], + create_dungeon_region(player, 'Palace of Darkness (Big Key Chest)', 'Palace of Darkness', ['Palace of Darkness - Big Key Chest']), + create_dungeon_region(player, 'Palace of Darkness (Bonk Section)', 'Palace of Darkness', ['Palace of Darkness - The Arena - Ledge', 'Palace of Darkness - Map Chest'], ['Palace of Darkness Hammer Peg Drop']), + create_dungeon_region(player, 'Palace of Darkness (North)', 'Palace of Darkness', ['Palace of Darkness - Compass Chest', 'Palace of Darkness - Dark Basement - Left', 'Palace of Darkness - Dark Basement - Right'], ['Palace of Darkness Spike Statue Room Door', 'Palace of Darkness Maze Door']), - create_dungeon_region('Palace of Darkness (Maze)', 'Palace of Darkness', ['Palace of Darkness - Dark Maze - Top', 'Palace of Darkness - Dark Maze - Bottom', 'Palace of Darkness - Big Chest']), - create_dungeon_region('Palace of Darkness (Harmless Hellway)', 'Palace of Darkness', ['Palace of Darkness - Harmless Hellway']), - create_dungeon_region('Palace of Darkness (Final Section)', 'Palace of Darkness', ['Palace of Darkness - Boss', 'Palace of Darkness - Prize']), - create_dungeon_region('Ganons Tower (Entrance)', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Torch', 'Ganons Tower - Hope Room - Left', 'Ganons Tower - Hope Room - Right'], + create_dungeon_region(player, 'Palace of Darkness (Maze)', 'Palace of Darkness', ['Palace of Darkness - Dark Maze - Top', 'Palace of Darkness - Dark Maze - Bottom', 'Palace of Darkness - Big Chest']), + create_dungeon_region(player, 'Palace of Darkness (Harmless Hellway)', 'Palace of Darkness', ['Palace of Darkness - Harmless Hellway']), + create_dungeon_region(player, 'Palace of Darkness (Final Section)', 'Palace of Darkness', ['Palace of Darkness - Boss', 'Palace of Darkness - Prize']), + create_dungeon_region(player, 'Ganons Tower (Entrance)', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Torch', 'Ganons Tower - Hope Room - Left', 'Ganons Tower - Hope Room - Right'], ['Ganons Tower (Tile Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower Big Key Door', 'Ganons Tower Exit']), - create_dungeon_region('Ganons Tower (Tile Room)', 'Ganon\'s Tower', ['Ganons Tower - Tile Room'], ['Ganons Tower (Tile Room) Key Door']), - create_dungeon_region('Ganons Tower (Compass Room)', 'Ganon\'s Tower', ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', + create_dungeon_region(player, 'Ganons Tower (Tile Room)', 'Ganon\'s Tower', ['Ganons Tower - Tile Room'], ['Ganons Tower (Tile Room) Key Door']), + create_dungeon_region(player, 'Ganons Tower (Compass Room)', 'Ganon\'s Tower', ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'], ['Ganons Tower (Bottom) (East)']), - create_dungeon_region('Ganons Tower (Hookshot Room)', 'Ganon\'s Tower', ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', + create_dungeon_region(player, 'Ganons Tower (Hookshot Room)', 'Ganon\'s Tower', ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', 'Ganons Tower - DMs Room - Bottom Left', 'Ganons Tower - DMs Room - Bottom Right'], ['Ganons Tower (Map Room)', 'Ganons Tower (Double Switch Room)']), - create_dungeon_region('Ganons Tower (Map Room)', 'Ganon\'s Tower', ['Ganons Tower - Map Chest']), - create_dungeon_region('Ganons Tower (Firesnake Room)', 'Ganon\'s Tower', ['Ganons Tower - Firesnake Room'], ['Ganons Tower (Firesnake Room)']), - create_dungeon_region('Ganons Tower (Teleport Room)', 'Ganon\'s Tower', ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', + create_dungeon_region(player, 'Ganons Tower (Map Room)', 'Ganon\'s Tower', ['Ganons Tower - Map Chest']), + create_dungeon_region(player, 'Ganons Tower (Firesnake Room)', 'Ganon\'s Tower', ['Ganons Tower - Firesnake Room'], ['Ganons Tower (Firesnake Room)']), + create_dungeon_region(player, 'Ganons Tower (Teleport Room)', 'Ganon\'s Tower', ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'], ['Ganons Tower (Bottom) (West)']), - create_dungeon_region('Ganons Tower (Bottom)', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Chest', 'Ganons Tower - Big Chest', 'Ganons Tower - Big Key Room - Left', + create_dungeon_region(player, 'Ganons Tower (Bottom)', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Chest', 'Ganons Tower - Big Chest', 'Ganons Tower - Big Key Room - Left', 'Ganons Tower - Big Key Room - Right', 'Ganons Tower - Big Key Chest']), - create_dungeon_region('Ganons Tower (Top)', 'Ganon\'s Tower', None, ['Ganons Tower Torch Rooms']), - create_dungeon_region('Ganons Tower (Before Moldorm)', 'Ganon\'s Tower', ['Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', + create_dungeon_region(player, 'Ganons Tower (Top)', 'Ganon\'s Tower', None, ['Ganons Tower Torch Rooms']), + create_dungeon_region(player, 'Ganons Tower (Before Moldorm)', 'Ganon\'s Tower', ['Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', 'Ganons Tower - Pre-Moldorm Chest'], ['Ganons Tower Moldorm Door']), - create_dungeon_region('Ganons Tower (Moldorm)', 'Ganon\'s Tower', None, ['Ganons Tower Moldorm Gap']), - create_dungeon_region('Agahnim 2', 'Ganon\'s Tower', ['Ganons Tower - Validation Chest', 'Agahnim 2'], None), - create_cave_region('Pyramid', 'a drop\'s exit', ['Ganon'], ['Ganon Drop']), - create_cave_region('Bottom of Pyramid', 'a drop\'s exit', None, ['Pyramid Exit']), - create_dw_region('Pyramid Ledge', None, ['Pyramid Entrance', 'Pyramid Drop']) + create_dungeon_region(player, 'Ganons Tower (Moldorm)', 'Ganon\'s Tower', None, ['Ganons Tower Moldorm Gap']), + create_dungeon_region(player, 'Agahnim 2', 'Ganon\'s Tower', ['Ganons Tower - Validation Chest', 'Agahnim 2'], None), + create_cave_region(player, 'Pyramid', 'a drop\'s exit', ['Ganon'], ['Ganon Drop']), + create_cave_region(player, 'Bottom of Pyramid', 'a drop\'s exit', None, ['Pyramid Exit']), + create_dw_region(player, 'Pyramid Ledge', None, ['Pyramid Entrance', 'Pyramid Drop']) ] for region_name, (room_id, shopkeeper, replaceable) in shop_table.items(): - region = world.get_region(region_name) + region = world.get_region(region_name, player) shop = Shop(region, room_id, ShopType.Shop, shopkeeper, replaceable) region.shop = shop world.shops.append(shop) for index, (item, price) in enumerate(default_shop_contents[region_name]): shop.add_inventory(index, item, price) - region = world.get_region('Capacity Upgrade') + region = world.get_region('Capacity Upgrade', player) shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, True) region.shop = shop world.shops.append(shop) @@ -309,30 +309,30 @@ def create_regions(world): shop.add_inventory(1, 'Arrow Upgrade (+5)', 100, 7) world.intialize_regions() -def create_lw_region(name, locations=None, exits=None): - return _create_region(name, RegionType.LightWorld, 'Light World', 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(name, locations=None, exits=None): - return _create_region(name, RegionType.DarkWorld, 'Dark 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(name, hint='Hyrule', locations=None, exits=None): - return _create_region(name, RegionType.Cave, hint, 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(name, hint='Hyrule', locations=None, exits=None): - return _create_region(name, RegionType.Dungeon, 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) -def _create_region(name, type, hint='Hyrule', locations=None, exits=None): - ret = Region(name, type, hint) +def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None): + ret = Region(name, type, hint, player) if locations is None: locations = [] if exits is None: exits = [] for exit in exits: - ret.exits.append(Entrance(exit, ret)) + ret.exits.append(Entrance(player, exit, ret)) for location in locations: address, crystal, hint_text = location_table[location] - ret.locations.append(Location(location, address, crystal, hint_text, ret)) + ret.locations.append(Location(player, location, address, crystal, hint_text, ret)) return ret def mark_light_world_regions(world): @@ -398,221 +398,221 @@ default_shop_contents = { } location_table = {'Mushroom': (0x180013, False, 'in the woods'), - 'Bottle Merchant': (0x2EB18, False, 'with a merchant'), - 'Flute Spot': (0x18014A, False, 'underground'), + 'Bottle Merchant': (0x2eb18, False, 'with a merchant'), + 'Flute Spot': (0x18014a, False, 'underground'), 'Sunken Treasure': (0x180145, False, 'underwater'), - 'Purple Chest': (0x33D68, False, 'from a box'), - 'Blind\'s Hideout - Top': (0xEB0F, False, 'in a basement'), - 'Blind\'s Hideout - Left': (0xEB12, False, 'in a basement'), - 'Blind\'s Hideout - Right': (0xEB15, False, 'in a basement'), - 'Blind\'s Hideout - Far Left': (0xEB18, False, 'in a basement'), - 'Blind\'s Hideout - Far Right': (0xEB1B, False, 'in a basement'), - 'Link\'s Uncle': (0x2DF45, False, 'with your uncle'), - 'Secret Passage': (0xE971, False, 'near your uncle'), - 'King Zora': (0xEE1C3, False, 'at a high price'), - 'Zora\'s Ledge': (0x180149, False, 'near Zora'), - 'Waterfall Fairy - Left': (0xE9B0, False, 'near a fairy'), - 'Waterfall Fairy - Right': (0xE9D1, False, 'near a fairy'), - 'King\'s Tomb': (0xE97A, False, 'alone in a cave'), - 'Floodgate Chest': (0xE98C, False, 'in the dam'), - 'Link\'s House': (0xE9BC, False, 'in your home'), - 'Kakariko Tavern': (0xE9CE, False, 'in the bar'), - 'Chicken House': (0xE9E9, False, 'near poultry'), - 'Aginah\'s Cave': (0xE9F2, False, 'with Aginah'), - 'Sahasrahla\'s Hut - Left': (0xEA82, False, 'near the elder'), - 'Sahasrahla\'s Hut - Middle': (0xEA85, False, 'near the elder'), - 'Sahasrahla\'s Hut - Right': (0xEA88, False, 'near the elder'), - 'Sahasrahla': (0x2F1FC, False, 'with the elder'), - 'Kakariko Well - Top': (0xEA8E, False, 'in a well'), - 'Kakariko Well - Left': (0xEA91, False, 'in a well'), - 'Kakariko Well - Middle': (0xEA94, False, 'in a well'), - 'Kakariko Well - Right': (0xEA97, False, 'in a well'), - 'Kakariko Well - Bottom': (0xEA9A, False, 'in a well'), - 'Blacksmith': (0x18002A, False, 'with the smith'), + 'Purple Chest': (0x33d68, False, 'from a box'), + "Blind's Hideout - Top": (0xeb0f, False, 'in a basement'), + "Blind's Hideout - Left": (0xeb12, False, 'in a basement'), + "Blind's Hideout - Right": (0xeb15, False, 'in a basement'), + "Blind's Hideout - Far Left": (0xeb18, False, 'in a basement'), + "Blind's Hideout - Far Right": (0xeb1b, False, 'in a basement'), + "Link's Uncle": (0x2df45, False, 'with your uncle'), + 'Secret Passage': (0xe971, False, 'near your uncle'), + 'King Zora': (0xee1c3, False, 'at a high price'), + "Zora's Ledge": (0x180149, False, 'near Zora'), + 'Waterfall Fairy - Left': (0xe9b0, False, 'near a fairy'), + 'Waterfall Fairy - Right': (0xe9d1, False, 'near a fairy'), + "King's Tomb": (0xe97a, False, 'alone in a cave'), + 'Floodgate Chest': (0xe98c, False, 'in the dam'), + "Link's House": (0xe9bc, False, 'in your home'), + 'Kakariko Tavern': (0xe9ce, False, 'in the bar'), + 'Chicken House': (0xe9e9, False, 'near poultry'), + "Aginah's Cave": (0xe9f2, False, 'with Aginah'), + "Sahasrahla's Hut - Left": (0xea82, False, 'near the elder'), + "Sahasrahla's Hut - Middle": (0xea85, False, 'near the elder'), + "Sahasrahla's Hut - Right": (0xea88, False, 'near the elder'), + 'Sahasrahla': (0x2f1fc, False, 'with the elder'), + 'Kakariko Well - Top': (0xea8e, False, 'in a well'), + 'Kakariko Well - Left': (0xea91, False, 'in a well'), + 'Kakariko Well - Middle': (0xea94, False, 'in a well'), + 'Kakariko Well - Right': (0xea97, False, 'in a well'), + 'Kakariko Well - Bottom': (0xea9a, False, 'in a well'), + 'Blacksmith': (0x18002a, False, 'with the smith'), 'Magic Bat': (0x180015, False, 'with the bat'), - 'Sick Kid': (0x339CF, False, 'with the sick'), - 'Hobo': (0x33E7D, False, 'with the hobo'), + 'Sick Kid': (0x339cf, False, 'with the sick'), + 'Hobo': (0x33e7d, False, 'with the hobo'), 'Lost Woods Hideout': (0x180000, False, 'near a thief'), 'Lumberjack Tree': (0x180001, False, 'in a hole'), 'Cave 45': (0x180003, False, 'alone in a cave'), 'Graveyard Cave': (0x180004, False, 'alone in a cave'), 'Checkerboard Cave': (0x180005, False, 'alone in a cave'), - 'Mini Moldorm Cave - Far Left': (0xEB42, False, 'near Moldorms'), - 'Mini Moldorm Cave - Left': (0xEB45, False, 'near Moldorms'), - 'Mini Moldorm Cave - Right': (0xEB48, False, 'near Moldorms'), - 'Mini Moldorm Cave - Far Right': (0xEB4B, False, 'near Moldorms'), + 'Mini Moldorm Cave - Far Left': (0xeb42, False, 'near Moldorms'), + 'Mini Moldorm Cave - Left': (0xeb45, False, 'near Moldorms'), + 'Mini Moldorm Cave - Right': (0xeb48, False, 'near Moldorms'), + 'Mini Moldorm Cave - Far Right': (0xeb4b, False, 'near Moldorms'), 'Mini Moldorm Cave - Generous Guy': (0x180010, False, 'near Moldorms'), - 'Ice Rod Cave': (0xEB4E, False, 'in a frozen cave'), - 'Bonk Rock Cave': (0xEB3F, False, 'alone in a cave'), + 'Ice Rod Cave': (0xeb4e, False, 'in a frozen cave'), + 'Bonk Rock Cave': (0xeb3f, False, 'alone in a cave'), 'Library': (0x180012, False, 'near books'), 'Potion Shop': (0x180014, False, 'near potions'), 'Lake Hylia Island': (0x180144, False, 'on an island'), 'Maze Race': (0x180142, False, 'at the race'), 'Desert Ledge': (0x180143, False, 'in the desert'), - 'Desert Palace - Big Chest': (0xE98F, False, 'in Desert Palace'), + 'Desert Palace - Big Chest': (0xe98f, False, 'in Desert Palace'), 'Desert Palace - Torch': (0x180160, False, 'in Desert Palace'), - 'Desert Palace - Map Chest': (0xE9B6, False, 'in Desert Palace'), - 'Desert Palace - Compass Chest': (0xE9CB, False, 'in Desert Palace'), - 'Desert Palace - Big Key Chest': (0xE9C2, False, 'in Desert Palace'), + 'Desert Palace - Map Chest': (0xe9b6, False, 'in Desert Palace'), + 'Desert Palace - Compass Chest': (0xe9cb, False, 'in Desert Palace'), + 'Desert Palace - Big Key Chest': (0xe9c2, False, 'in Desert Palace'), 'Desert Palace - Boss': (0x180151, False, 'with Lanmolas'), - 'Eastern Palace - Compass Chest': (0xE977, False, 'in Eastern Palace'), - 'Eastern Palace - Big Chest': (0xE97D, False, 'in Eastern Palace'), - 'Eastern Palace - Cannonball Chest': (0xE9B3, False, 'in Eastern Palace'), - 'Eastern Palace - Big Key Chest': (0xE9B9, False, 'in Eastern Palace'), - 'Eastern Palace - Map Chest': (0xE9F5, False, 'in Eastern Palace'), + 'Eastern Palace - Compass Chest': (0xe977, False, 'in Eastern Palace'), + 'Eastern Palace - Big Chest': (0xe97d, False, 'in Eastern Palace'), + 'Eastern Palace - Cannonball Chest': (0xe9b3, False, 'in Eastern Palace'), + 'Eastern Palace - Big Key Chest': (0xe9b9, False, 'in Eastern Palace'), + 'Eastern Palace - Map Chest': (0xe9f5, False, 'in Eastern Palace'), 'Eastern Palace - Boss': (0x180150, False, 'with the Armos'), - 'Master Sword Pedestal': (0x289B0, False, 'at the pedestal'), - 'Hyrule Castle - Boomerang Chest': (0xE974, False, 'in Hyrule Castle'), - 'Hyrule Castle - Map Chest': (0xEB0C, False, 'in Hyrule Castle'), - 'Hyrule Castle - Zelda\'s Chest': (0xEB09, False, 'in Hyrule Castle'), - 'Sewers - Dark Cross': (0xE96E, False, 'in the sewers'), - 'Sewers - Secret Room - Left': (0xEB5D, False, 'in the sewers'), - 'Sewers - Secret Room - Middle': (0xEB60, False, 'in the sewers'), - 'Sewers - Secret Room - Right': (0xEB63, False, 'in the sewers'), - 'Sanctuary': (0xEA79, False, 'in Sanctuary'), - 'Castle Tower - Room 03': (0xEAB5, False, 'in Castle Tower'), - 'Castle Tower - Dark Maze': (0xEAB2, False, 'in Castle Tower'), - 'Old Man': (0xF69FA, False, 'with the old man'), + 'Master Sword Pedestal': (0x289b0, False, 'at the pedestal'), + 'Hyrule Castle - Boomerang Chest': (0xe974, False, 'in Hyrule Castle'), + 'Hyrule Castle - Map Chest': (0xeb0c, False, 'in Hyrule Castle'), + "Hyrule Castle - Zelda's Chest": (0xeb09, False, 'in Hyrule Castle'), + 'Sewers - Dark Cross': (0xe96e, False, 'in the sewers'), + 'Sewers - Secret Room - Left': (0xeb5d, False, 'in the sewers'), + 'Sewers - Secret Room - Middle': (0xeb60, False, 'in the sewers'), + 'Sewers - Secret Room - Right': (0xeb63, False, 'in the sewers'), + 'Sanctuary': (0xea79, False, 'in Sanctuary'), + 'Castle Tower - Room 03': (0xeab5, False, 'in Castle Tower'), + 'Castle Tower - Dark Maze': (0xeab2, False, 'in Castle Tower'), + 'Old Man': (0xf69fa, False, 'with the old man'), 'Spectacle Rock Cave': (0x180002, False, 'alone in a cave'), - 'Paradox Cave Lower - Far Left': (0xEB2A, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Left': (0xEB2D, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Right': (0xEB30, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Far Right': (0xEB33, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Middle': (0xEB36, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Left': (0xEB39, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Right': (0xEB3C, False, 'in a cave with seven chests'), - 'Spiral Cave': (0xE9BF, False, 'in spiral cave'), + 'Paradox Cave Lower - Far Left': (0xeb2a, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Left': (0xeb2d, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Right': (0xeb30, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Far Right': (0xeb33, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Middle': (0xeb36, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Left': (0xeb39, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Right': (0xeb3c, False, 'in a cave with seven chests'), + 'Spiral Cave': (0xe9bf, False, 'in spiral cave'), 'Ether Tablet': (0x180016, False, 'at a monolith'), 'Spectacle Rock': (0x180140, False, 'atop a rock'), 'Tower of Hera - Basement Cage': (0x180162, False, 'in Tower of Hera'), - 'Tower of Hera - Map Chest': (0xE9AD, False, 'in Tower of Hera'), - 'Tower of Hera - Big Key Chest': (0xE9E6, False, 'in Tower of Hera'), - 'Tower of Hera - Compass Chest': (0xE9FB, False, 'in Tower of Hera'), - 'Tower of Hera - Big Chest': (0xE9F8, False, 'in Tower of Hera'), + 'Tower of Hera - Map Chest': (0xe9ad, False, 'in Tower of Hera'), + 'Tower of Hera - Big Key Chest': (0xe9e6, False, 'in Tower of Hera'), + 'Tower of Hera - Compass Chest': (0xe9fb, False, 'in Tower of Hera'), + 'Tower of Hera - Big Chest': (0xe9f8, False, 'in Tower of Hera'), 'Tower of Hera - Boss': (0x180152, False, 'with Moldorm'), 'Pyramid': (0x180147, False, 'on the pyramid'), - 'Catfish': (0xEE185, False, 'with a catfish'), - 'Stumpy': (0x330C7, False, 'with tree boy'), + 'Catfish': (0xee185, False, 'with a catfish'), + 'Stumpy': (0x330c7, False, 'with tree boy'), 'Digging Game': (0x180148, False, 'underground'), 'Bombos Tablet': (0x180017, False, 'at a monolith'), - 'Hype Cave - Top': (0xEB1E, False, 'near a bat-like man'), - 'Hype Cave - Middle Right': (0xEB21, False, 'near a bat-like man'), - 'Hype Cave - Middle Left': (0xEB24, False, 'near a bat-like man'), - 'Hype Cave - Bottom': (0xEB27, False, 'near a bat-like man'), + 'Hype Cave - Top': (0xeb1e, False, 'near a bat-like man'), + 'Hype Cave - Middle Right': (0xeb21, False, 'near a bat-like man'), + 'Hype Cave - Middle Left': (0xeb24, False, 'near a bat-like man'), + 'Hype Cave - Bottom': (0xeb27, False, 'near a bat-like man'), 'Hype Cave - Generous Guy': (0x180011, False, 'with a bat-like man'), 'Peg Cave': (0x180006, False, 'alone in a cave'), - 'Pyramid Fairy - Left': (0xE980, False, 'near a fairy'), - 'Pyramid Fairy - Right': (0xE983, False, 'near a fairy'), - 'Brewery': (0xE9EC, False, 'alone in a home'), - 'C-Shaped House': (0xE9EF, False, 'alone in a home'), - 'Chest Game': (0xEDA8, False, 'as a prize'), + 'Pyramid Fairy - Left': (0xe980, False, 'near a fairy'), + 'Pyramid Fairy - Right': (0xe983, False, 'near a fairy'), + 'Brewery': (0xe9ec, False, 'alone in a home'), + 'C-Shaped House': (0xe9ef, False, 'alone in a home'), + 'Chest Game': (0xeda8, False, 'as a prize'), 'Bumper Cave Ledge': (0x180146, False, 'on a ledge'), - 'Mire Shed - Left': (0xEA73, False, 'near sparks'), - 'Mire Shed - Right': (0xEA76, False, 'near sparks'), - 'Superbunny Cave - Top': (0xEA7C, False, 'in a connection'), - 'Superbunny Cave - Bottom': (0xEA7F, False, 'in a connection'), - 'Spike Cave': (0xEA8B, False, 'beyond spikes'), - 'Hookshot Cave - Top Right': (0xEB51, False, 'across pits'), - 'Hookshot Cave - Top Left': (0xEB54, False, 'across pits'), - 'Hookshot Cave - Bottom Right': (0xEB5A, False, 'across pits'), - 'Hookshot Cave - Bottom Left': (0xEB57, False, 'across pits'), + 'Mire Shed - Left': (0xea73, False, 'near sparks'), + 'Mire Shed - Right': (0xea76, False, 'near sparks'), + 'Superbunny Cave - Top': (0xea7c, False, 'in a connection'), + 'Superbunny Cave - Bottom': (0xea7f, False, 'in a connection'), + 'Spike Cave': (0xea8b, False, 'beyond spikes'), + 'Hookshot Cave - Top Right': (0xeb51, False, 'across pits'), + 'Hookshot Cave - Top Left': (0xeb54, False, 'across pits'), + 'Hookshot Cave - Bottom Right': (0xeb5a, False, 'across pits'), + 'Hookshot Cave - Bottom Left': (0xeb57, False, 'across pits'), 'Floating Island': (0x180141, False, 'on an island'), - 'Mimic Cave': (0xE9C5, False, 'in a cave of mimicry'), - 'Swamp Palace - Entrance': (0xEA9D, False, 'in Swamp Palace'), - 'Swamp Palace - Map Chest': (0xE986, False, 'in Swamp Palace'), - 'Swamp Palace - Big Chest': (0xE989, False, 'in Swamp Palace'), - 'Swamp Palace - Compass Chest': (0xEAA0, False, 'in Swamp Palace'), - 'Swamp Palace - Big Key Chest': (0xEAA6, False, 'in Swamp Palace'), - 'Swamp Palace - West Chest': (0xEAA3, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Left': (0xEAA9, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Right': (0xEAAC, False, 'in Swamp Palace'), - 'Swamp Palace - Waterfall Room': (0xEAAF, False, 'in Swamp Palace'), + 'Mimic Cave': (0xe9c5, False, 'in a cave of mimicry'), + 'Swamp Palace - Entrance': (0xea9d, False, 'in Swamp Palace'), + 'Swamp Palace - Map Chest': (0xe986, False, 'in Swamp Palace'), + 'Swamp Palace - Big Chest': (0xe989, False, 'in Swamp Palace'), + 'Swamp Palace - Compass Chest': (0xeaa0, False, 'in Swamp Palace'), + 'Swamp Palace - Big Key Chest': (0xeaa6, False, 'in Swamp Palace'), + 'Swamp Palace - West Chest': (0xeaa3, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Left': (0xeaa9, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Right': (0xeaac, False, 'in Swamp Palace'), + 'Swamp Palace - Waterfall Room': (0xeaaf, False, 'in Swamp Palace'), 'Swamp Palace - Boss': (0x180154, False, 'with Arrghus'), - 'Thieves\' Town - Big Key Chest': (0xEA04, False, 'in Thieves\' Town'), - 'Thieves\' Town - Map Chest': (0xEA01, False, 'in Thieves\' Town'), - 'Thieves\' Town - Compass Chest': (0xEA07, False, 'in Thieves\' Town'), - 'Thieves\' Town - Ambush Chest': (0xEA0A, False, 'in Thieves\' Town'), - 'Thieves\' Town - Attic': (0xEA0D, False, 'in Thieves\' Town'), - 'Thieves\' Town - Big Chest': (0xEA10, False, 'in Thieves\' Town'), - 'Thieves\' Town - Blind\'s Cell': (0xEA13, False, 'in Thieves\' Town'), - 'Thieves\' Town - Boss': (0x180156, False, 'with Blind'), - 'Skull Woods - Compass Chest': (0xE992, False, 'in Skull Woods'), - 'Skull Woods - Map Chest': (0xE99B, False, 'in Skull Woods'), - 'Skull Woods - Big Chest': (0xE998, False, 'in Skull Woods'), - 'Skull Woods - Pot Prison': (0xE9A1, False, 'in Skull Woods'), - 'Skull Woods - Pinball Room': (0xE9C8, False, 'in Skull Woods'), - 'Skull Woods - Big Key Chest': (0xE99E, False, 'in Skull Woods'), - 'Skull Woods - Bridge Room': (0xE9FE, False, 'near Mothula'), + "Thieves' Town - Big Key Chest": (0xea04, False, "in Thieves' Town"), + "Thieves' Town - Map Chest": (0xea01, False, "in Thieves' Town"), + "Thieves' Town - Compass Chest": (0xea07, False, "in Thieves' Town"), + "Thieves' Town - Ambush Chest": (0xea0a, False, "in Thieves' Town"), + "Thieves' Town - Attic": (0xea0d, False, "in Thieves' Town"), + "Thieves' Town - Big Chest": (0xea10, False, "in Thieves' Town"), + "Thieves' Town - Blind's Cell": (0xea13, False, "in Thieves' Town"), + "Thieves' Town - Boss": (0x180156, False, 'with Blind'), + 'Skull Woods - Compass Chest': (0xe992, False, 'in Skull Woods'), + 'Skull Woods - Map Chest': (0xe99b, False, 'in Skull Woods'), + 'Skull Woods - Big Chest': (0xe998, False, 'in Skull Woods'), + 'Skull Woods - Pot Prison': (0xe9a1, False, 'in Skull Woods'), + 'Skull Woods - Pinball Room': (0xe9c8, False, 'in Skull Woods'), + 'Skull Woods - Big Key Chest': (0xe99e, False, 'in Skull Woods'), + 'Skull Woods - Bridge Room': (0xe9fe, False, 'near Mothula'), 'Skull Woods - Boss': (0x180155, False, 'with Mothula'), - 'Ice Palace - Compass Chest': (0xE9D4, False, 'in Ice Palace'), - 'Ice Palace - Freezor Chest': (0xE995, False, 'in Ice Palace'), - 'Ice Palace - Big Chest': (0xE9AA, False, 'in Ice Palace'), - 'Ice Palace - Iced T Room': (0xE9E3, False, 'in Ice Palace'), - 'Ice Palace - Spike Room': (0xE9E0, False, 'in Ice Palace'), - 'Ice Palace - Big Key Chest': (0xE9A4, False, 'in Ice Palace'), - 'Ice Palace - Map Chest': (0xE9DD, False, 'in Ice Palace'), + 'Ice Palace - Compass Chest': (0xe9d4, False, 'in Ice Palace'), + 'Ice Palace - Freezor Chest': (0xe995, False, 'in Ice Palace'), + 'Ice Palace - Big Chest': (0xe9aa, False, 'in Ice Palace'), + 'Ice Palace - Iced T Room': (0xe9e3, False, 'in Ice Palace'), + 'Ice Palace - Spike Room': (0xe9e0, False, 'in Ice Palace'), + 'Ice Palace - Big Key Chest': (0xe9a4, False, 'in Ice Palace'), + 'Ice Palace - Map Chest': (0xe9dd, False, 'in Ice Palace'), 'Ice Palace - Boss': (0x180157, False, 'with Kholdstare'), - 'Misery Mire - Big Chest': (0xEA67, False, 'in Misery Mire'), - 'Misery Mire - Map Chest': (0xEA6A, False, 'in Misery Mire'), - 'Misery Mire - Main Lobby': (0xEA5E, False, 'in Misery Mire'), - 'Misery Mire - Bridge Chest': (0xEA61, False, 'in Misery Mire'), - 'Misery Mire - Spike Chest': (0xE9DA, False, 'in Misery Mire'), - 'Misery Mire - Compass Chest': (0xEA64, False, 'in Misery Mire'), - 'Misery Mire - Big Key Chest': (0xEA6D, False, 'in Misery Mire'), + 'Misery Mire - Big Chest': (0xea67, False, 'in Misery Mire'), + 'Misery Mire - Map Chest': (0xea6a, False, 'in Misery Mire'), + 'Misery Mire - Main Lobby': (0xea5e, False, 'in Misery Mire'), + 'Misery Mire - Bridge Chest': (0xea61, False, 'in Misery Mire'), + 'Misery Mire - Spike Chest': (0xe9da, False, 'in Misery Mire'), + 'Misery Mire - Compass Chest': (0xea64, False, 'in Misery Mire'), + 'Misery Mire - Big Key Chest': (0xea6d, False, 'in Misery Mire'), 'Misery Mire - Boss': (0x180158, False, 'with Vitreous'), - 'Turtle Rock - Compass Chest': (0xEA22, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Left': (0xEA1C, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Right': (0xEA1F, False, 'in Turtle Rock'), - 'Turtle Rock - Chain Chomps': (0xEA16, False, 'in Turtle Rock'), - 'Turtle Rock - Big Key Chest': (0xEA25, False, 'in Turtle Rock'), - 'Turtle Rock - Big Chest': (0xEA19, False, 'in Turtle Rock'), - 'Turtle Rock - Crystaroller Room': (0xEA34, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Left': (0xEA31, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Right': (0xEA2E, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Left': (0xEA2B, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Right': (0xEA28, False, 'in Turtle Rock'), + 'Turtle Rock - Compass Chest': (0xea22, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Left': (0xea1c, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Right': (0xea1f, False, 'in Turtle Rock'), + 'Turtle Rock - Chain Chomps': (0xea16, False, 'in Turtle Rock'), + 'Turtle Rock - Big Key Chest': (0xea25, False, 'in Turtle Rock'), + 'Turtle Rock - Big Chest': (0xea19, False, 'in Turtle Rock'), + 'Turtle Rock - Crystaroller Room': (0xea34, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Left': (0xea31, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Right': (0xea2e, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Left': (0xea2b, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Right': (0xea28, False, 'in Turtle Rock'), 'Turtle Rock - Boss': (0x180159, False, 'with Trinexx'), - 'Palace of Darkness - Shooter Room': (0xEA5B, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Bridge': (0xEA3D, False, 'in Palace of Darkness'), - 'Palace of Darkness - Stalfos Basement': (0xEA49, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Key Chest': (0xEA37, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Ledge': (0xEA3A, False, 'in Palace of Darkness'), - 'Palace of Darkness - Map Chest': (0xEA52, False, 'in Palace of Darkness'), - 'Palace of Darkness - Compass Chest': (0xEA43, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Left': (0xEA4C, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Right': (0xEA4F, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Top': (0xEA55, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Bottom': (0xEA58, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Chest': (0xEA40, False, 'in Palace of Darkness'), - 'Palace of Darkness - Harmless Hellway': (0xEA46, False, 'in Palace of Darkness'), + 'Palace of Darkness - Shooter Room': (0xea5b, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Bridge': (0xea3d, False, 'in Palace of Darkness'), + 'Palace of Darkness - Stalfos Basement': (0xea49, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Key Chest': (0xea37, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Ledge': (0xea3a, False, 'in Palace of Darkness'), + 'Palace of Darkness - Map Chest': (0xea52, False, 'in Palace of Darkness'), + 'Palace of Darkness - Compass Chest': (0xea43, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Left': (0xea4c, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Right': (0xea4f, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Top': (0xea55, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Bottom': (0xea58, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Chest': (0xea40, False, 'in Palace of Darkness'), + 'Palace of Darkness - Harmless Hellway': (0xea46, False, 'in Palace of Darkness'), 'Palace of Darkness - Boss': (0x180153, False, 'with Helmasaur King'), - 'Ganons Tower - Bob\'s Torch': (0x180161, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Hope Room - Left': (0xEAD9, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Hope Room - Right': (0xEADC, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Tile Room': (0xEAE2, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Top Left': (0xEAE5, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Top Right': (0xEAE8, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Bottom Left': (0xEAEB, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Bottom Right': (0xEAEE, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Top Left': (0xEAB8, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Top Right': (0xEABB, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Bottom Left': (0xEABE, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Bottom Right': (0xEAC1, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Map Chest': (0xEAD3, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Firesnake Room': (0xEAD0, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Top Left': (0xEAC4, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Top Right': (0xEAC7, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Bottom Left': (0xEACA, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Bottom Right': (0xEACD, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Bob\'s Chest': (0xEADF, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Chest': (0xEAD6, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Key Room - Left': (0xEAF4, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Key Room - Right': (0xEAF7, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Key Chest': (0xEAF1, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Mini Helmasaur Room - Left': (0xEAFD, False, 'atop Ganon\'s Tower'), - 'Ganons Tower - Mini Helmasaur Room - Right': (0xEB00, False, 'atop Ganon\'s Tower'), - 'Ganons Tower - Pre-Moldorm Chest': (0xEB03, False, 'atop Ganon\'s Tower'), - 'Ganons Tower - Validation Chest': (0xEB06, False, 'atop Ganon\'s Tower'), + "Ganons Tower - Bob's Torch": (0x180161, False, "in Ganon's Tower"), + 'Ganons Tower - Hope Room - Left': (0xead9, False, "in Ganon's Tower"), + 'Ganons Tower - Hope Room - Right': (0xeadc, False, "in Ganon's Tower"), + 'Ganons Tower - Tile Room': (0xeae2, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Top Left': (0xeae5, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Top Right': (0xeae8, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Bottom Left': (0xeaeb, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Bottom Right': (0xeaee, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Top Left': (0xeab8, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Top Right': (0xeabb, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Bottom Left': (0xeabe, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Bottom Right': (0xeac1, False, "in Ganon's Tower"), + 'Ganons Tower - Map Chest': (0xead3, False, "in Ganon's Tower"), + 'Ganons Tower - Firesnake Room': (0xead0, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Top Left': (0xeac4, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Top Right': (0xeac7, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Bottom Left': (0xeaca, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Bottom Right': (0xeacd, False, "in Ganon's Tower"), + "Ganons Tower - Bob's Chest": (0xeadf, False, "in Ganon's Tower"), + 'Ganons Tower - Big Chest': (0xead6, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Room - Left': (0xeaf4, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Room - Right': (0xeaf7, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Chest': (0xeaf1, False, "in Ganon's Tower"), + 'Ganons Tower - Mini Helmasaur Room - Left': (0xeafd, False, "atop Ganon's Tower"), + 'Ganons Tower - Mini Helmasaur Room - Right': (0xeb00, False, "atop Ganon's Tower"), + 'Ganons Tower - Pre-Moldorm Chest': (0xeb03, False, "atop Ganon's Tower"), + 'Ganons Tower - Validation Chest': (0xeb06, False, "atop Ganon's Tower"), 'Ganon': (None, False, 'from me'), 'Agahnim 1': (None, False, 'from Ganon\'s wizardry form'), 'Agahnim 2': (None, False, 'from Ganon\'s wizardry form'), diff --git a/Rom.py b/Rom.py index 9f21eb0d..c439f07d 100644 --- a/Rom.py +++ b/Rom.py @@ -6,13 +6,13 @@ import os import struct import random -from BaseClasses import ShopType +from BaseClasses import ShopType, Region, Location, Item from Dungeons import dungeon_music_addresses from Text import MultiByteTextMapper, 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 from Utils import local_path, int16_as_bytes, int32_as_bytes -from Items import ItemFactory +from Items import ItemFactory, item_table JAP10HASH = '03a63945398191337e896e5771f77173' @@ -22,6 +22,7 @@ RANDOMIZERBASEHASH = 'cb560220b7b1b8202e92381aee19cd36' class JsonRom(object): def __init__(self): + self.name = None self.patches = {} def write_byte(self, address, value): @@ -52,6 +53,7 @@ class JsonRom(object): class LocalRom(object): def __init__(self, file, patch=True): + self.name = None with open(file, 'rb') as stream: self.buffer = read_rom(stream) if patch: @@ -273,15 +275,18 @@ class Sprite(object): # split into palettes of 15 colors return array_chunk(palette_as_colors, 15) -def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): +def patch_rom(world, player, rom, hashtable, beep='normal', color='red', sprite=None): + random.seed(world.rom_seeds[player]) # patch items for location in world.get_locations(): - itemid = location.item.code if location.item is not None else 0x5A - - if itemid is None or location.address is None: + if location.player != player: + continue + + itemid = location.item.code if location.item is not None else 0x5A + + if location.address is None: continue - locationaddress = location.address if not location.crystal: # Keys in their native dungeon should use the orignal item code for keys if location.parent_region.dungeon: @@ -291,10 +296,10 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): itemid = 0x32 if location.item.type == "SmallKey": itemid = 0x24 - rom.write_byte(locationaddress, itemid) + rom.write_byte(location.address, itemid) else: # crystals - for address, value in zip(locationaddress, itemid): + for address, value in zip(location.address, itemid): rom.write_byte(address, value) # patch music @@ -312,7 +317,7 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): # patch entrance/exits/holes for region in world.regions: for exit in region.exits: - if exit.target is not None: + if exit.target is not None and exit.player == player: if isinstance(exit.addresses, tuple): offset = exit.target room_id, ow_area, vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x, unknown_1, unknown_2, door_1, door_2 = exit.addresses @@ -360,25 +365,25 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): # patch door table rom.write_byte(0xDBB73 + exit.addresses, exit.target) - write_custom_shops(rom, world) + write_custom_shops(rom, world, player) # patch medallion requirements - if world.required_medallions[0] == 'Bombos': + if world.required_medallions[player][0] == 'Bombos': rom.write_byte(0x180022, 0x00) # requirement rom.write_byte(0x4FF2, 0x31) # sprite rom.write_byte(0x50D1, 0x80) rom.write_byte(0x51B0, 0x00) - elif world.required_medallions[0] == 'Quake': + elif world.required_medallions[player][0] == 'Quake': rom.write_byte(0x180022, 0x02) # requirement rom.write_byte(0x4FF2, 0x31) # sprite rom.write_byte(0x50D1, 0x88) rom.write_byte(0x51B0, 0x00) - if world.required_medallions[1] == 'Bombos': + if world.required_medallions[player][1] == 'Bombos': rom.write_byte(0x180023, 0x00) # requirement rom.write_byte(0x5020, 0x31) # sprite rom.write_byte(0x50FF, 0x90) rom.write_byte(0x51DE, 0x00) - elif world.required_medallions[1] == 'Ether': + elif world.required_medallions[player][1] == 'Ether': rom.write_byte(0x180023, 0x01) # requirement rom.write_byte(0x5020, 0x31) # sprite rom.write_byte(0x50FF, 0x98) @@ -408,8 +413,8 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): rom.write_byte(0x18003A, 0x01 if world.dark_world_light_cone else 0x00) GREEN_TWENTY_RUPEES = 0x47 - TRIFORCE_PIECE = ItemFactory('Triforce Piece').code - GREEN_CLOCK = ItemFactory('Green Clock').code + TRIFORCE_PIECE = ItemFactory('Triforce Piece', player).code + GREEN_CLOCK = ItemFactory('Green Clock', player).code rom.write_byte(0x18004F, 0x01) # Byrna Invulnerability: on # handle difficulty @@ -713,7 +718,7 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): # assorted fixes rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark word dungion before killing aga1 rom.write_byte(0x180169, 0x01 if world.lock_aga_door_in_escape else 0x00) # Lock or unlock aga tower door during escape sequence. - rom.write_byte(0x180171, 0x01 if world.ganon_at_pyramid else 0x00) # Enable respawning on pyramid after ganon death + rom.write_byte(0x180171, 0x01 if world.ganon_at_pyramid[player] else 0x00) # Enable respawning on pyramid after ganon death rom.write_byte(0x180173, 0x01) # Bob is enabled rom.write_byte(0x180168, 0x08) # Spike Cave Damage rom.write_bytes(0x18016B, [0x04, 0x02, 0x01]) #Set spike cave and MM spike room Cape usage @@ -801,18 +806,19 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): rom.write_bytes(0x6D313, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) # 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 else 0x00) + rom.write_byte(0x18003D, 0x01 if world.swamp_patch_required[player] else 0x00) - # powder patch: remove the need to leave the scrren after powder, since it causes problems for potion shop at race game + # powder patch: remove the need to leave the screen after powder, since it causes problems for potion shop at race game # temporarally we are just nopping out this check we will conver this to a rom fix soon. - rom.write_bytes(0x02F539, [0xEA, 0xEA, 0xEA, 0xEA, 0xEA] if world.powder_patch_required else [0xAD, 0xBF, 0x0A, 0xF0, 0x4F]) + rom.write_bytes(0x02F539, [0xEA, 0xEA, 0xEA, 0xEA, 0xEA] if world.powder_patch_required[player] else [0xAD, 0xBF, 0x0A, 0xF0, 0x4F]) # allow smith into multi-entrance caves in appropriate shuffles if world.shuffle in ['restricted', 'full', 'crossed', 'insanity']: rom.write_byte(0x18004C, 0x01) # set correct flag for hera basement item - if world.get_location('Tower of Hera - Basement Cage').item is not None and world.get_location('Tower of Hera - Basement Cage').item.name == 'Small Key (Tower of Hera)': + 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: rom.write_byte(0x4E3BB, 0xE4) else: rom.write_byte(0x4E3BB, 0xEB) @@ -827,11 +833,13 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): rom.write_byte(0xFED31, 0x2A) # preopen bombable exit rom.write_byte(0xFEE41, 0x2A) # preopen bombable exit - write_strings(rom, world) + write_strings(rom, world, player) # set rom name # 21 bytes - rom.write_bytes(0x7FC0, bytearray('ER_062_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big')) + rom.name = bytearray('ER062%09d' % world.seed, 'utf8') + world.option_identifier(7, player).to_bytes(7, 'big') + assert(len(rom.name) == 21) + rom.write_bytes(0x7FC0, rom.name) # Write title screen Code hashint = int(rom.get_hash(), 16) @@ -848,8 +856,8 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): return rom -def write_custom_shops(rom, world): - shops = [shop for shop in world.shops if shop.replaceable and shop.active] +def write_custom_shops(rom, world, player): + shops = [shop for shop in world.shops if shop.replaceable and shop.active and shop.region.player == player] shop_data = bytearray() items_data = bytearray() @@ -870,7 +878,7 @@ def write_custom_shops(rom, world): for item in shop.inventory: if item is None: break - item_data = [shop_id, ItemFactory(item['item']).code] + int16_as_bytes(item['price']) + [item['max'], ItemFactory(item['replacement']).code if item['replacement'] else 0xFF] + int16_as_bytes(item['replacement_price']) + item_data = [shop_id, ItemFactory(item['item'], player).code] + int16_as_bytes(item['price']) + [item['max'], ItemFactory(item['replacement'], player).code if item['replacement'] else 0xFF] + int16_as_bytes(item['replacement_price']) items_data.extend(item_data) rom.write_bytes(0x184800, shop_data) @@ -1013,7 +1021,7 @@ def write_string_to_rom(rom, target, string): rom.write_bytes(address, MultiByteTextMapper.convert(string, maxbytes)) -def write_strings(rom, world): +def write_strings(rom, world, player): tt = TextTable() tt.removeUnwantedText() @@ -1022,6 +1030,17 @@ def write_strings(rom, world): tt['kakariko_flophouse_man_no_flippers'] = 'I really hate mowing my yard.\n{PAGEBREAK}\nI should move.' tt['kakariko_flophouse_man'] = 'I really hate mowing my yard.\n{PAGEBREAK}\nI should move.' + def hint_text(dest, ped_hint=False): + hint = dest.hint_text if not ped_hint else dest.pedestal_hint_text + if dest.player != player: + if ped_hint: + hint += " for p%d!" % dest.player + elif type(dest) in [Region, Location]: + hint += " in p%d's world" % dest.player + elif type(dest) is Item: + hint += " for p%d" % dest.player + return hint + # For hints, first we write hints about entrances, some from the inconvenient list others from all reasonable entrances. if world.hints: tt['sign_north_of_links_house'] = '> Randomizer The telepathic tiles can have hints!' @@ -1031,16 +1050,17 @@ def write_strings(rom, world): entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) hint_locations = HintLocations.copy() random.shuffle(hint_locations) - all_entrances = world.get_entrances() + all_entrances = [entrance for entrance in world.get_entrances() if entrance.player == player] random.shuffle(all_entrances) - hint_count = 4 + hint_count = 4 if world.shuffle != 'vanilla' else 0 for entrance in all_entrances: if entrance.name in entrances_to_hint: - this_hint = entrances_to_hint[entrance.name] + ' leads to ' + entrance.connected_region.hint_text + '.' - tt[hint_locations.pop(0)] = this_hint - entrances_to_hint.pop(entrance.name) - hint_count -= 1 - if hint_count < 1: + if hint_count > 0: + this_hint = entrances_to_hint[entrance.name] + ' leads to ' + hint_text(entrance.connected_region) + '.' + tt[hint_locations.pop(0)] = this_hint + entrances_to_hint.pop(entrance.name) + hint_count -= 1 + else: break entrances_to_hint.update(OtherEntrances) @@ -1048,57 +1068,58 @@ def write_strings(rom, world): entrances_to_hint.update(InsanityEntrances) if world.shuffle_ganon: entrances_to_hint.update({'Pyramid Ledge': 'The pyramid ledge'}) - hint_count = 4 + hint_count = 4 if world.shuffle != 'vanilla' else 0 for entrance in all_entrances: if entrance.name in entrances_to_hint: - this_hint = entrances_to_hint[entrance.name] + ' leads to ' + entrance.connected_region.hint_text + '.' - tt[hint_locations.pop(0)] = this_hint - entrances_to_hint.pop(entrance.name) - hint_count -= 1 - if hint_count < 1: + if hint_count > 0: + this_hint = entrances_to_hint[entrance.name] + ' leads to ' + hint_text(entrance.connected_region) + '.' + tt[hint_locations.pop(0)] = this_hint + entrances_to_hint.pop(entrance.name) + hint_count -= 1 + else: break # Next we write a few hints for specific inconvenient locations. We don't make many because in entrance this is highly unpredictable. locations_to_hint = InconvenientLocations.copy() random.shuffle(locations_to_hint) - hint_count = 3 - del locations_to_hint[hint_count:] + hint_count = 3 if world.shuffle != 'vanilla' else 4 + del locations_to_hint[hint_count:] for location in locations_to_hint: if location == 'Swamp Left': if random.randint(0, 1) == 0: - first_item = world.get_location('Swamp Palace - West Chest').item.hint_text - second_item = world.get_location('Swamp Palace - Big Key Chest').item.hint_text + first_item = hint_text(world.get_location('Swamp Palace - West Chest', player).item) + second_item = hint_text(world.get_location('Swamp Palace - Big Key Chest', player).item) else: - second_item = world.get_location('Swamp Palace - West Chest').item.hint_text - first_item = world.get_location('Swamp Palace - Big Key Chest').item.hint_text + second_item = hint_text(world.get_location('Swamp Palace - West Chest', player).item) + first_item = hint_text(world.get_location('Swamp Palace - Big Key Chest', player).item) this_hint = ('The westmost chests in Swamp Palace contain ' + first_item + ' and ' + second_item + '.') tt[hint_locations.pop(0)] = this_hint elif location == 'Mire Left': if random.randint(0, 1) == 0: - first_item = world.get_location('Misery Mire - Compass Chest').item.hint_text - second_item = world.get_location('Misery Mire - Big Key Chest').item.hint_text + first_item = hint_text(world.get_location('Misery Mire - Compass Chest', player).item) + second_item = hint_text(world.get_location('Misery Mire - Big Key Chest', player).item) else: - second_item = world.get_location('Misery Mire - Compass Chest').item.hint_text - first_item = world.get_location('Misery Mire - Big Key Chest').item.hint_text + second_item = hint_text(world.get_location('Misery Mire - Compass Chest', player).item) + first_item = hint_text(world.get_location('Misery Mire - Big Key Chest', player).item) this_hint = ('The westmost chests in Misery Mire contain ' + first_item + ' and ' + second_item + '.') tt[hint_locations.pop(0)] = this_hint elif location == 'Tower of Hera - Big Key Chest': - this_hint = 'Waiting in the Tower of Hera basement leads to ' + world.get_location(location).item.hint_text + '.' + this_hint = 'Waiting in the Tower of Hera basement leads to ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint elif location == 'Ganons Tower - Big Chest': - this_hint = 'The big chest in Ganon\'s Tower contains ' + world.get_location(location).item.hint_text + '.' + this_hint = 'The big chest in Ganon\'s Tower contains ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint elif location == 'Thieves\' Town - Big Chest': - this_hint = 'The big chest in Thieves\' Town contains ' + world.get_location(location).item.hint_text + '.' + this_hint = 'The big chest in Thieves\' Town contains ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint elif location == 'Ice Palace - Big Chest': - this_hint = 'The big chest in Ice Palace contains ' + world.get_location(location).item.hint_text + '.' + this_hint = 'The big chest in Ice Palace contains ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint elif location == 'Eastern Palace - Big Key Chest': - this_hint = 'The antifairy guarded chest in Eastern Palace contains ' + world.get_location(location).item.hint_text + '.' + this_hint = 'The antifairy guarded chest in Eastern Palace contains ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint else: - this_hint = location + ' leads to ' + world.get_location(location).item.hint_text + '.' + this_hint = location + ' leads to ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint # Lastly we write hints to show where certain interesting items are. It is done the way it is to re-use the silver code and also to give one hint per each type of item regardless of how many exist. This supports many settings well. @@ -1106,17 +1127,15 @@ def write_strings(rom, world): if world.keysanity: items_to_hint.extend(KeysanityItems) random.shuffle(items_to_hint) - hint_count = 5 - while(hint_count > 0): + hint_count = 5 if world.shuffle != 'vanilla' else 7 + while hint_count > 0: this_item = items_to_hint.pop(0) - this_location = world.find_items(this_item) + this_location = world.find_items(this_item, player) random.shuffle(this_location) if this_location: - this_hint = this_location[0].item.hint_text + ' can be found ' + this_location[0].hint_text + '.' + this_hint = this_location[0].item.hint_text + ' can be found ' + hint_text(this_location[0]) + '.' tt[hint_locations.pop(0)] = this_hint hint_count -= 1 - else: - continue # All remaining hint slots are filled with junk hints. It is done this way to ensure the same junk hint isn't selected twice. junk_hints = junk_texts.copy() @@ -1125,16 +1144,16 @@ def write_strings(rom, world): tt[location] = junk_hints.pop(0) # We still need the older hints of course. Those are done here. - silverarrows = world.find_items('Silver Arrows') + silverarrows = world.find_items('Silver Arrows', player) random.shuffle(silverarrows) - silverarrow_hint = (' %s?' % silverarrows[0].hint_text.replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' + silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' tt['ganon_phase_3'] = 'Did you find the silver arrows%s' % silverarrow_hint - crystal5 = world.find_items('Crystal 5')[0] - crystal6 = world.find_items('Crystal 6')[0] + crystal5 = world.find_items('Crystal 5', player)[0] + crystal6 = world.find_items('Crystal 6', player)[0] tt['bomb_shop'] = 'Big Bomb?\nMy supply is blocked until you clear %s and %s.' % (crystal5.hint_text, crystal6.hint_text) - greenpendant = world.find_items('Green Pendant')[0] + greenpendant = world.find_items('Green Pendant', player)[0] tt['sahasrahla_bring_courage'] = 'I lost my family heirloom in %s' % greenpendant.hint_text tt['uncle_leaving_text'] = Uncle_texts[random.randint(0, len(Uncle_texts) - 1)] @@ -1154,32 +1173,32 @@ def write_strings(rom, world): tt['ganon_phase_3_alt'] = 'Got wax in\nyour ears?\nI can not die!' tt['kakariko_tavern_fisherman'] = TavernMan_texts[random.randint(0, len(TavernMan_texts) - 1)] - pedestalitem = world.get_location('Master Sword Pedestal').item - pedestal_text = 'Some Hot Air' if pedestalitem is None else pedestalitem.pedestal_hint_text if pedestalitem.pedestal_hint_text is not None else 'Unknown Item' + pedestalitem = world.get_location('Master Sword Pedestal', player).item + pedestal_text = 'Some Hot Air' if pedestalitem is None else hint_text(pedestalitem, True) if pedestalitem.pedestal_hint_text is not None else 'Unknown Item' tt['mastersword_pedestal_translated'] = pedestal_text pedestal_credit_text = 'and the Hot Air' if pedestalitem is None else pedestalitem.pedestal_credit_text if pedestalitem.pedestal_credit_text is not None else 'and the Unknown Item' - etheritem = world.get_location('Ether Tablet').item - ether_text = 'Some Hot Air' if etheritem is None else etheritem.pedestal_hint_text if etheritem.pedestal_hint_text is not None else 'Unknown Item' + etheritem = world.get_location('Ether Tablet', player).item + ether_text = 'Some Hot Air' if etheritem is None else hint_text(etheritem, True) if etheritem.pedestal_hint_text is not None else 'Unknown Item' tt['tablet_ether_book'] = ether_text - bombositem = world.get_location('Bombos Tablet').item - bombos_text = 'Some Hot Air' if bombositem is None else bombositem.pedestal_hint_text if bombositem.pedestal_hint_text is not None else 'Unknown Item' + bombositem = world.get_location('Bombos Tablet', player).item + bombos_text = 'Some Hot Air' if bombositem is None else hint_text(bombositem, True) if bombositem.pedestal_hint_text is not None else 'Unknown Item' tt['tablet_bombos_book'] = bombos_text rom.write_bytes(0xE0000, tt.getBytes()) credits = Credits() - sickkiditem = world.get_location('Sick Kid').item + sickkiditem = world.get_location('Sick Kid', player).item sickkiditem_text = random.choice(SickKid_texts) if sickkiditem is None or sickkiditem.sickkid_credit_text is None else sickkiditem.sickkid_credit_text - zoraitem = world.get_location('King Zora').item + zoraitem = world.get_location('King Zora', player).item zoraitem_text = random.choice(Zora_texts) if zoraitem is None or zoraitem.zora_credit_text is None else zoraitem.zora_credit_text - magicshopitem = world.get_location('Potion Shop').item + magicshopitem = world.get_location('Potion Shop', player).item magicshopitem_text = random.choice(MagicShop_texts) if magicshopitem is None or magicshopitem.magicshop_credit_text is None else magicshopitem.magicshop_credit_text - fluteboyitem = world.get_location('Flute Spot').item + fluteboyitem = world.get_location('Flute Spot', player).item fluteboyitem_text = random.choice(FluteBoy_texts) if fluteboyitem is None or fluteboyitem.fluteboy_credit_text is None else fluteboyitem.fluteboy_credit_text credits.update_credits_line('castle', 0, random.choice(KingsReturn_texts)) diff --git a/Rules.py b/Rules.py index 93df6081..bf6f0a50 100644 --- a/Rules.py +++ b/Rules.py @@ -2,29 +2,29 @@ import collections import logging -def set_rules(world): +def set_rules(world, player): if world.logic == 'nologic': logging.getLogger('').info('WARNING! Seeds generated under this logic often require major glitches and may be impossible!') - world.get_region('Links House').can_reach = lambda state: True - world.get_region('Sanctuary').can_reach = lambda state: True - old_rule = world.get_region('Old Man House').can_reach - world.get_region('Old Man House').can_reach = lambda state: state.can_reach('Old Man', 'Location') or old_rule(state) + world.get_region('Links House', player).can_reach = lambda state: True + world.get_region('Sanctuary', player).can_reach = lambda state: True + old_rule = world.get_region('Old Man House', player).can_reach + world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) return - global_rules(world) + global_rules(world, player) if world.mode == 'open': - open_rules(world) + open_rules(world, player) elif world.mode == 'standard': - standard_rules(world) + standard_rules(world, player) elif world.mode == 'swordless': - swordless_rules(world) + swordless_rules(world, player) else: raise NotImplementedError('Not implemented yet') if world.logic == 'noglitches': - no_glitches_rules(world) + no_glitches_rules(world, player) elif world.logic == 'minorglitches': logging.getLogger('').info('Minor Glitches may be buggy still. No guarantee for proper logic checks.') else: @@ -32,18 +32,18 @@ def set_rules(world): if world.goal == 'dungeons': # require all dungeons to beat ganon - add_rule(world.get_location('Ganon'), lambda state: state.can_reach('Master Sword Pedestal', 'Location') and state.has('Beat Agahnim 1') and state.has('Beat Agahnim 2')) + add_rule(world.get_location('Ganon', player), lambda state: state.can_reach('Master Sword Pedestal', 'Location', player) and state.has('Beat Agahnim 1', player) and state.has('Beat Agahnim 2', player)) elif world.goal == 'ganon': # require aga2 to beat ganon - add_rule(world.get_location('Ganon'), lambda state: state.has('Beat Agahnim 2')) + add_rule(world.get_location('Ganon', player), lambda state: state.has('Beat Agahnim 2', player)) - set_big_bomb_rules(world) + set_big_bomb_rules(world, player) # if swamp and dam have not been moved we require mirror for swamp palace - if not world.swamp_patch_required: - add_rule(world.get_entrance('Swamp Palace Moat'), lambda state: state.has_Mirror()) + if not world.swamp_patch_required[player]: + add_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has_Mirror(player)) - set_bunny_rules(world) + set_bunny_rules(world, player) def set_rule(spot, rule): @@ -64,375 +64,380 @@ def add_rule(spot, rule, combine='and'): spot.access_rule = lambda state: rule(state) and old_rule(state) -def add_lamp_requirement(spot): - add_rule(spot, lambda state: state.has('Lamp', state.world.lamps_needed_for_dark_rooms)) +def add_lamp_requirement(spot, player): + add_rule(spot, lambda state: state.has('Lamp', player, state.world.lamps_needed_for_dark_rooms)) -def forbid_item(location, item): +def forbid_item(location, item, player): old_rule = location.item_rule - location.item_rule = lambda i: i.name != item and old_rule(i) + location.item_rule = lambda i: (i.name != item or i.player != player) and old_rule(i) -def item_in_locations(state, item, locations): +def item_in_locations(state, item, player, locations): for location in locations: - if item_name(state, location) == item: + if item_name(state, location[0], location[1]) == (item, player): return True return False -def item_name(state, location): - location = state.world.get_location(location) +def item_name(state, location, player): + location = state.world.get_location(location, player) if location.item is None: return None - return location.item.name + return (location.item.name, location.item.player) -def global_rules(world): +def global_rules(world, player): + if world.goal == 'triforcehunt': + for location in world.get_locations(): + if location.player != player: + forbid_item(location, 'Triforce Piece', player) + # ganon can only carry triforce - world.get_location('Ganon').item_rule = lambda item: item.name == 'Triforce' + world.get_location('Ganon', player).item_rule = lambda item: item.name == 'Triforce' and item.player == player # these are default save&quit points and always accessible - world.get_region('Links House').can_reach = lambda state: True - world.get_region('Sanctuary').can_reach = lambda state: True + world.get_region('Links House', player).can_reach = lambda state: True + world.get_region('Sanctuary', player).can_reach = lambda state: True # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! - old_rule = world.get_region('Old Man House').can_reach - world.get_region('Old Man House').can_reach = lambda state: state.can_reach('Old Man', 'Location') or old_rule(state) + old_rule = world.get_region('Old Man House', player).can_reach + world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) # overworld requirements - set_rule(world.get_entrance('Kings Grave'), lambda state: state.has_Boots()) - set_rule(world.get_entrance('Kings Grave Outer Rocks'), lambda state: state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Kings Grave Inner Rocks'), lambda state: state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Kings Grave Mirror Spot'), lambda state: state.has_Pearl() and state.has_Mirror()) + set_rule(world.get_entrance('Kings Grave', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Kings Grave Outer Rocks', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Kings Grave Inner Rocks', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Kings Grave Mirror Spot', player), lambda state: state.has_Pearl(player) and state.has_Mirror(player)) # Caution: If king's grave is releaxed at all to account for reaching it via a two way cave's exit in insanity mode, then the bomb shop logic will need to be updated (that would involve create a small ledge-like Region for it) - set_rule(world.get_entrance('Bonk Fairy (Light)'), lambda state: state.has_Boots()) - set_rule(world.get_location('Sunken Treasure'), lambda state: state.can_reach('Dam')) - set_rule(world.get_entrance('Bat Cave Drop Ledge'), lambda state: state.has('Hammer')) - set_rule(world.get_entrance('Lumberjack Tree Tree'), lambda state: state.has_Boots() and state.has('Beat Agahnim 1')) - set_rule(world.get_entrance('Bonk Rock Cave'), lambda state: state.has_Boots()) - set_rule(world.get_entrance('Desert Palace Stairs'), lambda state: state.has('Book of Mudora')) - set_rule(world.get_entrance('Sanctuary Grave'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('20 Rupee Cave'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('50 Rupee Cave'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('Death Mountain Entrance Rock'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('Bumper Cave Entrance Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Flute Spot 1'), lambda state: state.has('Ocarina')) - set_rule(world.get_entrance('Lake Hylia Central Island Teleporter'), lambda state: state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Dark Desert Teleporter'), lambda state: state.has('Ocarina') and state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('East Hyrule Teleporter'), lambda state: state.has('Hammer') and state.can_lift_rocks() and state.has_Pearl()) # bunny cannot use hammer - set_rule(world.get_entrance('South Hyrule Teleporter'), lambda state: state.has('Hammer') and state.can_lift_rocks() and state.has_Pearl()) # bunny cannot use hammer - set_rule(world.get_entrance('Kakariko Teleporter'), lambda state: ((state.has('Hammer') and state.can_lift_rocks()) or state.can_lift_heavy_rocks()) and state.has_Pearl()) # bunny cannot lift bushes - set_rule(world.get_location('Flute Spot'), lambda state: state.has('Shovel')) - set_rule(world.get_location('Dark Blacksmith Ruins'), lambda state: state.has('Return Smith')) - set_rule(world.get_location('Purple Chest'), lambda state: state.has('Pick Up Purple Chest')) # Can S&Q with chest + set_rule(world.get_entrance('Bonk Fairy (Light)', player), lambda state: state.has_Boots(player)) + set_rule(world.get_location('Sunken Treasure', player), lambda state: state.can_reach('Dam', 'Region', player)) + set_rule(world.get_entrance('Bat Cave Drop Ledge', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Lumberjack Tree Tree', player), lambda state: state.has_Boots(player) and state.has('Beat Agahnim 1', player)) + set_rule(world.get_entrance('Bonk Rock Cave', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Desert Palace Stairs', player), lambda state: state.has('Book of Mudora', player)) + set_rule(world.get_entrance('Sanctuary Grave', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('20 Rupee Cave', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('50 Rupee Cave', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('Death Mountain Entrance Rock', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('Bumper Cave Entrance Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Flute Spot 1', player), lambda state: state.has('Ocarina', player)) + set_rule(world.get_entrance('Lake Hylia Central Island Teleporter', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Dark Desert Teleporter', player), lambda state: state.has('Ocarina', player) and state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('East Hyrule Teleporter', player), lambda state: state.has('Hammer', player) and state.can_lift_rocks(player) and state.has_Pearl(player)) # bunny cannot use hammer + set_rule(world.get_entrance('South Hyrule Teleporter', player), lambda state: state.has('Hammer', player) and state.can_lift_rocks(player) and state.has_Pearl(player)) # bunny cannot use hammer + set_rule(world.get_entrance('Kakariko Teleporter', player), lambda state: ((state.has('Hammer', player) and state.can_lift_rocks(player)) or state.can_lift_heavy_rocks(player)) and state.has_Pearl(player)) # bunny cannot lift bushes + set_rule(world.get_location('Flute Spot', player), lambda state: state.has('Shovel', player)) + set_rule(world.get_location('Dark Blacksmith Ruins', player), lambda state: state.has('Return Smith', player)) + set_rule(world.get_location('Purple Chest', player), lambda state: state.has('Pick Up Purple Chest', player)) # Can S&Q with chest - set_rule(world.get_location('Zora\'s Ledge'), lambda state: state.has('Flippers')) - set_rule(world.get_entrance('Waterfall of Wishing'), lambda state: state.has('Flippers')) # can be fake flippered into, but is in weird state inside that might prevent you from doing things. Can be improved in future Todo - set_rule(world.get_location('Frog'), lambda state: state.can_lift_heavy_rocks()) # will get automatic moon pearl requirement - set_rule(world.get_location('Missing Smith'), lambda state: state.has('Get Frog')) # Can S&Q with smith - set_rule(world.get_location('Blacksmith'), lambda state: state.has('Return Smith')) - set_rule(world.get_location('Magic Bat'), lambda state: state.has('Magic Powder')) - set_rule(world.get_location('Sick Kid'), lambda state: state.has_bottle()) - set_rule(world.get_location('Library'), lambda state: state.has_Boots()) - set_rule(world.get_location('Potion Shop'), lambda state: state.has('Mushroom')) - set_rule(world.get_entrance('Desert Palace Entrance (North) Rocks'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('Desert Ledge Return Rocks'), lambda state: state.can_lift_rocks()) # should we decide to place something that is not a dungeon end up there at some point - set_rule(world.get_entrance('Checkerboard Cave'), lambda state: state.can_lift_rocks()) - set_rule(world.get_location('Master Sword Pedestal'), lambda state: state.has('Red Pendant') and state.has('Blue Pendant') and state.has('Green Pendant')) - set_rule(world.get_location('Sahasrahla'), lambda state: state.has('Green Pendant')) - set_rule(world.get_entrance('Agahnims Tower'), lambda state: state.has('Cape') or state.has_beam_sword() or state.has('Beat Agahnim 1')) # barrier gets removed after killing agahnim, relevant for entrance shuffle - set_rule(world.get_entrance('Agahnim 1'), lambda state: state.has_sword() and state.has_key('Small Key (Agahnims Tower)', 2)) - set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1')) - set_rule(world.get_location('Castle Tower - Dark Maze'), lambda state: state.has_key('Small Key (Agahnims Tower)')) - set_rule(world.get_entrance('Top of Pyramid'), lambda state: state.has('Beat Agahnim 1')) - set_rule(world.get_entrance('Old Man Cave Exit (West)'), lambda state: False) # drop cannot be climbed up - set_rule(world.get_entrance('Broken Bridge (West)'), lambda state: state.has('Hookshot')) - set_rule(world.get_entrance('Broken Bridge (East)'), lambda state: state.has('Hookshot')) - set_rule(world.get_entrance('East Death Mountain Teleporter'), lambda state: state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Fairy Ascension Rocks'), lambda state: state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Paradox Cave Push Block Reverse'), lambda state: state.has('Mirror')) # can erase block - set_rule(world.get_entrance('Death Mountain (Top)'), lambda state: state.has('Hammer')) - set_rule(world.get_entrance('Turtle Rock Teleporter'), lambda state: state.can_lift_heavy_rocks() and state.has('Hammer')) - set_rule(world.get_location('Ether Tablet'), lambda state: state.has('Book of Mudora') and state.has_beam_sword()) - set_rule(world.get_entrance('East Death Mountain (Top)'), lambda state: state.has('Hammer')) + set_rule(world.get_location('Zora\'s Ledge', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_entrance('Waterfall of Wishing', player), lambda state: state.has('Flippers', player)) # can be fake flippered into, but is in weird state inside that might prevent you from doing things. Can be improved in future Todo + set_rule(world.get_location('Frog', player), lambda state: state.can_lift_heavy_rocks(player)) # will get automatic moon pearl requirement + set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player)) # Can S&Q with smith + set_rule(world.get_location('Blacksmith', player), lambda state: state.has('Return Smith', player)) + set_rule(world.get_location('Magic Bat', player), lambda state: state.has('Magic Powder', player)) + set_rule(world.get_location('Sick Kid', player), lambda state: state.has_bottle(player)) + set_rule(world.get_location('Library', player), lambda state: state.has_Boots(player)) + set_rule(world.get_location('Potion Shop', player), lambda state: state.has('Mushroom', player)) + set_rule(world.get_entrance('Desert Palace Entrance (North) Rocks', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('Desert Ledge Return Rocks', player), lambda state: state.can_lift_rocks(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)) + set_rule(world.get_location('Master Sword Pedestal', player), lambda state: state.has('Red Pendant', player) and state.has('Blue Pendant', player) and state.has('Green Pendant', player)) + set_rule(world.get_location('Sahasrahla', player), lambda state: state.has('Green Pendant', player)) + set_rule(world.get_entrance('Agahnims Tower', player), lambda state: state.has('Cape', player) or state.has_beam_sword(player) or state.has('Beat Agahnim 1', player)) # barrier gets removed after killing agahnim, relevant for entrance shuffle + set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) + set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) + set_rule(world.get_location('Castle Tower - Dark Maze', player), lambda state: state.has_key('Small Key (Agahnims Tower)', player)) + set_rule(world.get_entrance('Top of Pyramid', player), lambda state: state.has('Beat Agahnim 1', player)) + set_rule(world.get_entrance('Old Man Cave Exit (West)', player), lambda state: False) # drop cannot be climbed up + set_rule(world.get_entrance('Broken Bridge (West)', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_entrance('Broken Bridge (East)', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_entrance('East Death Mountain Teleporter', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Fairy Ascension Rocks', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Paradox Cave Push Block Reverse', player), lambda state: state.has('Mirror', player)) # can erase block + set_rule(world.get_entrance('Death Mountain (Top)', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Turtle Rock Teleporter', player), lambda state: state.can_lift_heavy_rocks(player) and state.has('Hammer', player)) + set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) + set_rule(world.get_entrance('East Death Mountain (Top)', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_location('Catfish'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('Northeast Dark World Broken Bridge Pass'), lambda state: state.has_Pearl() and (state.can_lift_rocks() or state.has('Hammer') or state.has('Flippers'))) - set_rule(world.get_entrance('East Dark World Broken Bridge Pass'), lambda state: state.has_Pearl() and (state.can_lift_rocks() or state.has('Hammer'))) - set_rule(world.get_entrance('South Dark World Bridge'), lambda state: state.has('Hammer') and state.has_Pearl()) - set_rule(world.get_entrance('Bonk Fairy (Dark)'), lambda state: state.has_Pearl() and state.has_Boots()) - set_rule(world.get_entrance('West Dark World Gap'), lambda state: state.has_Pearl() and state.has('Hookshot')) - set_rule(world.get_entrance('Palace of Darkness'), lambda state: state.has_Pearl()) # kiki needs pearl - set_rule(world.get_entrance('Hyrule Castle Ledge Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Hyrule Castle Main Gate'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Dark Lake Hylia Drop (East)'), lambda state: (state.has_Pearl() and state.has('Flippers') or state.has_Mirror())) # Overworld Bunny Revival - set_rule(world.get_location('Bombos Tablet'), lambda state: state.has('Book of Mudora') and state.has_beam_sword() and state.has_Mirror()) - set_rule(world.get_entrance('Dark Lake Hylia Drop (South)'), lambda state: state.has_Pearl() and state.has('Flippers')) # ToDo any fake flipper set up? - set_rule(world.get_entrance('Dark Lake Hylia Ledge Fairy'), lambda state: state.has_Pearl()) # bomb required - set_rule(world.get_entrance('Dark Lake Hylia Ledge Spike Cave'), lambda state: state.can_lift_rocks() and state.has_Pearl()) - set_rule(world.get_entrance('Dark Lake Hylia Teleporter'), lambda state: state.has_Pearl() and (state.has('Hammer') or state.can_lift_rocks())) # Fake Flippers - set_rule(world.get_entrance('Village of Outcasts Heavy Rock'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Hype Cave'), lambda state: state.has_Pearl()) # bomb required - set_rule(world.get_entrance('Brewery'), lambda state: state.has_Pearl()) # bomb required - set_rule(world.get_entrance('Thieves Town'), lambda state: state.has_Pearl()) # bunny cannot pull - set_rule(world.get_entrance('Skull Woods First Section Hole (North)'), lambda state: state.has_Pearl()) # bunny cannot lift bush - set_rule(world.get_entrance('Skull Woods Second Section Hole'), lambda state: state.has_Pearl()) # bunny cannot lift bush - set_rule(world.get_entrance('Maze Race Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Cave 45 Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('East Dark World Bridge'), lambda state: state.has_Pearl() and state.has('Hammer')) - set_rule(world.get_entrance('Lake Hylia Island Mirror Spot'), lambda state: state.has_Pearl() and state.has_Mirror() and state.has('Flippers')) - set_rule(world.get_entrance('Lake Hylia Central Island Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('East Dark World River Pier'), lambda state: state.has_Pearl() and state.has('Flippers')) # ToDo any fake flipper set up? - set_rule(world.get_entrance('Graveyard Ledge Mirror Spot'), lambda state: state.has_Pearl() and state.has_Mirror()) - set_rule(world.get_entrance('Bumper Cave Entrance Rock'), lambda state: state.has_Pearl() and state.can_lift_rocks()) - set_rule(world.get_entrance('Bumper Cave Ledge Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Bat Cave Drop Ledge Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Dark World Hammer Peg Cave'), lambda state: state.has_Pearl() and state.has('Hammer')) - set_rule(world.get_entrance('Village of Outcasts Eastern Rocks'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Peg Area Rocks'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks()) - set_rule(world.get_entrance('Village of Outcasts Pegs'), lambda state: state.has_Pearl() and state.has('Hammer')) - set_rule(world.get_entrance('Grassy Lawn Pegs'), lambda state: state.has_Pearl() and state.has('Hammer')) - set_rule(world.get_entrance('Bumper Cave Exit (Top)'), lambda state: state.has('Cape')) - set_rule(world.get_entrance('Bumper Cave Exit (Bottom)'), lambda state: state.has('Cape') or state.has('Hookshot')) + set_rule(world.get_location('Catfish', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('Northeast Dark World Broken Bridge Pass', player), lambda state: state.has_Pearl(player) and (state.can_lift_rocks(player) or state.has('Hammer', player) or state.has('Flippers', player))) + set_rule(world.get_entrance('East Dark World Broken Bridge Pass', player), lambda state: state.has_Pearl(player) and (state.can_lift_rocks(player) or state.has('Hammer', player))) + set_rule(world.get_entrance('South Dark World Bridge', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Bonk Fairy (Dark)', player), lambda state: state.has_Pearl(player) and state.has_Boots(player)) + set_rule(world.get_entrance('West Dark World Gap', player), lambda state: state.has_Pearl(player) and state.has('Hookshot', player)) + set_rule(world.get_entrance('Palace of Darkness', player), lambda state: state.has_Pearl(player)) # kiki needs pearl + set_rule(world.get_entrance('Hyrule Castle Ledge Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Hyrule Castle Main Gate', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: (state.has_Pearl(player) and state.has('Flippers', player) or state.has_Mirror(player))) # Overworld Bunny Revival + set_rule(world.get_location('Bombos Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player) and state.has_Mirror(player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (South)', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) # ToDo any fake flipper set up? + set_rule(world.get_entrance('Dark Lake Hylia Ledge Fairy', player), lambda state: state.has_Pearl(player)) # bomb required + set_rule(world.get_entrance('Dark Lake Hylia Ledge Spike Cave', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Dark Lake Hylia Teleporter', player), lambda state: state.has_Pearl(player) and (state.has('Hammer', player) or state.can_lift_rocks(player))) # Fake Flippers + set_rule(world.get_entrance('Village of Outcasts Heavy Rock', player), lambda state: state.has_Pearl(player) and state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Hype Cave', player), lambda state: state.has_Pearl(player)) # bomb required + set_rule(world.get_entrance('Brewery', player), lambda state: state.has_Pearl(player)) # bomb required + set_rule(world.get_entrance('Thieves Town', player), lambda state: state.has_Pearl(player)) # bunny cannot pull + set_rule(world.get_entrance('Skull Woods First Section Hole (North)', player), lambda state: state.has_Pearl(player)) # bunny cannot lift bush + set_rule(world.get_entrance('Skull Woods Second Section Hole', player), lambda state: state.has_Pearl(player)) # bunny cannot lift bush + set_rule(world.get_entrance('Maze Race Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Cave 45 Mirror Spot', player), lambda state: state.has_Mirror(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('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)) + set_rule(world.get_entrance('Bat Cave Drop Ledge Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Dark World Hammer Peg Cave', player), lambda state: state.has_Pearl(player) and state.has('Hammer', player)) + set_rule(world.get_entrance('Village of Outcasts Eastern Rocks', player), lambda state: state.has_Pearl(player) and state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Peg Area Rocks', player), lambda state: state.has_Pearl(player) and state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Village of Outcasts Pegs', player), lambda state: state.has_Pearl(player) and state.has('Hammer', player)) + set_rule(world.get_entrance('Grassy Lawn Pegs', player), lambda state: state.has_Pearl(player) and state.has('Hammer', 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'), lambda state: state.has('Fire Rod') and state.has_Pearl()) # bunny cannot use fire rod - set_rule(world.get_entrance('Misery Mire'), lambda state: state.has_Pearl() and state.has_sword() and state.has_misery_mire_medallion()) # sword required to cast magic (!) - set_rule(world.get_entrance('Desert Ledge (Northeast) Mirror Spot'), lambda state: state.has_Mirror()) + set_rule(world.get_entrance('Skull Woods Final Section', player), lambda state: state.has('Fire Rod', player) and state.has_Pearl(player)) # bunny cannot use fire rod + set_rule(world.get_entrance('Misery Mire', player), lambda state: state.has_Pearl(player) and state.has_sword(player) and state.has_misery_mire_medallion(player)) # sword required to cast magic (!) + set_rule(world.get_entrance('Desert Ledge (Northeast) Mirror Spot', player), lambda state: state.has_Mirror(player)) - set_rule(world.get_entrance('Desert Ledge Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Desert Palace Stairs Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Desert Palace Entrance (North) Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Spectacle Rock Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Hookshot Cave'), lambda state: state.can_lift_rocks() and state.has_Pearl()) + set_rule(world.get_entrance('Desert Ledge Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Desert Palace Stairs Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Desert Palace Entrance (North) Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Spectacle Rock Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Hookshot Cave', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) - set_rule(world.get_entrance('East Death Mountain (Top) Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Mimic Cave Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Spiral Cave Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Fairy Ascension Mirror Spot'), lambda state: state.has_Mirror() and state.has_Pearl()) # need to lift flowers - set_rule(world.get_entrance('Isolated Ledge Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Superbunny Cave Exit (Bottom)'), lambda state: False) # Cannot get to bottom exit from top. Just exists for shuffling + set_rule(world.get_entrance('East Death Mountain (Top) Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Mimic Cave Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Spiral Cave Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Fairy Ascension Mirror Spot', player), lambda state: state.has_Mirror(player) and state.has_Pearl(player)) # need to lift flowers + set_rule(world.get_entrance('Isolated Ledge Mirror Spot', player), lambda state: state.has_Mirror(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_location('Spike Cave'), lambda state: - state.has('Hammer') and state.can_lift_rocks() and - ((state.has('Cape') and state.can_extend_magic(16, True)) or - (state.has('Cane of Byrna') and - (state.can_extend_magic(12, True) or - (state.world.can_take_damage and (state.has_Boots() or state.has_hearts(4)))))) + 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)))))) ) - set_rule(world.get_location('Hookshot Cave - Top Right'), lambda state: state.has('Hookshot')) - set_rule(world.get_location('Hookshot Cave - Top Left'), lambda state: state.has('Hookshot')) - set_rule(world.get_location('Hookshot Cave - Bottom Right'), lambda state: state.has('Hookshot') or state.has('Pegasus Boots')) - set_rule(world.get_location('Hookshot Cave - Bottom Left'), lambda state: state.has('Hookshot')) - set_rule(world.get_entrance('Floating Island Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Turtle Rock'), lambda state: state.has_Pearl() and state.has_sword() and state.has_turtle_rock_medallion() and state.can_reach('Turtle Rock (Top)', 'Region')) # sword required to cast magic (!) - set_rule(world.get_location('Mimic Cave'), lambda state: state.has('Hammer')) + set_rule(world.get_location('Hookshot Cave - Top Right', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_location('Hookshot Cave - Top Left', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_location('Hookshot Cave - Bottom Right', player), lambda state: state.has('Hookshot', player) or state.has('Pegasus Boots', player)) + set_rule(world.get_location('Hookshot Cave - Bottom Left', player), lambda state: state.has('Hookshot', player)) + 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_Pearl(player) and 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 (!) + set_rule(world.get_location('Mimic Cave', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_entrance('Sewers Door'), lambda state: state.has_key('Small Key (Escape)')) - set_rule(world.get_entrance('Sewers Back Door'), lambda state: state.has_key('Small Key (Escape)')) + set_rule(world.get_entrance('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player)) + set_rule(world.get_entrance('Sewers Back Door', player), lambda state: state.has_key('Small Key (Escape)', player)) - set_rule(world.get_location('Eastern Palace - Big Chest'), lambda state: state.has('Big Key (Eastern Palace)')) - set_rule(world.get_location('Eastern Palace - Boss'), lambda state: state.can_shoot_arrows() and state.has('Big Key (Eastern Palace)') and world.get_location('Eastern Palace - Boss').parent_region.dungeon.boss.can_defeat(state)) - set_rule(world.get_location('Eastern Palace - Prize'), lambda state: state.can_shoot_arrows() and state.has('Big Key (Eastern Palace)') and world.get_location('Eastern Palace - Prize').parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Eastern Palace - Big Chest', player), lambda state: state.has('Big Key (Eastern Palace)', player)) + set_rule(world.get_location('Eastern Palace - Boss', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Eastern Palace - Prize', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) for location in ['Eastern Palace - Boss', 'Eastern Palace - Big Chest']: - forbid_item(world.get_location(location), 'Big Key (Eastern Palace)') + forbid_item(world.get_location(location, player), 'Big Key (Eastern Palace)', player) - set_rule(world.get_location('Desert Palace - Big Chest'), lambda state: state.has('Big Key (Desert Palace)')) - set_rule(world.get_location('Desert Palace - Torch'), lambda state: state.has_Boots()) - set_rule(world.get_entrance('Desert Palace East Wing'), lambda state: state.has_key('Small Key (Desert Palace)')) - set_rule(world.get_location('Desert Palace - Prize'), lambda state: state.has_key('Small Key (Desert Palace)') and state.has('Big Key (Desert Palace)') and state.has_fire_source() and world.get_location('Desert Palace - Prize').parent_region.dungeon.boss.can_defeat(state)) - set_rule(world.get_location('Desert Palace - Boss'), lambda state: state.has_key('Small Key (Desert Palace)') and state.has('Big Key (Desert Palace)') and state.has_fire_source() and world.get_location('Desert Palace - Boss').parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Desert Palace - Big Chest', player), lambda state: state.has('Big Key (Desert Palace)', player)) + set_rule(world.get_location('Desert Palace - Torch', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Desert Palace East Wing', player), lambda state: state.has_key('Small Key (Desert Palace)', player)) + set_rule(world.get_location('Desert Palace - Prize', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Desert Palace - Boss', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) for location in ['Desert Palace - Boss', 'Desert Palace - Big Chest']: - forbid_item(world.get_location(location), 'Big Key (Desert Palace)') + forbid_item(world.get_location(location, player), 'Big Key (Desert Palace)', player) for location in ['Desert Palace - Boss', 'Desert Palace - Big Key Chest', 'Desert Palace - Compass Chest']: - forbid_item(world.get_location(location), 'Small Key (Desert Palace)') + forbid_item(world.get_location(location, player), 'Small Key (Desert Palace)', player) - set_rule(world.get_entrance('Tower of Hera Small Key Door'), lambda state: state.has_key('Small Key (Tower of Hera)') or item_name(state, 'Tower of Hera - Big Key Chest') == 'Small Key (Tower of Hera)') - set_rule(world.get_entrance('Tower of Hera Big Key Door'), lambda state: state.has('Big Key (Tower of Hera)')) - set_rule(world.get_location('Tower of Hera - Big Chest'), lambda state: state.has('Big Key (Tower of Hera)')) - set_rule(world.get_location('Tower of Hera - Big Key Chest'), lambda state: state.has_fire_source()) - set_always_allow(world.get_location('Tower of Hera - Big Key Chest'), lambda state, item: item.name == 'Small Key (Tower of Hera)') - set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize')) + set_rule(world.get_entrance('Tower of Hera Small Key Door', player), lambda state: state.has_key('Small Key (Tower of Hera)', player) or item_name(state, 'Tower of Hera - Big Key Chest', player) == ('Small Key (Tower of Hera)', player)) + set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) + set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) + set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) + set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) + set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: - forbid_item(world.get_location(location), 'Big Key (Tower of Hera)') + forbid_item(world.get_location(location, player), 'Big Key (Tower of Hera)', player) # for location in ['Tower of Hera - Big Key Chest']: -# forbid_item(world.get_location(location), 'Small Key (Tower of Hera)') +# forbid_item(world.get_location(location, player), 'Small Key (Tower of Hera)', player) - set_rule(world.get_entrance('Swamp Palace Moat'), lambda state: state.has('Flippers') and state.has('Open Floodgate')) - add_rule(world.get_location('Sunken Treasure'), lambda state: state.has('Open Floodgate')) + set_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) + add_rule(world.get_location('Sunken Treasure', player), lambda state: state.has('Open Floodgate', player)) - set_rule(world.get_entrance('Swamp Palace Small Key Door'), lambda state: state.has_key('Small Key (Swamp Palace)')) - set_rule(world.get_entrance('Swamp Palace (Center)'), lambda state: state.has('Hammer')) - set_rule(world.get_location('Swamp Palace - Big Chest'), lambda state: state.has('Big Key (Swamp Palace)') or item_name(state, 'Swamp Palace - Big Chest') == 'Big Key (Swamp Palace)') - set_always_allow(world.get_location('Swamp Palace - Big Chest'), lambda state, item: item.name == 'Big Key (Swamp Palace)') - set_rule(world.get_entrance('Swamp Palace (North)'), lambda state: state.has('Hookshot')) - set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize')) + set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) + set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) + set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) + set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) + set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) for location in ['Swamp Palace - Entrance']: - forbid_item(world.get_location(location), 'Big Key (Swamp Palace)') + forbid_item(world.get_location(location, player), 'Big Key (Swamp Palace)', player) - set_rule(world.get_entrance('Thieves Town Big Key Door'), lambda state: state.has('Big Key (Thieves Town)')) - set_rule(world.get_entrance('Blind Fight'), lambda state: state.has_key('Small Key (Thieves Town)')) - set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize')) - set_rule(world.get_location('Thieves\' Town - Big Chest'), lambda state: (state.has_key('Small Key (Thieves Town)') or item_name(state, 'Thieves\' Town - Big Chest') == 'Small Key (Thieves Town)') and state.has('Hammer')) - set_always_allow(world.get_location('Thieves\' Town - Big Chest'), lambda state, item: item.name == 'Small Key (Thieves Town)' and state.has('Hammer')) - set_rule(world.get_location('Thieves\' Town - Attic'), lambda state: state.has_key('Small Key (Thieves Town)')) + set_rule(world.get_entrance('Thieves Town Big Key Door', player), lambda state: state.has('Big Key (Thieves Town)', player)) + set_rule(world.get_entrance('Blind Fight', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) + set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) + set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) + set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) + set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: - forbid_item(world.get_location(location), 'Big Key (Thieves Town)') + forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Boss']: - forbid_item(world.get_location(location), 'Small Key (Thieves Town)') + forbid_item(world.get_location(location, player), 'Small Key (Thieves Town)', player) - set_rule(world.get_entrance('Skull Woods First Section South Door'), lambda state: state.has_key('Small Key (Skull Woods)')) - set_rule(world.get_entrance('Skull Woods First Section (Right) North Door'), lambda state: state.has_key('Small Key (Skull Woods)')) - set_rule(world.get_entrance('Skull Woods First Section West Door'), lambda state: state.has_key('Small Key (Skull Woods)', 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section - set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit'), lambda state: state.has_key('Small Key (Skull Woods)', 2)) - set_rule(world.get_location('Skull Woods - Big Chest'), lambda state: state.has('Big Key (Skull Woods)') or item_name(state, 'Skull Woods - Big Chest') == 'Big Key (Skull Woods)') - set_always_allow(world.get_location('Skull Woods - Big Chest'), lambda state, item: item.name == 'Big Key (Skull Woods)') - set_rule(world.get_entrance('Skull Woods Torch Room'), lambda state: state.has_key('Small Key (Skull Woods)', 3) and state.has('Fire Rod') and state.has_sword()) # sword required for curtain - set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize')) + set_rule(world.get_entrance('Skull Woods First Section South Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) + set_rule(world.get_entrance('Skull Woods First Section (Right) North Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) + set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section + set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) + set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) + set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) + set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain + set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) for location in ['Skull Woods - Boss']: - forbid_item(world.get_location(location), 'Small Key (Skull Woods)') + forbid_item(world.get_location(location, player), 'Small Key (Skull Woods)', player) - set_rule(world.get_entrance('Ice Palace Entrance Room'), lambda state: state.has('Fire Rod') or (state.has('Bombos') and state.has_sword())) - set_rule(world.get_location('Ice Palace - Big Chest'), lambda state: state.has('Big Key (Ice Palace)')) - set_rule(world.get_entrance('Ice Palace (Kholdstare)'), lambda state: state.can_lift_rocks() and state.has('Hammer') and state.has('Big Key (Ice Palace)') and (state.has_key('Small Key (Ice Palace)', 2) or (state.has('Cane of Somaria') and state.has_key('Small Key (Ice Palace)', 1)))) + set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.has('Fire Rod', player) or (state.has('Bombos', player) and state.has_sword(player))) + set_rule(world.get_location('Ice Palace - Big Chest', player), lambda state: state.has('Big Key (Ice Palace)', player)) + set_rule(world.get_entrance('Ice Palace (Kholdstare)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', player) and state.has('Big Key (Ice Palace)', player) and (state.has_key('Small Key (Ice Palace)', player, 2) or (state.has('Cane of Somaria', player) and state.has_key('Small Key (Ice Palace)', player, 1)))) # TODO: investigate change from VT. Changed to hookshot or 2 keys (no checking for big key in specific chests) - set_rule(world.get_entrance('Ice Palace (East)'), lambda state: (state.has('Hookshot') or (item_in_locations(state, 'Big Key (Ice Palace)', ['Ice Palace - Spike Room', 'Ice Palace - Big Key Chest', 'Ice Palace - Map Chest']) and state.has_key('Small Key (Ice Palace)'))) and (state.world.can_take_damage or state.has('Hookshot') or state.has('Cape') or state.has('Cane of Byrna'))) - set_rule(world.get_entrance('Ice Palace (East Top)'), lambda state: state.can_lift_rocks() and state.has('Hammer')) - set_defeat_dungeon_boss_rule(world.get_location('Ice Palace - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Ice Palace - Prize')) + set_rule(world.get_entrance('Ice Palace (East)', player), lambda state: (state.has('Hookshot', player) or (item_in_locations(state, 'Big Key (Ice Palace)', player, [('Ice Palace - Spike Room', player), ('Ice Palace - Big Key Chest', player), ('Ice Palace - Map Chest', player)]) and state.has_key('Small Key (Ice Palace)', player))) and (state.world.can_take_damage or state.has('Hookshot', player) or state.has('Cape', player) or state.has('Cane of Byrna', player))) + set_rule(world.get_entrance('Ice Palace (East Top)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', 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)) for location in ['Ice Palace - Big Chest', 'Ice Palace - Boss']: - forbid_item(world.get_location(location), 'Big Key (Ice Palace)') + forbid_item(world.get_location(location, player), 'Big Key (Ice Palace)', player) - set_rule(world.get_entrance('Misery Mire Entrance Gap'), lambda state: (state.has_Boots() or state.has('Hookshot')) and (state.has_sword() or state.has('Fire Rod') or state.has('Ice Rod') or state.has('Hammer') or state.has('Cane of Somaria') or state.can_shoot_arrows())) # need to defeat wizzrobes, bombs don't work ... - set_rule(world.get_location('Misery Mire - Big Chest'), lambda state: state.has('Big Key (Misery Mire)')) - set_rule(world.get_location('Misery Mire - Spike Chest'), lambda state: (state.world.can_take_damage and state.has_hearts(4)) or state.has('Cane of Byrna') or state.has('Cape')) - set_rule(world.get_entrance('Misery Mire Big Key Door'), lambda state: state.has('Big Key (Misery Mire)')) + set_rule(world.get_entrance('Misery Mire Entrance Gap', player), lambda state: (state.has_Boots(player) or state.has('Hookshot', player)) and (state.has_sword(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Hammer', player) or state.has('Cane of Somaria', player) or state.can_shoot_arrows(player))) # need to defeat wizzrobes, bombs don't work ... + set_rule(world.get_location('Misery Mire - Big Chest', player), lambda state: state.has('Big Key (Misery Mire)', player)) + set_rule(world.get_location('Misery Mire - Spike Chest', player), lambda state: (state.world.can_take_damage and state.has_hearts(player, 4)) or state.has('Cane of Byrna', player) or state.has('Cape', player)) + set_rule(world.get_entrance('Misery Mire Big Key Door', player), lambda state: state.has('Big Key (Misery Mire)', player)) # you can squander the free small key from the pot by opening the south door to the north west switch room, locking you out of accessing a color switch ... # big key gives backdoor access to that from the teleporter in the north west - set_rule(world.get_location('Misery Mire - Map Chest'), lambda state: state.has_key('Small Key (Misery Mire)', 1) or state.has('Big Key (Misery Mire)')) + set_rule(world.get_location('Misery Mire - Map Chest', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 1) or state.has('Big Key (Misery Mire)', player)) # in addition, you can open the door to the map room before getting access to a color switch, so this is locked behing 2 small keys or the big key... - set_rule(world.get_location('Misery Mire - Main Lobby'), lambda state: state.has_key('Small Key (Misery Mire)', 2) or state.has_key('Big Key (Misery Mire)')) + set_rule(world.get_location('Misery Mire - Main Lobby', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) or state.has_key('Big Key (Misery Mire)', player)) # we can place a small key in the West wing iff it also contains/blocks the Big Key, as we cannot reach and softlock with the basement key door yet - set_rule(world.get_entrance('Misery Mire (West)'), lambda state: state.has_key('Small Key (Misery Mire)', 2) if ((item_name(state, 'Misery Mire - Compass Chest') in ['Big Key (Misery Mire)']) or - (item_name(state, 'Misery Mire - Big Key Chest') in ['Big Key (Misery Mire)'])) else state.has_key('Small Key (Misery Mire)', 3)) - set_rule(world.get_location('Misery Mire - Compass Chest'), lambda state: state.has_fire_source()) - set_rule(world.get_location('Misery Mire - Big Key Chest'), lambda state: state.has_fire_source()) - set_rule(world.get_entrance('Misery Mire (Vitreous)'), lambda state: state.has('Cane of Somaria')) - set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Prize')) + set_rule(world.get_entrance('Misery Mire (West)', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) if ((item_name(state, 'Misery Mire - Compass Chest', player) in [('Big Key (Misery Mire)', player)]) or + (item_name(state, 'Misery Mire - Big Key Chest', player) in [('Big Key (Misery Mire)', player)])) else state.has_key('Small Key (Misery Mire)', player, 3)) + set_rule(world.get_location('Misery Mire - Compass Chest', player), lambda state: state.has_fire_source(player)) + set_rule(world.get_location('Misery Mire - Big Key Chest', player), lambda state: state.has_fire_source(player)) + set_rule(world.get_entrance('Misery Mire (Vitreous)', player), lambda state: state.has('Cane of Somaria', player)) + set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Prize', player)) for location in ['Misery Mire - Big Chest', 'Misery Mire - Boss']: - forbid_item(world.get_location(location), 'Big Key (Misery Mire)') + forbid_item(world.get_location(location, player), 'Big Key (Misery Mire)', player) - set_rule(world.get_entrance('Turtle Rock Entrance Gap'), lambda state: state.has('Cane of Somaria')) - set_rule(world.get_entrance('Turtle Rock Entrance Gap Reverse'), lambda state: state.has('Cane of Somaria')) - set_rule(world.get_location('Turtle Rock - Compass Chest'), lambda state: state.has('Cane of Somaria')) # We could get here from the middle section without Cane as we don't cross the entrance gap! - set_rule(world.get_location('Turtle Rock - Roller Room - Left'), lambda state: state.has('Cane of Somaria') and state.has('Fire Rod')) - set_rule(world.get_location('Turtle Rock - Roller Room - Right'), lambda state: state.has('Cane of Somaria') and state.has('Fire Rod')) - set_rule(world.get_location('Turtle Rock - Big Chest'), lambda state: state.has('Big Key (Turtle Rock)') and (state.has('Cane of Somaria') or state.has('Hookshot'))) - set_rule(world.get_entrance('Turtle Rock (Big Chest) (North)'), lambda state: state.has('Cane of Somaria') or state.has('Hookshot')) - set_rule(world.get_entrance('Turtle Rock Big Key Door'), lambda state: state.has('Big Key (Turtle Rock)')) - set_rule(world.get_entrance('Turtle Rock (Dark Room) (North)'), lambda state: state.has('Cane of Somaria')) - set_rule(world.get_entrance('Turtle Rock (Dark Room) (South)'), lambda state: state.has('Cane of Somaria')) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Left'), lambda state: state.has('Cane of Byrna') or state.has('Cape') or state.has('Mirror Shield')) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Right'), lambda state: state.has('Cane of Byrna') or state.has('Cape') or state.has('Mirror Shield')) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left'), lambda state: state.has('Cane of Byrna') or state.has('Cape') or state.has('Mirror Shield')) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right'), lambda state: state.has('Cane of Byrna') or state.has('Cape') or state.has('Mirror Shield')) - set_rule(world.get_entrance('Turtle Rock (Trinexx)'), lambda state: state.has_key('Small Key (Turtle Rock)', 4) and state.has('Big Key (Turtle Rock)') and state.has('Cane of Somaria')) - set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Prize')) + set_rule(world.get_entrance('Turtle Rock Entrance Gap', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Turtle Rock Entrance Gap Reverse', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_location('Turtle Rock - Compass Chest', player), lambda state: state.has('Cane of Somaria', player)) # We could get here from the middle section without Cane as we don't cross the entrance gap! + set_rule(world.get_location('Turtle Rock - Roller Room - Left', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) + set_rule(world.get_location('Turtle Rock - Roller Room - Right', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) + set_rule(world.get_location('Turtle Rock - Big Chest', player), lambda state: state.has('Big Key (Turtle Rock)', player) and (state.has('Cane of Somaria', player) or state.has('Hookshot', player))) + set_rule(world.get_entrance('Turtle Rock (Big Chest) (North)', player), lambda state: state.has('Cane of Somaria', player) or state.has('Hookshot', player)) + set_rule(world.get_entrance('Turtle Rock Big Key Door', player), lambda state: state.has('Big Key (Turtle Rock)', player)) + set_rule(world.get_entrance('Turtle Rock (Dark Room) (North)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Turtle Rock (Dark Room) (South)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_entrance('Turtle Rock (Trinexx)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4) and state.has('Big Key (Turtle Rock)', player) and state.has('Cane of Somaria', player)) + set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Prize', player)) - set_rule(world.get_entrance('Palace of Darkness Bonk Wall'), lambda state: state.can_shoot_arrows()) - set_rule(world.get_entrance('Palace of Darkness Hammer Peg Drop'), lambda state: state.has('Hammer')) - set_rule(world.get_entrance('Palace of Darkness Bridge Room'), lambda state: state.has_key('Small Key (Palace of Darkness)', 1)) # If we can reach any other small key door, we already have back door access to this area - set_rule(world.get_entrance('Palace of Darkness Big Key Door'), lambda state: state.has_key('Small Key (Palace of Darkness)', 6) and state.has('Big Key (Palace of Darkness)') and state.can_shoot_arrows() and state.has('Hammer')) - set_rule(world.get_entrance('Palace of Darkness (North)'), lambda state: state.has_key('Small Key (Palace of Darkness)', 4)) - set_rule(world.get_location('Palace of Darkness - Big Chest'), lambda state: state.has('Big Key (Palace of Darkness)')) + set_rule(world.get_entrance('Palace of Darkness Bonk Wall', player), lambda state: state.can_shoot_arrows(player)) + set_rule(world.get_entrance('Palace of Darkness Hammer Peg Drop', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Palace of Darkness Bridge Room', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 1)) # If we can reach any other small key door, we already have back door access to this area + set_rule(world.get_entrance('Palace of Darkness Big Key Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) and state.has('Big Key (Palace of Darkness)', player) and state.can_shoot_arrows(player) and state.has('Hammer', player)) + set_rule(world.get_entrance('Palace of Darkness (North)', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 4)) + set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) - set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase'), lambda state: state.has_key('Small Key (Palace of Darkness)', 6) or (item_name(state, 'Palace of Darkness - Big Key Chest') in ['Small Key (Palace of Darkness)'] and state.has_key('Small Key (Palace of Darkness)', 3))) - set_always_allow(world.get_location('Palace of Darkness - Big Key Chest'), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and state.has_key('Small Key (Palace of Darkness)', 5)) + set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) + set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) - set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door'), lambda state: state.has_key('Small Key (Palace of Darkness)', 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway') in ['Small Key (Palace of Darkness)'] and state.has_key('Small Key (Palace of Darkness)', 4))) - set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway'), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and state.has_key('Small Key (Palace of Darkness)', 5)) - set_rule(world.get_entrance('Palace of Darkness Maze Door'), lambda state: state.has_key('Small Key (Palace of Darkness)', 6)) - set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss')) - set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize')) + set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) + set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) + set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) # these key rules are conservative, you might be able to get away with more lenient rules randomizer_room_chests = ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'] compass_room_chests = ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'] - set_rule(world.get_location('Ganons Tower - Bob\'s Torch'), lambda state: state.has_Boots()) - set_rule(world.get_entrance('Ganons Tower (Tile Room)'), lambda state: state.has('Cane of Somaria')) - set_rule(world.get_entrance('Ganons Tower (Hookshot Room)'), lambda state: state.has('Hammer')) + set_rule(world.get_location('Ganons Tower - Bob\'s Torch', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Ganons Tower (Tile Room)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_entrance('Ganons Tower (Map Room)'), lambda state: state.has_key('Small Key (Ganons Tower)', 4) or (item_name(state, 'Ganons Tower - Map Chest') in ['Big Key (Ganons Tower)', 'Small Key (Ganons Tower)'] and state.has_key('Small Key (Ganons Tower)', 3))) - set_always_allow(world.get_location('Ganons Tower - Map Chest'), lambda state, item: item.name == 'Small Key (Ganons Tower)' and state.has_key('Small Key (Ganons Tower)', 3)) + set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) + set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. - set_rule(world.get_entrance('Ganons Tower (Double Switch Room)'), lambda state: state.has_key('Small Key (Ganons Tower)', 2)) + set_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 2)) # It is possible to need more than 3 keys .... - set_rule(world.get_entrance('Ganons Tower (Firesnake Room)'), lambda state: state.has_key('Small Key (Ganons Tower)', 3)) + set_rule(world.get_entrance('Ganons Tower (Firesnake Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) #The actual requirements for these rooms to avoid key-lock - set_rule(world.get_location('Ganons Tower - Firesnake Room'), lambda state: state.has_key('Small Key (Ganons Tower)', 3) or (item_in_locations(state, 'Big Key (Ganons Tower)', randomizer_room_chests) and state.has_key('Small Key (Ganons Tower)', 2))) + set_rule(world.get_location('Ganons Tower - Firesnake Room', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 2))) for location in randomizer_room_chests: - set_rule(world.get_location(location), lambda state: state.has_key('Small Key (Ganons Tower)', 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', randomizer_room_chests) and state.has_key('Small Key (Ganons Tower)', 3))) + set_rule(world.get_location(location, player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3))) # Once again it is possible to need more than 3 keys... - set_rule(world.get_entrance('Ganons Tower (Tile Room) Key Door'), lambda state: state.has_key('Small Key (Ganons Tower)', 3) and state.has('Fire Rod')) + set_rule(world.get_entrance('Ganons Tower (Tile Room) Key Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) and state.has('Fire Rod', player)) # Actual requirements for location in compass_room_chests: - set_rule(world.get_location(location), lambda state: state.has('Fire Rod') and (state.has_key('Small Key (Ganons Tower)', 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', compass_room_chests) and state.has_key('Small Key (Ganons Tower)', 3)))) + set_rule(world.get_location(location, player), lambda state: state.has('Fire Rod', player) and (state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(compass_room_chests, [player] * len(compass_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3)))) - set_rule(world.get_location('Ganons Tower - Big Chest'), lambda state: state.has('Big Key (Ganons Tower)')) + set_rule(world.get_location('Ganons Tower - Big Chest', player), lambda state: state.has('Big Key (Ganons Tower)', player)) - set_rule(world.get_location('Ganons Tower - Big Key Room - Left'), lambda state: world.get_location('Ganons Tower - Big Key Room - Left').parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Big Key Chest'), lambda state: world.get_location('Ganons Tower - Big Key Chest').parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Big Key Room - Right'), lambda state: world.get_location('Ganons Tower - Big Key Room - Right').parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Room - Left', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Left', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Chest', player), lambda state: world.get_location('Ganons Tower - Big Key Chest', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Room - Right', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Right', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_entrance('Ganons Tower Big Key Door'), lambda state: state.has('Big Key (Ganons Tower)') and state.can_shoot_arrows()) - set_rule(world.get_entrance('Ganons Tower Torch Rooms'), lambda state: state.has_fire_source() and world.get_entrance('Ganons Tower Torch Rooms').parent_region.dungeon.bosses['middle'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Pre-Moldorm Chest'), lambda state: state.has_key('Small Key (Ganons Tower)', 3)) - set_rule(world.get_entrance('Ganons Tower Moldorm Door'), lambda state: state.has_key('Small Key (Ganons Tower)', 4)) - set_rule(world.get_entrance('Ganons Tower Moldorm Gap'), lambda state: state.has('Hookshot') and world.get_entrance('Ganons Tower Moldorm Gap').parent_region.dungeon.bosses['top'].can_defeat(state)) - set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2')) - set_rule(world.get_entrance('Pyramid Hole'), lambda state: state.has('Beat Agahnim 2')) + set_rule(world.get_entrance('Ganons Tower Big Key Door', player), lambda state: state.has('Big Key (Ganons Tower)', player) and state.can_shoot_arrows(player)) + set_rule(world.get_entrance('Ganons Tower Torch Rooms', player), lambda state: state.has_fire_source(player) and world.get_entrance('Ganons Tower Torch Rooms', player).parent_region.dungeon.bosses['middle'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Pre-Moldorm Chest', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) + set_rule(world.get_entrance('Ganons Tower Moldorm Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4)) + set_rule(world.get_entrance('Ganons Tower Moldorm Gap', player), lambda state: state.has('Hookshot', player) and world.get_entrance('Ganons Tower Moldorm Gap', player).parent_region.dungeon.bosses['top'].can_defeat(state)) + set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2', player)) + set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player)) for location in ['Ganons Tower - Big Chest', 'Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: - forbid_item(world.get_location(location), 'Big Key (Ganons Tower)') + forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) - set_rule(world.get_location('Ganon'), lambda state: state.has_beam_sword() and state.has_fire_source() and state.has('Crystal 1') and state.has('Crystal 2') - and state.has('Crystal 3') and state.has('Crystal 4') and state.has('Crystal 5') and state.has('Crystal 6') and state.has('Crystal 7') - and (state.has('Tempered Sword') or state.has('Golden Sword') or (state.has('Silver Arrows') and state.can_shoot_arrows()) or state.has('Lamp') or state.can_extend_magic(12))) # need to light torch a sufficient amount of times - set_rule(world.get_entrance('Ganon Drop'), lambda state: state.has_beam_sword()) # need to damage ganon to get tiles to drop + set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has('Crystal 1', player) and state.has('Crystal 2', player) + and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player) + and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times + set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop - set_rule(world.get_entrance('Ganons Tower'), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. + set_rule(world.get_entrance('Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. - set_trock_key_rules(world) + set_trock_key_rules(world, player) - set_rule(world.get_entrance('Ganons Tower'), lambda state: state.has('Crystal 1') and state.has('Crystal 2') and state.has('Crystal 3') and state.has('Crystal 4') and state.has('Crystal 5') and state.has('Crystal 6') and state.has('Crystal 7')) + set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has('Crystal 1', player) and state.has('Crystal 2', player) and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) -def no_glitches_rules(world): - set_rule(world.get_entrance('Zoras River'), lambda state: state.has('Flippers') or state.can_lift_rocks()) - set_rule(world.get_entrance('Lake Hylia Central Island Pier'), lambda state: state.has('Flippers')) # can be fake flippered to - set_rule(world.get_entrance('Hobo Bridge'), lambda state: state.has('Flippers')) - set_rule(world.get_entrance('Dark Lake Hylia Drop (East)'), lambda state: state.has_Pearl() and state.has('Flippers')) - set_rule(world.get_entrance('Dark Lake Hylia Teleporter'), lambda state: state.has_Pearl() and state.has('Flippers') and (state.has('Hammer') or state.can_lift_rocks())) - set_rule(world.get_entrance('Dark Lake Hylia Ledge Drop'), lambda state: state.has_Pearl() and state.has('Flippers')) - add_rule(world.get_entrance('Ganons Tower (Hookshot Room)'), lambda state: state.has('Hookshot') or state.has_Boots()) - add_rule(world.get_entrance('Ganons Tower (Double Switch Room)'), lambda state: state.has('Hookshot')) +def no_glitches_rules(world, player): + set_rule(world.get_entrance('Zoras River', player), lambda state: state.has('Flippers', player) or state.can_lift_rocks(player)) + set_rule(world.get_entrance('Lake Hylia Central Island Pier', player), lambda state: state.has('Flippers', player)) # can be fake flippered to + set_rule(world.get_entrance('Hobo Bridge', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) + set_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))) + set_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('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) + add_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has('Hookshot', player)) DMs_room_chests = ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', 'Ganons Tower - DMs Room - Bottom Left', 'Ganons Tower - DMs Room - Bottom Right'] for location in DMs_room_chests: - add_rule(world.get_location(location), lambda state: state.has('Hookshot')) - set_rule(world.get_entrance('Paradox Cave Push Block Reverse'), lambda state: False) # no glitches does not require block override - set_rule(world.get_entrance('Paradox Cave Bomb Jump'), lambda state: False) - set_rule(world.get_entrance('Skull Woods First Section Bomb Jump'), lambda state: False) + add_rule(world.get_location(location, player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_entrance('Paradox Cave Push Block Reverse', player), lambda state: False) # no glitches does not require block override + set_rule(world.get_entrance('Paradox Cave Bomb Jump', player), lambda state: False) + set_rule(world.get_entrance('Skull Woods First Section Bomb Jump', player), lambda state: False) # Light cones in standard depend on which world we actually are in, not which one the location would normally be # We add Lamp requirements only to those locations which lie in the dark world (or everything if open @@ -447,11 +452,11 @@ def no_glitches_rules(world): def add_conditional_lamp(spot, region, spottype='Location'): if spottype == 'Location': - spot = world.get_location(spot) + spot = world.get_location(spot, player) else: - spot = world.get_entrance(spot) - if (not world.dark_world_light_cone and check_is_dark_world(world.get_region(region))) or (not world.light_world_light_cone and not check_is_dark_world(world.get_region(region))): - add_lamp_requirement(spot) + spot = world.get_entrance(spot, player) + if (not world.dark_world_light_cone and check_is_dark_world(world.get_region(region, player))) or (not world.light_world_light_cone and not check_is_dark_world(world.get_region(region, player))): + add_lamp_requirement(spot, player) add_conditional_lamp('Misery Mire (Vitreous)', 'Misery Mire (Entrance)', 'Entrance') add_conditional_lamp('Turtle Rock (Dark Room) (North)', 'Turtle Rock (Entrance)', 'Entrance') @@ -473,79 +478,79 @@ def no_glitches_rules(world): add_conditional_lamp('Eastern Palace - Prize', 'Eastern Palace', 'Location') if not world.sewer_light_cone: - add_lamp_requirement(world.get_location('Sewers - Dark Cross')) - add_lamp_requirement(world.get_entrance('Sewers Back Door')) - add_lamp_requirement(world.get_entrance('Throne Room')) + add_lamp_requirement(world.get_location('Sewers - Dark Cross', player), player) + add_lamp_requirement(world.get_entrance('Sewers Back Door', player), player) + add_lamp_requirement(world.get_entrance('Throne Room', player), player) -def open_rules(world): +def open_rules(world, player): # softlock protection as you can reach the sewers small key door with a guard drop key - forbid_item(world.get_location('Hyrule Castle - Boomerang Chest'), 'Small Key (Escape)') - forbid_item(world.get_location('Hyrule Castle - Zelda\'s Chest'), 'Small Key (Escape)') + forbid_item(world.get_location('Hyrule Castle - Boomerang Chest', player), 'Small Key (Escape)', player) + forbid_item(world.get_location('Hyrule Castle - Zelda\'s Chest', player), 'Small Key (Escape)', player) - set_rule(world.get_location('Hyrule Castle - Boomerang Chest'), lambda state: state.has_key('Small Key (Escape)')) - set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest'), lambda state: state.has_key('Small Key (Escape)')) + 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)) -def swordless_rules(world): +def swordless_rules(world, player): # for the time being swordless mode just inherits all fixes from open mode. # should there ever be fixes that apply to open mode but not swordless, this # can be revisited. - open_rules(world) + open_rules(world, player) - set_rule(world.get_entrance('Agahnims Tower'), lambda state: state.has('Cape') or state.has('Hammer') or state.has('Beat Agahnim 1')) # barrier gets removed after killing agahnim, relevant for entrance shuffle - set_rule(world.get_entrance('Agahnim 1'), lambda state: (state.has('Hammer') or state.has('Fire Rod') or state.can_shoot_arrows() or state.has('Cane of Somaria')) and state.has_key('Small Key (Agahnims Tower)', 2)) - set_rule(world.get_location('Ether Tablet'), lambda state: state.has('Book of Mudora') and state.has('Hammer')) - set_rule(world.get_location('Bombos Tablet'), lambda state: state.has('Book of Mudora') and state.has('Hammer') and state.has_Mirror()) - set_rule(world.get_entrance('Misery Mire'), lambda state: state.has_Pearl() and state.has_misery_mire_medallion()) # sword not required to use medallion for opening in swordless (!) - set_rule(world.get_entrance('Turtle Rock'), lambda state: state.has_Pearl() and state.has_turtle_rock_medallion() and state.can_reach('Turtle Rock (Top)', 'Region')) # sword not required to use medallion for opening in swordless (!) - set_rule(world.get_entrance('Skull Woods Torch Room'), lambda state: state.has_key('Small Key (Skull Woods)', 3) and state.has('Fire Rod')) # no curtain - set_rule(world.get_entrance('Ice Palace Entrance Room'), lambda state: state.has('Fire Rod') or state.has('Bombos')) #in swordless mode bombos pads are present in the relevant parts of ice palace - set_rule(world.get_location('Ganon'), lambda state: state.has('Hammer') and state.has_fire_source() and state.has('Silver Arrows') and state.can_shoot_arrows() and state.has('Crystal 1') and state.has('Crystal 2') - and state.has('Crystal 3') and state.has('Crystal 4') and state.has('Crystal 5') and state.has('Crystal 6') and state.has('Crystal 7')) - set_rule(world.get_entrance('Ganon Drop'), lambda state: state.has('Hammer')) # need to damage ganon to get tiles to drop + 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('Agahnim 1', player), lambda state: (state.has('Hammer', player) or state.has('Fire Rod', player) or state.can_shoot_arrows(player) or state.has('Cane of Somaria', player)) and state.has_key('Small Key (Agahnims Tower)', player, 2)) + set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has('Hammer', 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)) + 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_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('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player)) # no curtain + set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.has('Fire Rod', player) or state.has('Bombos', player)) #in swordless mode bombos pads are present in the relevant parts of ice palace + set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has('Crystal 1', player) and state.has('Crystal 2', player) + and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) + set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has('Hammer', player)) # need to damage ganon to get tiles to drop -def standard_rules(world): - for loc in ['Sanctuary','Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', +def standard_rules(world, player): + for loc in ['Sanctuary', 'Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', 'Sewers - Secret Room - Right']: - add_rule(world.get_location(loc), lambda state: state.can_kill_most_things() and state.has_key('Small Key (Escape)')) + add_rule(world.get_location(loc, player), lambda state: state.can_kill_most_things(player) and state.has_key('Small Key (Escape)', player)) # easiest way to enforce key placement not relevant for open - set_rule(world.get_location('Sewers - Dark Cross'), lambda state: state.can_kill_most_things()) + set_rule(world.get_location('Sewers - Dark Cross', player), lambda state: state.can_kill_most_things(player)) - set_rule(world.get_location('Hyrule Castle - Boomerang Chest'), lambda state: state.can_kill_most_things()) - set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest'), lambda state: state.can_kill_most_things()) + set_rule(world.get_location('Hyrule Castle - Boomerang Chest', player), lambda state: state.can_kill_most_things(player)) + set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest', player), lambda state: state.can_kill_most_things(player)) -def set_trock_key_rules(world): +def set_trock_key_rules(world, player): all_state = world.get_all_state(True) # First set all relevant locked doors to impassible. for entrance in ['Turtle Rock Dark Room Staircase', 'Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)', 'Turtle Rock Pokey Room']: - set_rule(world.get_entrance(entrance), lambda state: False) + set_rule(world.get_entrance(entrance, player), lambda state: False) # Check if each of the four main regions of the dungoen can be reached. The previous code section prevents key-costing moves within the dungeon. - can_reach_back = all_state.can_reach(world.get_region('Turtle Rock (Eye Bridge)')) if world.can_access_trock_eyebridge is None else world.can_access_trock_eyebridge + can_reach_back = all_state.can_reach(world.get_region('Turtle Rock (Eye Bridge)', player)) if world.can_access_trock_eyebridge is None else world.can_access_trock_eyebridge world.can_access_trock_eyebridge = can_reach_back - can_reach_front = all_state.can_reach(world.get_region('Turtle Rock (Entrance)')) if world.can_access_trock_front is None else world.can_access_trock_front + can_reach_front = all_state.can_reach(world.get_region('Turtle Rock (Entrance)', player)) if world.can_access_trock_front is None else world.can_access_trock_front world.can_access_trock_front = can_reach_front - can_reach_big_chest = all_state.can_reach(world.get_region('Turtle Rock (Big Chest)')) if world.can_access_trock_big_chest is None else world.can_access_trock_big_chest + can_reach_big_chest = all_state.can_reach(world.get_region('Turtle Rock (Big Chest)', player)) if world.can_access_trock_big_chest is None else world.can_access_trock_big_chest world.can_access_trock_big_chest = can_reach_big_chest - can_reach_middle = all_state.can_reach(world.get_region('Turtle Rock (Second Section)')) if world.can_access_trock_middle is None else world.can_access_trock_middle + can_reach_middle = all_state.can_reach(world.get_region('Turtle Rock (Second Section)', player)) if world.can_access_trock_middle is None else world.can_access_trock_middle world.can_access_trock_middle = can_reach_middle # No matter what, the key requirement for going from the middle to the bottom should be three keys. - set_rule(world.get_entrance('Turtle Rock Dark Room Staircase'), lambda state: state.has_key('Small Key (Turtle Rock)', 3)) + set_rule(world.get_entrance('Turtle Rock Dark Room Staircase', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 3)) # The following represent the most common and most restrictive key rules. These are overwritten later as needed. - set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)'), lambda state: state.has_key('Small Key (Turtle Rock)', 4)) - set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (North)'), lambda state: state.has_key('Small Key (Turtle Rock)', 4)) - set_rule(world.get_entrance('Turtle Rock Pokey Room'), lambda state: state.has_key('Small Key (Turtle Rock)', 4)) + set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4)) + set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (North)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4)) + set_rule(world.get_entrance('Turtle Rock Pokey Room', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4)) # No matter what, the Big Key cannot be in the Big Chest or held by Trinexx. non_big_key_locations = ['Turtle Rock - Big Chest', 'Turtle Rock - Boss'] @@ -553,45 +558,45 @@ def set_trock_key_rules(world): def tr_big_key_chest_keys_needed(state): # This function handles the key requirements for the TR Big Chest in the situations it having the Big Key should logically require 2 keys, small key # should logically require no keys, and anything else should logically require 4 keys. - item = item_name(state, 'Turtle Rock - Big Key Chest') - if item in ['Small Key (Turtle Rock)']: + item = item_name(state, 'Turtle Rock - Big Key Chest', player) + if item in [('Small Key (Turtle Rock)', player)]: return 0 - if item in ['Big Key (Turtle Rock)']: + if item in [('Big Key (Turtle Rock)', player)]: return 2 return 4 # Now we need to set rules based on which entrances we have access to. The most important point is whether we have back access. If we have back access, we # might open all the locked doors in any order so we need maximally restrictive rules. if can_reach_back: - set_rule(world.get_location('Turtle Rock - Big Key Chest'), lambda state: (state.has_key('Small Key (Turtle Rock)', 4) or item_name(state, 'Turtle Rock - Big Key Chest') == 'Small Key (Turtle Rock)')) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest'), lambda state, item: item.name == 'Small Key (Turtle Rock)') + set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) elif can_reach_front and can_reach_middle: - set_rule(world.get_location('Turtle Rock - Big Key Chest'), lambda state: state.has_key('Small Key (Turtle Rock)', tr_big_key_chest_keys_needed(state))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest'), lambda state, item: item.name == 'Small Key (Turtle Rock)') + set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] elif can_reach_front: - set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (North)'), lambda state: state.has_key('Small Key (Turtle Rock)', 2)) - set_rule(world.get_entrance('Turtle Rock Pokey Room'), lambda state: state.has_key('Small Key (Turtle Rock)', 1)) - set_rule(world.get_location('Turtle Rock - Big Key Chest'), lambda state: state.has_key('Small Key (Turtle Rock)', tr_big_key_chest_keys_needed(state))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest'), lambda state, item: item.name == 'Small Key (Turtle Rock)' and state.has_key('Small Key (Turtle Rock)', 2)) + set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (North)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2)) + set_rule(world.get_entrance('Turtle Rock Pokey Room', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 1)) + set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player and state.has_key('Small Key (Turtle Rock)', player, 2)) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] elif can_reach_big_chest: - set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)'), lambda state: state.has_key('Small Key (Turtle Rock)', 2) if item_in_locations(state, 'Big Key (Turtle Rock)', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', 'Turtle Rock - Roller Room - Right']) else state.has_key('Small Key (Turtle Rock)', 4)) - set_rule(world.get_location('Turtle Rock - Big Key Chest'), lambda state: (state.has_key('Small Key (Turtle Rock)', 4) or item_name(state, 'Turtle Rock - Big Key Chest') == 'Small Key (Turtle Rock)')) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest'), lambda state, item: item.name == 'Small Key (Turtle Rock)') + set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) + set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] if not world.keysanity: non_big_key_locations += ['Turtle Rock - Big Key Chest'] else: - set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)'), lambda state: state.has_key('Small Key (Turtle Rock)', 2) if item_in_locations(state, 'Big Key (Turtle Rock)', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', 'Turtle Rock - Roller Room - Right']) else state.has_key('Small Key (Turtle Rock)', 4)) - set_rule(world.get_location('Turtle Rock - Big Key Chest'), lambda state: (state.has_key('Small Key (Turtle Rock)', 4) or item_name(state, 'Turtle Rock - Big Key Chest') == 'Small Key (Turtle Rock)')) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest'), lambda state, item: item.name == 'Small Key (Turtle Rock)') + set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) + set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] @@ -600,16 +605,16 @@ def set_trock_key_rules(world): # set big key restrictions for location in non_big_key_locations: - forbid_item(world.get_location(location), 'Big Key (Turtle Rock)') + forbid_item(world.get_location(location, player), 'Big Key (Turtle Rock)', player) # small key restriction for location in ['Turtle Rock - Boss']: - forbid_item(world.get_location(location), 'Small Key (Turtle Rock)') + forbid_item(world.get_location(location, player), 'Small Key (Turtle Rock)', player) -def set_big_bomb_rules(world): +def set_big_bomb_rules(world, player): # this is a mess - bombshop_entrance = world.get_region('Big Bomb Shop').entrances[0] + bombshop_entrance = world.get_region('Big Bomb Shop', player).entrances[0] Normal_LW_entrances = ['Blinds Hideout', 'Bonk Fairy (Light)', 'Lake Hylia Fairy', @@ -723,23 +728,23 @@ def set_big_bomb_rules(world): Desert_mirrorable_ledge_entrances = ['Desert Palace Entrance (West)', 'Desert Palace Entrance (North)', 'Desert Palace Entrance (South)', - 'Checkerboard Cave',] + 'Checkerboard Cave'] - set_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.can_reach('East Dark World', 'Region') and state.can_reach('Big Bomb Shop', 'Region') and state.has('Crystal 5') and state.has('Crystal 6')) + set_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_reach('East Dark World', 'Region', player) and state.can_reach('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 def cross_peg_bridge(state): - return state.has('Hammer') and state.has_Pearl() + return state.has('Hammer', player) and state.has_Pearl(player) # returning via the eastern and southern teleporters needs the same items, so we use the southern teleporter for out routing. # crossing preg bridge already requires hammer so we just add the gloves to the requirement def southern_teleporter(state): - return state.can_lift_rocks() and cross_peg_bridge(state) + return state.can_lift_rocks(player) and cross_peg_bridge(state) # the basic routes assume you can reach eastern light world with the bomb. # you can then use the southern teleporter, or (if you have beaten Aga1) the hyrule castle gate warp def basic_routes(state): - return southern_teleporter(state) or state.can_reach('Top of Pyramid', 'Entrance') + return southern_teleporter(state) or state.can_reach('Top of Pyramid', 'Entrance', player) # Key for below abbreviations: # P = pearl @@ -752,90 +757,90 @@ def set_big_bomb_rules(world): #1. basic routes #2. Can reach Eastern dark world some other way, mirror, get bomb, return to mirror spot, walk to pyramid: Needs mirror # -> M or BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: basic_routes(state) or state.has_Mirror()) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: basic_routes(state) or state.has_Mirror(player)) elif bombshop_entrance.name in LW_walkable_entrances: #1. Mirror then basic routes # -> M and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and basic_routes(state)) elif bombshop_entrance.name in Northern_DW_entrances: #1. Mirror and basic routes #2. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl # -> (Mitts and CPB) or (M and BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and cross_peg_bridge(state)) or (state.has_Mirror() and basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (state.has_Mirror(player) and basic_routes(state))) elif bombshop_entrance.name == 'Bumper Cave (Bottom)': #1. Mirror and Lift rock and basic_routes #2. Mirror and Flute and basic routes (can make difference if accessed via insanity or w/ mirror from connector, and then via hyrule castle gate, because no gloves are needed in that case) #3. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl # -> (Mitts and CPB) or (((G or Flute) and M) and BR)) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and cross_peg_bridge(state)) or (((state.can_lift_rocks() or state.has('Ocarina')) and state.has_Mirror()) and basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (((state.can_lift_rocks(player) or state.has('Ocarina', player)) and state.has_Mirror(player)) and basic_routes(state))) elif bombshop_entrance.name in Southern_DW_entrances: #1. Mirror and enter via gate: Need mirror and Aga1 #2. cross peg bridge: Need hammer and moon pearl # -> CPB or (M and A) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: cross_peg_bridge(state) or (state.has_Mirror() and state.can_reach('Top of Pyramid', 'Entrance'))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: cross_peg_bridge(state) or (state.has_Mirror(player) and state.can_reach('Top of Pyramid', 'Entrance', player))) elif bombshop_entrance.name in Isolated_DW_entrances: # 1. mirror then flute then basic routes # -> M and Flute and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() and state.has('Ocarina') and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and state.has('Ocarina', player) and basic_routes(state)) elif bombshop_entrance.name in Isolated_LW_entrances: # 1. flute then basic routes # Prexisting mirror spot is not permitted, because mirror might have been needed to reach these isolated locations. # -> Flute and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has('Ocarina', player) and basic_routes(state)) elif bombshop_entrance.name in West_LW_DM_entrances: # 1. flute then basic routes or mirror # Prexisting mirror spot is permitted, because flute can be used to reach west DM directly. # -> Flute and (M or BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and (state.has_Mirror() or basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has('Ocarina', player) and (state.has_Mirror(player) or basic_routes(state))) elif bombshop_entrance.name in East_LW_DM_entrances: # 1. flute then basic routes or mirror and hookshot # Prexisting mirror spot is permitted, because flute can be used to reach west DM directly and then east DM via Hookshot # -> Flute and ((M and Hookshot) or BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and ((state.has_Mirror() and state.has('Hookshot')) or basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has('Ocarina', player) and ((state.has_Mirror(player) and state.has('Hookshot', player)) or basic_routes(state))) elif bombshop_entrance.name == 'Fairy Ascension Cave (Bottom)': # Same as East_LW_DM_entrances except navigation without BR requires Mitts # -> Flute and ((M and Hookshot and Mitts) or BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and ((state.has_Mirror() and state.has('Hookshot') and state.can_lift_heavy_rocks()) or basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has('Ocarina', player) and ((state.has_Mirror(player) and state.has('Hookshot', player) and state.can_lift_heavy_rocks(player)) or basic_routes(state))) elif bombshop_entrance.name in Castle_ledge_entrances: # 1. mirror on pyramid to castle ledge, grab bomb, return through mirror spot: Needs mirror # 2. flute then basic routes # -> M or (Flute and BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() or (state.has('Ocarina') and basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) or (state.has('Ocarina', player) and basic_routes(state))) elif bombshop_entrance.name in Desert_mirrorable_ledge_entrances: # Cases when you have mire access: Mirror to reach locations, return via mirror spot, move to center of desert, mirror anagin and: # 1. Have mire access, Mirror to reach locations, return via mirror spot, move to center of desert, mirror again and then basic routes # 2. flute then basic routes # -> (Mire access and M) or Flute) and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: ((state.can_reach('Dark Desert', 'Region') and state.has_Mirror()) or state.has('Ocarina')) and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: ((state.can_reach('Dark Desert', 'Region', player) and state.has_Mirror(player)) or state.has('Ocarina', player)) and basic_routes(state)) elif bombshop_entrance.name == 'Old Man Cave (West)': # 1. Lift rock then basic_routes # 2. flute then basic_routes # -> (Flute or G) and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Ocarina') or state.can_lift_rocks()) and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.has('Ocarina', player) or state.can_lift_rocks(player)) and basic_routes(state)) elif bombshop_entrance.name == 'Graveyard Cave': # 1. flute then basic routes # 2. (has west dark world access) use existing mirror spot (required Pearl), mirror again off ledge # -> (Flute or (M and P and West Dark World access) and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Ocarina') or (state.can_reach('West Dark World', 'Region') and state.has_Pearl() and state.has_Mirror())) and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.has('Ocarina', player) or (state.can_reach('West Dark World', 'Region', player) and state.has_Pearl(player) and state.has_Mirror(player))) and basic_routes(state)) elif bombshop_entrance.name in Mirror_from_SDW_entrances: # 1. flute then basic routes # 2. (has South dark world access) use existing mirror spot, mirror again off ledge # -> (Flute or (M and South Dark World access) and BR - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Ocarina') or (state.can_reach('South Dark World', 'Region') and state.has_Mirror())) and basic_routes(state)) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.has('Ocarina', player) or (state.can_reach('South Dark World', 'Region', player) and state.has_Mirror(player))) and basic_routes(state)) elif bombshop_entrance.name == 'Dark World Potion Shop': # 1. walk down by lifting rock: needs gloves and pearl` # 2. walk down by hammering peg: needs hammer and pearl # 3. mirror and basic routes # -> (P and (H or Gloves)) or (M and BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has_Pearl() and (state.has('Hammer') or state.can_lift_rocks())) or (state.has_Mirror() and basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.has_Pearl(player) and (state.has('Hammer', player) or state.can_lift_rocks(player))) or (state.has_Mirror(player) and basic_routes(state))) elif bombshop_entrance.name == 'Kings Grave': # same as the Normal_LW_entrances case except that the pre-existing mirror is only possible if you have mitts # (because otherwise mirror was used to reach the grave, so would cancel a pre-existing mirror spot) # to account for insanity, must consider a way to escape without a cave for basic_routes # -> (M and Mitts) or ((Mitts or Flute or (M and P and West Dark World access)) and BR) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and state.has_Mirror()) or ((state.can_lift_heavy_rocks() or state.has('Ocarina') or (state.can_reach('West Dark World', 'Region') and state.has_Pearl() and state.has_Mirror())) and basic_routes(state))) + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and state.has_Mirror(player)) or ((state.can_lift_heavy_rocks(player) or state.has('Ocarina', player) or (state.can_reach('West Dark World', 'Region', player) and state.has_Pearl(player) and state.has_Mirror(player))) and basic_routes(state))) -def set_bunny_rules(world): +def set_bunny_rules(world, player): # regions for the exits of multi-entrace caves/drops that bunny cannot pass # Note spiral cave may be technically passible, but it would be too absurd to require since OHKO mode is a thing. @@ -853,12 +858,12 @@ def set_bunny_rules(world): def get_rule_to_add(region): if not region.is_light_world: - return lambda state: state.has_Pearl() + return lambda state: state.has_Pearl(player) # in this case we are mixed region. # we collect possible options. # The base option is having the moon pearl - possible_options = [lambda state: state.has_Pearl()] + possible_options = [lambda state: state.has_Pearl(player)] # We will search entrances recursively until we find # one that leads to an exclusively light world region @@ -885,7 +890,7 @@ def set_bunny_rules(world): return options_to_access_rule(possible_options) # Add requirements for bunny-impassible caves if they occur in the dark world - for region in [world.get_region(name) for name in bunny_impassable_caves]: + for region in [world.get_region(name, player) for name in bunny_impassable_caves]: if not region.is_dark_world: continue @@ -893,13 +898,13 @@ def set_bunny_rules(world): for exit in region.exits: add_rule(exit, rule) - paradox_shop = world.get_region('Light World Death Mountain Shop') + paradox_shop = world.get_region('Light World Death Mountain Shop', player) if paradox_shop.is_dark_world: add_rule(paradox_shop.entrances[0], get_rule_to_add(paradox_shop)) # Add requirements for all locations that are actually in the dark world, except those available to the bunny for location in world.get_locations(): - if location.parent_region.is_dark_world: + if location.player == player and location.parent_region.is_dark_world: if location.name in bunny_accessible_locations: continue From 0b9e144f8e0155724c05ead9f25971dc8de9e3a7 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Tue, 9 Jul 2019 22:18:24 -0400 Subject: [PATCH 004/185] Minor fixes and clarifications for Bonta's Multiworld code --- BaseClasses.py | 15 +++++++-------- EntranceShuffle.py | 2 +- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 93612364..01f7168d 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -244,12 +244,11 @@ class World(object): return False - def has_beaten_game(self, state): - if all([state.has('Triforce', player) for player in range(1, self.players + 1)]): - return True - if self.goal in ['triforcehunt'] and all([((state.item_count('Triforce Piece', player) + state.item_count('Power Star', player)) > self.treasure_hunt_count) for player in range(1, self.players + 1)]): - return True - return False + def has_beaten_game(self, state, player=None): + if player: + return state.has('Triforce', player) or (self.goal in ['triforcehunt'] and (state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > self.treasure_hunt_count)) + else: + return all((self.has_beaten_game(state, p) for p in range(1, self.players + 1))) def can_beat_game(self, starting_state=None): if starting_state: @@ -410,7 +409,7 @@ class CollectionState(object): return self.bottle_count(player) > 0 def bottle_count(self, player): - return len([pritem for pritem in self.prog_items if pritem[0].startswith('Bottle') and pritem[1] == player]) + return len([item for (item, itemplayer) in self.prog_items if item.startswith('Bottle') and itemplayer == player]) def has_hearts(self, player, count): # Warning: This only considers items that are marked as advancement items @@ -641,7 +640,7 @@ class Region(object): is_dungeon_item = item.key or item.map or item.compass sewer_hack = self.world.mode == 'standard' and item.name == 'Small Key (Escape)' if sewer_hack or (is_dungeon_item and not self.world.keysanity): - return self.dungeon and self.dungeon.is_dungeon_item(item) and (item.player == self.player or self.world.keysanity) + return self.dungeon and self.dungeon.is_dungeon_item(item) and item.player == self.player return True diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 0265dae8..da460244 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -28,7 +28,7 @@ def link_entrances(world, player): for exitname, regionname in default_connections: connect_simple(world, exitname, regionname, player) - simple_shuffle_dungeons(world) + simple_shuffle_dungeons(world, player) elif world.shuffle == 'dungeonsfull': for exitname, regionname in default_connections: connect_simple(world, exitname, regionname, player) From 16abf033c31753603bd79f9f13f8a4af75399452 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 30 May 2019 01:10:16 +0200 Subject: [PATCH 005/185] Enemizer support --- .gitignore | 1 + EntranceRandomizer.py | 11 +++- Gui.py | 70 ++++++++++++++++++-- Main.py | 28 ++++++-- Rom.py | 145 ++++++++++++++++++++++++++++++++++++++++-- 5 files changed, 238 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 4ac9fd67..65c35fa8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ README.html .vs/ *multidata *multisave +EnemizerCLI/ diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 55bf1d58..da16e2a6 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -207,14 +207,19 @@ def start(): ''') parser.add_argument('--suppress_rom', help='Do not create an output rom file.', action='store_true') parser.add_argument('--gui', help='Launch the GUI', action='store_true') - # Deliberately not documented, only useful for vt site integration right now: - parser.add_argument('--shufflebosses', help=argparse.SUPPRESS, default='none', const='none', nargs='?', choices=['none', 'basic', 'normal', 'chaos']) parser.add_argument('--jsonout', action='store_true', help='''\ Output .json patch to stdout instead of a patched rom. Used for VT site integration, do not use otherwise. ''') - parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--skip_playthrough', action='store_true', default=False) + parser.add_argument('--enemizercli', default='') + parser.add_argument('--shufflebosses', default='none', choices=['none', 'basic', 'normal', 'chaos']) + parser.add_argument('--shuffleenemies', default=False, action='store_true') + parser.add_argument('--enemy_health', default='default', choices=['default', 'easy', 'normal', 'hard', 'expert']) + parser.add_argument('--enemy_damage', default='default', choices=['default', 'shuffled', 'chaos']) + parser.add_argument('--shufflepalette', default=False, action='store_true') + parser.add_argument('--shufflepots', default=False, action='store_true') + parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--outputpath') args = parser.parse_args() diff --git a/Gui.py b/Gui.py index 50f60756..be544aa8 100755 --- a/Gui.py +++ b/Gui.py @@ -5,7 +5,7 @@ import json import random import os import shutil -from tkinter import Checkbutton, OptionMenu, Toplevel, LabelFrame, PhotoImage, Tk, LEFT, RIGHT, BOTTOM, TOP, StringVar, IntVar, Frame, Label, W, E, X, Entry, Spinbox, Button, filedialog, messagebox, ttk +from tkinter import Checkbutton, OptionMenu, Toplevel, LabelFrame, PhotoImage, Tk, LEFT, RIGHT, BOTTOM, TOP, StringVar, IntVar, Frame, Label, W, E, X, BOTH, Entry, Spinbox, Button, filedialog, messagebox, ttk from urllib.parse import urlparse from urllib.request import urlopen @@ -242,12 +242,67 @@ def guiMain(args=None): heartcolorFrame.pack(expand=True, anchor=E) fastMenuFrame.pack(expand=True, anchor=E) - bottomFrame = Frame(randomizerWindow) + enemizerFrame = LabelFrame(randomizerWindow, text="Enemizer", padx=5, pady=5) + enemizerFrame.columnconfigure(0, weight=1) + enemizerFrame.columnconfigure(1, weight=1) + enemizerFrame.columnconfigure(2, weight=1) + + enemizerPathFrame = Frame(enemizerFrame) + enemizerPathFrame.grid(row=0, column=0, columnspan=3, sticky=W) + enemizerCLIlabel = Label(enemizerPathFrame, text="EnemizerCLI path: ") + enemizerCLIlabel.pack(side=LEFT) + enemizerCLIpathVar = StringVar() + enemizerCLIpathEntry = Entry(enemizerPathFrame, textvariable=enemizerCLIpathVar, width=80) + enemizerCLIpathEntry.pack(side=LEFT) + def EnemizerSelectPath(): + path = filedialog.askopenfilename(filetypes=[("EnemizerCLI executable", "*EnemizerCLI*")]) + if path: + enemizerCLIpathVar.set(path) + enemizerCLIbrowseButton = Button(enemizerPathFrame, text='...', command=EnemizerSelectPath) + enemizerCLIbrowseButton.pack(side=LEFT) + + enemyShuffleVar = IntVar() + enemyShuffleButton = Checkbutton(enemizerFrame, text="Enemy shuffle", variable=enemyShuffleVar) + enemyShuffleButton.grid(row=1, column=0) + paletteShuffleVar = IntVar() + paletteShuffleButton = Checkbutton(enemizerFrame, text="Palette shuffle", variable=paletteShuffleVar) + paletteShuffleButton.grid(row=1, column=1) + potShuffleVar = IntVar() + potShuffleButton = Checkbutton(enemizerFrame, text="Pot shuffle", variable=potShuffleVar) + potShuffleButton.grid(row=1, column=2) + + enemizerBossFrame = Frame(enemizerFrame) + enemizerBossFrame.grid(row=2, column=0) + enemizerBossLabel = Label(enemizerBossFrame, text='Boss shuffle') + enemizerBossLabel.pack(side=LEFT) + enemizerBossVar = StringVar() + enemizerBossVar.set('none') + enemizerBossOption = OptionMenu(enemizerBossFrame, enemizerBossVar, 'none', 'basic', 'normal', 'chaos') + enemizerBossOption.pack(side=LEFT) + + enemizerDamageFrame = Frame(enemizerFrame) + enemizerDamageFrame.grid(row=2, column=1) + enemizerDamageLabel = Label(enemizerDamageFrame, text='Enemy damage') + enemizerDamageLabel.pack(side=LEFT) + enemizerDamageVar = StringVar() + enemizerDamageVar.set('default') + enemizerDamageOption = OptionMenu(enemizerDamageFrame, enemizerDamageVar, 'default', 'shuffled', 'chaos') + enemizerDamageOption.pack(side=LEFT) + + enemizerHealthFrame = Frame(enemizerFrame) + enemizerHealthFrame.grid(row=2, column=2) + enemizerHealthLabel = Label(enemizerHealthFrame, text='Enemy health') + enemizerHealthLabel.pack(side=LEFT) + enemizerHealthVar = StringVar() + enemizerHealthVar.set('default') + enemizerHealthOption = OptionMenu(enemizerHealthFrame, enemizerHealthVar, 'default', 'easy', 'normal', 'hard', 'expert') + enemizerHealthOption.pack(side=LEFT) + + bottomFrame = Frame(randomizerWindow, pady=5) worldLabel = Label(bottomFrame, text='Worlds') worldVar = StringVar() worldSpinbox = Spinbox(bottomFrame, from_=1, to=100, width=5, textvariable=worldVar) - seedLabel = Label(bottomFrame, text='Seed #') seedVar = StringVar() seedEntry = Entry(bottomFrame, width=15, textvariable=seedVar) @@ -281,6 +336,13 @@ def guiMain(args=None): guiargs.disablemusic = bool(disableMusicVar.get()) guiargs.shuffleganon = bool(shuffleGanonVar.get()) guiargs.hints = bool(hintsVar.get()) + guiargs.enemizercli = enemizerCLIpathVar.get() + guiargs.shufflebosses = enemizerBossVar.get() + guiargs.shuffleenemies = bool(enemyShuffleVar.get()) + guiargs.enemy_health = enemizerHealthVar.get() + guiargs.enemy_damage = enemizerDamageVar.get() + guiargs.shufflepalette = bool(paletteShuffleVar.get()) + guiargs.shufflepots = bool(potShuffleVar.get()) guiargs.custom = bool(customVar.get()) guiargs.customitemarray = [int(bowVar.get()), int(silverarrowVar.get()), int(boomerangVar.get()), int(magicboomerangVar.get()), int(hookshotVar.get()), int(mushroomVar.get()), int(magicpowderVar.get()), int(firerodVar.get()), int(icerodVar.get()), int(bombosVar.get()), int(etherVar.get()), int(quakeVar.get()), int(lampVar.get()), int(hammerVar.get()), int(shovelVar.get()), int(fluteVar.get()), int(bugnetVar.get()), @@ -291,7 +353,6 @@ def guiMain(args=None): int(arrow1Var.get()), int(arrow10Var.get()), int(bomb1Var.get()), int(bomb3Var.get()), int(rupee1Var.get()), int(rupee5Var.get()), int(rupee20Var.get()), int(rupee50Var.get()), int(rupee100Var.get()), int(rupee300Var.get()), int(rupoorVar.get()), int(blueclockVar.get()), int(greenclockVar.get()), int(redclockVar.get()), int(triforcepieceVar.get()), int(triforcecountVar.get()), int(triforceVar.get()), int(rupoorcostVar.get()), int(universalkeyVar.get())] - guiargs.shufflebosses = None guiargs.rom = romVar.get() guiargs.jsonout = None guiargs.sprite = sprite @@ -326,6 +387,7 @@ def guiMain(args=None): rightHalfFrame.pack(side=RIGHT) topFrame.pack(side=TOP) bottomFrame.pack(side=BOTTOM) + enemizerFrame.pack(side=BOTTOM, fill=BOTH) # Adjuster Controls diff --git a/Main.py b/Main.py index 413c1a0e..fe06a64d 100644 --- a/Main.py +++ b/Main.py @@ -3,13 +3,14 @@ import copy from itertools import zip_longest import json import logging +import os import random import time from BaseClasses import World, CollectionState, Item, Region, Location, Shop from Regions import create_regions, mark_light_world_regions from EntranceShuffle import link_entrances -from Rom import patch_rom, Sprite, LocalRom, JsonRom +from Rom import patch_rom, get_enemizer_patch, apply_rom_settings, Sprite, LocalRom, JsonRom 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 @@ -124,6 +125,8 @@ def main(args, seed=None): outfilebase = 'ER_%s_%s-%s-%s%s_%s-%s%s%s%s%s_%s' % (world.logic, world.difficulty, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "", world.seed) + use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) + jsonout = {} if not args.suppress_rom: if world.players > 1: @@ -131,17 +134,32 @@ def main(args, seed=None): else: player = 1 + local_rom = None if args.jsonout: rom = JsonRom() else: - rom = LocalRom(args.rom) - patch_rom(world, player, rom, bytearray(logic_hash), args.heartbeep, args.heartcolor, sprite, player_names) + if use_enemizer: + local_rom = LocalRom(args.rom) + rom = JsonRom() + else: + rom = LocalRom(args.rom) + + patch_rom(world, player, rom, bytearray(logic_hash)) + + enemizer_patch = [] + if use_enemizer: + enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shuffleenemies, args.enemy_health, args.enemy_damage, args.shufflepalette, args.shufflepots) if args.jsonout: jsonout['patch'] = rom.patches - + if use_enemizer: + jsonout['enemizer' % player] = enemizer_patch else: - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) + if use_enemizer: + local_rom.patch_enemizer(rom.patches, os.path.join(os.path.dirname(args.enemizercli), "enemizerBasePatch.json"), enemizer_patch) + rom = local_rom + + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite) rom.write_to_file(output_path('%s.sfc' % outfilebase)) if args.create_spoiler and not args.jsonout: diff --git a/Rom.py b/Rom.py index c439f07d..61105b5b 100644 --- a/Rom.py +++ b/Rom.py @@ -4,6 +4,7 @@ import hashlib import logging import os import struct +import subprocess import random from BaseClasses import ShopType, Region, Location, Item @@ -11,7 +12,7 @@ from Dungeons import dungeon_music_addresses from Text import MultiByteTextMapper, 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 -from Utils import local_path, int16_as_bytes, int32_as_bytes +from Utils import output_path, local_path, int16_as_bytes, int32_as_bytes from Items import ItemFactory, item_table @@ -84,7 +85,7 @@ class LocalRom(object): logging.getLogger('').warning('Supplied Base Rom does not match known MD5 for JAP(1.0) release. Will try to patch anyway.') # extend to 2MB - self.buffer.extend(bytearray([0x00] * (2097152 - len(self.buffer)))) + self.buffer.extend(bytearray([0x00] * (0x200000 - len(self.buffer)))) # load randomizer patches with open(local_path('data/base2current.json'), 'r') as stream: @@ -100,6 +101,24 @@ 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 patch_enemizer(self, rando_patch, base_enemizer_patch_path, enemizer_patch): + # extend to 4MB + self.buffer.extend(bytearray([0x00] * (0x400000 - len(self.buffer)))) + + # apply randomizer patches + for address, values in rando_patch.items(): + self.write_bytes(int(address), values) + + # load base enemizer patches + with open(base_enemizer_patch_path, 'r') as f: + base_enemizer_patch = json.load(f) + for patch in base_enemizer_patch: + self.write_bytes(patch["address"], patch["patchData"]) + + # apply enemizer patches + for patch in enemizer_patch: + self.write_bytes(patch["address"], patch["patchData"]) + def write_crc(self): crc = (sum(self.buffer[:0x7FDC] + self.buffer[0x7FE0:]) + 0x01FE) & 0xFFFF inv = crc ^ 0xFFFF @@ -117,6 +136,124 @@ def read_rom(stream): buffer = buffer[0x200:] return buffer +def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleenemies, enemy_health, enemy_damage, shufflepalette, shufflepots): + baserom_path = os.path.abspath(baserom_path) + basepatch_path = os.path.abspath(local_path('data/base2current.json')) + randopatch_path = os.path.abspath(output_path('enemizer_randopatch.json')) + options_path = os.path.abspath(output_path('enemizer_options.json')) + enemizer_output_path = os.path.abspath(output_path('enemizer_output.json')) + + # write options file for enemizer + options = { + 'RandomizeEnemies': shuffleenemies, + 'RandomizeEnemiesType': 3, + 'RandomizeBushEnemyChance': True, + 'RandomizeEnemyHealthRange': enemy_health != 'default', + 'RandomizeEnemyHealthType': {'default': 0, 'easy': 0, 'normal': 1, 'hard': 2, 'expert': 3}[enemy_health], + 'OHKO': False, + 'RandomizeEnemyDamage': enemy_damage != 'default', + 'AllowEnemyZeroDamage': True, + 'ShuffleEnemyDamageGroups': enemy_damage != 'default', + 'EnemyDamageChaosMode': enemy_damage == 'chaos', + 'EasyModeEscape': False, + 'EnemiesAbsorbable': False, + 'AbsorbableSpawnRate': 10, + 'AbsorbableTypes': { + 'FullMagic': True, 'SmallMagic': True, 'Bomb_1': True, 'BlueRupee': True, 'Heart': True, 'BigKey': True, 'Key': True, + 'Fairy': True, 'Arrow_10': True, 'Arrow_5': True, 'Bomb_8': True, 'Bomb_4': True, 'GreenRupee': True, 'RedRupee': True + }, + 'BossMadness': False, + 'RandomizeBosses': True, + 'RandomizeBossesType': 0, + 'RandomizeBossHealth': False, + 'RandomizeBossHealthMinAmount': 0, + 'RandomizeBossHealthMaxAmount': 300, + 'RandomizeBossDamage': False, + 'RandomizeBossDamageMinAmount': 0, + 'RandomizeBossDamageMaxAmount': 200, + 'RandomizeBossBehavior': False, + 'RandomizeDungeonPalettes': shufflepalette, + 'SetBlackoutMode': False, + 'RandomizeOverworldPalettes': shufflepalette, + 'RandomizeSpritePalettes': shufflepalette, + 'SetAdvancedSpritePalettes': False, + 'PukeMode': False, + 'NegativeMode': False, + 'GrayscaleMode': False, + 'GenerateSpoilers': False, + 'RandomizeLinkSpritePalette': False, + 'RandomizePots': shufflepots, + 'ShuffleMusic': False, + 'BootlegMagic': True, + 'CustomBosses': False, + 'AndyMode': False, + 'HeartBeepSpeed': 0, + 'AlternateGfx': False, + 'ShieldGraphics': "shield_gfx/normal.gfx", + 'SwordGraphics': "sword_gfx/normal.gfx", + 'BeeMizer': False, + 'BeesLevel': 0, + 'RandomizeTileTrapPattern': True, + 'RandomizeTileTrapFloorTile': False, + 'AllowKillableThief': shuffleenemies, + 'RandomizeSpriteOnHit': False, + 'DebugMode': False, + 'DebugForceEnemy': False, + 'DebugForceEnemyId': 0, + 'DebugForceBoss': False, + 'DebugForceBossId': 0, + 'DebugOpenShutterDoors': False, + 'DebugForceEnemyDamageZero': False, + 'DebugShowRoomIdInRupeeCounter': False, + 'UseManualBosses': True, + 'ManualBosses': { + 'EasternPalace': world.get_dungeon("Eastern Palace", player).boss.enemizer_name, + 'DesertPalace': world.get_dungeon("Desert Palace", player).boss.enemizer_name, + 'TowerOfHera': world.get_dungeon("Tower of Hera", player).boss.enemizer_name, + 'AgahnimsTower': 'Agahnim', + 'PalaceOfDarkness': world.get_dungeon("Palace of Darkness", player).boss.enemizer_name, + 'SwampPalace': world.get_dungeon("Swamp Palace", player).boss.enemizer_name, + 'SkullWoods': world.get_dungeon("Skull Woods", player).boss.enemizer_name, + 'ThievesTown': world.get_dungeon("Thieves Town", player).boss.enemizer_name, + 'IcePalace': world.get_dungeon("Ice Palace", player).boss.enemizer_name, + 'MiseryMire': world.get_dungeon("Misery Mire", player).boss.enemizer_name, + 'TurtleRock': world.get_dungeon("Turtle Rock", player).boss.enemizer_name, + 'GanonsTower1': world.get_dungeon('Ganons Tower', player).bosses['bottom'].enemizer_name, + 'GanonsTower2': world.get_dungeon('Ganons Tower', player).bosses['middle'].enemizer_name, + 'GanonsTower3': world.get_dungeon('Ganons Tower', player).bosses['top'].enemizer_name, + 'GanonsTower4': 'Agahnim2', + 'Ganon': 'Ganon', + } + } + + rom.write_to_file(randopatch_path) + + 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) + + with open(enemizer_output_path, 'r') as f: + ret = json.load(f) + + if os.path.exists(randopatch_path): + os.remove(randopatch_path) + + if os.path.exists(options_path): + os.remove(options_path) + + if os.path.exists(enemizer_output_path): + os.remove(enemizer_output_path) + + return ret + class Sprite(object): default_palette = [255, 127, 126, 35, 183, 17, 158, 54, 165, 20, 255, 1, 120, 16, 157, 89, 71, 54, 104, 59, 74, 10, 239, 18, 92, 42, 113, 21, 24, 122, @@ -275,7 +412,7 @@ class Sprite(object): # split into palettes of 15 colors return array_chunk(palette_as_colors, 15) -def patch_rom(world, player, rom, hashtable, beep='normal', color='red', sprite=None): +def patch_rom(world, player, rom, hashtable): random.seed(world.rom_seeds[player]) # patch items for location in world.get_locations(): @@ -852,8 +989,6 @@ def patch_rom(world, player, rom, hashtable, beep='normal', color='red', sprite= ] rom.write_bytes(0x180215, code) - apply_rom_settings(rom, beep, color, world.quickswap, world.fastmenu, world.disable_music, sprite) - return rom def write_custom_shops(rom, world, player): From ea07c3d9c0ff5b6820feab0a1d03a7adc01ae023 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 18 May 2019 16:10:52 +0200 Subject: [PATCH 006/185] Update sprites --- .../{toadette.1.zspr => Toadette.2.zspr} | Bin 28869 -> 28869 bytes data/sprites/official/abigail.1.zspr | Bin 0 -> 28883 bytes data/sprites/official/alice.1.zspr | Bin 0 -> 28861 bytes data/sprites/official/bandit.1.zspr | Bin 0 -> 28863 bytes data/sprites/official/batman.1.zspr | Bin 0 -> 28869 bytes data/sprites/official/birb.1.zspr | Bin 0 -> 28866 bytes data/sprites/official/blackmage.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/blossom.1.zspr | Bin 0 -> 28865 bytes data/sprites/official/bottle_o_goo.1.zspr | Bin 0 -> 28895 bytes data/sprites/official/bowser.1.zspr | Bin 0 -> 28863 bytes data/sprites/official/branch.1.zspr | Bin 0 -> 28863 bytes data/sprites/official/bubbles.1.zspr | Bin 0 -> 28865 bytes data/sprites/official/bullet_bill.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/buttercup.1.zspr | Bin 0 -> 28869 bytes data/sprites/official/clyde.1.zspr | Bin 0 -> 28861 bytes data/sprites/official/cucco.1.zspr | Bin 0 -> 28879 bytes data/sprites/official/drake.1.zspr | Bin 0 -> 28916 bytes data/sprites/official/ezlo.1.zspr | Bin 0 -> 28859 bytes data/sprites/official/finny_bear.1.zspr | Bin 0 -> 28874 bytes data/sprites/official/fish_floodgate.1.zspr | Bin 0 -> 28888 bytes data/sprites/official/frisk.1.zspr | Bin 0 -> 28944 bytes data/sprites/official/gamer.1.zspr | Bin 0 -> 28871 bytes data/sprites/official/garnet.1.zspr | Bin 0 -> 28863 bytes data/sprites/official/garomaster.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/gobli.1.zspr | Bin 0 -> 28858 bytes ...randpoobear.1.zspr => grandpoobear.2.zspr} | Bin 28898 -> 28896 bytes data/sprites/official/hardhat_beetle.1.zspr | Bin 0 -> 28879 bytes data/sprites/official/hello_kitty.1.zspr | Bin 0 -> 28867 bytes data/sprites/official/hint_tile.1.zspr | Bin 0 -> 28878 bytes data/sprites/official/ibazly.1.zspr | Bin 0 -> 28854 bytes data/sprites/official/informant_woman.1.zspr | Bin 0 -> 28881 bytes data/sprites/official/jason_frudnick.1.zspr | Bin 0 -> 28879 bytes data/sprites/official/kenny_mccormick.1.zspr | Bin 0 -> 28881 bytes data/sprites/official/king_gothalion.1.zspr | Bin 0 -> 28885 bytes data/sprites/official/lily.1.zspr | Bin 0 -> 28870 bytes data/sprites/official/locke_merchant.1.zspr | Bin 0 -> 28881 bytes data/sprites/official/lucario.1.zspr | Bin 0 -> 28856 bytes data/sprites/official/marin.1.zspr | Bin 0 -> 28885 bytes data/sprites/official/mario_tanooki.1.zspr | Bin 0 -> 28902 bytes data/sprites/official/medallions.1.zspr | Bin 0 -> 28892 bytes data/sprites/official/medli.1.zspr | Bin 0 -> 28864 bytes data/sprites/official/mikejones.1.zspr | Bin 0 -> 28881 bytes data/sprites/official/minish_link.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/moosh.1.zspr | Bin 0 -> 28870 bytes data/sprites/official/nia.1.zspr | Bin 0 -> 28857 bytes data/sprites/official/paula.1.zspr | Bin 0 -> 28879 bytes data/sprites/official/peach.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/pete.1.zspr | Bin 0 -> 28886 bytes data/sprites/official/poppy.1.zspr | Bin 0 -> 28861 bytes data/sprites/official/powerpuff_girl.1.zspr | Bin 0 -> 28879 bytes .../{pridelink.1.zspr => pridelink.2.zspr} | Bin 28894 -> 28892 bytes data/sprites/official/primm.1.zspr | Bin 0 -> 28861 bytes data/sprites/official/rick.1.zspr | Bin 0 -> 28930 bytes data/sprites/official/rocko.1.zspr | Bin 0 -> 28866 bytes data/sprites/official/rottytops.1.zspr | Bin 0 -> 28878 bytes data/sprites/official/samus_classic.1.zspr | Bin 0 -> 28899 bytes data/sprites/official/sevens1ns.1.zspr | Bin 0 -> 28863 bytes data/sprites/official/shadow.1.zspr | Bin 0 -> 28869 bytes data/sprites/official/solaire.1.zspr | Bin 0 -> 28882 bytes data/sprites/official/sora_kh1.1.zspr | Bin 0 -> 28882 bytes data/sprites/official/stalfos.1.zspr | Bin 0 -> 28865 bytes data/sprites/official/stick_man.1.zspr | Bin 0 -> 28872 bytes data/sprites/official/superbomb.1.zspr | Bin 0 -> 28877 bytes data/sprites/official/tetra.1.zspr | Bin 0 -> 28877 bytes data/sprites/official/toadette_captain.1.zspr | Bin 0 -> 28885 bytes data/sprites/official/two_faced.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/wario.1.zspr | Bin 0 -> 28861 bytes data/sprites/official/yoshi.1.zspr | Bin 0 -> 28861 bytes data/sprites/official/zebraunicorn.1.zspr | Bin 0 -> 28883 bytes 69 files changed, 0 insertions(+), 0 deletions(-) rename data/sprites/official/{toadette.1.zspr => Toadette.2.zspr} (98%) create mode 100644 data/sprites/official/abigail.1.zspr create mode 100644 data/sprites/official/alice.1.zspr create mode 100644 data/sprites/official/bandit.1.zspr create mode 100644 data/sprites/official/batman.1.zspr create mode 100644 data/sprites/official/birb.1.zspr create mode 100644 data/sprites/official/blackmage.1.zspr create mode 100644 data/sprites/official/blossom.1.zspr create mode 100644 data/sprites/official/bottle_o_goo.1.zspr create mode 100644 data/sprites/official/bowser.1.zspr create mode 100644 data/sprites/official/branch.1.zspr create mode 100644 data/sprites/official/bubbles.1.zspr create mode 100644 data/sprites/official/bullet_bill.1.zspr create mode 100644 data/sprites/official/buttercup.1.zspr create mode 100644 data/sprites/official/clyde.1.zspr create mode 100644 data/sprites/official/cucco.1.zspr create mode 100644 data/sprites/official/drake.1.zspr create mode 100644 data/sprites/official/ezlo.1.zspr create mode 100644 data/sprites/official/finny_bear.1.zspr create mode 100644 data/sprites/official/fish_floodgate.1.zspr create mode 100644 data/sprites/official/frisk.1.zspr create mode 100644 data/sprites/official/gamer.1.zspr create mode 100644 data/sprites/official/garnet.1.zspr create mode 100644 data/sprites/official/garomaster.1.zspr create mode 100644 data/sprites/official/gobli.1.zspr rename data/sprites/official/{grandpoobear.1.zspr => grandpoobear.2.zspr} (99%) create mode 100644 data/sprites/official/hardhat_beetle.1.zspr create mode 100644 data/sprites/official/hello_kitty.1.zspr create mode 100644 data/sprites/official/hint_tile.1.zspr create mode 100644 data/sprites/official/ibazly.1.zspr create mode 100644 data/sprites/official/informant_woman.1.zspr create mode 100644 data/sprites/official/jason_frudnick.1.zspr create mode 100644 data/sprites/official/kenny_mccormick.1.zspr create mode 100644 data/sprites/official/king_gothalion.1.zspr create mode 100644 data/sprites/official/lily.1.zspr create mode 100644 data/sprites/official/locke_merchant.1.zspr create mode 100644 data/sprites/official/lucario.1.zspr create mode 100644 data/sprites/official/marin.1.zspr create mode 100644 data/sprites/official/mario_tanooki.1.zspr create mode 100644 data/sprites/official/medallions.1.zspr create mode 100644 data/sprites/official/medli.1.zspr create mode 100644 data/sprites/official/mikejones.1.zspr create mode 100644 data/sprites/official/minish_link.1.zspr create mode 100644 data/sprites/official/moosh.1.zspr create mode 100644 data/sprites/official/nia.1.zspr create mode 100644 data/sprites/official/paula.1.zspr create mode 100644 data/sprites/official/peach.1.zspr create mode 100644 data/sprites/official/pete.1.zspr create mode 100644 data/sprites/official/poppy.1.zspr create mode 100644 data/sprites/official/powerpuff_girl.1.zspr rename data/sprites/official/{pridelink.1.zspr => pridelink.2.zspr} (98%) create mode 100644 data/sprites/official/primm.1.zspr create mode 100644 data/sprites/official/rick.1.zspr create mode 100644 data/sprites/official/rocko.1.zspr create mode 100644 data/sprites/official/rottytops.1.zspr create mode 100644 data/sprites/official/samus_classic.1.zspr create mode 100644 data/sprites/official/sevens1ns.1.zspr create mode 100644 data/sprites/official/shadow.1.zspr create mode 100644 data/sprites/official/solaire.1.zspr create mode 100644 data/sprites/official/sora_kh1.1.zspr create mode 100644 data/sprites/official/stalfos.1.zspr create mode 100644 data/sprites/official/stick_man.1.zspr create mode 100644 data/sprites/official/superbomb.1.zspr create mode 100644 data/sprites/official/tetra.1.zspr create mode 100644 data/sprites/official/toadette_captain.1.zspr create mode 100644 data/sprites/official/two_faced.1.zspr create mode 100644 data/sprites/official/wario.1.zspr create mode 100644 data/sprites/official/yoshi.1.zspr create mode 100644 data/sprites/official/zebraunicorn.1.zspr diff --git a/data/sprites/official/toadette.1.zspr b/data/sprites/official/Toadette.2.zspr similarity index 98% rename from data/sprites/official/toadette.1.zspr rename to data/sprites/official/Toadette.2.zspr index f503b383f26de35076c1202170f34046d6a4fb40..8c6498b2d7b89016432a6501fe835bea4fcb8ac5 100644 GIT binary patch delta 141 zcmX^5kn!k4M$V|@>mhX4BU%Er7#ydXXc!!HKT z59X)*CcJ5Y@c%LV|Md6NxeY!WHlH*-z-V5_P^(mJV9x;74pfrI7|G b!|+e$lYp6k3{bwLV~WF^grv;}%vmh~5d$gY delta 141 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/alice.1.zspr b/data/sprites/official/alice.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..4c673acd710584e78af762b56b97a3e02c831af2 GIT binary patch literal 28861 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 l*X38Q{Ogw$ literal 0 HcmV?d00001 diff --git a/data/sprites/official/batman.1.zspr b/data/sprites/official/batman.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..a4a1e9c0eff79c3552d1bc0972a40efdd577ab62 GIT binary patch literal 28869 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 P{nE|eyCAr~bM^lO*?D#1 literal 0 HcmV?d00001 diff --git a/data/sprites/official/birb.1.zspr b/data/sprites/official/birb.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..d6d86bb68857a153e89335a3ad59290decfeab9b GIT binary patch literal 28866 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

5$|M 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/bubbles.1.zspr b/data/sprites/official/bubbles.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..bbba3b7546c073a27096393efec2a04fbfdc1b17 GIT binary patch literal 28865 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 ICG#WuKXbC>IRF3v literal 0 HcmV?d00001 diff --git a/data/sprites/official/clyde.1.zspr b/data/sprites/official/clyde.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..b590a2ef919bd3542ccb082ba24f2ab8bcba0e3c GIT binary patch literal 28861 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/cucco.1.zspr b/data/sprites/official/cucco.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..f237de4ab0a7c248cb387cdee4ca78a76ef4b41a GIT binary patch literal 28879 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 F{|nmGI9mV! literal 0 HcmV?d00001 diff --git a/data/sprites/official/drake.1.zspr b/data/sprites/official/drake.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..1be94a75671672319036a88d9bcc71ffea095566 GIT binary patch literal 28916 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/finny_bear.1.zspr b/data/sprites/official/finny_bear.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..9c3a530b10b6f2db63934d9d51d9ec5ab389605c GIT binary patch literal 28874 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/fish_floodgate.1.zspr b/data/sprites/official/fish_floodgate.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..86684e7d8e59f891ce91d55e432b8dbcddca227e GIT binary patch literal 28888 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/frisk.1.zspr b/data/sprites/official/frisk.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..d521cae3910f02e3f887d5d5e3c7a6eaf0e76ec7 GIT binary patch literal 28944 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 ZacFnAJ@mHj>kRAn1|BSwrVdRV`akmB;LZR5 literal 0 HcmV?d00001 diff --git a/data/sprites/official/garomaster.1.zspr b/data/sprites/official/garomaster.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..65b9959d479864f4f253521c7adf9f9aad7e4f0d GIT binary patch literal 28873 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

SfDd@5#YK52;}DwjO@w_Ax1k^-HYOv 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/grandpoobear.1.zspr b/data/sprites/official/grandpoobear.2.zspr similarity index 99% rename from data/sprites/official/grandpoobear.1.zspr rename to data/sprites/official/grandpoobear.2.zspr index 857265f9ace47aa91a641c15aeec6f87d96e4a1b..726636803443b554f9fbd93f441b8c5306faea94 100644 GIT binary patch delta 58 zcmaF#knzDoMuDi{fFQ<$J$A(@3_wtjGEqQXx`3gGA)ldwA(J5&h)WnM8H$1YQieQ+ Jl#L;M1pp)n5g`Bo delta 60 zcmaFxknzz&MuDi{fFQ=^o|@t`1|TR%n<$_z>&lSJkjbFH5WtYgP{NSPP{feOkk3#I NWEU~yZw%@y001z!5aR#< diff --git a/data/sprites/official/hardhat_beetle.1.zspr b/data/sprites/official/hardhat_beetle.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..80b63af16f7b8bd582d7809a6e42f511cb16a6fe GIT binary patch literal 28879 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 E0PEv%Pyhe` literal 0 HcmV?d00001 diff --git a/data/sprites/official/hello_kitty.1.zspr b/data/sprites/official/hello_kitty.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..a2f5df063ab2bc88941773921deff8fd073ed7e2 GIT binary patch literal 28867 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 V>RnRu@xS+LzW>G7@A&oF{{!-ug9iWr literal 0 HcmV?d00001 diff --git a/data/sprites/official/hint_tile.1.zspr b/data/sprites/official/hint_tile.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..9cfd7e90ce26df62fc738c35db0875c43893282a GIT binary patch literal 28878 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/ibazly.1.zspr b/data/sprites/official/ibazly.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..01114c9e01e92ffd46eb3528eb43c62064dad80e GIT binary patch literal 28854 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/informant_woman.1.zspr b/data/sprites/official/informant_woman.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..6465a0e9f32e95f365c44bce137586c13df6b8e5 GIT binary patch literal 28881 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/jason_frudnick.1.zspr b/data/sprites/official/jason_frudnick.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..2411759c2afc6671250d5baef416dfc12432b010 GIT binary patch literal 28879 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/kenny_mccormick.1.zspr b/data/sprites/official/kenny_mccormick.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..c66a74a586789717bf08d01a989711344c4ac184 GIT binary patch literal 28881 zcmeHw5112GmhVYYT?tK*6irK4(;+FafmRs_4PwMLDUbmiQF>in8<&AnK^S$0fQ|-i zNfvvt-+PR(j&G(#M|ym&j)g3;GyACqn$11armG)a#OFqWsiOxi1HDKtx zbL!@%ZZ&@*9lz)Jy?3j-lT)|uy;Zl)J@=g7IrsK0f82S4=a#L1nYsxurEW?Abc2V! zW4abr!gugk4?0{2x5L%22G+s1;am9qF3g{U)V;78ueue!OZ2*XSFgO4zWG4$H3g=s zap=^sN}ExqHoYw@|FD1BDJZ;gcWk{qBpeH zH9u&6Jvt}3AhEUk@pNC>f&slT;O&`gj&8q8`&hF;v!ueN;-T)35|2lkBUFBxx)fX9 zX%t`(Sb1tWo1ufs9}moyf>7u6LkL)TZ_!)y4ASvMv|r2pkCfJp`th>PX-0e2yaN{N zBVnEQ#}hi$>tF}0*E``UvwfeEZ}`CTh)=prIwn0Owa1h|gSr+z^KOTFd|s#j_G^1x z{kJ2%!_|KywK1;#I}tfy_utv?f4i&v>HWVXvL2S}NtmWK1r)yz-!An$y?Zqj@FOe0 zDSXW*bIZ-yN%t(a{YlR9T8+cU~k>N z3!5&%Deo!oN$Ksw9cjvEZ=K%1WYe{_Uu*fruo&)utobuz0Q@>cQ#j7n!wz$6>ftmb zA$kmsVZKNHp0@=o2?{~D9-e{|@<+jUBT$6G8<9u4IU$yyj>9 zf9ve|slS?cW4ZsEBR@+V>i&oBc`s-d)yPw0V6-w`;uL@yqJz^4yfklJ>n_!yXYG@V zQi0RWaB1U}fwmExW)eh?60JZ)TGw;Hd@iKM8S#V+4`oH#8}L3C|H$@8@D{xIJt3_?~3RMh}!R(#{L960)9rvx2f4}xs;Uy z{J});Y#Sa%meGqY`nJD4nGE~ZC6jk0R^YDb{b|m07?aJE@kQ(*>GZZ;nQT z9+WkdsC7>?93ojnN!!0uXr0;@TLsLv zwMs1MGUveM)8g0}PjcS&cqWmBv70xqdw7Qw8}$(#I<)&{iHF3NY#8jQ?88 z(_JVaw2w5&AUaP;hLHEgxp&4GMf6B{#%nbGoHYFM2H=1)voXzJwGnNZ*%a7woYR8r ze6_!M!~Dc>pWn@W0B-IBaC0AkoBL|#-!^sPXkCrFjKr zUV{dh&@jWJm1Pid9kmZ-8T6R8S`9z}rC!dKfHddOp_V0J_3~Oui#?a;PeA44c<}No zVS;*v+7#jvjB8(9f<2o3pWC*)fW59ViA9=ExDdu#7+vf0bN*qUrklhW)P3UY{Ac

%ymYKA)p_ZP{3(|f&^B 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/lily.1.zspr b/data/sprites/official/lily.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..5cb5d2aa9ac2da8f1879c390a10f68c631e5766c GIT binary patch literal 28870 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 CUKE)C literal 0 HcmV?d00001 diff --git a/data/sprites/official/locke_merchant.1.zspr b/data/sprites/official/locke_merchant.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..bfd87c7da6560cd1cbbe2d9f05576676e3f3cb16 GIT binary patch literal 28881 zcmdUY4|r77nfE(?n7K(NnaL!Ofee`e0z`<+04W(@AY+RXgq2jS(#lFyD%pZEDqEsP zGV8K6{bX&5Y>i(L^HFw7YrD-_s#GaXTh?dv$#$cQ8kMEDZpzNm2qQ)uHBG+Xd(S;{ z@5HWYrO$Rf^CX$yJ@@>%=braH@4s{Mg{zvbw5+=9i64KCkm8?<6Sa|rzaw2ne?gn* z2D+WLQjq?PzKCx(Q46lzO52cs3Gg=HFXGByGQNFV%NK9pZ$vhlV0GH8mI>s{VLM|h z<6-)8_MTI3R^8k7AGAEl*pZ!l>Q}&*9A)gJ0%xFTsefJ|81UeJCn?VIq8a`mV>gjX zooXtxH$CL5ODV`#$)hTn^7H`XjJf=bfCml!_vH_z6!oLZf4ug&#mUZ4<+936XI-?SAhBXLp&fT z-`CyRXZIabh8O}jb=UOSv-a$eVs6{xtib>nZF}4`73Q`TwHyOrw9TW)^<7B&MUIIj z1r7|mo(deLdHBn{`%{ni9f~#T`EydsQ}dEXa`+-o$P@KOC(ZMgX?N6AggkS-bG;XP z1m2?zDbdDg%eKapmS3J8QjRwsZ#<+39Q4hroL5;X$^9`i%Wu+r9eTv3qEV_ugU!Zm?6 z%>G5Z_x9_97u%gy8}io$?~mVq`{#pmX#(hq=>35^N)}#mm;F#sjU|Dn*k34l;fnuj zKTh4m_+n4H=cxBFPfxHJh^V$~tLOVozwz{uz=xC(<(|e@3X7}`Ex#^xUinesOG+^b ze4*`YmEsq80OpY~511!7EDoK$*y(*b4a(2zx7%riei2^N)7ZloEMz4+KH`ZrY_Z$y zwh7vZ5DifwJ*AcI(8>={Nv0&z8;&F+NppESS+(|1pH`lE5a)CG_vr||fseo?nO}sz z*YrUAfw*=79B&JKfcu^l5O_`auiHAec5W3H?6in}Ng?{ao^PiGuAeS1IA3u7k5N8O zgY-1*rHAM*v;mCMuK4}i`a&6Zi-uiV>-BUa9Y}I}F0}r_ywWpEjzx96l-AQIy-Nr6 z`xm;JLfrdBnig#(ZxoqCzQXOX~ zl^ITt^u8apYcDXP&Ef^UKLd8)-8r;(Z@2M$by#ee1O;#TTF>!NLb1fSZ0)(!k5eHP{A z-9#DpXVH5Dr%6Hi){HEnWRy%6?@wYsE%Jq?gr>~%O;id{e|gcY$uoV`zS%mq(_Qx0 z>{Iqsb=Cz{v(@PK-H4={mfnQQD68Ch%3Yom=}taks!sI}M<~L9E=I zzlfe&#Iw(p5g1%ctKr=o{nZlJ(7Cl|E#J>2xQ5fHK_sIF{Q~|tK^Kz@2+XUfaUqL- zo-iOrrMiE`VdDaGAvx>#s^B6rpE+0^h)9gU)O5)<6L|y``N^ z8U;xD^QdV^o#?qvZ!G)q43_lgB`?2c{0@1lEEZ6X2eXcU&n;)1#aP4=%~%ap3actb zlEGvw5yWqnBUNy&30nC%kV7WpS(*QE`8g8>UPo~XCj0O^Lq1SVV^0`mJ*r3L@z0D~ z{!ZGFSANEcDs^mm$V?>LpJ1I}Wf@AgpT&C$;wPiGU(**x&ok5)6zxx6wD_?o5nS%>2z*|G2cz8Kdsl-saVHqO{M+1)`X}V*T@}0zY3@ zaK89lVMbuSR!et4#@NGOwZt5#V|!mn;ySFM%b+94R7cO(m7XaQ0y!=U4mK*YfdvPX z7bFifu;76b|7rg^At6Wb!eu zd4m1~59Bq^qj4~?hVz zC6Nz)lx*tG;J3j4)BXKj?P2wT{h`oOOcmM$X5GVXE1Xbl^%nEG>B?-&?r+<$|7_KL zI|R08?``|@{lBXED`0-+3(?=5ROFmmR157t1dUycV0n?y{u#6VBApq`9B&!w8UVi& z_6t{LPs_%x>V8d1QOanNGD&e+r)uNxahJI!DrHKMwL*ceuPUAtwRl=Q;n-olbSiw% zlk)UIiWcKx!5ZzRiG;`1660d)WQU7Ia*Tk|x3ObeqE6Wv(Q#&D*P)K%$^fv3=0baI zfW}(mVfzW=i?JHkmeo`+|5fNXwAW#1tmO*2qv1o!kW!Z_PqY2yPn+iYmsL(Ja_g%X z(F{Lp|0Oy60Cc{S!TzR9FsOC(E3I$%j|LB7P78dY`n$&|Ef7Uo{mlJ@1w!DOq_jZv zY58oo5f%u6>uD*~&}_Qc=BG-R3;nODsHuqBqBg&+40sSSYdQGmp=5;m!(loWVari8 z8HMhf0`}P#cztYnvs$(Kea>LO=VU2DV3r?L$cHg4m#8)2QM+T1iF72R$2gp9?CAim!60b%KU-*OsA`5gjtZC}{I=;+r&R?5O;~@Ke)`qJ zc-n2Wry>$~>?Unu>ur0=klOmI8OZIxV|h6^VYILeDEHD=E?vvg)f_UMX} zQO;+qWbE0eR{TuEd<`} z0ce*4jGKLGOJ_XP8d@LP5DHNxWC$)VJ|QY|@j7~dN7a9Vg__IcLJYR zP6lW7Pdh2;cZYYgXE)?GX@9%Lv$;Iu&bX!hZAatF%3`_`GP|(9J)yi@gX~PmcWvbE zMN20ItVNi)6*P0o%E+ok7fqUKEwYzb%3LMGemX`+Vm;lNSR7h}b=Z|T7HNw$LE~!b z4kl{?LEj|Xyvj|LPs74AN<8P8`){oLz|I=%w*GRZCRx{is{h|1KaN8FDNon*Rrk;8 z|7DPEF#O*6%?oRZ&^r0eOZ;nC-0!6G%CNTj68-J%?TLVTUWw|MOG9I!iAsgSiyuqw ztieny6!-`|1A1wp2u6QbYb#AV8BnDTwG((e`HQ6&v;4(n&GMHU+8bLiuuy1;so&5( z2zqEE%1iBoaenyk#_OW@o)dGXCF^T+rXnK|_-X*k#y1*@oDUaoi@e zfm31OKVZ&RRT%N#5VhjB)P)(hX34}(L@d(e#5^T zx@xXMd`V)RGACXs7@Ivr0vjG8#u{(cJwyWY2n!DpW9ILL;O`Sa;|4AOE}XzPOM{vB zdtZY!^I0uF3yD!!H}7pTw|-Ng)5%!2-W*{4)@c2A`i*yMYqPTpl8~Xl zrJbE)^tY&{zYRb?m-<_EKkIL8#QNK&`5`Z6ze{+1EOc3<)>E!{fmw^N&@z~ijw(N< zbH6%e-C}=1`L*@8)*)Lfs8kKm=uel2sVCTpG2BKw?6>;g@P}b*$uLeVId7xQ=a5dFsc{iX-EfWOl>l=oSaH6yjbfU zEU`=~o;$Uym^DJSa+O%T#nY#Hbv(h^me{N8!MedVRpydyi6QWcz1k{M(^u2i?fb{d zGnMZawZp~`1+A-r1J@n6ZqMem;nj6v(7KfFhV>OvN_WHh3fV@FyS{VpKUp8U_bEFj z6GrW4(aEPCzIpPg=j#}Ax-kFgg_g&t*eWNK70;P^an)SEu>Mb(z@s#+Y6ftEGKs## zxlVXCnj-@L?Vx{ik+)6wUrq7Qxwn`oq2_V>_smeuc4?{?iyW zH{0!zh%67w9p({{QQl^&trg`T?>ib>jOV-;5*C-QO?Jm(F{^dW8iKqt)luatMp+>% z&YUvY;VmwP=MDA%i_LbPMruxkU+wv~?o)|4y$LJOHQoO*zp*FQJ?*c0ckw$$PhexI z*JJ=*@ffcQ&i45=3o_rqeH+2&dytSsf;HW~ptri;uL?Yy*1=ACGtJWTfoC_?uUQ!7 zM?y-1NA-Y4rTrRM*C9kcq4f}`m-P#g0yNtfM;=RIa=4t8|JVvUVpfJm%+TcCRfXc1x1G;$~@@p^;7RjW8Z zfpv}7wpMr;ff5+}STMM5-OinwOPFtg?0gCMPmT5+V;G}A_cNUjU3smzV8xRkqi1tg zHuP@D`hLNC);C1{ee@Z63mmLfFW=nW{S3LS?)&Z&7n1ZZ^Z=F66g?leW-M=&zV*+) zmKXRb{Lli7C-n02YEpiYf3X09vhn;f20(E#WgGY)=%WTtmZiOrHrf9zq@OIY z^htzSLQ}DR@XX=FvxYTaiB}{JP#3zJ(yZ4+>${^#mYjt2$M0QnPR8uJD!4WrMR~>^ z_pHfR)e0Ph^brK@q&w&u&)~ zd+yTJpsO%uyiAWh#xoB;s;eLBg$A%}!um zwCLr(@)fIf`t+SU_w2#jMfv%7cTD{VO&fEpX^l*)UtkhinDn=$&;z z!pIrXJMRxLHllZ?*e!H9X6FLPShFzJUAgYbFD_VrWjA^8CP z`2%lEeZ=;Y%9oaK;Room!2bU@aNVU(iTd#jYCO>q--!A+u?>c?Jv&Ov(Lyo$rq6K8 zPk$PXTCIvAW-!ZDHaZ3RPiQ4E9fuRy$&($9R?Uh3TX+>JafhT2tL^Jw-?))$5C*6u zN?Ekk1EL5gmDFSg*DU+@`+P*#)7KD@<`jAO{r|odkC(vfIeRwe5-ow>w%0`AfAh~1 zCM;Oc+Y8Fk)&`a?+q`YoDc~HJVEqu%rOi6CdVUaNWfSp7i(7WYGW1ij62~9CwCd$6 z5~L{Ma3X=|odri}nLS`#OYA>H^v;6M$5zK?21`9W0vx?_4?P*&PcLYz7f0{xw)WA$ z3WvjPPbN_W@6<(~rXYX)P|EjCg71Sr8s13)*S|4w0z61~CyDNBy|vS?O7A4m2eJ34 zvT%X7!7s+|@MT%&M7kL3jlgHaw=8^V#&2y)U_IwiTwS;3hsWm*6)h+h9R17LAGL0O z>IZ$p@Rg~^cVzEtz4UOX&!uB?hn?iN=i_|xh4(dR&R3yRvi00U^D1XoHqf>3D{J;} zH(MZ=+Bt@WsYju@{(=5s`2Wx1^*41Z8MdIF2o?@W`&WdnkIcXmN^@HTdI+#h`2Vn~ z(5?PsSgiHw3w$Hvq)+Ak{AuNH^N4($@6F&JU68EW=^k)E!djG}{@||oRkfEapFUOA zxCs8sB_KYT7C}GZ2#gEme<2Eb<^`7e14Tl<4|$mL&G45O3Hg4A?8=aDZ#tFf)aK8S zV$Tlv*mEG(->h@HW;+Ra7Wk)tB)c}T1;ytKd8YflzybA)W;+>DRzzB0@1A^$Ehs*f zaU*b%b0H#Dhv`9#LMNVGafaQE^}FtPuo)r_aG%;s=dnUQ2QOCvRw$3^%6JFo|Kd3Z z$2&O4ke|iK81l2gQ&&2NiybiN|)B!4+ zhu8{Ofm#2JSkF<`^1_5m9ge!XWOD2L>pykYMR?WxRrA+`=XeBuHw|}K z&2pLp{fE=U!guDpGv_t?X}iE2U9cGRJ5z{;A|e zO@JAX|9r!>TiFf0GYkEh`Q!VD2i}L+F!rK!He>Bj9;h5CdbemZ=!4tKxOd*YXY-!T ztHaD)VNdYP?{DZk+xIdethjx5X4=V%UcTt%7hTMqWm2*JRKj}vihe0> z8VoFIFk`MkV2=JBhWsJh-=ak?8T31T{Gq5}L#}#RgS;?){Ew(X-cN`~W*%Z-QG*$C z1d+tx0r+Stn|6skNF0GJ@;Q2O4xUiTKWvZT2x|7f%EX>1v-k!K4MXN?e8Xfv5q!jv zEpU3Z`7h&V<@}fNd%M*uX*XIvh`2LO-oYw$U-K{`dIWyXnI8e0%3HmN9#wBg`E#g2 zq|!6q!F|mmIb2WAp$7pfD-kiY88_F!@w;OEYtU-&=4#+M$9<4BF#Ve254r!MyqJ1S zzihoo>;0AVEBjxst-l5b2y5OSg9C{8AAKt#=^(E|~| zB%)>wAKCK$=0^O9;&V{)rqf4Lin6+e-Ag{e0@WxzWqF>8rz-!~FtLqFzrQ@Q!i zcLC?kf2@Px)JEcn*b=FhYWH`HDc=zn`xitRrl0)w^XVr8{qL|*J=$jUIR;jYQ3;eqrQj|%VX1xZ6g-xa^2XL-`l(9N{Z17fCq#>{^t?F($sKI8GmZ#@6V zc>KFlZ3OKa`yZJ9iTL5%)Z=bIHsJV;@#as9b}#>u^Cx#fufdEt0>r>#2AVO?K#6(% zV?HPo^DzEMoWblpY@$E5AoEA&i`CC4FIGQudF3O^GynPM^)rj!9g)r9FEDoSi3@V{ zjnOmuFKP(n>X$Xh3!(mU0c zT1@MoC~vHPMtNbsFv<)21()xD1zqkz66O7>+=Ikza}VS$ByO8~AlJ`Bm^B`?3+tQM zg=Ei)8ssjd3za`A#>gLI{gXofS1{W|{ERVv!h^z*D`pEK}<9J4w)x$ z4Yl+TeG59^7HGf^U>)Fj7jgJZ^W^vW+D6}mN3I<-EK(c&Jo@b7wjBK`koQ>oZq@S@ z8d5ltO3wc%yz|45-lhB=g&nhFyRrX(W&Z|fsk*ujO@-sv3eK14(=d$wzYQ(vNxl9s zVgKJYBmPC~z^kQy)bqs-Jl=mmaA5>N3&Zf8)e+Ng5*m7EbFUsBAPTU)!z=g?_3~r& zA0hj1&-Gtw4`Ge}S+TF@-%iiQDm;@n5%n#>9|Zc!NfK5A%bCu6Q2*Jpn!5NGySsWOn1)m2?$6pATZC;~iw| zk(%ttIVOw(zw_I8_U(M{Jgd_QxtZ%Ge zwWxuXY52RePraVL0jt}A7_T0ML*7B};O;FWh>2t@6VIMnSb=2X*;7+-85{Jp6b27n z4iCRfJbS!@(@#kJyUVYP$b2qem(%)q{ptMzK z-jm{U0!!&f@?RS`bJ&X8!_%Fc?WhRnZE;D zQFiU>?QL&sk2eGxs6D2D+x224Z^Ls1ArAzD)27{V$N5DgCByb%`=~8Q)3DR-JZ3X{ zJ@x61ztV>;o=VfnG#|Rah7Vn0=|g91wqOfvL})TLEa-<)0y7UZ;zRk`Cpl@B4vYe1 zUhOfMdfAR6^&gzL0?XYY%%sj{zJX6*ab$P4vM$Tmf|4chUQgE6Z-K=;63f3V&yp

C1E0b?o7wpbY%(oet`0spE37aLN<2^c3~kNR2kSftY_BQ)>U zIA8{Gr6NM}y6U(awlq~lXrAd478JJsv-fyj->b8D4>~{3Cpj_o7Ma3qcovv(7ktAa z@?ShlMRsX9c33!i+rV9*(j#Ldv=VQd?aZUL5i5SvNbLGgmz6Dnk6;r015Pb?1F;)r`1{f8$KhnY{uoK- z^Dm+Q@D2pQ0fqKrXrRB}{!0sNeN(Y|PS>B(0?Qxoe_f(4hz13S8w3ThE~gh@TO-C& z@-q=r@cW&A!fSsU&Q4gY>A}2{nD^c^g(4a!7rU32L&|wV` zBq`c&qu<~yJwy-d9cZKbxAE>}AwO^(ynlK-?bq)Y`=|K?kr-qJwmq`!z-vj2z88CN z3tOSZNE&A^^n&`CeHv#kFc-CAqK;a0MQ+}M3<;u}~yPN0WZceZt|PwYs1qh%*nFlm1? zPB7tT66X(y6HEk_{=Z%UO*A0xX6wVFpua9{+OYM3Z3h{*pg-yRV_wAfn<*#=+W!FD z@*(KYE!Ybmr1io3VR_)aYc1dalK!M0D8IDeKdd`#p?6V(XrFbj#(M67Xn(x(e~i-$ zp5*Q!$GX@Ke9-2V1F z??2O@;rrtT^1c5Yf5RgnqnAPNpg3c+nEvxITMFda2V5Uxqcq{2-=ZAXgo}Ds*roA0CUG{gbZ>4~CJ? zl<ATn0aZ>Srw``%bFy@PyuiGlBQ?!Z`- zQJFVT-2v-N3ZJmnCfmFYtjnTCfyeV7w!(UH1Tyt)u-#U{-rkz% zi0^E@>~KSJ6cHTbpFeaMn%`}S_vp)*FFxGg5&uf-N|c_Yiaiv6to^HO!9HQ4A7Q~Z z?8m$YE`>HAlUPBd{aws{J^@fBG5e+c$v6X0=1U8d#IlAw3=P=8EW;b^3oZ7t!!n=y zeU|Nqp8B(%|1n!s7Cqs(1eLySwQU14K=$SVrjzDq| z{?LI2-M-kc{vFMf7;o&;S##(xQm18Oj&=*ytDwVC{v zx9_@rS2W41u#m|gqDE)ENebv$%N9UG3K%bb=xekZ=PVd!C>>te>WrWVvIZ$PN;zU| z{1Arpg3>5G+WbuH$;N#*{OIx@UH-%>U_|*n32)wy@OdI<7dlgV&3CT(&X@j9+KJB4 zHTZlfm%p|1m6}&-&U$42R@ez%fyH_hQE-o4{n*t{uXyUxr!IYZ1u#8^&(qKbp2BZ= z|IH77|H@l-&wC+c3iAHe-@;l%djE`Qj>}NmuG=C=jmxdAV@)PYd zNiW@=5Fc5(9ek2M5`VJ)?!0@H679w_?8I{=a?jSDNH&ZTjmrFX=>NdEe3575i@g6m z`ER>!*?rctwewBy+pu4b!b^M$X607wGdku=_UafVAA>)8p`QOt?9pbPyL)dMvApNt z`TM9gclTnJzDMsWzbQXG@r|jcC!U_j<==%R=rnlVX?#R|Z+b6%YOw50@0(s7!#+ER z{=cc`kJ6dam*)K0<2OGn@`33koB)1vF8?>>2ngQuqswLfZ_vBVpl-&0jHKD`^%H=& zKGq-P2|$clewQZz32dAI#F!J?-#7wDCiY`+ESSXX@1Bp{QZg}iVlR`#EIoge{K3*U z*B}#1Ph5k<`HkD}ALIW|!T)cR|9IcxLE{7tu9O$JhSR3~y`lz=zY&Sc7r~by z6VpGR04TAF`P+hzOe&;OmPG~TSYP%!2lQ-V!C)y?T)-*%upPGL=tCtwMV~cESzkRy zkR=P5>hUJoh9|L#ImDJInXnf!Y0pm23GCd1s@(Vq9%!_$SypJaD>`#QaUl%r z8-MQB^TV(dv{GYuby!?*VfO}qPU`s_qfRp8nu~@0f-acwMSY z=MS*-US%=PAE-`lq~je3R?zaYi@H~DXvx%rHjUVDtGma2Db`9MkzXz~cOy{+_<>?qo8NfDCv|cW=0{htK}w12|k* z`xU%>d4hpUlRlXCxi+>k^?VQvB0ORE3~TuUb9{$^a~Z$mO94&7Drfi{gzd(_ zz0{iIottTW2CeDg2%vl)1i|~$5`8TC&EnTh^XKROx3EP;G-;m>eZ>!! z$n_T1YuCBrw{jTPy1F}io{LL)0r9`#wLM?UVfOf4SH7?K?c97vM6sP~kVD2b+||>o zw?}OM4qwr;OT*ATEJe=A&Pc@;?Erq}D2!_=uF(7kt+cP}KX3ka_ok=5c$n*JrIBp= zj^AcBJ+(r+YXi@w&cseJ$Nb1jKKg5`r~2r!L_e>rV#eS@tM> zJ9oc^n}fgnFBy#{NC< zktA?B+!t)@X-&xedy3Nm`K`#G>f+v*ik5c^R15913_QpPr(*3h<2LNqtO3=H z@qe)d-42KR?H^ z%Jkv=Pcr9|^>?YWl~mZO{Cc;$HgN==`TT#5^*aLYu@N8a)`!ki-G5-+fN!I(4LQ8h zn8@Wrn00%mR_VbOGtXFmc>l23hn_OozPU@hf0%dw4(jr|-2Lm)aUEi=g$F=LP-6eE zu_D5rjR^j8^kTE9LF^wMp?%Gwh9YPF`2kFO=JNykRLJg#?~wohKxm!D`2nA-xBcPX zj<)ZZ@!qt+%D*okwX}NN6W_jgAiV3+@a90KAbEb-#xhMZ0fIvru literal 0 HcmV?d00001 diff --git a/data/sprites/official/lucario.1.zspr b/data/sprites/official/lucario.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..44ce395e48e9e6b6ea86e9225e5e48d378fa4afe GIT binary patch literal 28856 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/marin.1.zspr b/data/sprites/official/marin.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..51c27bb698de39194b38347e824375021f0d3f8b GIT binary patch literal 28885 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/mario_tanooki.1.zspr b/data/sprites/official/mario_tanooki.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..255350dd8c7ec58af27e0b273f53ca5679c0ef58 GIT binary patch literal 28902 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/medallions.1.zspr b/data/sprites/official/medallions.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..dc4b04d170ae43e1d0d79f95b81cf957dcc9929d GIT binary patch literal 28892 zcmeHQe`p)m9sf!vOP55k&W>xzo}IhRUUArpln`2VQ6j~5m;)OLS)pbu*n^}vbX%RS zP%j8eWQO>UU=k>#fzcVmpfs@czm$-~7cYeTF^1W{D@6-r2u8~VlAmsKBcp(6d~_Tj4IcIx(@)_voPuA% zuTajwJMbI$t^Ms8cpJ}X@CLk#$M;|i|Gtm^e#g$9dHb~X#=EEA8$12}Y4*id64?V1 z1f|xU(Uy}vBR!uTxio+}C{kZ&SRGbx9QYuiLrlLPE67D((f4I*(*o*nUoRL%^SpVs zw6`R(?ptNkdti1TP?O2Uq`&5iZ3{5#zFI>3Ag}$@`B{y0-!@GtK(ls zY#sD07yEjFc&h(20)AI8s*GqO+I(t0#r%Jl6b+52BkFu|KI!)VW$&_g#s7=ua%q|D z|J?4*5t&dU-m2Xl>mw6tBvs{&DE#ce^&!@GQDs*!C`oWJIg>n$eHRVwl7d*fZ42FV z#k)7|7N&qO(3&E559HfOfy^=CF`vA-bSkFokQn-|TZ zSupO~^{4tj<3ELeRJ`c;A-a5O{GryL%0DW8v&SE5{i*SXT0WJ3RR6CBo-%%Jgz_o% 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 Kwl-&0!v6s|HM^?- literal 0 HcmV?d00001 diff --git a/data/sprites/official/medli.1.zspr b/data/sprites/official/medli.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..59284a366d34453174b170303b686dfc4ca45837 GIT binary patch literal 28864 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/mikejones.1.zspr b/data/sprites/official/mikejones.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..6b83b72cd8daf5ef85a12694871d94252b2580d6 GIT binary patch literal 28881 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 WaLa9=Q+uwFxr;Y*%jXB*cKvV6UP~hY literal 0 HcmV?d00001 diff --git a/data/sprites/official/minish_link.1.zspr b/data/sprites/official/minish_link.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..4b342c1acbf473e946d0052458c8eec24448d1a0 GIT binary patch literal 28873 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/nia.1.zspr b/data/sprites/official/nia.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..5d01ba4bd86303453337299b17c89e69ace601e1 GIT binary patch literal 28857 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/paula.1.zspr b/data/sprites/official/paula.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..657752ea29a0a6b13ca0e52732003bf065be38db GIT binary patch literal 28879 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/peach.1.zspr b/data/sprites/official/peach.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..7973f95299960040428ddfa2dc42170b0312df41 GIT binary patch literal 28873 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

B%MKPs+fq;mlIsuj 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/powerpuff_girl.1.zspr b/data/sprites/official/powerpuff_girl.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..fbf3c694676574e4c2e5de84bfd3986cf74c39f9 GIT binary patch literal 28879 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/pridelink.1.zspr b/data/sprites/official/pridelink.2.zspr similarity index 98% rename from data/sprites/official/pridelink.1.zspr rename to data/sprites/official/pridelink.2.zspr index 310a6b7565f0fd25e3f8700f7c1550c3d5f52ecc..662310133a5dcf2b852cf5881caba89b9e86da3e 100644 GIT binary patch delta 58 zcmccjknzq#MuDi{fFQ<+B6+V97=WN4VWNPtbOA#VLq0 NkX^)(ztOL+001kr5X%4n diff --git a/data/sprites/official/primm.1.zspr b/data/sprites/official/primm.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..e9ff2d0566e531632f8968b5a152922891bdcaa8 GIT binary patch literal 28861 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 ~Z*X7cTU&`0AA%Kl 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 Y&067KXFaj>Pc>VNk=8HPezEp{1HbWMO#lD@ literal 0 HcmV?d00001 diff --git a/data/sprites/official/samus_classic.1.zspr b/data/sprites/official/samus_classic.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..6559e25ce6e6aad3471855835c7dbb7887daccba GIT binary patch literal 28899 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/sevens1ns.1.zspr b/data/sprites/official/sevens1ns.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..d59a1b529fa62342604de95cf01dd2c0d91625c0 GIT binary patch literal 28863 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/shadow.1.zspr b/data/sprites/official/shadow.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..fcd0d49b60f2834089b346f6e10f58ee16b816ff GIT binary patch literal 28869 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 NzpX#I@TsSR{~sl98ifD= literal 0 HcmV?d00001 diff --git a/data/sprites/official/sora_kh1.1.zspr b/data/sprites/official/sora_kh1.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..e77c922d20de21139db7cb355d5d7269505b9a06 GIT binary patch literal 28882 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/stalfos.1.zspr b/data/sprites/official/stalfos.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..d4787a3b0353f4c8060a7240a6a0628d65b23421 GIT binary patch literal 28865 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 LEcrV%->Lb3%+eTY literal 0 HcmV?d00001 diff --git a/data/sprites/official/stick_man.1.zspr b/data/sprites/official/stick_man.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..b891586f4b6563424f9e505b87153344bc0e28b2 GIT binary patch literal 28872 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 N*o2aQwC!O0{{dnh25kTU literal 0 HcmV?d00001 diff --git a/data/sprites/official/superbomb.1.zspr b/data/sprites/official/superbomb.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..1ed38ae3ecb0ea36ef4a1ccf2a51721e51d37629 GIT binary patch literal 28877 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/toadette_captain.1.zspr b/data/sprites/official/toadette_captain.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..e69f74a71c7001d61270f8684a9b3bd237aeedd6 GIT binary patch literal 28885 zcmd^o4}4VBo$v3?+)Qp@NG=d@0wHsS2x&z#{8s^NK)6W-QB(}wZ0E%BN?rAsmns@`f1UnWb{Qq8zrPE3}LwUeSi1N zote;TpR%9Nc0cdjPiE$O&OPUzd++b}JHOxW{LaZ=es1}#(!$3Mtob}4HGRH`C`JSX%wXh@rCD*yOi?V6 zq+WWSHh}uJC^d4K$4d`Z?`&$QFqGRXu9+~|>!l0yMOsFMbcfodHS2MDtMp9aaIvMn zSN!^#{qZ>cANm=NRiK3k1wjjDsTnq7dRVX3f`R;e`ê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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/two_faced.1.zspr b/data/sprites/official/two_faced.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..d504c321ad11dce8a110deec91ac8488152363c7 GIT binary patch literal 28873 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%0A?-oGA1L0eHw!#y#LOAcEBto@ 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 I^|x66Kh0F=tpET3 literal 0 HcmV?d00001 diff --git a/data/sprites/official/wario.1.zspr b/data/sprites/official/wario.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..f1a5aab77422e63913302c42649bc53c042733c1 GIT binary patch literal 28861 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 JA9^VIe*kfk$sYg! literal 0 HcmV?d00001 diff --git a/data/sprites/official/zebraunicorn.1.zspr b/data/sprites/official/zebraunicorn.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..c06130ff7a6320c5afb6c6ffe7c193aa3934377b GIT binary patch literal 28883 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 Date: Thu, 11 Jul 2019 00:12:09 -0400 Subject: [PATCH 007/185] Reinstate the state cache system for playthough generation Fixed the issues in can_beat_game that required me to turn it off. --- BaseClasses.py | 18 +++++------------- Main.py | 3 +-- 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 01f7168d..289063e8 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -261,32 +261,24 @@ class World(object): prog_locations = [location for location in self.get_locations() if location.item is not None and (location.item.advancement or location.event) and location not in state.locations_checked] - treasure_pieces_collected = dict([(player, state.item_count('Triforce Piece', player) + state.item_count('Power Star', player)) for player in range(1, self.players + 1)]) - triforces_collected = dict([(player, state.has('Triforce', player)) for player in range(1, self.players + 1)]) - while prog_locations: sphere = [] # build up spheres of collection radius. Everything in each sphere is independent from each other in dependencies and only depends on lower spheres for location in prog_locations: - if state.can_reach(location): - if location.item.name == 'Triforce': - triforces_collected[location.item.player] = True - if all(triforces_collected.values()): - return True - elif location.item.name in ['Triforce Piece', 'Power Star']: - treasure_pieces_collected[location.item.player] += 1 - if self.goal in ['triforcehunt'] and all([treasure_pieces_collected[player] >= self.treasure_hunt_count for player in range(1, self.players + 1)]): - return True + if location.can_reach(state): sphere.append(location) if not sphere: - # ran out of places and did not find triforce yet, quit + # ran out of places and did not finish yet, quit return False for location in sphere: prog_locations.remove(location) state.collect(location.item, True, location) + if self.has_beaten_game(state): + return True + return False def option_identifier(self, maxbytes, player): diff --git a/Main.py b/Main.py index fe06a64d..6042f365 100644 --- a/Main.py +++ b/Main.py @@ -327,8 +327,7 @@ def create_playthrough(world): old_item = location.item location.item = None state.remove(old_item) - ##if world.can_beat_game(state_cache[num]): - if world.can_beat_game(): + if world.can_beat_game(state_cache[num]): to_delete.append(location) else: # still required, got to keep it around From 759c1a568679d7b1e8f83f3a52149713a42b8ec7 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 11 Jul 2019 00:18:30 -0400 Subject: [PATCH 008/185] Optimize simplified caching system --- BaseClasses.py | 46 +++++++++++++++++++++++----------------------- Main.py | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 289063e8..fac890f0 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -227,12 +227,12 @@ class World(object): def get_reachable_locations(self, state=None, player=None): if state is None: state = self.state - return [location for location in self.get_locations() if (player is None or location.player == player) and state.can_reach(location)] + return [location for location in self.get_locations() if (player is None or location.player == player) and location.can_reach(state)] def get_placeable_locations(self, state=None, player=None): if state is None: state = self.state - return [location for location in self.get_locations() if (player is None or location.player == player) and location.item is None and state.can_reach(location)] + return [location for location in self.get_locations() if (player is None or location.player == player) and location.item is None and location.can_reach(state)] def unlocks_new_location(self, item): temp_state = self.state.copy() @@ -316,32 +316,32 @@ class CollectionState(object): def __init__(self, parent): self.prog_items = [] self.world = parent - self.reachable_regions = set() + self.reachable_regions = {player: set() for player in range(1, parent.players + 1)} self.events = [] self.path = {} self.locations_checked = set() - self.stale = True + self.stale = {player: True for player in range(1, parent.players + 1)} - def update_reachable_regions(self): - self.stale=False + def update_reachable_regions(self, player): + self.stale[player] = False + rrp = self.reachable_regions[player] new_regions = True - reachable_regions_count = len(self.reachable_regions) + reachable_regions_count = len(rrp) while new_regions: - possible = [region for region in self.world.regions if region not in self.reachable_regions] + possible = [region for region in self.world.regions if region not in rrp and region.player == player] for candidate in possible: if candidate.can_reach_private(self): - self.reachable_regions.add(candidate) - new_regions = len(self.reachable_regions) > reachable_regions_count - reachable_regions_count = len(self.reachable_regions) + rrp.add(candidate) + new_regions = len(rrp) > reachable_regions_count + reachable_regions_count = len(rrp) def copy(self): ret = CollectionState(self.world) ret.prog_items = copy.copy(self.prog_items) - ret.reachable_regions = copy.copy(self.reachable_regions) + ret.reachable_regions = {player: copy.copy(self.reachable_regions[player]) for player in range(1, self.world.players + 1)} ret.events = copy.copy(self.events) ret.path = copy.copy(self.path) ret.locations_checked = copy.copy(self.locations_checked) - ret.stale = True return ret def can_reach(self, spot, resolution_hint=None, player=None): @@ -366,7 +366,7 @@ class CollectionState(object): while new_locations: if locations is None: locations = self.world.get_filled_locations() - reachable_events = [location for location in locations if location.event and (not key_only or location.item.key) and self.can_reach(location)] + reachable_events = [location for location in locations if location.event and (not key_only or location.item.key) and location.can_reach(self)] for event in reachable_events: if (event.name, event.player) not in self.events: self.events.append((event.name, event.player)) @@ -537,7 +537,7 @@ class CollectionState(object): self.prog_items.append((item.name, item.player)) changed = True - self.stale = True + self.stale[item.player] = True if changed: if not event: @@ -573,8 +573,8 @@ class CollectionState(object): return # invalidate caches, nothing can be trusted anymore now - self.reachable_regions = set() - self.stale = True + self.reachable_regions[item.player] = set() + self.stale[item.player] = True def __getattr__(self, item): if item.startswith('can_reach_'): @@ -616,13 +616,13 @@ class Region(object): self.player = player def can_reach(self, state): - if state.stale: - state.update_reachable_regions() - return self in state.reachable_regions + if state.stale[self.player]: + state.update_reachable_regions(self.player) + return self in state.reachable_regions[self.player] def can_reach_private(self, state): for entrance in self.entrances: - if state.can_reach(entrance): + if entrance.can_reach(state): if not self in state.path: state.path[self] = (self.name, state.path.get(entrance, None)) return True @@ -658,7 +658,7 @@ class Entrance(object): self.player = player def can_reach(self, state): - if state.can_reach(self.parent_region) and self.access_rule(state): + if self.parent_region.can_reach(state) and self.access_rule(state): if not self in state.path: state.path[self] = (self.name, state.path.get(self.parent_region, (self.parent_region.name, None))) return True @@ -746,7 +746,7 @@ class Location(object): return self.always_allow(state, item) or (self.parent_region.can_fill(item) and self.item_rule(item) and (not check_access or self.can_reach(state))) def can_reach(self, state): - if state.can_reach(self.parent_region) and self.access_rule(state): + if self.parent_region.can_reach(state) and self.access_rule(state): return True return False diff --git a/Main.py b/Main.py index 6042f365..3cd7a78f 100644 --- a/Main.py +++ b/Main.py @@ -246,7 +246,7 @@ def copy_world(world): # copy progress items in state ret.state.prog_items = list(world.state.prog_items) - ret.state.stale = True + ret.state.stale = {player: True for player in range(1, world.players + 1)} for player in range(1, world.players + 1): set_rules(ret, player) From 67a5b7e105a80c5ff91da6ee950f32983f1a0506 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 11 Jul 2019 17:33:27 -0400 Subject: [PATCH 009/185] Don't require the Gui unless we are actually using it --- EntranceRandomizer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index da16e2a6..d87358e6 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -6,7 +6,6 @@ import random import textwrap import sys -from Gui import guiMain from Main import main from Utils import is_bundled, close_console, output_path @@ -232,6 +231,7 @@ def start(): # probably wants the gui. Users of the bundled build who want the command line # interface shouuld specify at least one option, possibly setting a value to a # default if they like all the defaults + from Gui import guiMain close_console() guiMain() sys.exit(0) @@ -252,6 +252,7 @@ def start(): logging.basicConfig(format='%(message)s', level=loglevel) if args.gui: + from Gui import guiMain guiMain(args) elif args.count is not None: seed = args.seed From aab696fa9ceb89e076446457a21d877efd20ef07 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 11 Jul 2019 17:46:57 -0400 Subject: [PATCH 010/185] Remove logic_hash It is no longer used for anything. --- Main.py | 20 +------------------- Plando.py | 12 +----------- Rom.py | 2 +- Utils.py | 8 -------- 4 files changed, 3 insertions(+), 39 deletions(-) diff --git a/Main.py b/Main.py index 3cd7a78f..c2152e55 100644 --- a/Main.py +++ b/Main.py @@ -19,24 +19,6 @@ from Utils import output_path __version__ = '0.6.2' -logic_hash = [134, 166, 181, 191, 228, 89, 188, 200, 5, 157, 217, 139, 180, 198, 106, 104, - 88, 223, 138, 28, 54, 18, 216, 129, 248, 19, 109, 220, 159, 75, 238, 57, - 231, 183, 143, 167, 114, 176, 82, 169, 179, 94, 115, 193, 252, 222, 52, 245, - 33, 208, 39, 122, 177, 136, 29, 161, 210, 165, 6, 125, 146, 212, 101, 185, - 65, 247, 253, 85, 171, 147, 71, 148, 203, 202, 230, 1, 13, 64, 254, 141, - 32, 93, 152, 4, 92, 16, 195, 204, 246, 201, 11, 7, 189, 97, 9, 91, - 237, 215, 163, 131, 142, 34, 111, 196, 120, 127, 168, 211, 227, 61, 187, 110, - 190, 162, 59, 80, 225, 186, 37, 154, 76, 72, 27, 17, 79, 206, 207, 243, - 184, 197, 153, 48, 119, 99, 2, 151, 51, 67, 121, 175, 38, 224, 87, 242, - 45, 22, 155, 244, 209, 117, 214, 213, 194, 126, 236, 73, 133, 70, 49, 140, - 229, 108, 156, 124, 105, 226, 44, 23, 112, 102, 173, 219, 14, 116, 58, 103, - 55, 10, 95, 251, 84, 118, 160, 78, 63, 250, 31, 41, 35, 255, 170, 25, - 66, 172, 98, 249, 68, 8, 113, 21, 46, 24, 137, 149, 81, 130, 42, 164, - 50, 12, 158, 15, 47, 182, 30, 40, 36, 83, 77, 205, 20, 241, 3, 132, - 0, 60, 96, 62, 74, 178, 53, 56, 135, 174, 145, 86, 107, 233, 218, 221, - 43, 150, 100, 69, 235, 26, 234, 192, 199, 144, 232, 128, 239, 123, 240, 90] - - def main(args, seed=None): start = time.clock() @@ -144,7 +126,7 @@ def main(args, seed=None): else: rom = LocalRom(args.rom) - patch_rom(world, player, rom, bytearray(logic_hash)) + patch_rom(world, player, rom) enemizer_patch = [] if use_enemizer: diff --git a/Plando.py b/Plando.py index 0bb3dd1a..290e212b 100755 --- a/Plando.py +++ b/Plando.py @@ -19,16 +19,6 @@ from Main import create_playthrough __version__ = '0.2-dev' -logic_hash = [182, 244, 144, 92, 149, 200, 93, 183, 124, 169, 226, 46, 111, 163, 5, 193, 13, 112, 125, 101, 128, 84, 31, 67, 107, 94, 184, 100, 189, 18, 8, 171, - 142, 57, 173, 38, 37, 211, 253, 131, 98, 239, 167, 116, 32, 186, 70, 148, 66, 151, 143, 86, 59, 83, 16, 51, 240, 152, 60, 242, 190, 117, 76, 122, - 15, 221, 62, 39, 174, 177, 223, 34, 150, 50, 178, 238, 95, 219, 10, 162, 222, 0, 165, 202, 74, 36, 206, 209, 251, 105, 175, 135, 121, 88, 214, 247, - 154, 161, 71, 19, 85, 157, 40, 96, 225, 27, 230, 49, 231, 207, 64, 35, 249, 134, 132, 108, 63, 24, 4, 127, 255, 14, 145, 23, 81, 216, 113, 90, 194, - 110, 65, 229, 43, 1, 11, 168, 147, 103, 156, 77, 80, 220, 28, 227, 213, 198, 172, 79, 75, 140, 44, 146, 188, 17, 6, 102, 56, 235, 166, 89, 218, 246, - 99, 78, 187, 126, 119, 196, 69, 137, 181, 55, 20, 215, 199, 130, 9, 45, 58, 185, 91, 33, 197, 72, 115, 195, 114, 29, 30, 233, 141, 129, 155, 159, 47, - 224, 236, 21, 234, 191, 136, 104, 87, 106, 26, 73, 250, 248, 228, 48, 53, 243, 237, 241, 61, 180, 12, 208, 245, 232, 192, 2, 7, 170, 123, 176, 160, 201, - 153, 217, 252, 158, 25, 205, 22, 133, 254, 138, 203, 118, 210, 204, 82, 97, 52, 164, 68, 139, 120, 109, 54, 3, 41, 179, 212, 42] - - def main(args): start_time = time.clock() @@ -84,7 +74,7 @@ def main(args): sprite = None rom = LocalRom(args.rom) - patch_rom(world, 1, rom, logic_hash, args.heartbeep, args.heartcolor, sprite) + patch_rom(world, 1, rom, args.heartbeep, args.heartcolor, sprite) for textname, texttype, text in text_patches: if texttype == 'text': diff --git a/Rom.py b/Rom.py index 61105b5b..f1583b9c 100644 --- a/Rom.py +++ b/Rom.py @@ -412,7 +412,7 @@ class Sprite(object): # split into palettes of 15 colors return array_chunk(palette_as_colors, 15) -def patch_rom(world, player, rom, hashtable): +def patch_rom(world, player, rom): random.seed(world.rom_seeds[player]) # patch items for location in world.get_locations(): diff --git a/Utils.py b/Utils.py index 0063ed4a..de9fd0c5 100644 --- a/Utils.py +++ b/Utils.py @@ -87,14 +87,6 @@ def close_console(): except Exception: pass -def new_logic_array(): - import random - l = list(range(256)) - random.SystemRandom().shuffle(l) - chunks = [l[i:i + 16] for i in range(0, len(l), 16)] - lines = [", ".join([str(j) for j in i]) for i in chunks] - print("logic_hash = ["+",\n ".join(lines)+"]") - def make_new_base2current(old_rom='Zelda no Densetsu - Kamigami no Triforce (Japan).sfc', new_rom='working.sfc'): from collections import OrderedDict import json From c4570b732d28e44667638df91c0b2713ef51c4be Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 11 Jul 2019 18:48:21 -0400 Subject: [PATCH 011/185] Remove option_identifier It is no longer needed because we set the hash based on an actual hash of the rom contents, so it is not based on the title field anymore. --- BaseClasses.py | 30 ------------------------------ Rom.py | 5 +++-- 2 files changed, 3 insertions(+), 32 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index fac890f0..616600c7 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -281,36 +281,6 @@ class World(object): return False - def option_identifier(self, maxbytes, player): - id_value = 0 - id_value_max = 1 - - def markbool(value): - nonlocal id_value, id_value_max - id_value += id_value_max * bool(value) - id_value_max *= 2 - def marksequence(options, value): - nonlocal id_value, id_value_max - id_value += id_value_max * options.index(value) - id_value_max *= len(options) - markbool(self.logic == 'noglitches') - marksequence(['standard', 'open', 'swordless'], self.mode) - markbool(self.place_dungeon_items) - marksequence(['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'], self.goal) - marksequence(['vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple'], self.shuffle) - marksequence(['easy', 'normal', 'hard', 'expert', 'insane'], self.difficulty) - marksequence(['none', 'display', 'timed', 'timed-ohko', 'timed-countdown', 'ohko'], self.timer) - marksequence(['on', 'off', 'random'], self.progressive) - marksequence(['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26', 'balanced'], self.algorithm) - markbool(self.check_beatable_only) - markbool(self.shuffle_ganon) - markbool(self.keysanity) - markbool(self.retro) - marksequence(range(1, 256), self.players) - marksequence(range(1, self.players + 1), player) - assert id_value_max < (1 << (maxbytes * 8)) - return id_value - class CollectionState(object): def __init__(self, parent): diff --git a/Rom.py b/Rom.py index f1583b9c..b16b88b6 100644 --- a/Rom.py +++ b/Rom.py @@ -974,8 +974,9 @@ def patch_rom(world, player, rom): # set rom name # 21 bytes - rom.name = bytearray('ER062%09d' % world.seed, 'utf8') + world.option_identifier(7, player).to_bytes(7, 'big') - assert(len(rom.name) == 21) + from Main import __version__ + rom.name = bytearray('ER_{0}_{1:09}\0'.format(__version__,world.seed), 'utf8') + assert len(rom.name) <= 21 rom.write_bytes(0x7FC0, rom.name) # Write title screen Code From dcca15eda745bc4efab16aa5c711b4a37eb920dd Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 13 Jul 2019 18:11:43 -0400 Subject: [PATCH 012/185] Avoid changing spoiler file for single world --- BaseClasses.py | 55 ++++++++++++++++++++++++++++++++++++++------------ Dungeons.py | 1 + 2 files changed, 43 insertions(+), 13 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 616600c7..f41ed2b9 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -610,7 +610,10 @@ class Region(object): return str(self.__unicode__()) def __unicode__(self): - return '%s (Player %d)' % (self.name, self.player) + if self.world and self.world.players == 1: + return self.name + else: + return '%s (Player %d)' % (self.name, self.player) class Entrance(object): @@ -646,7 +649,10 @@ class Entrance(object): return str(self.__unicode__()) def __unicode__(self): - return '%s (Player %d)' % (self.name, self.player) + if self.parent_region and self.parent_region.world and self.parent_region.world.players == 1: + return self.name + else: + return '%s (Player %d)' % (self.name, self.player) class Dungeon(object): @@ -659,6 +665,7 @@ class Dungeon(object): self.dungeon_items = dungeon_items self.bosses = dict() self.player = player + self.world = None @property def boss(self): @@ -683,7 +690,10 @@ class Dungeon(object): return str(self.__unicode__()) def __unicode__(self): - return '%s (Player %d)' % (self.name, self.player) + if self.world and self.world.players==1: + return self.name + else: + return '%s (Player %d)' % (self.name, self.player) class Boss(object): def __init__(self, name, enemizer_name, defeat_rule, player): @@ -724,7 +734,10 @@ class Location(object): return str(self.__unicode__()) def __unicode__(self): - return '%s (Player %d)' % (self.name, self.player) + if self.parent_region and self.parent_region.world and self.parent_region.world.players == 1: + return self.name + else: + return '%s (Player %d)' % (self.name, self.player) class Item(object): @@ -765,7 +778,10 @@ class Item(object): return str(self.__unicode__()) def __unicode__(self): - return '%s (Player %d)' % (self.name, self.player) + if self.location and self.location.parent_region and self.location.parent_region.world and self.location.parent_region.world.players == 1: + return self.name + else: + return '%s (Player %d)' % (self.name, self.player) # have 6 address that need to be filled @@ -848,13 +864,20 @@ class Spoiler(object): self.bosses = OrderedDict() def set_entrance(self, entrance, exit, direction, player): - self.entrances[(entrance, direction, player)] = OrderedDict([('player', player), ('entrance', entrance), ('exit', exit), ('direction', direction)]) + if self.world.players == 1: + self.entrances[(entrance, direction, player)] = OrderedDict([('entrance', entrance), ('exit', exit), ('direction', direction)]) + else: + self.entrances[(entrance, direction, player)] = OrderedDict([('player', player), ('entrance', entrance), ('exit', exit), ('direction', direction)]) def parse_data(self): self.medallions = OrderedDict() - for player in range(1, self.world.players + 1): - self.medallions['Misery Mire (Player %d)' % player] = self.world.required_medallions[player][0] - self.medallions['Turtle Rock (Player %d)' % player] = self.world.required_medallions[player][1] + if self.world.players == 1: + self.medallions['Misery Mire'] = self.world.required_medallions[1][0] + self.medallions['Turtle Rock'] = self.world.required_medallions[1][1] + else: + for player in range(1, self.world.players + 1): + self.medallions['Misery Mire (Player %d)' % player] = self.world.required_medallions[player][0] + self.medallions['Turtle Rock (Player %d)' % player] = self.world.required_medallions[player][1] self.locations = OrderedDict() listed_locations = set() @@ -913,6 +936,8 @@ class Spoiler(object): self.bosses[str(player)]["Ganons Tower"] = "Agahnim 2" self.bosses[str(player)]["Ganon"] = "Ganon" + if self.world.players == 1: + self.bosses = self.bosses["1"] from Main import __version__ as ERVersion self.metadata = {'version': ERVersion, @@ -966,11 +991,15 @@ class Spoiler(object): outfile.write('Players: %d' % self.metadata['players']) if self.entrances: outfile.write('\n\nEntrances:\n\n') - outfile.write('\n'.join(['Player %d: %s %s %s' % (entry['player'], entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) + outfile.write('\n'.join(['%s%s %s %s' % ('Player {0}: '.format(entry['player']) if self.world.players >1 else '', entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) outfile.write('\n\nMedallions\n') - for player in range(1, self.world.players + 1): - outfile.write('\nMisery Mire Medallion (Player %d): %s' % (player, self.medallions['Misery Mire (Player %d)' % player])) - outfile.write('\nTurtle Rock Medallion (Player %d): %s' % (player, self.medallions['Turtle Rock (Player %d)' % player])) + if self.world.players == 1: + outfile.write('\nMisery Mire Medallion: %s' % (self.medallions['Misery Mire'])) + outfile.write('\nTurtle Rock Medallion: %s' % (self.medallions['Turtle Rock'])) + else: + for player in range(1, self.world.players + 1): + outfile.write('\nMisery Mire Medallion (Player %d): %s' % (player, self.medallions['Misery Mire (Player %d)' % player])) + outfile.write('\nTurtle Rock Medallion (Player %d): %s' % (player, self.medallions['Turtle Rock (Player %d)' % player])) outfile.write('\n\nLocations:\n\n') outfile.write('\n'.join(['%s: %s' % (location, item) for grouping in self.locations.values() for (location, item) in grouping.items()])) outfile.write('\n\nShops:\n\n') diff --git a/Dungeons.py b/Dungeons.py index bed73730..f3e13dd4 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -12,6 +12,7 @@ def create_dungeons(world, player): 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', 'Sewers', 'Sewer Drop', 'Sewers (Dark)', 'Sanctuary'], None, [ItemFactory('Small Key (Escape)', player)], [ItemFactory('Map (Escape)', player)]) From 6d5a0a004debc31ddb19690b5620cae8c4bb79dc Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 13 Jul 2019 18:17:16 -0400 Subject: [PATCH 013/185] Use a proper multiset for progression items This can cut generation times in half in some cases --- BaseClasses.py | 59 +-- Main.py | 2 +- _vendor/collections_extended/CONTRIBUTERS | 5 + _vendor/collections_extended/LICENSE | 191 ++++++++ _vendor/collections_extended/__init__.py | 55 +++ _vendor/collections_extended/_compat.py | 53 +++ _vendor/collections_extended/_util.py | 16 + _vendor/collections_extended/bags.py | 527 +++++++++++++++++++++ _vendor/collections_extended/bijection.py | 94 ++++ _vendor/collections_extended/range_map.py | 384 +++++++++++++++ _vendor/collections_extended/setlists.py | 552 ++++++++++++++++++++++ 11 files changed, 1909 insertions(+), 29 deletions(-) create mode 100644 _vendor/collections_extended/CONTRIBUTERS create mode 100644 _vendor/collections_extended/LICENSE create mode 100644 _vendor/collections_extended/__init__.py create mode 100644 _vendor/collections_extended/_compat.py create mode 100644 _vendor/collections_extended/_util.py create mode 100644 _vendor/collections_extended/bags.py create mode 100644 _vendor/collections_extended/bijection.py create mode 100644 _vendor/collections_extended/range_map.py create mode 100644 _vendor/collections_extended/setlists.py diff --git a/BaseClasses.py b/BaseClasses.py index f41ed2b9..29b33a88 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -3,6 +3,7 @@ from enum import Enum, unique import logging import json from collections import OrderedDict +from _vendor.collections_extended import bag, setlist from Utils import int16_as_bytes class World(object): @@ -135,34 +136,34 @@ class World(object): if ret.has('Golden Sword', item.player): pass elif ret.has('Tempered Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 4: - ret.prog_items.append(('Golden Sword', item.player)) + ret.prog_items.add(('Golden Sword', item.player)) elif ret.has('Master Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 3: - ret.prog_items.append(('Tempered Sword', item.player)) + ret.prog_items.add(('Tempered Sword', item.player)) elif ret.has('Fighter Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 2: - ret.prog_items.append(('Master Sword', item.player)) + ret.prog_items.add(('Master Sword', item.player)) elif self.difficulty_requirements.progressive_sword_limit >= 1: - ret.prog_items.append(('Fighter Sword', item.player)) + ret.prog_items.add(('Fighter Sword', item.player)) elif 'Glove' in item.name: if ret.has('Titans Mitts', item.player): pass elif ret.has('Power Glove', item.player): - ret.prog_items.append(('Titans Mitts', item.player)) + ret.prog_items.add(('Titans Mitts', item.player)) else: - ret.prog_items.append(('Power Glove', item.player)) + ret.prog_items.add(('Power Glove', item.player)) elif 'Shield' in item.name: if ret.has('Mirror Shield', item.player): pass elif ret.has('Red Shield', item.player) and self.difficulty_requirements.progressive_shield_limit >= 3: - ret.prog_items.append(('Mirror Shield', item.player)) + ret.prog_items.add(('Mirror Shield', item.player)) elif ret.has('Blue Shield', item.player) and self.difficulty_requirements.progressive_shield_limit >= 2: - ret.prog_items.append(('Red Shield', item.player)) + ret.prog_items.add(('Red Shield', item.player)) elif self.difficulty_requirements.progressive_shield_limit >= 1: - ret.prog_items.append(('Blue Shield', item.player)) + ret.prog_items.add(('Blue Shield', item.player)) elif item.name.startswith('Bottle'): if ret.bottle_count(item.player) < self.difficulty_requirements.progressive_bottle_limit: - ret.prog_items.append((item.name, item.player)) + ret.prog_items.add((item.name, item.player)) elif item.advancement or item.key: - ret.prog_items.append((item.name, item.player)) + ret.prog_items.add((item.name, item.player)) for item in self.itempool: soft_collect(item) @@ -284,7 +285,7 @@ class World(object): class CollectionState(object): def __init__(self, parent): - self.prog_items = [] + self.prog_items = bag() self.world = parent self.reachable_regions = {player: set() for player in range(1, parent.players + 1)} self.events = [] @@ -293,12 +294,13 @@ class CollectionState(object): self.stale = {player: True for player in range(1, parent.players + 1)} def update_reachable_regions(self, player): + player_regions = [region for region in self.world.regions if region.player == player] self.stale[player] = False rrp = self.reachable_regions[player] new_regions = True reachable_regions_count = len(rrp) while new_regions: - possible = [region for region in self.world.regions if region not in rrp and region.player == player] + possible = [region for region in player_regions if region not in rrp] for candidate in possible: if candidate.can_reach_private(self): rrp.add(candidate) @@ -307,7 +309,7 @@ class CollectionState(object): def copy(self): ret = CollectionState(self.world) - ret.prog_items = copy.copy(self.prog_items) + ret.prog_items = self.prog_items.copy() ret.reachable_regions = {player: copy.copy(self.reachable_regions[player]) for player in range(1, self.world.players + 1)} ret.events = copy.copy(self.events) ret.path = copy.copy(self.path) @@ -343,17 +345,18 @@ class CollectionState(object): self.collect(event.item, True, event) new_locations = len(reachable_events) > checked_locations checked_locations = len(reachable_events) + def has(self, item, player, count=1): if count == 1: return (item, player) in self.prog_items - return self.item_count(item, player) >= count + return self.prog_items.count((item, player)) >= count def has_key(self, item, player, count=1): if self.world.retro: return self.can_buy_unlimited('Small Key (Universal)', player) if count == 1: return (item, player) in self.prog_items - return self.item_count(item, player) >= count + return self.prog_items.count((item, player)) >= count def can_buy_unlimited(self, item, player): for shop in self.world.shops: @@ -362,7 +365,7 @@ class CollectionState(object): return False def item_count(self, item, player): - return len([pritem for pritem in self.prog_items if pritem == (item, player)]) + return self.prog_items.count((item, player)) def can_lift_rocks(self, player): return self.has('Power Glove', player) or self.has('Titans Mitts', player) @@ -467,44 +470,44 @@ class CollectionState(object): if self.has('Golden Sword', item.player): pass elif self.has('Tempered Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 4: - self.prog_items.append(('Golden Sword', item.player)) + self.prog_items.add(('Golden Sword', item.player)) changed = True elif self.has('Master Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 3: - self.prog_items.append(('Tempered Sword', item.player)) + self.prog_items.add(('Tempered Sword', item.player)) changed = True elif self.has('Fighter Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 2: - self.prog_items.append(('Master Sword', item.player)) + self.prog_items.add(('Master Sword', item.player)) changed = True elif self.world.difficulty_requirements.progressive_sword_limit >= 1: - self.prog_items.append(('Fighter Sword', item.player)) + self.prog_items.add(('Fighter Sword', item.player)) changed = True elif 'Glove' in item.name: if self.has('Titans Mitts', item.player): pass elif self.has('Power Glove', item.player): - self.prog_items.append(('Titans Mitts', item.player)) + self.prog_items.add(('Titans Mitts', item.player)) changed = True else: - self.prog_items.append(('Power Glove', item.player)) + self.prog_items.add(('Power Glove', item.player)) changed = True elif 'Shield' in item.name: if self.has('Mirror Shield', item.player): pass elif self.has('Red Shield', item.player) and self.world.difficulty_requirements.progressive_shield_limit >= 3: - self.prog_items.append(('Mirror Shield', item.player)) + self.prog_items.add(('Mirror Shield', item.player)) changed = True elif self.has('Blue Shield', item.player) and self.world.difficulty_requirements.progressive_shield_limit >= 2: - self.prog_items.append(('Red Shield', item.player)) + self.prog_items.add(('Red Shield', item.player)) changed = True elif self.world.difficulty_requirements.progressive_shield_limit >= 1: - self.prog_items.append(('Blue Shield', item.player)) + self.prog_items.add(('Blue Shield', item.player)) changed = True elif item.name.startswith('Bottle'): if self.bottle_count(item.player) < self.world.difficulty_requirements.progressive_bottle_limit: - self.prog_items.append((item.name, item.player)) + self.prog_items.add((item.name, item.player)) changed = True elif event or item.advancement: - self.prog_items.append((item.name, item.player)) + self.prog_items.add((item.name, item.player)) changed = True self.stale[item.player] = True diff --git a/Main.py b/Main.py index c2152e55..bef644a9 100644 --- a/Main.py +++ b/Main.py @@ -227,7 +227,7 @@ def copy_world(world): ret.itempool.append(Item(item.name, item.advancement, item.priority, item.type, player = item.player)) # copy progress items in state - ret.state.prog_items = list(world.state.prog_items) + ret.state.prog_items = world.state.prog_items.copy() ret.state.stale = {player: True for player in range(1, world.players + 1)} for player in range(1, world.players + 1): diff --git a/_vendor/collections_extended/CONTRIBUTERS b/_vendor/collections_extended/CONTRIBUTERS new file mode 100644 index 00000000..333a02bf --- /dev/null +++ b/_vendor/collections_extended/CONTRIBUTERS @@ -0,0 +1,5 @@ +Mike Lenzen https://github.com/mlenzen +Caleb Levy https://github.com/caleblevy +Marein Könings https://github.com/MareinK +Jad Kik https://github.com/jadkik +Kuba Marek https://github.com/bluecube \ No newline at end of file diff --git a/_vendor/collections_extended/LICENSE b/_vendor/collections_extended/LICENSE new file mode 100644 index 00000000..8405e89a --- /dev/null +++ b/_vendor/collections_extended/LICENSE @@ -0,0 +1,191 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and +distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright +owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities +that control, are controlled by, or are under common control with that entity. +For the purposes of this definition, "control" means (i) the power, direct or +indirect, to cause the direction or management of such entity, whether by +contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the +outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising +permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including +but not limited to software source code, documentation source, and configuration +files. + +"Object" form shall mean any form resulting from mechanical transformation or +translation of a Source form, including but not limited to compiled object code, +generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made +available under the License, as indicated by a copyright notice that is included +in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that +is based on (or derived from) the Work and for which the editorial revisions, +annotations, elaborations, or other modifications represent, as a whole, an +original work of authorship. For the purposes of this License, Derivative Works +shall not include works that remain separable from, or merely link (or bind by +name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version +of the Work and any modifications or additions to that Work or Derivative Works +thereof, that is intentionally submitted to Licensor for inclusion in the Work +by the copyright owner or by an individual or Legal Entity authorized to submit +on behalf of the copyright owner. For the purposes of this definition, +"submitted" means any form of electronic, verbal, or written communication sent +to the Licensor or its representatives, including but not limited to +communication on electronic mailing lists, source code control systems, and +issue tracking systems that are managed by, or on behalf of, the Licensor for +the purpose of discussing and improving the Work, but excluding communication +that is conspicuously marked or otherwise designated in writing by the copyright +owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf +of whom a Contribution has been received by Licensor and subsequently +incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such +Derivative Works in Source or Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby +grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, +irrevocable (except as stated in this section) patent license to make, have +made, use, offer to sell, sell, import, and otherwise transfer the Work, where +such license applies only to those patent claims licensable by such Contributor +that are necessarily infringed by their Contribution(s) alone or by combination +of their Contribution(s) with the Work to which such Contribution(s) was +submitted. If You institute patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Work or a +Contribution incorporated within the Work constitutes direct or contributory +patent infringement, then any patent licenses granted to You under this License +for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof +in any medium, with or without modifications, and in Source or Object form, +provided that You meet the following conditions: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +You must retain, in the Source form of any Derivative Works that You distribute, +all copyright, patent, trademark, and attribution notices from the Source form +of the Work, excluding those notices that do not pertain to any part of the +Derivative Works; and +If the Work includes a "NOTICE" text file as part of its distribution, then any +Derivative Works that You distribute must include a readable copy of the +attribution notices contained within such NOTICE file, excluding those notices +that do not pertain to any part of the Derivative Works, in at least one of the +following places: within a NOTICE text file distributed as part of the +Derivative Works; within the Source form or documentation, if provided along +with the Derivative Works; or, within a display generated by the Derivative +Works, if and wherever such third-party notices normally appear. The contents of +the NOTICE file are for informational purposes only and do not modify the +License. You may add Your own attribution notices within Derivative Works that +You distribute, alongside or as an addendum to the NOTICE text from the Work, +provided that such additional attribution notices cannot be construed as +modifying the License. +You may add Your own copyright statement to Your modifications and may provide +additional or different license terms and conditions for use, reproduction, or +distribution of Your modifications, or for any such Derivative Works as a whole, +provided Your use, reproduction, and distribution of the Work otherwise complies +with the conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted +for inclusion in the Work by You to the Licensor shall be under the terms and +conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of +any separate license agreement you may have executed with Licensor regarding +such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, +service marks, or product names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the +Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are +solely responsible for determining the appropriateness of using or +redistributing the Work and assume any risks associated with Your exercise of +permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), +contract, or otherwise, unless required by applicable law (such as deliberate +and grossly negligent acts) or agreed to in writing, shall any Contributor be +liable to You for damages, including any direct, indirect, special, incidental, +or consequential damages of any character arising as a result of this License or +out of the use or inability to use the Work (including but not limited to +damages for loss of goodwill, work stoppage, computer failure or malfunction, or +any and all other commercial damages or losses), even if such Contributor has +been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to +offer, and charge a fee for, acceptance of support, warranty, indemnity, or +other liability obligations and/or rights consistent with this License. However, +in accepting such obligations, You may act only on Your own behalf and on Your +sole responsibility, not on behalf of any other Contributor, and only if You +agree to indemnify, defend, and hold each Contributor harmless for any liability +incurred by, or claims asserted against, such Contributor by reason of your +accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work + +To apply the Apache License to your work, attach the following boilerplate +notice, with the fields enclosed by brackets "[]" replaced with your own +identifying information. (Don't include the brackets!) The text should be +enclosed in the appropriate comment syntax for the file format. We also +recommend that a file or class name and description of purpose be included on +the same "printed page" as the copyright notice for easier identification within +third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/_vendor/collections_extended/__init__.py b/_vendor/collections_extended/__init__.py new file mode 100644 index 00000000..039fee03 --- /dev/null +++ b/_vendor/collections_extended/__init__.py @@ -0,0 +1,55 @@ +"""collections_extended contains a few extra basic data structures.""" +from ._compat import Collection +from .bags import bag, frozenbag +from .setlists import setlist, frozensetlist +from .bijection import bijection +from .range_map import RangeMap, MappedRange + +__version__ = '1.0.2' + +__all__ = ( + 'collection', + 'setlist', + 'frozensetlist', + 'bag', + 'frozenbag', + 'bijection', + 'RangeMap', + 'MappedRange', + 'Collection', + ) + + +def collection(iterable=None, mutable=True, ordered=False, unique=False): + """Return a Collection with the specified properties. + + Args: + iterable (Iterable): collection to instantiate new collection from. + mutable (bool): Whether or not the new collection is mutable. + ordered (bool): Whether or not the new collection is ordered. + unique (bool): Whether or not the new collection contains only unique values. + """ + if iterable is None: + iterable = tuple() + if unique: + if ordered: + if mutable: + return setlist(iterable) + else: + return frozensetlist(iterable) + else: + if mutable: + return set(iterable) + else: + return frozenset(iterable) + else: + if ordered: + if mutable: + return list(iterable) + else: + return tuple(iterable) + else: + if mutable: + return bag(iterable) + else: + return frozenbag(iterable) diff --git a/_vendor/collections_extended/_compat.py b/_vendor/collections_extended/_compat.py new file mode 100644 index 00000000..bbf0fbd9 --- /dev/null +++ b/_vendor/collections_extended/_compat.py @@ -0,0 +1,53 @@ +"""Python 2/3 compatibility helpers.""" +import sys + +is_py2 = sys.version_info[0] == 2 + +if is_py2: + def keys_set(d): + """Return a set of passed dictionary's keys.""" + return set(d.keys()) +else: + keys_set = dict.keys + + +if sys.version_info < (3, 6): + from collections import Sized, Iterable, Container + + def _check_methods(C, *methods): + mro = C.__mro__ + for method in methods: + for B in mro: + if method in B.__dict__: + if B.__dict__[method] is None: + return NotImplemented + break + else: + return NotImplemented + return True + + class Collection(Sized, Iterable, Container): + """Backport from Python3.6.""" + + __slots__ = tuple() + + @classmethod + def __subclasshook__(cls, C): + if cls is Collection: + return _check_methods(C, "__len__", "__iter__", "__contains__") + return NotImplemented + +else: + from collections.abc import Collection + + +def handle_rich_comp_not_implemented(): + """Correctly handle unimplemented rich comparisons. + + In Python 3, return NotImplemented. + In Python 2, raise a TypeError. + """ + if is_py2: + raise TypeError() + else: + return NotImplemented diff --git a/_vendor/collections_extended/_util.py b/_vendor/collections_extended/_util.py new file mode 100644 index 00000000..58a83f45 --- /dev/null +++ b/_vendor/collections_extended/_util.py @@ -0,0 +1,16 @@ +"""util functions for collections_extended.""" + + +def hash_iterable(it): + """Perform a O(1) memory hash of an iterable of arbitrary length. + + hash(tuple(it)) creates a temporary tuple containing all values from it + which could be a problem if it is large. + + See discussion at: + https://groups.google.com/forum/#!msg/python-ideas/XcuC01a8SYs/e-doB9TbDwAJ + """ + hash_value = hash(type(it)) + for value in it: + hash_value = hash((hash_value, value)) + return hash_value diff --git a/_vendor/collections_extended/bags.py b/_vendor/collections_extended/bags.py new file mode 100644 index 00000000..cce132fe --- /dev/null +++ b/_vendor/collections_extended/bags.py @@ -0,0 +1,527 @@ +"""Bag class definitions.""" +import heapq +from operator import itemgetter +from collections import Set, MutableSet, Hashable + +from . import _compat + + +class _basebag(Set): + """Base class for bag classes. + + Base class for bag and frozenbag. Is not mutable and not hashable, so there's + no reason to use this instead of either bag or frozenbag. + """ + + # Basic object methods + + def __init__(self, iterable=None): + """Create a new basebag. + + If iterable isn't given, is None or is empty then the bag starts empty. + Otherwise each element from iterable will be added to the bag + however many times it appears. + + This runs in O(len(iterable)) + """ + self._dict = dict() + self._size = 0 + if iterable: + if isinstance(iterable, _basebag): + for elem, count in iterable._dict.items(): + self._dict[elem] = count + self._size += count + else: + for value in iterable: + self._dict[value] = self._dict.get(value, 0) + 1 + self._size += 1 + + def __repr__(self): + if self._size == 0: + return '{0}()'.format(self.__class__.__name__) + else: + repr_format = '{class_name}({values!r})' + return repr_format.format( + class_name=self.__class__.__name__, + values=tuple(self), + ) + + def __str__(self): + if self._size == 0: + return '{class_name}()'.format(class_name=self.__class__.__name__) + else: + format_single = '{elem!r}' + format_mult = '{elem!r}^{mult}' + strings = [] + for elem, mult in self._dict.items(): + if mult > 1: + strings.append(format_mult.format(elem=elem, mult=mult)) + else: + strings.append(format_single.format(elem=elem)) + return '{%s}' % ', '.join(strings) + + # New public methods (not overriding/implementing anything) + + def num_unique_elements(self): + """Return the number of unique elements. + + This runs in O(1) time + """ + return len(self._dict) + + def unique_elements(self): + """Return a view of unique elements in this bag. + + In Python 3: + This runs in O(1) time and returns a view of the unique elements + In Python 2: + This runs in O(n) and returns set of the current elements. + """ + return _compat.keys_set(self._dict) + + def count(self, value): + """Return the number of value present in this bag. + + If value is not in the bag no Error is raised, instead 0 is returned. + + This runs in O(1) time + + Args: + value: The element of self to get the count of + Returns: + int: The count of value in self + """ + return self._dict.get(value, 0) + + def nlargest(self, n=None): + """List the n most common elements and their counts. + + List is from the most + common to the least. If n is None, the list all element counts. + + Run time should be O(m log m) where m is len(self) + Args: + n (int): The number of elements to return + """ + if n is None: + return sorted(self._dict.items(), key=itemgetter(1), reverse=True) + else: + return heapq.nlargest(n, self._dict.items(), key=itemgetter(1)) + + @classmethod + def _from_iterable(cls, it): + return cls(it) + + @classmethod + def from_mapping(cls, mapping): + """Create a bag from a dict of elem->count. + + Each key in the dict is added if the value is > 0. + """ + out = cls() + for elem, count in mapping.items(): + if count > 0: + out._dict[elem] = count + out._size += count + return out + + def copy(self): + """Create a shallow copy of self. + + This runs in O(len(self.num_unique_elements())) + """ + return self.from_mapping(self._dict) + + # implementing Sized methods + + def __len__(self): + """Return the cardinality of the bag. + + This runs in O(1) + """ + return self._size + + # implementing Container methods + + def __contains__(self, value): + """Return the multiplicity of the element. + + This runs in O(1) + """ + return self._dict.get(value, 0) + + # implementing Iterable methods + + def __iter__(self): + """Iterate through all elements. + + Multiple copies will be returned if they exist. + """ + for value, count in self._dict.items(): + for i in range(count): + yield(value) + + # Comparison methods + + def _is_subset(self, other): + """Check that every element in self has a count <= in other. + + Args: + other (Set) + """ + if isinstance(other, _basebag): + for elem, count in self._dict.items(): + if not count <= other._dict.get(elem, 0): + return False + else: + for elem in self: + if self._dict.get(elem, 0) > 1 or elem not in other: + return False + return True + + def _is_superset(self, other): + """Check that every element in self has a count >= in other. + + Args: + other (Set) + """ + if isinstance(other, _basebag): + for elem, count in other._dict.items(): + if not self._dict.get(elem, 0) >= count: + return False + else: + for elem in other: + if elem not in self: + return False + return True + + def __le__(self, other): + if not isinstance(other, Set): + return _compat.handle_rich_comp_not_implemented() + return len(self) <= len(other) and self._is_subset(other) + + def __lt__(self, other): + if not isinstance(other, Set): + return _compat.handle_rich_comp_not_implemented() + return len(self) < len(other) and self._is_subset(other) + + def __gt__(self, other): + if not isinstance(other, Set): + return _compat.handle_rich_comp_not_implemented() + return len(self) > len(other) and self._is_superset(other) + + def __ge__(self, other): + if not isinstance(other, Set): + return _compat.handle_rich_comp_not_implemented() + return len(self) >= len(other) and self._is_superset(other) + + def __eq__(self, other): + if not isinstance(other, Set): + return False + if isinstance(other, _basebag): + return self._dict == other._dict + if not len(self) == len(other): + return False + for elem in other: + if self._dict.get(elem, 0) != 1: + return False + return True + + def __ne__(self, other): + return not (self == other) + + # Operations - &, |, +, -, ^, * and isdisjoint + + def __and__(self, other): + """Intersection is the minimum of corresponding counts. + + This runs in O(l + n) where: + n is self.num_unique_elements() + if other is a bag: + l = 1 + else: + l = len(other) + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + values = dict() + for elem in self._dict: + values[elem] = min(other._dict.get(elem, 0), self._dict.get(elem, 0)) + return self.from_mapping(values) + + def isdisjoint(self, other): + """Return if this bag is disjoint with the passed collection. + + This runs in O(len(other)) + + TODO move isdisjoint somewhere more appropriate + """ + for value in other: + if value in self: + return False + return True + + def __or__(self, other): + """Union is the maximum of all elements. + + This runs in O(m + n) where: + n is self.num_unique_elements() + if other is a bag: + m = other.num_unique_elements() + else: + m = len(other) + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + values = dict() + for elem in self.unique_elements() | other.unique_elements(): + values[elem] = max(self._dict.get(elem, 0), other._dict.get(elem, 0)) + return self.from_mapping(values) + + def __add__(self, other): + """Return a new bag also containing all the elements of other. + + self + other = self & other + self | other + + This runs in O(m + n) where: + n is self.num_unique_elements() + m is len(other) + Args: + other (Iterable): elements to add to self + """ + out = self.copy() + for value in other: + out._dict[value] = out._dict.get(value, 0) + 1 + out._size += 1 + return out + + def __sub__(self, other): + """Difference between the sets. + + For normal sets this is all x s.t. x in self and x not in other. + For bags this is count(x) = max(0, self.count(x)-other.count(x)) + + This runs in O(m + n) where: + n is self.num_unique_elements() + m is len(other) + Args: + other (Iterable): elements to remove + """ + out = self.copy() + for value in other: + old_count = out._dict.get(value, 0) + if old_count == 1: + del out._dict[value] + out._size -= 1 + elif old_count > 1: + out._dict[value] = old_count - 1 + out._size -= 1 + return out + + def __mul__(self, other): + """Cartesian product of the two sets. + + other can be any iterable. + Both self and other must contain elements that can be added together. + + This should run in O(m*n+l) where: + m is the number of unique elements in self + n is the number of unique elements in other + if other is a bag: + l is 0 + else: + l is the len(other) + The +l will only really matter when other is an iterable with MANY + repeated elements. + For example: {'a'^2} * 'bbbbbbbbbbbbbbbbbbbbbbbbbb' + The algorithm will be dominated by counting the 'b's + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + values = dict() + for elem, count in self._dict.items(): + for other_elem, other_count in other._dict.items(): + new_elem = elem + other_elem + new_count = count * other_count + values[new_elem] = new_count + return self.from_mapping(values) + + def __xor__(self, other): + """Symmetric difference between the sets. + + other can be any iterable. + + This runs in O(m + n) where: + m = len(self) + n = len(other) + """ + return (self - other) | (other - self) + + +class bag(_basebag, MutableSet): + """bag is a mutable unhashable bag.""" + + def pop(self): + """Remove and return an element of self.""" + # TODO can this be done more efficiently (no need to create an iterator)? + it = iter(self) + try: + value = next(it) + except StopIteration: + raise KeyError + self.discard(value) + return value + + def add(self, elem): + """Add elem to self.""" + self._dict[elem] = self._dict.get(elem, 0) + 1 + self._size += 1 + + def discard(self, elem): + """Remove elem from this bag, silent if it isn't present.""" + try: + self.remove(elem) + except ValueError: + pass + + def remove(self, elem): + """Remove elem from this bag, raising a ValueError if it isn't present. + + Args: + elem: object to remove from self + Raises: + ValueError: if the elem isn't present + """ + old_count = self._dict.get(elem, 0) + if old_count == 0: + raise ValueError + elif old_count == 1: + del self._dict[elem] + else: + self._dict[elem] -= 1 + self._size -= 1 + + def discard_all(self, other): + """Discard all of the elems from other.""" + if not isinstance(other, _basebag): + other = self._from_iterable(other) + for elem, other_count in other._dict.items(): + old_count = self._dict.get(elem, 0) + new_count = old_count - other_count + if new_count >= 0: + if new_count == 0: + if elem in self: + del self._dict[elem] + else: + self._dict[elem] = new_count + self._size += new_count - old_count + + def remove_all(self, other): + """Remove all of the elems from other. + + Raises a ValueError if the multiplicity of any elem in other is greater + than in self. + """ + if not self._is_superset(other): + raise ValueError + self.discard_all(other) + + def clear(self): + """Remove all elements from this bag.""" + self._dict = dict() + self._size = 0 + + # In-place operations + + def __ior__(self, other): + """Set multiplicity of each element to the maximum of the two collections. + + if isinstance(other, _basebag): + This runs in O(other.num_unique_elements()) + else: + This runs in O(len(other)) + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + for elem, other_count in other._dict.items(): + old_count = self._dict.get(elem, 0) + new_count = max(other_count, old_count) + self._dict[elem] = new_count + self._size += new_count - old_count + return self + + def __iand__(self, other): + """Set multiplicity of each element to the minimum of the two collections. + + if isinstance(other, _basebag): + This runs in O(other.num_unique_elements()) + else: + This runs in O(len(other)) + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + for elem, old_count in set(self._dict.items()): + other_count = other._dict.get(elem, 0) + new_count = min(other_count, old_count) + if new_count == 0: + del self._dict[elem] + else: + self._dict[elem] = new_count + self._size += new_count - old_count + return self + + def __ixor__(self, other): + """Set self to the symmetric difference between the sets. + + if isinstance(other, _basebag): + This runs in O(other.num_unique_elements()) + else: + This runs in O(len(other)) + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + other_minus_self = other - self + self -= other + self |= other_minus_self + return self + + def __isub__(self, other): + """Discard the elements of other from self. + + if isinstance(it, _basebag): + This runs in O(it.num_unique_elements()) + else: + This runs in O(len(it)) + """ + self.discard_all(other) + return self + + def __iadd__(self, other): + """Add all of the elements of other to self. + + if isinstance(it, _basebag): + This runs in O(it.num_unique_elements()) + else: + This runs in O(len(it)) + """ + if not isinstance(other, _basebag): + other = self._from_iterable(other) + for elem, other_count in other._dict.items(): + self._dict[elem] = self._dict.get(elem, 0) + other_count + self._size += other_count + return self + + +class frozenbag(_basebag, Hashable): + """frozenbag is an immutable, hashable bab.""" + + def __hash__(self): + """Compute the hash value of a frozenbag. + + This was copied directly from _collections_abc.Set._hash in Python3 which + is identical to _abcoll.Set._hash + We can't call it directly because Python2 raises a TypeError. + """ + if not hasattr(self, '_hash_value'): + self._hash_value = self._hash() + return self._hash_value diff --git a/_vendor/collections_extended/bijection.py b/_vendor/collections_extended/bijection.py new file mode 100644 index 00000000..f9641de4 --- /dev/null +++ b/_vendor/collections_extended/bijection.py @@ -0,0 +1,94 @@ +"""Class definition for bijection.""" + +from collections import MutableMapping, Mapping + + +class bijection(MutableMapping): + """A one-to-one onto mapping, a dict with unique values.""" + + def __init__(self, iterable=None, **kwarg): + """Create a bijection from an iterable. + + Matches dict.__init__. + """ + self._data = {} + self.__inverse = self.__new__(bijection) + self.__inverse._data = {} + self.__inverse.__inverse = self + if iterable is not None: + if isinstance(iterable, Mapping): + for key, value in iterable.items(): + self[key] = value + else: + for pair in iterable: + self[pair[0]] = pair[1] + for key, value in kwarg.items(): + self[key] = value + + def __repr__(self): + if len(self._data) == 0: + return '{0}()'.format(self.__class__.__name__) + else: + repr_format = '{class_name}({values!r})' + return repr_format.format( + class_name=self.__class__.__name__, + values=self._data, + ) + + @property + def inverse(self): + """Return the inverse of this bijection.""" + return self.__inverse + + # Required for MutableMapping + def __len__(self): + return len(self._data) + + # Required for MutableMapping + def __getitem__(self, key): + return self._data[key] + + # Required for MutableMapping + def __setitem__(self, key, value): + if key in self: + del self.inverse._data[self[key]] + if value in self.inverse: + del self._data[self.inverse[value]] + self._data[key] = value + self.inverse._data[value] = key + + # Required for MutableMapping + def __delitem__(self, key): + value = self._data.pop(key) + del self.inverse._data[value] + + # Required for MutableMapping + def __iter__(self): + return iter(self._data) + + def __contains__(self, key): + return key in self._data + + def clear(self): + """Remove everything from this bijection.""" + self._data.clear() + self.inverse._data.clear() + + def copy(self): + """Return a copy of this bijection.""" + return bijection(self) + + def items(self): + """See Mapping.items.""" + return self._data.items() + + def keys(self): + """See Mapping.keys.""" + return self._data.keys() + + def values(self): + """See Mapping.values.""" + return self.inverse.keys() + + def __eq__(self, other): + return isinstance(other, bijection) and self._data == other._data diff --git a/_vendor/collections_extended/range_map.py b/_vendor/collections_extended/range_map.py new file mode 100644 index 00000000..19a61238 --- /dev/null +++ b/_vendor/collections_extended/range_map.py @@ -0,0 +1,384 @@ +"""RangeMap class definition.""" +from bisect import bisect_left, bisect_right +from collections import namedtuple, Mapping, MappingView, Set + + +# Used to mark unmapped ranges +_empty = object() + +MappedRange = namedtuple('MappedRange', ('start', 'stop', 'value')) + + +class KeysView(MappingView, Set): + """A view of the keys that mark the starts of subranges. + + Since iterating over all the keys is impossible, the KeysView only + contains the keys that start each subrange. + """ + + __slots__ = () + + @classmethod + def _from_iterable(self, it): + return set(it) + + def __contains__(self, key): + loc = self._mapping._bisect_left(key) + return self._mapping._keys[loc] == key and \ + self._mapping._values[loc] is not _empty + + def __iter__(self): + for item in self._mapping.ranges(): + yield item.start + + +class ItemsView(MappingView, Set): + """A view of the items that mark the starts of subranges. + + Since iterating over all the keys is impossible, the ItemsView only + contains the items that start each subrange. + """ + + __slots__ = () + + @classmethod + def _from_iterable(self, it): + return set(it) + + def __contains__(self, item): + key, value = item + loc = self._mapping._bisect_left(key) + return self._mapping._keys[loc] == key and \ + self._mapping._values[loc] == value + + def __iter__(self): + for mapped_range in self._mapping.ranges(): + yield (mapped_range.start, mapped_range.value) + + +class ValuesView(MappingView): + """A view on the values of a Mapping.""" + + __slots__ = () + + def __contains__(self, value): + return value in self._mapping._values + + def __iter__(self): + for value in self._mapping._values: + if value is not _empty: + yield value + + +def _check_start_stop(start, stop): + """Check that start and stop are valid - orderable and in the right order. + + Raises: + ValueError: if stop <= start + TypeError: if unorderable + """ + if start is not None and stop is not None and stop <= start: + raise ValueError('stop must be > start') + + +def _check_key_slice(key): + if not isinstance(key, slice): + raise TypeError('Can only set and delete slices') + if key.step is not None: + raise ValueError('Cannot set or delete slices with steps') + + +class RangeMap(Mapping): + """Map ranges of orderable elements to values.""" + + def __init__(self, iterable=None, **kwargs): + """Create a RangeMap. + + A mapping or other iterable can be passed to initialize the RangeMap. + If mapping is passed, it is interpreted as a mapping from range start + indices to values. + If an iterable is passed, each element will define a range in the + RangeMap and should be formatted (start, stop, value). + + default_value is a an optional keyword argument that will initialize the + entire RangeMap to that value. Any missing ranges will be mapped to that + value. However, if ranges are subsequently deleted they will be removed + and *not* mapped to the default_value. + + Args: + iterable: A Mapping or an Iterable to initialize from. + default_value: If passed, the return value for all keys less than the + least key in mapping or missing ranges in iterable. If no mapping + or iterable, the return value for all keys. + """ + default_value = kwargs.pop('default_value', _empty) + if kwargs: + raise TypeError('Unknown keyword arguments: %s' % ', '.join(kwargs.keys())) + self._keys = [None] + self._values = [default_value] + if iterable: + if isinstance(iterable, Mapping): + self._init_from_mapping(iterable) + else: + self._init_from_iterable(iterable) + + @classmethod + def from_mapping(cls, mapping): + """Create a RangeMap from a mapping of interval starts to values.""" + obj = cls() + obj._init_from_mapping(mapping) + return obj + + def _init_from_mapping(self, mapping): + for key, value in sorted(mapping.items()): + self.set(value, key) + + @classmethod + def from_iterable(cls, iterable): + """Create a RangeMap from an iterable of tuples defining each range. + + Each element of the iterable is a tuple (start, stop, value). + """ + obj = cls() + obj._init_from_iterable(iterable) + return obj + + def _init_from_iterable(self, iterable): + for start, stop, value in iterable: + self.set(value, start=start, stop=stop) + + def __str__(self): + range_format = '({range.start}, {range.stop}): {range.value}' + values = ', '.join([range_format.format(range=r) for r in self.ranges()]) + return 'RangeMap(%s)' % values + + def __repr__(self): + range_format = '({range.start!r}, {range.stop!r}, {range.value!r})' + values = ', '.join([range_format.format(range=r) for r in self.ranges()]) + return 'RangeMap([%s])' % values + + def _bisect_left(self, key): + """Return the index of the key or the last key < key.""" + if key is None: + return 0 + else: + return bisect_left(self._keys, key, lo=1) + + def _bisect_right(self, key): + """Return the index of the first key > key.""" + if key is None: + return 1 + else: + return bisect_right(self._keys, key, lo=1) + + def ranges(self, start=None, stop=None): + """Generate MappedRanges for all mapped ranges. + + Yields: + MappedRange + """ + _check_start_stop(start, stop) + start_loc = self._bisect_right(start) + if stop is None: + stop_loc = len(self._keys) + else: + stop_loc = self._bisect_left(stop) + start_val = self._values[start_loc - 1] + candidate_keys = [start] + self._keys[start_loc:stop_loc] + [stop] + candidate_values = [start_val] + self._values[start_loc:stop_loc] + for i, value in enumerate(candidate_values): + if value is not _empty: + start_key = candidate_keys[i] + stop_key = candidate_keys[i + 1] + yield MappedRange(start_key, stop_key, value) + + def __contains__(self, value): + try: + self.__getitem(value) is not _empty + except KeyError: + return False + else: + return True + + def __iter__(self): + for key, value in zip(self._keys, self._values): + if value is not _empty: + yield key + + def __bool__(self): + if len(self._keys) > 1: + return True + else: + return self._values[0] != _empty + + __nonzero__ = __bool__ + + def __getitem(self, key): + """Get the value for a key (not a slice).""" + loc = self._bisect_right(key) - 1 + value = self._values[loc] + if value is _empty: + raise KeyError(key) + else: + return value + + def get(self, key, restval=None): + """Get the value of the range containing key, otherwise return restval.""" + try: + return self.__getitem(key) + except KeyError: + return restval + + def get_range(self, start=None, stop=None): + """Return a RangeMap for the range start to stop. + + Returns: + A RangeMap + """ + return self.from_iterable(self.ranges(start, stop)) + + def set(self, value, start=None, stop=None): + """Set the range from start to stop to value.""" + _check_start_stop(start, stop) + # start_index, stop_index will denote the sections we are replacing + start_index = self._bisect_left(start) + if start is not None: # start_index == 0 + prev_value = self._values[start_index - 1] + if prev_value == value: + # We're setting a range where the left range has the same + # value, so create one big range + start_index -= 1 + start = self._keys[start_index] + if stop is None: + new_keys = [start] + new_values = [value] + stop_index = len(self._keys) + else: + stop_index = self._bisect_right(stop) + stop_value = self._values[stop_index - 1] + stop_key = self._keys[stop_index - 1] + if stop_key == stop and stop_value == value: + new_keys = [start] + new_values = [value] + else: + new_keys = [start, stop] + new_values = [value, stop_value] + self._keys[start_index:stop_index] = new_keys + self._values[start_index:stop_index] = new_values + + def delete(self, start=None, stop=None): + """Delete the range from start to stop from self. + + Raises: + KeyError: If part of the passed range isn't mapped. + """ + _check_start_stop(start, stop) + start_loc = self._bisect_right(start) - 1 + if stop is None: + stop_loc = len(self._keys) + else: + stop_loc = self._bisect_left(stop) + for value in self._values[start_loc:stop_loc]: + if value is _empty: + raise KeyError((start, stop)) + # this is inefficient, we've already found the sub ranges + self.set(_empty, start=start, stop=stop) + + def empty(self, start=None, stop=None): + """Empty the range from start to stop. + + Like delete, but no Error is raised if the entire range isn't mapped. + """ + self.set(_empty, start=start, stop=stop) + + def clear(self): + """Remove all elements.""" + self._keys = [None] + self._values = [_empty] + + @property + def start(self): + """Get the start key of the first range. + + None if RangeMap is empty or unbounded to the left. + """ + if self._values[0] is _empty: + try: + return self._keys[1] + except IndexError: + # This is empty or everything is mapped to a single value + return None + else: + # This is unbounded to the left + return self._keys[0] + + @property + def end(self): + """Get the stop key of the last range. + + None if RangeMap is empty or unbounded to the right. + """ + if self._values[-1] is _empty: + return self._keys[-1] + else: + # This is unbounded to the right + return None + + def __eq__(self, other): + if isinstance(other, RangeMap): + return ( + self._keys == other._keys and + self._values == other._values + ) + else: + return False + + def __getitem__(self, key): + try: + _check_key_slice(key) + except TypeError: + return self.__getitem(key) + else: + return self.get_range(key.start, key.stop) + + def __setitem__(self, key, value): + _check_key_slice(key) + self.set(value, key.start, key.stop) + + def __delitem__(self, key): + _check_key_slice(key) + self.delete(key.start, key.stop) + + def __len__(self): + count = 0 + for v in self._values: + if v is not _empty: + count += 1 + return count + + def keys(self): + """Return a view of the keys.""" + return KeysView(self) + + def values(self): + """Return a view of the values.""" + return ValuesView(self) + + def items(self): + """Return a view of the item pairs.""" + return ItemsView(self) + + # Python2 - override slice methods + def __setslice__(self, i, j, value): + """Implement __setslice__ to override behavior in Python 2. + + This is required because empty slices pass integers in python2 as opposed + to None in python 3. + """ + raise SyntaxError('Assigning slices doesn\t work in Python 2, use set') + + def __delslice__(self, i, j): + raise SyntaxError('Deleting slices doesn\t work in Python 2, use delete') + + def __getslice__(self, i, j): + raise SyntaxError('Getting slices doesn\t work in Python 2, use get_range.') diff --git a/_vendor/collections_extended/setlists.py b/_vendor/collections_extended/setlists.py new file mode 100644 index 00000000..2976077c --- /dev/null +++ b/_vendor/collections_extended/setlists.py @@ -0,0 +1,552 @@ +"""Setlist class definitions.""" +import random as random_ + +from collections import ( + Sequence, + Set, + MutableSequence, + MutableSet, + Hashable, + ) + +from . import _util + + +class _basesetlist(Sequence, Set): + """A setlist is an ordered Collection of unique elements. + + _basesetlist is the superclass of setlist and frozensetlist. It is immutable + and unhashable. + """ + + def __init__(self, iterable=None, raise_on_duplicate=False): + """Create a setlist. + + Args: + iterable (Iterable): Values to initialize the setlist with. + """ + self._list = list() + self._dict = dict() + if iterable: + if raise_on_duplicate: + self._extend(iterable) + else: + self._update(iterable) + + def __repr__(self): + if len(self) == 0: + return '{0}()'.format(self.__class__.__name__) + else: + repr_format = '{class_name}({values!r})' + return repr_format.format( + class_name=self.__class__.__name__, + values=tuple(self), + ) + + # Convenience methods + def _fix_neg_index(self, index): + if index < 0: + index += len(self) + if index < 0: + raise IndexError('index is out of range') + return index + + def _fix_end_index(self, index): + if index is None: + return len(self) + else: + return self._fix_neg_index(index) + + def _append(self, value): + # Checking value in self will check that value is Hashable + if value in self: + raise ValueError('Value "%s" already present' % str(value)) + else: + self._dict[value] = len(self) + self._list.append(value) + + def _extend(self, values): + new_values = set() + for value in values: + if value in new_values: + raise ValueError('New values contain duplicates') + elif value in self: + raise ValueError('New values contain elements already present in self') + else: + new_values.add(value) + for value in values: + self._dict[value] = len(self) + self._list.append(value) + + def _add(self, item): + if item not in self: + self._dict[item] = len(self) + self._list.append(item) + + def _update(self, values): + for value in values: + if value not in self: + self._dict[value] = len(self) + self._list.append(value) + + @classmethod + def _from_iterable(cls, it, **kwargs): + return cls(it, **kwargs) + + # Implement Container + def __contains__(self, value): + return value in self._dict + + # Iterable we get by inheriting from Sequence + + # Implement Sized + def __len__(self): + return len(self._list) + + # Implement Sequence + def __getitem__(self, index): + if isinstance(index, slice): + return self._from_iterable(self._list[index]) + return self._list[index] + + def count(self, value): + """Return the number of occurences of value in self. + + This runs in O(1) + + Args: + value: The value to count + Returns: + int: 1 if the value is in the setlist, otherwise 0 + """ + if value in self: + return 1 + else: + return 0 + + def index(self, value, start=0, end=None): + """Return the index of value between start and end. + + By default, the entire setlist is searched. + + This runs in O(1) + + Args: + value: The value to find the index of + start (int): The index to start searching at (defaults to 0) + end (int): The index to stop searching at (defaults to the end of the list) + Returns: + int: The index of the value + Raises: + ValueError: If the value is not in the list or outside of start - end + IndexError: If start or end are out of range + """ + try: + index = self._dict[value] + except KeyError: + raise ValueError + else: + start = self._fix_neg_index(start) + end = self._fix_end_index(end) + if start <= index and index < end: + return index + else: + raise ValueError + + @classmethod + def _check_type(cls, other, operand_name): + if not isinstance(other, _basesetlist): + message = ( + "unsupported operand type(s) for {operand_name}: " + "'{self_type}' and '{other_type}'").format( + operand_name=operand_name, + self_type=cls, + other_type=type(other), + ) + raise TypeError(message) + + def __add__(self, other): + self._check_type(other, '+') + out = self.copy() + out._extend(other) + return out + + # Implement Set + + def issubset(self, other): + return self <= other + + def issuperset(self, other): + return self >= other + + def union(self, other): + out = self.copy() + out.update(other) + return out + + def intersection(self, other): + other = set(other) + return self._from_iterable(item for item in self if item in other) + + def difference(self, other): + other = set(other) + return self._from_iterable(item for item in self if item not in other) + + def symmetric_difference(self, other): + return self.union(other) - self.intersection(other) + + def __sub__(self, other): + self._check_type(other, '-') + return self.difference(other) + + def __and__(self, other): + self._check_type(other, '&') + return self.intersection(other) + + def __or__(self, other): + self._check_type(other, '|') + return self.union(other) + + def __xor__(self, other): + self._check_type(other, '^') + return self.symmetric_difference(other) + + # Comparison + + def __eq__(self, other): + if not isinstance(other, _basesetlist): + return False + if not len(self) == len(other): + return False + for self_elem, other_elem in zip(self, other): + if self_elem != other_elem: + return False + return True + + def __ne__(self, other): + return not (self == other) + + # New methods + + def sub_index(self, sub, start=0, end=None): + """Return the index of a subsequence. + + This runs in O(len(sub)) + + Args: + sub (Sequence): An Iterable to search for + Returns: + int: The index of the first element of sub + Raises: + ValueError: If sub isn't a subsequence + TypeError: If sub isn't iterable + IndexError: If start or end are out of range + """ + start_index = self.index(sub[0], start, end) + end = self._fix_end_index(end) + if start_index + len(sub) > end: + raise ValueError + for i in range(1, len(sub)): + if sub[i] != self[start_index + i]: + raise ValueError + return start_index + + def copy(self): + return self.__class__(self) + + +class setlist(_basesetlist, MutableSequence, MutableSet): + """A mutable (unhashable) setlist.""" + + def __str__(self): + return '{[%s}]' % ', '.join(repr(v) for v in self) + + # Helper methods + def _delete_all(self, elems_to_delete, raise_errors): + indices_to_delete = set() + for elem in elems_to_delete: + try: + elem_index = self._dict[elem] + except KeyError: + if raise_errors: + raise ValueError('Passed values contain elements not in self') + else: + if elem_index in indices_to_delete: + if raise_errors: + raise ValueError('Passed vales contain duplicates') + indices_to_delete.add(elem_index) + self._delete_values_by_index(indices_to_delete) + + def _delete_values_by_index(self, indices_to_delete): + deleted_count = 0 + for i, elem in enumerate(self._list): + if i in indices_to_delete: + deleted_count += 1 + del self._dict[elem] + else: + new_index = i - deleted_count + self._list[new_index] = elem + self._dict[elem] = new_index + # Now remove deleted_count items from the end of the list + if deleted_count: + self._list = self._list[:-deleted_count] + + # Set/Sequence agnostic + def pop(self, index=-1): + """Remove and return the item at index.""" + value = self._list.pop(index) + del self._dict[value] + return value + + def clear(self): + """Remove all elements from self.""" + self._dict = dict() + self._list = list() + + # Implement MutableSequence + def __setitem__(self, index, value): + if isinstance(index, slice): + old_values = self[index] + for v in value: + if v in self and v not in old_values: + raise ValueError + self._list[index] = value + self._dict = {} + for i, v in enumerate(self._list): + self._dict[v] = i + else: + index = self._fix_neg_index(index) + old_value = self._list[index] + if value in self: + if value == old_value: + return + else: + raise ValueError + del self._dict[old_value] + self._list[index] = value + self._dict[value] = index + + def __delitem__(self, index): + if isinstance(index, slice): + indices_to_delete = set(self.index(e) for e in self._list[index]) + self._delete_values_by_index(indices_to_delete) + else: + index = self._fix_neg_index(index) + value = self._list[index] + del self._dict[value] + for elem in self._list[index + 1:]: + self._dict[elem] -= 1 + del self._list[index] + + def insert(self, index, value): + """Insert value at index. + + Args: + index (int): Index to insert value at + value: Value to insert + Raises: + ValueError: If value already in self + IndexError: If start or end are out of range + """ + if value in self: + raise ValueError + index = self._fix_neg_index(index) + self._dict[value] = index + for elem in self._list[index:]: + self._dict[elem] += 1 + self._list.insert(index, value) + + def append(self, value): + """Append value to the end. + + Args: + value: Value to append + Raises: + ValueError: If value alread in self + TypeError: If value isn't hashable + """ + self._append(value) + + def extend(self, values): + """Append all values to the end. + + If any of the values are present, ValueError will + be raised and none of the values will be appended. + + Args: + values (Iterable): Values to append + Raises: + ValueError: If any values are already present or there are duplicates + in the passed values. + TypeError: If any of the values aren't hashable. + """ + self._extend(values) + + def __iadd__(self, values): + """Add all values to the end of self. + + Args: + values (Iterable): Values to append + Raises: + ValueError: If any values are already present + """ + self._check_type(values, '+=') + self.extend(values) + return self + + def remove(self, value): + """Remove value from self. + + Args: + value: Element to remove from self + Raises: + ValueError: if element is already present + """ + try: + index = self._dict[value] + except KeyError: + raise ValueError('Value "%s" is not present.') + else: + del self[index] + + def remove_all(self, elems_to_delete): + """Remove all elements from elems_to_delete, raises ValueErrors. + + See Also: + discard_all + Args: + elems_to_delete (Iterable): Elements to remove. + Raises: + ValueError: If the count of any element is greater in + elems_to_delete than self. + TypeError: If any of the values aren't hashable. + """ + self._delete_all(elems_to_delete, raise_errors=True) + + # Implement MutableSet + + def add(self, item): + """Add an item. + + Note: + This does not raise a ValueError for an already present value like + append does. This is to match the behavior of set.add + Args: + item: Item to add + Raises: + TypeError: If item isn't hashable. + """ + self._add(item) + + def update(self, values): + """Add all values to the end. + + If any of the values are present, silently ignore + them (as opposed to extend which raises an Error). + + See also: + extend + Args: + values (Iterable): Values to add + Raises: + TypeError: If any of the values are unhashable. + """ + self._update(values) + + def discard_all(self, elems_to_delete): + """Discard all the elements from elems_to_delete. + + This is much faster than removing them one by one. + This runs in O(len(self) + len(elems_to_delete)) + + Args: + elems_to_delete (Iterable): Elements to discard. + Raises: + TypeError: If any of the values aren't hashable. + """ + self._delete_all(elems_to_delete, raise_errors=False) + + def discard(self, value): + """Discard an item. + + Note: + This does not raise a ValueError for a missing value like remove does. + This is to match the behavior of set.discard + """ + try: + self.remove(value) + except ValueError: + pass + + def difference_update(self, other): + """Update self to include only the differene with other.""" + other = set(other) + indices_to_delete = set() + for i, elem in enumerate(self): + if elem in other: + indices_to_delete.add(i) + if indices_to_delete: + self._delete_values_by_index(indices_to_delete) + + def intersection_update(self, other): + """Update self to include only the intersection with other.""" + other = set(other) + indices_to_delete = set() + for i, elem in enumerate(self): + if elem not in other: + indices_to_delete.add(i) + if indices_to_delete: + self._delete_values_by_index(indices_to_delete) + + def symmetric_difference_update(self, other): + """Update self to include only the symmetric difference with other.""" + other = setlist(other) + indices_to_delete = set() + for i, item in enumerate(self): + if item in other: + indices_to_delete.add(i) + for item in other: + self.add(item) + self._delete_values_by_index(indices_to_delete) + + def __isub__(self, other): + self._check_type(other, '-=') + self.difference_update(other) + return self + + def __iand__(self, other): + self._check_type(other, '&=') + self.intersection_update(other) + return self + + def __ior__(self, other): + self._check_type(other, '|=') + self.update(other) + return self + + def __ixor__(self, other): + self._check_type(other, '^=') + self.symmetric_difference_update(other) + return self + + # New methods + def shuffle(self, random=None): + """Shuffle all of the elements in self randomly.""" + random_.shuffle(self._list, random=random) + for i, elem in enumerate(self._list): + self._dict[elem] = i + + def sort(self, *args, **kwargs): + """Sort this setlist in place.""" + self._list.sort(*args, **kwargs) + for index, value in enumerate(self._list): + self._dict[value] = index + + +class frozensetlist(_basesetlist, Hashable): + """An immutable (hashable) setlist.""" + + def __hash__(self): + if not hasattr(self, '_hash_value'): + self._hash_value = _util.hash_iterable(self) + return self._hash_value From 18f12750509a732506cb8cea1112e432ff0ffffd Mon Sep 17 00:00:00 2001 From: cassidoxa <43386495+cassidoxa@users.noreply.github.com> Date: Sat, 27 Jul 2019 09:13:13 -0400 Subject: [PATCH 014/185] Inverted Mode (#5) Merging in Cassidoxa's inverted mode. I've still not fully reviewed the logic used in this mode, so it should be considered experimental, pending an in depth review by either myself or AA. --- BaseClasses.py | 30 +- Dungeons.py | 9 +- EntranceRandomizer.py | 6 +- EntranceShuffle.py | 1628 +++++++++++++++++++++++++++++++++++++++-- Gui.py | 2 +- InvertedRegions.py | 642 ++++++++++++++++ ItemList.py | 4 +- Main.py | 42 +- README.md | 12 +- Rom.py | 278 ++++++- Rules.py | 680 ++++++++++++++++- Text.py | 3 +- 12 files changed, 3223 insertions(+), 113 deletions(-) create mode 100644 InvertedRegions.py diff --git a/BaseClasses.py b/BaseClasses.py index 29b33a88..2466a3b7 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -431,7 +431,7 @@ class CollectionState(object): self.has('Bug Catching Net', player) and (self.has_Boots(player) or (self.has_sword(player) and self.has('Quake', player))) and cave.can_reach(self) and - (cave.is_light_world or self.has_Pearl(player)) + self.is_not_bunny(cave, player) ) def has_sword(self, player): @@ -455,6 +455,22 @@ class CollectionState(object): def has_fire_source(self, player): return self.has('Fire Rod', player) or self.has('Lamp', player) + def can_flute(self, player): + lw = self.world.get_region('Light World', player) + return self.has('Ocarina', player) and lw.can_reach(self) and self.is_not_bunny(lw, player) + + def can_melt_things(self, player): + return self.has('Fire Rod', player) or (self.has('Bombos', player) and self.has_sword(player)) + + def can_avoid_lasers(self, player): + return self.has('Mirror Shield', player) or self.has('Cane of Byrna', player) or self.has('Cape', player) + + def is_not_bunny(self, region, player): + if self.has_Pearl(player): + return True + + return region.is_light_world if self.world.mode != 'inverted' else region.is_dark_world + def has_misery_mire_medallion(self, player): return self.has(self.world.required_medallions[player][0], player) @@ -933,9 +949,15 @@ class Spoiler(object): self.bosses[str(player)]["Ice Palace"] = self.world.get_dungeon("Ice Palace", player).boss.name self.bosses[str(player)]["Misery Mire"] = self.world.get_dungeon("Misery Mire", player).boss.name self.bosses[str(player)]["Turtle Rock"] = self.world.get_dungeon("Turtle Rock", player).boss.name - self.bosses[str(player)]["Ganons Tower Basement"] = self.world.get_dungeon('Ganons Tower', player).bosses['bottom'].name - self.bosses[str(player)]["Ganons Tower Middle"] = self.world.get_dungeon('Ganons Tower', player).bosses['middle'].name - self.bosses[str(player)]["Ganons Tower Top"] = self.world.get_dungeon('Ganons Tower', player).bosses['top'].name + if self.world.mode != 'inverted': + self.bosses[str(player)]["Ganons Tower Basement"] = self.world.get_dungeon('Ganons Tower', player).bosses['bottom'].name + self.bosses[str(player)]["Ganons Tower Middle"] = self.world.get_dungeon('Ganons Tower', player).bosses['middle'].name + self.bosses[str(player)]["Ganons Tower Top"] = self.world.get_dungeon('Ganons Tower', player).bosses['top'].name + else: + self.bosses[str(player)]["Ganons Tower Basement"] = self.world.get_dungeon('Inverted Ganons Tower', player).bosses['bottom'].name + self.bosses[str(player)]["Ganons Tower Middle"] = self.world.get_dungeon('Inverted Ganons Tower', player).bosses['middle'].name + self.bosses[str(player)]["Ganons Tower Top"] = self.world.get_dungeon('Inverted Ganons Tower', player).bosses['top'].name + self.bosses[str(player)]["Ganons Tower"] = "Agahnim 2" self.bosses[str(player)]["Ganon"] = "Ganon" diff --git a/Dungeons.py b/Dungeons.py index f3e13dd4..12592af7 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -19,7 +19,6 @@ def create_dungeons(world, player): EP = make_dungeon('Eastern Palace', 'Armos Knights', ['Eastern Palace'], ItemFactory('Big Key (Eastern Palace)', player), [], ItemFactory(['Map (Eastern Palace)', 'Compass (Eastern Palace)'], player)) DP = make_dungeon('Desert Palace', 'Lanmolas', ['Desert Palace North', 'Desert Palace Main (Inner)', 'Desert Palace Main (Outer)', 'Desert Palace East'], 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', ['Tower of Hera (Bottom)', 'Tower of Hera (Basement)', 'Tower of Hera (Top)'], ItemFactory('Big Key (Tower of Hera)', player), [ItemFactory('Small Key (Tower of Hera)', player)], ItemFactory(['Map (Tower of Hera)', 'Compass (Tower of Hera)'], player)) - AT = make_dungeon('Agahnims Tower', 'Agahnim', ['Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) PoD = make_dungeon('Palace of Darkness', 'Helmasaur King', ['Palace of Darkness (Entrance)', 'Palace of Darkness (Center)', 'Palace of Darkness (Big Key Chest)', 'Palace of Darkness (Bonk Section)', 'Palace of Darkness (North)', 'Palace of Darkness (Maze)', 'Palace of Darkness (Harmless Hellway)', 'Palace of Darkness (Final Section)'], 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 Town (Entrance)', 'Thieves Town (Deep)', 'Blind Fight'], 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 Woods Final Section (Entrance)', 'Skull Woods First Section', 'Skull Woods Second Section', 'Skull Woods Second Section (Drop)', 'Skull Woods Final Section (Mothula)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Top)'], ItemFactory('Big Key (Skull Woods)', player), ItemFactory(['Small Key (Skull Woods)'] * 2, player), ItemFactory(['Map (Skull Woods)', 'Compass (Skull Woods)'], player)) @@ -27,7 +26,13 @@ def create_dungeons(world, player): IP = make_dungeon('Ice Palace', 'Kholdstare', ['Ice Palace (Entrance)', 'Ice Palace (Main)', 'Ice Palace (East)', 'Ice Palace (East Top)', 'Ice Palace (Kholdstare)'], 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', ['Misery Mire (Entrance)', 'Misery Mire (Main)', 'Misery Mire (West)', 'Misery Mire (Final Area)', 'Misery Mire (Vitreous)'], 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', ['Turtle Rock (Entrance)', 'Turtle Rock (First Section)', 'Turtle Rock (Chain Chomp Room)', 'Turtle Rock (Second Section)', 'Turtle Rock (Big Chest)', 'Turtle Rock (Crystaroller Room)', 'Turtle Rock (Dark Room)', 'Turtle Rock (Eye Bridge)', 'Turtle Rock (Trinexx)'], ItemFactory('Big Key (Turtle Rock)', player), ItemFactory(['Small Key (Turtle Rock)'] * 4, player), ItemFactory(['Map (Turtle Rock)', 'Compass (Turtle Rock)'], player)) - GT = make_dungeon('Ganons Tower', 'Agahnim2', ['Ganons Tower (Entrance)', 'Ganons Tower (Tile Room)', 'Ganons Tower (Compass Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower (Map Room)', 'Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)', 'Ganons Tower (Bottom)', 'Ganons Tower (Top)', 'Ganons Tower (Before Moldorm)', 'Ganons Tower (Moldorm)', 'Agahnim 2'], ItemFactory('Big Key (Ganons Tower)', player), ItemFactory(['Small Key (Ganons Tower)'] * 4, player), ItemFactory(['Map (Ganons Tower)', 'Compass (Ganons Tower)'], player)) + + if world.mode != 'inverted': + AT = make_dungeon('Agahnims Tower', 'Agahnim', ['Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) + GT = make_dungeon('Ganons Tower', 'Agahnim2', ['Ganons Tower (Entrance)', 'Ganons Tower (Tile Room)', 'Ganons Tower (Compass Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower (Map Room)', 'Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)', 'Ganons Tower (Bottom)', 'Ganons Tower (Top)', 'Ganons Tower (Before Moldorm)', 'Ganons Tower (Moldorm)', 'Agahnim 2'], ItemFactory('Big Key (Ganons Tower)', player), ItemFactory(['Small Key (Ganons Tower)'] * 4, player), ItemFactory(['Map (Ganons Tower)', 'Compass (Ganons Tower)'], player)) + else: + AT = make_dungeon('Inverted Agahnims Tower', 'Agahnim', ['Inverted Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) + GT = make_dungeon('Inverted Ganons Tower', 'Agahnim2', ['Inverted Ganons Tower (Entrance)', 'Ganons Tower (Tile Room)', 'Ganons Tower (Compass Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower (Map Room)', 'Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)', 'Ganons Tower (Bottom)', 'Ganons Tower (Top)', 'Ganons Tower (Before Moldorm)', 'Ganons Tower (Moldorm)', 'Agahnim 2'], 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) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index d87358e6..48127426 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -28,7 +28,7 @@ def start(): No Logic: Distribute items without regard for item requirements. ''') - parser.add_argument('--mode', default='open', const='open', nargs='?', choices=['standard', 'open', 'swordless'], + parser.add_argument('--mode', default='open', const='open', nargs='?', choices=['standard', 'open', 'swordless', 'inverted'], help='''\ Select game mode. (default: %(default)s) Open: World starts with Zelda rescued. @@ -42,6 +42,10 @@ def start(): hammer. Misery Mire and Turtle Rock can be opened without a sword. Hammer damages Ganon. Ether and Bombos Tablet can be activated with Hammer (and Book). + Inverted: Starting locations are Dark Sanctuary in West Dark + World or at Link's House, which is shuffled freely. + Requires the moon pearl to be Link in the Light World + instead of a bunny. ''') parser.add_argument('--goal', default='ganon', const='ganon', nargs='?', choices=['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'], help='''\ diff --git a/EntranceShuffle.py b/EntranceShuffle.py index da460244..5718dd86 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -1059,6 +1059,697 @@ def link_entrances(world, player): if world.get_entrance('Ganons Tower', player).connected_region.name != 'Ganons Tower (Entrance)': world.ganonstower_vanilla[player] = False +def link_inverted_entrances(world, player): + # Link's house shuffled freely, Houlihan set in mandatory_connections + + Dungeon_Exits = Inverted_Dungeon_Exits_Base.copy() + Cave_Exits = Cave_Exits_Base.copy() + Old_Man_House = Old_Man_House_Base.copy() + Cave_Three_Exits = Cave_Three_Exits_Base.copy() + + unbias_some_entrances(Dungeon_Exits, Cave_Exits, Old_Man_House, Cave_Three_Exits) + + # setup mandatory connections + for exitname, regionname in inverted_mandatory_connections: + connect_simple(world, exitname, regionname, player) + + # if we do not shuffle, set default connections + if world.shuffle == 'vanilla': + for exitname, regionname in inverted_default_connections: + connect_simple(world, exitname, regionname, player) + for exitname, regionname in inverted_default_dungeon_connections: + connect_simple(world, exitname, regionname, player) + elif world.shuffle == 'dungeonssimple': + for exitname, regionname in inverted_default_connections: + connect_simple(world, exitname, regionname, player) + + simple_shuffle_dungeons(world, player) + elif world.shuffle == 'dungeonsfull': + for exitname, regionname in inverted_default_connections: + connect_simple(world, exitname, regionname, player) + + skull_woods_shuffle(world, player) + + dungeon_exits = list(Dungeon_Exits) + lw_entrances = list(Inverted_LW_Dungeon_Entrances) + lw_dungeon_entrances_must_exit = list(Inverted_LW_Dungeon_Entrances_Must_Exit) + dw_entrances = list(Inverted_DW_Dungeon_Entrances) + + # randomize which desert ledge door is a must-exit + if random.randint(0, 1) == 0: + lw_dungeon_entrances_must_exit.append('Desert Palace Entrance (North)') + dp_must_exit = 'Desert Palace Entrance (North)' + lw_entrances.append('Desert Palace Entrance (West)') + else: + lw_dungeon_entrances_must_exit.append('Desert Palace Entrance (West)') + dp_must_exit = 'Desert Palace Entrance (West)' + lw_entrances.append('Desert Palace Entrance (North)') + + dungeon_exits.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) + lw_entrances.append('Hyrule Castle Entrance (South)') + + if not world.shuffle_ganon: + connect_two_way(world, 'Inverted Ganons Tower', 'Inverted Ganons Tower Exit', player) + hc_ledge_entrances = ['Hyrule Castle Entrance (West)', 'Hyrule Castle Entrance (East)'] + else: + lw_entrances.append('Inverted Ganons Tower') + dungeon_exits.append('Inverted Ganons Tower Exit') + hc_ledge_entrances = ['Hyrule Castle Entrance (West)', 'Hyrule Castle Entrance (East)', 'Inverted Ganons Tower'] + + # shuffle aga door first. If it's on HC ledge, remaining HC ledge door must be must-exit + all_entrances_aga = lw_entrances + dw_entrances + aga_doors = [i for i in all_entrances_aga] + random.shuffle(aga_doors) + aga_door = aga_doors.pop() + + if aga_door in hc_ledge_entrances: + lw_entrances.remove(aga_door) + hc_ledge_entrances.remove(aga_door) + + random.shuffle(hc_ledge_entrances) + hc_ledge_must_exit = hc_ledge_entrances.pop() + lw_entrances.remove(hc_ledge_must_exit) + lw_dungeon_entrances_must_exit.append(hc_ledge_must_exit) + + if aga_door in lw_entrances: + lw_entrances.remove(aga_door) + elif aga_door in dw_entrances: + dw_entrances.remove(aga_door) + + connect_two_way(world, aga_door, 'Inverted Agahnims Tower Exit', player) + dungeon_exits.remove('Inverted Agahnims Tower Exit') + + all_dungeon_entrances = dw_entrances + lw_entrances + connect_mandatory_exits(world, all_dungeon_entrances, dungeon_exits, lw_dungeon_entrances_must_exit, player, dp_must_exit) + + remaining_dw_entrances = [i for i in all_dungeon_entrances if i in dw_entrances] + remaining_lw_entrances = [i for i in all_dungeon_entrances if i in lw_entrances] + connect_caves(world, remaining_lw_entrances, remaining_dw_entrances, dungeon_exits, player) + + elif world.shuffle == 'simple': + simple_shuffle_dungeons(world, player) + + old_man_entrances = list(Inverted_Old_Man_Entrances) + caves = list(Cave_Exits) + three_exit_caves = list(Cave_Three_Exits) + + single_doors = list(Single_Cave_Doors) + bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors) + blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors) + door_targets = list(Inverted_Single_Cave_Targets) + + # we shuffle all 2 entrance caves as pairs as a start + # start with the ones that need to be directed + two_door_caves = list(Inverted_Two_Door_Caves_Directional) + random.shuffle(two_door_caves) + random.shuffle(caves) + while two_door_caves: + entrance1, entrance2 = two_door_caves.pop() + exit1, exit2 = caves.pop() + connect_two_way(world, entrance1, exit1, player) + connect_two_way(world, entrance2, exit2, player) + + # now the remaining pairs + two_door_caves = list(Inverted_Two_Door_Caves) + random.shuffle(two_door_caves) + while two_door_caves: + entrance1, entrance2 = two_door_caves.pop() + exit1, exit2 = caves.pop() + connect_two_way(world, entrance1, exit1, player) + connect_two_way(world, entrance2, exit2, player) + + # place links house + links_house = random.choice(list(bomb_shop_doors + blacksmith_doors)) + connect_two_way(world, links_house, 'Inverted Links House Exit', player) + if links_house in bomb_shop_doors: + bomb_shop_doors.remove(links_house) + if links_house in blacksmith_doors: + blacksmith_doors.remove(links_house) + + # place dark sanc + sanc_doors = [door for door in Inverted_Dark_Sanctuary_Doors if door in bomb_shop_doors] + sanc_door = random.choice(sanc_doors) + bomb_shop_doors.remove(sanc_door) + connect_doors(world, [sanc_door], ['Inverted Dark Sanctuary'], player) + + lw_dm_entrances = ['Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'Paradox Cave (Top)', 'Old Man House (Bottom)', + 'Fairy Ascension Cave (Bottom)', 'Fairy Ascension Cave (Top)', 'Spiral Cave (Bottom)', 'Old Man Cave (East)', + 'Death Mountain Return Cave (East)', 'Spiral Cave', 'Old Man House (Top)', 'Spectacle Rock Cave', + 'Spectacle Rock Cave Peak', 'Spectacle Rock Cave (Bottom)'] + + # place old man, bumper cave bottom to DDM entrances not in east bottom + + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, 'Bumper Cave (Bottom)', 'Old Man Cave Exit (West)', player) + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) + if old_man_exit == 'Spike Cave': + bomb_shop_doors.remove('Spike Cave') + bomb_shop_doors.extend(old_man_entrances) + + # add old man house to ensure it is always somewhere on light death mountain + caves.extend(list(Old_Man_House)) + caves.extend(list(three_exit_caves)) + + # connect rest + connect_caves(world, lw_dm_entrances, [], caves, player) + + # scramble holes + scramble_inverted_holes(world, player) + + # place blacksmith, has limited options + blacksmith_doors = [door for door in blacksmith_doors[:]] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) + bomb_shop_doors.extend(blacksmith_doors) + + # place bomb shop, has limited options + bomb_shop_doors = [door for door in bomb_shop_doors[:]] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Inverted Big Bomb Shop', player) + single_doors.extend(bomb_shop_doors) + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern'], player) + + # place remaining doors + connect_doors(world, single_doors, door_targets, player) + + elif world.shuffle == 'restricted': + simple_shuffle_dungeons(world, player) + + lw_entrances = list(Inverted_LW_Entrances + Inverted_LW_Single_Cave_Doors) + dw_entrances = list(Inverted_DW_Entrances + Inverted_DW_Single_Cave_Doors + Inverted_Old_Man_Entrances) + lw_must_exits = list(Inverted_LW_Entrances_Must_Exit) + old_man_entrances = list(Inverted_Old_Man_Entrances) + caves = list(Cave_Exits + Cave_Three_Exits + Old_Man_House) + single_doors = list(Single_Cave_Doors) + bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors) + blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Inverted_Single_Cave_Targets) + + # place links house + links_house = random.choice(list(lw_entrances + dw_entrances + lw_must_exits)) + connect_two_way(world, links_house, 'Inverted Links House Exit', player) + if links_house in lw_entrances: + lw_entrances.remove(links_house) + elif links_house in dw_entrances: + dw_entrances.remove(links_house) + elif links_house in lw_must_exits: + lw_must_exits.remove(links_house) + + # place dark sanc + sanc_doors = [door for door in Inverted_Dark_Sanctuary_Doors if door in dw_entrances] + sanc_door = random.choice(sanc_doors) + dw_entrances.remove(sanc_door) + connect_doors(world, [sanc_door], ['Inverted Dark Sanctuary'], player) + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern'], player) + + # place must exits + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, 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 dw_entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) + dw_entrances.remove(old_man_exit) + + # place blacksmith, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligible for placement) + blacksmith_doors = [door for door in blacksmith_doors if door in all_entrances] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) + if blacksmith_hut in lw_entrances: + lw_entrances.remove(blacksmith_hut) + if blacksmith_hut in dw_entrances: + dw_entrances.remove(blacksmith_hut) + bomb_shop_doors.extend(blacksmith_doors) + + # place bomb shop, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligible for placement) + bomb_shop_doors = [door for door in bomb_shop_doors if door in all_entrances] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Inverted Big Bomb Shop', player) + if bomb_shop in lw_entrances: + lw_entrances.remove(bomb_shop) + if bomb_shop in dw_entrances: + dw_entrances.remove(bomb_shop) + + # place the old man cave's entrance somewhere in the dark world + random.shuffle(dw_entrances) + old_man_entrance = dw_entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + + # now scramble the rest + connect_caves(world, lw_entrances, dw_entrances, caves, player) + + # scramble holes + scramble_inverted_holes(world, player) + + doors = lw_entrances + dw_entrances + # place remaining doors + connect_doors(world, doors, door_targets, player) + elif world.shuffle == 'full': + skull_woods_shuffle(world, player) + + lw_entrances = list(Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_LW_Single_Cave_Doors) + dw_entrances = list(Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + Inverted_DW_Single_Cave_Doors + Inverted_Old_Man_Entrances) + lw_must_exits = list(Inverted_LW_Dungeon_Entrances_Must_Exit + Inverted_LW_Entrances_Must_Exit) + old_man_entrances = list(Inverted_Old_Man_Entrances + Old_Man_Entrances + ['Inverted Agahnims Tower', 'Tower of Hera']) + caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits) # don't need to consider three exit caves, have one exit caves to avoid parity issues + bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors) + blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Inverted_Single_Cave_Targets) + old_man_house = list(Old_Man_House) + + # randomize which desert ledge door is a must-exit + if random.randint(0, 1) == 0: + lw_must_exits.append('Desert Palace Entrance (North)') + dp_must_exit = 'Desert Palace Entrance (North)' + lw_entrances.append('Desert Palace Entrance (West)') + else: + lw_must_exits.append('Desert Palace Entrance (West)') + dp_must_exit = 'Desert Palace Entrance (West)' + lw_entrances.append('Desert Palace Entrance (North)') + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern'], player) + + caves.append(tuple(random.sample(['Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)'],3))) + lw_entrances.append('Hyrule Castle Entrance (South)') + + + if not world.shuffle_ganon: + connect_two_way(world, 'Inverted Ganons Tower', 'Inverted Ganons Tower Exit', player) + hc_ledge_entrances = ['Hyrule Castle Entrance (West)', 'Hyrule Castle Entrance (East)'] + else: + lw_entrances.append('Inverted Ganons Tower') + caves.append('Inverted Ganons Tower Exit') + hc_ledge_entrances = ['Hyrule Castle Entrance (West)', 'Hyrule Castle Entrance (East)', 'Inverted Ganons Tower'] + + # shuffle aga door first. if it's on hc ledge, then one other hc ledge door has to be must_exit + all_entrances_aga = lw_entrances + dw_entrances + aga_doors = [i for i in all_entrances_aga] + random.shuffle(aga_doors) + aga_door = aga_doors.pop() + + if aga_door in hc_ledge_entrances: + lw_entrances.remove(aga_door) + hc_ledge_entrances.remove(aga_door) + + random.shuffle(hc_ledge_entrances) + hc_ledge_must_exit = hc_ledge_entrances.pop() + lw_entrances.remove(hc_ledge_must_exit) + lw_must_exits.append(hc_ledge_must_exit) + + if aga_door in lw_entrances: + lw_entrances.remove(aga_door) + elif aga_door in dw_entrances: + dw_entrances.remove(aga_door) + + connect_two_way(world, aga_door, 'Inverted Agahnims Tower Exit', player) + caves.remove('Inverted Agahnims Tower Exit') + + # place links house + links_house_doors = [door for door in lw_entrances + dw_entrances + lw_must_exits] + links_house = random.choice(links_house_doors) + connect_two_way(world, links_house, 'Inverted Links House Exit', player) + if links_house in lw_entrances: + lw_entrances.remove(links_house) + if links_house in dw_entrances: + dw_entrances.remove(links_house) + if links_house in lw_must_exits: + lw_must_exits.remove(links_house) + + # place dark sanc + sanc_doors = [door for door in Inverted_Dark_Sanctuary_Doors if door in dw_entrances] + sanc_door = random.choice(sanc_doors) + dw_entrances.remove(sanc_door) + connect_doors(world, [sanc_door], ['Inverted Dark Sanctuary'], player) + + # place old man house + # no dw must exits in inverted, but we randomize whether cave is in light or dark world + if random.randint(0, 1) == 0: + caves += old_man_house + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player, dp_must_exit) + try: + caves.remove(old_man_house[0]) + except ValueError: + pass + else: #if the cave wasn't placed we get here + connect_caves(world, lw_entrances, [], old_man_house, player) + else: + connect_caves(world, dw_entrances, [], old_man_house, player) + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player, dp_must_exit) + + # 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 dw_entrances + lw_entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) + if old_man_exit in dw_entrances: + dw_entrances.remove(old_man_exit) + old_man_world = 'dark' + elif old_man_exit in lw_entrances: + lw_entrances.remove(old_man_exit) + old_man_world = 'light' + + # place blacksmith, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligible for placement) + blacksmith_doors = [door for door in blacksmith_doors if door in all_entrances] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) + if blacksmith_hut in lw_entrances: + lw_entrances.remove(blacksmith_hut) + if blacksmith_hut in dw_entrances: + dw_entrances.remove(blacksmith_hut) + bomb_shop_doors.extend(blacksmith_doors) + + # place bomb shop, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligible for placement) + bomb_shop_doors = [door for door in bomb_shop_doors if door in all_entrances] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Inverted Big Bomb Shop', player) + if bomb_shop in lw_entrances: + lw_entrances.remove(bomb_shop) + if bomb_shop in dw_entrances: + dw_entrances.remove(bomb_shop) + + # place the old man cave's entrance somewhere in the same world he'll exit from + if old_man_world == 'light': + random.shuffle(lw_entrances) + old_man_entrance = lw_entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + elif old_man_world == 'dark': + random.shuffle(dw_entrances) + old_man_entrance = dw_entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + + # now scramble the rest + connect_caves(world, lw_entrances, dw_entrances, caves, player) + + # scramble holes + scramble_inverted_holes(world, player) + + doors = lw_entrances + dw_entrances + + # place remaining doors + connect_doors(world, doors, door_targets, player) + elif world.shuffle == 'crossed': + skull_woods_shuffle(world, player) + + entrances = list(Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_LW_Single_Cave_Doors + Inverted_Old_Man_Entrances + Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + Inverted_DW_Single_Cave_Doors) + must_exits = list(Inverted_LW_Entrances_Must_Exit + Inverted_LW_Dungeon_Entrances_Must_Exit) + + old_man_entrances = list(Inverted_Old_Man_Entrances + Old_Man_Entrances + ['Inverted Agahnims Tower', 'Tower of Hera']) + caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits + Old_Man_House) # don't need to consider three exit caves, have one exit caves to avoid parity issues + bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors) + blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Inverted_Single_Cave_Targets) + + # randomize which desert ledge door is a must-exit + if random.randint(0, 1) == 0: + must_exits.append('Desert Palace Entrance (North)') + dp_must_exit = 'Desert Palace Entrance (North)' + entrances.append('Desert Palace Entrance (West)') + else: + must_exits.append('Desert Palace Entrance (West)') + dp_must_exit = 'Desert Palace Entrance (West)' + entrances.append('Desert Palace Entrance (North)') + + caves.append(tuple(random.sample(['Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)'],3))) + entrances.append('Hyrule Castle Entrance (South)') + + if not world.shuffle_ganon: + connect_two_way(world, 'Inverted Ganons Tower', 'Inverted Ganons Tower Exit', player) + hc_ledge_entrances = ['Hyrule Castle Entrance (West)', 'Hyrule Castle Entrance (East)'] + else: + entrances.append('Inverted Ganons Tower') + caves.append('Inverted Ganons Tower Exit') + hc_ledge_entrances = ['Hyrule Castle Entrance (West)', 'Hyrule Castle Entrance (East)', 'Inverted Ganons Tower'] + + # shuffle aga door. if it's on hc ledge, then one other hc ledge door has to be must_exit + aga_door = random.choice(list(entrances)) + + if aga_door in hc_ledge_entrances: + hc_ledge_entrances.remove(aga_door) + + random.shuffle(hc_ledge_entrances) + hc_ledge_must_exit = hc_ledge_entrances.pop() + entrances.remove(hc_ledge_must_exit) + must_exits.append(hc_ledge_must_exit) + + entrances.remove(aga_door) + connect_two_way(world, aga_door, 'Inverted Agahnims Tower Exit', player) + caves.remove('Inverted Agahnims Tower Exit') + + + # place links house + links_house = random.choice(list(entrances + must_exits)) + connect_two_way(world, links_house, 'Inverted Links House Exit', player) + if links_house in entrances: + entrances.remove(links_house) + elif links_house in must_exits: + must_exits.remove(links_house) + + # place dark sanc + sanc_doors = [door for door in Inverted_Dark_Sanctuary_Doors if door in entrances] + sanc_door = random.choice(sanc_doors) + entrances.remove(sanc_door) + connect_doors(world, [sanc_door], ['Inverted Dark Sanctuary'], player) + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern'], player) + + + #place must-exit caves + connect_mandatory_exits(world, entrances, caves, must_exits, player, dp_must_exit) + + + # 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 entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)', player) + entrances.remove(old_man_exit) + + # place blacksmith, has limited options + # cannot place it anywhere already taken (or that are otherwise not eligible for placement) + blacksmith_doors = [door for door in blacksmith_doors if door in entrances] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) + entrances.remove(blacksmith_hut) + + # place bomb shop, has limited options + + # cannot place it anywhere already taken (or that are otherwise not eligible for placement) + bomb_shop_doors = [door for door in bomb_shop_doors if door in entrances] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Inverted Big Bomb Shop', player) + entrances.remove(bomb_shop) + + # place the old man cave's entrance somewhere + random.shuffle(entrances) + old_man_entrance = entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)', player) + + # now scramble the rest + connect_caves(world, entrances, [], caves, player) + + # scramble holes + scramble_inverted_holes(world, player) + + # place remaining doors + connect_doors(world, entrances, door_targets, player) + elif world.shuffle == 'insanity': + # beware ye who enter here + + entrances = Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + Inverted_Old_Man_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] + entrances_must_exits = Inverted_LW_Entrances_Must_Exit + Inverted_LW_Dungeon_Entrances_Must_Exit + + doors = Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_LW_Entrances_Must_Exit + Inverted_LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Secret Entrance Stairs'] + Inverted_Old_Man_Entrances +\ + Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] +\ + Inverted_LW_Single_Cave_Doors + Inverted_DW_Single_Cave_Doors + ['Desert Palace Entrance (West)', 'Desert Palace Entrance (North)'] + + # randomize which desert ledge door is a must-exit + if random.randint(0, 1) == 0: + entrances_must_exits.append('Desert Palace Entrance (North)') + entrances.append('Desert Palace Entrance (West)') + else: + entrances_must_exits.append('Desert Palace Entrance (West)') + entrances.append('Desert Palace Entrance (North)') + + # TODO: there are other possible entrances we could support here by way of exiting from a connector, + # and rentering to find bomb shop. However appended list here is all those that we currently have + # bomb shop logic for. + # Specifically we could potentially add: 'Dark Death Mountain Ledge (East)' and doors associated with pits + bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors + ['Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Entrance', 'Bumper Cave (Top)', 'Hookshot Cave Back Entrance']) + blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Inverted_Single_Cave_Targets) + + random.shuffle(doors) + + old_man_entrances = list(Inverted_Old_Man_Entrances + Old_Man_Entrances) + ['Tower of Hera', 'Inverted Agahnims Tower'] + + caves = Cave_Exits + Dungeon_Exits + Cave_Three_Exits + ['Old Man House Exit (Bottom)', 'Old Man House Exit (Top)', 'Skull Woods First Section Exit', 'Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)', + 'Kakariko Well Exit', 'Bat Cave Exit', 'North Fairy Cave Exit', 'Lost Woods Hideout Exit', 'Lumberjack Tree Exit', 'Sanctuary Exit'] + + + # shuffle up holes + hole_entrances = ['Kakariko Well Drop', 'Bat Cave Drop', 'North Fairy Cave Drop', 'Lost Woods Hideout Drop', 'Lumberjack Tree Tree', 'Sanctuary Grave', + 'Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', 'Skull Woods Second Section Hole'] + + hole_targets = ['Kakariko Well (top)', 'Bat Cave (right)', 'North Fairy Cave', 'Lost Woods Hideout (top)', 'Lumberjack Tree (top)', 'Sewer Drop', 'Skull Woods Second Section (Drop)', + 'Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)'] + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern'], player) + + hole_entrances.append('Hyrule Castle Secret Entrance Drop') + hole_targets.append('Hyrule Castle Secret Entrance') + entrances.append('Hyrule Castle Secret Entrance Stairs') + caves.append('Hyrule Castle Secret Entrance Exit') + + if not world.shuffle_ganon: + connect_two_way(world, 'Inverted Ganons Tower', 'Inverted Ganons Tower Exit', player) + connect_two_way(world, 'Inverted Pyramid Entrance', 'Pyramid Exit', player) + connect_entrance(world, 'Inverted Pyramid Hole', 'Pyramid', player) + else: + entrances.append('Inverted Ganons Tower') + caves.extend(['Inverted Ganons Tower Exit', 'Pyramid Exit']) + hole_entrances.append('Inverted Pyramid Hole') + hole_targets.append('Pyramid') + doors.extend(['Inverted Ganons Tower', 'Inverted Pyramid Entrance']) + + random.shuffle(hole_entrances) + random.shuffle(hole_targets) + random.shuffle(entrances) + + # fill up holes + for hole in hole_entrances: + connect_entrance(world, hole, hole_targets.pop(), player) + + doors.append('Hyrule Castle Entrance (South)') + caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) + + # place links house and dark sanc + links_house = random.choice(list(entrances + entrances_must_exits)) + connect_two_way(world, links_house, 'Inverted Links House Exit', player) + if links_house in entrances: + entrances.remove(links_house) + elif links_house in entrances_must_exits: + entrances_must_exits.remove(links_house) + doors.remove(links_house) + + sanc_doors = [door for door in Inverted_Dark_Sanctuary_Doors if door in entrances] + sanc_door = random.choice(sanc_doors) + entrances.remove(sanc_door) + doors.remove(sanc_door) + connect_doors(world, [sanc_door], ['Inverted Dark Sanctuary'], player) + + # now let's deal with mandatory reachable stuff + def extract_reachable_exit(cavelist): + random.shuffle(cavelist) + candidate = None + for cave in cavelist: + if isinstance(cave, tuple) and len(cave) > 1: + # special handling: TRock has two entries that we should consider entrance only + # ToDo this should be handled in a more sensible manner + if cave[0] in ['Turtle Rock Exit (Front)', 'Spectacle Rock Cave Exit (Peak)'] and len(cave) == 2: + continue + candidate = cave + break + if candidate is None: + raise RuntimeError('No suitable cave.') + cavelist.remove(candidate) + return candidate + + def connect_reachable_exit(entrance, caves, doors): + cave = extract_reachable_exit(caves) + + exit = cave[-1] + cave = cave[:-1] + connect_exit(world, exit, entrance, player) + connect_entrance(world, doors.pop(), exit, player) + # rest of cave now is forced to be in this world + caves.append(cave) + + # connect mandatory exits + for entrance in entrances_must_exits: + connect_reachable_exit(entrance, caves, doors) + + # 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 = [entrance for entrance in old_man_entrances if entrance in entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + entrances.remove(old_man_exit) + + connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit, player) + connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)', player) + caves.append('Old Man Cave Exit (West)') + + # place blacksmith, has limited options + blacksmith_doors = [door for door in blacksmith_doors if door in doors] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut', player) + doors.remove(blacksmith_hut) + + # place dam and pyramid fairy, have limited options + bomb_shop_doors = [door for door in bomb_shop_doors if door in doors] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Inverted Big Bomb Shop', player) + doors.remove(bomb_shop) + + # handle remaining caves + for cave in caves: + if isinstance(cave, str): + cave = (cave,) + + for exit in cave: + connect_exit(world, exit, entrances.pop(), player) + connect_entrance(world, doors.pop(), exit, player) + + # place remaining doors + connect_doors(world, doors, door_targets, player) + else: + raise NotImplementedError('Shuffling not supported yet') + + # patch swamp drain + if world.get_entrance('Dam', player).connected_region.name != 'Dam' or world.get_entrance('Swamp Palace', player).connected_region.name != 'Swamp Palace (Entrance)': + world.swamp_patch_required[player] = True + + # check for potion shop location + if world.get_entrance('Potion Shop', player).connected_region.name != 'Potion Shop': + world.powder_patch_required[player] = True + + # check for ganon location + if world.get_entrance('Inverted Pyramid Hole', player).connected_region.name != 'Hyrule Castle Ledge': + world.ganon_at_pyramid[player] = False + + # check for Ganon's Tower location + if world.get_entrance('Inverted Ganons Tower', player).connected_region.name != 'Ganons Tower (Entrance)': + world.ganonstower_vanilla[player] = False def connect_simple(world, exitname, regionname, player): world.get_entrance(exitname, player).connect(world.get_region(regionname, player)) @@ -1084,7 +1775,6 @@ def connect_entrance(world, entrancename, exitname, player): entrance.connect(region, addresses, target) world.spoiler.set_entrance(entrance.name, exit.name if exit is not None else region.name, 'entrance', player) - def connect_exit(world, exitname, entrancename, player): entrance = world.get_entrance(entrancename, player) exit = world.get_entrance(exitname, player) @@ -1158,6 +1848,47 @@ def scramble_holes(world, player): connect_entrance(world, drop, target, player) +def scramble_inverted_holes(world, player): + hole_entrances = [('Kakariko Well Cave', 'Kakariko Well Drop'), + ('Bat Cave Cave', 'Bat Cave Drop'), + ('North Fairy Cave', 'North Fairy Cave Drop'), + ('Lost Woods Hideout Stump', 'Lost Woods Hideout Drop'), + ('Lumberjack Tree Cave', 'Lumberjack Tree Tree'), + ('Sanctuary', 'Sanctuary Grave')] + + hole_targets = [('Kakariko Well Exit', 'Kakariko Well (top)'), + ('Bat Cave Exit', 'Bat Cave (right)'), + ('North Fairy Cave Exit', 'North Fairy Cave'), + ('Lost Woods Hideout Exit', 'Lost Woods Hideout (top)'), + ('Lumberjack Tree Exit', 'Lumberjack Tree (top)')] + + if not world.shuffle_ganon: + connect_two_way(world, 'Inverted Pyramid Entrance', 'Pyramid Exit', player) + connect_entrance(world, 'Inverted Pyramid Hole', 'Pyramid', player) + else: + hole_targets.append(('Pyramid Exit', 'Pyramid')) + + + hole_entrances.append(('Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Drop')) + hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) + + # do not shuffle sanctuary into pyramid hole unless shuffle is crossed + if world.shuffle == 'crossed': + hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) + if world.shuffle_ganon: + random.shuffle(hole_targets) + exit, target = hole_targets.pop() + connect_two_way(world, 'Inverted Pyramid Entrance', exit, player) + connect_entrance(world, 'Inverted Pyramid Hole', target, player) + if world.shuffle != 'crossed': + hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) + + random.shuffle(hole_targets) + for entrance, drop in hole_entrances: + exit, target = hole_targets.pop() + connect_two_way(world, entrance, exit, player) + connect_entrance(world, drop, target, player) + def connect_random(world, exitlist, targetlist, player, two_way=False): targetlist = list(targetlist) random.shuffle(targetlist) @@ -1169,7 +1900,7 @@ def connect_random(world, exitlist, targetlist, player, two_way=False): connect_entrance(world, exit, target, player) -def connect_mandatory_exits(world, entrances, caves, must_be_exits, player): +def connect_mandatory_exits(world, entrances, caves, must_be_exits, player, dp_must_exit=None): """This works inplace""" random.shuffle(entrances) random.shuffle(caves) @@ -1190,8 +1921,12 @@ def connect_mandatory_exits(world, entrances, caves, must_be_exits, player): connect_two_way(world, exit, cave[-1], player) if len(cave) == 2: entrance = entrances.pop() - # ToDo Better solution, this is a hot fix. Do not connect both sides of trock ledge only to each other - if entrance == 'Dark Death Mountain Ledge (West)': + # ToDo Better solution, this is a hot fix. Do not connect both sides of trock/desert ledge only to each other + if world.mode != 'inverted' and entrance == 'Dark Death Mountain Ledge (West)': + new_entrance = entrances.pop() + entrances.append(entrance) + entrance = new_entrance + if world.mode == 'inverted' and entrance == dp_must_exit: new_entrance = entrances.pop() entrances.append(entrance) entrance = new_entrance @@ -1262,77 +1997,131 @@ def simple_shuffle_dungeons(world, player): dungeon_entrances = ['Eastern Palace', 'Tower of Hera', 'Thieves Town', 'Skull Woods Final Section', 'Palace of Darkness', 'Ice Palace', 'Misery Mire', 'Swamp Palace'] dungeon_exits = ['Eastern Palace Exit', 'Tower of Hera Exit', 'Thieves Town Exit', 'Skull Woods Final Section Exit', 'Palace of Darkness Exit', 'Ice Palace Exit', 'Misery Mire Exit', 'Swamp Palace Exit'] - if not world.shuffle_ganon: - connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) + if world.mode != 'inverted': + if not world.shuffle_ganon: + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) + else: + dungeon_entrances.append('Ganons Tower') + dungeon_exits.append('Ganons Tower Exit') else: - dungeon_entrances.append('Ganons Tower') - dungeon_exits.append('Ganons Tower Exit') + dungeon_entrances.append('Inverted Agahnims Tower') + dungeon_exits.append('Inverted Agahnims Tower Exit') # shuffle up single entrance dungeons connect_random(world, dungeon_entrances, dungeon_exits, player, True) # mix up 4 door dungeons multi_dungeons = ['Desert', 'Turtle Rock'] - if world.mode == 'open': + if world.mode == 'open' or (world.mode == 'inverted' and world.shuffle_ganon): multi_dungeons.append('Hyrule Castle') random.shuffle(multi_dungeons) dp_target = multi_dungeons[0] tr_target = multi_dungeons[1] - if world.mode != 'open': + if world.mode not in ['open', 'inverted'] or (world.mode == 'inverted' and world.shuffle_ganon is False): # place hyrule castle as intended hc_target = 'Hyrule Castle' else: hc_target = multi_dungeons[2] # ToDo improve this? - if hc_target == 'Hyrule Castle': - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) - connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)', player) - connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Hyrule Castle Exit (West)', player) - connect_two_way(world, 'Agahnims Tower', 'Agahnims Tower Exit', player) - elif hc_target == 'Desert': - connect_two_way(world, 'Desert Palace Entrance (South)', 'Hyrule Castle Exit (South)', player) - connect_two_way(world, 'Desert Palace Entrance (East)', 'Hyrule Castle Exit (East)', player) - connect_two_way(world, 'Desert Palace Entrance (West)', 'Hyrule Castle Exit (West)', player) - connect_two_way(world, 'Desert Palace Entrance (North)', 'Agahnims Tower Exit', player) - elif hc_target == 'Turtle Rock': - connect_two_way(world, 'Turtle Rock', 'Hyrule Castle Exit (South)', player) - connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Hyrule Castle Exit (East)', player) - connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Hyrule Castle Exit (West)', player) - connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Agahnims Tower Exit', player) - if dp_target == 'Hyrule Castle': - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Desert Palace Exit (South)', player) - connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Desert Palace Exit (East)', player) - connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Desert Palace Exit (West)', player) - connect_two_way(world, 'Agahnims Tower', 'Desert Palace Exit (North)', player) - elif dp_target == 'Desert': - connect_two_way(world, 'Desert Palace Entrance (South)', 'Desert Palace Exit (South)', player) - connect_two_way(world, 'Desert Palace Entrance (East)', 'Desert Palace Exit (East)', player) - connect_two_way(world, 'Desert Palace Entrance (West)', 'Desert Palace Exit (West)', player) - connect_two_way(world, 'Desert Palace Entrance (North)', 'Desert Palace Exit (North)', player) - elif dp_target == 'Turtle Rock': - connect_two_way(world, 'Turtle Rock', 'Desert Palace Exit (South)', player) - connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Desert Palace Exit (East)', player) - connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Desert Palace Exit (West)', player) - connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Desert Palace Exit (North)', player) + if world.mode != 'inverted': + if hc_target == 'Hyrule Castle': + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Agahnims Tower', 'Agahnims Tower Exit', player) + elif hc_target == 'Desert': + connect_two_way(world, 'Desert Palace Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Agahnims Tower Exit', player) + elif hc_target == 'Turtle Rock': + connect_two_way(world, 'Turtle Rock', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Agahnims Tower Exit', player) - if tr_target == 'Hyrule Castle': - connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Turtle Rock Exit (Front)', player) - connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Turtle Rock Ledge Exit (East)', player) - connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) - connect_two_way(world, 'Agahnims Tower', 'Turtle Rock Isolated Ledge Exit', player) - elif tr_target == 'Desert': - connect_two_way(world, 'Desert Palace Entrance (South)', 'Turtle Rock Exit (Front)', player) - connect_two_way(world, 'Desert Palace Entrance (North)', 'Turtle Rock Ledge Exit (East)', player) - connect_two_way(world, 'Desert Palace Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) - connect_two_way(world, 'Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Exit', player) - elif tr_target == 'Turtle Rock': - connect_two_way(world, 'Turtle Rock', 'Turtle Rock Exit (Front)', player) - connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Isolated Ledge Exit', player) - connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Turtle Rock Ledge Exit (West)', player) - connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Turtle Rock Ledge Exit (East)', player) + if dp_target == 'Hyrule Castle': + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Agahnims Tower', 'Desert Palace Exit (North)', player) + elif dp_target == 'Desert': + connect_two_way(world, 'Desert Palace Entrance (South)', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Desert Palace Exit (North)', player) + elif dp_target == 'Turtle Rock': + connect_two_way(world, 'Turtle Rock', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Desert Palace Exit (North)', player) + + if tr_target == 'Hyrule Castle': + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Turtle Rock Ledge Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Agahnims Tower', 'Turtle Rock Isolated Ledge Exit', player) + elif tr_target == 'Desert': + connect_two_way(world, 'Desert Palace Entrance (South)', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Turtle Rock Ledge Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Exit', player) + elif tr_target == 'Turtle Rock': + connect_two_way(world, 'Turtle Rock', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Isolated Ledge Exit', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Turtle Rock Ledge Exit (East)', player) + else: + if hc_target == 'Hyrule Castle': + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Inverted Ganons Tower', 'Inverted Ganons Tower Exit', player) + elif hc_target == 'Desert': + connect_two_way(world, 'Desert Palace Entrance (South)', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Hyrule Castle Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Inverted Ganons Tower Exit', player) + elif hc_target == 'Turtle Rock': + connect_two_way(world, 'Turtle Rock', 'Hyrule Castle Exit (South)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Inverted Ganons Tower Exit', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Hyrule Castle Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Hyrule Castle Exit (East)', player) + + if dp_target == 'Hyrule Castle': + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Inverted Ganons Tower', 'Desert Palace Exit (North)', player) + elif dp_target == 'Desert': + connect_two_way(world, 'Desert Palace Entrance (South)', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Desert Palace Exit (North)', player) + elif dp_target == 'Turtle Rock': + connect_two_way(world, 'Turtle Rock', 'Desert Palace Exit (South)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Desert Palace Exit (East)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Desert Palace Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Desert Palace Exit (North)', player) + + if tr_target == 'Hyrule Castle': + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Turtle Rock Ledge Exit (East)', player) + connect_two_way(world, 'Hyrule Castle Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Inverted Ganons Tower', 'Turtle Rock Isolated Ledge Exit', player) + elif tr_target == 'Desert': + connect_two_way(world, 'Desert Palace Entrance (South)', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Desert Palace Entrance (North)', 'Turtle Rock Ledge Exit (East)', player) + connect_two_way(world, 'Desert Palace Entrance (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Exit', player) + elif tr_target == 'Turtle Rock': + connect_two_way(world, 'Turtle Rock', 'Turtle Rock Exit (Front)', player) + connect_two_way(world, 'Turtle Rock Isolated Ledge Entrance', 'Turtle Rock Isolated Ledge Exit', player) + connect_two_way(world, 'Dark Death Mountain Ledge (West)', 'Turtle Rock Ledge Exit (West)', player) + connect_two_way(world, 'Dark Death Mountain Ledge (East)', 'Turtle Rock Ledge Exit (East)', player) def unbias_some_entrances(Dungeon_Exits, Cave_Exits, Old_Man_House, Cave_Three_Exits): def shuffle_lists_in_list(ls): @@ -1731,6 +2520,308 @@ Single_Cave_Targets = ['Blinds Hideout', 'Kakariko Gamble Game', 'Dam'] +Inverted_LW_Dungeon_Entrances = ['Desert Palace Entrance (South)', + 'Eastern Palace', + 'Tower of Hera', + 'Hyrule Castle Entrance (West)', + 'Hyrule Castle Entrance (East)'] + +Inverted_DW_Dungeon_Entrances = ['Thieves Town', + 'Skull Woods Final Section', + 'Ice Palace', + 'Misery Mire', + 'Palace of Darkness', + 'Swamp Palace', + 'Turtle Rock', + 'Dark Death Mountain Ledge (West)', + 'Dark Death Mountain Ledge (East)', + 'Turtle Rock Isolated Ledge Entrance', + 'Inverted Agahnims Tower'] + +Inverted_LW_Dungeon_Entrances_Must_Exit = ['Desert Palace Entrance (East)'] + +Inverted_Dungeon_Exits_Base = [['Desert Palace Exit (South)', 'Desert Palace Exit (West)', 'Desert Palace Exit (East)'], + 'Desert Palace Exit (North)', + 'Eastern Palace Exit', + 'Tower of Hera Exit', + 'Thieves Town Exit', + 'Skull Woods Final Section Exit', + 'Ice Palace Exit', + 'Misery Mire Exit', + 'Palace of Darkness Exit', + 'Swamp Palace Exit', + 'Inverted Agahnims Tower Exit', + ['Turtle Rock Ledge Exit (East)', + 'Turtle Rock Exit (Front)', 'Turtle Rock Ledge Exit (West)', 'Turtle Rock Isolated Ledge Exit']] + +Inverted_LW_Entrances_Must_Exit = ['Death Mountain Return Cave (West)', + 'Two Brothers House (West)'] + +Inverted_Two_Door_Caves_Directional = [('Old Man Cave (West)', 'Death Mountain Return Cave (West)'), + ('Two Brothers House (East)', 'Two Brothers House (West)')] + + +Inverted_Two_Door_Caves = [('Elder House (East)', 'Elder House (West)'), + ('Superbunny Cave (Bottom)', 'Superbunny Cave (Top)'), + ('Hookshot Cave', 'Hookshot Cave Back Entrance')] + + + +Inverted_Old_Man_Entrances = ['Dark Death Mountain Fairy', + 'Spike Cave'] + +Inverted_LW_Entrances = ['Elder House (East)', + 'Elder House (West)', + 'Two Brothers House (East)', + 'Old Man Cave (East)', + 'Old Man Cave (West)', + 'Old Man House (Bottom)', + 'Old Man House (Top)', + 'Death Mountain Return Cave (East)', + 'Paradox Cave (Bottom)', + 'Paradox Cave (Middle)', + 'Paradox Cave (Top)', + 'Spectacle Rock Cave', + 'Spectacle Rock Cave Peak', + 'Spectacle Rock Cave (Bottom)', + 'Fairy Ascension Cave (Bottom)', + 'Fairy Ascension Cave (Top)', + 'Spiral Cave', + 'Spiral Cave (Bottom)'] + + +Inverted_DW_Entrances = ['Bumper Cave (Bottom)', + 'Superbunny Cave (Top)', + 'Superbunny Cave (Bottom)', + 'Hookshot Cave', + 'Hookshot Cave Back Entrance'] + +Inverted_Bomb_Shop_Multi_Cave_Doors = ['Hyrule Castle Entrance (South)', + 'Misery Mire', + 'Thieves Town', + 'Bumper Cave (Bottom)', + 'Swamp Palace', + 'Hyrule Castle Secret Entrance Stairs', + 'Skull Woods First Section Door', + 'Skull Woods Second Section Door (East)', + 'Skull Woods Second Section Door (West)', + 'Skull Woods Final Section', + 'Ice Palace', + 'Turtle Rock', + 'Dark Death Mountain Ledge (West)', + 'Dark Death Mountain Ledge (East)', + 'Superbunny Cave (Top)', + 'Superbunny Cave (Bottom)', + 'Hookshot Cave', + 'Inverted Agahnims Tower', + 'Desert Palace Entrance (South)', + 'Tower of Hera', + 'Two Brothers House (West)', + 'Old Man Cave (East)', + 'Old Man House (Bottom)', + 'Old Man House (Top)', + 'Death Mountain Return Cave (East)', + 'Death Mountain Return Cave (West)', + 'Spectacle Rock Cave Peak', + 'Spectacle Rock Cave', + 'Spectacle Rock Cave (Bottom)', + 'Paradox Cave (Bottom)', + 'Paradox Cave (Middle)', + 'Paradox Cave (Top)', + 'Fairy Ascension Cave (Bottom)', + 'Fairy Ascension Cave (Top)', + 'Spiral Cave', + 'Spiral Cave (Bottom)', + 'Palace of Darkness', + 'Hyrule Castle Entrance (West)', + 'Hyrule Castle Entrance (East)', + 'Inverted Ganons Tower', + 'Desert Palace Entrance (West)', + 'Desert Palace Entrance (North)'] + +Inverted_Blacksmith_Multi_Cave_Doors = [] # same as non-inverted + +Inverted_LW_Single_Cave_Doors = LW_Single_Cave_Doors + ['Inverted Big Bomb Shop'] + +Inverted_DW_Single_Cave_Doors = ['Bonk Fairy (Dark)', + 'Inverted Dark Sanctuary', + 'Inverted Links House', + 'Dark Lake Hylia Fairy', + 'C-Shaped House', + 'Bumper Cave (Top)', + 'Dark Lake Hylia Shop', + 'Dark World Shop', + 'Red Shield Shop', + 'Mire Shed', + 'East Dark World Hint', + 'Dark Desert Hint', + 'Palace of Darkness Hint', + 'Dark Lake Hylia Ledge Spike Cave', + 'Cave Shop (Dark Death Mountain)', + 'Dark World Potion Shop', + 'Pyramid Fairy', + 'Archery Game', + 'Dark World Lumberjack Shop', + 'Hype Cave', + 'Brewery', + 'Dark Lake Hylia Ledge Hint', + 'Chest Game', + 'Dark Desert Fairy', + 'Dark Lake Hylia Ledge Fairy', + 'Fortune Teller (Dark)', + 'Dark World Hammer Peg Cave'] + + +Inverted_Bomb_Shop_Single_Cave_Doors = ['Waterfall of Wishing', + 'Capacity Upgrade', + 'Bonk Rock Cave', + 'Graveyard Cave', + 'Checkerboard Cave', + 'Cave 45', + 'Kings Grave', + 'Bonk Fairy (Light)', + 'Hookshot Fairy', + 'East Dark World Hint', + 'Palace of Darkness Hint', + 'Dark Lake Hylia Fairy', + 'Dark Lake Hylia Ledge Fairy', + 'Dark Lake Hylia Ledge Spike Cave', + 'Dark Lake Hylia Ledge Hint', + 'Hype Cave', + 'Bonk Fairy (Dark)', + 'Brewery', + 'C-Shaped House', + 'Chest Game', + 'Dark World Hammer Peg Cave', + 'Red Shield Shop', + 'Inverted Dark Sanctuary', + 'Fortune Teller (Dark)', + 'Dark World Shop', + 'Dark World Lumberjack Shop', + 'Dark World Potion Shop', + 'Archery Game', + 'Mire Shed', + 'Dark Desert Hint', + 'Dark Desert Fairy', + 'Spike Cave', + 'Cave Shop (Dark Death Mountain)', + 'Bumper Cave (Top)', + 'Mimic Cave', + 'Dark Lake Hylia Shop', + 'Inverted Links House'] + +Inverted_Blacksmith_Single_Cave_Doors = ['Blinds Hideout', + 'Lake Hylia Fairy', + 'Light Hype Fairy', + 'Desert Fairy', + 'Chicken House', + 'Aginahs Cave', + 'Sahasrahlas Hut', + 'Cave Shop (Lake Hylia)', + 'Blacksmiths Hut', + 'Sick Kids House', + 'Lost Woods Gamble', + 'Fortune Teller (Light)', + 'Snitch Lady (East)', + 'Snitch Lady (West)', + 'Bush Covered House', + 'Tavern (Front)', + 'Light World Bomb Hut', + 'Kakariko Shop', + 'Mini Moldorm Cave', + 'Long Fairy Cave', + 'Good Bee Cave', + '20 Rupee Cave', + '50 Rupee Cave', + 'Ice Rod Cave', + 'Library', + 'Potion Shop', + 'Dam', + 'Lumberjack House', + 'Lake Hylia Fortune Teller', + 'Kakariko Gamble Game', + 'Inverted Big Bomb Shop'] + + +Inverted_Single_Cave_Targets = ['Blinds Hideout', + 'Bonk Fairy (Light)', + 'Lake Hylia Healer Fairy', + 'Swamp Healer Fairy', + 'Desert Healer Fairy', + 'Kings Grave', + 'Chicken House', + 'Aginahs Cave', + 'Sahasrahlas Hut', + 'Cave Shop (Lake Hylia)', + 'Sick Kids House', + 'Lost Woods Gamble', + 'Fortune Teller (Light)', + 'Snitch Lady (East)', + 'Snitch Lady (West)', + 'Bush Covered House', + 'Tavern (Front)', + 'Light World Bomb Hut', + 'Kakariko Shop', + 'Cave 45', + 'Graveyard Cave', + 'Checkerboard Cave', + 'Mini Moldorm Cave', + 'Long Fairy Cave', + 'Good Bee Cave', + '20 Rupee Cave', + '50 Rupee Cave', + 'Ice Rod Cave', + 'Bonk Rock Cave', + 'Library', + 'Potion Shop', + 'Hookshot Fairy', + 'Waterfall of Wishing', + 'Capacity Upgrade', + 'Pyramid Fairy', + 'East Dark World Hint', + 'Palace of Darkness Hint', + 'Dark Lake Hylia Healer Fairy', + 'Dark Lake Hylia Ledge Healer Fairy', + 'Dark Lake Hylia Ledge Spike Cave', + 'Dark Lake Hylia Ledge Hint', + 'Hype Cave', + 'Bonk Fairy (Dark)', + 'Brewery', + 'C-Shaped House', + 'Chest Game', + 'Dark World Hammer Peg Cave', + 'Red Shield Shop', + 'Fortune Teller (Dark)', + 'Village of Outcasts Shop', + 'Dark Lake Hylia Shop', + 'Dark World Lumberjack Shop', + 'Archery Game', + 'Mire Shed', + 'Dark Desert Hint', + 'Dark Desert Healer Fairy', + 'Spike Cave', + 'Cave Shop (Dark Death Mountain)', + 'Dark Death Mountain Healer Fairy', + 'Mimic Cave', + 'Dark World Potion Shop', + 'Lumberjack House', + 'Lake Hylia Fortune Teller', + 'Kakariko Gamble Game', + 'Dam'] + +# in inverted we put dark sanctuary in west dark world for now +Inverted_Dark_Sanctuary_Doors = ['Inverted Dark Sanctuary', + 'Fortune Teller (Dark)', + 'Brewery', + 'C-Shaped House', + 'Chest Game', + 'Dark World Lumberjack Shop', + 'Red Shield Shop', + 'Bumper Cave (Bottom)', + 'Bumper Cave (Top)', + 'Skull Woods Final Section', + 'Thieves Town'] + # these are connections that cannot be shuffled and always exist. They link together separate parts of the world we need to divide into regions mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), ('Lake Hylia Central Island Teleporter', 'Dark Lake Hylia Central Island'), @@ -1909,6 +3000,221 @@ mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central ('Pyramid Drop', 'East Dark World') ] +inverted_mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), + ('Zoras River', 'Zoras River'), + ('Kings Grave Outer Rocks', 'Kings Grave Area'), + ('Kings Grave Inner Rocks', 'Light World'), + ('Kakariko Well (top to bottom)', 'Kakariko Well (bottom)'), + ('Master Sword Meadow', 'Master Sword Meadow'), + ('Hobo Bridge', 'Hobo Bridge'), + ('Desert Palace East Wing', 'Desert Palace East'), + ('Bat Cave Drop Ledge', 'Bat Cave Drop Ledge'), + ('Bat Cave Door', 'Bat Cave (left)'), + ('Lost Woods Hideout (top to bottom)', 'Lost Woods Hideout (bottom)'), + ('Lumberjack Tree (top to bottom)', 'Lumberjack Tree (bottom)'), + ('Desert Palace Stairs', 'Desert Palace Stairs'), + ('Desert Palace Stairs Drop', 'Light World'), + ('Desert Palace Entrance (North) Rocks', 'Desert Palace Entrance (North) Spot'), + ('Desert Ledge Return Rocks', 'Desert Ledge'), + ('Throne Room', 'Sewers (Dark)'), ('Sewers Door', 'Sewers'), + ('Sanctuary Push Door', 'Sanctuary'), + ('Sewer Drop', 'Sewers'), + ('Sewers Back Door', 'Sewers (Dark)'), + ('Agahnim 1', 'Agahnim 1'), + ('Death Mountain Entrance Rock', 'Death Mountain Entrance'), + ('Death Mountain Entrance Drop', 'Light World'), + ('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 House Front to Back', 'Old Man House Back'), + ('Old Man House Back to Front', 'Old Man House'), + ('Broken Bridge (West)', 'East Death Mountain (Bottom)'), + ('Broken Bridge (East)', 'Death Mountain'), + ('East Death Mountain Drop', 'East Death Mountain (Bottom)'), + ('Spiral Cave Ledge Access', 'Spiral Cave Ledge'), + ('Spiral Cave Ledge Drop', 'East Death Mountain (Bottom)'), + ('Spiral Cave (top to bottom)', 'Spiral Cave (Bottom)'), + ('East Death Mountain (Top)', 'East Death Mountain (Top)'), + ('Death Mountain (Top)', 'Death Mountain (Top)'), + ('Death Mountain Drop', 'Death Mountain'), + ('Tower of Hera Small Key Door', 'Tower of Hera (Basement)'), + ('Tower of Hera Big Key Door', 'Tower of Hera (Top)'), + ('Dark Lake Hylia Drop (East)', 'Dark Lake Hylia'), + ('Dark Lake Hylia Drop (South)', 'Dark Lake Hylia'), + ('Dark Lake Hylia Teleporter', 'Dark Lake Hylia'), + ('Dark Lake Hylia Ledge Pier', 'Dark Lake Hylia Ledge'), + ('Dark Lake Hylia Ledge Drop', 'Dark Lake Hylia'), + ('East Dark World Pier', 'East Dark World'), + ('South Dark World Bridge', 'South Dark World'), + ('East Dark World Bridge', 'East Dark World'), + ('Village of Outcasts Heavy Rock', 'West Dark World'), + ('Village of Outcasts Drop', 'South Dark World'), + ('Village of Outcasts Eastern Rocks', 'Hammer Peg Area'), + ('Village of Outcasts Pegs', 'Dark Grassy Lawn'), + ('Peg Area Rocks', 'West Dark World'), + ('Grassy Lawn Pegs', 'West Dark World'), + ('East Dark World River Pier', 'Northeast Dark World'), + ('West Dark World Gap', 'West Dark World'), + ('East Dark World Broken Bridge Pass', 'East Dark World'), + ('Northeast Dark World Broken Bridge Pass', 'Northeast Dark World'), + ('Bumper Cave Entrance Rock', 'Bumper Cave Entrance'), + ('Bumper Cave Entrance Drop', 'West Dark World'), + ('Bumper Cave Ledge Drop', 'West Dark World'), + ('Skull Woods Forest', 'Skull Woods Forest'), + ('Paradox Cave Push Block Reverse', 'Paradox Cave Chest Area'), + ('Paradox Cave Push Block', 'Paradox Cave Front'), + ('Paradox Cave Bomb Jump', 'Paradox Cave'), + ('Paradox Cave Drop', 'Paradox Cave Chest Area'), + ('Light World Death Mountain Shop', 'Light World Death Mountain Shop'), + ('Fairy Ascension Rocks', 'Fairy Ascension Plateau'), + ('Fairy Ascension Drop', 'East Death Mountain (Bottom)'), + ('Fairy Ascension Ledge Drop', 'Fairy Ascension Plateau'), + ('Fairy Ascension Ledge Access', 'Fairy Ascension Ledge'), + ('Fairy Ascension Cave Climb', 'Fairy Ascension Cave (Top)'), + ('Fairy Ascension Cave Pots', 'Fairy Ascension Cave (Bottom)'), + ('Fairy Ascension Cave Drop', 'Fairy Ascension Cave (Drop)'), + ('Dark Death Mountain Drop (East)', 'Dark Death Mountain (East Bottom)'), + ('Swamp Palace Moat', 'Swamp Palace (First Room)'), + ('Swamp Palace Small Key Door', 'Swamp Palace (Starting Area)'), + ('Swamp Palace (Center)', 'Swamp Palace (Center)'), + ('Swamp Palace (North)', 'Swamp Palace (North)'), + ('Thieves Town Big Key Door', 'Thieves Town (Deep)'), + ('Skull Woods Torch Room', 'Skull Woods Final Section (Mothula)'), + ('Skull Woods First Section Bomb Jump', 'Skull Woods First Section (Top)'), + ('Skull Woods First Section South Door', 'Skull Woods First Section (Right)'), + ('Skull Woods First Section West Door', 'Skull Woods First Section (Left)'), + ('Skull Woods First Section (Right) North Door', 'Skull Woods First Section'), + ('Skull Woods First Section (Left) Door to Right', 'Skull Woods First Section (Right)'), + ('Skull Woods First Section (Left) Door to Exit', 'Skull Woods First Section'), + ('Skull Woods First Section (Top) One-Way Path', 'Skull Woods First Section'), + ('Skull Woods Second Section (Drop)', 'Skull Woods Second Section'), + ('Blind Fight', 'Blind Fight'), + ('Desert Palace Pots (Outer)', 'Desert Palace Main (Inner)'), + ('Desert Palace Pots (Inner)', 'Desert Palace Main (Outer)'), + ('Ice Palace Entrance Room', 'Ice Palace (Main)'), + ('Ice Palace (East)', 'Ice Palace (East)'), + ('Ice Palace (East Top)', 'Ice Palace (East Top)'), + ('Ice Palace (Kholdstare)', 'Ice Palace (Kholdstare)'), + ('Misery Mire Entrance Gap', 'Misery Mire (Main)'), + ('Misery Mire (West)', 'Misery Mire (West)'), + ('Misery Mire Big Key Door', 'Misery Mire (Final Area)'), + ('Misery Mire (Vitreous)', 'Misery Mire (Vitreous)'), + ('Turtle Rock Entrance Gap', 'Turtle Rock (First Section)'), + ('Turtle Rock Entrance Gap Reverse', 'Turtle Rock (Entrance)'), + ('Turtle Rock Pokey Room', 'Turtle Rock (Chain Chomp Room)'), + ('Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Second Section)'), + ('Turtle Rock (Chain Chomp Room) (South)', 'Turtle Rock (First Section)'), + ('Turtle Rock Chain Chomp Staircase', 'Turtle Rock (Chain Chomp Room)'), + ('Turtle Rock (Big Chest) (North)', 'Turtle Rock (Second Section)'), + ('Turtle Rock Big Key Door', 'Turtle Rock (Crystaroller Room)'), + ('Turtle Rock Big Key Door Reverse', 'Turtle Rock (Second Section)'), + ('Turtle Rock Dark Room Staircase', 'Turtle Rock (Dark Room)'), + ('Turtle Rock (Dark Room) (North)', 'Turtle Rock (Crystaroller Room)'), + ('Turtle Rock (Dark Room) (South)', 'Turtle Rock (Eye Bridge)'), + ('Turtle Rock Dark Room (South)', 'Turtle Rock (Dark Room)'), + ('Turtle Rock (Trinexx)', 'Turtle Rock (Trinexx)'), + ('Palace of Darkness Bridge Room', 'Palace of Darkness (Center)'), + ('Palace of Darkness Bonk Wall', 'Palace of Darkness (Bonk Section)'), + ('Palace of Darkness Big Key Chest Staircase', 'Palace of Darkness (Big Key Chest)'), + ('Palace of Darkness (North)', 'Palace of Darkness (North)'), + ('Palace of Darkness Big Key Door', 'Palace of Darkness (Final Section)'), + ('Palace of Darkness Hammer Peg Drop', 'Palace of Darkness (Center)'), + ('Palace of Darkness Spike Statue Room Door', 'Palace of Darkness (Harmless Hellway)'), + ('Palace of Darkness Maze Door', 'Palace of Darkness (Maze)'), + ('Ganons Tower (Tile Room)', 'Ganons Tower (Tile Room)'), + ('Ganons Tower (Tile Room) Key Door', 'Ganons Tower (Compass Room)'), + ('Ganons Tower (Bottom) (East)', 'Ganons Tower (Bottom)'), + ('Ganons Tower (Hookshot Room)', 'Ganons Tower (Hookshot Room)'), + ('Ganons Tower (Map Room)', 'Ganons Tower (Map Room)'), + ('Ganons Tower (Double Switch Room)', 'Ganons Tower (Firesnake Room)'), + ('Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)'), + ('Ganons Tower (Bottom) (West)', 'Ganons Tower (Bottom)'), + ('Ganons Tower Big Key Door', 'Ganons Tower (Top)'), + ('Ganons Tower Torch Rooms', 'Ganons Tower (Before Moldorm)'), + ('Ganons Tower Moldorm Door', 'Ganons Tower (Moldorm)'), + ('Ganons Tower Moldorm Gap', 'Agahnim 2'), + ('Ganon Drop', 'Bottom of Pyramid'), + ('Pyramid Drop', 'East Dark World'), + ('Post Aga Teleporter', 'Light World'), + ('LW Hyrule Castle Ledge SQ', 'Hyrule Castle Ledge'), + ('EDM Hyrule Castle Ledge SQ', 'Hyrule Castle Ledge'), + ('WDM Hyrule Castle Ledge SQ', 'Hyrule Castle Ledge'), + ('Secret Passage Inner Bushes', 'Light World'), + ('Secret Passage Outer Bushes', 'Hyrule Castle Secret Entrance Area'), + ('Potion Shop Inner Bushes', 'Light World'), + ('Potion Shop Outer Bushes', 'Potion Shop Area'), + ('Potion Shop Inner Rock', 'Northeast Light World'), + ('Potion Shop Outer Rock', 'Potion Shop Area'), + ('Potion Shop River Drop', 'River'), + ('Graveyard Cave Inner Bushes', 'Light World'), + ('Graveyard Cave Outer Bushes', 'Graveyard Cave Area'), + ('Graveyard Cave Mirror Spot', 'West Dark World'), + ('Light World River Drop', 'River'), + ('Light World Pier', 'Light World'), + ('Potion Shop Pier', 'Potion Shop Area'), + ('Hyrule Castle Ledge Courtyard Drop', 'Light World'), + ('Mimic Cave Ledge Access', 'Mimic Cave Ledge'), + ('Mimic Cave Ledge Drop', 'East Death Mountain (Bottom)'), + ('Turtle Rock Tail Drop', 'Turtle Rock (Top)'), + ('Turtle Rock Drop', 'Dark Death Mountain'), + ('Desert Ledge Drop', 'Light World'), + ('Floating Island Drop', 'Dark Death Mountain'), + ('Dark Lake Hylia Central Island Teleporter', 'Lake Hylia Central Island'), + ('Dark Desert Teleporter', 'Light World'), + ('East Dark World Teleporter', 'Light World'), + ('South Dark World Teleporter', 'Light World'), + ('West Dark World Teleporter', 'Light World'), + ('Dark Death Mountain Teleporter (West)', 'Death Mountain'), + ('Dark Death Mountain Teleporter (East)', 'East Death Mountain (Top)'), + ('Dark Death Mountain Teleporter (East Bottom)', 'East Death Mountain (Bottom)'), + ('Mire Mirror Spot', 'Dark Desert'), + ('Dark Desert Drop', 'Dark Desert'), + ('Desert Palace Stairs Mirror Spot', 'Dark Desert'), + ('Desert Palace North Mirror Spot', 'Dark Desert'), + ('Maze Race Mirror Spot', 'West Dark World'), + ('Lake Hylia Central Island Mirror Spot', 'Dark Lake Hylia'), + ('Hammer Peg Area Mirror Spot', 'Hammer Peg Area'), + ('Bumper Cave Ledge Mirror Spot', 'Bumper Cave Ledge'), + ('Bumper Cave Entrance Mirror Spot', 'Bumper Cave Entrance'), + ('Death Mountain Mirror Spot', 'Dark Death Mountain'), + ('East Death Mountain Mirror Spot (Top)', 'Dark Death Mountain'), + ('East Death Mountain Mirror Spot (Bottom)', 'Dark Death Mountain (East Bottom)'), + ('Death Mountain (Top) Mirror Spot', 'Dark Death Mountain'), + ('Dark Death Mountain Ledge Mirror Spot (East)', 'Dark Death Mountain Ledge'), + ('Dark Death Mountain Ledge Mirror Spot (West)', 'Dark Death Mountain Ledge'), + ('Floating Island Mirror Spot', 'Death Mountain Floating Island (Dark World)'), + ('Laser Bridge Mirror Spot', 'Dark Death Mountain Isolated Ledge'), + ('East Dark World Mirror Spot', 'East Dark World'), + ('West Dark World Mirror Spot', 'West Dark World'), + ('South Dark World Mirror Spot', 'South Dark World'), + ('Potion Shop Mirror Spot', 'Northeast Dark World'), + ('Northeast Dark World Mirror Spot', 'Northeast Dark World'), + ('Shopping Mall Mirror Spot', 'Dark Lake Hylia Ledge'), + ('Skull Woods Mirror Spot', 'Skull Woods Forest (West)'), + ('DDM Flute', 'The Sky'), + ('DDM Landing', 'Dark Death Mountain'), + ('NEDW Flute', 'The Sky'), + ('NEDW Landing', 'Northeast Dark World'), + ('WDW Flute', 'The Sky'), + ('WDW Landing', 'West Dark World'), + ('SDW Flute', 'The Sky'), + ('SDW Landing', 'South Dark World'), + ('EDW Flute', 'The Sky'), + ('EDW Landing', 'East Dark World'), + ('DLHL Flute', 'The Sky'), + ('DLHL Landing', 'Dark Lake Hylia Ledge'), + ('DD Flute', 'The Sky'), + ('DD Landing', 'Dark Desert Ledge'), + ('EDDM Flute', 'The Sky'), + ('Dark Grassy Lawn Flute', 'The Sky'), + ('Hammer Peg Area Flute', 'The Sky'), + ('Chris Houlihan Room Exit', 'Pyramid Ledge'), + ('Bush Covered Lawn Inner Bushes', 'Light World'), + ('Bush Covered Lawn Outer Bushes', 'Bush Covered Lawn'), + ('Bush Covered Lawn Mirror Spot', 'Dark Grassy Lawn'), + ('Bomb Hut Inner Bushes', 'Light World'), + ('Bomb Hut Outer Bushes', 'Bomb Hut Area'), + ('Bomb Hut Mirror Spot', 'West Dark World')] # non-shuffled entrance links default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing'), ("Blinds Hideout", "Blinds Hideout"), @@ -2061,6 +3367,154 @@ default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing'), ('Pyramid Entrance', 'Bottom of Pyramid') ] +inverted_default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing'), + ('Blinds Hideout', 'Blinds Hideout'), + ('Dam', 'Dam'), + ('Lumberjack House', 'Lumberjack House'), + ('Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance'), + ('Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance'), + ('Hyrule Castle Secret Entrance Exit', 'Light World'), + ('Bonk Fairy (Light)', 'Bonk Fairy (Light)'), + ('Lake Hylia Fairy', 'Lake Hylia Healer Fairy'), + ('Lake Hylia Fortune Teller', 'Lake Hylia Fortune Teller'), + ('Light Hype Fairy', 'Swamp Healer Fairy'), + ('Desert Fairy', 'Desert Healer Fairy'), + ('Kings Grave', 'Kings Grave'), + ('Tavern North', 'Tavern'), + ('Chicken House', 'Chicken House'), + ('Aginahs Cave', 'Aginahs Cave'), + ('Sahasrahlas Hut', 'Sahasrahlas Hut'), + ('Cave Shop (Lake Hylia)', 'Cave Shop (Lake Hylia)'), + ('Capacity Upgrade', 'Capacity Upgrade'), + ('Kakariko Well Drop', 'Kakariko Well (top)'), + ('Kakariko Well Cave', 'Kakariko Well (bottom)'), + ('Kakariko Well Exit', 'Light World'), + ('Blacksmiths Hut', 'Blacksmiths Hut'), + ('Bat Cave Drop', 'Bat Cave (right)'), + ('Bat Cave Cave', 'Bat Cave (left)'), + ('Bat Cave Exit', 'Light World'), + ('Sick Kids House', 'Sick Kids House'), + ('Elder House (East)', 'Elder House'), + ('Elder House (West)', 'Elder House'), + ('Elder House Exit (East)', 'Light World'), + ('Elder House Exit (West)', 'Light World'), + ('North Fairy Cave Drop', 'North Fairy Cave'), + ('North Fairy Cave', 'North Fairy Cave'), + ('North Fairy Cave Exit', 'Light World'), + ('Lost Woods Gamble', 'Lost Woods Gamble'), + ('Fortune Teller (Light)', 'Fortune Teller (Light)'), + ('Snitch Lady (East)', 'Snitch Lady (East)'), + ('Snitch Lady (West)', 'Snitch Lady (West)'), + ('Bush Covered House', 'Bush Covered House'), + ('Tavern (Front)', 'Tavern (Front)'), + ('Light World Bomb Hut', 'Light World Bomb Hut'), + ('Kakariko Shop', 'Kakariko Shop'), + ('Lost Woods Hideout Drop', 'Lost Woods Hideout (top)'), + ('Lost Woods Hideout Stump', 'Lost Woods Hideout (bottom)'), + ('Lost Woods Hideout Exit', 'Light World'), + ('Lumberjack Tree Tree', 'Lumberjack Tree (top)'), + ('Lumberjack Tree Cave', 'Lumberjack Tree (bottom)'), + ('Lumberjack Tree Exit', 'Light World'), + ('Cave 45', 'Cave 45'), + ('Graveyard Cave', 'Graveyard Cave'), + ('Checkerboard Cave', 'Checkerboard Cave'), + ('Mini Moldorm Cave', 'Mini Moldorm Cave'), + ('Long Fairy Cave', 'Long Fairy Cave'), + ('Good Bee Cave', 'Good Bee Cave'), + ('20 Rupee Cave', '20 Rupee Cave'), + ('50 Rupee Cave', '50 Rupee Cave'), + ('Ice Rod Cave', 'Ice Rod Cave'), + ('Bonk Rock Cave', 'Bonk Rock Cave'), + ('Library', 'Library'), + ('Kakariko Gamble Game', 'Kakariko Gamble Game'), + ('Potion Shop', 'Potion Shop'), + ('Two Brothers House (East)', 'Two Brothers House'), + ('Two Brothers House (West)', 'Two Brothers House'), + ('Two Brothers House Exit (East)', 'Light World'), + ('Two Brothers House Exit (West)', 'Maze Race Ledge'), + ('Sanctuary', 'Sanctuary'), + ('Sanctuary Grave', 'Sewer Drop'), + ('Sanctuary Exit', 'Light World'), + ('Old Man House (Bottom)', 'Old Man House'), + ('Old Man House Exit (Bottom)', 'Death Mountain'), + ('Old Man House (Top)', 'Old Man House Back'), + ('Old Man House Exit (Top)', 'Death Mountain'), + ('Spectacle Rock Cave Peak', 'Spectacle Rock Cave (Peak)'), + ('Spectacle Rock Cave (Bottom)', 'Spectacle Rock Cave (Bottom)'), + ('Spectacle Rock Cave', 'Spectacle Rock Cave (Top)'), + ('Spectacle Rock Cave Exit', 'Death Mountain'), + ('Spectacle Rock Cave Exit (Top)', 'Death Mountain'), + ('Spectacle Rock Cave Exit (Peak)', 'Death Mountain'), + ('Paradox Cave (Bottom)', 'Paradox Cave Front'), + ('Paradox Cave (Middle)', 'Paradox Cave'), + ('Paradox Cave (Top)', 'Paradox Cave'), + ('Paradox Cave Exit (Bottom)', 'East Death Mountain (Bottom)'), + ('Paradox Cave Exit (Middle)', 'East Death Mountain (Bottom)'), + ('Paradox Cave Exit (Top)', 'East Death Mountain (Top)'), + ('Hookshot Fairy', 'Hookshot Fairy'), + ('Fairy Ascension Cave (Bottom)', 'Fairy Ascension Cave (Bottom)'), + ('Fairy Ascension Cave (Top)', 'Fairy Ascension Cave (Top)'), + ('Fairy Ascension Cave Exit (Bottom)', 'Fairy Ascension Plateau'), + ('Fairy Ascension Cave Exit (Top)', 'Fairy Ascension Ledge'), + ('Spiral Cave', 'Spiral Cave (Top)'), + ('Spiral Cave (Bottom)', 'Spiral Cave (Bottom)'), + ('Spiral Cave Exit', 'East Death Mountain (Bottom)'), + ('Spiral Cave Exit (Top)', 'Spiral Cave Ledge'), + ('Pyramid Fairy', 'Pyramid Fairy'), + ('East Dark World Hint', 'East Dark World Hint'), + ('Palace of Darkness Hint', 'Palace of Darkness Hint'), + ('Dark Lake Hylia Shop', 'Dark Lake Hylia Shop'), + ('Dark Lake Hylia Fairy', 'Dark Lake Hylia Healer Fairy'), + ('Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Healer Fairy'), + ('Dark Lake Hylia Ledge Spike Cave', 'Dark Lake Hylia Ledge Spike Cave'), + ('Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Hint'), + ('Hype Cave', 'Hype Cave'), + ('Bonk Fairy (Dark)', 'Bonk Fairy (Dark)'), + ('Brewery', 'Brewery'), + ('C-Shaped House', 'C-Shaped House'), + ('Chest Game', 'Chest Game'), + ('Dark World Hammer Peg Cave', 'Dark World Hammer Peg Cave'), + ('Red Shield Shop', 'Red Shield Shop'), + ('Fortune Teller (Dark)', 'Fortune Teller (Dark)'), + ('Dark World Shop', 'Village of Outcasts Shop'), + ('Dark World Lumberjack Shop', 'Dark World Lumberjack Shop'), + ('Dark World Potion Shop', 'Dark World Potion Shop'), + ('Archery Game', 'Archery Game'), + ('Mire Shed', 'Mire Shed'), + ('Dark Desert Hint', 'Dark Desert Hint'), + ('Dark Desert Fairy', 'Dark Desert Healer Fairy'), + ('Spike Cave', 'Spike Cave'), + ('Hookshot Cave', 'Hookshot Cave'), + ('Superbunny Cave (Top)', 'Superbunny Cave'), + ('Cave Shop (Dark Death Mountain)', 'Cave Shop (Dark Death Mountain)'), + ('Superbunny Cave (Bottom)', 'Superbunny Cave'), + ('Superbunny Cave Exit (Bottom)', 'Dark Death Mountain (East Bottom)'), + ('Hookshot Cave Exit (North)', 'Death Mountain Floating Island (Dark World)'), + ('Hookshot Cave Back Entrance', 'Hookshot Cave'), + ('Mimic Cave', 'Mimic Cave'), + ('Inverted Pyramid Hole', 'Pyramid'), + ('Inverted Links House', 'Inverted Links House'), + ('Inverted Links House Exit', 'South Dark World'), + ('Inverted Big Bomb Shop', 'Inverted Big Bomb Shop'), + ('Inverted Dark Sanctuary', 'Inverted Dark Sanctuary'), + ('Old Man Cave (West)', 'Bumper Cave'), + ('Old Man Cave (East)', 'Death Mountain Return Cave'), + ('Old Man Cave Exit (West)', 'Dark Death Mountain'), + ('Old Man Cave Exit (East)', 'East Dark World'), + ('Dark Death Mountain Fairy', 'Old Man Cave'), + ('Bumper Cave (Bottom)', 'Old Man Cave'), + ('Bumper Cave (Top)', 'Dark Death Mountain Healer Fairy'), + ('Bumper Cave Exit (Top)', 'Death Mountain Return Ledge'), + ('Bumper Cave Exit (Bottom)', 'Light World'), + ('Death Mountain Return Cave (East)', 'Bumper Cave'), + ('Death Mountain Return Cave (West)', 'Death Mountain Return Cave'), + ('Death Mountain Return Cave Exit (West)', 'Death Mountain'), + ('Death Mountain Return Cave Exit (East)', 'Death Mountain'), + ('Hookshot Cave Exit (South)', 'Dark Death Mountain'), + ('Superbunny Cave Exit (Top)', 'Dark Death Mountain'), + ('Pyramid Exit', 'Light World'), + ('Inverted Pyramid Entrance', 'Bottom of Pyramid')] + # non shuffled dungeons default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace Main (Inner)'), ('Desert Palace Entrance (West)', 'Desert Palace Main (Outer)'), @@ -2121,6 +3575,58 @@ default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace ('Ganons Tower Exit', 'Dark Death Mountain (Top)') ] +inverted_default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace Main (Inner)'), + ('Desert Palace Entrance (West)', 'Desert Palace Main (Outer)'), + ('Desert Palace Entrance (North)', 'Desert Palace North'), + ('Desert Palace Entrance (East)', 'Desert Palace Main (Outer)'), + ('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 Palace'), + ('Eastern Palace Exit', 'Light World'), + ('Tower of Hera', 'Tower of Hera (Bottom)'), + ('Tower of Hera Exit', 'Death Mountain (Top)'), + ('Hyrule Castle Entrance (South)', 'Hyrule Castle'), + ('Hyrule Castle Entrance (West)', 'Hyrule Castle'), + ('Hyrule Castle Entrance (East)', 'Hyrule Castle'), + ('Hyrule Castle Exit (South)', 'Light World'), + ('Hyrule Castle Exit (West)', 'Hyrule Castle Ledge'), + ('Hyrule Castle Exit (East)', 'Hyrule Castle Ledge'), + ('Thieves Town', 'Thieves Town (Entrance)'), + ('Thieves Town Exit', 'West Dark World'), + ('Skull Woods First Section Hole (East)', 'Skull Woods First Section (Right)'), + ('Skull Woods First Section Hole (West)', 'Skull Woods First Section (Left)'), + ('Skull Woods First Section Hole (North)', 'Skull Woods First Section (Top)'), + ('Skull Woods First Section Door', 'Skull Woods First Section'), + ('Skull Woods First Section Exit', 'Skull Woods Forest'), + ('Skull Woods Second Section Hole', 'Skull Woods Second Section (Drop)'), + ('Skull Woods Second Section Door (East)', 'Skull Woods Second Section'), + ('Skull Woods Second Section Door (West)', 'Skull Woods Second Section'), + ('Skull Woods Second Section Exit (East)', 'Skull Woods Forest'), + ('Skull Woods Second Section Exit (West)', 'Skull Woods Forest (West)'), + ('Skull Woods Final Section', 'Skull Woods Final Section (Entrance)'), + ('Skull Woods Final Section Exit', 'Skull Woods Forest (West)'), + ('Ice Palace', 'Ice Palace (Entrance)'), + ('Misery Mire', 'Misery Mire (Entrance)'), + ('Misery Mire Exit', 'Dark Desert'), + ('Palace of Darkness', 'Palace of Darkness (Entrance)'), + ('Palace of Darkness Exit', 'East Dark World'), + ('Swamp Palace', 'Swamp Palace (Entrance)'), + ('Swamp Palace Exit', 'South Dark World'), + ('Turtle Rock', 'Turtle Rock (Entrance)'), + ('Turtle Rock Ledge Exit (West)', 'Dark Death Mountain Ledge'), + ('Turtle Rock Ledge Exit (East)', 'Dark Death Mountain Ledge'), + ('Dark Death Mountain Ledge (West)', 'Turtle Rock (Second Section)'), + ('Dark Death Mountain Ledge (East)', 'Turtle Rock (Big Chest)'), + ('Turtle Rock Isolated Ledge Exit', 'Dark Death Mountain Isolated Ledge'), + ('Turtle Rock Isolated Ledge Entrance', 'Turtle Rock (Eye Bridge)'), + ('Inverted Ganons Tower', 'Inverted Ganons Tower (Entrance)'), + ('Inverted Ganons Tower Exit', 'Hyrule Castle Ledge'), + ('Inverted Agahnims Tower', 'Inverted Agahnims Tower'), + ('Inverted Agahnims Tower Exit', 'Dark Death Mountain'), + ('Turtle Rock Exit (Front)', 'Dark Death Mountain'), + ('Ice Palace Exit', 'Dark Lake Hylia')] # format: # Key=Name @@ -2130,6 +3636,7 @@ default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace # ToDo somehow merge this with creation of the locations door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0x0ae8, 0x08b8, 0x0b07, 0x08bf, 0x06, 0xfe, 0x0816, 0x0000)), + 'Inverted Big Bomb Shop': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0x0ae8, 0x08b8, 0x0b07, 0x08bf, 0x06, 0xfe, 0x0816, 0x0000)), 'Desert Palace Entrance (South)': (0x08, (0x0084, 0x30, 0x0314, 0x0c56, 0x00a6, 0x0ca8, 0x0128, 0x0cc3, 0x0133, 0x0a, 0xfa, 0x0000, 0x0000)), 'Desert Palace Entrance (West)': (0x0A, (0x0083, 0x30, 0x0280, 0x0c46, 0x0003, 0x0c98, 0x0088, 0x0cb3, 0x0090, 0x0a, 0xfd, 0x0000, 0x0000)), 'Desert Palace Entrance (North)': (0x0B, (0x0063, 0x30, 0x0016, 0x0c00, 0x00a2, 0x0c28, 0x0128, 0x0c6d, 0x012f, 0x00, 0x0e, 0x0000, 0x0000)), @@ -2139,7 +3646,9 @@ door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0 'Hyrule Castle Entrance (South)': (0x03, (0x0061, 0x1b, 0x0530, 0x0692, 0x0784, 0x06cc, 0x07f8, 0x06ff, 0x0803, 0x0e, 0xfa, 0x0000, 0x87be)), 'Hyrule Castle Entrance (West)': (0x02, (0x0060, 0x1b, 0x0016, 0x0600, 0x06ae, 0x0604, 0x0728, 0x066d, 0x0733, 0x00, 0x02, 0x0000, 0x8124)), 'Hyrule Castle Entrance (East)': (0x04, (0x0062, 0x1b, 0x004a, 0x0600, 0x0856, 0x0604, 0x08c8, 0x066d, 0x08d3, 0x00, 0xfa, 0x0000, 0x8158)), + 'Inverted Pyramid Entrance': (0x35, (0x0010, 0x1b, 0x0418, 0x0679, 0x06b4, 0x06c6, 0x0728, 0x06e6, 0x0733, 0x07, 0xf9, 0x0000, 0x0000)), 'Agahnims Tower': (0x23, (0x00e0, 0x1b, 0x0032, 0x0600, 0x0784, 0x0634, 0x07f8, 0x066d, 0x0803, 0x00, 0x0a, 0x0000, 0x82be)), + 'Inverted Ganons Tower': (0x23, (0x00e0, 0x1b, 0x0032, 0x0600, 0x0784, 0x0634, 0x07f8, 0x066d, 0x0803, 0x00, 0x0a, 0x0000, 0x82be)), 'Thieves Town': (0x33, (0x00db, 0x58, 0x0b2e, 0x075a, 0x0176, 0x07a8, 0x01f8, 0x07c7, 0x0203, 0x06, 0xfa, 0x0000, 0x0000)), 'Skull Woods First Section Door': (0x29, (0x0058, 0x40, 0x0f4c, 0x01f6, 0x0262, 0x0248, 0x02e8, 0x0263, 0x02ef, 0x0a, 0xfe, 0x0000, 0x0000)), 'Skull Woods Second Section Door (East)': (0x28, (0x0057, 0x40, 0x0eb8, 0x01e6, 0x01c2, 0x0238, 0x0248, 0x0253, 0x024f, 0x0a, 0xfe, 0x0000, 0x0000)), @@ -2187,12 +3696,14 @@ door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0 'Hookshot Cave': (0x39, (0x003c, 0x45, 0x04da, 0x00a3, 0x0cd6, 0x0107, 0x0d48, 0x0112, 0x0d53, 0x0b, 0xfa, 0x0000, 0x0000)), 'Hookshot Cave Back Entrance': (0x3A, (0x002c, 0x45, 0x004c, 0x0000, 0x0c56, 0x0038, 0x0cc8, 0x006f, 0x0cd3, 0x00, 0x0a, 0x0000, 0x0000)), 'Ganons Tower': (0x36, (0x000c, 0x43, 0x0052, 0x0000, 0x0884, 0x0028, 0x08f8, 0x006f, 0x0903, 0x00, 0xfc, 0x0000, 0x0000)), + 'Inverted Agahnims Tower': (0x36, (0x000c, 0x43, 0x0052, 0x0000, 0x0884, 0x0028, 0x08f8, 0x006f, 0x0903, 0x00, 0xfc, 0x0000, 0x0000)), 'Pyramid Entrance': (0x35, (0x0010, 0x5b, 0x0b0e, 0x075a, 0x0674, 0x07a8, 0x06e8, 0x07c7, 0x06f3, 0x06, 0xfa, 0x0000, 0x0000)), 'Skull Woods First Section Hole (West)': ([0xDB84D, 0xDB84E], None), 'Skull Woods First Section Hole (East)': ([0xDB84F, 0xDB850], None), 'Skull Woods First Section Hole (North)': ([0xDB84C], None), 'Skull Woods Second Section Hole': ([0xDB851, 0xDB852], None), 'Pyramid Hole': ([0xDB854, 0xDB855, 0xDB856], None), + 'Inverted Pyramid Hole': ([0xDB854, 0xDB855, 0xDB856, 0x180340], None), 'Waterfall of Wishing': (0x5B, (0x0114, 0x0f, 0x0080, 0x0200, 0x0e00, 0x0207, 0x0e60, 0x026f, 0x0e7d, 0x00, 0x00, 0x0000, 0x0000)), 'Dam': (0x4D, (0x010b, 0x3b, 0x04a0, 0x0e8a, 0x06fa, 0x0ed8, 0x0778, 0x0ef7, 0x077f, 0x06, 0xfa, 0x0000, 0x0000)), 'Blinds Hideout': (0x60, (0x0119, 0x18, 0x02b2, 0x064a, 0x0186, 0x0697, 0x0208, 0x06b7, 0x0213, 0x06, 0xfa, 0x0000, 0x0000)), @@ -2252,6 +3763,7 @@ door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0 'Dark World Hammer Peg Cave': (0x7E, (0x0127, 0x62, 0x0894, 0x091e, 0x0492, 0x09a6, 0x0508, 0x098b, 0x050f, 0x00, 0x00, 0x0000, 0x0000)), 'Red Shield Shop': (0x74, (0x0110, 0x5a, 0x079a, 0x06e8, 0x04d6, 0x0738, 0x0548, 0x0755, 0x0553, 0x08, 0xf8, 0x0AA8, 0x0000)), 'Dark Sanctuary Hint': (0x59, (0x0112, 0x53, 0x001e, 0x0400, 0x06e2, 0x0446, 0x0758, 0x046d, 0x075f, 0x00, 0x00, 0x0000, 0x0000)), + 'Inverted Dark Sanctuary': (0x59, (0x0112, 0x53, 0x001e, 0x0400, 0x06e2, 0x0446, 0x0758, 0x046d, 0x075f, 0x00, 0x00, 0x0000, 0x0000)), 'Fortune Teller (Dark)': (0x65, (0x0122, 0x51, 0x0610, 0x04b4, 0x027e, 0x0507, 0x02f8, 0x0523, 0x0303, 0x0a, 0xf6, 0x091E, 0x0000)), 'Dark World Shop': (0x5F, (0x010f, 0x58, 0x1058, 0x0814, 0x02be, 0x0868, 0x0338, 0x0883, 0x0343, 0x0a, 0xf6, 0x0000, 0x0000)), 'Dark World Lumberjack Shop': (0x56, (0x010f, 0x42, 0x041c, 0x0074, 0x04e2, 0x00c7, 0x0558, 0x00e3, 0x055f, 0x0a, 0xf6, 0x0000, 0x0000)), @@ -2265,6 +3777,7 @@ door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0 'Dark Death Mountain Fairy': (0x6F, (0x0115, 0x43, 0x1400, 0x0294, 0x0600, 0x02e8, 0x0678, 0x0303, 0x0685, 0x0a, 0xf6, 0x0000, 0x0000)), 'Mimic Cave': (0x4E, (0x010c, 0x05, 0x07e0, 0x0103, 0x0d00, 0x0156, 0x0d78, 0x0172, 0x0d7d, 0x0b, 0xf5, 0x0000, 0x0000)), 'Big Bomb Shop': (0x52, (0x011c, 0x6c, 0x0506, 0x0a9a, 0x0832, 0x0ae7, 0x08b8, 0x0b07, 0x08bf, 0x06, 0xfa, 0x0816, 0x0000)), + 'Inverted Links House': (0x52, (0x011c, 0x6c, 0x0506, 0x0a9a, 0x0832, 0x0ae7, 0x08b8, 0x0b07, 0x08bf, 0x06, 0xfa, 0x0816, 0x0000)), 'Dark Lake Hylia Shop': (0x73, (0x010f, 0x75, 0x0380, 0x0c6a, 0x0a00, 0x0cb8, 0x0a58, 0x0cd7, 0x0a85, 0x06, 0xfa, 0x0000, 0x0000)), 'Lumberjack House': (0x75, (0x011f, 0x02, 0x049c, 0x0088, 0x04e6, 0x00d8, 0x0558, 0x00f7, 0x0563, 0x08, 0xf8, 0x07AA, 0x0000)), 'Lake Hylia Fortune Teller': (0x72, (0x0122, 0x35, 0x0380, 0x0c6a, 0x0a00, 0x0cb8, 0x0a58, 0x0cd7, 0x0a85, 0x06, 0xfa, 0x0000, 0x0000)), @@ -2275,6 +3788,7 @@ door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0 # value = entrance # # | (entrance #, exit #) exit_ids = {'Links House Exit': (0x01, 0x00), + 'Inverted Links House Exit': (0x01, 0x00), 'Chris Houlihan Room Exit': (None, 0x3D), 'Desert Palace Exit (South)': (0x09, 0x0A), 'Desert Palace Exit (West)': (0x0B, 0x0C), @@ -2286,6 +3800,7 @@ exit_ids = {'Links House Exit': (0x01, 0x00), 'Hyrule Castle Exit (West)': (0x03, 0x02), 'Hyrule Castle Exit (East)': (0x05, 0x04), 'Agahnims Tower Exit': (0x24, 0x25), + 'Inverted Agahnims Tower Exit': (0x24, 0x25), 'Thieves Town Exit': (0x34, 0x35), 'Skull Woods First Section Exit': (0x2A, 0x2B), 'Skull Woods Second Section Exit (East)': (0x29, 0x2A), @@ -2333,6 +3848,7 @@ exit_ids = {'Links House Exit': (0x01, 0x00), 'Hookshot Cave Exit (South)': (0x3A, 0x3B), 'Hookshot Cave Exit (North)': (0x3B, 0x3C), 'Ganons Tower Exit': (0x37, 0x38), + 'Inverted Ganons Tower Exit': (0x37, 0x38), 'Pyramid Exit': (0x36, 0x37), 'Waterfall of Wishing': 0x5C, 'Dam': 0x4E, @@ -2384,6 +3900,7 @@ exit_ids = {'Links House Exit': (0x01, 0x00), 'East Dark World Hint': 0x69, 'Palace of Darkness Hint': 0x68, 'Big Bomb Shop': 0x53, + 'Inverted Big Bomb Shop': 0x53, 'Village of Outcasts Shop': 0x60, 'Dark Lake Hylia Shop': 0x60, 'Dark World Lumberjack Shop': 0x60, @@ -2397,6 +3914,7 @@ exit_ids = {'Links House Exit': (0x01, 0x00), 'Dark World Hammer Peg Cave': 0x83, 'Red Shield Shop': 0x57, 'Dark Sanctuary Hint': 0x5A, + 'Inverted Dark Sanctuary': 0x5A, 'Fortune Teller (Dark)': 0x66, 'Archery Game': 0x59, 'Mire Shed': 0x5F, diff --git a/Gui.py b/Gui.py index be544aa8..078a3ee1 100755 --- a/Gui.py +++ b/Gui.py @@ -145,7 +145,7 @@ def guiMain(args=None): modeFrame = Frame(drowDownFrame) modeVar = StringVar() modeVar.set('open') - modeOptionMenu = OptionMenu(modeFrame, modeVar, 'standard', 'open', 'swordless') + modeOptionMenu = OptionMenu(modeFrame, modeVar, 'standard', 'open', 'swordless', 'inverted') modeOptionMenu.pack(side=RIGHT) modeLabel = Label(modeFrame, text='Game Mode') modeLabel.pack(side=LEFT) diff --git a/InvertedRegions.py b/InvertedRegions.py new file mode 100644 index 00000000..bc2ea357 --- /dev/null +++ b/InvertedRegions.py @@ -0,0 +1,642 @@ +import collections +from BaseClasses import Region, Location, Entrance, RegionType, Shop, ShopType + + +def create_inverted_regions(world, player): + + world.regions += [ + 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', + 'Blacksmiths Hut', 'Bat Cave Drop Ledge', 'Bat Cave Cave', 'Sick Kids House', 'Hobo Bridge', 'Lost Woods Hideout Drop', 'Lost Woods Hideout Stump', + 'Lumberjack Tree Tree', 'Lumberjack Tree Cave', 'Mini Moldorm Cave', 'Ice Rod Cave', 'Lake Hylia Central Island Pier', + 'Bonk Rock Cave', 'Library', 'Two Brothers House (East)', 'Desert Palace Stairs', 'Eastern Palace', 'Master Sword Meadow', + 'Sanctuary', 'Sanctuary Grave', 'Death Mountain Entrance Rock', 'Light World River Drop', + 'Elder House (East)', 'Elder House (West)', 'North Fairy Cave', 'North Fairy Cave Drop', 'Lost Woods Gamble', 'Snitch Lady (East)', 'Snitch Lady (West)', 'Tavern (Front)', + 'Kakariko Shop', 'Long Fairy Cave', 'Good Bee Cave', '20 Rupee Cave', 'Cave Shop (Lake Hylia)', + 'Bonk Fairy (Light)', '50 Rupee Cave', 'Fortune Teller (Light)', 'Lake Hylia Fairy', 'Light Hype Fairy', 'Desert Fairy', 'Lumberjack House', 'Lake Hylia Fortune Teller', 'Kakariko Gamble Game', + 'East Dark World Mirror Spot', 'West Dark World Mirror Spot', 'South Dark World Mirror Spot', 'Cave 45', 'Checkerboard Cave', 'Mire Mirror Spot', 'Hammer Peg Area Mirror Spot', + 'Shopping Mall Mirror Spot', 'Skull Woods Mirror Spot', 'Inverted Pyramid Entrance','Hyrule Castle Entrance (South)', 'Secret Passage Outer Bushes', 'LW Hyrule Castle Ledge SQ', 'Bush Covered Lawn Outer Bushes', + 'Potion Shop Outer Bushes', 'Graveyard Cave Outer Bushes', 'Bomb Hut Outer Bushes']), + create_lw_region(player, 'Bush Covered Lawn', None, ['Bush Covered House', 'Bush Covered Lawn Inner Bushes', 'Bush Covered Lawn Mirror Spot']), + create_lw_region(player, 'Bomb Hut Area', None, ['Light World Bomb Hut', 'Bomb Hut Inner Bushes', 'Bomb Hut Mirror Spot']), + create_lw_region(player, 'Hyrule Castle Secret Entrance Area', None, ['Hyrule Castle Secret Entrance Stairs', 'Secret Passage Inner Bushes']), + create_lw_region(player, 'Death Mountain Entrance', None, ['Old Man Cave (West)', 'Death Mountain Entrance Drop', 'Bumper Cave Entrance Mirror Spot']), + create_lw_region(player, 'Lake Hylia Central Island', None, ['Capacity Upgrade', 'Lake Hylia Central Island Mirror Spot']), + create_cave_region(player, 'Blinds Hideout', 'a bounty of five items', ["Blind\'s Hideout - Top", + "Blind\'s Hideout - Left", + "Blind\'s Hideout - Right", + "Blind\'s Hideout - Far Left", + "Blind\'s Hideout - Far Right"]), + create_lw_region(player, 'Northeast Light World', None, ['Zoras River', 'Waterfall of Wishing', 'Potion Shop Outer Rock', 'Northeast Dark World Mirror Spot']), + create_lw_region(player, 'Potion Shop Area', None, ['Potion Shop', 'Potion Shop Inner Bushes', 'Potion Shop Inner Rock', 'Potion Shop Mirror Spot', 'Potion Shop River Drop']), + create_lw_region(player, 'Graveyard Cave Area', None, ['Graveyard Cave', 'Graveyard Cave Inner Bushes', 'Graveyard Cave Mirror Spot']), + create_lw_region(player, 'River', None, ['Light World Pier', 'Potion Shop Pier']), + create_cave_region(player, 'Hyrule Castle Secret Entrance', 'a drop\'s exit', ['Link\'s Uncle', 'Secret Passage'], ['Hyrule Castle Secret Entrance Exit']), + create_lw_region(player, 'Zoras River', ['King Zora', 'Zora\'s Ledge']), + create_cave_region(player, 'Waterfall of Wishing', 'a cave with two chests', ['Waterfall Fairy - Left', 'Waterfall Fairy - Right']), + create_lw_region(player, 'Kings Grave Area', None, ['Kings Grave', 'Kings Grave Inner Rocks']), + create_cave_region(player, 'Kings Grave', 'a cave with a chest', ['King\'s Tomb']), + create_cave_region(player, 'North Fairy Cave', 'a drop\'s exit', None, ['North Fairy Cave Exit']), + create_cave_region(player, 'Dam', 'the dam', ['Floodgate', 'Floodgate Chest']), + create_cave_region(player, 'Inverted Links House', 'your house', ['Link\'s House'], ['Inverted Links House Exit']), + create_cave_region(player, 'Chris Houlihan Room', 'I AM ERROR', None, ['Chris Houlihan Room Exit']), + create_cave_region(player, 'Tavern', 'the tavern', ['Kakariko Tavern']), + create_cave_region(player, 'Elder House', 'a connector', None, ['Elder House Exit (East)', 'Elder House Exit (West)']), + create_cave_region(player, 'Snitch Lady (East)', 'a boring house'), + create_cave_region(player, 'Snitch Lady (West)', 'a boring house'), + create_cave_region(player, 'Bush Covered House', 'the grass man'), + create_cave_region(player, 'Tavern (Front)', 'the tavern'), + create_cave_region(player, 'Light World Bomb Hut', 'a restock room'), + create_cave_region(player, 'Kakariko Shop', 'a common shop'), + create_cave_region(player, 'Fortune Teller (Light)', 'a fortune teller'), + create_cave_region(player, 'Lake Hylia Fortune Teller', 'a fortune teller'), + create_cave_region(player, 'Lumberjack House', 'a boring house'), + create_cave_region(player, 'Bonk Fairy (Light)', 'a fairy fountain'), + create_cave_region(player, 'Bonk Fairy (Dark)', 'a fairy fountain'), + create_cave_region(player, 'Lake Hylia Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Swamp Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Desert Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Lake Hylia Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Lake Hylia Ledge Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Desert Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Dark Death Mountain Healer Fairy', 'a fairy fountain'), + create_cave_region(player, 'Chicken House', 'a house with a chest', ['Chicken House']), + create_cave_region(player, 'Aginahs Cave', 'a cave with a chest', ['Aginah\'s Cave']), + create_cave_region(player, 'Sahasrahlas Hut', 'Sahasrahla', ['Sahasrahla\'s Hut - Left', 'Sahasrahla\'s Hut - Middle', 'Sahasrahla\'s Hut - Right', 'Sahasrahla']), + create_cave_region(player, 'Kakariko Well (top)', 'a drop\'s exit', ['Kakariko Well - Top', 'Kakariko Well - Left', 'Kakariko Well - Middle', + 'Kakariko Well - Right', 'Kakariko Well - Bottom'], ['Kakariko Well (top to bottom)']), + create_cave_region(player, 'Kakariko Well (bottom)', 'a drop\'s exit', None, ['Kakariko Well Exit']), + create_cave_region(player, 'Blacksmiths Hut', 'the smith', ['Blacksmith', 'Missing Smith']), + create_lw_region(player, 'Bat Cave Drop Ledge', None, ['Bat Cave Drop']), + create_cave_region(player, 'Bat Cave (right)', 'a drop\'s exit', ['Magic Bat'], ['Bat Cave Door']), + create_cave_region(player, 'Bat Cave (left)', 'a drop\'s exit', None, ['Bat Cave Exit']), + create_cave_region(player, 'Sick Kids House', 'the sick kid', ['Sick Kid']), + create_lw_region(player, 'Hobo Bridge', ['Hobo']), + create_cave_region(player, 'Lost Woods Hideout (top)', 'a drop\'s exit', ['Lost Woods Hideout'], ['Lost Woods Hideout (top to bottom)']), + create_cave_region(player, 'Lost Woods Hideout (bottom)', 'a drop\'s exit', None, ['Lost Woods Hideout Exit']), + create_cave_region(player, 'Lumberjack Tree (top)', 'a drop\'s exit', ['Lumberjack Tree'], ['Lumberjack Tree (top to bottom)']), + create_cave_region(player, 'Lumberjack Tree (bottom)', 'a drop\'s exit', None, ['Lumberjack Tree Exit']), + create_cave_region(player, 'Cave 45', 'a cave with an item', ['Cave 45']), + create_cave_region(player, 'Graveyard Cave', 'a cave with an item', ['Graveyard Cave']), + create_cave_region(player, 'Checkerboard Cave', 'a cave with an item', ['Checkerboard Cave']), + create_cave_region(player, 'Long Fairy Cave', 'a fairy fountain'), + create_cave_region(player, 'Mini Moldorm Cave', 'a bounty of five items', ['Mini Moldorm Cave - Far Left', 'Mini Moldorm Cave - Left', 'Mini Moldorm Cave - Right', + 'Mini Moldorm Cave - Far Right', 'Mini Moldorm Cave - Generous Guy']), + create_cave_region(player, 'Ice Rod Cave', 'a cave with a chest', ['Ice Rod Cave']), + create_cave_region(player, 'Good Bee Cave', 'a cold bee'), + create_cave_region(player, '20 Rupee Cave', 'a cave with some cash'), + create_cave_region(player, 'Cave Shop (Lake Hylia)', 'a common shop'), + create_cave_region(player, 'Cave Shop (Dark Death Mountain)', 'a common shop'), + create_cave_region(player, 'Bonk Rock Cave', 'a cave with a chest', ['Bonk Rock Cave']), + create_cave_region(player, 'Library', 'the library', ['Library']), + create_cave_region(player, 'Kakariko Gamble Game', 'a game of chance'), + create_cave_region(player, 'Potion Shop', 'the potion shop', ['Potion Shop']), + create_lw_region(player, 'Lake Hylia Island', ['Lake Hylia Island']), + create_cave_region(player, 'Capacity Upgrade', 'the queen of fairies'), + create_cave_region(player, 'Two Brothers House', 'a connector', None, ['Two Brothers House Exit (East)', 'Two Brothers House Exit (West)']), + create_lw_region(player, 'Maze Race Ledge', ['Maze Race'], ['Two Brothers House (West)', 'Maze Race Mirror Spot']), + create_cave_region(player, '50 Rupee Cave', 'a cave with some cash'), + create_lw_region(player, 'Desert Ledge', ['Desert Ledge'], ['Desert Palace Entrance (North) Rocks', 'Desert Palace Entrance (West)', 'Desert Ledge Drop']), + create_lw_region(player, 'Desert Palace Stairs', None, ['Desert Palace Entrance (South)', 'Desert Palace Stairs Mirror Spot']), + create_lw_region(player, 'Desert Palace Lone Stairs', None, ['Desert Palace Stairs Drop', 'Desert Palace Entrance (East)']), + create_lw_region(player, 'Desert Palace Entrance (North) Spot', None, ['Desert Palace Entrance (North)', 'Desert Ledge Return Rocks', 'Desert Palace North Mirror Spot']), + create_dungeon_region(player, 'Desert Palace Main (Outer)', 'Desert Palace', ['Desert Palace - Big Chest', 'Desert Palace - Torch', 'Desert Palace - Map Chest'], + ['Desert Palace Pots (Outer)', 'Desert Palace Exit (West)', 'Desert Palace Exit (East)', 'Desert Palace East Wing']), + create_dungeon_region(player, 'Desert Palace Main (Inner)', 'Desert Palace', None, ['Desert Palace Exit (South)', 'Desert Palace Pots (Inner)']), + create_dungeon_region(player, 'Desert Palace East', 'Desert Palace', ['Desert Palace - Compass Chest', 'Desert Palace - Big Key Chest']), + create_dungeon_region(player, 'Desert Palace North', 'Desert Palace', ['Desert Palace - Boss', 'Desert Palace - Prize'], ['Desert Palace Exit (North)']), + create_dungeon_region(player, 'Eastern Palace', 'Eastern Palace', ['Eastern Palace - Compass Chest', 'Eastern Palace - Big Chest', 'Eastern Palace - Cannonball Chest', + 'Eastern Palace - Big Key Chest', 'Eastern Palace - Map Chest', 'Eastern Palace - Boss', 'Eastern Palace - Prize'], ['Eastern Palace Exit']), + 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_dungeon_region(player, 'Hyrule Castle', 'Hyrule Castle', ['Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest'], + ['Hyrule Castle Exit (East)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (South)', 'Throne Room']), + create_dungeon_region(player, 'Sewer Drop', 'a drop\'s exit', None, ['Sewer Drop']), # This exists only to be referenced for access checks + create_dungeon_region(player, 'Sewers (Dark)', 'a drop\'s exit', ['Sewers - Dark Cross'], ['Sewers Door']), + create_dungeon_region(player, 'Sewers', 'a drop\'s exit', ['Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', + 'Sewers - Secret Room - Right'], ['Sanctuary Push Door', 'Sewers Back Door']), + create_dungeon_region(player, 'Sanctuary', 'a drop\'s exit', ['Sanctuary'], ['Sanctuary Exit']), + create_dungeon_region(player, 'Inverted Agahnims Tower', 'Castle Tower', ['Castle Tower - Room 03', 'Castle Tower - Dark Maze'], ['Agahnim 1', 'Inverted Agahnims Tower Exit']), + create_dungeon_region(player, 'Agahnim 1', 'Castle Tower', ['Agahnim 1'], None), + 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 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 Mirror Spot', 'WDM Hyrule Castle Ledge SQ']), + create_cave_region(player, 'Death Mountain Return Cave', 'a connector', None, ['Death Mountain Return Cave Exit (West)', 'Death Mountain Return Cave Exit (East)']), + create_lw_region(player, 'Death Mountain Return Ledge', None, ['Death Mountain Return Ledge Drop', 'Death Mountain Return Cave (West)', 'Bumper Cave Ledge Mirror Spot']), + create_cave_region(player, 'Spectacle Rock Cave (Top)', 'a connector', ['Spectacle Rock Cave'], ['Spectacle Rock Cave Drop', 'Spectacle Rock Cave Exit (Top)']), + create_cave_region(player, 'Spectacle Rock Cave (Bottom)', 'a connector', None, ['Spectacle Rock Cave Exit']), + create_cave_region(player, 'Spectacle Rock Cave (Peak)', 'a connector', None, ['Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave Exit (Peak)']), + create_lw_region(player, 'East Death Mountain (Bottom)', None, ['Broken Bridge (East)', 'Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'East Death Mountain Mirror Spot (Bottom)', 'Hookshot Fairy', + 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)', 'EDM Hyrule Castle Ledge SQ']), + create_cave_region(player, 'Hookshot Fairy', 'fairies deep in a cave'), + create_cave_region(player, 'Paradox Cave Front', 'a connector', None, ['Paradox Cave Push Block Reverse', 'Paradox Cave Exit (Bottom)', 'Light World Death Mountain Shop']), + create_cave_region(player, 'Paradox Cave Chest Area', 'a connector', ['Paradox Cave Lower - Far Left', + 'Paradox Cave Lower - Left', + 'Paradox Cave Lower - Right', + 'Paradox Cave Lower - Far Right', + 'Paradox Cave Lower - Middle', + 'Paradox Cave Upper - Left', + 'Paradox Cave Upper - Right'], + ['Paradox Cave Push Block', 'Paradox Cave Bomb Jump']), + create_cave_region(player, 'Paradox Cave', 'a connector', None, ['Paradox Cave Exit (Middle)', 'Paradox Cave Exit (Top)', 'Paradox Cave Drop']), + create_cave_region(player, 'Light World Death Mountain Shop', 'a common shop'), + create_lw_region(player, 'East Death Mountain (Top)', ['Floating Island'], ['Paradox Cave (Top)', 'Death Mountain (Top)', 'Spiral Cave Ledge Access', 'East Death Mountain Drop', 'East Death Mountain Mirror Spot (Top)', 'Fairy Ascension Ledge Access', 'Mimic Cave Ledge Access', + 'Floating Island Mirror Spot']), + create_lw_region(player, 'Spiral Cave Ledge', None, ['Spiral Cave', 'Spiral Cave Ledge Drop', 'Dark Death Mountain Ledge Mirror Spot (West)']), + create_lw_region(player, 'Mimic Cave Ledge', None, ['Mimic Cave', 'Mimic Cave Ledge Drop', 'Dark Death Mountain Ledge Mirror Spot (East)']), + create_cave_region(player, 'Spiral Cave (Top)', 'a connector', ['Spiral Cave'], ['Spiral Cave (top to bottom)', 'Spiral Cave Exit (Top)']), + create_cave_region(player, 'Spiral Cave (Bottom)', 'a connector', None, ['Spiral Cave Exit']), + create_lw_region(player, 'Fairy Ascension Plateau', None, ['Fairy Ascension Drop', 'Fairy Ascension Cave (Bottom)']), + create_cave_region(player, 'Fairy Ascension Cave (Bottom)', 'a connector', None, ['Fairy Ascension Cave Climb', 'Fairy Ascension Cave Exit (Bottom)']), + create_cave_region(player, 'Fairy Ascension Cave (Drop)', 'a connector', None, ['Fairy Ascension Cave Pots']), + create_cave_region(player, 'Fairy Ascension Cave (Top)', 'a connector', None, ['Fairy Ascension Cave Exit (Top)', 'Fairy Ascension Cave Drop']), + create_lw_region(player, 'Fairy Ascension Ledge', None, ['Fairy Ascension Ledge Drop', 'Fairy Ascension Cave (Top)', 'Laser Bridge Mirror Spot']), + create_lw_region(player, 'Death Mountain (Top)', ['Ether Tablet', 'Spectacle Rock'], ['East Death Mountain (Top)', 'Tower of Hera', 'Death Mountain Drop', 'Death Mountain (Top) Mirror Spot']), + create_dw_region(player, 'Bumper Cave Ledge', ['Bumper Cave Ledge'], ['Bumper Cave Ledge Drop', 'Bumper Cave (Top)']), + create_dungeon_region(player, 'Tower of Hera (Bottom)', 'Tower of Hera', ['Tower of Hera - Basement Cage', 'Tower of Hera - Map Chest'], ['Tower of Hera Small Key Door', 'Tower of Hera Big Key Door', 'Tower of Hera Exit']), + create_dungeon_region(player, 'Tower of Hera (Basement)', 'Tower of Hera', ['Tower of Hera - Big Key Chest']), + create_dungeon_region(player, 'Tower of Hera (Top)', 'Tower of Hera', ['Tower of Hera - Compass Chest', 'Tower of Hera - Big Chest', 'Tower of Hera - Boss', 'Tower of Hera - Prize']), + + create_dw_region(player, 'East Dark World', ['Pyramid'], ['Pyramid Fairy', 'South Dark World Bridge', 'Palace of Darkness', 'Dark Lake Hylia Drop (East)', + 'Dark Lake Hylia Fairy', 'Palace of Darkness Hint', 'East Dark World Hint', 'Northeast Dark World Broken Bridge Pass', 'East Dark World Teleporter', 'EDW Flute']), + create_dw_region(player, 'Northeast Dark World', ['Catfish'], ['West Dark World Gap', 'Dark World Potion Shop', 'East Dark World Broken Bridge Pass', 'NEDW Flute', 'Dark Lake Hylia Teleporter']), + create_cave_region(player, 'Palace of Darkness Hint', 'a storyteller'), + create_cave_region(player, 'East Dark World Hint', 'a storyteller'), + create_dw_region(player, 'South Dark World', ['Stumpy', 'Digging Game'], ['Dark Lake Hylia Drop (South)', 'Hype Cave', 'Swamp Palace', 'Village of Outcasts Heavy Rock', 'East Dark World Bridge', 'Inverted Links House', 'Archery Game', 'Bonk Fairy (Dark)', + 'Dark Lake Hylia Shop', 'South Dark World Teleporter', 'Post Aga Teleporter', 'SDW Flute']), + create_cave_region(player, 'Inverted Big Bomb Shop', 'the bomb shop'), + create_cave_region(player, 'Archery Game', 'a game of skill'), + create_dw_region(player, 'Dark Lake Hylia', None, ['East Dark World Pier', 'Dark Lake Hylia Ledge Pier', 'Ice Palace', 'Dark Lake Hylia Central Island Teleporter']), + create_dw_region(player, 'Dark Lake Hylia Ledge', None, ['Dark Lake Hylia Ledge Drop', 'Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave', 'DLHL Flute']), + create_cave_region(player, 'Dark Lake Hylia Ledge Hint', 'a storyteller'), + create_cave_region(player, 'Dark Lake Hylia Ledge Spike Cave', 'a spiky hint'), + create_cave_region(player, 'Hype Cave', 'a bounty of five items', ['Hype Cave - Top', 'Hype Cave - Middle Right', 'Hype Cave - Middle Left', + 'Hype Cave - Bottom', 'Hype Cave - Generous Guy']), + create_dw_region(player, 'West Dark World', ['Frog'], ['Village of Outcasts Drop', 'East Dark World River Pier', 'Brewery', 'C-Shaped House', 'Chest Game', 'Thieves Town', 'Bumper Cave Entrance Rock', + 'Skull Woods Forest', 'Village of Outcasts Pegs', 'Village of Outcasts Eastern Rocks', 'Red Shield Shop', 'Inverted Dark Sanctuary', 'Fortune Teller (Dark)', 'Dark World Lumberjack Shop', + 'West Dark World Teleporter', 'WDW Flute']), + create_dw_region(player, 'Dark Grassy Lawn', None, ['Grassy Lawn Pegs', 'Dark World Shop', 'Dark Grassy Lawn Flute']), + create_dw_region(player, 'Hammer Peg Area', ['Dark Blacksmith Ruins'], ['Dark World Hammer Peg Cave', 'Peg Area Rocks', 'Hammer Peg Area Flute']), + create_dw_region(player, 'Bumper Cave Entrance', None, ['Bumper Cave (Bottom)', 'Bumper Cave Entrance Drop']), + create_cave_region(player, 'Fortune Teller (Dark)', 'a fortune teller'), + create_cave_region(player, 'Village of Outcasts Shop', 'a common shop'), + create_cave_region(player, 'Dark Lake Hylia Shop', 'a common shop'), + create_cave_region(player, 'Dark World Lumberjack Shop', 'a common shop'), + create_cave_region(player, 'Dark World Potion Shop', 'a common shop'), + create_cave_region(player, 'Dark World Hammer Peg Cave', 'a cave with an item', ['Peg Cave']), + create_cave_region(player, 'Pyramid Fairy', 'a cave with two chests', ['Pyramid Fairy - Left', 'Pyramid Fairy - Right']), + create_cave_region(player, 'Brewery', 'a house with a chest', ['Brewery']), + create_cave_region(player, 'C-Shaped House', 'a house with a chest', ['C-Shaped House']), + create_cave_region(player, 'Chest Game', 'a game of 16 chests', ['Chest Game']), + create_cave_region(player, 'Red Shield Shop', 'the rare shop'), + create_cave_region(player, 'Inverted Dark Sanctuary', 'a storyteller'), + create_cave_region(player, 'Bumper Cave', 'a connector', None, ['Bumper Cave Exit (Bottom)', 'Bumper Cave Exit (Top)']), + create_dw_region(player, 'Skull Woods Forest', None, ['Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', + 'Skull Woods First Section Door', 'Skull Woods Second Section Door (East)']), + create_dw_region(player, 'Skull Woods Forest (West)', None, ['Skull Woods Second Section Hole', 'Skull Woods Second Section Door (West)', 'Skull Woods Final Section']), + create_dw_region(player, 'Dark Desert', None, ['Misery Mire', 'Mire Shed', 'Dark Desert Hint', 'Dark Desert Fairy', 'DD Flute']), + create_dw_region(player, 'Dark Desert Ledge', None, ['Dark Desert Drop', 'Dark Desert Teleporter']), + create_cave_region(player, 'Mire Shed', 'a cave with two chests', ['Mire Shed - Left', 'Mire Shed - Right']), + create_cave_region(player, 'Dark Desert Hint', 'a storyteller'), + create_dw_region(player, 'Dark Death Mountain', None, ['Dark Death Mountain Drop (East)', 'Inverted Agahnims Tower', 'Superbunny Cave (Top)', 'Hookshot Cave', 'Turtle Rock', + 'Spike Cave', 'Dark Death Mountain Fairy', 'Dark Death Mountain Teleporter (West)', 'Turtle Rock Tail Drop', 'DDM Flute']), + create_dw_region(player, 'Dark Death Mountain Ledge', None, ['Dark Death Mountain Ledge (East)', 'Dark Death Mountain Ledge (West)']), + create_dw_region(player, 'Turtle Rock (Top)', None, ['Dark Death Mountain Teleporter (East)', 'Turtle Rock Drop']), + create_dw_region(player, 'Dark Death Mountain Isolated Ledge', None, ['Turtle Rock Isolated Ledge Entrance']), + create_dw_region(player, 'Dark Death Mountain (East Bottom)', None, ['Superbunny Cave (Bottom)', 'Cave Shop (Dark Death Mountain)', 'Dark Death Mountain Teleporter (East Bottom)', 'EDDM Flute']), + create_cave_region(player, 'Superbunny Cave', 'a connector', ['Superbunny Cave - Top', 'Superbunny Cave - Bottom'], + ['Superbunny Cave Exit (Top)', 'Superbunny Cave Exit (Bottom)']), + create_cave_region(player, 'Spike Cave', 'Spike Cave', ['Spike Cave']), + create_cave_region(player, 'Hookshot Cave', 'a connector', ['Hookshot Cave - Top Right', 'Hookshot Cave - Top Left', 'Hookshot Cave - Bottom Right', 'Hookshot Cave - Bottom Left'], + ['Hookshot Cave Exit (South)', 'Hookshot Cave Exit (North)']), + create_dw_region(player, 'Death Mountain Floating Island (Dark World)', None, ['Floating Island Drop', 'Hookshot Cave Back Entrance']), + create_cave_region(player, 'Mimic Cave', 'Mimic Cave', ['Mimic Cave']), + + create_dungeon_region(player, 'Swamp Palace (Entrance)', 'Swamp Palace', None, ['Swamp Palace Moat', 'Swamp Palace Exit']), + create_dungeon_region(player, 'Swamp Palace (First Room)', 'Swamp Palace', ['Swamp Palace - Entrance'], ['Swamp Palace Small Key Door']), + create_dungeon_region(player, 'Swamp Palace (Starting Area)', 'Swamp Palace', ['Swamp Palace - Map Chest'], ['Swamp Palace (Center)']), + create_dungeon_region(player, 'Swamp Palace (Center)', 'Swamp Palace', ['Swamp Palace - Big Chest', 'Swamp Palace - Compass Chest', + 'Swamp Palace - Big Key Chest', 'Swamp Palace - West Chest'], ['Swamp Palace (North)']), + create_dungeon_region(player, 'Swamp Palace (North)', 'Swamp Palace', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right', + 'Swamp Palace - Waterfall Room', 'Swamp Palace - Boss', 'Swamp Palace - Prize']), + create_dungeon_region(player, 'Thieves Town (Entrance)', 'Thieves\' Town', ['Thieves\' Town - Big Key Chest', + 'Thieves\' Town - Map Chest', + 'Thieves\' Town - Compass Chest', + 'Thieves\' Town - Ambush Chest'], ['Thieves Town Big Key Door', 'Thieves Town Exit']), + create_dungeon_region(player, 'Thieves Town (Deep)', 'Thieves\' Town', ['Thieves\' Town - Attic', + 'Thieves\' Town - Big Chest', + 'Thieves\' Town - Blind\'s Cell'], ['Blind Fight']), + create_dungeon_region(player, 'Blind Fight', 'Thieves\' Town', ['Thieves\' Town - Boss', 'Thieves\' Town - Prize']), + create_dungeon_region(player, 'Skull Woods First Section', 'Skull Woods', ['Skull Woods - Map Chest'], ['Skull Woods First Section Exit', 'Skull Woods First Section Bomb Jump', 'Skull Woods First Section South Door', 'Skull Woods First Section West Door']), + create_dungeon_region(player, 'Skull Woods First Section (Right)', 'Skull Woods', ['Skull Woods - Pinball Room'], ['Skull Woods First Section (Right) North Door']), + create_dungeon_region(player, 'Skull Woods First Section (Left)', 'Skull Woods', ['Skull Woods - Compass Chest', 'Skull Woods - Pot Prison'], ['Skull Woods First Section (Left) Door to Exit', 'Skull Woods First Section (Left) Door to Right']), + create_dungeon_region(player, 'Skull Woods First Section (Top)', 'Skull Woods', ['Skull Woods - Big Chest'], ['Skull Woods First Section (Top) One-Way Path']), + create_dungeon_region(player, 'Skull Woods Second Section (Drop)', 'Skull Woods', None, ['Skull Woods Second Section (Drop)']), + create_dungeon_region(player, 'Skull Woods Second Section', 'Skull Woods', ['Skull Woods - Big Key Chest'], ['Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)']), + create_dungeon_region(player, 'Skull Woods Final Section (Entrance)', 'Skull Woods', ['Skull Woods - Bridge Room'], ['Skull Woods Torch Room', 'Skull Woods Final Section Exit']), + create_dungeon_region(player, 'Skull Woods Final Section (Mothula)', 'Skull Woods', ['Skull Woods - Boss', 'Skull Woods - Prize']), + create_dungeon_region(player, 'Ice Palace (Entrance)', 'Ice Palace', None, ['Ice Palace Entrance Room', 'Ice Palace Exit']), + create_dungeon_region(player, 'Ice Palace (Main)', 'Ice Palace', ['Ice Palace - Compass Chest', 'Ice Palace - Freezor Chest', + 'Ice Palace - Big Chest', 'Ice Palace - Iced T Room'], ['Ice Palace (East)', 'Ice Palace (Kholdstare)']), + create_dungeon_region(player, 'Ice Palace (East)', 'Ice Palace', ['Ice Palace - Spike Room'], ['Ice Palace (East Top)']), + create_dungeon_region(player, 'Ice Palace (East Top)', 'Ice Palace', ['Ice Palace - Big Key Chest', 'Ice Palace - Map Chest']), + create_dungeon_region(player, 'Ice Palace (Kholdstare)', 'Ice Palace', ['Ice Palace - Boss', 'Ice Palace - Prize']), + create_dungeon_region(player, 'Misery Mire (Entrance)', 'Misery Mire', None, ['Misery Mire Entrance Gap', 'Misery Mire Exit']), + create_dungeon_region(player, 'Misery Mire (Main)', 'Misery Mire', ['Misery Mire - Big Chest', 'Misery Mire - Map Chest', 'Misery Mire - Main Lobby', + 'Misery Mire - Bridge Chest', 'Misery Mire - Spike Chest'], ['Misery Mire (West)', 'Misery Mire Big Key Door']), + create_dungeon_region(player, 'Misery Mire (West)', 'Misery Mire', ['Misery Mire - Compass Chest', 'Misery Mire - Big Key Chest']), + create_dungeon_region(player, 'Misery Mire (Final Area)', 'Misery Mire', None, ['Misery Mire (Vitreous)']), + create_dungeon_region(player, 'Misery Mire (Vitreous)', 'Misery Mire', ['Misery Mire - Boss', 'Misery Mire - Prize']), + create_dungeon_region(player, 'Turtle Rock (Entrance)', 'Turtle Rock', None, ['Turtle Rock Entrance Gap', 'Turtle Rock Exit (Front)']), + create_dungeon_region(player, 'Turtle Rock (First Section)', 'Turtle Rock', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', + 'Turtle Rock - Roller Room - Right'], ['Turtle Rock Pokey Room', 'Turtle Rock Entrance Gap Reverse']), + create_dungeon_region(player, 'Turtle Rock (Chain Chomp Room)', 'Turtle Rock', ['Turtle Rock - Chain Chomps'], ['Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)']), + create_dungeon_region(player, 'Turtle Rock (Second Section)', 'Turtle Rock', ['Turtle Rock - Big Key Chest'], ['Turtle Rock Ledge Exit (West)', 'Turtle Rock Chain Chomp Staircase', 'Turtle Rock Big Key Door']), + create_dungeon_region(player, 'Turtle Rock (Big Chest)', 'Turtle Rock', ['Turtle Rock - Big Chest'], ['Turtle Rock (Big Chest) (North)', 'Turtle Rock Ledge Exit (East)']), + create_dungeon_region(player, 'Turtle Rock (Crystaroller Room)', 'Turtle Rock', ['Turtle Rock - Crystaroller Room'], ['Turtle Rock Dark Room Staircase', 'Turtle Rock Big Key Door Reverse']), + create_dungeon_region(player, 'Turtle Rock (Dark Room)', 'Turtle Rock', None, ['Turtle Rock (Dark Room) (North)', 'Turtle Rock (Dark Room) (South)']), + create_dungeon_region(player, 'Turtle Rock (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 Dark Room (South)', 'Turtle Rock (Trinexx)', 'Turtle Rock Isolated Ledge Exit']), + create_dungeon_region(player, 'Turtle Rock (Trinexx)', 'Turtle Rock', ['Turtle Rock - Boss', 'Turtle Rock - Prize']), + create_dungeon_region(player, 'Palace of Darkness (Entrance)', 'Palace of Darkness', ['Palace of Darkness - Shooter Room'], ['Palace of Darkness Bridge Room', 'Palace of Darkness Bonk Wall', 'Palace of Darkness Exit']), + create_dungeon_region(player, 'Palace of Darkness (Center)', 'Palace of Darkness', ['Palace of Darkness - The Arena - Bridge', 'Palace of Darkness - Stalfos Basement'], + ['Palace of Darkness Big Key Chest Staircase', 'Palace of Darkness (North)', 'Palace of Darkness Big Key Door']), + create_dungeon_region(player, 'Palace of Darkness (Big Key Chest)', 'Palace of Darkness', ['Palace of Darkness - Big Key Chest']), + create_dungeon_region(player, 'Palace of Darkness (Bonk Section)', 'Palace of Darkness', ['Palace of Darkness - The Arena - Ledge', 'Palace of Darkness - Map Chest'], ['Palace of Darkness Hammer Peg Drop']), + create_dungeon_region(player, 'Palace of Darkness (North)', 'Palace of Darkness', ['Palace of Darkness - Compass Chest', 'Palace of Darkness - Dark Basement - Left', 'Palace of Darkness - Dark Basement - Right'], + ['Palace of Darkness Spike Statue Room Door', 'Palace of Darkness Maze Door']), + create_dungeon_region(player, 'Palace of Darkness (Maze)', 'Palace of Darkness', ['Palace of Darkness - Dark Maze - Top', 'Palace of Darkness - Dark Maze - Bottom', 'Palace of Darkness - Big Chest']), + create_dungeon_region(player, 'Palace of Darkness (Harmless Hellway)', 'Palace of Darkness', ['Palace of Darkness - Harmless Hellway']), + create_dungeon_region(player, 'Palace of Darkness (Final Section)', 'Palace of Darkness', ['Palace of Darkness - Boss', 'Palace of Darkness - Prize']), + create_dungeon_region(player, 'Inverted Ganons Tower (Entrance)', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Torch', 'Ganons Tower - Hope Room - Left', 'Ganons Tower - Hope Room - Right'], + ['Ganons Tower (Tile Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower Big Key Door', 'Inverted Ganons Tower Exit']), + create_dungeon_region(player, 'Ganons Tower (Tile Room)', 'Ganon\'s Tower', ['Ganons Tower - Tile Room'], ['Ganons Tower (Tile Room) Key Door']), + create_dungeon_region(player, 'Ganons Tower (Compass Room)', 'Ganon\'s Tower', ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', + 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'], + ['Ganons Tower (Bottom) (East)']), + create_dungeon_region(player, 'Ganons Tower (Hookshot Room)', 'Ganon\'s Tower', ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', + 'Ganons Tower - DMs Room - Bottom Left', 'Ganons Tower - DMs Room - Bottom Right'], + ['Ganons Tower (Map Room)', 'Ganons Tower (Double Switch Room)']), + create_dungeon_region(player, 'Ganons Tower (Map Room)', 'Ganon\'s Tower', ['Ganons Tower - Map Chest']), + create_dungeon_region(player, 'Ganons Tower (Firesnake Room)', 'Ganon\'s Tower', ['Ganons Tower - Firesnake Room'], ['Ganons Tower (Firesnake Room)']), + create_dungeon_region(player, 'Ganons Tower (Teleport Room)', 'Ganon\'s Tower', ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', + 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'], + ['Ganons Tower (Bottom) (West)']), + create_dungeon_region(player, 'Ganons Tower (Bottom)', 'Ganon\'s Tower', ['Ganons Tower - Bob\'s Chest', 'Ganons Tower - Big Chest', 'Ganons Tower - Big Key Room - Left', + 'Ganons Tower - Big Key Room - Right', 'Ganons Tower - Big Key Chest']), + create_dungeon_region(player, 'Ganons Tower (Top)', 'Ganon\'s Tower', None, ['Ganons Tower Torch Rooms']), + create_dungeon_region(player, 'Ganons Tower (Before Moldorm)', 'Ganon\'s Tower', ['Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', + 'Ganons Tower - Pre-Moldorm Chest'], ['Ganons Tower Moldorm Door']), + create_dungeon_region(player, 'Ganons Tower (Moldorm)', 'Ganon\'s Tower', None, ['Ganons Tower Moldorm Gap']), + create_dungeon_region(player, 'Agahnim 2', 'Ganon\'s Tower', ['Ganons Tower - Validation Chest', 'Agahnim 2'], None), + create_cave_region(player, 'Pyramid', 'a drop\'s exit', ['Ganon'], ['Ganon Drop']), + create_cave_region(player, 'Bottom of Pyramid', 'a drop\'s exit', None, ['Pyramid Exit']), + create_dw_region(player, 'Pyramid Ledge', None, ['Pyramid Drop']), # houlihan room exits here in inverted + + # to simplify flute connections + create_cave_region(player, 'The Sky', 'A Dark Sky', None, ['DDM Landing','NEDW Landing', 'WDW Landing', 'SDW Landing', 'EDW Landing', 'DD Landing', 'DLHL Landing']) + ] + + for region_name, (room_id, shopkeeper, replaceable) in shop_table.items(): + region = world.get_region(region_name, player) + shop = Shop(region, room_id, ShopType.Shop, shopkeeper, replaceable) + region.shop = shop + world.shops.append(shop) + for index, (item, price) in enumerate(default_shop_contents[region_name]): + shop.add_inventory(index, item, price) + + region = world.get_region('Capacity Upgrade', player) + shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, True) + region.shop = shop + world.shops.append(shop) + shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) + shop.add_inventory(1, 'Arrow Upgrade (+5)', 100, 7) + world.intialize_regions() + +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) + +def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None): + ret = Region(name, type, hint, player) + if locations is None: + locations = [] + if exits is None: + exits = [] + + for exit in exits: + ret.exits.append(Entrance(player, exit, ret)) + for location in locations: + address, crystal, hint_text = location_table[location] + ret.locations.append(Location(player, location, address, crystal, hint_text, ret)) + return ret + +def mark_dark_world_regions(world): + # cross world caves may have some sections marked as both in_light_world, and in_dark_work. + # That is ok. the bunny logic will check for this case and incorporate special rules. + + queue = collections.deque(region for region in world.regions if region.type == RegionType.DarkWorld) + seen = set(queue) + while queue: + current = queue.popleft() + current.is_dark_world = True + for exit in current.exits: + if exit.connected_region.type == RegionType.LightWorld: + # Don't venture into the dark world + continue + if exit.connected_region not in seen: + seen.add(exit.connected_region) + queue.append(exit.connected_region) + + queue = collections.deque(region for region in world.regions if region.type == RegionType.LightWorld) + seen = set(queue) + while queue: + current = queue.popleft() + current.is_light_world = True + for exit in current.exits: + if exit.connected_region.type == RegionType.DarkWorld: + # Don't venture into the light world + continue + if exit.connected_region not in seen: + seen.add(exit.connected_region) + queue.append(exit.connected_region) + +# (room_id, shopkeeper, replaceable) +shop_table = { + 'Cave Shop (Dark Death Mountain)': (0x0112, 0xC1, True), + 'Red Shield Shop': (0x0110, 0xC1, True), + 'Dark Lake Hylia Shop': (0x010F, 0xC1, True), + 'Dark World Lumberjack Shop': (0x010F, 0xC1, True), + 'Village of Outcasts Shop': (0x010F, 0xC1, True), + 'Dark World Potion Shop': (0x010F, 0xC1, True), + 'Light World Death Mountain Shop': (0x00FF, 0xA0, True), + 'Kakariko Shop': (0x011F, 0xA0, True), + 'Cave Shop (Lake Hylia)': (0x0112, 0xA0, True), + 'Potion Shop': (0x0109, 0xFF, False), + # Bomb Shop not currently modeled as a shop, due to special nature of items +} +# region, [item] +# slot, item, price, max=0, replacement=None, replacement_price=0 +# item = (item, price) + +_basic_shop_defaults = [('Red Potion', 150), ('Small Heart', 10), ('Bombs (10)', 50)] +_dark_world_shop_defaults = [('Red Potion', 150), ('Blue Shield', 50), ('Bombs (10)', 50)] +default_shop_contents = { + 'Cave Shop (Dark Death Mountain)': _basic_shop_defaults, + 'Red Shield Shop': [('Red Shield', 500), ('Bee', 10), ('Arrows (10)', 30)], + 'Dark Lake Hylia Shop': _dark_world_shop_defaults, + 'Dark World Lumberjack Shop': _dark_world_shop_defaults, + 'Village of Outcasts Shop': _dark_world_shop_defaults, + 'Dark World Potion Shop': _dark_world_shop_defaults, + 'Light World Death Mountain Shop': _basic_shop_defaults, + 'Kakariko Shop': _basic_shop_defaults, + 'Cave Shop (Lake Hylia)': _basic_shop_defaults, + 'Potion Shop': [('Red Potion', 120), ('Green Potion', 60), ('Blue Potion', 160)], +} + +location_table = {'Mushroom': (0x180013, False, 'in the woods'), + 'Bottle Merchant': (0x2EB18, False, 'with a merchant'), + 'Flute Spot': (0x18014A, False, 'underground'), + 'Sunken Treasure': (0x180145, False, 'underwater'), + 'Purple Chest': (0x33D68, False, 'from a box'), + 'Blind\'s Hideout - Top': (0xEB0F, False, 'in a basement'), + 'Blind\'s Hideout - Left': (0xEB12, False, 'in a basement'), + 'Blind\'s Hideout - Right': (0xEB15, False, 'in a basement'), + 'Blind\'s Hideout - Far Left': (0xEB18, False, 'in a basement'), + 'Blind\'s Hideout - Far Right': (0xEB1B, False, 'in a basement'), + 'Link\'s Uncle': (0x2DF45, False, 'with your uncle'), + 'Secret Passage': (0xE971, False, 'near your uncle'), + 'King Zora': (0xEE1C3, False, 'at a high price'), + 'Zora\'s Ledge': (0x180149, False, 'near Zora'), + 'Waterfall Fairy - Left': (0xE9B0, False, 'near a fairy'), + 'Waterfall Fairy - Right': (0xE9D1, False, 'near a fairy'), + 'King\'s Tomb': (0xE97A, False, 'alone in a cave'), + 'Floodgate Chest': (0xE98C, False, 'in the dam'), + 'Link\'s House': (0xE9BC, False, 'in your home'), + 'Kakariko Tavern': (0xE9CE, False, 'in the bar'), + 'Chicken House': (0xE9E9, False, 'near poultry'), + 'Aginah\'s Cave': (0xE9F2, False, 'with Aginah'), + 'Sahasrahla\'s Hut - Left': (0xEA82, False, 'near the elder'), + 'Sahasrahla\'s Hut - Middle': (0xEA85, False, 'near the elder'), + 'Sahasrahla\'s Hut - Right': (0xEA88, False, 'near the elder'), + 'Sahasrahla': (0x2F1FC, False, 'with the elder'), + 'Kakariko Well - Top': (0xEA8E, False, 'in a well'), + 'Kakariko Well - Left': (0xEA91, False, 'in a well'), + 'Kakariko Well - Middle': (0xEA94, False, 'in a well'), + 'Kakariko Well - Right': (0xEA97, False, 'in a well'), + 'Kakariko Well - Bottom': (0xEA9A, False, 'in a well'), + 'Blacksmith': (0x18002A, False, 'with the smith'), + 'Magic Bat': (0x180015, False, 'with the bat'), + 'Sick Kid': (0x339CF, False, 'with the sick'), + 'Hobo': (0x33E7D, False, 'with the hobo'), + 'Lost Woods Hideout': (0x180000, False, 'near a thief'), + 'Lumberjack Tree': (0x180001, False, 'in a hole'), + 'Cave 45': (0x180003, False, 'alone in a cave'), + 'Graveyard Cave': (0x180004, False, 'alone in a cave'), + 'Checkerboard Cave': (0x180005, False, 'alone in a cave'), + 'Mini Moldorm Cave - Far Left': (0xEB42, False, 'near Moldorms'), + 'Mini Moldorm Cave - Left': (0xEB45, False, 'near Moldorms'), + 'Mini Moldorm Cave - Right': (0xEB48, False, 'near Moldorms'), + 'Mini Moldorm Cave - Far Right': (0xEB4B, False, 'near Moldorms'), + 'Mini Moldorm Cave - Generous Guy': (0x180010, False, 'near Moldorms'), + 'Ice Rod Cave': (0xEB4E, False, 'in a frozen cave'), + 'Bonk Rock Cave': (0xEB3F, False, 'alone in a cave'), + 'Library': (0x180012, False, 'near books'), + 'Potion Shop': (0x180014, False, 'near potions'), + 'Lake Hylia Island': (0x180144, False, 'on an island'), + 'Maze Race': (0x180142, False, 'at the race'), + 'Desert Ledge': (0x180143, False, 'in the desert'), + 'Desert Palace - Big Chest': (0xE98F, False, 'in Desert Palace'), + 'Desert Palace - Torch': (0x180160, False, 'in Desert Palace'), + 'Desert Palace - Map Chest': (0xE9B6, False, 'in Desert Palace'), + 'Desert Palace - Compass Chest': (0xE9CB, False, 'in Desert Palace'), + 'Desert Palace - Big Key Chest': (0xE9C2, False, 'in Desert Palace'), + 'Desert Palace - Boss': (0x180151, False, 'with Lanmolas'), + 'Eastern Palace - Compass Chest': (0xE977, False, 'in Eastern Palace'), + 'Eastern Palace - Big Chest': (0xE97D, False, 'in Eastern Palace'), + 'Eastern Palace - Cannonball Chest': (0xE9B3, False, 'in Eastern Palace'), + 'Eastern Palace - Big Key Chest': (0xE9B9, False, 'in Eastern Palace'), + 'Eastern Palace - Map Chest': (0xE9F5, False, 'in Eastern Palace'), + 'Eastern Palace - Boss': (0x180150, False, 'with the Armos'), + 'Master Sword Pedestal': (0x289B0, False, 'at the pedestal'), + 'Hyrule Castle - Boomerang Chest': (0xE974, False, 'in Hyrule Castle'), + 'Hyrule Castle - Map Chest': (0xEB0C, False, 'in Hyrule Castle'), + 'Hyrule Castle - Zelda\'s Chest': (0xEB09, False, 'in Hyrule Castle'), + 'Sewers - Dark Cross': (0xE96E, False, 'in the sewers'), + 'Sewers - Secret Room - Left': (0xEB5D, False, 'in the sewers'), + 'Sewers - Secret Room - Middle': (0xEB60, False, 'in the sewers'), + 'Sewers - Secret Room - Right': (0xEB63, False, 'in the sewers'), + 'Sanctuary': (0xEA79, False, 'in Sanctuary'), + 'Castle Tower - Room 03': (0xEAB5, False, 'in Castle Tower'), + 'Castle Tower - Dark Maze': (0xEAB2, False, 'in Castle Tower'), + 'Old Man': (0xF69FA, False, 'with the old man'), + 'Spectacle Rock Cave': (0x180002, False, 'alone in a cave'), + 'Paradox Cave Lower - Far Left': (0xEB2A, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Left': (0xEB2D, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Right': (0xEB30, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Far Right': (0xEB33, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Middle': (0xEB36, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Left': (0xEB39, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Right': (0xEB3C, False, 'in a cave with seven chests'), + 'Spiral Cave': (0xE9BF, False, 'in spiral cave'), + 'Ether Tablet': (0x180016, False, 'at a monolith'), + 'Spectacle Rock': (0x180140, False, 'atop a rock'), + 'Tower of Hera - Basement Cage': (0x180162, False, 'in Tower of Hera'), + 'Tower of Hera - Map Chest': (0xE9AD, False, 'in Tower of Hera'), + 'Tower of Hera - Big Key Chest': (0xE9E6, False, 'in Tower of Hera'), + 'Tower of Hera - Compass Chest': (0xE9FB, False, 'in Tower of Hera'), + 'Tower of Hera - Big Chest': (0xE9F8, False, 'in Tower of Hera'), + 'Tower of Hera - Boss': (0x180152, False, 'with Moldorm'), + 'Pyramid': (0x180147, False, 'on the pyramid'), + 'Catfish': (0xEE185, False, 'with a catfish'), + 'Stumpy': (0x330C7, False, 'with tree boy'), + 'Digging Game': (0x180148, False, 'underground'), + 'Bombos Tablet': (0x180017, False, 'at a monolith'), + 'Hype Cave - Top': (0xEB1E, False, 'near a bat-like man'), + 'Hype Cave - Middle Right': (0xEB21, False, 'near a bat-like man'), + 'Hype Cave - Middle Left': (0xEB24, False, 'near a bat-like man'), + 'Hype Cave - Bottom': (0xEB27, False, 'near a bat-like man'), + 'Hype Cave - Generous Guy': (0x180011, False, 'with a bat-like man'), + 'Peg Cave': (0x180006, False, 'alone in a cave'), + 'Pyramid Fairy - Left': (0xE980, False, 'near a fairy'), + 'Pyramid Fairy - Right': (0xE983, False, 'near a fairy'), + 'Brewery': (0xE9EC, False, 'alone in a home'), + 'C-Shaped House': (0xE9EF, False, 'alone in a home'), + 'Chest Game': (0xEDA8, False, 'as a prize'), + 'Bumper Cave Ledge': (0x180146, False, 'on a ledge'), + 'Mire Shed - Left': (0xEA73, False, 'near sparks'), + 'Mire Shed - Right': (0xEA76, False, 'near sparks'), + 'Superbunny Cave - Top': (0xEA7C, False, 'in a connection'), + 'Superbunny Cave - Bottom': (0xEA7F, False, 'in a connection'), + 'Spike Cave': (0xEA8B, False, 'beyond spikes'), + 'Hookshot Cave - Top Right': (0xEB51, False, 'across pits'), + 'Hookshot Cave - Top Left': (0xEB54, False, 'across pits'), + 'Hookshot Cave - Bottom Right': (0xEB5A, False, 'across pits'), + 'Hookshot Cave - Bottom Left': (0xEB57, False, 'across pits'), + 'Floating Island': (0x180141, False, 'on an island'), + 'Mimic Cave': (0xE9C5, False, 'in a cave of mimicry'), + 'Swamp Palace - Entrance': (0xEA9D, False, 'in Swamp Palace'), + 'Swamp Palace - Map Chest': (0xE986, False, 'in Swamp Palace'), + 'Swamp Palace - Big Chest': (0xE989, False, 'in Swamp Palace'), + 'Swamp Palace - Compass Chest': (0xEAA0, False, 'in Swamp Palace'), + 'Swamp Palace - Big Key Chest': (0xEAA6, False, 'in Swamp Palace'), + 'Swamp Palace - West Chest': (0xEAA3, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Left': (0xEAA9, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Right': (0xEAAC, False, 'in Swamp Palace'), + 'Swamp Palace - Waterfall Room': (0xEAAF, False, 'in Swamp Palace'), + 'Swamp Palace - Boss': (0x180154, False, 'with Arrghus'), + 'Thieves\' Town - Big Key Chest': (0xEA04, False, 'in Thieves\' Town'), + 'Thieves\' Town - Map Chest': (0xEA01, False, 'in Thieves\' Town'), + 'Thieves\' Town - Compass Chest': (0xEA07, False, 'in Thieves\' Town'), + 'Thieves\' Town - Ambush Chest': (0xEA0A, False, 'in Thieves\' Town'), + 'Thieves\' Town - Attic': (0xEA0D, False, 'in Thieves\' Town'), + 'Thieves\' Town - Big Chest': (0xEA10, False, 'in Thieves\' Town'), + 'Thieves\' Town - Blind\'s Cell': (0xEA13, False, 'in Thieves\' Town'), + 'Thieves\' Town - Boss': (0x180156, False, 'with Blind'), + 'Skull Woods - Compass Chest': (0xE992, False, 'in Skull Woods'), + 'Skull Woods - Map Chest': (0xE99B, False, 'in Skull Woods'), + 'Skull Woods - Big Chest': (0xE998, False, 'in Skull Woods'), + 'Skull Woods - Pot Prison': (0xE9A1, False, 'in Skull Woods'), + 'Skull Woods - Pinball Room': (0xE9C8, False, 'in Skull Woods'), + 'Skull Woods - Big Key Chest': (0xE99E, False, 'in Skull Woods'), + 'Skull Woods - Bridge Room': (0xE9FE, False, 'near Mothula'), + 'Skull Woods - Boss': (0x180155, False, 'with Mothula'), + 'Ice Palace - Compass Chest': (0xE9D4, False, 'in Ice Palace'), + 'Ice Palace - Freezor Chest': (0xE995, False, 'in Ice Palace'), + 'Ice Palace - Big Chest': (0xE9AA, False, 'in Ice Palace'), + 'Ice Palace - Iced T Room': (0xE9E3, False, 'in Ice Palace'), + 'Ice Palace - Spike Room': (0xE9E0, False, 'in Ice Palace'), + 'Ice Palace - Big Key Chest': (0xE9A4, False, 'in Ice Palace'), + 'Ice Palace - Map Chest': (0xE9DD, False, 'in Ice Palace'), + 'Ice Palace - Boss': (0x180157, False, 'with Kholdstare'), + 'Misery Mire - Big Chest': (0xEA67, False, 'in Misery Mire'), + 'Misery Mire - Map Chest': (0xEA6A, False, 'in Misery Mire'), + 'Misery Mire - Main Lobby': (0xEA5E, False, 'in Misery Mire'), + 'Misery Mire - Bridge Chest': (0xEA61, False, 'in Misery Mire'), + 'Misery Mire - Spike Chest': (0xE9DA, False, 'in Misery Mire'), + 'Misery Mire - Compass Chest': (0xEA64, False, 'in Misery Mire'), + 'Misery Mire - Big Key Chest': (0xEA6D, False, 'in Misery Mire'), + 'Misery Mire - Boss': (0x180158, False, 'with Vitreous'), + 'Turtle Rock - Compass Chest': (0xEA22, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Left': (0xEA1C, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Right': (0xEA1F, False, 'in Turtle Rock'), + 'Turtle Rock - Chain Chomps': (0xEA16, False, 'in Turtle Rock'), + 'Turtle Rock - Big Key Chest': (0xEA25, False, 'in Turtle Rock'), + 'Turtle Rock - Big Chest': (0xEA19, False, 'in Turtle Rock'), + 'Turtle Rock - Crystaroller Room': (0xEA34, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Left': (0xEA31, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Right': (0xEA2E, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Left': (0xEA2B, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Right': (0xEA28, False, 'in Turtle Rock'), + 'Turtle Rock - Boss': (0x180159, False, 'with Trinexx'), + 'Palace of Darkness - Shooter Room': (0xEA5B, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Bridge': (0xEA3D, False, 'in Palace of Darkness'), + 'Palace of Darkness - Stalfos Basement': (0xEA49, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Key Chest': (0xEA37, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Ledge': (0xEA3A, False, 'in Palace of Darkness'), + 'Palace of Darkness - Map Chest': (0xEA52, False, 'in Palace of Darkness'), + 'Palace of Darkness - Compass Chest': (0xEA43, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Left': (0xEA4C, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Right': (0xEA4F, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Top': (0xEA55, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Bottom': (0xEA58, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Chest': (0xEA40, False, 'in Palace of Darkness'), + 'Palace of Darkness - Harmless Hellway': (0xEA46, False, 'in Palace of Darkness'), + 'Palace of Darkness - Boss': (0x180153, False, 'with Helmasaur King'), + 'Ganons Tower - Bob\'s Torch': (0x180161, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Hope Room - Left': (0xEAD9, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Hope Room - Right': (0xEADC, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Tile Room': (0xEAE2, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Compass Room - Top Left': (0xEAE5, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Compass Room - Top Right': (0xEAE8, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Compass Room - Bottom Left': (0xEAEB, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Compass Room - Bottom Right': (0xEAEE, False, 'in Ganon\'s Tower'), + 'Ganons Tower - DMs Room - Top Left': (0xEAB8, False, 'in Ganon\'s Tower'), + 'Ganons Tower - DMs Room - Top Right': (0xEABB, False, 'in Ganon\'s Tower'), + 'Ganons Tower - DMs Room - Bottom Left': (0xEABE, False, 'in Ganon\'s Tower'), + 'Ganons Tower - DMs Room - Bottom Right': (0xEAC1, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Map Chest': (0xEAD3, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Firesnake Room': (0xEAD0, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Randomizer Room - Top Left': (0xEAC4, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Randomizer Room - Top Right': (0xEAC7, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Randomizer Room - Bottom Left': (0xEACA, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Randomizer Room - Bottom Right': (0xEACD, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Bob\'s Chest': (0xEADF, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Big Chest': (0xEAD6, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Big Key Room - Left': (0xEAF4, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Big Key Room - Right': (0xEAF7, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Big Key Chest': (0xEAF1, False, 'in Ganon\'s Tower'), + 'Ganons Tower - Mini Helmasaur Room - Left': (0xEAFD, False, 'atop Ganon\'s Tower'), + 'Ganons Tower - Mini Helmasaur Room - Right': (0xEB00, False, 'atop Ganon\'s Tower'), + 'Ganons Tower - Pre-Moldorm Chest': (0xEB03, False, 'atop Ganon\'s Tower'), + 'Ganons Tower - Validation Chest': (0xEB06, False, 'atop Ganon\'s Tower'), + 'Ganon': (None, False, 'from me'), + 'Agahnim 1': (None, False, 'from Ganon\'s wizardry form'), + 'Agahnim 2': (None, False, 'from Ganon\'s wizardry form'), + 'Floodgate': (None, False, None), + 'Frog': (None, False, None), + 'Missing Smith': (None, False, None), + 'Dark Blacksmith Ruins': (None, False, None), + 'Eastern Palace - Prize': ([0x1209D, 0x53EF8, 0x53EF9, 0x180052, 0x18007C, 0xC6FE], True, 'Eastern Palace'), + 'Desert Palace - Prize': ([0x1209E, 0x53F1C, 0x53F1D, 0x180053, 0x180078, 0xC6FF], True, 'Desert Palace'), + 'Tower of Hera - Prize': ([0x120A5, 0x53F0A, 0x53F0B, 0x18005A, 0x18007A, 0xC706], True, 'Tower of Hera'), + 'Palace of Darkness - Prize': ([0x120A1, 0x53F00, 0x53F01, 0x180056, 0x18007D, 0xC702], True, 'Palace of Darkness'), + 'Swamp Palace - Prize': ([0x120A0, 0x53F6C, 0x53F6D, 0x180055, 0x180071, 0xC701], True, 'Swamp Palace'), + 'Thieves\' Town - Prize': ([0x120A6, 0x53F36, 0x53F37, 0x18005B, 0x180077, 0xC707], True, 'Thieves\' Town'), + 'Skull Woods - Prize': ([0x120A3, 0x53F12, 0x53F13, 0x180058, 0x18007B, 0xC704], True, 'Skull Woods'), + 'Ice Palace - Prize': ([0x120A4, 0x53F5A, 0x53F5B, 0x180059, 0x180073, 0xC705], True, 'Ice Palace'), + 'Misery Mire - Prize': ([0x120A2, 0x53F48, 0x53F49, 0x180057, 0x180075, 0xC703], True, 'Misery Mire'), + 'Turtle Rock - Prize': ([0x120A7, 0x53F24, 0x53F25, 0x18005C, 0x180079, 0xC708], True, 'Turtle Rock')} diff --git a/ItemList.py b/ItemList.py index 97ab4198..629f2931 100644 --- a/ItemList.py +++ b/ItemList.py @@ -209,7 +209,7 @@ difficulties = { def generate_itempool(world, player): if (world.difficulty not in ['easy', 'normal', 'hard', 'expert', 'insane'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] - or world.mode not in ['open', 'standard', 'swordless'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): + or world.mode not in ['open', 'standard', 'swordless', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') if world.timer in ['ohko', 'timed-ohko']: @@ -662,7 +662,7 @@ def test(): for difficulty in ['easy', 'normal', 'hard', 'expert', 'insane']: for goal in ['ganon', 'triforcehunt', 'pedestal']: for timer in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown']: - for mode in ['open', 'standard', 'swordless']: + for mode in ['open', 'standard', 'swordless', 'inverted']: for progressive in ['on', 'off']: for shuffle in ['full', 'insane']: for retro in [True, False]: diff --git a/Main.py b/Main.py index bef644a9..33afc1d1 100644 --- a/Main.py +++ b/Main.py @@ -9,7 +9,8 @@ import time from BaseClasses import World, CollectionState, Item, Region, Location, Shop from Regions import create_regions, mark_light_world_regions -from EntranceShuffle import link_entrances +from InvertedRegions import create_inverted_regions, mark_dark_world_regions +from EntranceShuffle import link_entrances, link_inverted_entrances from Rom import patch_rom, get_enemizer_patch, apply_rom_settings, Sprite, LocalRom, JsonRom from Rules import set_rules from Dungeons import create_dungeons, fill_dungeons, fill_dungeons_restrictive @@ -38,16 +39,27 @@ def main(args, seed=None): world.difficulty_requirements = difficulties[world.difficulty] - for player in range(1, world.players + 1): - create_regions(world, player) - create_dungeons(world, player) + if world.mode != 'inverted': + for player in range(1, world.players + 1): + create_regions(world, player) + create_dungeons(world, player) + else: + for player in range(1, world.players + 1): + create_inverted_regions(world, player) + create_dungeons(world, player) logger.info('Shuffling the World about.') - for player in range(1, world.players + 1): - link_entrances(world, player) + if world.mode != 'inverted': + for player in range(1, world.players + 1): + link_entrances(world, player) - mark_light_world_regions(world) + mark_light_world_regions(world) + else: + for player in range(1, world.players + 1): + link_inverted_entrances(world, player) + + mark_dark_world_regions(world) logger.info('Generating Item Pool.') @@ -189,9 +201,14 @@ def copy_world(world): ret.fix_fake_world = world.fix_fake_world ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms - for player in range(1, world.players + 1): - create_regions(ret, player) - create_dungeons(ret, player) + if world.mode != 'inverted': + for player in range(1, world.players + 1): + create_regions(ret, player) + create_dungeons(ret, player) + else: + for player in range(1, world.players + 1): + create_inverted_regions(ret, player) + create_dungeons(ret, player) copy_dynamic_regions_and_locations(world, ret) @@ -365,7 +382,10 @@ def create_playthrough(world): 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}) for _, path in dict(old_world.spoiler.paths).items(): if any(exit == 'Pyramid Fairy' for (_, exit) in path): - old_world.spoiler.paths[str(world.get_region('Big Bomb Shop', player))] = get_path(state, world.get_region('Big Bomb Shop', player)) + if world.mode != 'inverted': + old_world.spoiler.paths[str(world.get_region('Big Bomb Shop', player))] = get_path(state, world.get_region('Big Bomb Shop', player)) + else: + old_world.spoiler.paths[str(world.get_region('Inverted Big Bomb Shop', player))] = get_path(state, world.get_region('Inverted Big Bomb Shop', player)) # we can finally output our playthrough old_world.spoiler.playthrough = OrderedDict([(str(i + 1), {str(location): str(location.item) for location in sphere}) for i, sphere in enumerate(collection_spheres)]) diff --git a/README.md b/README.md index 8da432d6..4c07f5ec 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,16 @@ Special notes: - The magic barrier to Hyrule Castle Tower can be broken with a Hammer. - The Hammer can be used to activate the Ether and Bombos tablets. +### Inverted + +This mode is similar to Open but requires the Moon Pearl in order to not transform into a bunny in the Light World and the Sanctuary spawn point is moved to the Dark Sanctuary + +Special Notes: + +- Link's House is shuffled freely. The Dark Sanctuary is shuffled within West Dark World. +- There are a number of overworld changes to account for the inability to mirror from the Light World to the Dark World. +- Legacy shuffles are not implemente for this mode. + ## Game Logic This determines the Item Requirements for each location. @@ -336,7 +346,7 @@ Output a Spoiler File (default: False) Select the game logic (default: noglitches) ``` ---mode [{standard,open,swordless}] +--mode [{standard,open,swordless,inverted}] ``` Select the game mode. (default: open) diff --git a/Rom.py b/Rom.py index b16b88b6..c425169c 100644 --- a/Rom.py +++ b/Rom.py @@ -3,17 +3,18 @@ import json import hashlib import logging import os +import random import struct import subprocess -import random from BaseClasses import ShopType, Region, Location, Item from Dungeons import dungeon_music_addresses -from Text import MultiByteTextMapper, text_addresses, Credits, TextTable +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 -from Utils import output_path, local_path, int16_as_bytes, int32_as_bytes +from Utils import output_path, local_path, int16_as_bytes, int32_as_bytes, snes_to_pc from Items import ItemFactory, item_table +from EntranceShuffle import door_addresses JAP10HASH = '03a63945398191337e896e5771f77173' @@ -37,6 +38,10 @@ class JsonRom(object): def write_int16(self, address, value): self.write_bytes(address, int16_as_bytes(value)) + def write_int16s(self, startaddress, values): + byte_list = [int16_as_bytes(value) for value in values] + self.patches[str(startaddress)] = [byte for bytes in byte_list for byte in bytes] + def write_int32(self, address, value): self.write_bytes(address, int32_as_bytes(value)) @@ -70,9 +75,17 @@ class LocalRom(object): def write_int16(self, address, value): self.write_bytes(address, int16_as_bytes(value)) + def write_int16s(self, startaddress, values): + for i, value in enumerate(values): + self.write_int16(startaddress + (i * 2), value) + def write_int32(self, address, value): self.write_bytes(address, int32_as_bytes(value)) + def write_int32s(self, startaddress, values): + for i, value in enumerate(values): + self.write_int32(startaddress + (i * 2), value) + def write_to_file(self, file): with open(file, 'wb') as outfile: outfile.write(self.buffer) @@ -218,14 +231,21 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleene 'IcePalace': world.get_dungeon("Ice Palace", player).boss.enemizer_name, 'MiseryMire': world.get_dungeon("Misery Mire", player).boss.enemizer_name, 'TurtleRock': world.get_dungeon("Turtle Rock", player).boss.enemizer_name, - 'GanonsTower1': world.get_dungeon('Ganons Tower', player).bosses['bottom'].enemizer_name, - 'GanonsTower2': world.get_dungeon('Ganons Tower', player).bosses['middle'].enemizer_name, - 'GanonsTower3': world.get_dungeon('Ganons Tower', player).bosses['top'].enemizer_name, 'GanonsTower4': 'Agahnim2', 'Ganon': 'Ganon', } } + if world.mode != 'inverted': + options['ManualBosses']['GanonsTower1'] = world.get_dungeon('Ganons Tower', player).bosses['bottom'].enemizer_name + options['ManualBosses']['GanonsTower2'] = world.get_dungeon('Ganons Tower', player).bosses['middle'].enemizer_name + options['ManualBosses']['GanonsTower3'] = world.get_dungeon('Ganons Tower', player).bosses['top'].enemizer_name + else: + options['ManualBosses']['GanonsTower1'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['bottom'].enemizer_name + options['ManualBosses']['GanonsTower2'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['middle'].enemizer_name + options['ManualBosses']['GanonsTower3'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['top'].enemizer_name + + rom.write_to_file(randopatch_path) with open(options_path, 'w') as f: @@ -501,7 +521,9 @@ def patch_rom(world, player, rom): else: # patch door table rom.write_byte(0xDBB73 + exit.addresses, exit.target) - + if world.mode == 'inverted': + patch_shuffled_dark_sanc(world, rom, player) + write_custom_shops(rom, world, player) # patch medallion requirements @@ -527,7 +549,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x51DE, 0x00) # set open mode: - if world.mode in ['open', 'swordless']: + if world.mode in ['open', 'swordless', 'inverted']: rom.write_byte(0x180032, 0x01) # open mode # disable sword sprite from uncle @@ -541,7 +563,9 @@ def patch_rom(world, player, rom): rom.write_bytes(0x6D2EB, [0x00, 0x00, 0xf7, 0xff, 0x02, 0x0E]) rom.write_bytes(0x6D31B, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) rom.write_bytes(0x6D323, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) - else: + if world.mode == 'inverted': + set_inverted_mode(world, rom) + elif world.mode == 'standard': rom.write_byte(0x180032, 0x00) # standard mode # set light cones @@ -855,6 +879,8 @@ def patch_rom(world, player, rom): # assorted fixes rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark word dungion before killing aga1 rom.write_byte(0x180169, 0x01 if world.lock_aga_door_in_escape else 0x00) # Lock or unlock aga tower door during escape sequence. + if world.mode == 'inverted': + rom.write_byte(0x180169, 0x02) # lock aga/ganon tower door with crystals in inverted rom.write_byte(0x180171, 0x01 if world.ganon_at_pyramid[player] else 0x00) # Enable respawning on pyramid after ganon death rom.write_byte(0x180173, 0x01) # Bob is enabled rom.write_byte(0x180168, 0x08) # Spike Cave Damage @@ -877,12 +903,12 @@ def patch_rom(world, player, rom): rom.write_byte(0x18302C, 0x18) # starting max health rom.write_byte(0x18302D, 0x18) # starting current health rom.write_byte(0x183039, 0x68) # starting abilities, bit array - rom.write_byte(0x18004A, 0x00) # Inverted mode (off) + rom.write_byte(0x18004A, 0x00 if world.mode != 'inverted' else 0x01) # Inverted mode rom.write_byte(0x18005D, 0x00) # Hammer always breaks barrier - rom.write_byte(0x2AF79, 0xD0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) - rom.write_byte(0x3A943, 0xD0) # Mirror: Normal (D0=Dark to Light, F0=light to dark, 42 = both) - rom.write_byte(0x3A96D, 0xF0) # Residual Portal: Normal (F0= Light Side, D0=Dark Side, 42 = both (Darth Vader)) - rom.write_byte(0x3A9A7, 0xD0) # Residual Portal: Normal (D0= Light Side, F0=Dark Side, 42 = both (Darth Vader)) + rom.write_byte(0x2AF79, 0xD0 if world.mode != 'inverted' else 0xF0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) + rom.write_byte(0x3A943, 0xD0 if world.mode != 'inverted' else 0xF0) # Mirror: Normal (D0=Dark to Light, F0=light to dark, 42 = both) + rom.write_byte(0x3A96D, 0xF0 if world.mode != 'inverted' else 0xD0) # Residual Portal: Normal (F0= Light Side, D0=Dark Side, 42 = both (Darth Vader)) + rom.write_byte(0x3A9A7, 0xD0 if world.mode != 'inverted' else 0xF0) # Residual Portal: Normal (D0= Light Side, F0=Dark Side, 42 = both (Darth Vader)) rom.write_bytes(0x180080, [50, 50, 70, 70]) # values to fill for Capacity Upgrades (Bomb5, Bomb10, Arrow5, Arrow10) @@ -1321,6 +1347,18 @@ def write_strings(rom, world, player): bombos_text = 'Some Hot Air' if bombositem is None else hint_text(bombositem, True) if bombositem.pedestal_hint_text is not None else 'Unknown Item' tt['tablet_bombos_book'] = bombos_text + # inverted spawn menu changes + if world.mode == 'inverted': + tt['menu_start_2'] = "{MENU}\n{SPEED0}\n≥@'s house\n Dark Chapel\n{CHOICE3}" + tt['menu_start_3'] = "{MENU}\n{SPEED0}\n≥@'s house\n Dark Chapel\n Mountain Cave\n{CHOICE2}" + tt['intro_main'] = CompressedTextMapper.convert( + "{INTRO}\n Episode III\n{PAUSE3}\n A Link to\n the Past\n" + + "{PAUSE3}\nInverted\n Randomizer\n{PAUSE3}\nAfter mostly disregarding what happened in the first two games.\n" + + "{PAUSE3}\nLink has been transported to the Dark World\n{PAUSE3}\nWhile he was slumbering\n" + + "{PAUSE3}\nWhatever will happen?\n{PAUSE3}\n{CHANGEPIC}\nGanon has moved around all the items in Hyrule.\n" + + "{PAUSE7}\nYou will have to find all the items necessary to beat Ganon.\n" + + "{PAUSE7}\nThis is your chance to be a hero.\n{PAUSE3}\n{CHANGEPIC}\n" + + "You must get the 7 crystals to beat Ganon.\n{PAUSE9}\n{CHANGEPIC}", False) rom.write_bytes(0xE0000, tt.getBytes()) credits = Credits() @@ -1359,6 +1397,218 @@ def write_strings(rom, world, player): rom.write_bytes(0x181500, data) rom.write_bytes(0x76CC0, [byte for p in pointers for byte in [p & 0xFF, p >> 8 & 0xFF]]) +def set_inverted_mode(world, rom): + rom.write_byte(snes_to_pc(0x0283E0), 0xF0) # residual portals + rom.write_byte(snes_to_pc(0x02B34D), 0xF0) + rom.write_byte(snes_to_pc(0x06DB78), 0x8B) + rom.write_byte(snes_to_pc(0x0DB3C5), 0xC6) + rom.write_byte(snes_to_pc(0x07A3F4), 0xF0) # duck + rom.write_int16s(snes_to_pc(0x02E849), [0x0043, 0x0056, 0x0058, 0x006C, 0x006F, 0x0070, 0x007B, 0x007F, 0x001B]) # dw flute + rom.write_int16(snes_to_pc(0x02E8D5), 0x07C8) + rom.write_int16(snes_to_pc(0x02E8F7), 0x01F8) + rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof + # the following bytes should only be written in vanilla + # or they'll overwrite the randomizer's shuffles + if world.shuffle == 'vanilla': + rom.write_byte(0x15B8C, 0x6C) + rom.write_byte(0xDBB73 + 0x00, 0x53) # switch bomb shop and links house + rom.write_byte(0xDBB73 + 0x52, 0x01) + rom.write_byte(0xDBB73 + 0x23, 0x37) # switch AT and GT + rom.write_byte(0xDBB73 + 0x36, 0x24) + rom.write_int16(0x15AEE + 2*0x38, 0x00E0) + rom.write_int16(0x15AEE + 2*0x25, 0x000C) + rom.write_byte(0xDBB73 + 0x15, 0x06) # bumper and old man cave + rom.write_int16(0x15AEE + 2*0x17, 0x00F0) + rom.write_byte(0xDBB73 + 0x05, 0x16) + rom.write_int16(0x15AEE + 2*0x07, 0x00FB) + rom.write_byte(0xDBB73 + 0x2D, 0x17) + rom.write_int16(0x15AEE + 2*0x2F, 0x00EB) + rom.write_byte(0xDBB73 + 0x06, 0x2E) + rom.write_int16(0x15AEE + 2*0x08, 0x00E6) + rom.write_byte(0xDBB73 + 0x16, 0x5E) + rom.write_byte(0xDBB73 + 0x6F, 0x07) # DDM fairy to old man cave + rom.write_int16(0x15AEE + 2*0x18, 0x00F1) + rom.write_byte(0x15B8C + 0x18, 0x43) + rom.write_int16(0x15BDB + 2 * 0x18, 0x1400) + rom.write_int16(0x15C79 + 2 * 0x18, 0x0294) + rom.write_int16(0x15D17 + 2 * 0x18, 0x0600) + rom.write_int16(0x15DB5 + 2 * 0x18, 0x02E8) + rom.write_int16(0x15E53 + 2 * 0x18, 0x0678) + rom.write_int16(0x15EF1 + 2 * 0x18, 0x0303) + rom.write_int16(0x15F8F + 2 * 0x18, 0x0685) + rom.write_byte(0x1602D + 0x18, 0x0A) + rom.write_byte(0x1607C + 0x18, 0xF6) + rom.write_int16(0x160CB + 2 * 0x18, 0x0000) + rom.write_int16(0x16169 + 2 * 0x18, 0x0000) + rom.write_int16(0x15AEE + 2 * 0x3D, 0x0003) # pyramid exit and houlihan + rom.write_byte(0x15B8C + 0x3D, 0x5B) + rom.write_int16(0x15BDB + 2 * 0x3D, 0x0B0E) + rom.write_int16(0x15C79 + 2 * 0x3D, 0x075A) + rom.write_int16(0x15D17 + 2 * 0x3D, 0x0674) + rom.write_int16(0x15DB5 + 2 * 0x3D, 0x07A8) + rom.write_int16(0x15E53 + 2 * 0x3D, 0x06E8) + rom.write_int16(0x15EF1 + 2 * 0x3D, 0x07C7) + rom.write_int16(0x15F8F + 2 * 0x3D, 0x06F3) + rom.write_byte(0x1602D + 0x3D, 0x06) + rom.write_byte(0x1607C + 0x3D, 0xFA) + rom.write_int16(0x160CB + 2 * 0x3D, 0x0000) + rom.write_int16(0x16169 + 2 * 0x3D, 0x0000) + rom.write_int16(snes_to_pc(0x02D8D4), 0x112) # change sactuary spawn point to dark sanc + rom.write_bytes(snes_to_pc(0x02D8E8), [0x22, 0x22, 0x22, 0x23, 0x04, 0x04, 0x04, 0x05]) + rom.write_int16(snes_to_pc(0x02D91A), 0x0400) + rom.write_int16(snes_to_pc(0x02D928), 0x222E) + rom.write_int16(snes_to_pc(0x02D936), 0x229A) + rom.write_int16(snes_to_pc(0x02D944), 0x0480) + rom.write_int16(snes_to_pc(0x02D952), 0x00A5) + rom.write_int16(snes_to_pc(0x02D960), 0x007F) + rom.write_byte(snes_to_pc(0x02D96D), 0x14) + rom.write_byte(snes_to_pc(0x02D974), 0x00) + rom.write_byte(snes_to_pc(0x02D97B), 0xFF) + rom.write_byte(snes_to_pc(0x02D982), 0x00) + rom.write_byte(snes_to_pc(0x02D989), 0x02) + rom.write_byte(snes_to_pc(0x02D990), 0x00) + rom.write_int16(snes_to_pc(0x02D998), 0x0000) + rom.write_int16(snes_to_pc(0x02D9A6), 0x005A) + rom.write_byte(snes_to_pc(0x02D9B3), 0x12) + # keep the old man spawn point at old man house unless shuffle is vanilla + if world.shuffle == 'vanilla': + rom.write_bytes(snes_to_pc(0x308350), [0x00, 0x00, 0x01]) + rom.write_int16(snes_to_pc(0x02D8DE), 0x00F1) + rom.write_bytes(snes_to_pc(0x02D910), [0x1F, 0x1E, 0x1F, 0x1F, 0x03, 0x02, 0x03, 0x03]) + rom.write_int16(snes_to_pc(0x02D924), 0x0300) + rom.write_int16(snes_to_pc(0x02D932), 0x1F10) + rom.write_int16(snes_to_pc(0x02D940), 0x1FC0) + rom.write_int16(snes_to_pc(0x02D94E), 0x0378) + rom.write_int16(snes_to_pc(0x02D95C), 0x0187) + rom.write_int16(snes_to_pc(0x02D96A), 0x017F) + rom.write_byte(snes_to_pc(0x02D972), 0x06) + rom.write_byte(snes_to_pc(0x02D979), 0x00) + rom.write_byte(snes_to_pc(0x02D980), 0xFF) + rom.write_byte(snes_to_pc(0x02D987), 0x00) + rom.write_byte(snes_to_pc(0x02D98E), 0x22) + rom.write_byte(snes_to_pc(0x02D995), 0x12) + rom.write_int16(snes_to_pc(0x02D9A2), 0x0000) + rom.write_int16(snes_to_pc(0x02D9B0), 0x0007) + rom.write_byte(snes_to_pc(0x02D9B8), 0x12) + rom.write_bytes(0x180247, [0x00, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00]) + rom.write_int16(0x15AEE + 2 * 0x06, 0x0020) # post aga hyrule castle spawn + rom.write_byte(0x15B8C + 0x06, 0x1B) + rom.write_int16(0x15BDB + 2 * 0x06, 0x00AE) + rom.write_int16(0x15C79 + 2 * 0x06, 0x0610) + rom.write_int16(0x15D17 + 2 * 0x06, 0x077E) + rom.write_int16(0x15DB5 + 2 * 0x06, 0x0672) + rom.write_int16(0x15E53 + 2 * 0x06, 0x07F8) + rom.write_int16(0x15EF1 + 2 * 0x06, 0x067D) + rom.write_int16(0x15F8F + 2 * 0x06, 0x0803) + rom.write_byte(0x1602D + 0x06, 0x00) + rom.write_byte(0x1607C + 0x06, 0xF2) + rom.write_int16(0x160CB + 2 * 0x06, 0x0000) + rom.write_int16(0x16169 + 2 * 0x06, 0x0000) + rom.write_int16(snes_to_pc(0x02E87B), 0x00AE) # move flute splot 9 + rom.write_int16(snes_to_pc(0x02E89D), 0x0610) + rom.write_int16(snes_to_pc(0x02E8BF), 0x077E) + rom.write_int16(snes_to_pc(0x02E8E1), 0x0672) + rom.write_int16(snes_to_pc(0x02E903), 0x07F8) + rom.write_int16(snes_to_pc(0x02E925), 0x067D) + rom.write_int16(snes_to_pc(0x02E947), 0x0803) + rom.write_int16(snes_to_pc(0x02E969), 0x0000) + rom.write_int16(snes_to_pc(0x02E98B), 0xFFF2) + rom.write_byte(snes_to_pc(0x1AF696), 0xF0) # bat sprite retreat + rom.write_byte(snes_to_pc(0x1AF6B2), 0x33) + rom.write_bytes(snes_to_pc(0x1AF730), [0x6A, 0x9E, 0x0C, 0x00, 0x7A, 0x9E, 0x0C, + 0x00, 0x8A, 0x9E, 0x0C, 0x00, 0x6A, 0xAE, + 0x0C, 0x00, 0x7A, 0xAE, 0x0C, 0x00, 0x8A, + 0xAE, 0x0C, 0x00, 0x67, 0x97, 0x0C, 0x00, + 0x8D, 0x97, 0x0C, 0x00]) + rom.write_int16s(snes_to_pc(0x0FF1C8), [0x190F, 0x190F, 0x190F, 0x194C, 0x190F, + 0x194B, 0x190F, 0x195C, 0x594B, 0x194C, + 0x19EE, 0x19EE, 0x194B, 0x19EE, 0x19EE, + 0x19EE, 0x594B, 0x190F, 0x595C, 0x190F, + 0x190F, 0x195B, 0x190F, 0x190F, 0x19EE, + 0x19EE, 0x195C, 0x19EE, 0x19EE, 0x19EE, + 0x19EE, 0x595C, 0x595B, 0x190F, 0x190F, + 0x190F]) + rom.write_int16s(snes_to_pc(0x0FA480), [0x190F, 0x196B, 0x9D04, 0x9D04, 0x196B, + 0x190F, 0x9D04, 0x9D04]) + rom.write_int16s(snes_to_pc(0x1bb810), [0x00BE, 0x00C0, 0x013E]) + rom.write_int16s(snes_to_pc(0x1bb836), [0x001B, 0x001B, 0x001B]) + rom.write_int16(snes_to_pc(0x308300), 0x0140) + rom.write_int16(snes_to_pc(0x308320), 0x001B) + if world.shuffle == 'vanilla': + rom.write_byte(snes_to_pc(0x308340), 0x7B) + rom.write_int16(snes_to_pc(0x1af504), 0x148B) + rom.write_int16(snes_to_pc(0x1af50c), 0x149B) + rom.write_int16(snes_to_pc(0x1af514), 0x14A4) + rom.write_int16(snes_to_pc(0x1af51c), 0x1489) + rom.write_int16(snes_to_pc(0x1af524), 0x14AC) + rom.write_int16(snes_to_pc(0x1af52c), 0x54AC) + rom.write_int16(snes_to_pc(0x1af534), 0x148C) + rom.write_int16(snes_to_pc(0x1af53c), 0x548C) + rom.write_int16(snes_to_pc(0x1af544), 0x1484) + rom.write_int16(snes_to_pc(0x1af54c), 0x5484) + rom.write_int16(snes_to_pc(0x1af554), 0x14A2) + rom.write_int16(snes_to_pc(0x1af55c), 0x54A2) + rom.write_int16(snes_to_pc(0x1af564), 0x14A0) + rom.write_int16(snes_to_pc(0x1af56c), 0x54A0) + rom.write_int16(snes_to_pc(0x1af574), 0x148E) + rom.write_int16(snes_to_pc(0x1af57c), 0x548E) + rom.write_int16(snes_to_pc(0x1af584), 0x14AE) + rom.write_int16(snes_to_pc(0x1af58c), 0x54AE) + rom.write_byte(snes_to_pc(0x00DB9D), 0x1A) # castle hole graphics + rom.write_byte(snes_to_pc(0x00DC09), 0x1A) + rom.write_byte(snes_to_pc(0x00D009), 0x31) + rom.write_byte(snes_to_pc(0x00D0e8), 0xE0) + rom.write_byte(snes_to_pc(0x00D1c7), 0x00) + rom.write_int16(snes_to_pc(0x1BE8DA), 0x39AD) + rom.write_byte(0xF6E58, 0x80) # no whirlpool under castle gate + rom.write_bytes(0x0086E, [0x5C, 0x00, 0xA0, 0xA1]) # TR tail + rom.write_bytes(snes_to_pc(0x1BC67A), [0x2E, 0x0B, 0x82]) # add warps under rocks + rom.write_bytes(snes_to_pc(0x1BC81E), [0x94, 0x1D, 0x82]) + rom.write_bytes(snes_to_pc(0x1BC655), [0x4A, 0x1D, 0x82]) + rom.write_bytes(snes_to_pc(0x1BC80D), [0xB2, 0x0B, 0x82]) + rom.write_bytes(snes_to_pc(0x1BC3DF), [0xD8, 0xD1]) + rom.write_bytes(snes_to_pc(0x1BD1D8), [0xA8, 0x02, 0x82, 0xFF, 0xFF]) + rom.write_bytes(snes_to_pc(0x1BC85A), [0x50, 0x0F, 0x82]) + rom.write_int16(0xDB96F + 2 * 0x35, 0x001B) # move pyramid exit door + rom.write_int16(0xDBA71 + 2 * 0x35, 0x06A4) + if world.shuffle == 'vanilla': + rom.write_byte(0xDBB73 + 0x35, 0x36) + rom.write_byte(snes_to_pc(0x09D436), 0xF3) # remove castle gate warp + if world.shuffle == 'vanilla': + rom.write_int16(0x15AEE + 2 * 0x37, 0x0010) # pyramid exit to new hc area + rom.write_byte(0x15B8C + 0x37, 0x1B) + rom.write_int16(0x15BDB + 2 * 0x37, 0x0418) + rom.write_int16(0x15C79 + 2 * 0x37, 0x0679) + rom.write_int16(0x15D17 + 2 * 0x37, 0x06B4) + rom.write_int16(0x15DB5 + 2 * 0x37, 0x06C6) + rom.write_int16(0x15E53 + 2 * 0x37, 0x0738) + rom.write_int16(0x15EF1 + 2 * 0x37, 0x06E6) + rom.write_int16(0x15F8F + 2 * 0x37, 0x0733) + rom.write_byte(0x1602D + 0x37, 0x07) + rom.write_byte(0x1607C + 0x37, 0xF9) + rom.write_int16(0x160CB + 2 * 0x37, 0x0000) + rom.write_int16(0x16169 + 2 * 0x37, 0x0000) + rom.write_bytes(snes_to_pc(0x1BC387), [0xDD, 0xD1]) + rom.write_bytes(snes_to_pc(0x1BD1DD), [0xA4, 0x06, 0x82, 0x9E, 0x06, 0x82, 0xFF, 0xFF]) + rom.write_byte(0x180089, 0x01) # open TR after exit + rom.write_byte(snes_to_pc(0x0ABFBB), 0x90) + rom.write_byte(snes_to_pc(0x0280A6), 0xD0) + rom.write_bytes(snes_to_pc(0x06B2AB), [0xF0, 0xE1, 0x05]) + +def patch_shuffled_dark_sanc(world, rom, player): + dark_sanc_entrance = str(world.get_region('Inverted Dark Sanctuary', player).entrances[0].name) + room_id, ow_area, vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x, unknown_1, unknown_2, door_1, door_2 = door_addresses[dark_sanc_entrance][1] + if dark_sanc_entrance == 'Skull Woods Final Section': + link_y = 0x00F8 + door_index = door_addresses[str(dark_sanc_entrance)][0] + + rom.write_byte(0x180241, 0x01) + rom.write_byte(0x180248, door_index + 1) + rom.write_int16(0x180250, room_id) + rom.write_byte(0x180252, ow_area) + rom.write_int16s(0x180253, [vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x]) + rom.write_bytes(0x180262, [unknown_1, unknown_2, 0x00]) + InconvenientEntrances = {'Turtle Rock': 'Turtle Rock Main', 'Misery Mire': 'Misery Mire', 'Ice Palace': 'Ice Palace', diff --git a/Rules.py b/Rules.py index bf6f0a50..17b6f4e9 100644 --- a/Rules.py +++ b/Rules.py @@ -6,13 +6,21 @@ def set_rules(world, player): if world.logic == 'nologic': logging.getLogger('').info('WARNING! Seeds generated under this logic often require major glitches and may be impossible!') - world.get_region('Links House', player).can_reach = lambda state: True - world.get_region('Sanctuary', player).can_reach = lambda state: True - old_rule = world.get_region('Old Man House', player).can_reach - world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) - return - - global_rules(world, player) + if world.mode != 'inverted': + world.get_region('Links House', player).can_reach = lambda state: True + world.get_region('Sanctuary', player).can_reach = lambda state: True + old_rule = world.get_region('Old Man House', player).can_reach + world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + return + else: + world.get_region('Inverted Links House', player).can_reach = lambda state: True + world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach = lambda state: True + if world.shuffle != 'vanilla': + old_rule = world.get_region('Old Man House', player).can_reach + world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + return + if world.mode != 'inverted': + global_rules(world, player) if world.mode == 'open': open_rules(world, player) @@ -20,6 +28,9 @@ def set_rules(world, player): standard_rules(world, player) elif world.mode == 'swordless': swordless_rules(world, player) + elif world.mode == 'inverted': + open_rules(world, player) + inverted_rules(world, player) else: raise NotImplementedError('Not implemented yet') @@ -36,15 +47,20 @@ def set_rules(world, player): elif world.goal == 'ganon': # require aga2 to beat ganon add_rule(world.get_location('Ganon', player), lambda state: state.has('Beat Agahnim 2', player)) - - set_big_bomb_rules(world, player) + + if world.mode != 'inverted': + set_big_bomb_rules(world, player) + else: + set_inverted_big_bomb_rules(world, player) # if swamp and dam have not been moved we require mirror for swamp palace if not world.swamp_patch_required[player]: add_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has_Mirror(player)) - set_bunny_rules(world, player) - + if world.mode != 'inverted': + set_bunny_rules(world, player) + else: + set_inverted_bunny_rules(world, player) def set_rule(spot, rule): spot.access_rule = rule @@ -301,7 +317,7 @@ def global_rules(world, player): for location in ['Skull Woods - Boss']: forbid_item(world.get_location(location, player), 'Small Key (Skull Woods)', player) - set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.has('Fire Rod', player) or (state.has('Bombos', player) and state.has_sword(player))) + set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.can_melt_things(player)) set_rule(world.get_location('Ice Palace - Big Chest', player), lambda state: state.has('Big Key (Ice Palace)', player)) set_rule(world.get_entrance('Ice Palace (Kholdstare)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', player) and state.has('Big Key (Ice Palace)', player) and (state.has_key('Small Key (Ice Palace)', player, 2) or (state.has('Cane of Somaria', player) and state.has_key('Small Key (Ice Palace)', player, 1)))) # TODO: investigate change from VT. Changed to hookshot or 2 keys (no checking for big key in specific chests) @@ -422,14 +438,388 @@ def global_rules(world, player): set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has('Crystal 1', player) and state.has('Crystal 2', player) and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) +def inverted_rules(world, player): + world.get_location('Ganon', player).item_rule = lambda item: item.name == 'Triforce' and item.player == player + world.get_region('Inverted Links House', player).can_reach = lambda state: True + world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach = lambda state: True + + # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! + if world.shuffle != 'vanilla': + old_rule = world.get_region('Old Man House', player).can_reach + world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + # overworld requirements + 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)) + set_rule(world.get_entrance('Potion Shop Pier', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Light World Pier', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Kings Grave', player), lambda state: state.has_Boots(player) and state.can_lift_heavy_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Kings Grave Outer Rocks', player), lambda state: state.can_lift_heavy_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Kings Grave Inner Rocks', player), lambda state: state.can_lift_heavy_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Potion Shop Inner Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Potion Shop Outer Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Potion Shop Outer Rock', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Potion Shop Inner Rock', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Graveyard Cave Inner Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Graveyard Cave Outer Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Secret Passage Inner Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Secret Passage Outer Bushes', player), lambda state: state.has_Pearl(player)) + # Caution: If king's grave is releaxed at all to account for reaching it via a two way cave's exit in insanity mode, then the bomb shop logic will need to be updated (that would involve create a small ledge-like Region for it) + set_rule(world.get_entrance('Bonk Fairy (Light)', player), lambda state: state.has_Boots(player) and state.has_Pearl(player)) + add_rule(world.get_location('Sunken Treasure', player), lambda state: state.can_reach('Light World', 'Region', player) and state.has('Open Floodgate', player)) + set_rule(world.get_entrance('Bat Cave Drop Ledge', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Lumberjack Tree Tree', player), lambda state: state.has_Boots(player) and state.has_Pearl(player) and state.has('Beat Agahnim 1', player)) + set_rule(world.get_entrance('Bonk Rock Cave', player), lambda state: state.has_Boots(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Desert Palace Stairs', player), lambda state: state.has('Book of Mudora', player)) # bunny can use book + set_rule(world.get_entrance('Sanctuary Grave', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('20 Rupee Cave', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('50 Rupee Cave', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Death Mountain Entrance Rock', player), lambda state: state.can_lift_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Bumper Cave Entrance Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Lake Hylia Central Island Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Dark Lake Hylia Central Island Teleporter', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Dark Desert Teleporter', player), lambda state: state.can_flute(player) and state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('East Dark World Teleporter', player), lambda state: state.has('Hammer', player) and state.can_lift_rocks(player) and state.has_Pearl(player)) # bunny cannot use hammer + set_rule(world.get_entrance('South Dark World Teleporter', player), lambda state: state.has('Hammer', player) and state.can_lift_rocks(player) and state.has_Pearl(player)) # bunny cannot use hammer + set_rule(world.get_entrance('West Dark World Teleporter', player), lambda state: ((state.has('Hammer', player) and state.can_lift_rocks(player)) or state.can_lift_heavy_rocks(player)) and state.has_Pearl(player)) + set_rule(world.get_location('Flute Spot', player), lambda state: state.has('Shovel', player) and state.has_Pearl(player)) + set_rule(world.get_location('Dark Blacksmith Ruins', player), lambda state: state.has('Return Smith', player)) + set_rule(world.get_location('Purple Chest', player), lambda state: state.has('Pick Up Purple Chest', player)) # Can S&Q with chest + + set_rule(world.get_location('Zora\'s Ledge', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Waterfall of Wishing', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player)) # can be fake flippered into, but is in weird state inside that might prevent you from doing things. Can be improved in future Todo + set_rule(world.get_location('Frog', player), lambda state: state.can_lift_heavy_rocks(player) or (state.can_reach('Light World', 'Region', player) and state.has_Mirror(player))) + set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player) and state.can_reach('Blacksmiths Hut', 'Region', player)) # Can't S&Q with smith + set_rule(world.get_location('Blacksmith', player), lambda state: state.has('Return Smith', player)) + set_rule(world.get_location('Magic Bat', player), lambda state: state.has('Magic Powder', player) and state.has_Pearl(player)) + set_rule(world.get_location('Sick Kid', player), lambda state: state.has_bottle(player)) + set_rule(world.get_location('Mushroom', player), lambda state: state.has_Pearl(player)) # need pearl to pick up bushes + set_rule(world.get_entrance('Bush Covered Lawn Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Bush Covered Lawn Inner Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Bush Covered Lawn Outer Bushes', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Bomb Hut Inner Bushes', player), lambda state: state.has_Pearl(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('Library', player), lambda state: state.has_Boots(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_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)) + set_rule(world.get_location('Master Sword Pedestal', player), lambda state: state.has('Red Pendant', player) and state.has('Blue Pendant', player) and state.has('Green Pendant', player)) + set_rule(world.get_location('Sahasrahla', player), lambda state: state.has('Green Pendant', player)) + set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) + set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) + set_rule(world.get_location('Castle Tower - Dark Maze', player), lambda state: state.has_key('Small Key (Agahnims Tower)', player)) + set_rule(world.get_entrance('LW Hyrule Castle Ledge SQ', player), lambda state: state.has('Beat Agahnim 1', player)) + set_rule(world.get_entrance('EDM Hyrule Castle Ledge SQ', player), lambda state: state.has('Beat Agahnim 1', player)) + set_rule(world.get_entrance('WDM Hyrule Castle Ledge SQ', player), lambda state: state.has('Beat Agahnim 1', player)) + set_rule(world.get_entrance('Hyrule Castle Secret Entrance Drop', player), lambda state: state.has_Pearl(player)) + set_rule(world.get_entrance('Old Man Cave Exit (West)', player), lambda state: False) # drop cannot be climbed up + set_rule(world.get_entrance('Broken Bridge (West)', player), lambda state: state.has('Hookshot', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Broken Bridge (East)', player), lambda state: state.has('Hookshot', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Dark Death Mountain Teleporter (East Bottom)', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Fairy Ascension Rocks', player), lambda state: state.can_lift_heavy_rocks(player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Paradox Cave Push Block Reverse', player), lambda state: state.has('Mirror', player)) # can erase block + set_rule(world.get_entrance('Death Mountain (Top)', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) + set_rule(world.get_entrance('Dark Death Mountain Teleporter (East)', player), lambda state: state.can_lift_heavy_rocks(player) and state.has('Hammer', player) and state.has_Pearl(player)) # bunny cannot use hammer + set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) + set_rule(world.get_entrance('East Death Mountain (Top)', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) # bunny can not use hammer + + set_rule(world.get_location('Catfish', player), lambda state: state.can_lift_rocks(player) or (state.has('Flippers', player) and state.has_Mirror(player) and state.has_Pearl(player) and state.can_reach('Light World', 'Region', player))) + set_rule(world.get_entrance('Northeast Dark World Broken Bridge Pass', player), lambda state: ((state.can_lift_rocks(player) or state.has('Hammer', player)) or state.has('Flippers', player))) + set_rule(world.get_entrance('East Dark World Broken Bridge Pass', player), lambda state: (state.can_lift_rocks(player) or state.has('Hammer', player))) + set_rule(world.get_entrance('South Dark World Bridge', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Bonk Fairy (Dark)', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('West Dark World Gap', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_location('Bombos Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (South)', player), lambda state: state.has('Flippers', player)) # ToDo any fake flipper set up? + set_rule(world.get_entrance('Dark Lake Hylia Ledge Pier', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_entrance('Dark Lake Hylia Ledge Spike Cave', player), lambda state: state.can_lift_rocks(player)) + set_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))) # Fake Flippers + set_rule(world.get_entrance('Village of Outcasts Heavy Rock', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('East Dark World Bridge', player), lambda state: state.has('Hammer', 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('Flippers', player)) # ToDo any fake flipper set up? (Qirn Jump) + set_rule(world.get_entrance('Bumper Cave Entrance Rock', player), lambda state: state.can_lift_rocks(player)) + set_rule(world.get_entrance('Bumper Cave Ledge Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Hammer Peg Area Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Dark World Hammer Peg Cave', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Village of Outcasts Eastern Rocks', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Peg Area Rocks', player), lambda state: state.can_lift_heavy_rocks(player)) + set_rule(world.get_entrance('Village of Outcasts Pegs', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Grassy Lawn Pegs', player), lambda state: state.has('Hammer', 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('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)) + + set_rule(world.get_entrance('East Death Mountain Mirror Spot (Top)', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Death Mountain (Top) Mirror Spot', player), lambda state: state.has_Mirror(player)) + + set_rule(world.get_entrance('East Death Mountain Mirror Spot (Bottom)', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Dark Death Mountain Ledge Mirror Spot (East)', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Dark Death Mountain Ledge Mirror Spot (West)', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Laser Bridge Mirror Spot', player), lambda state: state.has_Mirror(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_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)))))) + ) + + set_rule(world.get_location('Hookshot Cave - Top Right', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_location('Hookshot Cave - Top Left', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_location('Hookshot Cave - Bottom Right', player), lambda state: state.has('Hookshot', player) or state.has('Pegasus Boots', player)) + set_rule(world.get_location('Hookshot Cave - Bottom Left', player), lambda state: state.has('Hookshot', player)) + 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 (!) + set_rule(world.get_location('Mimic Cave', player), lambda state: state.has('Hammer', player)) + + # 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)) + set_rule(world.get_entrance('Desert Palace Stairs Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Death Mountain Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('East Dark World Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('West Dark World Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('South Dark World Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Northeast Dark World Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Potion Shop Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Shopping Mall Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Maze Race Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Desert Palace North Mirror Spot', player), lambda state: state.has_Mirror(player)) + set_rule(world.get_entrance('Death Mountain (Top) Mirror Spot', player), lambda state: state.has_Mirror(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)) + set_rule(world.get_entrance('NEDW Flute', player), lambda state: state.can_flute(player)) + set_rule(world.get_entrance('WDW Flute', player), lambda state: state.can_flute(player)) + set_rule(world.get_entrance('SDW Flute', player), lambda state: state.can_flute(player)) + set_rule(world.get_entrance('EDW Flute', player), lambda state: state.can_flute(player)) + set_rule(world.get_entrance('DLHL Flute', player), lambda state: state.can_flute(player)) + set_rule(world.get_entrance('DD Flute', player), lambda state: state.can_flute(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('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player)) + set_rule(world.get_entrance('Sewers Back Door', player), lambda state: state.has_key('Small Key (Escape)', player)) + + set_rule(world.get_location('Eastern Palace - Big Chest', player), lambda state: state.has('Big Key (Eastern Palace)', player)) + set_rule(world.get_location('Eastern Palace - Boss', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Eastern Palace - Prize', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) + for location in ['Eastern Palace - Boss', 'Eastern Palace - Big Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Eastern Palace)', player) + + set_rule(world.get_location('Desert Palace - Big Chest', player), lambda state: state.has('Big Key (Desert Palace)', player)) + set_rule(world.get_location('Desert Palace - Torch', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Desert Palace East Wing', player), lambda state: state.has_key('Small Key (Desert Palace)', player)) + set_rule(world.get_location('Desert Palace - Prize', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Desert Palace - Boss', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) + for location in ['Desert Palace - Boss', 'Desert Palace - Big Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Desert Palace)', player) + + for location in ['Desert Palace - Boss', 'Desert Palace - Big Key Chest', 'Desert Palace - Compass Chest']: + forbid_item(world.get_location(location, player), 'Small Key (Desert Palace)', player) + + set_rule(world.get_entrance('Tower of Hera Small Key Door', player), lambda state: state.has_key('Small Key (Tower of Hera)', player) or item_name(state, 'Tower of Hera - Big Key Chest', player) == ('Small Key (Tower of Hera)', player)) + set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) + set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) + set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) + set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) + set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) + for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Tower of Hera)', player) +# for location in ['Tower of Hera - Big Key Chest']: +# forbid_item(world.get_location(location, player), 'Small Key (Tower of Hera)', player) + + set_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) + add_rule(world.get_location('Sunken Treasure', player), lambda state: state.has('Open Floodgate', player)) + + set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) + set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) + set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) + set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) + set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) + for location in ['Swamp Palace - Entrance']: + forbid_item(world.get_location(location, player), 'Big Key (Swamp Palace)', player) + + set_rule(world.get_entrance('Thieves Town Big Key Door', player), lambda state: state.has('Big Key (Thieves Town)', player)) + set_rule(world.get_entrance('Blind Fight', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) + set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) + set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) + set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) + set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) + for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: + forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) + for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Boss']: + forbid_item(world.get_location(location, player), 'Small Key (Thieves Town)', player) + + set_rule(world.get_entrance('Skull Woods First Section South Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) + set_rule(world.get_entrance('Skull Woods First Section (Right) North Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) + set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section + set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) + set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) + set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) + set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain + set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) + for location in ['Skull Woods - Boss']: + forbid_item(world.get_location(location, player), 'Small Key (Skull Woods)', player) + + set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.can_melt_things(player)) + set_rule(world.get_location('Ice Palace - Big Chest', player), lambda state: state.has('Big Key (Ice Palace)', player)) + set_rule(world.get_entrance('Ice Palace (Kholdstare)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', player) and state.has('Big Key (Ice Palace)', player) and (state.has_key('Small Key (Ice Palace)', player, 2) or (state.has('Cane of Somaria', player) and state.has_key('Small Key (Ice Palace)', player, 1)))) + # TODO: investigate change from VT. Changed to hookshot or 2 keys (no checking for big key in specific chests) + set_rule(world.get_entrance('Ice Palace (East)', player), lambda state: (state.has('Hookshot', player) or (item_in_locations(state, 'Big Key (Ice Palace)', player, [('Ice Palace - Spike Room', player), ('Ice Palace - Big Key Chest', player), ('Ice Palace - Map Chest', player)]) and state.has_key('Small Key (Ice Palace)', player))) and (state.world.can_take_damage or state.has('Hookshot', player) or state.has('Cape', player) or state.has('Cane of Byrna', player))) + set_rule(world.get_entrance('Ice Palace (East Top)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', 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)) + for location in ['Ice Palace - Big Chest', 'Ice Palace - Boss']: + forbid_item(world.get_location(location, player), 'Big Key (Ice Palace)', player) + + set_rule(world.get_entrance('Misery Mire Entrance Gap', player), lambda state: (state.has_Boots(player) or state.has('Hookshot', player)) and (state.has_sword(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Hammer', player) or state.has('Cane of Somaria', player) or state.can_shoot_arrows(player))) # need to defeat wizzrobes, bombs don't work ... + set_rule(world.get_location('Misery Mire - Big Chest', player), lambda state: state.has('Big Key (Misery Mire)', player)) + set_rule(world.get_location('Misery Mire - Spike Chest', player), lambda state: (state.world.can_take_damage and state.has_hearts(player, 4)) or state.has('Cane of Byrna', player) or state.has('Cape', player)) + set_rule(world.get_entrance('Misery Mire Big Key Door', player), lambda state: state.has('Big Key (Misery Mire)', player)) + # you can squander the free small key from the pot by opening the south door to the north west switch room, locking you out of accessing a color switch ... + # big key gives backdoor access to that from the teleporter in the north west + set_rule(world.get_location('Misery Mire - Map Chest', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 1) or state.has('Big Key (Misery Mire)', player)) + # in addition, you can open the door to the map room before getting access to a color switch, so this is locked behing 2 small keys or the big key... + set_rule(world.get_location('Misery Mire - Main Lobby', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) or state.has_key('Big Key (Misery Mire)', player)) + # we can place a small key in the West wing iff it also contains/blocks the Big Key, as we cannot reach and softlock with the basement key door yet + set_rule(world.get_entrance('Misery Mire (West)', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) if ((item_name(state, 'Misery Mire - Compass Chest', player) in [('Big Key (Misery Mire)', player)]) or + (item_name(state, 'Misery Mire - Big Key Chest', player) in [('Big Key (Misery Mire)', player)])) else state.has_key('Small Key (Misery Mire)', player, 3)) + set_rule(world.get_location('Misery Mire - Compass Chest', player), lambda state: state.has_fire_source(player)) + set_rule(world.get_location('Misery Mire - Big Key Chest', player), lambda state: state.has_fire_source(player)) + set_rule(world.get_entrance('Misery Mire (Vitreous)', player), lambda state: state.has('Cane of Somaria', player)) + set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Prize', player)) + for location in ['Misery Mire - Big Chest', 'Misery Mire - Boss']: + forbid_item(world.get_location(location, player), 'Big Key (Misery Mire)', player) + + set_rule(world.get_entrance('Turtle Rock Entrance Gap', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Turtle Rock Entrance Gap Reverse', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_location('Turtle Rock - Compass Chest', player), lambda state: state.has('Cane of Somaria', player)) # We could get here from the middle section without Cane as we don't cross the entrance gap! + set_rule(world.get_location('Turtle Rock - Roller Room - Left', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) + set_rule(world.get_location('Turtle Rock - Roller Room - Right', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) + set_rule(world.get_location('Turtle Rock - Big Chest', player), lambda state: state.has('Big Key (Turtle Rock)', player) and (state.has('Cane of Somaria', player) or state.has('Hookshot', player))) + set_rule(world.get_entrance('Turtle Rock (Big Chest) (North)', player), lambda state: state.has('Cane of Somaria', player) or state.has('Hookshot', player)) + set_rule(world.get_entrance('Turtle Rock Big Key Door', player), lambda state: state.has('Big Key (Turtle Rock)', player)) + set_rule(world.get_entrance('Turtle Rock (Dark Room) (North)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Turtle Rock (Dark Room) (South)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_entrance('Turtle Rock (Trinexx)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4) and state.has('Big Key (Turtle Rock)', player) and state.has('Cane of Somaria', player)) + set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Prize', player)) + + set_rule(world.get_entrance('Palace of Darkness Bonk Wall', player), lambda state: state.can_shoot_arrows(player)) + set_rule(world.get_entrance('Palace of Darkness Hammer Peg Drop', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Palace of Darkness Bridge Room', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 1)) # If we can reach any other small key door, we already have back door access to this area + set_rule(world.get_entrance('Palace of Darkness Big Key Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) and state.has('Big Key (Palace of Darkness)', player) and state.can_shoot_arrows(player) and state.has('Hammer', player)) + set_rule(world.get_entrance('Palace of Darkness (North)', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 4)) + set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) + + set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) + set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + + set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) + set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) + set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) + + # these key rules are conservative, you might be able to get away with more lenient rules + randomizer_room_chests = ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'] + compass_room_chests = ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'] + + set_rule(world.get_location('Ganons Tower - Bob\'s Torch', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Ganons Tower (Tile Room)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) + + set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) + set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) + + # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. + # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. + set_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 2)) + # It is possible to need more than 3 keys .... + set_rule(world.get_entrance('Ganons Tower (Firesnake Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) + + #The actual requirements for these rooms to avoid key-lock + set_rule(world.get_location('Ganons Tower - Firesnake Room', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 2))) + for location in randomizer_room_chests: + set_rule(world.get_location(location, player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3))) + + # Once again it is possible to need more than 3 keys... + set_rule(world.get_entrance('Ganons Tower (Tile Room) Key Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) and state.has('Fire Rod', player)) + # Actual requirements + for location in compass_room_chests: + set_rule(world.get_location(location, player), lambda state: state.has('Fire Rod', player) and (state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(compass_room_chests, [player] * len(compass_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3)))) + + set_rule(world.get_location('Ganons Tower - Big Chest', player), lambda state: state.has('Big Key (Ganons Tower)', player)) + + set_rule(world.get_location('Ganons Tower - Big Key Room - Left', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Left', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Chest', player), lambda state: world.get_location('Ganons Tower - Big Key Chest', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Room - Right', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Right', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + + set_rule(world.get_entrance('Ganons Tower Big Key Door', player), lambda state: state.has('Big Key (Ganons Tower)', player) and state.can_shoot_arrows(player)) + set_rule(world.get_entrance('Ganons Tower Torch Rooms', player), lambda state: state.has_fire_source(player) and world.get_entrance('Ganons Tower Torch Rooms', player).parent_region.dungeon.bosses['middle'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Pre-Moldorm Chest', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) + set_rule(world.get_entrance('Ganons Tower Moldorm Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4)) + set_rule(world.get_entrance('Ganons Tower Moldorm Gap', player), lambda state: state.has('Hookshot', player) and world.get_entrance('Ganons Tower Moldorm Gap', player).parent_region.dungeon.bosses['top'].can_defeat(state)) + set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2', player)) + set_rule(world.get_entrance('Inverted Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player)) + for location in ['Ganons Tower - Big Chest', 'Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', + 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) + + set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has('Crystal 1', player) and state.has('Crystal 2', player) + and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player) + and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times + set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop + + 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. + + set_trock_key_rules(world, player) + + set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has('Crystal 1', player) and state.has('Crystal 2', player) and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) def no_glitches_rules(world, player): - set_rule(world.get_entrance('Zoras River', player), lambda state: state.has('Flippers', player) or state.can_lift_rocks(player)) - set_rule(world.get_entrance('Lake Hylia Central Island Pier', player), lambda state: state.has('Flippers', player)) # can be fake flippered to - set_rule(world.get_entrance('Hobo Bridge', player), lambda state: state.has('Flippers', player)) - set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) - set_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))) - set_rule(world.get_entrance('Dark Lake Hylia Ledge Drop', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) + if world.mode != 'inverted': + set_rule(world.get_entrance('Zoras River', player), lambda state: state.has('Flippers', player) or state.can_lift_rocks(player)) + set_rule(world.get_entrance('Lake Hylia Central Island Pier', player), lambda state: state.has('Flippers', player)) # can be fake flippered to + set_rule(world.get_entrance('Hobo Bridge', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) + set_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))) + set_rule(world.get_entrance('Dark Lake Hylia Ledge Drop', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) + else: + set_rule(world.get_entrance('Zoras River', player), lambda state: state.has_Pearl(player) and (state.has('Flippers', player) or state.can_lift_rocks(player))) + set_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 + set_rule(world.get_entrance('Hobo Bridge', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) + set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has('Flippers', player)) + set_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))) + set_rule(world.get_entrance('Dark Lake Hylia Ledge Drop', player), lambda state: state.has('Flippers', player)) + add_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) add_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has('Hookshot', player)) DMs_room_chests = ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', 'Ganons Tower - DMs Room - Bottom Left', 'Ganons Tower - DMs Room - Bottom Right'] @@ -465,8 +855,12 @@ def no_glitches_rules(world, player): add_conditional_lamp('Palace of Darkness Maze Door', 'Palace of Darkness (Entrance)', 'Entrance') add_conditional_lamp('Palace of Darkness - Dark Basement - Left', 'Palace of Darkness (Entrance)', 'Location') add_conditional_lamp('Palace of Darkness - Dark Basement - Right', 'Palace of Darkness (Entrance)', 'Location') - add_conditional_lamp('Agahnim 1', 'Agahnims Tower', 'Entrance') - add_conditional_lamp('Castle Tower - Dark Maze', 'Agahnims Tower', 'Location') + if world.mode != 'inverted': + add_conditional_lamp('Agahnim 1', 'Agahnims Tower', 'Entrance') + add_conditional_lamp('Castle Tower - Dark Maze', 'Agahnims Tower', 'Location') + else: + add_conditional_lamp('Agahnim 1', 'Inverted Agahnims Tower', 'Entrance') + add_conditional_lamp('Castle Tower - Dark Maze', 'Inverted Agahnims Tower', 'Location') add_conditional_lamp('Old Man', 'Old Man Cave', 'Location') add_conditional_lamp('Old Man Cave Exit (East)', 'Old Man Cave', 'Entrance') add_conditional_lamp('Death Mountain Return Cave Exit (East)', 'Death Mountain Return Cave', 'Entrance') @@ -528,12 +922,13 @@ def standard_rules(world, player): def set_trock_key_rules(world, player): - all_state = world.get_all_state(True) # First set all relevant locked doors to impassible. for entrance in ['Turtle Rock Dark Room Staircase', 'Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)', 'Turtle Rock Pokey Room']: set_rule(world.get_entrance(entrance, player), lambda state: False) + all_state = world.get_all_state(True) + # Check if each of the four main regions of the dungoen can be reached. The previous code section prevents key-costing moves within the dungeon. can_reach_back = all_state.can_reach(world.get_region('Turtle Rock (Eye Bridge)', player)) if world.can_access_trock_eyebridge is None else world.can_access_trock_eyebridge world.can_access_trock_eyebridge = can_reach_back @@ -840,6 +1235,176 @@ def set_big_bomb_rules(world, player): # -> (M and Mitts) or ((Mitts or Flute or (M and P and West Dark World access)) and BR) add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and state.has_Mirror(player)) or ((state.can_lift_heavy_rocks(player) or state.has('Ocarina', player) or (state.can_reach('West Dark World', 'Region', player) and state.has_Pearl(player) and state.has_Mirror(player))) and basic_routes(state))) +def set_inverted_big_bomb_rules(world, player): + bombshop_entrance = world.get_region('Inverted Big Bomb Shop', player).entrances[0] + Normal_LW_entrances = ['Blinds Hideout', + 'Bonk Fairy (Light)', + 'Lake Hylia Fairy', + 'Light Hype Fairy', + 'Desert Fairy', + 'Chicken House', + 'Aginahs Cave', + 'Sahasrahlas Hut', + 'Cave Shop (Lake Hylia)', + 'Blacksmiths Hut', + 'Sick Kids House', + 'Lost Woods Gamble', + 'Fortune Teller (Light)', + 'Snitch Lady (East)', + 'Snitch Lady (West)', + 'Bush Covered House', + 'Tavern (Front)', + 'Light World Bomb Hut', + 'Kakariko Shop', + 'Mini Moldorm Cave', + 'Long Fairy Cave', + 'Good Bee Cave', + '20 Rupee Cave', + '50 Rupee Cave', + 'Ice Rod Cave', + 'Bonk Rock Cave', + 'Library', + 'Potion Shop', + 'Waterfall of Wishing', + 'Dam', + 'Lumberjack House', + 'Lake Hylia Fortune Teller', + 'Eastern Palace', + 'Kakariko Gamble Game', + 'Kakariko Well Cave', + 'Bat Cave Cave', + 'Elder House (East)', + 'Elder House (West)', + 'North Fairy Cave', + 'Lost Woods Hideout Stump', + 'Lumberjack Tree Cave', + 'Two Brothers House (East)', + 'Sanctuary', + 'Hyrule Castle Entrance (South)', + 'Hyrule Castle Secret Entrance Stairs'] + LW_walkable_entrances = ['Dark Lake Hylia Ledge Fairy', + 'Dark Lake Hylia Ledge Spike Cave', + 'Dark Lake Hylia Ledge Hint', + 'Mire Shed', + 'Dark Desert Hint', + 'Dark Desert Fairy', + 'Misery Mire'] + Northern_DW_entrances = ['Brewery', + 'C-Shaped House', + 'Chest Game', + 'Dark World Hammer Peg Cave', + 'Red Shield Shop', + 'Dark Sanctuary Hint', + 'Fortune Teller (Dark)', + 'Dark World Shop', + 'Dark World Lumberjack Shop', + 'Thieves Town', + 'Skull Woods First Section Door', + 'Skull Woods Second Section Door (East)'] + Southern_DW_entrances = ['Hype Cave', + 'Bonk Fairy (Dark)', + 'Archery Game', + 'Inverted Big Bomb Shop', + 'Dark Lake Hylia Shop', + 'Swamp Palace'] + Isolated_DW_entrances = ['Spike Cave', + 'Cave Shop (Dark Death Mountain)', + 'Dark Death Mountain Fairy', + 'Mimic Cave', + 'Skull Woods Second Section Door (West)', + 'Skull Woods Final Section', + 'Ice Palace', + 'Turtle Rock', + 'Dark Death Mountain Ledge (West)', + 'Dark Death Mountain Ledge (East)', + 'Bumper Cave (Top)', + 'Superbunny Cave (Top)', + 'Superbunny Cave (Bottom)', + 'Hookshot Cave', + 'Turtle Rock Isolated Ledge Entrance', + 'Hookshot Cave Back Entrance', + 'Inverted Ganons Tower'] + Isolated_LW_entrances = ['Capacity Upgrade', + 'Tower of Hera', + 'Death Mountain Return Cave (West)', + 'Paradox Cave (Top)', + 'Fairy Ascension Cave (Top)', + 'Spiral Cave', + 'Desert Palace Entrance (East)'] + West_LW_DM_entrances = ['Old Man Cave (East)', + 'Old Man House (Bottom)', + 'Old Man House (Top)', + 'Death Mountain Return Cave (East)', + 'Spectacle Rock Cave Peak', + 'Spectacle Rock Cave', + 'Spectacle Rock Cave (Bottom)'] + East_LW_DM_entrances = ['Paradox Cave (Bottom)', + 'Paradox Cave (Middle)', + 'Hookshot Fairy', + 'Spiral Cave (Bottom)'] + Mirror_from_SDW_entrances = ['Two Brothers House (West)', + 'Cave 45'] + Castle_ledge_entrances = ['Hyrule Castle Entrance (West)', + 'Hyrule Castle Entrance (East)', + 'Inverted Ganons Tower'] + Desert_mirrorable_ledge_entrances = ['Desert Palace Entrance (West)', + 'Desert Palace Entrance (North)', + 'Desert Palace Entrance (South)', + 'Checkerboard Cave',] + Desert_ledge_entrances = ['Desert Palace Entrance (West)', + 'Desert Palace Entrance (North)', + 'Desert Palace Entrance (South)'] + + 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 + def cross_peg_bridge(state): + return state.has('Hammer', player) + + # Key for below abbreviations: + # P = pearl + # A = Aga1 + # H = hammer + # M = Mirror + # G = Glove + if bombshop_entrance.name in Normal_LW_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) + elif bombshop_entrance.name in LW_walkable_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player)) + elif bombshop_entrance.name in Northern_DW_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute or (state.can_lift_heavy_rocks(player) and (cross_peg_bridge(state) or (state.has_Mirror(player) and state.has('Beat Agahnim 1', player))))) + elif bombshop_entrance.name == 'Bumper Cave (Bottom)': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute or (state.can_lift_heavy_rocks(player) and (cross_peg_bridge(state) or state.has_Mirror(player) and state.has('Beat Agahnim 1', player)))) + elif bombshop_entrance.name in Southern_DW_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: cross_peg_bridge(state) or state.can_flute(player) or (state.has_Mirror(player) and state.has('Beat Agahnim 1', player))) + elif bombshop_entrance.name in Isolated_DW_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player)) + elif bombshop_entrance.name in Isolated_LW_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) + elif bombshop_entrance.name in West_LW_DM_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) + elif bombshop_entrance.name in East_LW_DM_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) + elif bombshop_entrance.name == 'Fairy Ascension Cave (Bottom)': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) + elif bombshop_entrance.name in Castle_ledge_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) + elif bombshop_entrance.name in Desert_ledge_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and state.can_flute(player)) + elif bombshop_entrance.name == 'Checkerboard Cave': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) + elif bombshop_entrance.name == 'Old Man Cave (West)': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and ((state.can_lift_rocks(player) and cross_peg_bridge(state)) or state.can_flute(player))) + elif bombshop_entrance.name == 'Graveyard Cave': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) + elif bombshop_entrance.name in Mirror_from_SDW_entrances: + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and (state.can_flute(player) or cross_peg_bridge(state))) + elif bombshop_entrance.name == 'Dark World Potion Shop': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) or state.has('Hammer', player) or state.can_lift_rocks(player)) + elif bombshop_entrance.name == 'Kings Grave': + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_lift_heavy_rocks(player) and state.has_Mirror(player)) + + def set_bunny_rules(world, player): # regions for the exits of multi-entrace caves/drops that bunny cannot pass @@ -910,3 +1475,76 @@ def set_bunny_rules(world, player): continue add_rule(location, get_rule_to_add(location.parent_region)) + +def set_inverted_bunny_rules(world, player): + + # regions for the exits of multi-entrace caves/drops that bunny cannot pass + # 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', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Top)', 'Turtle Rock (Entrance)', 'Turtle Rock (Second Section)', 'Turtle Rock (Big Chest)', 'Skull Woods Second Section (Drop)', + 'Turtle Rock (Eye Bridge)', 'Sewers', 'Pyramid', 'Spiral Cave (Top)', 'Desert Palace Main (Inner)', 'Fairy Ascension Cave (Drop)', 'The Sky'] + + bunny_accessible_locations = ['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'] + + + def path_to_access_rule(path, entrance): + return lambda state: state.can_reach(entrance) and all(rule(state) for rule in path) + + def options_to_access_rule(options): + return lambda state: any(rule(state) for rule in options) + + def get_rule_to_add(region): + if not region.is_dark_world: + return lambda state: state.has_Pearl(player) + # in this case we are mixed region. + # we collect possible options. + + # The base option is having the moon pearl + possible_options = [lambda state: state.has_Pearl(player)] + + # We will search entrances recursively until we find + # one that leads to an exclusively dark world region + # for each such entrance a new option is added that consist of: + # a) being able to reach it, and + # b) being able to access all entrances from there to `region` + seen = set([region]) + queue = collections.deque([(region, [])]) + while queue: + (current, path) = queue.popleft() + for entrance in current.entrances: + new_region = entrance.parent_region + if new_region in seen: + continue + new_path = path + [entrance.access_rule] + seen.add(new_region) + if not new_region.is_dark_world: + continue # we don't care about pure light world entrances + if new_region.is_light_world: + queue.append((new_region, new_path)) + else: + # we have reached pure dark world, so we have a new possible option + possible_options.append(path_to_access_rule(new_path, entrance)) + return options_to_access_rule(possible_options) + + # Add requirements for bunny-impassible caves if they occur in the light world + for region in [world.get_region(name, player) for name in bunny_impassable_caves]: + + if not region.is_light_world: + continue + rule = get_rule_to_add(region) + for exit in region.exits: + add_rule(exit, rule) + + paradox_shop = world.get_region('Light World Death Mountain Shop', player) + if paradox_shop.is_light_world: + add_rule(paradox_shop.entrances[0], get_rule_to_add(paradox_shop)) + + # Add requirements for all locations that are actually in the light world, except those available to the bunny + for location in world.get_locations(): + if location.player == player and location.parent_region.is_light_world: + + if location.name in bunny_accessible_locations: + continue + + add_rule(location, get_rule_to_add(location.parent_region)) + + diff --git a/Text.py b/Text.py index 22b2e044..b8baba83 100644 --- a/Text.py +++ b/Text.py @@ -25,7 +25,8 @@ Uncle_texts = [ 'Forward this message to 10 other people or this seed will be awful.', 'I hope you like your seeds bootless and fluteless.', '10\n9\n8\n7\n6\n5\n4\n3\n2\n1\nGo!', - 'I\'m off to visit cousin Fritzl.' + 'I\'m off to visit cousin Fritzl.', + 'Don\'t forget to check Antlion Cave.' ] * 2 + [ "We're out of\nWeetabix. To\nthe store!", "This seed is\nbootless\nuntil boots.", From 90e5f522d81f99b026c6c9b03362e8fdbac5bf47 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 25 Jul 2019 18:25:14 -0400 Subject: [PATCH 015/185] Partially implement variable crystal requirements --- BaseClasses.py | 6 ++ Rom.py | 225 +++++++++++++++++++++++++------------------------ Rules.py | 10 +-- 3 files changed, 124 insertions(+), 117 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 2466a3b7..09fdba1d 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -71,6 +71,8 @@ class World(object): self.fix_fake_world = True self.boss_shuffle = boss_shuffle self.hints = hints + self.crystals_needed_for_ganon = 7 + self.crystals_needed_for_gt = 7 self.dynamic_regions = [] self.dynamic_locations = [] self.spoiler = Spoiler(self) @@ -367,6 +369,10 @@ class CollectionState(object): def item_count(self, item, player): return self.prog_items.count((item, player)) + def has_crystals(self, count, player): + crystals = ['Crystal 1', 'Crystal 2', 'Crystal 3', 'Crystal 4', 'Crystal 5', 'Crystal 6', 'Crystal 7'] + return len([crystal for crystal in crystals if self.has(crystal, player)]) >= count + def can_lift_rocks(self, player): return self.has('Power Glove', player) or self.has('Titans Mitts', player) diff --git a/Rom.py b/Rom.py index c425169c..066897fe 100644 --- a/Rom.py +++ b/Rom.py @@ -929,6 +929,9 @@ def patch_rom(world, player, rom): else: rom.write_byte(0x18003E, 0x03) # make ganon invincible until all crystals and aga 2 are collected + rom.write_byte(0x18005E, world.crystals_needed_for_gt) + rom.write_byte(0x18005F, world.crystals_needed_for_ganon) + rom.write_byte(0x18016A, 0x01 if world.keysanity else 0x00) # free roaming item text boxes rom.write_byte(0x18003B, 0x01 if world.keysanity else 0x00) # maps showing crystals on overworld @@ -1739,114 +1742,114 @@ InsanityEntrances = {'Sanctuary': 'Sanctuary', 'Hookshot Cave Back Entrance': 'The stairs on the floating island' } -HintLocations = ['telepathic_tile_eastern_palace', - 'telepathic_tile_tower_of_hera_floor_4', - 'telepathic_tile_spectacle_rock', - 'telepathic_tile_swamp_entrance', - 'telepathic_tile_thieves_town_upstairs', - 'telepathic_tile_misery_mire', - 'telepathic_tile_palace_of_darkness', - 'telepathic_tile_desert_bonk_torch_room', - 'telepathic_tile_castle_tower', - 'telepathic_tile_ice_large_room', - 'telepathic_tile_turtle_rock', - 'telepathic_tile_ice_entrace', - 'telepathic_tile_ice_stalfos_knights_room', - 'telepathic_tile_tower_of_hera_entrance', - 'telepathic_tile_south_east_darkworld_cave', - 'dark_palace_tree_dude', - 'dark_sanctuary_hint_0', - 'dark_sanctuary_hint_1', - 'dark_sanctuary_yes', - 'dark_sanctuary_hint_2'] - -InconvenientLocations = ['Spike Cave', - 'Sahasrahla', - 'Purple Chest', - 'Swamp Left', - 'Mire Left', - 'Tower of Hera - Big Key Chest', - 'Eastern Palace - Big Key Chest', - 'Thieves\' Town - Big Chest', - 'Ice Palace - Big Chest', - 'Ganons Tower - Big Chest', - 'Magic Bat'] -RelevantItems = ['Bow', - 'Book of Mudora', - 'Hammer', - 'Hookshot', - 'Magic Mirror', - 'Ocarina', - 'Pegasus Boots', - 'Power Glove', - 'Cape', - 'Mushroom', - 'Shovel', - 'Lamp', - 'Magic Powder', - 'Moon Pearl', - 'Cane of Somaria', - 'Fire Rod', - 'Flippers', - 'Ice Rod', - 'Titans Mitts', - 'Ether', - 'Bombos', - 'Quake', - 'Bottle', - 'Bottle (Red Potion)', - 'Bottle (Green Potion)', - 'Bottle (Blue Potion)', - 'Bottle (Fairy)', - 'Bottle (Bee)', - 'Bottle (Good Bee)', - 'Master Sword', - 'Tempered Sword', - 'Fighter Sword', - 'Golden Sword', - 'Progressive Sword', - 'Progressive Glove', - 'Master Sword', - 'Power Star', - 'Triforce Piece', - 'Single Arrow', - 'Blue Mail', - 'Red Mail', - 'Progressive Armor', - 'Blue Boomerang', - 'Red Boomerang', - 'Blue Shield', - 'Red Shield', - 'Mirror Shield', - 'Progressive Shield', - 'Bug Catching Net', - 'Cane of Byrna', - 'Magic Upgrade (1/2)', - 'Magic Upgrade (1/4)' - ] - -KeysanityItems = ['Small Key (Eastern Palace)', - 'Big Key (Eastern Palace)', - 'Small Key (Escape)', - 'Small Key (Desert Palace)', - 'Big Key (Desert Palace)', - 'Small Key (Tower of Hera)', - 'Big Key (Tower of Hera)', - 'Small Key (Agahnims Tower)', - 'Small Key (Palace of Darkness)', - 'Big Key (Palace of Darkness)', - 'Small Key (Thieves Town)', - 'Big Key (Thieves Town)', - 'Small Key (Swamp Palace)', - 'Big Key (Swamp Palace)', - 'Small Key (Skull Woods)', - 'Big Key (Skull Woods)', - 'Small Key (Ice Palace)', - 'Big Key (Ice Palace)', - 'Small Key (Misery Mire)', - 'Big Key (Misery Mire)', - 'Small Key (Turtle Rock)', - 'Big Key (Turtle Rock)', - 'Small Key (Ganons Tower)', - 'Big Key (Ganons Tower)' - ] +HintLocations = ['telepathic_tile_eastern_palace', + 'telepathic_tile_tower_of_hera_floor_4', + 'telepathic_tile_spectacle_rock', + 'telepathic_tile_swamp_entrance', + 'telepathic_tile_thieves_town_upstairs', + 'telepathic_tile_misery_mire', + 'telepathic_tile_palace_of_darkness', + 'telepathic_tile_desert_bonk_torch_room', + 'telepathic_tile_castle_tower', + 'telepathic_tile_ice_large_room', + 'telepathic_tile_turtle_rock', + 'telepathic_tile_ice_entrace', + 'telepathic_tile_ice_stalfos_knights_room', + 'telepathic_tile_tower_of_hera_entrance', + 'telepathic_tile_south_east_darkworld_cave', + 'dark_palace_tree_dude', + 'dark_sanctuary_hint_0', + 'dark_sanctuary_hint_1', + 'dark_sanctuary_yes', + 'dark_sanctuary_hint_2'] + +InconvenientLocations = ['Spike Cave', + 'Sahasrahla', + 'Purple Chest', + 'Swamp Left', + 'Mire Left', + 'Tower of Hera - Big Key Chest', + 'Eastern Palace - Big Key Chest', + 'Thieves\' Town - Big Chest', + 'Ice Palace - Big Chest', + 'Ganons Tower - Big Chest', + 'Magic Bat'] +RelevantItems = ['Bow', + 'Book of Mudora', + 'Hammer', + 'Hookshot', + 'Magic Mirror', + 'Ocarina', + 'Pegasus Boots', + 'Power Glove', + 'Cape', + 'Mushroom', + 'Shovel', + 'Lamp', + 'Magic Powder', + 'Moon Pearl', + 'Cane of Somaria', + 'Fire Rod', + 'Flippers', + 'Ice Rod', + 'Titans Mitts', + 'Ether', + 'Bombos', + 'Quake', + 'Bottle', + 'Bottle (Red Potion)', + 'Bottle (Green Potion)', + 'Bottle (Blue Potion)', + 'Bottle (Fairy)', + 'Bottle (Bee)', + 'Bottle (Good Bee)', + 'Master Sword', + 'Tempered Sword', + 'Fighter Sword', + 'Golden Sword', + 'Progressive Sword', + 'Progressive Glove', + 'Master Sword', + 'Power Star', + 'Triforce Piece', + 'Single Arrow', + 'Blue Mail', + 'Red Mail', + 'Progressive Armor', + 'Blue Boomerang', + 'Red Boomerang', + 'Blue Shield', + 'Red Shield', + 'Mirror Shield', + 'Progressive Shield', + 'Bug Catching Net', + 'Cane of Byrna', + 'Magic Upgrade (1/2)', + 'Magic Upgrade (1/4)' + ] + +KeysanityItems = ['Small Key (Eastern Palace)', + 'Big Key (Eastern Palace)', + 'Small Key (Escape)', + 'Small Key (Desert Palace)', + 'Big Key (Desert Palace)', + 'Small Key (Tower of Hera)', + 'Big Key (Tower of Hera)', + 'Small Key (Agahnims Tower)', + 'Small Key (Palace of Darkness)', + 'Big Key (Palace of Darkness)', + 'Small Key (Thieves Town)', + 'Big Key (Thieves Town)', + 'Small Key (Swamp Palace)', + 'Big Key (Swamp Palace)', + 'Small Key (Skull Woods)', + 'Big Key (Skull Woods)', + 'Small Key (Ice Palace)', + 'Big Key (Ice Palace)', + 'Small Key (Misery Mire)', + 'Big Key (Misery Mire)', + 'Small Key (Turtle Rock)', + 'Big Key (Turtle Rock)', + 'Small Key (Ganons Tower)', + 'Big Key (Ganons Tower)' + ] diff --git a/Rules.py b/Rules.py index 17b6f4e9..6d2d7767 100644 --- a/Rules.py +++ b/Rules.py @@ -43,7 +43,7 @@ def set_rules(world, player): if world.goal == 'dungeons': # require all dungeons to beat ganon - add_rule(world.get_location('Ganon', player), lambda state: state.can_reach('Master Sword Pedestal', 'Location', player) and state.has('Beat Agahnim 1', player) and state.has('Beat Agahnim 2', player)) + add_rule(world.get_location('Ganon', player), lambda state: state.can_reach('Master Sword Pedestal', 'Location', player) and state.has('Beat Agahnim 1', player) and state.has('Beat Agahnim 2', player) and state.has_crystals(7, player)) elif world.goal == 'ganon': # require aga2 to beat ganon add_rule(world.get_location('Ganon', player), lambda state: state.has('Beat Agahnim 2', player)) @@ -427,8 +427,7 @@ def global_rules(world, player): 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) - set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has('Crystal 1', player) and state.has('Crystal 2', player) - and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player) + set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon, player) and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop @@ -436,7 +435,7 @@ def global_rules(world, player): set_trock_key_rules(world, player) - set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has('Crystal 1', player) and state.has('Crystal 2', player) and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) + set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) def inverted_rules(world, player): world.get_location('Ganon', player).item_rule = lambda item: item.name == 'Triforce' and item.player == player @@ -901,8 +900,7 @@ def swordless_rules(world, player): 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('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player)) # no curtain set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.has('Fire Rod', player) or state.has('Bombos', player)) #in swordless mode bombos pads are present in the relevant parts of ice palace - set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has('Crystal 1', player) and state.has('Crystal 2', player) - and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) + set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has_crystals(world.crystals_needed_for_ganon, player)) set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has('Hammer', player)) # need to damage ganon to get tiles to drop From 8fb89971e54b137ce930fac097dbfb2f90266efc Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Thu, 25 Jul 2019 18:25:58 -0400 Subject: [PATCH 016/185] Fix standard mode --- Rom.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Rom.py b/Rom.py index 066897fe..b0064570 100644 --- a/Rom.py +++ b/Rom.py @@ -931,6 +931,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x18005E, world.crystals_needed_for_gt) rom.write_byte(0x18005F, world.crystals_needed_for_ganon) + rom.write_byte(0x18008A, 0x01 if world.mode == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode rom.write_byte(0x18016A, 0x01 if world.keysanity else 0x00) # free roaming item text boxes rom.write_byte(0x18003B, 0x01 if world.keysanity else 0x00) # maps showing crystals on overworld From d4f1bb7091d1022e4a2031f742e97fe7c2f5114d Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 4 Aug 2019 11:37:44 -0400 Subject: [PATCH 017/185] Implement V31 prize packs --- Rom.py | 35 ++++++++++++----------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/Rom.py b/Rom.py index b0064570..f4354731 100644 --- a/Rom.py +++ b/Rom.py @@ -697,6 +697,18 @@ def patch_rom(world, player, rom): 0xDF, 0xDF, 0xDF, 0xDF, 0xDF, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE1, 0xE1, 0xE1, 0xE1, 0xE1, 0xE2, 0xE2, 0xE2, 0xE2, 0xE2, 0xE3, 0xE3, 0xE3, 0xE3, 0xE3] + + def chunk(l,n): + return [l[i:i+n] for i in range(0, len(l), n)] + + # randomize last 7 slots + prizes [-7:] = random.sample(prizes, 7) + + #shuffle order of 7 main packs + packs = chunk(prizes[:56], 8) + random.shuffle(packs) + prizes[:56] = [drop for pack in packs for drop in pack] + if world.difficulty in ['hard', 'expert', 'insane']: prize_replacements = {0xE0: 0xDF, # Fairy -> heart 0xE3: 0xD8} # Big magic -> small magic @@ -709,7 +721,6 @@ def patch_rom(world, player, rom): prizes = [prize_replacements.get(prize, prize) for prize in prizes] dig_prizes = [prize_replacements.get(prize, prize) for prize in dig_prizes] rom.write_bytes(0x180100, dig_prizes) - random.shuffle(prizes) # write tree pull prizes rom.write_byte(0xEFBD4, prizes.pop()) @@ -729,28 +740,6 @@ def patch_rom(world, player, rom): # fill enemy prize packs rom.write_bytes(0x37A78, prizes) - # prize pack drop chances - if world.difficulty in ['hard', 'expert', 'insane']: - droprates = [0x01, 0x02, 0x03, 0x03, 0x03, 0x04, 0x04] # 50%, 25%, 3* 12.5%, 2* 6.25% - else: - droprates = [0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01] # 50% - - random.shuffle(droprates) - rom.write_bytes(0x37A62, droprates) - - vanilla_prize_pack_assignment = [131, 150, 132, 128, 128, 128, 128, 128, 2, 0, 2, 128, 160, 131, 151, 128, 128, 148, 145, 7, 0, 128, 0, 128, 146, 150, 128, 160, 0, 0, 0, 128, 4, 128, - 130, 6, 6, 0, 0, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 0, 0, 128, 128, 144, 128, 145, 145, - 145, 151, 145, 149, 149, 147, 151, 20, 145, 146, 129, 130, 130, 128, 133, 128, 128, 128, 4, 4, 128, 145, 128, 128, 128, 128, 128, 128, 128, 128, 0, 128, - 128, 130, 138, 128, 128, 128, 128, 146, 145, 128, 130, 129, 129, 128, 129, 128, 128, 128, 128, 128, 128, 128, 128, 128, 128, 151, 128, 128, 128, 128, 194, - 128, 21, 21, 23, 6, 0, 128, 0, 192, 19, 64, 0, 2, 6, 16, 20, 0, 0, 64, 0, 0, 0, 0, 19, 70, 17, 128, 128, 0, 0, 0, 16, 0, 0, 0, 22, 22, 22, 129, 135, 130, - 0, 128, 128, 0, 0, 0, 0, 128, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 23, 0, 18, 0, 0, 0, 0, 0, 16, 23, 0, 64, 1, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0] - - # shuffle enemies to prize packs - for i in range(243): - if vanilla_prize_pack_assignment[i] & 0x0F != 0x00: - rom.write_byte(0x6B632 + i, (vanilla_prize_pack_assignment[i] & 0xF0) | random.randint(1, 7)) - # set bonk prizes bonk_prizes = [0x79, 0xE3, 0x79, 0xAC, 0xAC, 0xE0, 0xDC, 0xAC, 0xE3, 0xE3, 0xDA, 0xE3, 0xDA, 0xD8, 0xAC, 0xAC, 0xE3, 0xD8, 0xE3, 0xE3, 0xE3, 0xE3, 0xE3, 0xE3, 0xDC, 0xDB, 0xE3, 0xDA, 0x79, 0x79, 0xE3, 0xE3, 0xDA, 0x79, 0xAC, 0xAC, 0x79, 0xE3, 0x79, 0xAC, 0xAC, 0xE0, 0xDC, 0xE3, 0x79, 0xDE, 0xE3, 0xAC, 0xDB, 0x79, 0xE3, 0xD8, 0xAC, 0x79, 0xE3, 0xDB, 0xDB, 0xE3, 0xE3, 0x79, 0xD8, 0xDD] From b0f4fa8cec3fdd61c5efb29a4b5b3e4176e620de Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 4 Aug 2019 12:32:35 -0400 Subject: [PATCH 018/185] Partial implementation of many V31 features Partial support for Progressive bow - Still needs to be added to item pool - Silver hint handling remains TBD even for VT Added weapons selection. - Vanilla needs to be implemented - Assured needs to be implemented - Inverted swordless is almost certainly messed up. - Swordless standard mode will likely softlock - Random weapon standard mode is currently treated as uncle assured Deleted removed difficulties - Remaining difficulties still need to be adjusted Added locked property to locations: - This is used for preplaced items etc so that multiworld balancing knows they cannot be moved. Made a few of the difficulty changes from V31, but not all. Added required text changes to handle crystals requirements - More changes will likely me made in future - Currently there is is no way to tell ganon requirement in Inverted mode --- .gitignore | 1 + BaseClasses.py | 39 ++++++++++++- Bosses.py | 12 ++-- Dungeons.py | 21 ++++--- EntranceRandomizer.py | 26 +++++---- Fill.py | 5 +- Gui.py | 4 +- ItemList.py | 130 ++++++++++-------------------------------- Items.py | 1 + Main.py | 6 +- README.md | 13 +---- Rom.py | 75 +++++++----------------- Rules.py | 16 ++---- Text.py | 2 + _vendor/__init__.py | 0 15 files changed, 143 insertions(+), 208 deletions(-) create mode 100644 _vendor/__init__.py diff --git a/.gitignore b/.gitignore index 65c35fa8..c4ce894b 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ README.html *multidata *multisave EnemizerCLI/ +.mypy_cache/ \ No newline at end of file diff --git a/BaseClasses.py b/BaseClasses.py index 09fdba1d..7bca192d 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -8,11 +8,12 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, players, shuffle, logic, mode, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): + def __init__(self, players, shuffle, logic, mode, swords, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): self.players = players self.shuffle = shuffle self.logic = logic self.mode = mode + self.swords = swords self.difficulty = difficulty self.timer = timer self.progressive = progressive @@ -161,6 +162,13 @@ class World(object): ret.prog_items.add(('Red Shield', item.player)) elif self.difficulty_requirements.progressive_shield_limit >= 1: ret.prog_items.add(('Blue Shield', item.player)) + elif 'Bow' in item.name: + if ret.has('Silver Arrows', item.player): + pass + elif ret.has('Bow', item.player): + ret.prog_items.add(('Silver Arrows', item.player)) + else: + ret.prog_items.add(('Bow', item.player)) elif item.name.startswith('Bottle'): if ret.bottle_count(item.player) < self.difficulty_requirements.progressive_bottle_limit: ret.prog_items.add((item.name, item.player)) @@ -409,8 +417,6 @@ class CollectionState(object): basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count(player)) elif self.world.difficulty == 'expert' and not fullrefill: basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count(player)) - elif self.world.difficulty == 'insane' and not fullrefill: - basemagic = basemagic else: basemagic = basemagic + basemagic * self.bottle_count(player) return basemagic >= smallmagic @@ -524,6 +530,15 @@ class CollectionState(object): elif self.world.difficulty_requirements.progressive_shield_limit >= 1: self.prog_items.add(('Blue Shield', item.player)) changed = True + elif 'Bow' in item.name: + if self.has('Silver Arrows', item.player): + pass + elif self.has('Bow', item.player): + self.prog_items.add(('Silver Arrows', item.player)) + changed = True + else: + self.prog_items.add(('Bow', item.player)) + changed = True elif item.name.startswith('Bottle'): if self.bottle_count(item.player) < self.world.difficulty_requirements.progressive_bottle_limit: self.prog_items.add((item.name, item.player)) @@ -560,6 +575,22 @@ class CollectionState(object): to_remove = 'Power Glove' else: to_remove = None + elif 'Shield' in item.name: + if self.has('Mirror Shield', item.player): + to_remove = 'Mirror Shield' + elif self.has('Red Shield', item.player): + to_remove = 'Red Shield' + elif self.has('Blue Shield', item.player): + to_remove = 'Blue Shield' + else: + to_remove = 'None' + elif 'Bow' in item.name: + if self.has('Silver Arrows', item.player): + to_remove = 'Silver Arrows' + elif self.has('Bow', item.player): + to_remove = 'Bow' + else: + to_remove = None if to_remove is not None: try: @@ -742,6 +773,7 @@ class Location(object): self.recursion_count = 0 self.staleness_count = 0 self.event = False + self.locked = True self.always_allow = lambda item, state: False self.access_rule = lambda state: True self.item_rule = lambda item: True @@ -975,6 +1007,7 @@ class Spoiler(object): 'seed': self.world.seed, 'logic': self.world.logic, 'mode': self.world.mode, + 'swords': self.world.swords, 'goal': self.world.goal, 'shuffle': self.world.shuffle, 'algorithm': self.world.algorithm, diff --git a/Bosses.py b/Bosses.py index 43072966..8cdaee5a 100644 --- a/Bosses.py +++ b/Bosses.py @@ -72,18 +72,18 @@ def KholdstareDefeatRule(state, player): state.has('Fire Rod', player) or ( state.has('Bombos', player) and - # FIXME: the following only actually works for the vanilla location for swordless mode - (state.has_sword(player) or state.world.mode == 'swordless') + # FIXME: the following only actually works for the vanilla location for swordless + (state.has_sword(player) or state.world.swords == 'swordless') ) ) and ( state.has_blunt_weapon(player) or (state.has('Fire Rod', player) and state.can_extend_magic(player, 20)) or - # FIXME: this actually only works for the vanilla location for swordless mode + # FIXME: this actually only works for the vanilla location for swordless ( state.has('Fire Rod', player) and state.has('Bombos', player) and - state.world.mode == 'swordless' and + state.world.swords == 'swordless' and state.can_extend_magic(player, 16) ) ) @@ -116,7 +116,7 @@ boss_table = { } def can_place_boss(world, boss, dungeon_name, level=None): - if world.mode in ['swordless'] and boss == 'Kholdstare' and dungeon_name != 'Ice Palace': + if world.swords in ['swordless'] and boss == 'Kholdstare' and dungeon_name != 'Ice Palace': return False if dungeon_name == 'Ganons Tower' and level == 'top': @@ -161,7 +161,7 @@ def place_bosses(world, player): if world.boss_shuffle in ["basic", "normal"]: # temporary hack for swordless kholdstare: - if world.mode == 'swordless': + if world.swords == 'swordless': world.get_dungeon('Ice Palace', player).boss = BossFactory('Kholdstare', player) logging.getLogger('').debug('Placing boss Kholdstare at Ice Palace') boss_locations.remove(['Ice Palace', None]) diff --git a/Dungeons.py b/Dungeons.py index 12592af7..3e412f70 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -46,11 +46,13 @@ def fill_dungeons(world): all_state_base = world.get_all_state() for player in range(1, world.players + 1): + pinball_room = world.get_location('Skull Woods - Pinball Room', player) if world.retro: - world.push_item(world.get_location('Skull Woods - Pinball Room', player), ItemFactory('Small Key (Universal)', player), False) + world.push_item(pinball_room, ItemFactory('Small Key (Universal)', player), False) else: - world.push_item(world.get_location('Skull Woods - Pinball Room', player), ItemFactory('Small Key (Skull Woods)', player), False) - world.get_location('Skull Woods - Pinball Room', player).event = True + world.push_item(pinball_room, ItemFactory('Small Key (Skull Woods)', player), False) + pinball_room.event = True + pinball_room.locked = True dungeons = [(list(dungeon.regions), dungeon.big_key, list(dungeon.small_keys), list(dungeon.dungeon_items)) for dungeon in world.dungeons] @@ -77,6 +79,7 @@ def fill_dungeons(world): world.push_item(bk_location, big_key, False) bk_location.event = True + bk_location.locked = True dungeon_locations.remove(bk_location) big_key = None @@ -102,6 +105,7 @@ def fill_dungeons(world): world.push_item(sk_location, small_key, False) sk_location.event = True + sk_location.locked = True dungeon_locations.remove(sk_location) if small_keys: @@ -122,13 +126,14 @@ def fill_dungeons_restrictive(world, shuffled_locations): all_state_base = world.get_all_state() for player in range(1, world.players + 1): - skull_woods_big_chest = world.get_location('Skull Woods - Pinball Room', player) + pinball_room = world.get_location('Skull Woods - Pinball Room', player) if world.retro: - world.push_item(skull_woods_big_chest, ItemFactory('Small Key (Universal)', player), False) + world.push_item(pinball_room, ItemFactory('Small Key (Universal)', player), False) else: - world.push_item(skull_woods_big_chest, ItemFactory('Small Key (Skull Woods)', player), False) - skull_woods_big_chest.event = True - shuffled_locations.remove(skull_woods_big_chest) + world.push_item(pinball_room, ItemFactory('Small Key (Skull Woods)', player), False) + pinball_room.event = True + pinball_room.locked = True + shuffled_locations.remove(pinball_room) if world.keysanity: #in keysanity dungeon items are distributed as part of the normal item pool diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 48127426..47efc450 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -28,7 +28,7 @@ def start(): No Logic: Distribute items without regard for item requirements. ''') - parser.add_argument('--mode', default='open', const='open', nargs='?', choices=['standard', 'open', 'swordless', 'inverted'], + parser.add_argument('--mode', default='open', const='open', nargs='?', choices=['standard', 'open', 'inverted'], help='''\ Select game mode. (default: %(default)s) Open: World starts with Zelda rescued. @@ -36,17 +36,25 @@ def start(): but may lead to weird rain state issues if you exit through the Hyrule Castle side exits before rescuing Zelda in a full shuffle. - Swordless: Like Open, but with no swords. Curtains in - Skull Woods and Agahnims Tower are removed, - Agahnim\'s Tower barrier can be destroyed with - hammer. Misery Mire and Turtle Rock can be opened - without a sword. Hammer damages Ganon. Ether and - Bombos Tablet can be activated with Hammer (and Book). Inverted: Starting locations are Dark Sanctuary in West Dark World or at Link's House, which is shuffled freely. Requires the moon pearl to be Link in the Light World instead of a bunny. ''') + parser.add_argument('--swords', default='random', const='random', nargs='?', choices= ['random', 'assured', 'swordless', 'vanilla'], + help='''\ + Select sword placement. (default: %(default)s) + Random: All swords placed randomly. + Assured: Start game with a sword already. + Swordless: No swords. Curtains in Skull Woods and Agahnim\'s + Tower are removed, Agahnim\'s Tower barrier can be + destroyed with hammer. Misery Mire and Turtle Rock + can be opened without a sword. Hammer damages Ganon. + Ether and Bombos Tablet can be activated with Hammer + (and Book). Bombos pads have been added in Ice + Palace, to allow for an alternative to firerod. + Vanilla: Swords are in vanilla locations. + ''') parser.add_argument('--goal', default='ganon', const='ganon', nargs='?', choices=['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'], help='''\ Select completion goal. (default: %(default)s) @@ -59,14 +67,12 @@ def start(): Triforce Hunt: Places 30 Triforce Pieces in the world, collect 20 of them to beat the game. ''') - parser.add_argument('--difficulty', default='normal', const='normal', nargs='?', choices=['easy', 'normal', 'hard', 'expert', 'insane'], + parser.add_argument('--difficulty', default='normal', const='normal', nargs='?', choices=['normal', 'hard', 'expert'], help='''\ Select game difficulty. Affects available itempool. (default: %(default)s) - Easy: An easy setting with extra equipment. Normal: Normal difficulty. Hard: A harder setting with less equipment and reduced health. Expert: A harder yet setting with minimum equipment and health. - Insane: A setting with the absolute minimum in equipment and no extra health. ''') parser.add_argument('--timer', default='none', const='normal', nargs='?', choices=['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'], help='''\ diff --git a/Fill.py b/Fill.py index 86e0a5a7..0e1a48cc 100644 --- a/Fill.py +++ b/Fill.py @@ -374,6 +374,9 @@ def balance_multiworld_progression(world): reducing_state.sweep_for_events(locations=locations_to_test) + if testing.locked: + continue + if world.has_beaten_game(balancing_state): if not world.has_beaten_game(reducing_state): items_to_replace.append(testing) @@ -383,7 +386,7 @@ def balance_multiworld_progression(world): items_to_replace.append(testing) replaced_items = False - locations_for_replacing = [l for l in checked_locations if not l.event] + locations_for_replacing = [l for l in checked_locations if not l.event and not l.locked] while locations_for_replacing and items_to_replace: new_location = locations_for_replacing.pop() old_location = items_to_replace.pop() diff --git a/Gui.py b/Gui.py index 078a3ee1..bcaa486e 100755 --- a/Gui.py +++ b/Gui.py @@ -145,7 +145,7 @@ def guiMain(args=None): modeFrame = Frame(drowDownFrame) modeVar = StringVar() modeVar.set('open') - modeOptionMenu = OptionMenu(modeFrame, modeVar, 'standard', 'open', 'swordless', 'inverted') + modeOptionMenu = OptionMenu(modeFrame, modeVar, 'standard', 'open', 'inverted') modeOptionMenu.pack(side=RIGHT) modeLabel = Label(modeFrame, text='Game Mode') modeLabel.pack(side=LEFT) @@ -169,7 +169,7 @@ def guiMain(args=None): difficultyFrame = Frame(drowDownFrame) difficultyVar = StringVar() difficultyVar.set('normal') - difficultyOptionMenu = OptionMenu(difficultyFrame, difficultyVar, 'easy', 'normal', 'hard', 'expert', 'insane') + difficultyOptionMenu = OptionMenu(difficultyFrame, difficultyVar, 'normal', 'hard', 'expert') difficultyOptionMenu.pack(side=RIGHT) difficultyLabel = Label(difficultyFrame, text='Game difficulty') difficultyLabel.pack(side=LEFT) diff --git a/ItemList.py b/ItemList.py index 629f2931..8b0ea681 100644 --- a/ItemList.py +++ b/ItemList.py @@ -29,17 +29,6 @@ normalthird10extra = ['Rupees (50)'] * 4 + ['Rupees (20)'] * 3 + ['Arrows (10)', normalfourth5extra = ['Arrows (10)'] * 2 + ['Rupees (20)'] * 2 + ['Rupees (5)'] normalfinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 - -easybaseitems = (['Sanctuary Heart Container'] + ['Rupees (300)'] * 4 + ['Magic Upgrade (1/2)'] * 2 + ['Lamp'] * 2 + ['Silver Arrows'] * 2 + - ['Boss Heart Container'] * 10 + ['Piece of Heart'] * 12) -easyextra = ['Piece of Heart'] * 12 + ['Rupees (300)'] -easylimitedextra = ['Boss Heart Container'] * 3 # collapsing down the 12 pieces of heart -easyfirst15extra = ['Rupees (100)'] + ['Arrows (10)'] * 7 + ['Bombs (3)'] * 7 -easysecond10extra = ['Bombs (3)'] * 7 + ['Rupee (1)', 'Rupees (50)', 'Bombs (10)'] -easythird5extra = ['Rupees (50)'] * 2 + ['Bombs (3)'] * 2 + ['Arrows (10)'] -easyfinal25extra = ['Rupees (50)'] * 4 + ['Rupees (20)'] * 14 + ['Rupee (1)'] + ['Arrows (10)'] * 4 + ['Rupees (5)'] * 2 -easytimedotherextra = ['Red Clock'] * 5 - hardbaseitems = ['Silver Arrows', 'Single Arrow', 'Bombs (10)'] + ['Rupees (300)'] * 4 + ['Boss Heart Container'] * 6 + ['Piece of Heart'] * 20 + ['Rupees (5)'] * 7 + ['Bombs (3)'] * 4 hardfirst20extra = ['Rupees (100)', 'Rupees (300)', 'Rupees (50)'] + ['Bombs (3)'] * 5 + ['Rupees (5)'] * 10 + ['Arrows (10)', 'Rupee (1)'] hardsecond10extra = ['Rupees (5)'] * 5 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupee (1)'] @@ -55,13 +44,6 @@ expertthird10extra = ['Rupees (50)'] * 4 + ['Rupees (5)'] * 2 + ['Arrows (10)'] expertfourth5extra = ['Rupees (5)'] * 5 expertfinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 -insanebaseitems = ['Rupees (300)'] * 4 + ['Single Arrow', 'Bombs (10)', 'Rupee (1)'] + ['Rupees (5)'] * 24 + ['Bombs (3)'] * 9 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupees (20)'] * 5 -insanefirst15extra = ['Rupees (100)', 'Rupees (300)', 'Rupees (50)'] + ['Rupees (5)'] * 12 -insanesecond15extra = ['Rupees (5)'] * 10 + ['Rupees (20)'] * 5 -insanethird10extra = ['Rupees (50)'] * 4 + ['Rupees (5)'] * 2 + ['Arrows (10)'] * 3 + ['Rupee (1)'] -insanefourth5extra = ['Rupees (5)'] * 5 -insanefinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 - Difficulty = namedtuple('Difficulty', ['baseitems', 'bottles', 'bottle_count', 'same_bottle', 'progressiveshield', 'basicshield', 'progressivearmor', 'basicarmor', 'swordless', @@ -72,14 +54,6 @@ Difficulty = namedtuple('Difficulty', total_items_to_place = 153 -def easy_conditional_extras(timer, _goal, _mode, pool, placed_items): - extraitems = total_items_to_place - len(pool) - len(placed_items) - if extraitems < len(easyextra): - return easylimitedextra - if timer in ['timed', 'timed-countdown']: - return easytimedotherextra - return [] - def no_conditional_extras(*_args): return [] @@ -109,30 +83,6 @@ difficulties = { progressive_armor_limit = 2, progressive_bottle_limit = 4, ), - 'easy': Difficulty( - baseitems = easybaseitems, - bottles = normalbottles, - bottle_count = 8, - same_bottle = False, - progressiveshield = ['Progressive Shield'] * 6, - basicshield = ['Blue Shield', 'Red Shield', 'Mirror Shield'] * 2, - progressivearmor = ['Progressive Armor'] * 4, - basicarmor = ['Blue Mail', 'Red Mail'] * 2, - swordless = ['Rupees (20)'] * 8, - progressivesword = ['Progressive Sword'] * 7, - basicsword = ['Master Sword', 'Tempered Sword', 'Golden Sword'] *2 + ['Fighter Sword'], - timedohko = ['Green Clock'] * 25, - timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 5, # +5 more Red Clocks if there is room - triforcehunt = ['Triforce Piece'] * 30, - triforce_pieces_required = 20, - retro = ['Small Key (Universal)'] * 27, - conditional_extras = easy_conditional_extras, - extras = [easyextra, easyfirst15extra, easysecond10extra, easythird5extra, easyfinal25extra], - progressive_sword_limit = 4, - progressive_shield_limit = 3, - progressive_armor_limit = 2, - progressive_bottle_limit = 4, - ), 'hard': Difficulty( baseitems = hardbaseitems, bottles = hardbottles, @@ -181,34 +131,10 @@ difficulties = { progressive_armor_limit = 0, progressive_bottle_limit = 4, ), - 'insane': Difficulty( - baseitems = insanebaseitems, - bottles = hardbottles, - bottle_count = 4, - same_bottle = False, - progressiveshield = [], - basicshield = [], - progressivearmor = [], - basicarmor = [], - swordless = ['Rupees (20)'] * 3 + ['Silver Arrows'], - progressivesword = ['Progressive Sword'] * 3, - basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword'], - timedohko = ['Green Clock'] * 20 + ['Red Clock'] * 5, - timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, - triforcehunt = ['Triforce Piece'] * 30, - triforce_pieces_required = 20, - retro = ['Small Key (Universal)'] * 12 + ['Rupees (5)'] * 15, - conditional_extras = no_conditional_extras, - extras = [insanefirst15extra, insanesecond15extra, insanethird10extra, insanefourth5extra, insanefinal25extra], - progressive_sword_limit = 2, - progressive_shield_limit = 0, - progressive_armor_limit = 0, - progressive_bottle_limit = 4, - ), } def generate_itempool(world, player): - if (world.difficulty not in ['easy', 'normal', 'hard', 'expert', 'insane'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] + if (world.difficulty not in ['normal', 'hard', 'expert'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] or world.mode not in ['open', 'standard', 'swordless', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') @@ -217,29 +143,37 @@ def generate_itempool(world, player): world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) world.get_location('Ganon', player).event = True + world.get_location('Ganon', player).locked = True world.push_item(world.get_location('Agahnim 1', player), ItemFactory('Beat Agahnim 1', player), False) world.get_location('Agahnim 1', player).event = True + world.get_location('Agahnim 1', player).locked = True world.push_item(world.get_location('Agahnim 2', player), ItemFactory('Beat Agahnim 2', player), False) world.get_location('Agahnim 2', player).event = True + world.get_location('Agahnim 2', player).locked = True world.push_item(world.get_location('Dark Blacksmith Ruins', player), ItemFactory('Pick Up Purple Chest', player), False) world.get_location('Dark Blacksmith Ruins', player).event = True + world.get_location('Dark Blacksmith Ruins', player).locked = True world.push_item(world.get_location('Frog', player), ItemFactory('Get Frog', player), False) world.get_location('Frog', player).event = True + world.get_location('Frog', player).locked = True world.push_item(world.get_location('Missing Smith', player), ItemFactory('Return Smith', player), False) world.get_location('Missing Smith', player).event = True + world.get_location('Missing Smith', player).locked = True world.push_item(world.get_location('Floodgate', player), ItemFactory('Open Floodgate', player), False) world.get_location('Floodgate', player).event = True + world.get_location('Floodgate', player).locked = True # set up item pool if world.custom: - (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.retro, world.customitemarray) + (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[67], 9999) else: - (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.retro) + (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro) world.itempool += ItemFactory(pool, player) for (location, item) in placed_items: world.push_item(world.get_location(location, player), ItemFactory(item, player), False) world.get_location(location, player).event = True + world.get_location(location, player).locked = True world.lamps_needed_for_dark_rooms = lamps_needed_for_dark_rooms if clock_mode is not None: world.clock_mode = clock_mode @@ -254,7 +188,7 @@ def generate_itempool(world, player): # logic has some branches where having 4 hearts is one possible requirement (of several alternatives) # rather than making all hearts/heart pieces progression items (which slows down generation considerably) # We mark one random heart container as an advancement item (or 4 heart pieces in expert mode) - if world.difficulty in ['easy', 'normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): + if world.difficulty in ['normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): [item for item in world.itempool if item.name == 'Boss Heart Container' and item.player == player][0].advancement = True elif world.difficulty in ['expert'] and not (world.custom and world.customitemarray[29] < 4): adv_heart_pieces = [item for item in world.itempool if item.name == 'Piece of Heart' and item.player == player][0:4] @@ -341,6 +275,7 @@ def create_dynamic_shop_locations(world, player): world.push_item(loc, ItemFactory(item['item'], player), False) loc.event = True + loc.locked = True def fill_prizes(world, attempts=15): @@ -393,7 +328,7 @@ def set_up_shops(world, player): #special shop types -def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, retro): +def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, retro): pool = [] placed_items = [] clock_mode = None @@ -411,8 +346,6 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, retro): pool.extend(basicgloves) lamps_needed_for_dark_rooms = 1 - if difficulty == 'easy': - lamps_needed_for_dark_rooms = 3 # insanity shuffle doesn't have fake LW/DW logic so for now guaranteed Mirror and Moon Pearl at the start if shuffle == 'insanity_legacy': @@ -448,7 +381,7 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, retro): else: pool.extend(diff.basicarmor) - if mode == 'swordless': + if swords == 'swordless': pool.extend(diff.swordless) elif mode == 'standard': if want_progressives(): @@ -505,7 +438,7 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, retro): pool.extend(['Small Key (Universal)']) return (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) -def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, retro, customitemarray): +def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, swords, retro, customitemarray): pool = [] placed_items = [] clock_mode = None @@ -589,8 +522,6 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, r diff = difficulties[difficulty] lamps_needed_for_dark_rooms = 1 - if difficulty == 'easy': - lamps_needed_for_dark_rooms = customitemarray[12] # expert+ difficulties produce the same contents for # all bottles, since only one bottle is available @@ -659,24 +590,25 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, r # A quick test to ensure all combinations generate the correct amount of items. def test(): - for difficulty in ['easy', 'normal', 'hard', 'expert', 'insane']: + for difficulty in ['normal', 'hard', 'expert']: for goal in ['ganon', 'triforcehunt', 'pedestal']: for timer in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown']: - for mode in ['open', 'standard', 'swordless', 'inverted']: - for progressive in ['on', 'off']: - for shuffle in ['full', 'insane']: - for retro in [True, False]: - out = get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, retro) - count = len(out[0]) + len(out[1]) + for mode in ['open', 'standard', 'inverted']: + for swords in ['random', 'assured', 'swordless', 'vanilla']: + for progressive in ['on', 'off']: + for shuffle in ['full', 'insanity_legacy']: + for retro in [True, False]: + out = get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, retro) + count = len(out[0]) + len(out[1]) - correct_count = total_items_to_place - if goal in ['pedestal']: - # pedestal goals generate one extra item - correct_count += 1 - if retro: - correct_count += 28 + correct_count = total_items_to_place + if goal in ['pedestal']: + # pedestal goals generate one extra item + correct_count += 1 + if retro: + correct_count += 28 - assert count == correct_count, "expected {0} items but found {1} items for {2}".format(correct_count, count, (progressive, shuffle, difficulty, timer, goal, mode, retro)) + assert count == correct_count, "expected {0} items but found {1} items for {2}".format(correct_count, count, (progressive, shuffle, difficulty, timer, goal, mode, retro)) if __name__ == '__main__': test() diff --git a/Items.py b/Items.py index 1bc94cc9..f9a7d884 100644 --- a/Items.py +++ b/Items.py @@ -24,6 +24,7 @@ def ItemFactory(items, player): # Format: Name: (Advancement, Priority, Type, ItemCode, Pedestal Hint Text, Pedestal Credit Text, Sick Kid Credit Text, Zora Credit Text, Witch Credit Text, Flute Boy Credit Text, Hint Text) item_table = {'Bow': (True, False, None, 0x0B, 'You have\nchosen the\narcher class.', 'the stick and twine', 'arrow-slinging kid', 'arrow sling for sale', 'witch and robin hood', 'archer boy shoots again', 'the Bow'), + 'Progressive Bow': (True, False, None, 0x64, 'You have\nchosen the\narcher class.', 'the stick and twine', 'arrow-slinging kid', 'arrow sling for sale', 'witch and robin hood', 'archer boy shoots again', 'a Bow'), 'Book of Mudora': (True, False, None, 0x1D, 'This is a\nparadox?!', 'and the story book', 'the scholarly kid', 'moon runes for sale', 'drugs for literacy', 'book-worm boy can read again', 'the Book'), 'Hammer': (True, False, None, 0x09, 'stop\nhammer time!', 'and m c hammer', 'hammer-smashing kid', 'm c hammer for sale', 'stop... hammer time', 'stop, hammer time', 'the hammer'), 'Hookshot': (True, False, None, 0x0A, 'BOING!!!\nBOING!!!\nBOING!!!', 'and the tickle beam', 'tickle-monster kid', 'tickle beam for sale', 'witch and tickle boy', 'beam boy tickles again', 'the Hookshot'), diff --git a/Main.py b/Main.py index 33afc1d1..7d6536f6 100644 --- a/Main.py +++ b/Main.py @@ -24,7 +24,7 @@ def main(args, seed=None): start = time.clock() # initialize the world - world = World(args.multi, args.shuffle, args.logic, args.mode, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -180,7 +180,7 @@ def gt_filler(world): def copy_world(world): # ToDo: Not good yet - ret = World(world.players, world.shuffle, world.logic, world.mode, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) + ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() @@ -238,6 +238,8 @@ def copy_world(world): item.location = ret.get_location(location.name, location.player) if location.event: ret.get_location(location.name, location.player).event = True + if location.locked: + ret.get_location(location.name, location.player).locked = True # copy remaining itempool. No item in itempool should have an assigned location for item in world.itempool: diff --git a/README.md b/README.md index 4c07f5ec..25bdbd9c 100644 --- a/README.md +++ b/README.md @@ -95,12 +95,6 @@ This is only noticeably different if the the Ganon shuffle option is enabled. ## Game Difficulty -### Easy - -This setting doubles the number of swords, shields, armors, bottles, and silver arrows in the item pool. -This setting will also triple the number of Lamps available, and all will be obtainable before dark rooms. -Within dungeons, the number of items found will be displayed on screen if there is no timer. - ### Normal This is the default setting that has an item pool most similar to the original @@ -118,11 +112,6 @@ the player from having fairies in bottles. This setting is a more extreme version of the Hard setting. Potions are further nerfed, the item pool is less helpful, and the player can find no armor, only a Master Sword, and only a single bottle. -### Insane - -This setting is a modest step up from Expert. The main difference is that the player will never find any -additional health. - ## Timer Setting ### None @@ -358,7 +347,7 @@ Select the game mode. (default: open) Select the game completion goal. (default: ganon) ``` ---difficulty [{easy,normal,hard,expert,insane}] +--difficulty [{normal,hard,expert}] ``` Select the game difficulty. Affects available itempool. (default: normal) diff --git a/Rom.py b/Rom.py index f4354731..da1f64fd 100644 --- a/Rom.py +++ b/Rom.py @@ -549,7 +549,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x51DE, 0x00) # set open mode: - if world.mode in ['open', 'swordless', 'inverted']: + if world.mode in ['open', 'inverted']: rom.write_byte(0x180032, 0x01) # open mode # disable sword sprite from uncle @@ -587,7 +587,7 @@ def patch_rom(world, player, rom): # potion magic restore amount rom.write_byte(0x180085, 0x40) # Half Magic #Cape magic cost - rom.write_bytes(0x3ADA7, [0x02, 0x02, 0x02]) + rom.write_bytes(0x3ADA7, [0x02, 0x04, 0x08]) # Byrna Invulnerability: off rom.write_byte(0x18004F, 0x00) #Disable catching fairies @@ -603,31 +603,11 @@ def patch_rom(world, player, rom): # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount - rom.write_byte(0x180084, 0x08) # One Heart + rom.write_byte(0x180084, 0x20) # 4 Hearts # potion magic restore amount rom.write_byte(0x180085, 0x20) # Quarter Magic #Cape magic cost - rom.write_bytes(0x3ADA7, [0x01, 0x01, 0x01]) - # Byrna Invulnerability: off - rom.write_byte(0x18004F, 0x00) - #Disable catching fairies - rom.write_byte(0x34FD6, 0x80) - overflow_replacement = GREEN_TWENTY_RUPEES - # Rupoor negative value - rom.write_int16(0x180036, world.rupoor_cost) - # Set stun items - rom.write_byte(0x180180, 0x00) # Nothing - # Make silver arrows only usable against Ganon - rom.write_byte(0x180181, 0x01) - elif world.difficulty == 'insane': - # Powdered Fairies Prize - rom.write_byte(0x36DD0, 0x79) # Bees - # potion heal amount - rom.write_byte(0x180084, 0x00) # No healing - # potion magic restore amount - rom.write_byte(0x180085, 0x00) # No healing - #Cape magic cost - rom.write_bytes(0x3ADA7, [0x01, 0x01, 0x01]) + rom.write_bytes(0x3ADA7, [0x02, 0x04, 0x08]) # Byrna Invulnerability: off rom.write_byte(0x18004F, 0x00) #Disable catching fairies @@ -664,12 +644,7 @@ def patch_rom(world, player, rom): else: overflow_replacement = GREEN_TWENTY_RUPEES - if world.difficulty in ['easy']: - rom.write_byte(0x180182, 0x03) # auto equip silvers on pickup and at ganon - elif world.retro and world.difficulty in ['hard', 'expert', 'insane']: #FIXME: this is temporary for v29 baserom (perhaps no so temporary?) - rom.write_byte(0x180182, 0x03) # auto equip silvers on pickup and at ganon - else: - rom.write_byte(0x180182, 0x01) # auto equip silvers on pickup + rom.write_byte(0x180182, 0x01) # auto equip silvers on pickup #Byrna residual magic cost rom.write_bytes(0x45C42, [0x04, 0x02, 0x01]) @@ -709,7 +684,7 @@ def patch_rom(world, player, rom): random.shuffle(packs) prizes[:56] = [drop for pack in packs for drop in pack] - if world.difficulty in ['hard', 'expert', 'insane']: + if world.difficulty in ['hard', 'expert']: prize_replacements = {0xE0: 0xDF, # Fairy -> heart 0xE3: 0xD8} # Big magic -> small magic prizes = [prize_replacements.get(prize, prize) for prize in prizes] @@ -753,26 +728,16 @@ def patch_rom(world, player, rom): rom.write_byte(address, prize) # Fill in item substitutions table - if world.difficulty in ['easy']: - rom.write_bytes(0x184000, [ - # original_item, limit, replacement_item, filler - 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees - 0x58, 0x01, 0x43, 0xFF, # silver arrows -> 1 arrow - 0x51, 0x06, 0x52, 0xFF, # 6 +5 bomb upgrades -> +10 bomb upgrade - 0x53, 0x06, 0x54, 0xFF, # 6 +5 arrow upgrades -> +10 arrow upgrade - 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel - ]) - else: - rom.write_bytes(0x184000, [ - # original_item, limit, replacement_item, filler - 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees - 0x51, 0x06, 0x52, 0xFF, # 6 +5 bomb upgrades -> +10 bomb upgrade - 0x53, 0x06, 0x54, 0xFF, # 6 +5 arrow upgrades -> +10 arrow upgrade - 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel - ]) + rom.write_bytes(0x184000, [ + # original_item, limit, replacement_item, filler + 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees + 0x51, 0x06, 0x52, 0xFF, # 6 +5 bomb upgrades -> +10 bomb upgrade + 0x53, 0x06, 0x54, 0xFF, # 6 +5 arrow upgrades -> +10 arrow upgrade + 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel + ]) # set Fountain bottle exchange items - if world.difficulty in ['hard', 'expert', 'insane']: + if world.difficulty in ['hard', 'expert']: rom.write_byte(0x348FF, [0x16, 0x2B, 0x2C, 0x2D, 0x3C, 0x48][random.randint(0, 5)]) rom.write_byte(0x3493B, [0x16, 0x2B, 0x2C, 0x2D, 0x3C, 0x48][random.randint(0, 5)]) else: @@ -837,9 +802,7 @@ def patch_rom(world, player, rom): rom.write_int32(0x180200, -100 * 60 * 60 * 60) # red clock adjustment time (in frames, sint32) rom.write_int32(0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) rom.write_int32(0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) - if world.difficulty == 'easy': - rom.write_int32(0x18020C, (20 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) - elif world.difficulty == 'normal': + if world.difficulty == 'normal': rom.write_int32(0x18020C, (10 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) else: rom.write_int32(0x18020C, int((5 + ERtimeincrease / 2) * 60 * 60)) # starting time (in frames, sint32) @@ -866,7 +829,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x180211, 0x06) #Game type, we set the Entrance and item randomization flags # assorted fixes - rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark word dungion before killing aga1 + rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark world dungeon before killing aga1 rom.write_byte(0x180169, 0x01 if world.lock_aga_door_in_escape else 0x00) # Lock or unlock aga tower door during escape sequence. if world.mode == 'inverted': rom.write_byte(0x180169, 0x02) # lock aga/ganon tower door with crystals in inverted @@ -878,6 +841,7 @@ def patch_rom(world, player, rom): rom.write_bytes(0x50563, [0x3F, 0x14]) # disable below ganon chest rom.write_byte(0x50599, 0x00) # disable below ganon chest rom.write_bytes(0xE9A5, [0x7E, 0x00, 0x24]) # disable below ganon chest + rom.write_byte(0x18008B, 0x00) # Pyramid Hole not pre-opened rom.write_byte(0xF5D73, 0xF0) # bees are catchable rom.write_byte(0xF5F10, 0xF0) # bees are catchable rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness @@ -928,8 +892,6 @@ def patch_rom(world, player, rom): # compasses showing dungeon count if world.clock_mode != 'off': rom.write_byte(0x18003C, 0x00) # Currently must be off if timer is on, because they use same HUD location - elif world.difficulty == 'easy': - rom.write_byte(0x18003C, 0x02) # always on elif world.keysanity: rom.write_byte(0x18003C, 0x01) # show on pickup else: @@ -1311,6 +1273,9 @@ def write_strings(rom, world, player): greenpendant = world.find_items('Green Pendant', player)[0] tt['sahasrahla_bring_courage'] = 'I lost my family heirloom in %s' % greenpendant.hint_text + tt['sign_ganons_tower'] = ('You need %d crystal to enter.' if world.crystals_needed_for_gt == 1 else 'You need %d crystals to enter.') % world.crystals_needed_for_gt + tt['sign_ganon'] = ('You need %d crystal to beat Ganon.' if world.crystals_needed_for_ganon == 1 else 'You need %d crystals to beat Ganon.') % world.crystals_needed_for_ganon + tt['uncle_leaving_text'] = Uncle_texts[random.randint(0, len(Uncle_texts) - 1)] tt['end_triforce'] = "{NOBORDER}\n" + Triforce_texts[random.randint(0, len(Triforce_texts) - 1)] tt['bomb_shop_big_bomb'] = BombShop2_texts[random.randint(0, len(BombShop2_texts) - 1)] diff --git a/Rules.py b/Rules.py index 6d2d7767..1db807b8 100644 --- a/Rules.py +++ b/Rules.py @@ -26,14 +26,16 @@ def set_rules(world, player): open_rules(world, player) elif world.mode == 'standard': standard_rules(world, player) - elif world.mode == 'swordless': - swordless_rules(world, player) elif world.mode == 'inverted': open_rules(world, player) inverted_rules(world, player) else: raise NotImplementedError('Not implemented yet') + if world.swords == 'swordless': + # FIXME: !!! Does not handle inverted properly + swordless_rules(world, player) + if world.logic == 'noglitches': no_glitches_rules(world, player) elif world.logic == 'minorglitches': @@ -792,8 +794,7 @@ def inverted_rules(world, player): 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) - set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has('Crystal 1', player) and state.has('Crystal 2', player) - and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player) + set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon, player) and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop @@ -801,7 +802,7 @@ def inverted_rules(world, player): set_trock_key_rules(world, player) - set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has('Crystal 1', player) and state.has('Crystal 2', player) and state.has('Crystal 3', player) and state.has('Crystal 4', player) and state.has('Crystal 5', player) and state.has('Crystal 6', player) and state.has('Crystal 7', player)) + set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) def no_glitches_rules(world, player): if world.mode != 'inverted': @@ -887,11 +888,6 @@ def open_rules(world, player): def swordless_rules(world, player): - # for the time being swordless mode just inherits all fixes from open mode. - # should there ever be fixes that apply to open mode but not swordless, this - # can be revisited. - open_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('Agahnim 1', player), lambda state: (state.has('Hammer', player) or state.has('Fire Rod', player) or state.can_shoot_arrows(player) or state.has('Cane of Somaria', player)) and state.has_key('Small Key (Agahnims Tower)', player, 2)) set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has('Hammer', player)) diff --git a/Text.py b/Text.py index b8baba83..7cafee7d 100644 --- a/Text.py +++ b/Text.py @@ -1883,5 +1883,7 @@ class TextTable(object): # 190 text['sign_east_death_mountain_bridge'] = CompressedTextMapper.convert("How did you get up here?") text['fish_money'] = CompressedTextMapper.convert("It's a secret to everyone.") + text['sign_ganons_tower'] = CompressedTextMapper.convert("You need all 7 crystals to enter.") + text['sign_ganon'] = CompressedTextMapper.convert("You need all 7 crystals to beat Ganon.") text['end_pad_data'] = bytearray([0xfb]) text['terminator'] = bytearray([0xFF, 0xFF]) diff --git a/_vendor/__init__.py b/_vendor/__init__.py new file mode 100644 index 00000000..e69de29b From 3713f6a1b5d0986c56fed488df255cc8af872780 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 4 Aug 2019 13:22:37 -0400 Subject: [PATCH 019/185] Add keysanity map reveal An overlooked v30 feature --- Rom.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/Rom.py b/Rom.py index da1f64fd..580c23f7 100644 --- a/Rom.py +++ b/Rom.py @@ -898,6 +898,33 @@ def patch_rom(world, player, rom): rom.write_byte(0x18003C, 0x00) rom.write_byte(0x180045, 0xFF if world.keysanity else 0x00) # free roaming items in menu + + # Map reveals + reveal_bytes = { + "Eastern Palace": 0x2000, + "Desert Palace": 0x1000, + "Tower of Hera": 0x0020, + "Palace of Darkness": 0x0200, + "Thieves Town": 0x0010, + "Skull Woods": 0x0080, + "Swamp Palace": 0x0400, + "Ice Palace": 0x0040, + "Misery Mire'": 0x0100, + "Turtle Rock": 0x0008, + } + + def get_reveal_bytes(itemName): + locations = world.find_items(itemName, player) + if len(locations) < 1: + return 0x0000 + location = locations[0] + if location.parent_region and location.parent_region.dungeon: + return reveal_bytes.get(location.parent_region.dungeon.name, 0x0000) + return 0x0000 + + rom.write_int16(0x18017A, get_reveal_bytes('Green Pendant') if world.keysanity else 0x0000) # Sahasrahla reveal + rom.write_int16(0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.keysanity else 0x0000) # Bomb Shop Reveal + rom.write_byte(0x180172, 0x01 if world.retro else 0x00) # universal keys rom.write_byte(0x180175, 0x01 if world.retro else 0x00) # rupee bow rom.write_byte(0x180176, 0x0A if world.retro else 0x00) # wood arrow cost From ef7c3d4f06a07eda8b68e1e4816572244b8d875a Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 4 Aug 2019 17:40:13 -0400 Subject: [PATCH 020/185] New Item/Location accessibility options Replaces existing check_only_beatable, which became the "none" option. TR can run out of key placement options, with the 100% locations option, but I really don't care enough. It exists mostly for people who want to 100% a seed, or to point to if they ask about keys locked behind themselves. --- BaseClasses.py | 8 ++--- EntranceRandomizer.py | 12 ++++--- Fill.py | 4 +-- Gui.py | 5 --- ItemList.py | 6 +++- Main.py | 13 +++---- README.md | 8 ++--- Rules.py | 80 +++++++++++++++++++++++++++++++++---------- 8 files changed, 85 insertions(+), 51 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 7bca192d..6e2335d4 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -8,7 +8,7 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, players, shuffle, logic, mode, swords, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): + def __init__(self, players, shuffle, logic, mode, swords, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): self.players = players self.shuffle = shuffle self.logic = logic @@ -50,7 +50,7 @@ class World(object): self.lock_aga_door_in_escape = False self.fix_trock_doors = self.shuffle != 'vanilla' self.save_and_quit_from_boss = True - self.check_beatable_only = check_beatable_only + self.accessibility = accessibility self.fix_skullwoods_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] self.fix_palaceofdarkness_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] self.fix_trock_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] @@ -1014,7 +1014,7 @@ class Spoiler(object): 'difficulty': self.world.difficulty, 'timer': self.world.timer, 'progressive': self.world.progressive, - 'completeable': not self.world.check_beatable_only, + 'accessibility': self.world.accessibility, 'dungeonitems': self.world.place_dungeon_items, 'quickswap': self.world.quickswap, 'fastmenu': self.world.fastmenu, @@ -1047,7 +1047,7 @@ class Spoiler(object): outfile.write('Goal: %s\n' % self.metadata['goal']) outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle']) outfile.write('Filling Algorithm: %s\n' % self.metadata['algorithm']) - outfile.write('All Locations Accessible: %s\n' % ('Yes' if self.metadata['completeable'] else 'No, some locations may be unreachable')) + outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) outfile.write('Maps and Compasses in Dungeons: %s\n' % ('Yes' if self.metadata['dungeonitems'] else 'No')) outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.metadata['quickswap'] else 'No')) outfile.write('Menu speed: %s\n' % self.metadata['fastmenu']) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 47efc450..1803dd73 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -186,11 +186,13 @@ def start(): Remove Maps and Compasses from Itempool, replacing them by empty slots. ''', action='store_true') - parser.add_argument('--beatableonly', help='''\ - Only check if the game is beatable with placement. Do not - ensure all locations are reachable. This only has an effect - on the restrictive algorithm currently. - ''', action='store_true') + parser.add_argument('--accessibility', default='items', const='items', nargs='?', choices=['items', 'locations', 'none'], help='''\ + Select Item/Location Accessibility. (default: %(default)s) + Items: You can reach all unique inventory items. No guarantees about + reaching all locations or all keys. + Locations: You will be able to reach every location in the game. + None: You will be able to reach enough locations to beat the game. + ''') parser.add_argument('--hints', help='''\ Make telepathic tiles and storytellers give helpful hints. ''', action='store_true') diff --git a/Fill.py b/Fill.py index 0e1a48cc..bfc1145e 100644 --- a/Fill.py +++ b/Fill.py @@ -184,7 +184,7 @@ def fill_restrictive(world, base_state, locations, itempool): maximum_exploration_state = sweep_from_pool() perform_access_check = True - if world.check_beatable_only: + if world.accessibility == 'none': perform_access_check = not world.has_beaten_game(maximum_exploration_state) for item_to_place in items_to_place: @@ -197,7 +197,7 @@ def fill_restrictive(world, base_state, locations, itempool): if spot_to_fill is None: # we filled all reachable spots. Maybe the game can be beaten anyway? if world.can_beat_game(): - if not world.check_beatable_only: + if world.accessibility != 'none': logging.getLogger('').warning('Not all items placed. Game beatable anyway. (Could not place %s)' % item_to_place) continue raise FillError('No more spots to place %s' % item_to_place) diff --git a/Gui.py b/Gui.py index bcaa486e..e02457d1 100755 --- a/Gui.py +++ b/Gui.py @@ -66,8 +66,6 @@ def guiMain(args=None): retroCheckbutton = Checkbutton(checkBoxFrame, text="Retro mode (universal keys)", variable=retroVar) dungeonItemsVar = IntVar() dungeonItemsCheckbutton = Checkbutton(checkBoxFrame, text="Place Dungeon Items (Compasses/Maps)", onvalue=0, offvalue=1, variable=dungeonItemsVar) - beatableOnlyVar = IntVar() - beatableOnlyCheckbutton = Checkbutton(checkBoxFrame, text="Only ensure seed is beatable, not all items must be reachable", variable=beatableOnlyVar) disableMusicVar = IntVar() disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar) shuffleGanonVar = IntVar() @@ -85,7 +83,6 @@ def guiMain(args=None): keysanityCheckbutton.pack(expand=True, anchor=W) retroCheckbutton.pack(expand=True, anchor=W) dungeonItemsCheckbutton.pack(expand=True, anchor=W) - beatableOnlyCheckbutton.pack(expand=True, anchor=W) disableMusicCheckbutton.pack(expand=True, anchor=W) shuffleGanonCheckbutton.pack(expand=True, anchor=W) hintsCheckbutton.pack(expand=True, anchor=W) @@ -331,7 +328,6 @@ def guiMain(args=None): guiargs.keysanity = bool(keysanityVar.get()) guiargs.retro = bool(retroVar.get()) guiargs.nodungeonitems = bool(dungeonItemsVar.get()) - guiargs.beatableonly = bool(beatableOnlyVar.get()) guiargs.quickswap = bool(quickSwapVar.get()) guiargs.disablemusic = bool(disableMusicVar.get()) guiargs.shuffleganon = bool(shuffleGanonVar.get()) @@ -1071,7 +1067,6 @@ def guiMain(args=None): retroVar.set(args.retro) if args.nodungeonitems: dungeonItemsVar.set(int(not args.nodungeonitems)) - beatableOnlyVar.set(int(args.beatableonly)) quickSwapVar.set(int(args.quickswap)) disableMusicVar.set(int(args.disablemusic)) if args.count: diff --git a/ItemList.py b/ItemList.py index 8b0ea681..740d5ff1 100644 --- a/ItemList.py +++ b/ItemList.py @@ -141,7 +141,11 @@ def generate_itempool(world, player): if world.timer in ['ohko', 'timed-ohko']: world.can_take_damage = False - world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) + if world.goal in ['pedestal', 'triforcehunt']: + world.push_item(world.get_location('Ganon', player), ItemFactory('Nothing', player), False) + else: + world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) + world.get_location('Ganon', player).event = True world.get_location('Ganon', player).locked = True world.push_item(world.get_location('Agahnim 1', player), ItemFactory('Beat Agahnim 1', player), False) diff --git a/Main.py b/Main.py index 7d6536f6..24a4ff9c 100644 --- a/Main.py +++ b/Main.py @@ -24,7 +24,7 @@ def main(args, seed=None): start = time.clock() # initialize the world - world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -180,7 +180,7 @@ def gt_filler(world): def copy_world(world): # ToDo: Not good yet - ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) + ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() @@ -277,13 +277,8 @@ def create_playthrough(world): old_world = world world = copy_world(world) - # in treasure hunt and pedestal goals, ganon is invincible - if world.goal in ['pedestal', 'triforcehunt']: - for player in range(1, world.players + 1): - world.get_location('Ganon', player).item = None - # if we only check for beatable, we can do this sanity check first before writing down spheres - if world.check_beatable_only and not world.can_beat_game(): + if world.accessibility == 'none' and not world.can_beat_game(): raise RuntimeError('Cannot beat game. Something went terribly wrong here!') # get locations containing progress items @@ -314,7 +309,7 @@ def create_playthrough(world): logging.getLogger('').debug('Calculated sphere %i, containing %i of %i progress items.', len(collection_spheres), len(sphere), len(prog_locations)) if not sphere: logging.getLogger('').debug('The following items could not be reached: %s', ['%s (Player %d) at %s (Player %d)' % (location.item.name, location.item.player, location.name, location.player) for location in sphere_candidates]) - if not world.check_beatable_only: + if not world.accessibility == 'none': raise RuntimeError('Not all progression items reachable. Something went terribly wrong here.') else: break diff --git a/README.md b/README.md index 25bdbd9c..d1be5fc0 100644 --- a/README.md +++ b/README.md @@ -287,10 +287,6 @@ In further concert with the Bow changes, all arrows under pots, in chests, and e If not set, Compasses and Maps are removed from the dungeon item pools and replaced by empty chests that may end up anywhere in the world. This may lead to different amount of itempool items being placed in a dungeon than you are used to. -## Only Ensure Seed Beatable - -If set, will only ensure the goal can be achieved, but not necessarily that all locations are reachable. Currently only affects VT25, VT26 and balanced algorithms. - ## Include Ganon's Tower and Pyramid Hole in Shuffle pool If set, Ganon's Tower is included in the dungeon shuffle pool and the Pyramid Hole/Exit pair is included in the Holes shuffle pool. Ganon can not be defeated until the primary goal is fulfilled. @@ -457,10 +453,10 @@ Select the color of Link\'s heart meter. (default: red) Use to select a different sprite sheet to use for Link. Path to a binary file of length 0x7000 containing the sprite data stored at address 0x80000 in the rom. (default: None) ``` ---beatableonly +--accessibility [{items,locations,none}] ``` -Enables the "Only Ensure Seed Beatable" option (default: False) +Sets the item/location accessibility rules. (default: items) ``` --hints diff --git a/Rules.py b/Rules.py index 1db807b8..0339ec98 100644 --- a/Rules.py +++ b/Rules.py @@ -274,7 +274,8 @@ def global_rules(world, player): set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) - set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: @@ -288,7 +289,8 @@ def global_rules(world, player): set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) - set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) @@ -300,7 +302,8 @@ def global_rules(world, player): set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) - set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) @@ -312,7 +315,8 @@ def global_rules(world, player): set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) - set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) @@ -376,10 +380,17 @@ def global_rules(world, player): set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) - set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + else: + forbid_item(world.get_location('Palace of Darkness - Big Key Chest', player), 'Small Key (Palace of Darkness)', player) set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) - set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + else: + forbid_item(world.get_location('Palace of Darkness - Harmless Hellway', player), 'Small Key (Palace of Darkness)', player) + set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) @@ -393,7 +404,10 @@ def global_rules(world, player): set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) - set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) + else: + forbid_item(world.get_location('Ganons Tower - Map Chest', player), 'Small Key (Ganons Tower)', player) # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. @@ -639,7 +653,8 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) - set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: @@ -653,7 +668,8 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) - set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) @@ -665,7 +681,8 @@ def inverted_rules(world, player): set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) - set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) @@ -677,7 +694,9 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) - set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) + set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) @@ -741,10 +760,17 @@ def inverted_rules(world, player): set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) - set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + else: + forbid_item(world.get_location('Palace of Darkness - Big Key Chest', player), 'Small Key (Palace of Darkness)', player) set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) - set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + else: + forbid_item(world.get_location('Palace of Darkness - Harmless Hellway', player), 'Small Key (Palace of Darkness)', player) + set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) @@ -758,7 +784,10 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) - set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) + else: + forbid_item(world.get_location('Ganons Tower - Map Chest', player), 'Small Key (Ganons Tower)', player) # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. @@ -958,10 +987,16 @@ def set_trock_key_rules(world, player): # might open all the locked doors in any order so we need maximally restrictive rules. if can_reach_back: set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + else: + forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) elif can_reach_front and can_reach_middle: set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + else: + forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] @@ -969,14 +1004,20 @@ def set_trock_key_rules(world, player): set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (North)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2)) set_rule(world.get_entrance('Turtle Rock Pokey Room', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 1)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player and state.has_key('Small Key (Turtle Rock)', player, 2)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player and state.has_key('Small Key (Turtle Rock)', player, 2)) + else: + forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] elif can_reach_big_chest: set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + else: + forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] @@ -985,7 +1026,8 @@ def set_trock_key_rules(world, player): else: set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] From b8ea2eb4b12ef165246b5e1c8427834413d957d3 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Tue, 6 Aug 2019 21:36:45 -0400 Subject: [PATCH 021/185] Fix random weapons for Standard Mode Now works roughly like VT, except that swords are somwhat more common and bombs-only escape is not supported (because I don't want to make 'Bombs (10)' an advancement item) Swordless Standard Mode should also work now Assured and Vanilla weapons still need to be implemented. --- ItemList.py | 20 +++-------------- Rom.py | 34 ++++++++++++++++++++--------- Rules.py | 63 ++++++++++++++++++++++++++++++++++++++--------------- 3 files changed, 72 insertions(+), 45 deletions(-) diff --git a/ItemList.py b/ItemList.py index 740d5ff1..205a41af 100644 --- a/ItemList.py +++ b/ItemList.py @@ -387,13 +387,6 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r if swords == 'swordless': pool.extend(diff.swordless) - elif mode == 'standard': - if want_progressives(): - placed_items.append(('Link\'s Uncle', 'Progressive Sword')) - pool.extend(diff.progressivesword) - else: - placed_items.append(('Link\'s Uncle', 'Fighter Sword')) - pool.extend(diff.basicsword) else: if want_progressives(): pool.extend(diff.progressivesword) @@ -557,14 +550,6 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s itemtotal = itemtotal + 1 if mode == 'standard': - if progressive == 'off': - placed_items.append(('Link\'s Uncle', 'Fighter Sword')) - pool.extend(['Fighter Sword'] * max((customitemarray[32] - 1), 0)) - pool.extend(['Progressive Sword'] * customitemarray[36]) - else: - placed_items.append(('Link\'s Uncle', 'Progressive Sword')) - pool.extend(['Fighter Sword'] * customitemarray[32]) - pool.extend(['Progressive Sword'] * max((customitemarray[36] - 1), 0)) if retro: key_location = random.choice(['Secret Passage', 'Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest', 'Sewers - Dark Cross']) placed_items.append((key_location, 'Small Key (Universal)')) @@ -572,10 +557,11 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s else: pool.extend(['Small Key (Universal)'] * customitemarray[68]) else: - pool.extend(['Fighter Sword'] * customitemarray[32]) - pool.extend(['Progressive Sword'] * customitemarray[36]) pool.extend(['Small Key (Universal)'] * customitemarray[68]) + pool.extend(['Fighter Sword'] * customitemarray[32]) + pool.extend(['Progressive Sword'] * customitemarray[36]) + if shuffle == 'insanity_legacy': placed_items.append(('Link\'s House', 'Magic Mirror')) placed_items.append(('Sanctuary', 'Moon Pearl')) diff --git a/Rom.py b/Rom.py index 580c23f7..3d88033d 100644 --- a/Rom.py +++ b/Rom.py @@ -551,7 +551,13 @@ def patch_rom(world, player, rom): # set open mode: if world.mode in ['open', 'inverted']: rom.write_byte(0x180032, 0x01) # open mode + if world.mode == 'inverted': + set_inverted_mode(world, rom) + elif world.mode == 'standard': + rom.write_byte(0x180032, 0x00) # standard mode + uncle_location = world.get_location('Link\'s Uncle', player) + if uncle_location.item is None or uncle_location.item.name not in ['Master Sword', 'Tempered Sword', 'Fighter Sword', 'Golden Sword', 'Progressive Sword']: # disable sword sprite from uncle rom.write_bytes(0x6D263, [0x00, 0x00, 0xf6, 0xff, 0x00, 0x0E]) rom.write_bytes(0x6D26B, [0x00, 0x00, 0xf6, 0xff, 0x00, 0x0E]) @@ -563,10 +569,6 @@ def patch_rom(world, player, rom): rom.write_bytes(0x6D2EB, [0x00, 0x00, 0xf7, 0xff, 0x02, 0x0E]) rom.write_bytes(0x6D31B, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) rom.write_bytes(0x6D323, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) - if world.mode == 'inverted': - set_inverted_mode(world, rom) - elif world.mode == 'standard': - rom.write_byte(0x180032, 0x00) # standard mode # set light cones rom.write_byte(0x180038, 0x01 if world.sewer_light_cone else 0x00) @@ -866,12 +868,6 @@ def patch_rom(world, player, rom): rom.write_bytes(0x180080, [50, 50, 70, 70]) # values to fill for Capacity Upgrades (Bomb5, Bomb10, Arrow5, Arrow10) rom.write_byte(0x18004D, 0x00) # Escape assist (off) - rom.write_byte(0x18004E, 0x00) # escape fills - rom.write_int16(0x180183, 0) # rupee fill (for bow if rupee arrows enabled) - rom.write_bytes(0x180185, [0x00, 0x00, 0x00]) # uncle item refills - rom.write_bytes(0x180188, [0x00, 0x00, 0x00]) # zelda item refills - rom.write_bytes(0x18018B, [0x00, 0x00, 0x00]) # uncle item refills - if world.goal in ['pedestal', 'triforcehunt']: rom.write_byte(0x18003E, 0x01) # make ganon invincible @@ -950,6 +946,24 @@ def patch_rom(world, player, rom): 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) + rom.write_int16(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) + if world.mode == '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) + rom.write_int16(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) + 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) + # 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) diff --git a/Rules.py b/Rules.py index 0339ec98..116c4148 100644 --- a/Rules.py +++ b/Rules.py @@ -1,5 +1,6 @@ import collections import logging +from BaseClasses import CollectionState def set_rules(world, player): @@ -7,17 +8,17 @@ def set_rules(world, player): if world.logic == 'nologic': logging.getLogger('').info('WARNING! Seeds generated under this logic often require major glitches and may be impossible!') if world.mode != 'inverted': - world.get_region('Links House', player).can_reach = lambda state: True - world.get_region('Sanctuary', player).can_reach = lambda state: True + world.get_region('Links House', player).can_reach_private = lambda state: True + world.get_region('Sanctuary', player).can_reach_private = lambda state: True old_rule = world.get_region('Old Man House', player).can_reach - world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) return else: - world.get_region('Inverted Links House', player).can_reach = lambda state: True - world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach = lambda state: True + world.get_region('Inverted Links House', player).can_reach_private = lambda state: True + world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach_private = lambda state: True if world.shuffle != 'vanilla': old_rule = world.get_region('Old Man House', player).can_reach - world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) return if world.mode != 'inverted': global_rules(world, player) @@ -90,6 +91,9 @@ def forbid_item(location, item, player): old_rule = location.item_rule location.item_rule = lambda i: (i.name != item or i.player != player) and old_rule(i) +def add_item_rule(location, rule): + old_rule = location.item_rule + location.item_rule = lambda item: rule(item) and old_rule(item) def item_in_locations(state, item, player, locations): for location in locations: @@ -111,15 +115,20 @@ def global_rules(world, player): forbid_item(location, 'Triforce Piece', player) # ganon can only carry triforce - world.get_location('Ganon', player).item_rule = lambda item: item.name == 'Triforce' and item.player == player + add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) - # these are default save&quit points and always accessible - world.get_region('Links House', player).can_reach = lambda state: True - world.get_region('Sanctuary', player).can_reach = lambda state: True + if world.mode == 'standard': + world.get_region('Hyrule Castle Secret Entrance', player).can_reach_private = lambda state: True + old_rule = world.get_region('Links House', player).can_reach + world.get_region('Links House', player).can_reach_private = lambda state: state.can_reach('Sanctuary', 'Region', player) or old_rule(state) + else: + # these are default save&quit points and always accessible + world.get_region('Links House', player).can_reach_private = lambda state: True + world.get_region('Sanctuary', player).can_reach_private = lambda state: True # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! old_rule = world.get_region('Old Man House', player).can_reach - world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) # overworld requirements set_rule(world.get_entrance('Kings Grave', player), lambda state: state.has_Boots(player)) @@ -454,14 +463,20 @@ def global_rules(world, player): set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) def inverted_rules(world, player): - world.get_location('Ganon', player).item_rule = lambda item: item.name == 'Triforce' and item.player == player - world.get_region('Inverted Links House', player).can_reach = lambda state: True - world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach = lambda state: True + if world.goal == 'triforcehunt': + for location in world.get_locations(): + if location.player != player: + forbid_item(location, 'Triforce Piece', player) + + add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) + + world.get_region('Inverted Links House', player).can_reach_private = lambda state: True + world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach_private = lambda state: True # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! if world.shuffle != 'vanilla': old_rule = world.get_region('Old Man House', player).can_reach - world.get_region('Old Man House', player).can_reach = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) # overworld requirements 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)) @@ -930,9 +945,21 @@ def swordless_rules(world, player): def standard_rules(world, player): - for loc in ['Sanctuary', 'Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', - 'Sewers - Secret Room - Right']: - add_rule(world.get_location(loc, player), lambda state: state.can_kill_most_things(player) and state.has_key('Small Key (Escape)', player)) + add_rule(world.get_entrance('Sewers Door', player), lambda state: state.can_kill_most_things(player)) + + set_rule(world.get_entrance('Hyrule Castle Exit (East)', player), lambda state: state.can_reach('Sanctuary', 'Region', player)) + set_rule(world.get_entrance('Hyrule Castle Exit (West)', player), lambda state: state.can_reach('Sanctuary', 'Region', player)) + + # ensures the required weapon for escape lands on uncle (unless player has it pre-equipped) + add_rule(world.get_location('Secret Passage', player), lambda state: state.can_kill_most_things(player)) + add_rule(world.get_location('Hyrule Castle - Map Chest', player), lambda state: state.can_kill_most_things(player)) + + def uncle_item_rule(item): + copy_state = CollectionState(world) + copy_state.collect(item) + return copy_state.can_reach('Sanctuary', 'Region', player) + + add_item_rule(world.get_location('Link\'s Uncle', player), uncle_item_rule) # easiest way to enforce key placement not relevant for open set_rule(world.get_location('Sewers - Dark Cross', player), lambda state: state.can_kill_most_things(player)) From 996bf8495c6373e1c36f830fa05dfab5403ed166 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 10 Aug 2019 15:30:14 -0400 Subject: [PATCH 022/185] Implement new weapons modes This also includes some partial additional cleanup of the item pool. --- BaseClasses.py | 9 ++++- ItemList.py | 97 ++++++++++++++++++++++++++------------------------ Main.py | 1 + Rom.py | 12 +++++++ Rules.py | 1 + 5 files changed, 73 insertions(+), 47 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 6e2335d4..cdee826a 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -3,7 +3,7 @@ from enum import Enum, unique import logging import json from collections import OrderedDict -from _vendor.collections_extended import bag, setlist +from _vendor.collections_extended import bag from Utils import int16_as_bytes class World(object): @@ -24,6 +24,7 @@ class World(object): self.shops = [] self.itempool = [] self.seed = None + self.precollected_items = [] self.state = CollectionState(self) self.required_medallions = dict([(player, ['Ether', 'Quake']) for player in range(1, players + 1)]) self._cached_entrances = None @@ -195,6 +196,10 @@ class World(object): def find_items(self, item, player): return [location for location in self.get_locations() if location.item is not None and location.item.name == item and location.item.player == player] + def push_precollected(self, item): + self.precollected_items.append(item) + self.state.collect(item, True) + def push_item(self, location, item, collect=True): if not isinstance(location, Location): raise RuntimeError('Cannot assign item %s to location %s (player %d).' % (item, location, item.player)) @@ -302,6 +307,8 @@ class CollectionState(object): self.path = {} self.locations_checked = set() self.stale = {player: True for player in range(1, parent.players + 1)} + for item in parent.precollected_items: + self.collect(item, True) def update_reachable_regions(self, player): player_regions = [region for region in self.world.regions if region.player == player] diff --git a/ItemList.py b/ItemList.py index 205a41af..f72d2179 100644 --- a/ItemList.py +++ b/ItemList.py @@ -21,43 +21,24 @@ basicgloves = ['Power Glove', 'Titans Mitts'] normalbottles = ['Bottle', 'Bottle (Red Potion)', 'Bottle (Green Potion)', 'Bottle (Blue Potion)', 'Bottle (Fairy)', 'Bottle (Bee)', 'Bottle (Good Bee)'] hardbottles = ['Bottle', 'Bottle (Red Potion)', 'Bottle (Green Potion)', 'Bottle (Blue Potion)', 'Bottle (Bee)', 'Bottle (Good Bee)'] -normalbaseitems = (['Silver Arrows', 'Magic Upgrade (1/2)', 'Single Arrow', 'Sanctuary Heart Container', 'Arrows (10)', 'Bombs (3)'] + +normalbaseitems = (['Silver Arrows', 'Magic Upgrade (1/2)', 'Single Arrow', 'Sanctuary Heart Container', 'Arrows (10)', 'Bombs (10)'] + ['Rupees (300)'] * 4 + ['Boss Heart Container'] * 10 + ['Piece of Heart'] * 24) normalfirst15extra = ['Rupees (100)', 'Rupees (300)', 'Rupees (50)'] + ['Arrows (10)'] * 6 + ['Bombs (3)'] * 6 -normalsecond15extra = ['Bombs (3)'] * 9 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupee (1)'] + ['Bombs (10)'] +normalsecond15extra = ['Bombs (3)'] * 10 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupee (1)'] normalthird10extra = ['Rupees (50)'] * 4 + ['Rupees (20)'] * 3 + ['Arrows (10)', 'Rupee (1)', 'Rupees (5)'] normalfourth5extra = ['Arrows (10)'] * 2 + ['Rupees (20)'] * 2 + ['Rupees (5)'] normalfinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 -hardbaseitems = ['Silver Arrows', 'Single Arrow', 'Bombs (10)'] + ['Rupees (300)'] * 4 + ['Boss Heart Container'] * 6 + ['Piece of Heart'] * 20 + ['Rupees (5)'] * 7 + ['Bombs (3)'] * 4 -hardfirst20extra = ['Rupees (100)', 'Rupees (300)', 'Rupees (50)'] + ['Bombs (3)'] * 5 + ['Rupees (5)'] * 10 + ['Arrows (10)', 'Rupee (1)'] -hardsecond10extra = ['Rupees (5)'] * 5 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupee (1)'] -hardthird10extra = ['Rupees (50)'] * 4 + ['Rupees (20)'] * 3 + ['Rupees (5)'] * 3 -hardfourth10extra = ['Arrows (10)'] * 2 + ['Rupees (20)'] * 7 + ['Rupees (5)'] -hardfinal20extra = ['Rupees (20)'] * 18 + ['Rupees (5)'] * 2 - -expertbaseitems = (['Rupees (300)'] * 4 + ['Single Arrow', 'Silver Arrows', 'Boss Heart Container', 'Rupee (1)', 'Bombs (10)'] + ['Piece of Heart'] * 20 + ['Rupees (5)'] * 2 + - ['Bombs (3)'] * 9 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupees (20)'] * 2) -expertfirst15extra = ['Rupees (100)', 'Rupees (300)', 'Rupees (50)'] + ['Rupees (5)'] * 12 -expertsecond15extra = ['Rupees (5)'] * 10 + ['Rupees (20)'] * 5 -expertthird10extra = ['Rupees (50)'] * 4 + ['Rupees (5)'] * 2 + ['Arrows (10)'] * 3 + ['Rupee (1)'] -expertfourth5extra = ['Rupees (5)'] * 5 -expertfinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 - Difficulty = namedtuple('Difficulty', ['baseitems', 'bottles', 'bottle_count', 'same_bottle', 'progressiveshield', 'basicshield', 'progressivearmor', 'basicarmor', 'swordless', 'progressivesword', 'basicsword', 'timedohko', 'timedother', - 'triforcehunt', 'triforce_pieces_required', 'retro', 'conditional_extras', + 'triforcehunt', 'triforce_pieces_required', 'retro', 'extras', 'progressive_sword_limit', 'progressive_shield_limit', 'progressive_armor_limit', 'progressive_bottle_limit']) total_items_to_place = 153 -def no_conditional_extras(*_args): - return [] - - difficulties = { 'normal': Difficulty( baseitems = normalbaseitems, @@ -76,7 +57,6 @@ difficulties = { triforcehunt = ['Triforce Piece'] * 30, triforce_pieces_required = 20, retro = ['Small Key (Universal)'] * 17 + ['Rupees (20)'] * 10, - conditional_extras = no_conditional_extras, extras = [normalfirst15extra, normalsecond15extra, normalthird10extra, normalfourth5extra, normalfinal25extra], progressive_sword_limit = 4, progressive_shield_limit = 3, @@ -84,7 +64,7 @@ difficulties = { progressive_bottle_limit = 4, ), 'hard': Difficulty( - baseitems = hardbaseitems, + baseitems = normalbaseitems, bottles = hardbottles, bottle_count = 4, same_bottle = False, @@ -95,27 +75,26 @@ difficulties = { swordless = ['Rupees (20)'] * 4, progressivesword = ['Progressive Sword'] * 3, basicsword = ['Master Sword', 'Master Sword', 'Tempered Sword'], - timedohko = ['Green Clock'] * 20, + timedohko = ['Green Clock'] * 25, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, triforcehunt = ['Triforce Piece'] * 30, triforce_pieces_required = 20, retro = ['Small Key (Universal)'] * 12 + ['Rupees (5)'] * 15, - conditional_extras = no_conditional_extras, - extras = [hardfirst20extra, hardsecond10extra, hardthird10extra, hardfourth10extra, hardfinal20extra], + extras = [normalfirst15extra, normalsecond15extra, normalthird10extra, normalfourth5extra, normalfinal25extra], progressive_sword_limit = 3, progressive_shield_limit = 2, progressive_armor_limit = 1, progressive_bottle_limit = 4, ), 'expert': Difficulty( - baseitems = expertbaseitems, + baseitems = normalbaseitems, bottles = hardbottles, bottle_count = 4, same_bottle = False, progressiveshield = ['Progressive Shield'] * 3, basicshield = ['Progressive Shield'] * 3, #only the first one will upgrade, making this equivalent to two blue shields - progressivearmor = [], - basicarmor = [], + progressivearmor = ['Progressive Armor'] * 2, # neither will count + basicarmor = ['Progressive Armor'] * 2, # neither will count swordless = ['Rupees (20)'] * 4, progressivesword = ['Progressive Sword'] * 3, basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword'], @@ -124,8 +103,7 @@ difficulties = { triforcehunt = ['Triforce Piece'] * 30, triforce_pieces_required = 20, retro = ['Small Key (Universal)'] * 12 + ['Rupees (5)'] * 15, - conditional_extras = no_conditional_extras, - extras = [expertfirst15extra, expertsecond15extra, expertthird10extra, expertfourth5extra, expertfinal25extra], + extras = [normalfirst15extra, normalsecond15extra, normalthird10extra, normalfourth5extra, normalfinal25extra], progressive_sword_limit = 2, progressive_shield_limit = 1, progressive_armor_limit = 0, @@ -169,11 +147,13 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[67], 9999) else: - (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro) world.itempool += ItemFactory(pool, player) + for item in precollected_items: + world.push_precollected(ItemFactory(item, player)) for (location, item) in placed_items: world.push_item(world.get_location(location, player), ItemFactory(item, player), False) world.get_location(location, player).event = True @@ -301,7 +281,7 @@ def fill_prizes(world, attempts=15): random.shuffle(prize_locs) fill_restrictive(world, all_state, prize_locs, prizepool) except FillError as e: - logging.getLogger('').info("Failed to place dungeon prizes (%s). Will retry %s more times" % (e, attempts)) + logging.getLogger('').info("Failed to place dungeon prizes (%s). Will retry %s more times", e, attempts) for location in empty_crystal_locations: location.item = None continue @@ -335,6 +315,7 @@ def set_up_shops(world, player): def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, retro): pool = [] placed_items = [] + precollected_items = [] clock_mode = None treasure_hunt_count = None treasure_hunt_icon = None @@ -387,6 +368,31 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r if swords == 'swordless': pool.extend(diff.swordless) + elif swords == 'assured': + precollected_items.append('Fighter Sword') + if want_progressives(): + pool.extend(diff.progressivesword) + pool.extend(['Rupees (100)']) + else: + pool.extend(diff.basicsword) + pool.extend(['Rupees (100)']) + elif swords == 'vanilla': + swords_to_use = [] + if want_progressives(): + swords_to_use.extend(diff.progressivesword) + swords_to_use.extend(['Progressive Sword']) + else: + swords_to_use.extend(diff.basicsword) + swords_to_use.extend(['Fighter Sword']) + random.shuffle(swords_to_use) + + placed_items.append(('Link\'s Uncle', swords_to_use.pop())) + placed_items.append(('Blacksmith', swords_to_use.pop())) + placed_items.append(('Pyramid Fairy - Left', swords_to_use.pop())) + if goal != 'pedestal': + placed_items.append(('Master Sword Pedestal', swords_to_use.pop())) + else: + placed_items.append(('Master Sword Pedestal', 'Triforce')) else: if want_progressives(): pool.extend(diff.progressivesword) @@ -411,16 +417,12 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r treasure_hunt_count = diff.triforce_pieces_required treasure_hunt_icon = 'Triforce Piece' - cond_extras = diff.conditional_extras(timer, goal, mode, pool, placed_items) - pool.extend(cond_extras) - extraitems -= len(cond_extras) - for extra in diff.extras: if extraitems > 0: pool.extend(extra) extraitems -= len(extra) - if goal == 'pedestal': + if goal == 'pedestal' and swords != 'vanilla': placed_items.append(('Master Sword Pedestal', 'Triforce')) if retro: pool = [item.replace('Single Arrow','Rupees (5)') for item in pool] @@ -433,11 +435,12 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r placed_items.append((key_location, 'Small Key (Universal)')) else: pool.extend(['Small Key (Universal)']) - return (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) + return (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, swords, retro, customitemarray): pool = [] placed_items = [] + precollected_items = [] clock_mode = None treasure_hunt_count = None treasure_hunt_icon = None @@ -561,7 +564,7 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s pool.extend(['Fighter Sword'] * customitemarray[32]) pool.extend(['Progressive Sword'] * customitemarray[36]) - + if shuffle == 'insanity_legacy': placed_items.append(('Link\'s House', 'Magic Mirror')) placed_items.append(('Sanctuary', 'Moon Pearl')) @@ -576,7 +579,7 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s if itemtotal < total_items_to_place: pool.extend(['Nothing'] * (total_items_to_place - itemtotal)) - return (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) + return (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) # A quick test to ensure all combinations generate the correct amount of items. def test(): @@ -592,13 +595,15 @@ def test(): count = len(out[0]) + len(out[1]) correct_count = total_items_to_place - if goal in ['pedestal']: + if goal == 'pedestal' and swords != 'vanilla': # pedestal goals generate one extra item correct_count += 1 if retro: correct_count += 28 - - assert count == correct_count, "expected {0} items but found {1} items for {2}".format(correct_count, count, (progressive, shuffle, difficulty, timer, goal, mode, retro)) + try: + assert count == correct_count, "expected {0} items but found {1} items for {2}".format(correct_count, count, (progressive, shuffle, difficulty, timer, goal, mode, swords, retro)) + except AssertionError as e: + print(e) if __name__ == '__main__': test() diff --git a/Main.py b/Main.py index 24a4ff9c..81096152 100644 --- a/Main.py +++ b/Main.py @@ -247,6 +247,7 @@ def copy_world(world): # copy progress items in state ret.state.prog_items = world.state.prog_items.copy() + ret.precollected_items = world.precollected_items.copy() ret.state.stale = {player: True for player in range(1, world.players + 1)} for player in range(1, world.players + 1): diff --git a/Rom.py b/Rom.py index 3d88033d..95f22fb1 100644 --- a/Rom.py +++ b/Rom.py @@ -858,6 +858,18 @@ def patch_rom(world, player, rom): rom.write_byte(0x18302C, 0x18) # starting max health rom.write_byte(0x18302D, 0x18) # starting current health rom.write_byte(0x183039, 0x68) # starting abilities, bit array + + for item in world.precollected_items: + if item.player != player: + continue + + if item.name == 'Fighter Sword': + rom.write_byte(0x183000+0x19, 0x01) + rom.write_byte(0x0271A6+0x19, 0x01) + rom.write_byte(0x180043, 0x01) # special starting sword byte + else: + raise RuntimeError("Unsupported pre-collected item: {}".format(item)) + rom.write_byte(0x18004A, 0x00 if world.mode != 'inverted' else 0x01) # Inverted mode rom.write_byte(0x18005D, 0x00) # Hammer always breaks barrier rom.write_byte(0x2AF79, 0xD0 if world.mode != 'inverted' else 0xF0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) diff --git a/Rules.py b/Rules.py index 116c4148..b193f4d9 100644 --- a/Rules.py +++ b/Rules.py @@ -957,6 +957,7 @@ def standard_rules(world, player): def uncle_item_rule(item): copy_state = CollectionState(world) copy_state.collect(item) + copy_state.sweep_for_events() return copy_state.can_reach('Sanctuary', 'Region', player) add_item_rule(world.get_location('Link\'s Uncle', player), uncle_item_rule) From 418568df60fd22ef681565c775c0253969be49b8 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 10 Aug 2019 19:37:26 -0400 Subject: [PATCH 023/185] Add Item functionality setting and progressive bow Progressive bows still have issue for silvers hint --- BaseClasses.py | 19 ++++++++++++------- EntranceRandomizer.py | 7 +++++++ ItemList.py | 35 +++++++++++++++++++++++++++++------ Main.py | 6 +++--- README.md | 6 ++++++ Rom.py | 30 +++++++++++++++++++----------- 6 files changed, 76 insertions(+), 27 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index cdee826a..1195010c 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -8,13 +8,14 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, players, shuffle, logic, mode, swords, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): + def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, place_dungeon_items, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): self.players = players self.shuffle = shuffle self.logic = logic self.mode = mode self.swords = swords self.difficulty = difficulty + self.difficulty_adjustments = difficulty_adjustments self.timer = timer self.progressive = progressive self.goal = goal @@ -166,9 +167,9 @@ class World(object): elif 'Bow' in item.name: if ret.has('Silver Arrows', item.player): pass - elif ret.has('Bow', item.player): + elif ret.has('Bow', item.player) and self.difficulty_requirements.progressive_bow_limit >= 2: ret.prog_items.add(('Silver Arrows', item.player)) - else: + elif self.difficulty_requirements.progressive_bow_limit >= 1: ret.prog_items.add(('Bow', item.player)) elif item.name.startswith('Bottle'): if ret.bottle_count(item.player) < self.difficulty_requirements.progressive_bottle_limit: @@ -403,10 +404,11 @@ class CollectionState(object): def heart_count(self, player): # Warning: This only considers items that are marked as advancement items + diff = self.world.difficulty_requirements return ( - self.item_count('Boss Heart Container', player) + min(self.item_count('Boss Heart Container', player), diff.boss_heart_container_limit) + self.item_count('Sanctuary Heart Container', player) - + self.item_count('Piece of Heart', player) // 4 + + min(self.item_count('Piece of Heart', player), diff.heart_piece_limit) // 4 + 3 # starting hearts ) @@ -420,9 +422,9 @@ class CollectionState(object): elif self.has('Half Magic', player): basemagic = 16 if self.can_buy_unlimited('Green Potion', player) or self.can_buy_unlimited('Blue Potion', player): - if self.world.difficulty == 'hard' and not fullrefill: + if self.world.difficulty_adjustments == 'hard' and not fullrefill: basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count(player)) - elif self.world.difficulty == 'expert' and not fullrefill: + elif self.world.difficulty_adjustments == 'expert' and not fullrefill: basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count(player)) else: basemagic = basemagic + basemagic * self.bottle_count(player) @@ -1019,6 +1021,7 @@ class Spoiler(object): 'shuffle': self.world.shuffle, 'algorithm': self.world.algorithm, 'difficulty': self.world.difficulty, + 'difficulty_mode': self.world.difficulty_adjustments, 'timer': self.world.timer, 'progressive': self.world.progressive, 'accessibility': self.world.accessibility, @@ -1052,6 +1055,8 @@ class Spoiler(object): outfile.write('Logic: %s\n' % self.metadata['logic']) outfile.write('Mode: %s\n' % self.metadata['mode']) outfile.write('Goal: %s\n' % self.metadata['goal']) + outfile.write('Difficulty: %s\n' % self.metadata['difficulty']) + outfile.write('Item Functionality: %s\n' % self.metadata['difficulty_mode']) outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle']) outfile.write('Filling Algorithm: %s\n' % self.metadata['algorithm']) outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 1803dd73..71c739e7 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -74,6 +74,13 @@ def start(): Hard: A harder setting with less equipment and reduced health. Expert: A harder yet setting with minimum equipment and health. ''') + parser.add_argument('--item_functionality', default='normal', const='normal', nargs='?', choices=['normal', 'hard', 'expert'], + help='''\ + Select limits on item functionality to increase difficulty. (default: %(default)s) + Normal: Normal functionality. + Hard: Reduced functionality. + Expert: Greatly reduced functionality. + ''') parser.add_argument('--timer', default='none', const='normal', nargs='?', choices=['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'], help='''\ Select game timer setting. Affects available itempool. (default: %(default)s) diff --git a/ItemList.py b/ItemList.py index f72d2179..d8df5fbd 100644 --- a/ItemList.py +++ b/ItemList.py @@ -13,7 +13,7 @@ from Items import ItemFactory #This file sets the item pools for various modes. Timed modes and triforce hunt are enforced first, and then extra items are specified per mode to fill in the remaining space. #Some basic items that various modes require are placed here, including pendants and crystals. Medallion requirements for the two relevant entrances are also decided. -alwaysitems = ['Bombos', 'Book of Mudora', 'Bow', 'Cane of Somaria', 'Ether', 'Fire Rod', 'Flippers', 'Ocarina', 'Hammer', 'Hookshot', 'Ice Rod', 'Lamp', +alwaysitems = ['Bombos', 'Book of Mudora', 'Cane of Somaria', 'Ether', 'Fire Rod', 'Flippers', 'Ocarina', 'Hammer', 'Hookshot', 'Ice Rod', 'Lamp', 'Cape', 'Magic Powder', 'Mushroom', 'Pegasus Boots', 'Quake', 'Shovel', 'Bug Catching Net', 'Cane of Byrna', 'Blue Boomerang', 'Red Boomerang'] progressivegloves = ['Progressive Glove'] * 2 basicgloves = ['Power Glove', 'Titans Mitts'] @@ -21,7 +21,7 @@ basicgloves = ['Power Glove', 'Titans Mitts'] normalbottles = ['Bottle', 'Bottle (Red Potion)', 'Bottle (Green Potion)', 'Bottle (Blue Potion)', 'Bottle (Fairy)', 'Bottle (Bee)', 'Bottle (Good Bee)'] hardbottles = ['Bottle', 'Bottle (Red Potion)', 'Bottle (Green Potion)', 'Bottle (Blue Potion)', 'Bottle (Bee)', 'Bottle (Good Bee)'] -normalbaseitems = (['Silver Arrows', 'Magic Upgrade (1/2)', 'Single Arrow', 'Sanctuary Heart Container', 'Arrows (10)', 'Bombs (10)'] + +normalbaseitems = (['Magic Upgrade (1/2)', 'Single Arrow', 'Sanctuary Heart Container', 'Arrows (10)', 'Bombs (10)'] + ['Rupees (300)'] * 4 + ['Boss Heart Container'] * 10 + ['Piece of Heart'] * 24) normalfirst15extra = ['Rupees (100)', 'Rupees (300)', 'Rupees (50)'] + ['Arrows (10)'] * 6 + ['Bombs (3)'] * 6 normalsecond15extra = ['Bombs (3)'] * 10 + ['Rupees (50)'] * 2 + ['Arrows (10)'] * 2 + ['Rupee (1)'] @@ -32,10 +32,11 @@ normalfinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 Difficulty = namedtuple('Difficulty', ['baseitems', 'bottles', 'bottle_count', 'same_bottle', 'progressiveshield', 'basicshield', 'progressivearmor', 'basicarmor', 'swordless', - 'progressivesword', 'basicsword', 'timedohko', 'timedother', + 'progressivesword', 'basicsword', 'basicbow', 'timedohko', 'timedother', 'triforcehunt', 'triforce_pieces_required', 'retro', 'extras', 'progressive_sword_limit', 'progressive_shield_limit', - 'progressive_armor_limit', 'progressive_bottle_limit']) + 'progressive_armor_limit', 'progressive_bottle_limit', + 'progressive_bow_limit', 'heart_piece_limit', 'boss_heart_container_limit']) total_items_to_place = 153 @@ -52,6 +53,7 @@ difficulties = { swordless = ['Rupees (20)'] * 4, progressivesword = ['Progressive Sword'] * 3, basicsword = ['Master Sword', 'Tempered Sword', 'Golden Sword'], + basicbow = ['Bow', 'Silver Arrows'], timedohko = ['Green Clock'] * 25, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, triforcehunt = ['Triforce Piece'] * 30, @@ -61,7 +63,10 @@ difficulties = { progressive_sword_limit = 4, progressive_shield_limit = 3, progressive_armor_limit = 2, + progressive_bow_limit = 2, progressive_bottle_limit = 4, + boss_heart_container_limit = 255, + heart_piece_limit = 255, ), 'hard': Difficulty( baseitems = normalbaseitems, @@ -71,10 +76,11 @@ difficulties = { progressiveshield = ['Progressive Shield'] * 3, basicshield = ['Blue Shield', 'Red Shield', 'Red Shield'], progressivearmor = ['Progressive Armor'] * 2, - basicarmor = ['Progressive Armor'] * 2, #only the first one will upgrade, making this equivalent to two blue mail + basicarmor = ['Progressive Armor'] * 2, # neither will count swordless = ['Rupees (20)'] * 4, progressivesword = ['Progressive Sword'] * 3, basicsword = ['Master Sword', 'Master Sword', 'Tempered Sword'], + basicbow = ['Bow'] * 2, timedohko = ['Green Clock'] * 25, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, triforcehunt = ['Triforce Piece'] * 30, @@ -83,8 +89,11 @@ difficulties = { extras = [normalfirst15extra, normalsecond15extra, normalthird10extra, normalfourth5extra, normalfinal25extra], progressive_sword_limit = 3, progressive_shield_limit = 2, - progressive_armor_limit = 1, + progressive_armor_limit = 0, + progressive_bow_limit = 1, progressive_bottle_limit = 4, + boss_heart_container_limit = 6, + heart_piece_limit = 16, ), 'expert': Difficulty( baseitems = normalbaseitems, @@ -98,6 +107,7 @@ difficulties = { swordless = ['Rupees (20)'] * 4, progressivesword = ['Progressive Sword'] * 3, basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword'], + basicbow = ['Bow'] * 2, timedohko = ['Green Clock'] * 20 + ['Red Clock'] * 5, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, triforcehunt = ['Triforce Piece'] * 30, @@ -107,7 +117,10 @@ difficulties = { progressive_sword_limit = 2, progressive_shield_limit = 1, progressive_armor_limit = 0, + progressive_bow_limit = 1, progressive_bottle_limit = 4, + boss_heart_container_limit = 2, + heart_piece_limit = 8, ), } @@ -366,8 +379,18 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r else: pool.extend(diff.basicarmor) + if swords != 'swordless': + if want_progressives(): + pool.extend(['Progressive Bow'] * 2) + else: + pool.extend(diff.basicbow) + if swords == 'swordless': pool.extend(diff.swordless) + if want_progressives(): + pool.extend(['Progressive Bow'] * 2) + else: + pool.extend(['Bow', 'Silver Arrows']) elif swords == 'assured': precollected_items.append('Fighter Sword') if want_progressives(): diff --git a/Main.py b/Main.py index 81096152..69cb831c 100644 --- a/Main.py +++ b/Main.py @@ -24,7 +24,7 @@ def main(args, seed=None): start = time.clock() # initialize the world - world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -117,7 +117,7 @@ def main(args, seed=None): else: sprite = None - outfilebase = 'ER_%s_%s-%s-%s%s_%s-%s%s%s%s%s_%s' % (world.logic, world.difficulty, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "", world.seed) + outfilebase = 'ER_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s_%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "", world.seed) use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) @@ -180,7 +180,7 @@ def gt_filler(world): def copy_world(world): # ToDo: Not good yet - ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) + ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() diff --git a/README.md b/README.md index d1be5fc0..b0628d14 100644 --- a/README.md +++ b/README.md @@ -348,6 +348,12 @@ Select the game completion goal. (default: ganon) Select the game difficulty. Affects available itempool. (default: normal) +``` +--item_functionality [{normal,hard,expert}] +``` + +Select limits on item functionality to increase difficulty. (default: normal) + ``` --timer [{none,display,timed,timed-ohko,ohko,timed-countdown}] ``` diff --git a/Rom.py b/Rom.py index 95f22fb1..f5bca52c 100644 --- a/Rom.py +++ b/Rom.py @@ -580,8 +580,9 @@ def patch_rom(world, player, rom): GREEN_CLOCK = ItemFactory('Green Clock', player).code rom.write_byte(0x18004F, 0x01) # Byrna Invulnerability: on - # handle difficulty - if world.difficulty == 'hard': + + # handle difficulty_adjustments + if world.difficulty_adjustments == 'hard': # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount @@ -599,9 +600,7 @@ def patch_rom(world, player, rom): rom.write_int16(0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x02) # Hookshot only - # Make silver arrows only usable against Ganon - rom.write_byte(0x180181, 0x01) - elif world.difficulty == 'expert': + elif world.difficulty_adjustments == 'expert': # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount @@ -619,8 +618,6 @@ def patch_rom(world, player, rom): rom.write_int16(0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x00) # Nothing - # Make silver arrows only usable against Ganon - rom.write_byte(0x180181, 0x01) else: # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xE3) # fairy @@ -638,20 +635,28 @@ def patch_rom(world, player, rom): rom.write_int16(0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x03) # All standard items - # Make silver arrows freely usable - rom.write_byte(0x180181, 0x00) #Set overflow items for progressive equipment if world.timer in ['timed', 'timed-countdown', 'timed-ohko']: overflow_replacement = GREEN_CLOCK else: overflow_replacement = GREEN_TWENTY_RUPEES + rom.write_byte(0x180181, 0x00) # Make silver arrows freely usable rom.write_byte(0x180182, 0x01) # auto equip silvers on pickup #Byrna residual magic cost rom.write_bytes(0x45C42, [0x04, 0x02, 0x01]) difficulty = world.difficulty_requirements + + if difficulty.progressive_bow_limit < 2 and world.swords == 'swordless': + # TODO: write 2 to progressive bow limit byte + rom.write_byte(0x180181, 0x01) # Make silver arrows work on on ganon + else: + # TODO: write difficulty.progressive_bow_limit to progressive bow limit byte + pass + + #Set overflow items for progressive equipment rom.write_bytes(0x180090, [difficulty.progressive_sword_limit, overflow_replacement, @@ -686,7 +691,7 @@ def patch_rom(world, player, rom): random.shuffle(packs) prizes[:56] = [drop for pack in packs for drop in pack] - if world.difficulty in ['hard', 'expert']: + if world.difficulty_adjustments in ['hard', 'expert']: prize_replacements = {0xE0: 0xDF, # Fairy -> heart 0xE3: 0xD8} # Big magic -> small magic prizes = [prize_replacements.get(prize, prize) for prize in prizes] @@ -735,6 +740,9 @@ def patch_rom(world, player, rom): 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees 0x51, 0x06, 0x52, 0xFF, # 6 +5 bomb upgrades -> +10 bomb upgrade 0x53, 0x06, 0x54, 0xFF, # 6 +5 arrow upgrades -> +10 arrow upgrade + 0x58, 0x01, 0x36 if world.retro else 0x43, 0xFF, # silver arrows -> single arrow (red 20 in retro mode) + 0x3E, difficulty.boss_heart_container_limit, 0x47, 0xff, # boss heart -> green 20 + 0x17, difficulty.heart_piece_limit, 0x47, 0xff, # piece of heart -> green 20 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel ]) @@ -804,7 +812,7 @@ def patch_rom(world, player, rom): rom.write_int32(0x180200, -100 * 60 * 60 * 60) # red clock adjustment time (in frames, sint32) rom.write_int32(0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) rom.write_int32(0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) - if world.difficulty == 'normal': + if world.difficulty_adjustments == 'normal': rom.write_int32(0x18020C, (10 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) else: rom.write_int32(0x18020C, int((5 + ERtimeincrease / 2) * 60 * 60)) # starting time (in frames, sint32) From 0377d6b7bce012355f856b966b2890f78855f070 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 11 Aug 2019 08:55:38 -0400 Subject: [PATCH 024/185] Finish support for variable crystal requirements Note: We still do not have anything to reveal required Ganon crystal counts in inverted mode. For non-inverted it is revealed at a sign on the pyramid, which might be less than ideal. --- EntranceRandomizer.py | 17 +++++++++++++++++ Main.py | 5 +++++ 2 files changed, 22 insertions(+) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 71c739e7..46908a9b 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -162,6 +162,23 @@ def start(): The dungeon variants only mix up dungeons and keep the rest of the overworld vanilla. ''') + parser.add_argument('--crystals_ganon', default='7', const='7', nargs='?', choices=['random', '0', '1', '2', '3', '4', '5', '6', '7'], + help='''\ + How many crystals are needed to defeat ganon. Any other + requirements for ganon for the selected goal still apply. + This setting does not apply when the all dungeons goal is + selected. (default: %(default)s) + Random: Picks a random value between 0 and 7 (inclusive). + 0-7: Number of crystals needed + ''') + parser.add_argument('--crystals_gt', default='7', const='7', nargs='?', choices=['random', '0', '1', '2', '3', '4', '5', '6', '7'], + help='''\ + How many crystals are needed to open GT. For inverted mode + this applies to the castle tower door instead. (default: %(default)s) + Random: Picks a random value between 0 and 7 (inclusive). + 0-7: Number of crystals needed + ''') + parser.add_argument('--rom', default='Zelda no Densetsu - Kamigami no Triforce (Japan).sfc', help='Path to an ALttP JAP(1.0) rom to use as a base.') parser.add_argument('--loglevel', default='info', const='info', nargs='?', choices=['error', 'info', 'warning', 'debug'], help='Select level of logging for output.') parser.add_argument('--seed', help='Define seed number to generate.', type=int) diff --git a/Main.py b/Main.py index 69cb831c..2ff95183 100644 --- a/Main.py +++ b/Main.py @@ -33,6 +33,9 @@ def main(args, seed=None): world.seed = int(seed) random.seed(world.seed) + world.crystals_needed_for_ganon = random.randint(0, 7) if args.crystals_ganon == 'random' else int(args.crystals_ganon) + world.crystals_needed_for_gt = random.randint(0, 7) if args.crystals_gt == 'random' else int(args.crystals_gt) + world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed) @@ -200,6 +203,8 @@ def copy_world(world): ret.difficulty_requirements = world.difficulty_requirements ret.fix_fake_world = world.fix_fake_world ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms + ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon + ret.crystals_needed_for_gt = world.crystals_needed_for_gt if world.mode != 'inverted': for player in range(1, world.players + 1): From c042442d98c37e84e5444c467a09e237e22272e6 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Thu, 8 Aug 2019 00:05:58 -0400 Subject: [PATCH 025/185] Pre bomb TR doors in inverted --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 1195010c..be6397fd 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -50,7 +50,7 @@ class World(object): self.rupoor_cost = 10 self.aga_randomness = True self.lock_aga_door_in_escape = False - self.fix_trock_doors = self.shuffle != 'vanilla' + self.fix_trock_doors = self.shuffle != 'vanilla' or self.mode == 'inverted' self.save_and_quit_from_boss = True self.accessibility = accessibility self.fix_skullwoods_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] From 46be1fb4825e474300404242503e89c78bc64fe3 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Thu, 8 Aug 2019 00:48:27 -0400 Subject: [PATCH 026/185] Fix Old Man Cave Exit region connections --- EntranceShuffle.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 5718dd86..d57b941a 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -3288,8 +3288,8 @@ default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing'), ('Old Man Cave (West)', 'Old Man Cave'), ('Old Man Cave (East)', 'Old Man Cave'), - ('Old Man Cave Exit (West)', 'Death Mountain'), - ('Old Man Cave Exit (East)', 'Light World'), + ('Old Man Cave Exit (West)', 'Light World'), + ('Old Man Cave Exit (East)', 'Death Mountain'), ('Old Man House (Bottom)', 'Old Man House'), ('Old Man House Exit (Bottom)', 'Death Mountain'), ('Old Man House (Top)', 'Old Man House Back'), @@ -3499,8 +3499,8 @@ inverted_default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing' ('Inverted Dark Sanctuary', 'Inverted Dark Sanctuary'), ('Old Man Cave (West)', 'Bumper Cave'), ('Old Man Cave (East)', 'Death Mountain Return Cave'), - ('Old Man Cave Exit (West)', 'Dark Death Mountain'), - ('Old Man Cave Exit (East)', 'East Dark World'), + ('Old Man Cave Exit (West)', 'West Dark World'), + ('Old Man Cave Exit (East)', 'Dark Death Mountain'), ('Dark Death Mountain Fairy', 'Old Man Cave'), ('Bumper Cave (Bottom)', 'Old Man Cave'), ('Bumper Cave (Top)', 'Dark Death Mountain Healer Fairy'), From 990eab4e5543006ff0895cea3631c4b9b1de4e34 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 17 Aug 2019 15:11:25 -0400 Subject: [PATCH 027/185] Fix broken retro mode --- Main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 2ff95183..786a91a1 100644 --- a/Main.py +++ b/Main.py @@ -263,6 +263,7 @@ def copy_world(world): def copy_dynamic_regions_and_locations(world, ret): for region in world.dynamic_regions: new_reg = Region(region.name, region.type, region.hint_text, region.player) + new_reg.world = ret ret.regions.append(new_reg) ret.dynamic_regions.append(new_reg) @@ -273,9 +274,11 @@ def copy_dynamic_regions_and_locations(world, ret): ret.shops.append(new_reg.shop) for location in world.dynamic_locations: - new_loc = Location(location.player, location.name, location.address, location.crystal, location.hint_text, location.parent_region,) new_reg = ret.get_region(location.parent_region.name, location.parent_region.player) + new_loc = Location(location.player, location.name, location.address, location.crystal, location.hint_text, new_reg) new_reg.locations.append(new_loc) + + ret.clear_location_cache() def create_playthrough(world): From 72d4e6c76a23d1b7c1f449135c10c7730fbf852e Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 17 Aug 2019 15:12:12 -0400 Subject: [PATCH 028/185] Fix standard mode for madness+ --- EntranceShuffle.py | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index d57b941a..8e84207f 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -520,7 +520,7 @@ def link_entrances(world, player): dw_entrances_must_exits = list(DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit) lw_doors = list(LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit) + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', - 'Lumberjack Tree Cave', 'Hyrule Castle Secret Entrance Stairs'] + list(Old_Man_Entrances) + 'Lumberjack Tree Cave'] + list(Old_Man_Entrances) dw_doors = list(DW_Entrances + DW_Dungeon_Entrances + DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit) + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] random.shuffle(lw_doors) @@ -530,7 +530,7 @@ def link_entrances(world, player): dw_entrances.append('Skull Woods Second Section Door (East)') dw_entrances.append('Skull Woods First Section Door') - lw_entrances.extend(['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)']) + lw_entrances.extend(['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave']) lw_entrances_must_exits = list(LW_Dungeon_Entrances_Must_Exit) @@ -556,10 +556,11 @@ def link_entrances(world, player): # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) - connect_entrance(world, lw_doors.pop(), 'Hyrule Castle Secret Entrance Exit', player) + connect_entrance(world, 'Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Exit', player) else: lw_hole_entrances.append('Hyrule Castle Secret Entrance Drop') hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) + lw_doors.append('Hyrule Castle Secret Entrance Stairs') lw_entrances.append('Hyrule Castle Secret Entrance Stairs') if not world.shuffle_ganon: @@ -608,11 +609,11 @@ def link_entrances(world, player): if world.mode == 'standard': # must connect front of hyrule castle to do escape connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) - random.shuffle(lw_entrances) - connect_exit(world, 'Hyrule Castle Exit (South)', lw_entrances.pop(), player) + connect_exit(world, 'Hyrule Castle Exit (South)', 'Hyrule Castle Entrance (South)', player) mandatory_light_world.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) else: lw_doors.append('Hyrule Castle Entrance (South)') + lw_entrances.append('Hyrule Castle Entrance (South)') caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) # now let's deal with mandatory reachable stuff @@ -757,10 +758,10 @@ def link_entrances(world, player): elif world.shuffle == 'insanity': # beware ye who enter here - entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] + entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave'] entrances_must_exits = DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + LW_Dungeon_Entrances_Must_Exit + ['Skull Woods Second Section Door (West)'] - doors = LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Secret Entrance Stairs'] + Old_Man_Entrances +\ + doors = LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave'] + Old_Man_Entrances +\ DW_Entrances + DW_Dungeon_Entrances + DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] +\ LW_Single_Cave_Doors + DW_Single_Cave_Doors @@ -795,10 +796,11 @@ def link_entrances(world, player): # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) - connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit', player) + connect_entrance(world, 'Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Exit', player) else: hole_entrances.append('Hyrule Castle Secret Entrance Drop') hole_targets.append('Hyrule Castle Secret Entrance') + doors.append('Hyrule Castle Secret Entrance Stairs') entrances.append('Hyrule Castle Secret Entrance Stairs') caves.append('Hyrule Castle Secret Entrance Exit') @@ -826,10 +828,11 @@ def link_entrances(world, player): if world.mode == 'standard': # must connect front of hyrule castle to do escape connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) - connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop(), player) + connect_exit(world, 'Hyrule Castle Exit (South)', 'Hyrule Castle Entrance (South)', player) caves.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) else: doors.append('Hyrule Castle Entrance (South)') + entrances.append('Hyrule Castle Entrance (South)') caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) # now let's deal with mandatory reachable stuff @@ -903,10 +906,10 @@ def link_entrances(world, player): world.fix_fake_world = False # beware ye who enter here - entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] + entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave'] entrances_must_exits = DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + LW_Dungeon_Entrances_Must_Exit + ['Skull Woods Second Section Door (West)'] - doors = LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Secret Entrance Stairs'] + Old_Man_Entrances +\ + doors = LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave'] + Old_Man_Entrances +\ DW_Entrances + DW_Dungeon_Entrances + DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] random.shuffle(doors) @@ -928,10 +931,11 @@ def link_entrances(world, player): # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) - connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit', player) + connect_entrance(world, 'Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Exit', player) else: hole_entrances.append('Hyrule Castle Secret Entrance Drop') hole_targets.append('Hyrule Castle Secret Entrance') + doors.append('Hyrule Castle Secret Entrance Stairs') entrances.append('Hyrule Castle Secret Entrance Stairs') caves.append('Hyrule Castle Secret Entrance Exit') @@ -959,10 +963,11 @@ def link_entrances(world, player): if world.mode == 'standard': # must connect front of hyrule castle to do escape connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) - connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop(), player) + connect_exit(world, 'Hyrule Castle Exit (South)', 'Hyrule Castle Entrance (South)', player) caves.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) else: doors.append('Hyrule Castle Entrance (South)') + entrances.append('Hyrule Castle Entrance (South)') caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) # now let's deal with mandatory reachable stuff From c0acfdd81eafc236f2cf3002fcedb685280357cc Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Wed, 21 Aug 2019 22:40:19 -0400 Subject: [PATCH 029/185] New silver arrow hints Supporting progressive bows. --- Rom.py | 29 +++++++++++++++++++++++++++-- Text.py | 14 +++++++++----- 2 files changed, 36 insertions(+), 7 deletions(-) diff --git a/Rom.py b/Rom.py index f5bca52c..785182b2 100644 --- a/Rom.py +++ b/Rom.py @@ -434,6 +434,14 @@ class Sprite(object): def patch_rom(world, player, rom): random.seed(world.rom_seeds[player]) + + # progressive bow silver arrow hint hack + prog_bow_locs = world.find_items('Progressive Bow', player) + if len(prog_bow_locs) > 1: + # only pick a distingushed bow if we have at least two + distinguished_prog_bow_loc = random.choice(prog_bow_locs) + distinguished_prog_bow_loc.item.code = 0x65 + # patch items for location in world.get_locations(): if location.player != player: @@ -1321,11 +1329,28 @@ def write_strings(rom, world, player): for location in hint_locations: tt[location] = junk_hints.pop(0) - # We still need the older hints of course. Those are done here. + # We still need the older hints of course. Those are done here. + + silverarrows = world.find_items('Silver Arrows', player) random.shuffle(silverarrows) silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' - tt['ganon_phase_3'] = 'Did you find the silver arrows%s' % silverarrow_hint + tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint + + prog_bow_locs = world.find_items('Progressive Bow', player) + distinguished_prog_bow_loc = next((location for location in prog_bow_locs if location.item.code == 0x65), None) + if distinguished_prog_bow_loc: + prog_bow_locs.remove(distinguished_prog_bow_loc) + silverarrow_hint = (' %s?' % hint_text(distinguished_prog_bow_loc).replace('Ganon\'s', 'my')) + tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint + + if any(prog_bow_locs): + silverarrow_hint = (' %s?' % hint_text(random.choice(prog_bow_locs)).replace('Ganon\'s', 'my')) + tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint + + + silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' + crystal5 = world.find_items('Crystal 5', player)[0] crystal6 = world.find_items('Crystal 6', player)[0] diff --git a/Text.py b/Text.py index 7cafee7d..a5e03bda 100644 --- a/Text.py +++ b/Text.py @@ -535,7 +535,7 @@ class MultiByteCoreTextMapper(object): "{INTRO}": [0x6E, 0x00, 0x77, 0x07, 0x7A, 0x03, 0x6B, 0x02, 0x67], "{NOTEXT}": [0x6E, 0x00, 0x6B, 0x04], "{IBOX}": [0x6B, 0x02, 0x77, 0x07, 0x7A, 0x03], - "{C:GREEN}": [0x77, 0x07], + "{C:GREEN}": [0x77, 0x07], "{C:YELLOW}": [0x77, 0x02], } @@ -552,10 +552,10 @@ class MultiByteCoreTextMapper(object): linespace = wrap line = lines.pop(0) if line.startswith('{'): - if line == '{PAGEBREAK}': - if lineindex % 3 != 0: - # insert a wait for keypress, unless we just did so - outbuf.append(0x7E) + if line == '{PAGEBREAK}': + if lineindex % 3 != 0: + # insert a wait for keypress, unless we just did so + outbuf.append(0x7E) lineindex = 0 outbuf.extend(cls.special_commands[line]) continue @@ -1885,5 +1885,9 @@ class TextTable(object): text['fish_money'] = CompressedTextMapper.convert("It's a secret to everyone.") text['sign_ganons_tower'] = CompressedTextMapper.convert("You need all 7 crystals to enter.") text['sign_ganon'] = CompressedTextMapper.convert("You need all 7 crystals to beat Ganon.") + text['ganon_phase_3_no_bow'] = CompressedTextMapper.convert("You have no bow. Dingus!") + text['ganon_phase_3_no_silvers_alt'] = CompressedTextMapper.convert("You can't best me without silver arrows!") + text['ganon_phase_3_no_silvers'] = CompressedTextMapper.convert("You can't best me without silver arrows!") + text['ganon_phase_3_silvers'] = CompressedTextMapper.convert("Oh no! Silver! My one true weakness!") text['end_pad_data'] = bytearray([0xfb]) text['terminator'] = bytearray([0xFF, 0xFF]) From d8c28b733aa059ee4198e163a7c3583ba487a673 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Sun, 18 Aug 2019 15:22:13 -0400 Subject: [PATCH 030/185] Change to Bosses.py for inverted enemizer compatibility --- Bosses.py | 48 +++++++++++++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 15 deletions(-) diff --git a/Bosses.py b/Bosses.py index 8cdaee5a..30cd56da 100644 --- a/Bosses.py +++ b/Bosses.py @@ -141,21 +141,39 @@ def place_bosses(world, player): if world.boss_shuffle == 'none': return # Most to least restrictive order - boss_locations = [ - ['Ganons Tower', 'top'], - ['Tower of Hera', None], - ['Skull Woods', None], - ['Ganons Tower', 'middle'], - ['Eastern Palace', None], - ['Desert Palace', None], - ['Palace of Darkness', None], - ['Swamp Palace', None], - ['Thieves Town', None], - ['Ice Palace', None], - ['Misery Mire', None], - ['Turtle Rock', None], - ['Ganons Tower', 'bottom'], - ] + if world.mode != 'inverted': + boss_locations = [ + ['Ganons Tower', 'top'], + ['Tower of Hera', None], + ['Skull Woods', None], + ['Ganons Tower', 'middle'], + ['Eastern Palace', None], + ['Desert Palace', None], + ['Palace of Darkness', None], + ['Swamp Palace', None], + ['Thieves Town', None], + ['Ice Palace', None], + ['Misery Mire', None], + ['Turtle Rock', None], + ['Ganons Tower', 'bottom'], + ] + else: + boss_locations = [ + ['Inverted Ganons Tower', 'top'], + ['Tower of Hera', None], + ['Skull Woods', None], + ['Inverted Ganons Tower', 'middle'], + ['Eastern Palace', None], + ['Desert Palace', None], + ['Palace of Darkness', None], + ['Swamp Palace', None], + ['Thieves Town', None], + ['Ice Palace', None], + ['Misery Mire', None], + ['Turtle Rock', None], + ['Inverted Ganons Tower', 'bottom'], + ] + all_bosses = sorted(boss_table.keys()) #s orted to be deterministic on older pythons placeable_bosses = [boss for boss in all_bosses if boss not in ['Agahnim', 'Agahnim2', 'Ganon']] From 3d64e2bef3940143176e365769a526856a195cc1 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Fri, 23 Aug 2019 10:18:37 -0400 Subject: [PATCH 031/185] Put player on HC ledge after dying to Ganon in inverted --- EntranceShuffle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 8e84207f..0fafb1d2 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -1749,9 +1749,9 @@ def link_inverted_entrances(world, player): world.powder_patch_required[player] = True # check for ganon location - if world.get_entrance('Inverted Pyramid Hole', player).connected_region.name != 'Hyrule Castle Ledge': + if world.get_entrance('Inverted Pyramid Hole', player).connected_region.name != 'Pyramid': world.ganon_at_pyramid[player] = False - + # check for Ganon's Tower location if world.get_entrance('Inverted Ganons Tower', player).connected_region.name != 'Ganons Tower (Entrance)': world.ganonstower_vanilla[player] = False From fe1505408ad04e36073506ce75dd803b45ea8a88 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Fri, 23 Aug 2019 21:46:49 -0400 Subject: [PATCH 032/185] Fix mirror bonking in inverted reverted a change and fixed some inverted writes I messed up initially --- Rom.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 785182b2..0a9f249d 100644 --- a/Rom.py +++ b/Rom.py @@ -891,7 +891,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x2AF79, 0xD0 if world.mode != 'inverted' else 0xF0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) rom.write_byte(0x3A943, 0xD0 if world.mode != 'inverted' else 0xF0) # Mirror: Normal (D0=Dark to Light, F0=light to dark, 42 = both) rom.write_byte(0x3A96D, 0xF0 if world.mode != 'inverted' else 0xD0) # Residual Portal: Normal (F0= Light Side, D0=Dark Side, 42 = both (Darth Vader)) - rom.write_byte(0x3A9A7, 0xD0 if world.mode != 'inverted' else 0xF0) # Residual Portal: Normal (D0= Light Side, F0=Dark Side, 42 = both (Darth Vader)) + rom.write_byte(0x3A9A7, 0xD0) # Residual Portal: Normal (D0= Light Side, F0=Dark Side, 42 = both (Darth Vader)) rom.write_bytes(0x180080, [50, 50, 70, 70]) # values to fill for Capacity Upgrades (Bomb5, Bomb10, Arrow5, Arrow10) @@ -1445,11 +1445,14 @@ def set_inverted_mode(world, rom): rom.write_byte(snes_to_pc(0x0283E0), 0xF0) # residual portals rom.write_byte(snes_to_pc(0x02B34D), 0xF0) rom.write_byte(snes_to_pc(0x06DB78), 0x8B) + rom.write_byte(snes_to_pc(0x05AF79), 0xF0) rom.write_byte(snes_to_pc(0x0DB3C5), 0xC6) rom.write_byte(snes_to_pc(0x07A3F4), 0xF0) # duck rom.write_int16s(snes_to_pc(0x02E849), [0x0043, 0x0056, 0x0058, 0x006C, 0x006F, 0x0070, 0x007B, 0x007F, 0x001B]) # dw flute rom.write_int16(snes_to_pc(0x02E8D5), 0x07C8) rom.write_int16(snes_to_pc(0x02E8F7), 0x01F8) + rom.write_byte(0x7A943, 0xF0) + rom.write_byte(0x7A96D, 0xD0) rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof # the following bytes should only be written in vanilla # or they'll overwrite the randomizer's shuffles From ec9709f0093da837a6e6f2de462adb92fb8892fa Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 24 Aug 2019 15:35:23 -0400 Subject: [PATCH 033/185] Preopen GT for 0 crystals --- Rom.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Rom.py b/Rom.py index 0a9f249d..2dcc4f16 100644 --- a/Rom.py +++ b/Rom.py @@ -860,6 +860,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x50599, 0x00) # disable below ganon chest rom.write_bytes(0xE9A5, [0x7E, 0x00, 0x24]) # disable below ganon chest rom.write_byte(0x18008B, 0x00) # Pyramid Hole not pre-opened + rom.write_byte(0x18008C, 0x01 if world.crystals_needed_for_gt == 0 else 0x00) # Pyramid Hole pre-opened if crystal requirement is 0 rom.write_byte(0xF5D73, 0xF0) # bees are catchable rom.write_byte(0xF5F10, 0xF0) # bees are catchable rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness From eb1b5053e56ab8b0b6d0061e12b1dbf69da864bb Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 24 Aug 2019 15:35:58 -0400 Subject: [PATCH 034/185] update json spoiler meta section --- BaseClasses.py | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index be6397fd..792804a6 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -1013,24 +1013,17 @@ class Spoiler(object): from Main import __version__ as ERVersion self.metadata = {'version': ERVersion, - 'seed': self.world.seed, 'logic': self.world.logic, 'mode': self.world.mode, - 'swords': self.world.swords, + 'weapons': self.world.swords, 'goal': self.world.goal, 'shuffle': self.world.shuffle, - 'algorithm': self.world.algorithm, - 'difficulty': self.world.difficulty, - 'difficulty_mode': self.world.difficulty_adjustments, - 'timer': self.world.timer, - 'progressive': self.world.progressive, + 'item_pool': self.world.difficulty, + 'item_functionality': self.world.difficulty_adjustments, 'accessibility': self.world.accessibility, - 'dungeonitems': self.world.place_dungeon_items, - 'quickswap': self.world.quickswap, - 'fastmenu': self.world.fastmenu, - 'disable_music': self.world.disable_music, + 'hints': self.world.hints, 'keysanity': self.world.keysanity, - 'players': self.world.players} + } def to_json(self): self.parse_data() From 6a6058adb31bb9548c2786a938e16f320a80aa20 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 24 Aug 2019 15:36:54 -0400 Subject: [PATCH 035/185] Update goal sign/ganon taunts --- Rom.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index 2dcc4f16..2794a703 100644 --- a/Rom.py +++ b/Rom.py @@ -1363,6 +1363,9 @@ def write_strings(rom, world, player): tt['sign_ganons_tower'] = ('You need %d crystal to enter.' if world.crystals_needed_for_gt == 1 else 'You need %d crystals to enter.') % world.crystals_needed_for_gt tt['sign_ganon'] = ('You need %d crystal to beat Ganon.' if world.crystals_needed_for_ganon == 1 else 'You need %d crystals to beat Ganon.') % world.crystals_needed_for_ganon + if world.goal in ['dungeons']: + tt['sign_ganon'] = 'You need to complete all the dungeons.' + tt['uncle_leaving_text'] = Uncle_texts[random.randint(0, len(Uncle_texts) - 1)] tt['end_triforce'] = "{NOBORDER}\n" + Triforce_texts[random.randint(0, len(Triforce_texts) - 1)] tt['bomb_shop_big_bomb'] = BombShop2_texts[random.randint(0, len(BombShop2_texts) - 1)] @@ -1371,13 +1374,19 @@ def write_strings(rom, world, player): tt['sahasrahla_quest_have_master_sword'] = Sahasrahla2_texts[random.randint(0, len(Sahasrahla2_texts) - 1)] tt['blind_by_the_light'] = Blind_texts[random.randint(0, len(Blind_texts) - 1)] - if world.goal in ['pedestal', 'triforcehunt']: - tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me!' + if world.goal in ['triforcehunt']: + tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Get the Triforce Pieces.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' + tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invuinvincible!' + elif world.goal in ['pedestal']: + tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Your goal is at the pedestal.' + tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' + tt['sign_ganon'] = 'You need to get to the pedestal... Ganon is invincible!' else: tt['ganon_fall_in'] = Ganon1_texts[random.randint(0, len(Ganon1_texts) - 1)] tt['ganon_fall_in_alt'] = 'You cannot defeat me until you finish your goal!' tt['ganon_phase_3_alt'] = 'Got wax in\nyour ears?\nI can not die!' + tt['kakariko_tavern_fisherman'] = TavernMan_texts[random.randint(0, len(TavernMan_texts) - 1)] pedestalitem = world.get_location('Master Sword Pedestal', player).item From e29f39c58531fa3968db75ff2c8ad34cbc8e8881 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 24 Aug 2019 15:38:22 -0400 Subject: [PATCH 036/185] Mark as pre-release --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 786a91a1..bba6c61a 100644 --- a/Main.py +++ b/Main.py @@ -18,7 +18,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute from ItemList import generate_itempool, difficulties, fill_prizes from Utils import output_path -__version__ = '0.6.2' +__version__ = '0.6.3-pre' def main(args, seed=None): start = time.clock() From df6bf6f99c779ce0ad65d2083c38e5b224b61cdb Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sat, 24 Aug 2019 15:53:21 -0400 Subject: [PATCH 037/185] Fix errors --- BaseClasses.py | 16 ++++++++-------- Rom.py | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 792804a6..4715fff6 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -1044,20 +1044,20 @@ class Spoiler(object): def to_file(self, filename): self.parse_data() with open(filename, 'w') as outfile: - outfile.write('ALttP Entrance Randomizer Version %s - Seed: %s\n\n' % (self.metadata['version'], self.metadata['seed'])) + outfile.write('ALttP Entrance Randomizer Version %s - Seed: %s\n\n' % (self.metadata['version'], self.world.seed)) outfile.write('Logic: %s\n' % self.metadata['logic']) outfile.write('Mode: %s\n' % self.metadata['mode']) outfile.write('Goal: %s\n' % self.metadata['goal']) - outfile.write('Difficulty: %s\n' % self.metadata['difficulty']) - outfile.write('Item Functionality: %s\n' % self.metadata['difficulty_mode']) + outfile.write('Difficulty: %s\n' % self.metadata['item_pool']) + outfile.write('Item Functionality: %s\n' % self.metadata['item_functionality']) outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle']) - outfile.write('Filling Algorithm: %s\n' % self.metadata['algorithm']) + outfile.write('Filling Algorithm: %s\n' % self.world.algorithm) outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) - outfile.write('Maps and Compasses in Dungeons: %s\n' % ('Yes' if self.metadata['dungeonitems'] else 'No')) - outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.metadata['quickswap'] else 'No')) - outfile.write('Menu speed: %s\n' % self.metadata['fastmenu']) + outfile.write('Maps and Compasses in Dungeons: %s\n' % ('Yes' if self.world.place_dungeon_items else 'No')) + outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) + outfile.write('Menu speed: %s\n' % self.world.fastmenu) outfile.write('Keysanity enabled: %s\n' % ('Yes' if self.metadata['keysanity'] else 'No')) - outfile.write('Players: %d' % self.metadata['players']) + outfile.write('Players: %d' % self.world.players) if self.entrances: outfile.write('\n\nEntrances:\n\n') outfile.write('\n'.join(['%s%s %s %s' % ('Player {0}: '.format(entry['player']) if self.world.players >1 else '', entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) diff --git a/Rom.py b/Rom.py index 2794a703..357d7e54 100644 --- a/Rom.py +++ b/Rom.py @@ -1026,7 +1026,7 @@ def patch_rom(world, player, rom): # set rom name # 21 bytes from Main import __version__ - rom.name = bytearray('ER_{0}_{1:09}\0'.format(__version__,world.seed), 'utf8') + rom.name = bytearray('ER_{0}_{1:09}\0'.format(__version__[0:7],world.seed), 'utf8') assert len(rom.name) <= 21 rom.write_bytes(0x7FC0, rom.name) From 7dfff45a84cedec72f6b4a0305e4a13293676eaf Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 25 Aug 2019 22:22:31 -0400 Subject: [PATCH 038/185] Fix typo --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 357d7e54..f7e0e1b2 100644 --- a/Rom.py +++ b/Rom.py @@ -1377,7 +1377,7 @@ def write_strings(rom, world, player): if world.goal in ['triforcehunt']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Get the Triforce Pieces.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' - tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invuinvincible!' + tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invincible!' elif world.goal in ['pedestal']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Your goal is at the pedestal.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' From 05e5d6227db22363f2970c3bd875b623c632e60e Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 25 Aug 2019 22:24:35 -0400 Subject: [PATCH 039/185] Remove text for faster fairy potion fill --- Text.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Text.py b/Text.py index a5e03bda..517ccf18 100644 --- a/Text.py +++ b/Text.py @@ -1432,6 +1432,7 @@ class TextTable(object): 'desert_thief_question_yes', 'desert_thief_after_item_get', 'desert_thief_reassure', + 'pond_item_bottle_filled' ] for msg in messages_to_zero: From 12d7459a60dd6d00762b823b9ddf1cc3e252172a Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 25 Aug 2019 22:28:12 -0400 Subject: [PATCH 040/185] Implement progressive bow limit --- Rom.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/Rom.py b/Rom.py index f7e0e1b2..d79b84a8 100644 --- a/Rom.py +++ b/Rom.py @@ -657,20 +657,17 @@ def patch_rom(world, player, rom): difficulty = world.difficulty_requirements - if difficulty.progressive_bow_limit < 2 and world.swords == 'swordless': - # TODO: write 2 to progressive bow limit byte - rom.write_byte(0x180181, 0x01) # Make silver arrows work on on ganon - else: - # TODO: write difficulty.progressive_bow_limit to progressive bow limit byte - pass - - #Set overflow items for progressive equipment rom.write_bytes(0x180090, [difficulty.progressive_sword_limit, overflow_replacement, difficulty.progressive_shield_limit, overflow_replacement, difficulty.progressive_armor_limit, overflow_replacement, - difficulty.progressive_bottle_limit, overflow_replacement]) + difficulty.progressive_bottle_limit, overflow_replacement, + difficulty.progressive_bow_limit, overflow_replacement]) + + if difficulty.progressive_bow_limit < 2 and world.swords == 'swordless': + rom.write_bytes(0x180098, [2, overflow_replacement]) + rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon # set up game internal RNG seed for i in range(1024): From fd1074d58af354f8430f91da819f517e08af79f7 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Sun, 25 Aug 2019 00:54:08 -0400 Subject: [PATCH 041/185] Adjust swordless rules for inverted --- Rules.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Rules.py b/Rules.py index b193f4d9..18dcff8c 100644 --- a/Rules.py +++ b/Rules.py @@ -932,17 +932,23 @@ def open_rules(world, player): 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('Agahnim 1', player), lambda state: (state.has('Hammer', player) or state.has('Fire Rod', player) or state.can_shoot_arrows(player) or state.has('Cane of Somaria', player)) and state.has_key('Small Key (Agahnims Tower)', player, 2)) set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has('Hammer', 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)) - 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_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('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player)) # no curtain set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.has('Fire Rod', player) or state.has('Bombos', player)) #in swordless mode bombos pads are present in the relevant parts of ice palace set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has_crystals(world.crystals_needed_for_ganon, player)) set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has('Hammer', player)) # need to damage ganon to get tiles to drop + if world.mode != 'inverted': + 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)) + 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 (!) + set_rule(world.get_entrance('Misery Mire', player), lambda state: 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)) def standard_rules(world, player): add_rule(world.get_entrance('Sewers Door', player), lambda state: state.can_kill_most_things(player)) From 2bd2ae80de7feb5053364ff9d370d00fb4f9bb39 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 25 Aug 2019 22:35:03 -0400 Subject: [PATCH 042/185] Remove obsolete comment --- Rules.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Rules.py b/Rules.py index 18dcff8c..fb609fb8 100644 --- a/Rules.py +++ b/Rules.py @@ -34,7 +34,6 @@ def set_rules(world, player): raise NotImplementedError('Not implemented yet') if world.swords == 'swordless': - # FIXME: !!! Does not handle inverted properly swordless_rules(world, player) if world.logic == 'noglitches': From 895d274b02f64e140d79f1c60746dbd0a45b6d3f Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Sun, 25 Aug 2019 22:36:19 -0400 Subject: [PATCH 043/185] New music muting mechanism --- Rom.py | 59 +--------------------------------------------------------- 1 file changed, 1 insertion(+), 58 deletions(-) diff --git a/Rom.py b/Rom.py index d79b84a8..01d25247 100644 --- a/Rom.py +++ b/Rom.py @@ -1098,64 +1098,7 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr rom.write_byte(0x18004B, 0x01 if quickswap else 0x00) - music_volumes = [ - (0x00, [0xD373B, 0xD375B, 0xD90F8]), - (0x14, [0xDA710, 0xDA7A4, 0xDA7BB, 0xDA7D2]), - (0x3C, [0xD5954, 0xD653B, 0xDA736, 0xDA752, 0xDA772, 0xDA792]), - (0x50, [0xD5B47, 0xD5B5E]), - (0x54, [0xD4306]), - (0x64, [0xD6878, 0xD6883, 0xD6E48, 0xD6E76, 0xD6EFB, 0xD6F2D, 0xDA211, 0xDA35B, 0xDA37B, 0xDA38E, 0xDA39F, 0xDA5C3, 0xDA691, 0xDA6A8, 0xDA6DF]), - (0x78, [0xD2349, 0xD3F45, 0xD42EB, 0xD48B9, 0xD48FF, 0xD543F, 0xD5817, 0xD5957, 0xD5ACB, 0xD5AE8, 0xD5B4A, 0xDA5DE, 0xDA608, 0xDA635, - 0xDA662, 0xDA71F, 0xDA7AF, 0xDA7C6, 0xDA7DD]), - (0x82, [0xD2F00, 0xDA3D5]), - (0xA0, [0xD249C, 0xD24CD, 0xD2C09, 0xD2C53, 0xD2CAF, 0xD2CEB, 0xD2D91, 0xD2EE6, 0xD38ED, 0xD3C91, 0xD3CD3, 0xD3CE8, 0xD3F0C, - 0xD3F82, 0xD405F, 0xD4139, 0xD4198, 0xD41D5, 0xD41F6, 0xD422B, 0xD4270, 0xD42B1, 0xD4334, 0xD4371, 0xD43A6, 0xD43DB, - 0xD441E, 0xD4597, 0xD4B3C, 0xD4BAB, 0xD4C03, 0xD4C53, 0xD4C7F, 0xD4D9C, 0xD5424, 0xD65D2, 0xD664F, 0xD6698, 0xD66FF, - 0xD6985, 0xD6C5C, 0xD6C6F, 0xD6C8E, 0xD6CB4, 0xD6D7D, 0xD827D, 0xD960C, 0xD9828, 0xDA233, 0xDA3A2, 0xDA49E, 0xDA72B, - 0xDA745, 0xDA765, 0xDA785, 0xDABF6, 0xDAC0D, 0xDAEBE, 0xDAFAC]), - (0xAA, [0xD9A02, 0xD9BD6]), - (0xB4, [0xD21CD, 0xD2279, 0xD2E66, 0xD2E70, 0xD2EAB, 0xD3B97, 0xD3BAC, 0xD3BE8, 0xD3C0D, 0xD3C39, 0xD3C68, 0xD3C9F, 0xD3CBC, - 0xD401E, 0xD4290, 0xD443E, 0xD456F, 0xD47D3, 0xD4D43, 0xD4DCC, 0xD4EBA, 0xD4F0B, 0xD4FE5, 0xD5012, 0xD54BC, 0xD54D5, - 0xD54F0, 0xD5509, 0xD57D8, 0xD59B9, 0xD5A2F, 0xD5AEB, 0xD5E5E, 0xD5FE9, 0xD658F, 0xD674A, 0xD6827, 0xD69D6, 0xD69F5, - 0xD6A05, 0xD6AE9, 0xD6DCF, 0xD6E20, 0xD6ECB, 0xD71D4, 0xD71E6, 0xD7203, 0xD721E, 0xD8724, 0xD8732, 0xD9652, 0xD9698, - 0xD9CBC, 0xD9DC0, 0xD9E49, 0xDAA68, 0xDAA77, 0xDAA88, 0xDAA99, 0xDAF04]), - (0x8c, [0xD1D28, 0xD1D41, 0xD1D5C, 0xD1D77, 0xD1EEE, 0xD311D, 0xD31D1, 0xD4148, 0xD5543, 0xD5B6F, 0xD65B3, 0xD6760, 0xD6B6B, - 0xD6DF6, 0xD6E0D, 0xD73A1, 0xD814C, 0xD825D, 0xD82BE, 0xD8340, 0xD8394, 0xD842C, 0xD8796, 0xD8903, 0xD892A, 0xD91E8, - 0xD922B, 0xD92E0, 0xD937E, 0xD93C1, 0xDA958, 0xDA971, 0xDA98C, 0xDA9A7]), - (0xC8, [0xD1D92, 0xD1DBD, 0xD1DEB, 0xD1F5D, 0xD1F9F, 0xD1FBD, 0xD1FDC, 0xD1FEA, 0xD20CA, 0xD21BB, 0xD22C9, 0xD2754, 0xD284C, - 0xD2866, 0xD2887, 0xD28A0, 0xD28BA, 0xD28DB, 0xD28F4, 0xD293E, 0xD2BF3, 0xD2C1F, 0xD2C69, 0xD2CA1, 0xD2CC5, 0xD2D05, - 0xD2D73, 0xD2DAF, 0xD2E3D, 0xD2F36, 0xD2F46, 0xD2F6F, 0xD2FCF, 0xD2FDF, 0xD302B, 0xD3086, 0xD3099, 0xD30A5, 0xD30CD, - 0xD30F6, 0xD3154, 0xD3184, 0xD333A, 0xD33D9, 0xD349F, 0xD354A, 0xD35E5, 0xD3624, 0xD363C, 0xD3672, 0xD3691, 0xD36B4, - 0xD36C6, 0xD3724, 0xD3767, 0xD38CB, 0xD3B1D, 0xD3B2F, 0xD3B55, 0xD3B70, 0xD3B81, 0xD3BBF, 0xD3F65, 0xD3FA6, 0xD404F, - 0xD4087, 0xD417A, 0xD41A0, 0xD425C, 0xD4319, 0xD433C, 0xD43EF, 0xD440C, 0xD4452, 0xD4494, 0xD44B5, 0xD4512, 0xD45D1, - 0xD45EF, 0xD4682, 0xD46C3, 0xD483C, 0xD4848, 0xD4855, 0xD4862, 0xD486F, 0xD487C, 0xD4A1C, 0xD4A3B, 0xD4A60, 0xD4B27, - 0xD4C7A, 0xD4D12, 0xD4D81, 0xD4E90, 0xD4ED6, 0xD4EE2, 0xD5005, 0xD502E, 0xD503C, 0xD5081, 0xD51B1, 0xD51C7, 0xD51CF, - 0xD51EF, 0xD520C, 0xD5214, 0xD5231, 0xD5257, 0xD526D, 0xD5275, 0xD52AF, 0xD52BD, 0xD52CD, 0xD52DB, 0xD549C, 0xD5801, - 0xD58A4, 0xD5A68, 0xD5A7F, 0xD5C12, 0xD5D71, 0xD5E10, 0xD5E9A, 0xD5F8B, 0xD5FA4, 0xD651A, 0xD6542, 0xD65ED, 0xD661D, - 0xD66D7, 0xD6776, 0xD68BD, 0xD68E5, 0xD6956, 0xD6973, 0xD69A8, 0xD6A51, 0xD6A86, 0xD6B96, 0xD6C3E, 0xD6D4A, 0xD6E9C, - 0xD6F80, 0xD717E, 0xD7190, 0xD71B9, 0xD811D, 0xD8139, 0xD816B, 0xD818A, 0xD819E, 0xD81BE, 0xD829C, 0xD82E1, 0xD8306, - 0xD830E, 0xD835E, 0xD83AB, 0xD83CA, 0xD83F0, 0xD83F8, 0xD844B, 0xD8479, 0xD849E, 0xD84CB, 0xD84EB, 0xD84F3, 0xD854A, - 0xD8573, 0xD859D, 0xD85B4, 0xD85CE, 0xD862A, 0xD8681, 0xD87E3, 0xD87FF, 0xD887B, 0xD88C6, 0xD88E3, 0xD8944, 0xD897B, - 0xD8C97, 0xD8CA4, 0xD8CB3, 0xD8CC2, 0xD8CD1, 0xD8D01, 0xD917B, 0xD918C, 0xD919A, 0xD91B5, 0xD91D0, 0xD91DD, 0xD9220, - 0xD9273, 0xD9284, 0xD9292, 0xD92AD, 0xD92C8, 0xD92D5, 0xD9311, 0xD9322, 0xD9330, 0xD934B, 0xD9366, 0xD9373, 0xD93B6, - 0xD97A6, 0xD97C2, 0xD97DC, 0xD97FB, 0xD9811, 0xD98FF, 0xD996F, 0xD99A8, 0xD99D5, 0xD9A30, 0xD9A4E, 0xD9A6B, 0xD9A88, - 0xD9AF7, 0xD9B1D, 0xD9B43, 0xD9B7C, 0xD9BA9, 0xD9C84, 0xD9C8D, 0xD9CAC, 0xD9CE8, 0xD9CF3, 0xD9CFD, 0xD9D46, 0xDA35E, - 0xDA37E, 0xDA391, 0xDA478, 0xDA4C3, 0xDA4D7, 0xDA4F6, 0xDA515, 0xDA6E2, 0xDA9C2, 0xDA9ED, 0xDAA1B, 0xDAA57, 0xDABAF, - 0xDABC9, 0xDABE2, 0xDAC28, 0xDAC46, 0xDAC63, 0xDACB8, 0xDACEC, 0xDAD08, 0xDAD25, 0xDAD42, 0xDAD5F, 0xDAE17, 0xDAE34, - 0xDAE51, 0xDAF2E, 0xDAF55, 0xDAF6B, 0xDAF81, 0xDB14F, 0xDB16B, 0xDB180, 0xDB195, 0xDB1AA]), - (0xD2, [0xD2B88, 0xD364A, 0xD369F, 0xD3747]), - (0xDC, [0xD213F, 0xD2174, 0xD229E, 0xD2426, 0xD4731, 0xD4753, 0xD4774, 0xD4795, 0xD47B6, 0xD4AA5, 0xD4AE4, 0xD4B96, 0xD4CA5, - 0xD5477, 0xD5A3D, 0xD6566, 0xD672C, 0xD67C0, 0xD69B8, 0xD6AB1, 0xD6C05, 0xD6DB3, 0xD71AB, 0xD8E2D, 0xD8F0D, 0xD94E0, - 0xD9544, 0xD95A8, 0xD9982, 0xD9B56, 0xDA694, 0xDA6AB, 0xDAE88, 0xDAEC8, 0xDAEE6, 0xDB1BF]), - (0xE6, [0xD210A, 0xD22DC, 0xD2447, 0xD5A4D, 0xD5DDC, 0xDA251, 0xDA26C]), - (0xF0, [0xD945E, 0xD967D, 0xD96C2, 0xD9C95, 0xD9EE6, 0xDA5C6]), - (0xFA, [0xD2047, 0xD24C2, 0xD24EC, 0xD25A4, 0xD51A8, 0xD51E6, 0xD524E, 0xD529E, 0xD6045, 0xD81DE, 0xD821E, 0xD94AA, 0xD9A9E, - 0xD9AE4, 0xDA289]), - (0xFF, [0xD2085, 0xD21C5, 0xD5F28]) - ] - for volume, addresses in music_volumes: - for address in addresses: - rom.write_byte(address, volume if not disable_music else 0x00) + rom.write_byte(0x18021A, 1 if disable_music else 0x00) # restore Mirror sound effect volumes (for existing seeds that lack it) rom.write_byte(0xD3E04, 0xC8) From ab99e8c223183e4e24e271f2743982b57b08cac4 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Wed, 28 Aug 2019 21:12:44 -0400 Subject: [PATCH 044/185] Triforce Hunt turn-in logic --- BaseClasses.py | 2 +- ItemList.py | 14 ++++++++++++++ Main.py | 5 +++++ Rom.py | 2 ++ Text.py | 1 + 5 files changed, 23 insertions(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 4715fff6..ca6044c1 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -263,7 +263,7 @@ class World(object): def has_beaten_game(self, state, player=None): if player: - return state.has('Triforce', player) or (self.goal in ['triforcehunt'] and (state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > self.treasure_hunt_count)) + return state.has('Triforce', player) else: return all((self.has_beaten_game(state, p) for p in range(1, self.players + 1))) diff --git a/ItemList.py b/ItemList.py index d8df5fbd..a25423fb 100644 --- a/ItemList.py +++ b/ItemList.py @@ -137,6 +137,20 @@ def generate_itempool(world, player): else: world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) + if world.goal in ['triforcehunt']: + region = world.get_region('Hyrule Castle Courtyard', player) + + loc = Location(player, "Murahdahla", parent=region) + loc.access_rule = lambda state: state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > state.world.treasure_hunt_count + region.locations.append(loc) + world.dynamic_locations.append(loc) + + world.clear_location_cache() + + world.push_item(loc, ItemFactory('Triforce', player), False) + loc.event = True + loc.locked = True + world.get_location('Ganon', player).event = True world.get_location('Ganon', player).locked = True world.push_item(world.get_location('Agahnim 1', player), ItemFactory('Beat Agahnim 1', player), False) diff --git a/Main.py b/Main.py index bba6c61a..9442c8ab 100644 --- a/Main.py +++ b/Main.py @@ -276,6 +276,11 @@ def copy_dynamic_regions_and_locations(world, ret): for location in world.dynamic_locations: new_reg = ret.get_region(location.parent_region.name, location.parent_region.player) new_loc = Location(location.player, location.name, location.address, location.crystal, location.hint_text, new_reg) + # todo: this is potentially dangerous. later refactor so we + # can apply dynamic region rules on top of copied world like other rules + new_loc.access_rule = location.access_rule + new_loc.always_allow = location.always_allow + new_loc.item_rule = location.item_rule new_reg.locations.append(new_loc) ret.clear_location_cache() diff --git a/Rom.py b/Rom.py index 01d25247..2db68438 100644 --- a/Rom.py +++ b/Rom.py @@ -837,6 +837,7 @@ def patch_rom(world, player, rom): # set up goals for treasure hunt rom.write_bytes(0x180165, [0x0E, 0x28] if world.treasure_hunt_icon == 'Triforce Piece' else [0x0D, 0x28]) rom.write_byte(0x180167, world.treasure_hunt_count % 256) + rom.write_byte(0x180194, 1) # Must turn in triforced pieces (instant win not enabled) # TODO: a proper race rom mode should be implemented, that changes the following flag, and rummages the table (or uses the future encryption feature, etc) rom.write_bytes(0x180213, [0x00, 0x01]) # Not a Tournament Seed @@ -1318,6 +1319,7 @@ def write_strings(rom, world, player): tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Get the Triforce Pieces.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invincible!' + tt['murahdahla'] = "Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n{PAUSE3}\n… … …\nWait! you can see me? I knew I should have\nhidden in a hollow tree. If you bring\n%d triforce pieces, I can reassemble it." % world.treasure_hunt_count elif world.goal in ['pedestal']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Your goal is at the pedestal.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' diff --git a/Text.py b/Text.py index 517ccf18..ac254287 100644 --- a/Text.py +++ b/Text.py @@ -1890,5 +1890,6 @@ class TextTable(object): text['ganon_phase_3_no_silvers_alt'] = CompressedTextMapper.convert("You can't best me without silver arrows!") text['ganon_phase_3_no_silvers'] = CompressedTextMapper.convert("You can't best me without silver arrows!") text['ganon_phase_3_silvers'] = CompressedTextMapper.convert("Oh no! Silver! My one true weakness!") + text['murahdahla'] = CompressedTextMapper.convert("Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n{PAUSE3}\n… … …\nWait! you can see me? I knew I should have\nhidden in a hollow tree.") text['end_pad_data'] = bytearray([0xfb]) text['terminator'] = bytearray([0xFF, 0xFF]) From 0a759f18d653f2575aa145ff9da4a5aee9069df4 Mon Sep 17 00:00:00 2001 From: cassidoxa <43386495+cassidoxa@users.noreply.github.com> Date: Wed, 28 Aug 2019 21:13:35 -0400 Subject: [PATCH 045/185] Undo write causing map tile glitch in EP area (#9) --- Rom.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Rom.py b/Rom.py index 2db68438..f7960bfa 100644 --- a/Rom.py +++ b/Rom.py @@ -1403,8 +1403,6 @@ def set_inverted_mode(world, rom): rom.write_int16s(snes_to_pc(0x02E849), [0x0043, 0x0056, 0x0058, 0x006C, 0x006F, 0x0070, 0x007B, 0x007F, 0x001B]) # dw flute rom.write_int16(snes_to_pc(0x02E8D5), 0x07C8) rom.write_int16(snes_to_pc(0x02E8F7), 0x01F8) - rom.write_byte(0x7A943, 0xF0) - rom.write_byte(0x7A96D, 0xD0) rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof # the following bytes should only be written in vanilla # or they'll overwrite the randomizer's shuffles From 80217b269e3eae009d0772147ef0ef8cce6feae6 Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Wed, 28 Aug 2019 21:38:08 -0400 Subject: [PATCH 046/185] Fix inverted triforce hunt --- ItemList.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ItemList.py b/ItemList.py index a25423fb..6dac7a01 100644 --- a/ItemList.py +++ b/ItemList.py @@ -138,7 +138,10 @@ def generate_itempool(world, player): world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) if world.goal in ['triforcehunt']: - region = world.get_region('Hyrule Castle Courtyard', player) + if world.mode == 'inverted': + region = world.get_region('Light World',player) + else: + region = world.get_region('Hyrule Castle Courtyard', player) loc = Location(player, "Murahdahla", parent=region) loc.access_rule = lambda state: state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > state.world.treasure_hunt_count From 7249429f69ee2aaafb08a7fb4c7ace7af2c7b26d Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Mon, 2 Sep 2019 15:33:34 -0400 Subject: [PATCH 047/185] Fix silvers hint --- Rom.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index f7960bfa..04c0a5d5 100644 --- a/Rom.py +++ b/Rom.py @@ -1278,17 +1278,18 @@ def write_strings(rom, world, player): random.shuffle(silverarrows) silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint + tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint prog_bow_locs = world.find_items('Progressive Bow', player) distinguished_prog_bow_loc = next((location for location in prog_bow_locs if location.item.code == 0x65), None) if distinguished_prog_bow_loc: prog_bow_locs.remove(distinguished_prog_bow_loc) silverarrow_hint = (' %s?' % hint_text(distinguished_prog_bow_loc).replace('Ganon\'s', 'my')) - tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint + tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint if any(prog_bow_locs): silverarrow_hint = (' %s?' % hint_text(random.choice(prog_bow_locs)).replace('Ganon\'s', 'my')) - tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint + tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' From f2c62e87ef7af9561d1cce810ed736c93b864aca Mon Sep 17 00:00:00 2001 From: Kevin Cathcart Date: Mon, 2 Sep 2019 15:34:52 -0400 Subject: [PATCH 048/185] Update flavor text --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 04c0a5d5..843cabf2 100644 --- a/Rom.py +++ b/Rom.py @@ -1320,7 +1320,7 @@ def write_strings(rom, world, player): tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Get the Triforce Pieces.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invincible!' - tt['murahdahla'] = "Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n{PAUSE3}\n… … …\nWait! you can see me? I knew I should have\nhidden in a hollow tree. If you bring\n%d triforce pieces, I can reassemble it." % world.treasure_hunt_count + tt['murahdahla'] = "Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n\n\n\n… … …\n\nWait! you can see me? I knew I should have\nhidden in a hollow tree. If you bring\n%d triforce pieces, I can reassemble it." % world.treasure_hunt_count elif world.goal in ['pedestal']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Your goal is at the pedestal.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' From f593370ec042643fc8a4be623c086b5a5dfbca4e Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Sat, 31 Aug 2019 17:41:33 -0400 Subject: [PATCH 049/185] Prevent placing incorrect bosses in GT in inverted enemizer --- Bosses.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bosses.py b/Bosses.py index 30cd56da..2713c92c 100644 --- a/Bosses.py +++ b/Bosses.py @@ -119,11 +119,11 @@ def can_place_boss(world, boss, dungeon_name, level=None): if world.swords in ['swordless'] and boss == 'Kholdstare' and dungeon_name != 'Ice Palace': return False - if dungeon_name == 'Ganons Tower' and level == 'top': + if dungeon_name in ['Ganons Tower', 'Inverted Ganons Tower'] and level == 'top': if boss in ["Armos Knights", "Arrghus", "Blind", "Trinexx", "Lanmolas"]: return False - if dungeon_name == 'Ganons Tower' and level == 'middle': + if dungeon_name in ['Ganons Tower', 'Inverted Ganons Tower'] and level == 'middle': if boss in ["Blind"]: return False From d393657eac69a6630b424908cda676ea6eed6bc8 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Sat, 31 Aug 2019 17:54:20 -0400 Subject: [PATCH 050/185] Fix mixup of DM Return caves East and West --- EntranceShuffle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 0fafb1d2..1cd053ba 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -3511,8 +3511,8 @@ inverted_default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing' ('Bumper Cave (Top)', 'Dark Death Mountain Healer Fairy'), ('Bumper Cave Exit (Top)', 'Death Mountain Return Ledge'), ('Bumper Cave Exit (Bottom)', 'Light World'), - ('Death Mountain Return Cave (East)', 'Bumper Cave'), - ('Death Mountain Return Cave (West)', 'Death Mountain Return Cave'), + ('Death Mountain Return Cave (West)', 'Bumper Cave'), + ('Death Mountain Return Cave (East)', 'Death Mountain Return Cave'), ('Death Mountain Return Cave Exit (West)', 'Death Mountain'), ('Death Mountain Return Cave Exit (East)', 'Death Mountain'), ('Hookshot Cave Exit (South)', 'Dark Death Mountain'), From ec865e67e645eb24ce7490461630066321085da5 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Wed, 11 Sep 2019 12:25:46 -0400 Subject: [PATCH 051/185] Fix inverted retro take anys Removed 'Dark Sanctuary Hint' from take any pool if mode is inverted --- ItemList.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ItemList.py b/ItemList.py index 6dac7a01..27eb4568 100644 --- a/ItemList.py +++ b/ItemList.py @@ -233,6 +233,9 @@ take_any_locations = [ 'Dark Lake Hylia Ledge Spike Cave', 'Fortune Teller (Dark)', 'Dark Sanctuary Hint', 'Dark Desert Hint'] def set_up_take_anys(world, player): + if world.mode == 'inverted' and 'Dark Sanctuary Hint' in take_any_locations: + take_any_locations.remove('Dark Sanctuary Hint') + regions = random.sample(take_any_locations, 5) old_man_take_any = Region("Old Man Sword Cave", RegionType.Cave, 'the sword cave', player) From 99a4ea17b0896ff0795d14bfaedf3035319d5b0d Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Wed, 11 Sep 2019 14:24:56 -0400 Subject: [PATCH 052/185] Fix swordless vanilla shuffle TR keys issue --- Rules.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Rules.py b/Rules.py index fb609fb8..c72d79d4 100644 --- a/Rules.py +++ b/Rules.py @@ -33,9 +33,6 @@ def set_rules(world, player): else: raise NotImplementedError('Not implemented yet') - if world.swords == 'swordless': - swordless_rules(world, player) - if world.logic == 'noglitches': no_glitches_rules(world, player) elif world.logic == 'minorglitches': @@ -457,6 +454,9 @@ def global_rules(world, player): set_rule(world.get_entrance('Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. + if world.swords == 'swordless': + swordless_rules(world, player) + set_trock_key_rules(world, player) set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) @@ -843,6 +843,9 @@ def inverted_rules(world, 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. + if world.swords == 'swordless': + swordless_rules(world, player) + set_trock_key_rules(world, player) set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) From 4246a8b87646100b50b02bbccdd6c1105862c246 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Mon, 16 Sep 2019 00:51:24 -0500 Subject: [PATCH 053/185] Various hint updates/improvements This update makes the hint system work much better with simpler shuffles, fixes a bug by which two of the paradox cave entrances had reversed instructions in hints, and prevents the useless hint of there being a skull woods small key in the skull woods pinball room. Progressive Bow is added to the important item list for hints. Further tweaks to some hint language may still be incoming, but this should address the structure of the hint system pretty completely. --- ER_hint_reference.txt | 24 ++++++- Rom.py | 157 +++++++++++++++++++++++++++--------------- 2 files changed, 123 insertions(+), 58 deletions(-) diff --git a/ER_hint_reference.txt b/ER_hint_reference.txt index 59dab0ce..1e163126 100644 --- a/ER_hint_reference.txt +++ b/ER_hint_reference.txt @@ -8,6 +8,21 @@ Hints will appear in the following ratios across the 15 telepathic tiles that ha 5 hints for valuable items. 4 junk hints. +In the vanilla, dungeonssimple, and dungeonsfull shuffles, the following ratios will be used instead: + +5 hints for inconvenient item locations. +8 hints for valuable items. +7 junk hints. + +In the simple, restricted, and restricted legacy shuffles, these are the ratios: + +2 hints for inconvenient entrances. +1 hint for an inconvenient dungeon entrance. +4 hints for random entrances (this can by coincidence pick inconvenient entrances that aren't used for the first set of hints). +3 hints for inconvenient item locations. +5 hints for valuable items. +5 junk hints. + These hints will use the following format: Entrance hints go "[Entrance on overworld] leads to [interior]". @@ -65,6 +80,11 @@ Spike Cave Magic Bat Sahasrahla (Green Pendant) +In the vanilla, dungeonssimple, and dungeonsfull shuffles, the following two locations are added to the inconvenient locations list: + +Graveyard Cave +Mimic Cave + Valuable Items are simply all items that are shown on the pause subscreen (Y, B, or A sections) minus Silver Arrows and plus Triforce Pieces, Magic Upgrades (1/2 or 1/4), and the Single Arrow. If keysanity is being used, you can additionally get hints for Small Keys or Big Keys but not hints for Maps or Compasses. While the exact verbage of location names and item names can be found in the source code, here's a copy for reference: @@ -103,8 +123,8 @@ Death Mountain Return Cave (East): The westmost cave on west DM Spectacle Rock Cave Peak: The highest cave on west DM Spectacle Rock Cave: The right ledge on west DM Spectacle Rock Cave (Bottom): The left ledge on west DM -Paradox Cave (Bottom): The southmost cave on east DM -Paradox Cave (Middle): The right paired cave on east DM +Paradox Cave (Bottom): The right paired cave on east DM +Paradox Cave (Middle): The southmost cave on east DM Paradox Cave (Top): The east DM summit cave Fairy Ascension Cave (Bottom): The east DM cave behind rocks Fairy Ascension Cave (Top): The central ledge on east DM diff --git a/Rom.py b/Rom.py index 843cabf2..6bbaf5c1 100644 --- a/Rom.py +++ b/Rom.py @@ -1172,15 +1172,31 @@ def write_strings(rom, world, player): # For hints, first we write hints about entrances, some from the inconvenient list others from all reasonable entrances. if world.hints: tt['sign_north_of_links_house'] = '> Randomizer The telepathic tiles can have hints!' - entrances_to_hint = {} - entrances_to_hint.update(InconvenientEntrances) - if world.shuffle_ganon: - entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) hint_locations = HintLocations.copy() random.shuffle(hint_locations) all_entrances = [entrance for entrance in world.get_entrances() if entrance.player == player] random.shuffle(all_entrances) - hint_count = 4 if world.shuffle != 'vanilla' else 0 + + #First we take care of the one inconvenient dungeon in the appropriately simple shuffles. + entrances_to_hint = {} + entrances_to_hint.update(InconvenientDungeonEntrances) + if world.shuffle_ganon: + entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) + if world.shuffle in ['simple', 'restricted', 'restricted_legacy']: + for entrance in all_entrances: + if entrance.name in entrances_to_hint: + this_hint = entrances_to_hint[entrance.name] + ' leads to ' + hint_text(entrance.connected_region) + '.' + tt[hint_locations.pop(0)] = this_hint + entrances_to_hint = {} + break + #Now we write inconvenient locations for most shuffles and finish taking care of the less chaotic ones. + entrances_to_hint.update(InconvenientOtherEntrances) + if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + hint_count = 0 + elif world.shuffle in ['simple', 'restricted', 'restricted_legacy']: + hint_count = 2 + else: + hint_count = 4 for entrance in all_entrances: if entrance.name in entrances_to_hint: if hint_count > 0: @@ -1191,12 +1207,18 @@ def write_strings(rom, world, player): else: break + #Next we handle hints for randomly selected other entrances, curating the selection intelligently based on shuffle. + if world.shuffle not in ['simple', 'restricted', 'restricted_legacy']: + entrances_to_hint.update(ConnectorEntrances) + entrances_to_hint.update(DungeonEntrances) + elif world.shuffle == 'restricted': + entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(OtherEntrances) if world.shuffle in ['insanity', 'madness_legacy', 'insanity_legacy']: entrances_to_hint.update(InsanityEntrances) if world.shuffle_ganon: entrances_to_hint.update({'Pyramid Ledge': 'The pyramid ledge'}) - hint_count = 4 if world.shuffle != 'vanilla' else 0 + hint_count = 4 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 0 for entrance in all_entrances: if entrance.name in entrances_to_hint: if hint_count > 0: @@ -1209,8 +1231,10 @@ def write_strings(rom, world, player): # Next we write a few hints for specific inconvenient locations. We don't make many because in entrance this is highly unpredictable. locations_to_hint = InconvenientLocations.copy() + if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + locations_to_hint.extend(InconvenientVanillaLocations) random.shuffle(locations_to_hint) - hint_count = 3 if world.shuffle != 'vanilla' else 4 + hint_count = 3 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 5 del locations_to_hint[hint_count:] for location in locations_to_hint: if location == 'Swamp Left': @@ -1246,8 +1270,14 @@ def write_strings(rom, world, player): elif location == 'Eastern Palace - Big Key Chest': this_hint = 'The antifairy guarded chest in Eastern Palace contains ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint + elif location == 'Sahasrahla': + this_hint = 'Sahasrahla seeks a green pendant for ' + hint_text(world.get_location(location, player).item) + '.' + tt[hint_locations.pop(0)] = this_hint + elif location == 'Graveyard Cave': + this_hint = 'The cave north of the graveyard contains ' + hint_text(world.get_location(location, player).item) + '.' + tt[hint_locations.pop(0)] = this_hint else: - this_hint = location + ' leads to ' + hint_text(world.get_location(location, player).item) + '.' + this_hint = location + ' contains ' + hint_text(world.get_location(location, player).item) + '.' tt[hint_locations.pop(0)] = this_hint # Lastly we write hints to show where certain interesting items are. It is done the way it is to re-use the silver code and also to give one hint per each type of item regardless of how many exist. This supports many settings well. @@ -1255,11 +1285,15 @@ def write_strings(rom, world, player): if world.keysanity: items_to_hint.extend(KeysanityItems) random.shuffle(items_to_hint) - hint_count = 5 if world.shuffle != 'vanilla' else 7 + hint_count = 5 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 8 while hint_count > 0: this_item = items_to_hint.pop(0) this_location = world.find_items(this_item, player) random.shuffle(this_location) + #This looks dumb but prevents hints for Skull Woods Pinball Room's key safely with any item pool. + if this_location: + if this_location[0].name == 'Skull Woods - Pinball Room': + this_location.pop(0) if this_location: this_hint = this_location[0].item.hint_text + ' can be found ' + hint_text(this_location[0]) + '.' tt[hint_locations.pop(0)] = this_hint @@ -1607,54 +1641,60 @@ def patch_shuffled_dark_sanc(world, rom, player): rom.write_int16s(0x180253, [vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x]) rom.write_bytes(0x180262, [unknown_1, unknown_2, 0x00]) -InconvenientEntrances = {'Turtle Rock': 'Turtle Rock Main', - 'Misery Mire': 'Misery Mire', - 'Ice Palace': 'Ice Palace', - 'Skull Woods Final Section': 'The back of Skull Woods', - 'Death Mountain Return Cave (West)': 'The SW DM foothills cave', - 'Mimic Cave': 'Mimic Ledge', - 'Dark World Hammer Peg Cave': 'The rows of pegs', - 'Pyramid Fairy': 'The crack on the pyramid' - } +InconvenientDungeonEntrances = {'Turtle Rock': 'Turtle Rock Main', + 'Misery Mire': 'Misery Mire', + 'Ice Palace': 'Ice Palace', + 'Skull Woods Final Section': 'The back of Skull Woods', + } -OtherEntrances = {'Eastern Palace': 'Eastern Palace', - 'Elder House (East)': 'Elder House', - 'Elder House (West)': 'Elder House', - 'Two Brothers House (East)': 'Eastern Quarreling Brothers\' house', - 'Old Man Cave (West)': 'The lower DM entrance', - 'Hyrule Castle Entrance (South)': 'The ground level castle door', - 'Thieves Town': 'Thieves\' Town', - 'Bumper Cave (Bottom)': 'The lower Bumper Cave', - 'Swamp Palace': 'Swamp Palace', - 'Dark Death Mountain Ledge (West)': 'The East dark DM connector ledge', - 'Dark Death Mountain Ledge (East)': 'The East dark DM connector ledge', - 'Superbunny Cave (Top)': 'The summit of dark DM cave', - 'Superbunny Cave (Bottom)': 'The base of east dark DM', - 'Hookshot Cave': 'The rock on dark DM', - 'Desert Palace Entrance (South)': 'The book sealed passage', - 'Tower of Hera': 'The Tower of Hera', - 'Two Brothers House (West)': 'The door near the race game', - 'Old Man Cave (East)': 'The SW-most cave on west DM', - 'Old Man House (Bottom)': 'A cave with a door on west DM', - 'Old Man House (Top)': 'The eastmost cave on west DM', - 'Death Mountain Return Cave (East)': 'The westmost cave on west DM', - 'Spectacle Rock Cave Peak': 'The highest cave on west DM', - 'Spectacle Rock Cave': 'The right ledge on west DM', - 'Spectacle Rock Cave (Bottom)': 'The left ledge on west DM', - 'Paradox Cave (Bottom)': 'The southmost cave on east DM', - 'Paradox Cave (Middle)': 'The right paired cave on east DM', - 'Paradox Cave (Top)': 'The east DM summit cave', - 'Fairy Ascension Cave (Bottom)': 'The east DM cave behind rocks', - 'Fairy Ascension Cave (Top)': 'The central ledge on east DM', - 'Spiral Cave': 'The left ledge on east DM', - 'Spiral Cave (Bottom)': 'The SWmost cave on east DM', - 'Palace of Darkness': 'Palace of Darkness', - 'Hyrule Castle Entrance (West)': 'The left castle door', - 'Hyrule Castle Entrance (East)': 'The right castle door', - 'Agahnims Tower': 'The sealed castle door', - 'Desert Palace Entrance (West)': 'The westmost building in the desert', - 'Desert Palace Entrance (North)': 'The northmost cave in the desert', - 'Blinds Hideout': 'Blind\'s old house', +InconvenientOtherEntrances = {'Death Mountain Return Cave (West)': 'The SW DM foothills cave', + 'Mimic Cave': 'Mimic Ledge', + 'Dark World Hammer Peg Cave': 'The rows of pegs', + 'Pyramid Fairy': 'The crack on the pyramid' + } + +ConnectorEntrances = {'Elder House (East)': 'Elder House', + 'Elder House (West)': 'Elder House', + 'Two Brothers House (East)': 'Eastern Quarreling Brothers\' house', + 'Old Man Cave (West)': 'The lower DM entrance', + 'Bumper Cave (Bottom)': 'The lower Bumper Cave', + 'Superbunny Cave (Top)': 'The summit of dark DM cave', + 'Superbunny Cave (Bottom)': 'The base of east dark DM', + 'Hookshot Cave': 'The rock on dark DM', + 'Two Brothers House (West)': 'The door near the race game', + 'Old Man Cave (East)': 'The SW-most cave on west DM', + 'Old Man House (Bottom)': 'A cave with a door on west DM', + 'Old Man House (Top)': 'The eastmost cave on west DM', + 'Death Mountain Return Cave (East)': 'The westmost cave on west DM', + 'Spectacle Rock Cave Peak': 'The highest cave on west DM', + 'Spectacle Rock Cave': 'The right ledge on west DM', + 'Spectacle Rock Cave (Bottom)': 'The left ledge on west DM', + 'Paradox Cave (Bottom)': 'The right paired cave on east DM', + 'Paradox Cave (Middle)': 'The southmost cave on east DM', + 'Paradox Cave (Top)': 'The east DM summit cave', + 'Fairy Ascension Cave (Bottom)': 'The east DM cave behind rocks', + 'Fairy Ascension Cave (Top)': 'The central ledge on east DM', + 'Spiral Cave': 'The left ledge on east DM', + 'Spiral Cave (Bottom)': 'The SWmost cave on east DM' + } + +DungeonEntrances = {'Eastern Palace': 'Eastern Palace', + 'Hyrule Castle Entrance (South)': 'The ground level castle door', + 'Thieves Town': 'Thieves\' Town', + 'Swamp Palace': 'Swamp Palace', + 'Dark Death Mountain Ledge (West)': 'The East dark DM connector ledge', + 'Dark Death Mountain Ledge (East)': 'The East dark DM connector ledge', + 'Desert Palace Entrance (South)': 'The book sealed passage', + 'Tower of Hera': 'The Tower of Hera', + 'Palace of Darkness': 'Palace of Darkness', + 'Hyrule Castle Entrance (West)': 'The left castle door', + 'Hyrule Castle Entrance (East)': 'The right castle door', + 'Agahnims Tower': 'The sealed castle door', + 'Desert Palace Entrance (West)': 'The westmost building in the desert', + 'Desert Palace Entrance (North)': 'The northmost cave in the desert' + } + +OtherEntrances = {'Blinds Hideout': 'Blind\'s old house', 'Lake Hylia Fairy': 'A cave NE of Lake Hylia', 'Light Hype Fairy': 'The cave south of your house', 'Desert Fairy': 'The cave near the desert', @@ -1769,7 +1809,12 @@ InconvenientLocations = ['Spike Cave', 'Ice Palace - Big Chest', 'Ganons Tower - Big Chest', 'Magic Bat'] + +InconvenientVanillaLocations = ['Graveyard Cave', + 'Mimic Cave'] + RelevantItems = ['Bow', + 'Progressive Bow', 'Book of Mudora', 'Hammer', 'Hookshot', From 2859acef7dd523f8d8fff4ae96a1d5731492c839 Mon Sep 17 00:00:00 2001 From: cassidoxa <43386495+cassidoxa@users.noreply.github.com> Date: Sat, 21 Sep 2019 21:59:16 -0400 Subject: [PATCH 054/185] Swordless rom writes and inverted fixes * Update Swordless rom writes * Remove swordless as possible mode in ItemList.py * Fix inverted HC Ledge access Added collection state helper methods for determining lw/dw access Restricted locations where Link's House can be in inverted Dark Sanc and Link's House can no longer be at the back of Skull Woods Fixed minor error in inverted bunny rules * Update Link's House Shuffling in inverted insanity * More isolated entrances not to put Link's House at * Fix Link's House in dungeons shuffles * More dungeons shuffle stuff I forgot --- BaseClasses.py | 10 ++++++++++ EntranceShuffle.py | 30 ++++++++++++++++++++---------- InvertedRegions.py | 7 +++---- ItemList.py | 2 +- Rom.py | 24 +++++++++++------------- Rules.py | 21 +++++++++++---------- 6 files changed, 56 insertions(+), 38 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index ca6044c1..c6d63713 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -492,6 +492,16 @@ class CollectionState(object): return region.is_light_world if self.world.mode != 'inverted' else region.is_dark_world + def can_reach_light_world(self, player): + if True in [i.is_light_world for i in self.reachable_regions[player]]: + return True + return False + + def can_reach_dark_world(self, player): + if True in [i.is_dark_world for i in self.reachable_regions[player]]: + return True + return False + def has_misery_mire_medallion(self, player): return self.has(self.world.required_medallions[player][0], player) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 1cd053ba..08f8dfce 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -1184,7 +1184,8 @@ def link_inverted_entrances(world, player): connect_two_way(world, entrance2, exit2, player) # place links house - links_house = random.choice(list(bomb_shop_doors + blacksmith_doors)) + links_house_doors = [i for i in bomb_shop_doors + blacksmith_doors if i not in Inverted_Dark_Sanctuary_Doors + Isolated_LH_Doors] + links_house = random.choice(list(links_house_doors)) connect_two_way(world, links_house, 'Inverted Links House Exit', player) if links_house in bomb_shop_doors: bomb_shop_doors.remove(links_house) @@ -1256,7 +1257,8 @@ def link_inverted_entrances(world, player): door_targets = list(Inverted_Single_Cave_Targets) # place links house - links_house = random.choice(list(lw_entrances + dw_entrances + lw_must_exits)) + links_house_doors = [i for i in lw_entrances + dw_entrances + lw_must_exits if i not in Inverted_Dark_Sanctuary_Doors + Isolated_LH_Doors] + links_house = random.choice(list(links_house_doors)) connect_two_way(world, links_house, 'Inverted Links House Exit', player) if links_house in lw_entrances: lw_entrances.remove(links_house) @@ -1386,8 +1388,8 @@ def link_inverted_entrances(world, player): caves.remove('Inverted Agahnims Tower Exit') # place links house - links_house_doors = [door for door in lw_entrances + dw_entrances + lw_must_exits] - links_house = random.choice(links_house_doors) + links_house_doors = [i for i in lw_entrances + dw_entrances + lw_must_exits if i not in Inverted_Dark_Sanctuary_Doors + Isolated_LH_Doors] + links_house = random.choice(list(links_house_doors)) connect_two_way(world, links_house, 'Inverted Links House Exit', player) if links_house in lw_entrances: lw_entrances.remove(links_house) @@ -1525,7 +1527,8 @@ def link_inverted_entrances(world, player): # place links house - links_house = random.choice(list(entrances + must_exits)) + links_house_doors = [i for i in entrances + must_exits if i not in Inverted_Dark_Sanctuary_Doors + Isolated_LH_Doors] + links_house = random.choice(list(links_house_doors)) connect_two_way(world, links_house, 'Inverted Links House Exit', player) if links_house in entrances: entrances.remove(links_house) @@ -1656,7 +1659,8 @@ def link_inverted_entrances(world, player): caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) # place links house and dark sanc - links_house = random.choice(list(entrances + entrances_must_exits)) + links_house_doors = [i for i in entrances + entrances_must_exits if i not in Inverted_Dark_Sanctuary_Doors + Isolated_LH_Doors] + links_house = random.choice(list(links_house_doors)) connect_two_way(world, links_house, 'Inverted Links House Exit', player) if links_house in entrances: entrances.remove(links_house) @@ -2824,9 +2828,18 @@ Inverted_Dark_Sanctuary_Doors = ['Inverted Dark Sanctuary', 'Red Shield Shop', 'Bumper Cave (Bottom)', 'Bumper Cave (Top)', - 'Skull Woods Final Section', 'Thieves Town'] +Isolated_LH_Doors = ['Kings Grave', + 'Waterfall of Wishing', + 'Desert Palace Entrance (South)', + 'Desert Palace Entrance (North)', + 'Capacity Upgrade', + 'Ice Palace', + 'Skull Woods Final Section', + 'Dark World Hammer Peg Cave', + 'Turtle Rock Isolated Ledge Entrance'] + # these are connections that cannot be shuffled and always exist. They link together separate parts of the world we need to divide into regions mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), ('Lake Hylia Central Island Teleporter', 'Dark Lake Hylia Central Island'), @@ -3141,9 +3154,6 @@ inverted_mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia ('Ganon Drop', 'Bottom of Pyramid'), ('Pyramid Drop', 'East Dark World'), ('Post Aga Teleporter', 'Light World'), - ('LW Hyrule Castle Ledge SQ', 'Hyrule Castle Ledge'), - ('EDM Hyrule Castle Ledge SQ', 'Hyrule Castle Ledge'), - ('WDM Hyrule Castle Ledge SQ', 'Hyrule Castle Ledge'), ('Secret Passage Inner Bushes', 'Light World'), ('Secret Passage Outer Bushes', 'Hyrule Castle Secret Entrance Area'), ('Potion Shop Inner Bushes', 'Light World'), diff --git a/InvertedRegions.py b/InvertedRegions.py index bc2ea357..7623b398 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -16,7 +16,7 @@ def create_inverted_regions(world, player): 'Kakariko Shop', 'Long Fairy Cave', 'Good Bee Cave', '20 Rupee Cave', 'Cave Shop (Lake Hylia)', 'Bonk Fairy (Light)', '50 Rupee Cave', 'Fortune Teller (Light)', 'Lake Hylia Fairy', 'Light Hype Fairy', 'Desert Fairy', 'Lumberjack House', 'Lake Hylia Fortune Teller', 'Kakariko Gamble Game', 'East Dark World Mirror Spot', 'West Dark World Mirror Spot', 'South Dark World Mirror Spot', 'Cave 45', 'Checkerboard Cave', 'Mire Mirror Spot', 'Hammer Peg Area Mirror Spot', - 'Shopping Mall Mirror Spot', 'Skull Woods Mirror Spot', 'Inverted Pyramid Entrance','Hyrule Castle Entrance (South)', 'Secret Passage Outer Bushes', 'LW Hyrule Castle Ledge SQ', 'Bush Covered Lawn Outer Bushes', + 'Shopping Mall Mirror Spot', 'Skull Woods Mirror Spot', 'Inverted Pyramid Entrance','Hyrule Castle Entrance (South)', 'Secret Passage Outer Bushes', 'Bush Covered Lawn Outer Bushes', 'Potion Shop Outer Bushes', 'Graveyard Cave Outer Bushes', 'Bomb Hut Outer Bushes']), create_lw_region(player, 'Bush Covered Lawn', None, ['Bush Covered House', 'Bush Covered Lawn Inner Bushes', 'Bush Covered Lawn Mirror Spot']), create_lw_region(player, 'Bomb Hut Area', None, ['Light World Bomb Hut', 'Bomb Hut Inner Bushes', 'Bomb Hut Mirror Spot']), @@ -124,14 +124,14 @@ def create_inverted_regions(world, player): 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 Mirror Spot', 'WDM Hyrule Castle Ledge SQ']), + 'Spectacle Rock Cave Peak', 'Spectacle Rock Cave (Bottom)', 'Broken Bridge (West)', 'Death Mountain Mirror Spot']), create_cave_region(player, 'Death Mountain Return Cave', 'a connector', None, ['Death Mountain Return Cave Exit (West)', 'Death Mountain Return Cave Exit (East)']), create_lw_region(player, 'Death Mountain Return Ledge', None, ['Death Mountain Return Ledge Drop', 'Death Mountain Return Cave (West)', 'Bumper Cave Ledge Mirror Spot']), create_cave_region(player, 'Spectacle Rock Cave (Top)', 'a connector', ['Spectacle Rock Cave'], ['Spectacle Rock Cave Drop', 'Spectacle Rock Cave Exit (Top)']), create_cave_region(player, 'Spectacle Rock Cave (Bottom)', 'a connector', None, ['Spectacle Rock Cave Exit']), create_cave_region(player, 'Spectacle Rock Cave (Peak)', 'a connector', None, ['Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave Exit (Peak)']), create_lw_region(player, 'East Death Mountain (Bottom)', None, ['Broken Bridge (East)', 'Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'East Death Mountain Mirror Spot (Bottom)', 'Hookshot Fairy', - 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)', 'EDM Hyrule Castle Ledge SQ']), + 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)']), create_cave_region(player, 'Hookshot Fairy', 'fairies deep in a cave'), create_cave_region(player, 'Paradox Cave Front', 'a connector', None, ['Paradox Cave Push Block Reverse', 'Paradox Cave Exit (Bottom)', 'Light World Death Mountain Shop']), create_cave_region(player, 'Paradox Cave Chest Area', 'a connector', ['Paradox Cave Lower - Far Left', @@ -347,7 +347,6 @@ def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None def mark_dark_world_regions(world): # cross world caves may have some sections marked as both in_light_world, and in_dark_work. # That is ok. the bunny logic will check for this case and incorporate special rules. - queue = collections.deque(region for region in world.regions if region.type == RegionType.DarkWorld) seen = set(queue) while queue: diff --git a/ItemList.py b/ItemList.py index 27eb4568..7fb78342 100644 --- a/ItemList.py +++ b/ItemList.py @@ -126,7 +126,7 @@ difficulties = { def generate_itempool(world, player): if (world.difficulty not in ['normal', 'hard', 'expert'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] - or world.mode not in ['open', 'standard', 'swordless', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): + or world.mode not in ['open', 'standard', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') if world.timer in ['ohko', 'timed-ohko']: diff --git a/Rom.py b/Rom.py index 843cabf2..f6ba0997 100644 --- a/Rom.py +++ b/Rom.py @@ -785,11 +785,11 @@ def patch_rom(world, player, rom): rom.write_byte(0x180029, 0x01) # Smithy quick item give # set swordless mode settings - rom.write_byte(0x18003F, 0x01 if world.mode == 'swordless' else 0x00) # hammer can harm ganon - rom.write_byte(0x180040, 0x01 if world.mode == 'swordless' else 0x00) # open curtains - rom.write_byte(0x180041, 0x01 if world.mode == 'swordless' else 0x00) # swordless medallions - rom.write_byte(0x180043, 0xFF if world.mode == 'swordless' else 0x00) # starting sword for link - rom.write_byte(0x180044, 0x01 if world.mode == 'swordless' else 0x00) # hammer activates tablets + rom.write_byte(0x18003F, 0x01 if world.swords == 'swordless' else 0x00) # hammer can harm ganon + rom.write_byte(0x180040, 0x01 if world.swords == 'swordless' else 0x00) # open curtains + rom.write_byte(0x180041, 0x01 if world.swords == 'swordless' else 0x00) # swordless medallions + rom.write_byte(0x180043, 0xFF if world.swords == 'swordless' else 0x00) # starting sword for link + rom.write_byte(0x180044, 0x01 if world.swords == 'swordless' else 0x00) # hammer activates tablets # set up clocks for timed modes if world.shuffle == 'vanilla': @@ -1407,7 +1407,7 @@ def set_inverted_mode(world, rom): rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof # the following bytes should only be written in vanilla # or they'll overwrite the randomizer's shuffles - if world.shuffle == 'vanilla': + if world.shuffle == ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(0x15B8C, 0x6C) rom.write_byte(0xDBB73 + 0x00, 0x53) # switch bomb shop and links house rom.write_byte(0xDBB73 + 0x52, 0x01) @@ -1469,7 +1469,7 @@ def set_inverted_mode(world, rom): rom.write_int16(snes_to_pc(0x02D9A6), 0x005A) rom.write_byte(snes_to_pc(0x02D9B3), 0x12) # keep the old man spawn point at old man house unless shuffle is vanilla - if world.shuffle == 'vanilla': + if world.shuffle == ['vanilla', 'dungeonsfull', 'dungeonssimple']: rom.write_bytes(snes_to_pc(0x308350), [0x00, 0x00, 0x01]) rom.write_int16(snes_to_pc(0x02D8DE), 0x00F1) rom.write_bytes(snes_to_pc(0x02D910), [0x1F, 0x1E, 0x1F, 0x1F, 0x03, 0x02, 0x03, 0x03]) @@ -1530,9 +1530,9 @@ def set_inverted_mode(world, rom): 0x190F, 0x9D04, 0x9D04]) rom.write_int16s(snes_to_pc(0x1bb810), [0x00BE, 0x00C0, 0x013E]) rom.write_int16s(snes_to_pc(0x1bb836), [0x001B, 0x001B, 0x001B]) - rom.write_int16(snes_to_pc(0x308300), 0x0140) + rom.write_int16(snes_to_pc(0x308300), 0x0140) # new pyramid hole entrance rom.write_int16(snes_to_pc(0x308320), 0x001B) - if world.shuffle == 'vanilla': + if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(snes_to_pc(0x308340), 0x7B) rom.write_int16(snes_to_pc(0x1af504), 0x148B) rom.write_int16(snes_to_pc(0x1af50c), 0x149B) @@ -1569,10 +1569,10 @@ def set_inverted_mode(world, rom): rom.write_bytes(snes_to_pc(0x1BC85A), [0x50, 0x0F, 0x82]) rom.write_int16(0xDB96F + 2 * 0x35, 0x001B) # move pyramid exit door rom.write_int16(0xDBA71 + 2 * 0x35, 0x06A4) - if world.shuffle == 'vanilla': + if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(0xDBB73 + 0x35, 0x36) rom.write_byte(snes_to_pc(0x09D436), 0xF3) # remove castle gate warp - if world.shuffle == 'vanilla': + if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_int16(0x15AEE + 2 * 0x37, 0x0010) # pyramid exit to new hc area rom.write_byte(0x15B8C + 0x37, 0x1B) rom.write_int16(0x15BDB + 2 * 0x37, 0x0418) @@ -1596,8 +1596,6 @@ def set_inverted_mode(world, rom): def patch_shuffled_dark_sanc(world, rom, player): dark_sanc_entrance = str(world.get_region('Inverted Dark Sanctuary', player).entrances[0].name) room_id, ow_area, vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x, unknown_1, unknown_2, door_1, door_2 = door_addresses[dark_sanc_entrance][1] - if dark_sanc_entrance == 'Skull Woods Final Section': - link_y = 0x00F8 door_index = door_addresses[str(dark_sanc_entrance)][0] rom.write_byte(0x180241, 0x01) diff --git a/Rules.py b/Rules.py index c72d79d4..0138e09b 100644 --- a/Rules.py +++ b/Rules.py @@ -115,7 +115,7 @@ def global_rules(world, player): if world.mode == 'standard': world.get_region('Hyrule Castle Secret Entrance', player).can_reach_private = lambda state: True - old_rule = world.get_region('Links House', player).can_reach + old_rule = world.get_region('Links House', player).can_reach_private world.get_region('Links House', player).can_reach_private = lambda state: state.can_reach('Sanctuary', 'Region', player) or old_rule(state) else: # these are default save&quit points and always accessible @@ -123,7 +123,7 @@ def global_rules(world, player): world.get_region('Sanctuary', player).can_reach_private = lambda state: True # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! - old_rule = world.get_region('Old Man House', player).can_reach + old_rule = world.get_region('Old Man House', player).can_reach_private world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) # overworld requirements @@ -469,13 +469,17 @@ def inverted_rules(world, player): add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) + # s&q regions. link's house entrance is set to true so the filler knows the chest inside can always be reached world.get_region('Inverted Links House', player).can_reach_private = lambda state: True + world.get_region('Inverted Links House', player).entrances[0].can_reach = lambda state: True world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach_private = lambda state: True - # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! - if world.shuffle != 'vanilla': - old_rule = world.get_region('Old Man House', player).can_reach - world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + old_rule = world.get_region('Old Man House', player).can_reach_private + world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + + old_rule = world.get_region('Hyrule Castle Ledge', player).can_reach_private + world.get_region('Hyrule Castle Ledge', player).can_reach_private = lambda state: (state.has_Mirror(player) and state.has('Beat Agahnim 1', player) and state.can_reach_light_world(player)) or old_rule(state) + # overworld requirements 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)) @@ -540,9 +544,6 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) set_rule(world.get_location('Castle Tower - Dark Maze', player), lambda state: state.has_key('Small Key (Agahnims Tower)', player)) - set_rule(world.get_entrance('LW Hyrule Castle Ledge SQ', player), lambda state: state.has('Beat Agahnim 1', player)) - set_rule(world.get_entrance('EDM Hyrule Castle Ledge SQ', player), lambda state: state.has('Beat Agahnim 1', player)) - set_rule(world.get_entrance('WDM Hyrule Castle Ledge SQ', player), lambda state: state.has('Beat Agahnim 1', player)) set_rule(world.get_entrance('Hyrule Castle Secret Entrance Drop', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('Old Man Cave Exit (West)', player), lambda state: False) # drop cannot be climbed up set_rule(world.get_entrance('Broken Bridge (West)', player), lambda state: state.has('Hookshot', player) and state.has_Pearl(player)) @@ -1395,7 +1396,7 @@ def set_inverted_big_bomb_rules(world, player): 'Hookshot Cave', 'Turtle Rock Isolated Ledge Entrance', 'Hookshot Cave Back Entrance', - 'Inverted Ganons Tower'] + 'Inverted Agahnims Tower'] Isolated_LW_entrances = ['Capacity Upgrade', 'Tower of Hera', 'Death Mountain Return Cave (West)', From f8628337bbb504ee7304a879c9827ab5109888d5 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Sat, 21 Sep 2019 22:10:19 -0400 Subject: [PATCH 055/185] One more vanilla/dungeons ROM fix --- Rom.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Rom.py b/Rom.py index f6ba0997..2f548bfe 100644 --- a/Rom.py +++ b/Rom.py @@ -1407,14 +1407,15 @@ def set_inverted_mode(world, rom): rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof # the following bytes should only be written in vanilla # or they'll overwrite the randomizer's shuffles - if world.shuffle == ['vanilla', 'dungeonssimple', 'dungeonsfull']: - rom.write_byte(0x15B8C, 0x6C) - rom.write_byte(0xDBB73 + 0x00, 0x53) # switch bomb shop and links house - rom.write_byte(0xDBB73 + 0x52, 0x01) + if world.shuffle == 'vanilla': rom.write_byte(0xDBB73 + 0x23, 0x37) # switch AT and GT rom.write_byte(0xDBB73 + 0x36, 0x24) rom.write_int16(0x15AEE + 2*0x38, 0x00E0) rom.write_int16(0x15AEE + 2*0x25, 0x000C) + if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + rom.write_byte(0x15B8C, 0x6C) + rom.write_byte(0xDBB73 + 0x00, 0x53) # switch bomb shop and links house + rom.write_byte(0xDBB73 + 0x52, 0x01) rom.write_byte(0xDBB73 + 0x15, 0x06) # bumper and old man cave rom.write_int16(0x15AEE + 2*0x17, 0x00F0) rom.write_byte(0xDBB73 + 0x05, 0x16) @@ -1469,7 +1470,7 @@ def set_inverted_mode(world, rom): rom.write_int16(snes_to_pc(0x02D9A6), 0x005A) rom.write_byte(snes_to_pc(0x02D9B3), 0x12) # keep the old man spawn point at old man house unless shuffle is vanilla - if world.shuffle == ['vanilla', 'dungeonsfull', 'dungeonssimple']: + if world.shuffle in ['vanilla', 'dungeonsfull', 'dungeonssimple']: rom.write_bytes(snes_to_pc(0x308350), [0x00, 0x00, 0x01]) rom.write_int16(snes_to_pc(0x02D8DE), 0x00F1) rom.write_bytes(snes_to_pc(0x02D910), [0x1F, 0x1E, 0x1F, 0x1F, 0x03, 0x02, 0x03, 0x03]) From e6793e36f2db7bcf2ab88fef47b8917d6fd9941e Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Tue, 1 Oct 2019 03:17:40 -0500 Subject: [PATCH 056/185] Inverted logic improvements This reformats the Rules.py file to no longer have quite so many totally redundant rules between inverted and non-inverted. In the process, it fixes an insanity only issue wherein the magic bat in inverted was set to always require Pearl (only in insanity can this not be true). Additionally, the inverted super bomb rules are completely reworked to be a lot more accurate (including preventing Desert Palace (East) from having the bomb shop at all in inverted insanity) and an obscure case involving non-inverted insanity super bomb return has a logic fix. --- EntranceShuffle.py | 2 +- Rules.py | 845 +++++++++++++++++---------------------------- 2 files changed, 310 insertions(+), 537 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 08f8dfce..79204d88 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -1609,7 +1609,7 @@ def link_inverted_entrances(world, player): # and rentering to find bomb shop. However appended list here is all those that we currently have # bomb shop logic for. # Specifically we could potentially add: 'Dark Death Mountain Ledge (East)' and doors associated with pits - bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors + ['Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Entrance', 'Bumper Cave (Top)', 'Hookshot Cave Back Entrance']) + bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors + ['Turtle Rock Isolated Ledge Entrance', 'Bumper Cave (Top)', 'Hookshot Cave Back Entrance']) blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) door_targets = list(Inverted_Single_Cave_Targets) diff --git a/Rules.py b/Rules.py index 0138e09b..fc9c21fe 100644 --- a/Rules.py +++ b/Rules.py @@ -20,8 +20,10 @@ def set_rules(world, player): old_rule = world.get_region('Old Man House', player).can_reach world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) return + + global_rules(world, player) if world.mode != 'inverted': - global_rules(world, player) + default_rules(world, player) if world.mode == 'open': open_rules(world, player) @@ -103,7 +105,6 @@ def item_name(state, location, player): return None return (location.item.name, location.item.player) - def global_rules(world, player): if world.goal == 'triforcehunt': for location in world.get_locations(): @@ -113,6 +114,237 @@ def global_rules(world, player): # ganon can only carry triforce add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) + # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! + old_rule = world.get_region('Old Man House', player).can_reach_private + world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + + set_rule(world.get_location('Sunken Treasure', player), lambda state: state.has('Open Floodgate', player)) + set_rule(world.get_location('Dark Blacksmith Ruins', player), lambda state: state.has('Return Smith', player)) + set_rule(world.get_location('Purple Chest', player), lambda state: state.has('Pick Up Purple Chest', player)) # Can S&Q with chest + set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) + set_rule(world.get_location('Master Sword Pedestal', player), lambda state: state.has('Red Pendant', player) and state.has('Blue Pendant', player) and state.has('Green Pendant', player)) + + set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player) and state.can_reach('Blacksmiths Hut', 'Region', player)) # Can't S&Q with smith + set_rule(world.get_location('Blacksmith', player), lambda state: state.has('Return Smith', player)) + set_rule(world.get_location('Magic Bat', player), lambda state: state.has('Magic Powder', player)) + set_rule(world.get_location('Sick Kid', player), lambda state: state.has_bottle(player)) + set_rule(world.get_location('Library', player), lambda state: state.has_Boots(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)))))) + ) + + set_rule(world.get_location('Hookshot Cave - Top Right', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_location('Hookshot Cave - Top Left', player), lambda state: state.has('Hookshot', player)) + set_rule(world.get_location('Hookshot Cave - Bottom Right', player), lambda state: state.has('Hookshot', player) or state.has('Pegasus Boots', player)) + set_rule(world.get_location('Hookshot Cave - Bottom Left', player), lambda state: state.has('Hookshot', player)) + + set_rule(world.get_entrance('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player)) + set_rule(world.get_entrance('Sewers Back Door', player), lambda state: state.has_key('Small Key (Escape)', player)) + set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) + set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) + set_rule(world.get_location('Castle Tower - Dark Maze', player), lambda state: state.has_key('Small Key (Agahnims Tower)', player)) + + set_rule(world.get_location('Eastern Palace - Big Chest', player), lambda state: state.has('Big Key (Eastern Palace)', player)) + set_rule(world.get_location('Eastern Palace - Boss', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Eastern Palace - Prize', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) + for location in ['Eastern Palace - Boss', 'Eastern Palace - Big Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Eastern Palace)', player) + + set_rule(world.get_location('Desert Palace - Big Chest', player), lambda state: state.has('Big Key (Desert Palace)', player)) + set_rule(world.get_location('Desert Palace - Torch', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Desert Palace East Wing', player), lambda state: state.has_key('Small Key (Desert Palace)', player)) + set_rule(world.get_location('Desert Palace - Prize', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) + set_rule(world.get_location('Desert Palace - Boss', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) + for location in ['Desert Palace - Boss', 'Desert Palace - Big Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Desert Palace)', player) + + for location in ['Desert Palace - Boss', 'Desert Palace - Big Key Chest', 'Desert Palace - Compass Chest']: + forbid_item(world.get_location(location, player), 'Small Key (Desert Palace)', player) + + set_rule(world.get_entrance('Tower of Hera Small Key Door', player), lambda state: state.has_key('Small Key (Tower of Hera)', player) or item_name(state, 'Tower of Hera - Big Key Chest', player) == ('Small Key (Tower of Hera)', player)) + set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) + set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) + set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) + set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) + for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Tower of Hera)', player) +# for location in ['Tower of Hera - Big Key Chest']: +# forbid_item(world.get_location(location, player), 'Small Key (Tower of Hera)', player) + + set_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) + set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) + set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) + set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) + set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) + for location in ['Swamp Palace - Entrance']: + forbid_item(world.get_location(location, player), 'Big Key (Swamp Palace)', player) + + set_rule(world.get_entrance('Thieves Town Big Key Door', player), lambda state: state.has('Big Key (Thieves Town)', player)) + set_rule(world.get_entrance('Blind Fight', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) + set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) + set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) + set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) + for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: + forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) + for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Boss']: + forbid_item(world.get_location(location, player), 'Small Key (Thieves Town)', player) + + set_rule(world.get_entrance('Skull Woods First Section South Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) + set_rule(world.get_entrance('Skull Woods First Section (Right) North Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) + set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section + set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) + set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) + set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain + set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) + for location in ['Skull Woods - Boss']: + forbid_item(world.get_location(location, player), 'Small Key (Skull Woods)', player) + + set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.can_melt_things(player)) + set_rule(world.get_location('Ice Palace - Big Chest', player), lambda state: state.has('Big Key (Ice Palace)', player)) + set_rule(world.get_entrance('Ice Palace (Kholdstare)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', player) and state.has('Big Key (Ice Palace)', player) and (state.has_key('Small Key (Ice Palace)', player, 2) or (state.has('Cane of Somaria', player) and state.has_key('Small Key (Ice Palace)', player, 1)))) + # TODO: investigate change from VT. Changed to hookshot or 2 keys (no checking for big key in specific chests) + set_rule(world.get_entrance('Ice Palace (East)', player), lambda state: (state.has('Hookshot', player) or (item_in_locations(state, 'Big Key (Ice Palace)', player, [('Ice Palace - Spike Room', player), ('Ice Palace - Big Key Chest', player), ('Ice Palace - Map Chest', player)]) and state.has_key('Small Key (Ice Palace)', player))) and (state.world.can_take_damage or state.has('Hookshot', player) or state.has('Cape', player) or state.has('Cane of Byrna', player))) + set_rule(world.get_entrance('Ice Palace (East Top)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', 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)) + for location in ['Ice Palace - Big Chest', 'Ice Palace - Boss']: + forbid_item(world.get_location(location, player), 'Big Key (Ice Palace)', player) + + set_rule(world.get_entrance('Misery Mire Entrance Gap', player), lambda state: (state.has_Boots(player) or state.has('Hookshot', player)) and (state.has_sword(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Hammer', player) or state.has('Cane of Somaria', player) or state.can_shoot_arrows(player))) # need to defeat wizzrobes, bombs don't work ... + set_rule(world.get_location('Misery Mire - Big Chest', player), lambda state: state.has('Big Key (Misery Mire)', player)) + set_rule(world.get_location('Misery Mire - Spike Chest', player), lambda state: (state.world.can_take_damage and state.has_hearts(player, 4)) or state.has('Cane of Byrna', player) or state.has('Cape', player)) + set_rule(world.get_entrance('Misery Mire Big Key Door', player), lambda state: state.has('Big Key (Misery Mire)', player)) + # you can squander the free small key from the pot by opening the south door to the north west switch room, locking you out of accessing a color switch ... + # big key gives backdoor access to that from the teleporter in the north west + set_rule(world.get_location('Misery Mire - Map Chest', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 1) or state.has('Big Key (Misery Mire)', player)) + # in addition, you can open the door to the map room before getting access to a color switch, so this is locked behing 2 small keys or the big key... + set_rule(world.get_location('Misery Mire - Main Lobby', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) or state.has_key('Big Key (Misery Mire)', player)) + # we can place a small key in the West wing iff it also contains/blocks the Big Key, as we cannot reach and softlock with the basement key door yet + set_rule(world.get_entrance('Misery Mire (West)', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) if ((item_name(state, 'Misery Mire - Compass Chest', player) in [('Big Key (Misery Mire)', player)]) or + (item_name(state, 'Misery Mire - Big Key Chest', player) in [('Big Key (Misery Mire)', player)])) else state.has_key('Small Key (Misery Mire)', player, 3)) + set_rule(world.get_location('Misery Mire - Compass Chest', player), lambda state: state.has_fire_source(player)) + set_rule(world.get_location('Misery Mire - Big Key Chest', player), lambda state: state.has_fire_source(player)) + set_rule(world.get_entrance('Misery Mire (Vitreous)', player), lambda state: state.has('Cane of Somaria', player)) + set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Prize', player)) + for location in ['Misery Mire - Big Chest', 'Misery Mire - Boss']: + forbid_item(world.get_location(location, player), 'Big Key (Misery Mire)', player) + + set_rule(world.get_entrance('Turtle Rock Entrance Gap', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Turtle Rock Entrance Gap Reverse', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_location('Turtle Rock - Compass Chest', player), lambda state: state.has('Cane of Somaria', player)) # We could get here from the middle section without Cane as we don't cross the entrance gap! + set_rule(world.get_location('Turtle Rock - Roller Room - Left', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) + set_rule(world.get_location('Turtle Rock - Roller Room - Right', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) + set_rule(world.get_location('Turtle Rock - Big Chest', player), lambda state: state.has('Big Key (Turtle Rock)', player) and (state.has('Cane of Somaria', player) or state.has('Hookshot', player))) + set_rule(world.get_entrance('Turtle Rock (Big Chest) (North)', player), lambda state: state.has('Cane of Somaria', player) or state.has('Hookshot', player)) + set_rule(world.get_entrance('Turtle Rock Big Key Door', player), lambda state: state.has('Big Key (Turtle Rock)', player)) + set_rule(world.get_entrance('Turtle Rock (Dark Room) (North)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Turtle Rock (Dark Room) (South)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) + set_rule(world.get_entrance('Turtle Rock (Trinexx)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4) and state.has('Big Key (Turtle Rock)', player) and state.has('Cane of Somaria', player)) + set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Prize', player)) + + set_rule(world.get_entrance('Palace of Darkness Bonk Wall', player), lambda state: state.can_shoot_arrows(player)) + set_rule(world.get_entrance('Palace of Darkness Hammer Peg Drop', player), lambda state: state.has('Hammer', player)) + set_rule(world.get_entrance('Palace of Darkness Bridge Room', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 1)) # If we can reach any other small key door, we already have back door access to this area + set_rule(world.get_entrance('Palace of Darkness Big Key Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) and state.has('Big Key (Palace of Darkness)', player) and state.can_shoot_arrows(player) and state.has('Hammer', player)) + set_rule(world.get_entrance('Palace of Darkness (North)', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 4)) + set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) + + set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + else: + forbid_item(world.get_location('Palace of Darkness - Big Key Chest', player), 'Small Key (Palace of Darkness)', player) + + set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) + else: + forbid_item(world.get_location('Palace of Darkness - Harmless Hellway', player), 'Small Key (Palace of Darkness)', player) + + set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) + set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) + set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) + + # these key rules are conservative, you might be able to get away with more lenient rules + randomizer_room_chests = ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'] + compass_room_chests = ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'] + + set_rule(world.get_location('Ganons Tower - Bob\'s Torch', player), lambda state: state.has_Boots(player)) + set_rule(world.get_entrance('Ganons Tower (Tile Room)', player), lambda state: state.has('Cane of Somaria', player)) + set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) + + set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) + if world.accessibility != 'locations': + set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) + else: + forbid_item(world.get_location('Ganons Tower - Map Chest', player), 'Small Key (Ganons Tower)', player) + + # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. + # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. + set_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 2)) + # It is possible to need more than 3 keys .... + set_rule(world.get_entrance('Ganons Tower (Firesnake Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) + + #The actual requirements for these rooms to avoid key-lock + set_rule(world.get_location('Ganons Tower - Firesnake Room', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 2))) + for location in randomizer_room_chests: + set_rule(world.get_location(location, player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3))) + + # Once again it is possible to need more than 3 keys... + set_rule(world.get_entrance('Ganons Tower (Tile Room) Key Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) and state.has('Fire Rod', player)) + # Actual requirements + for location in compass_room_chests: + set_rule(world.get_location(location, player), lambda state: state.has('Fire Rod', player) and (state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(compass_room_chests, [player] * len(compass_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3)))) + + set_rule(world.get_location('Ganons Tower - Big Chest', player), lambda state: state.has('Big Key (Ganons Tower)', player)) + + set_rule(world.get_location('Ganons Tower - Big Key Room - Left', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Left', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Chest', player), lambda state: world.get_location('Ganons Tower - Big Key Chest', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Big Key Room - Right', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Right', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) + + set_rule(world.get_entrance('Ganons Tower Big Key Door', player), lambda state: state.has('Big Key (Ganons Tower)', player) and state.can_shoot_arrows(player)) + set_rule(world.get_entrance('Ganons Tower Torch Rooms', player), lambda state: state.has_fire_source(player) and world.get_entrance('Ganons Tower Torch Rooms', player).parent_region.dungeon.bosses['middle'].can_defeat(state)) + set_rule(world.get_location('Ganons Tower - Pre-Moldorm Chest', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) + set_rule(world.get_entrance('Ganons Tower Moldorm Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4)) + set_rule(world.get_entrance('Ganons Tower Moldorm Gap', player), lambda state: state.has('Hookshot', player) and world.get_entrance('Ganons Tower Moldorm Gap', player).parent_region.dungeon.bosses['top'].can_defeat(state)) + set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2', player)) + for location in ['Ganons Tower - Big Chest', 'Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', + 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: + forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) + + set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon, player) + and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times + set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop + + +def default_rules(world, player): if world.mode == 'standard': world.get_region('Hyrule Castle Secret Entrance', player).can_reach_private = lambda state: True old_rule = world.get_region('Links House', player).can_reach_private @@ -122,10 +354,6 @@ def global_rules(world, player): world.get_region('Links House', player).can_reach_private = lambda state: True world.get_region('Sanctuary', player).can_reach_private = lambda state: True - # we can s&q to the old man house after we rescue him. This may be somewhere completely different if caves are shuffled! - old_rule = world.get_region('Old Man House', player).can_reach_private - world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) - # overworld requirements set_rule(world.get_entrance('Kings Grave', player), lambda state: state.has_Boots(player)) set_rule(world.get_entrance('Kings Grave Outer Rocks', player), lambda state: state.can_lift_heavy_rocks(player)) @@ -133,7 +361,6 @@ def global_rules(world, player): set_rule(world.get_entrance('Kings Grave Mirror Spot', player), lambda state: state.has_Pearl(player) and state.has_Mirror(player)) # Caution: If king's grave is releaxed at all to account for reaching it via a two way cave's exit in insanity mode, then the bomb shop logic will need to be updated (that would involve create a small ledge-like Region for it) set_rule(world.get_entrance('Bonk Fairy (Light)', player), lambda state: state.has_Boots(player)) - set_rule(world.get_location('Sunken Treasure', player), lambda state: state.can_reach('Dam', 'Region', player)) set_rule(world.get_entrance('Bat Cave Drop Ledge', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('Lumberjack Tree Tree', player), lambda state: state.has_Boots(player) and state.has('Beat Agahnim 1', player)) set_rule(world.get_entrance('Bonk Rock Cave', player), lambda state: state.has_Boots(player)) @@ -150,27 +377,15 @@ def global_rules(world, player): set_rule(world.get_entrance('South Hyrule Teleporter', player), lambda state: state.has('Hammer', player) and state.can_lift_rocks(player) and state.has_Pearl(player)) # bunny cannot use hammer set_rule(world.get_entrance('Kakariko Teleporter', player), lambda state: ((state.has('Hammer', player) and state.can_lift_rocks(player)) or state.can_lift_heavy_rocks(player)) and state.has_Pearl(player)) # bunny cannot lift bushes set_rule(world.get_location('Flute Spot', player), lambda state: state.has('Shovel', player)) - set_rule(world.get_location('Dark Blacksmith Ruins', player), lambda state: state.has('Return Smith', player)) - set_rule(world.get_location('Purple Chest', player), lambda state: state.has('Pick Up Purple Chest', player)) # Can S&Q with chest set_rule(world.get_location('Zora\'s Ledge', player), lambda state: state.has('Flippers', player)) set_rule(world.get_entrance('Waterfall of Wishing', player), lambda state: state.has('Flippers', player)) # can be fake flippered into, but is in weird state inside that might prevent you from doing things. Can be improved in future Todo set_rule(world.get_location('Frog', player), lambda state: state.can_lift_heavy_rocks(player)) # will get automatic moon pearl requirement - set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player)) # Can S&Q with smith - set_rule(world.get_location('Blacksmith', player), lambda state: state.has('Return Smith', player)) - set_rule(world.get_location('Magic Bat', player), lambda state: state.has('Magic Powder', player)) - set_rule(world.get_location('Sick Kid', player), lambda state: state.has_bottle(player)) - set_rule(world.get_location('Library', player), lambda state: state.has_Boots(player)) set_rule(world.get_location('Potion Shop', player), lambda state: state.has('Mushroom', player)) set_rule(world.get_entrance('Desert Palace Entrance (North) Rocks', player), lambda state: state.can_lift_rocks(player)) set_rule(world.get_entrance('Desert Ledge Return Rocks', player), lambda state: state.can_lift_rocks(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)) - set_rule(world.get_location('Master Sword Pedestal', player), lambda state: state.has('Red Pendant', player) and state.has('Blue Pendant', player) and state.has('Green Pendant', player)) - set_rule(world.get_location('Sahasrahla', player), lambda state: state.has('Green Pendant', player)) set_rule(world.get_entrance('Agahnims Tower', player), lambda state: state.has('Cape', player) or state.has_beam_sword(player) or state.has('Beat Agahnim 1', player)) # barrier gets removed after killing agahnim, relevant for entrance shuffle - set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) - set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) - set_rule(world.get_location('Castle Tower - Dark Maze', player), lambda state: state.has_key('Small Key (Agahnims Tower)', player)) set_rule(world.get_entrance('Top of Pyramid', player), lambda state: state.has('Beat Agahnim 1', player)) set_rule(world.get_entrance('Old Man Cave Exit (West)', player), lambda state: False) # drop cannot be climbed up set_rule(world.get_entrance('Broken Bridge (West)', player), lambda state: state.has('Hookshot', player)) @@ -180,7 +395,6 @@ def global_rules(world, player): set_rule(world.get_entrance('Paradox Cave Push Block Reverse', player), lambda state: state.has('Mirror', player)) # can erase block set_rule(world.get_entrance('Death Mountain (Top)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('Turtle Rock Teleporter', player), lambda state: state.can_lift_heavy_rocks(player) and state.has('Hammer', player)) - set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) set_rule(world.get_entrance('East Death Mountain (Top)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_location('Catfish', player), lambda state: state.can_lift_rocks(player)) @@ -238,220 +452,10 @@ def global_rules(world, player): set_rule(world.get_entrance('Fairy Ascension Mirror Spot', player), lambda state: state.has_Mirror(player) and state.has_Pearl(player)) # need to lift flowers set_rule(world.get_entrance('Isolated Ledge Mirror Spot', player), lambda state: state.has_Mirror(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_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)))))) - ) - - set_rule(world.get_location('Hookshot Cave - Top Right', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_location('Hookshot Cave - Top Left', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_location('Hookshot Cave - Bottom Right', player), lambda state: state.has('Hookshot', player) or state.has('Pegasus Boots', player)) - set_rule(world.get_location('Hookshot Cave - Bottom Left', player), lambda state: state.has('Hookshot', player)) 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_Pearl(player) and 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 (!) - set_rule(world.get_location('Mimic Cave', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_entrance('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player)) - set_rule(world.get_entrance('Sewers Back Door', player), lambda state: state.has_key('Small Key (Escape)', player)) - - set_rule(world.get_location('Eastern Palace - Big Chest', player), lambda state: state.has('Big Key (Eastern Palace)', player)) - set_rule(world.get_location('Eastern Palace - Boss', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) - set_rule(world.get_location('Eastern Palace - Prize', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) - for location in ['Eastern Palace - Boss', 'Eastern Palace - Big Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Eastern Palace)', player) - - set_rule(world.get_location('Desert Palace - Big Chest', player), lambda state: state.has('Big Key (Desert Palace)', player)) - set_rule(world.get_location('Desert Palace - Torch', player), lambda state: state.has_Boots(player)) - set_rule(world.get_entrance('Desert Palace East Wing', player), lambda state: state.has_key('Small Key (Desert Palace)', player)) - set_rule(world.get_location('Desert Palace - Prize', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) - set_rule(world.get_location('Desert Palace - Boss', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) - for location in ['Desert Palace - Boss', 'Desert Palace - Big Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Desert Palace)', player) - - for location in ['Desert Palace - Boss', 'Desert Palace - Big Key Chest', 'Desert Palace - Compass Chest']: - forbid_item(world.get_location(location, player), 'Small Key (Desert Palace)', player) - - set_rule(world.get_entrance('Tower of Hera Small Key Door', player), lambda state: state.has_key('Small Key (Tower of Hera)', player) or item_name(state, 'Tower of Hera - Big Key Chest', player) == ('Small Key (Tower of Hera)', player)) - set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) - set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) - set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) - set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) - for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Tower of Hera)', player) -# for location in ['Tower of Hera - Big Key Chest']: -# forbid_item(world.get_location(location, player), 'Small Key (Tower of Hera)', player) - - set_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) - add_rule(world.get_location('Sunken Treasure', player), lambda state: state.has('Open Floodgate', player)) - - set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) - set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) - set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) - set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) - for location in ['Swamp Palace - Entrance']: - forbid_item(world.get_location(location, player), 'Big Key (Swamp Palace)', player) - - set_rule(world.get_entrance('Thieves Town Big Key Door', player), lambda state: state.has('Big Key (Thieves Town)', player)) - set_rule(world.get_entrance('Blind Fight', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) - set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) - set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) - set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) - for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: - forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) - for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Boss']: - forbid_item(world.get_location(location, player), 'Small Key (Thieves Town)', player) - - set_rule(world.get_entrance('Skull Woods First Section South Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) - set_rule(world.get_entrance('Skull Woods First Section (Right) North Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) - set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section - set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) - set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) - set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain - set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) - for location in ['Skull Woods - Boss']: - forbid_item(world.get_location(location, player), 'Small Key (Skull Woods)', player) - - set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.can_melt_things(player)) - set_rule(world.get_location('Ice Palace - Big Chest', player), lambda state: state.has('Big Key (Ice Palace)', player)) - set_rule(world.get_entrance('Ice Palace (Kholdstare)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', player) and state.has('Big Key (Ice Palace)', player) and (state.has_key('Small Key (Ice Palace)', player, 2) or (state.has('Cane of Somaria', player) and state.has_key('Small Key (Ice Palace)', player, 1)))) - # TODO: investigate change from VT. Changed to hookshot or 2 keys (no checking for big key in specific chests) - set_rule(world.get_entrance('Ice Palace (East)', player), lambda state: (state.has('Hookshot', player) or (item_in_locations(state, 'Big Key (Ice Palace)', player, [('Ice Palace - Spike Room', player), ('Ice Palace - Big Key Chest', player), ('Ice Palace - Map Chest', player)]) and state.has_key('Small Key (Ice Palace)', player))) and (state.world.can_take_damage or state.has('Hookshot', player) or state.has('Cape', player) or state.has('Cane of Byrna', player))) - set_rule(world.get_entrance('Ice Palace (East Top)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', 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)) - for location in ['Ice Palace - Big Chest', 'Ice Palace - Boss']: - forbid_item(world.get_location(location, player), 'Big Key (Ice Palace)', player) - - set_rule(world.get_entrance('Misery Mire Entrance Gap', player), lambda state: (state.has_Boots(player) or state.has('Hookshot', player)) and (state.has_sword(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Hammer', player) or state.has('Cane of Somaria', player) or state.can_shoot_arrows(player))) # need to defeat wizzrobes, bombs don't work ... - set_rule(world.get_location('Misery Mire - Big Chest', player), lambda state: state.has('Big Key (Misery Mire)', player)) - set_rule(world.get_location('Misery Mire - Spike Chest', player), lambda state: (state.world.can_take_damage and state.has_hearts(player, 4)) or state.has('Cane of Byrna', player) or state.has('Cape', player)) - set_rule(world.get_entrance('Misery Mire Big Key Door', player), lambda state: state.has('Big Key (Misery Mire)', player)) - # you can squander the free small key from the pot by opening the south door to the north west switch room, locking you out of accessing a color switch ... - # big key gives backdoor access to that from the teleporter in the north west - set_rule(world.get_location('Misery Mire - Map Chest', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 1) or state.has('Big Key (Misery Mire)', player)) - # in addition, you can open the door to the map room before getting access to a color switch, so this is locked behing 2 small keys or the big key... - set_rule(world.get_location('Misery Mire - Main Lobby', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) or state.has_key('Big Key (Misery Mire)', player)) - # we can place a small key in the West wing iff it also contains/blocks the Big Key, as we cannot reach and softlock with the basement key door yet - set_rule(world.get_entrance('Misery Mire (West)', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) if ((item_name(state, 'Misery Mire - Compass Chest', player) in [('Big Key (Misery Mire)', player)]) or - (item_name(state, 'Misery Mire - Big Key Chest', player) in [('Big Key (Misery Mire)', player)])) else state.has_key('Small Key (Misery Mire)', player, 3)) - set_rule(world.get_location('Misery Mire - Compass Chest', player), lambda state: state.has_fire_source(player)) - set_rule(world.get_location('Misery Mire - Big Key Chest', player), lambda state: state.has_fire_source(player)) - set_rule(world.get_entrance('Misery Mire (Vitreous)', player), lambda state: state.has('Cane of Somaria', player)) - set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Prize', player)) - for location in ['Misery Mire - Big Chest', 'Misery Mire - Boss']: - forbid_item(world.get_location(location, player), 'Big Key (Misery Mire)', player) - - set_rule(world.get_entrance('Turtle Rock Entrance Gap', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_entrance('Turtle Rock Entrance Gap Reverse', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_location('Turtle Rock - Compass Chest', player), lambda state: state.has('Cane of Somaria', player)) # We could get here from the middle section without Cane as we don't cross the entrance gap! - set_rule(world.get_location('Turtle Rock - Roller Room - Left', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) - set_rule(world.get_location('Turtle Rock - Roller Room - Right', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) - set_rule(world.get_location('Turtle Rock - Big Chest', player), lambda state: state.has('Big Key (Turtle Rock)', player) and (state.has('Cane of Somaria', player) or state.has('Hookshot', player))) - set_rule(world.get_entrance('Turtle Rock (Big Chest) (North)', player), lambda state: state.has('Cane of Somaria', player) or state.has('Hookshot', player)) - set_rule(world.get_entrance('Turtle Rock Big Key Door', player), lambda state: state.has('Big Key (Turtle Rock)', player)) - set_rule(world.get_entrance('Turtle Rock (Dark Room) (North)', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_entrance('Turtle Rock (Dark Room) (South)', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_entrance('Turtle Rock (Trinexx)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4) and state.has('Big Key (Turtle Rock)', player) and state.has('Cane of Somaria', player)) - set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Prize', player)) - - set_rule(world.get_entrance('Palace of Darkness Bonk Wall', player), lambda state: state.can_shoot_arrows(player)) - set_rule(world.get_entrance('Palace of Darkness Hammer Peg Drop', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_entrance('Palace of Darkness Bridge Room', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 1)) # If we can reach any other small key door, we already have back door access to this area - set_rule(world.get_entrance('Palace of Darkness Big Key Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) and state.has('Big Key (Palace of Darkness)', player) and state.can_shoot_arrows(player) and state.has('Hammer', player)) - set_rule(world.get_entrance('Palace of Darkness (North)', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 4)) - set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) - - set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) - else: - forbid_item(world.get_location('Palace of Darkness - Big Key Chest', player), 'Small Key (Palace of Darkness)', player) - - set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) - else: - forbid_item(world.get_location('Palace of Darkness - Harmless Hellway', player), 'Small Key (Palace of Darkness)', player) - - set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) - set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) - - # these key rules are conservative, you might be able to get away with more lenient rules - randomizer_room_chests = ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'] - compass_room_chests = ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'] - - set_rule(world.get_location('Ganons Tower - Bob\'s Torch', player), lambda state: state.has_Boots(player)) - set_rule(world.get_entrance('Ganons Tower (Tile Room)', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) - - set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) - else: - forbid_item(world.get_location('Ganons Tower - Map Chest', player), 'Small Key (Ganons Tower)', player) - - # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. - # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. - set_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 2)) - # It is possible to need more than 3 keys .... - set_rule(world.get_entrance('Ganons Tower (Firesnake Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) - - #The actual requirements for these rooms to avoid key-lock - set_rule(world.get_location('Ganons Tower - Firesnake Room', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 2))) - for location in randomizer_room_chests: - set_rule(world.get_location(location, player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3))) - - # Once again it is possible to need more than 3 keys... - set_rule(world.get_entrance('Ganons Tower (Tile Room) Key Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) and state.has('Fire Rod', player)) - # Actual requirements - for location in compass_room_chests: - set_rule(world.get_location(location, player), lambda state: state.has('Fire Rod', player) and (state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(compass_room_chests, [player] * len(compass_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3)))) - - set_rule(world.get_location('Ganons Tower - Big Chest', player), lambda state: state.has('Big Key (Ganons Tower)', player)) - - set_rule(world.get_location('Ganons Tower - Big Key Room - Left', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Left', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Big Key Chest', player), lambda state: world.get_location('Ganons Tower - Big Key Chest', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Big Key Room - Right', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Right', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - - set_rule(world.get_entrance('Ganons Tower Big Key Door', player), lambda state: state.has('Big Key (Ganons Tower)', player) and state.can_shoot_arrows(player)) - set_rule(world.get_entrance('Ganons Tower Torch Rooms', player), lambda state: state.has_fire_source(player) and world.get_entrance('Ganons Tower Torch Rooms', player).parent_region.dungeon.bosses['middle'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Pre-Moldorm Chest', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) - set_rule(world.get_entrance('Ganons Tower Moldorm Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4)) - set_rule(world.get_entrance('Ganons Tower Moldorm Gap', player), lambda state: state.has('Hookshot', player) and world.get_entrance('Ganons Tower Moldorm Gap', player).parent_region.dungeon.bosses['top'].can_defeat(state)) - set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2', player)) set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player)) - for location in ['Ganons Tower - Big Chest', 'Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', - 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) - - set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon, player) - and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times - set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop - set_rule(world.get_entrance('Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. if world.swords == 'swordless': @@ -462,21 +466,11 @@ def global_rules(world, player): set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) def inverted_rules(world, player): - if world.goal == 'triforcehunt': - for location in world.get_locations(): - if location.player != player: - forbid_item(location, 'Triforce Piece', player) - - add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) - # s&q regions. link's house entrance is set to true so the filler knows the chest inside can always be reached world.get_region('Inverted Links House', player).can_reach_private = lambda state: True world.get_region('Inverted Links House', player).entrances[0].can_reach = lambda state: True world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach_private = lambda state: True - old_rule = world.get_region('Old Man House', player).can_reach_private - world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) - old_rule = world.get_region('Hyrule Castle Ledge', player).can_reach_private world.get_region('Hyrule Castle Ledge', player).can_reach_private = lambda state: (state.has_Mirror(player) and state.has('Beat Agahnim 1', player) and state.can_reach_light_world(player)) or old_rule(state) @@ -499,7 +493,6 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Secret Passage Outer Bushes', player), lambda state: state.has_Pearl(player)) # Caution: If king's grave is releaxed at all to account for reaching it via a two way cave's exit in insanity mode, then the bomb shop logic will need to be updated (that would involve create a small ledge-like Region for it) set_rule(world.get_entrance('Bonk Fairy (Light)', player), lambda state: state.has_Boots(player) and state.has_Pearl(player)) - add_rule(world.get_location('Sunken Treasure', player), lambda state: state.can_reach('Light World', 'Region', player) and state.has('Open Floodgate', player)) set_rule(world.get_entrance('Bat Cave Drop Ledge', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) set_rule(world.get_entrance('Lumberjack Tree Tree', player), lambda state: state.has_Boots(player) and state.has_Pearl(player) and state.has('Beat Agahnim 1', player)) set_rule(world.get_entrance('Bonk Rock Cave', player), lambda state: state.has_Boots(player) and state.has_Pearl(player)) @@ -516,16 +509,10 @@ def inverted_rules(world, player): set_rule(world.get_entrance('South Dark World Teleporter', player), lambda state: state.has('Hammer', player) and state.can_lift_rocks(player) and state.has_Pearl(player)) # bunny cannot use hammer set_rule(world.get_entrance('West Dark World Teleporter', player), lambda state: ((state.has('Hammer', player) and state.can_lift_rocks(player)) or state.can_lift_heavy_rocks(player)) and state.has_Pearl(player)) set_rule(world.get_location('Flute Spot', player), lambda state: state.has('Shovel', player) and state.has_Pearl(player)) - set_rule(world.get_location('Dark Blacksmith Ruins', player), lambda state: state.has('Return Smith', player)) - set_rule(world.get_location('Purple Chest', player), lambda state: state.has('Pick Up Purple Chest', player)) # Can S&Q with chest set_rule(world.get_location('Zora\'s Ledge', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player)) set_rule(world.get_entrance('Waterfall of Wishing', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player)) # can be fake flippered into, but is in weird state inside that might prevent you from doing things. Can be improved in future Todo set_rule(world.get_location('Frog', player), lambda state: state.can_lift_heavy_rocks(player) or (state.can_reach('Light World', 'Region', player) and state.has_Mirror(player))) - set_rule(world.get_location('Missing Smith', player), lambda state: state.has('Get Frog', player) and state.can_reach('Blacksmiths Hut', 'Region', player)) # Can't S&Q with smith - set_rule(world.get_location('Blacksmith', player), lambda state: state.has('Return Smith', player)) - set_rule(world.get_location('Magic Bat', player), lambda state: state.has('Magic Powder', player) and state.has_Pearl(player)) - set_rule(world.get_location('Sick Kid', player), lambda state: state.has_bottle(player)) set_rule(world.get_location('Mushroom', player), lambda state: state.has_Pearl(player)) # need pearl to pick up bushes set_rule(world.get_entrance('Bush Covered Lawn Mirror Spot', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Bush Covered Lawn Inner Bushes', player), lambda state: state.has_Pearl(player)) @@ -534,16 +521,10 @@ 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('Library', player), lambda state: state.has_Boots(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_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)) - set_rule(world.get_location('Master Sword Pedestal', player), lambda state: state.has('Red Pendant', player) and state.has('Blue Pendant', player) and state.has('Green Pendant', player)) - set_rule(world.get_location('Sahasrahla', player), lambda state: state.has('Green Pendant', player)) - set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) - set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) - set_rule(world.get_location('Castle Tower - Dark Maze', player), lambda state: state.has_key('Small Key (Agahnims Tower)', player)) set_rule(world.get_entrance('Hyrule Castle Secret Entrance Drop', player), lambda state: state.has_Pearl(player)) set_rule(world.get_entrance('Old Man Cave Exit (West)', player), lambda state: False) # drop cannot be climbed up set_rule(world.get_entrance('Broken Bridge (West)', player), lambda state: state.has('Hookshot', player) and state.has_Pearl(player)) @@ -553,7 +534,6 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Paradox Cave Push Block Reverse', player), lambda state: state.has('Mirror', player)) # can erase block set_rule(world.get_entrance('Death Mountain (Top)', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) set_rule(world.get_entrance('Dark Death Mountain Teleporter (East)', player), lambda state: state.can_lift_heavy_rocks(player) and state.has('Hammer', player) and state.has_Pearl(player)) # bunny cannot use hammer - set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has_beam_sword(player)) set_rule(world.get_entrance('East Death Mountain (Top)', player), lambda state: state.has('Hammer', player) and state.has_Pearl(player)) # bunny can not use hammer set_rule(world.get_location('Catfish', player), lambda state: state.can_lift_rocks(player) or (state.has('Flippers', player) and state.has_Mirror(player) and state.has_Pearl(player) and state.can_reach('Light World', 'Region', player))) @@ -596,22 +576,8 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Dark Death Mountain Ledge Mirror Spot (West)', player), lambda state: state.has_Mirror(player)) set_rule(world.get_entrance('Laser Bridge Mirror Spot', player), lambda state: state.has_Mirror(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_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)))))) - ) - - set_rule(world.get_location('Hookshot Cave - Top Right', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_location('Hookshot Cave - Top Left', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_location('Hookshot Cave - Bottom Right', player), lambda state: state.has('Hookshot', player) or state.has('Pegasus Boots', player)) - set_rule(world.get_location('Hookshot Cave - Bottom Left', player), lambda state: state.has('Hookshot', player)) 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 (!) - set_rule(world.get_location('Mimic Cave', player), lambda state: state.has('Hammer', player)) # new inverted spots set_rule(world.get_entrance('Post Aga Teleporter', player), lambda state: state.has('Beat Agahnim 1', player)) @@ -644,204 +610,7 @@ def inverted_rules(world, 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('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player)) - set_rule(world.get_entrance('Sewers Back Door', player), lambda state: state.has_key('Small Key (Escape)', player)) - - set_rule(world.get_location('Eastern Palace - Big Chest', player), lambda state: state.has('Big Key (Eastern Palace)', player)) - set_rule(world.get_location('Eastern Palace - Boss', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) - set_rule(world.get_location('Eastern Palace - Prize', player), lambda state: state.can_shoot_arrows(player) and state.has('Big Key (Eastern Palace)', player) and world.get_location('Eastern Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) - for location in ['Eastern Palace - Boss', 'Eastern Palace - Big Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Eastern Palace)', player) - - set_rule(world.get_location('Desert Palace - Big Chest', player), lambda state: state.has('Big Key (Desert Palace)', player)) - set_rule(world.get_location('Desert Palace - Torch', player), lambda state: state.has_Boots(player)) - set_rule(world.get_entrance('Desert Palace East Wing', player), lambda state: state.has_key('Small Key (Desert Palace)', player)) - set_rule(world.get_location('Desert Palace - Prize', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Prize', player).parent_region.dungeon.boss.can_defeat(state)) - set_rule(world.get_location('Desert Palace - Boss', player), lambda state: state.has_key('Small Key (Desert Palace)', player) and state.has('Big Key (Desert Palace)', player) and state.has_fire_source(player) and world.get_location('Desert Palace - Boss', player).parent_region.dungeon.boss.can_defeat(state)) - for location in ['Desert Palace - Boss', 'Desert Palace - Big Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Desert Palace)', player) - - for location in ['Desert Palace - Boss', 'Desert Palace - Big Key Chest', 'Desert Palace - Compass Chest']: - forbid_item(world.get_location(location, player), 'Small Key (Desert Palace)', player) - - set_rule(world.get_entrance('Tower of Hera Small Key Door', player), lambda state: state.has_key('Small Key (Tower of Hera)', player) or item_name(state, 'Tower of Hera - Big Key Chest', player) == ('Small Key (Tower of Hera)', player)) - set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) - set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) - set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) - set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) - for location in ['Tower of Hera - Boss', 'Tower of Hera - Big Chest', 'Tower of Hera - Compass Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Tower of Hera)', player) -# for location in ['Tower of Hera - Big Key Chest']: -# forbid_item(world.get_location(location, player), 'Small Key (Tower of Hera)', player) - - set_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has('Flippers', player) and state.has('Open Floodgate', player)) - add_rule(world.get_location('Sunken Treasure', player), lambda state: state.has('Open Floodgate', player)) - - set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) - set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) - set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) - set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Prize', player)) - for location in ['Swamp Palace - Entrance']: - forbid_item(world.get_location(location, player), 'Big Key (Swamp Palace)', player) - - set_rule(world.get_entrance('Thieves Town Big Key Door', player), lambda state: state.has('Big Key (Thieves Town)', player)) - set_rule(world.get_entrance('Blind Fight', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) - set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) - set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) - set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) - for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: - forbid_item(world.get_location(location, player), 'Big Key (Thieves Town)', player) - for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Boss']: - forbid_item(world.get_location(location, player), 'Small Key (Thieves Town)', player) - - set_rule(world.get_entrance('Skull Woods First Section South Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) - set_rule(world.get_entrance('Skull Woods First Section (Right) North Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player)) - set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section - set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) - set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) - - set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain - set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Prize', player)) - for location in ['Skull Woods - Boss']: - forbid_item(world.get_location(location, player), 'Small Key (Skull Woods)', player) - - set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.can_melt_things(player)) - set_rule(world.get_location('Ice Palace - Big Chest', player), lambda state: state.has('Big Key (Ice Palace)', player)) - set_rule(world.get_entrance('Ice Palace (Kholdstare)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', player) and state.has('Big Key (Ice Palace)', player) and (state.has_key('Small Key (Ice Palace)', player, 2) or (state.has('Cane of Somaria', player) and state.has_key('Small Key (Ice Palace)', player, 1)))) - # TODO: investigate change from VT. Changed to hookshot or 2 keys (no checking for big key in specific chests) - set_rule(world.get_entrance('Ice Palace (East)', player), lambda state: (state.has('Hookshot', player) or (item_in_locations(state, 'Big Key (Ice Palace)', player, [('Ice Palace - Spike Room', player), ('Ice Palace - Big Key Chest', player), ('Ice Palace - Map Chest', player)]) and state.has_key('Small Key (Ice Palace)', player))) and (state.world.can_take_damage or state.has('Hookshot', player) or state.has('Cape', player) or state.has('Cane of Byrna', player))) - set_rule(world.get_entrance('Ice Palace (East Top)', player), lambda state: state.can_lift_rocks(player) and state.has('Hammer', 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)) - for location in ['Ice Palace - Big Chest', 'Ice Palace - Boss']: - forbid_item(world.get_location(location, player), 'Big Key (Ice Palace)', player) - - set_rule(world.get_entrance('Misery Mire Entrance Gap', player), lambda state: (state.has_Boots(player) or state.has('Hookshot', player)) and (state.has_sword(player) or state.has('Fire Rod', player) or state.has('Ice Rod', player) or state.has('Hammer', player) or state.has('Cane of Somaria', player) or state.can_shoot_arrows(player))) # need to defeat wizzrobes, bombs don't work ... - set_rule(world.get_location('Misery Mire - Big Chest', player), lambda state: state.has('Big Key (Misery Mire)', player)) - set_rule(world.get_location('Misery Mire - Spike Chest', player), lambda state: (state.world.can_take_damage and state.has_hearts(player, 4)) or state.has('Cane of Byrna', player) or state.has('Cape', player)) - set_rule(world.get_entrance('Misery Mire Big Key Door', player), lambda state: state.has('Big Key (Misery Mire)', player)) - # you can squander the free small key from the pot by opening the south door to the north west switch room, locking you out of accessing a color switch ... - # big key gives backdoor access to that from the teleporter in the north west - set_rule(world.get_location('Misery Mire - Map Chest', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 1) or state.has('Big Key (Misery Mire)', player)) - # in addition, you can open the door to the map room before getting access to a color switch, so this is locked behing 2 small keys or the big key... - set_rule(world.get_location('Misery Mire - Main Lobby', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) or state.has_key('Big Key (Misery Mire)', player)) - # we can place a small key in the West wing iff it also contains/blocks the Big Key, as we cannot reach and softlock with the basement key door yet - set_rule(world.get_entrance('Misery Mire (West)', player), lambda state: state.has_key('Small Key (Misery Mire)', player, 2) if ((item_name(state, 'Misery Mire - Compass Chest', player) in [('Big Key (Misery Mire)', player)]) or - (item_name(state, 'Misery Mire - Big Key Chest', player) in [('Big Key (Misery Mire)', player)])) else state.has_key('Small Key (Misery Mire)', player, 3)) - set_rule(world.get_location('Misery Mire - Compass Chest', player), lambda state: state.has_fire_source(player)) - set_rule(world.get_location('Misery Mire - Big Key Chest', player), lambda state: state.has_fire_source(player)) - set_rule(world.get_entrance('Misery Mire (Vitreous)', player), lambda state: state.has('Cane of Somaria', player)) - set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Misery Mire - Prize', player)) - for location in ['Misery Mire - Big Chest', 'Misery Mire - Boss']: - forbid_item(world.get_location(location, player), 'Big Key (Misery Mire)', player) - - set_rule(world.get_entrance('Turtle Rock Entrance Gap', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_entrance('Turtle Rock Entrance Gap Reverse', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_location('Turtle Rock - Compass Chest', player), lambda state: state.has('Cane of Somaria', player)) # We could get here from the middle section without Cane as we don't cross the entrance gap! - set_rule(world.get_location('Turtle Rock - Roller Room - Left', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) - set_rule(world.get_location('Turtle Rock - Roller Room - Right', player), lambda state: state.has('Cane of Somaria', player) and state.has('Fire Rod', player)) - set_rule(world.get_location('Turtle Rock - Big Chest', player), lambda state: state.has('Big Key (Turtle Rock)', player) and (state.has('Cane of Somaria', player) or state.has('Hookshot', player))) - set_rule(world.get_entrance('Turtle Rock (Big Chest) (North)', player), lambda state: state.has('Cane of Somaria', player) or state.has('Hookshot', player)) - set_rule(world.get_entrance('Turtle Rock Big Key Door', player), lambda state: state.has('Big Key (Turtle Rock)', player)) - set_rule(world.get_entrance('Turtle Rock (Dark Room) (North)', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_entrance('Turtle Rock (Dark Room) (South)', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Bottom Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right', player), lambda state: state.has('Cane of Byrna', player) or state.has('Cape', player) or state.has('Mirror Shield', player)) - set_rule(world.get_entrance('Turtle Rock (Trinexx)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 4) and state.has('Big Key (Turtle Rock)', player) and state.has('Cane of Somaria', player)) - set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Turtle Rock - Prize', player)) - - set_rule(world.get_entrance('Palace of Darkness Bonk Wall', player), lambda state: state.can_shoot_arrows(player)) - set_rule(world.get_entrance('Palace of Darkness Hammer Peg Drop', player), lambda state: state.has('Hammer', player)) - set_rule(world.get_entrance('Palace of Darkness Bridge Room', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 1)) # If we can reach any other small key door, we already have back door access to this area - set_rule(world.get_entrance('Palace of Darkness Big Key Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) and state.has('Big Key (Palace of Darkness)', player) and state.can_shoot_arrows(player) and state.has('Hammer', player)) - set_rule(world.get_entrance('Palace of Darkness (North)', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 4)) - set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) - - set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) - else: - forbid_item(world.get_location('Palace of Darkness - Big Key Chest', player), 'Small Key (Palace of Darkness)', player) - - set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) - else: - forbid_item(world.get_location('Palace of Darkness - Harmless Hellway', player), 'Small Key (Palace of Darkness)', player) - - set_rule(world.get_entrance('Palace of Darkness Maze Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6)) - set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Boss', player)) - set_defeat_dungeon_boss_rule(world.get_location('Palace of Darkness - Prize', player)) - - # these key rules are conservative, you might be able to get away with more lenient rules - randomizer_room_chests = ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'] - compass_room_chests = ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'] - - set_rule(world.get_location('Ganons Tower - Bob\'s Torch', player), lambda state: state.has_Boots(player)) - set_rule(world.get_entrance('Ganons Tower (Tile Room)', player), lambda state: state.has('Cane of Somaria', player)) - set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) - - set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) - if world.accessibility != 'locations': - set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) - else: - forbid_item(world.get_location('Ganons Tower - Map Chest', player), 'Small Key (Ganons Tower)', player) - - # It is possible to need more than 2 keys to get through this entance if you spend keys elsewhere. We reflect this in the chest requirements. - # However we need to leave these at the lower values to derive that with 3 keys it is always possible to reach Bob and Ice Armos. - set_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 2)) - # It is possible to need more than 3 keys .... - set_rule(world.get_entrance('Ganons Tower (Firesnake Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) - - #The actual requirements for these rooms to avoid key-lock - set_rule(world.get_location('Ganons Tower - Firesnake Room', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 2))) - for location in randomizer_room_chests: - set_rule(world.get_location(location, player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(randomizer_room_chests, [player] * len(randomizer_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3))) - - # Once again it is possible to need more than 3 keys... - set_rule(world.get_entrance('Ganons Tower (Tile Room) Key Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3) and state.has('Fire Rod', player)) - # Actual requirements - for location in compass_room_chests: - set_rule(world.get_location(location, player), lambda state: state.has('Fire Rod', player) and (state.has_key('Small Key (Ganons Tower)', player, 4) or (item_in_locations(state, 'Big Key (Ganons Tower)', player, zip(compass_room_chests, [player] * len(compass_room_chests))) and state.has_key('Small Key (Ganons Tower)', player, 3)))) - - set_rule(world.get_location('Ganons Tower - Big Chest', player), lambda state: state.has('Big Key (Ganons Tower)', player)) - - set_rule(world.get_location('Ganons Tower - Big Key Room - Left', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Left', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Big Key Chest', player), lambda state: world.get_location('Ganons Tower - Big Key Chest', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Big Key Room - Right', player), lambda state: world.get_location('Ganons Tower - Big Key Room - Right', player).parent_region.dungeon.bosses['bottom'].can_defeat(state)) - - set_rule(world.get_entrance('Ganons Tower Big Key Door', player), lambda state: state.has('Big Key (Ganons Tower)', player) and state.can_shoot_arrows(player)) - set_rule(world.get_entrance('Ganons Tower Torch Rooms', player), lambda state: state.has_fire_source(player) and world.get_entrance('Ganons Tower Torch Rooms', player).parent_region.dungeon.bosses['middle'].can_defeat(state)) - set_rule(world.get_location('Ganons Tower - Pre-Moldorm Chest', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 3)) - set_rule(world.get_entrance('Ganons Tower Moldorm Door', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4)) - set_rule(world.get_entrance('Ganons Tower Moldorm Gap', player), lambda state: state.has('Hookshot', player) and world.get_entrance('Ganons Tower Moldorm Gap', player).parent_region.dungeon.bosses['top'].can_defeat(state)) - set_defeat_dungeon_boss_rule(world.get_location('Agahnim 2', player)) set_rule(world.get_entrance('Inverted Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player)) - for location in ['Ganons Tower - Big Chest', 'Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', - 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: - forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) - - set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon, player) - and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times - set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop - 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. if world.swords == 'swordless': @@ -1111,7 +880,6 @@ def set_big_bomb_rules(world, player): 'Bonk Rock Cave', 'Library', 'Potion Shop', - 'Waterfall of Wishing', 'Dam', 'Lumberjack House', 'Lake Hylia Fortune Teller', @@ -1307,6 +1075,10 @@ def set_big_bomb_rules(world, player): # to account for insanity, must consider a way to escape without a cave for basic_routes # -> (M and Mitts) or ((Mitts or Flute or (M and P and West Dark World access)) and BR) add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_lift_heavy_rocks(player) and state.has_Mirror(player)) or ((state.can_lift_heavy_rocks(player) or state.has('Ocarina', player) or (state.can_reach('West Dark World', 'Region', player) and state.has_Pearl(player) and state.has_Mirror(player))) and basic_routes(state))) + elif bombshop_entrance.name == 'Waterfall of Wishing': + # same as the Normal_LW_entrances case except in insanity it's possible you could be here without Flippers which + # means you need an escape route of either Flippers or Flute + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.has('Flippers', player) or state.has('Ocarina', player)) and (basic_routes(state) or state.has_Mirror(player))) def set_inverted_big_bomb_rules(world, player): bombshop_entrance = world.get_region('Inverted Big Bomb Shop', player).entrances[0] @@ -1325,9 +1097,7 @@ def set_inverted_big_bomb_rules(world, player): 'Fortune Teller (Light)', 'Snitch Lady (East)', 'Snitch Lady (West)', - 'Bush Covered House', 'Tavern (Front)', - 'Light World Bomb Hut', 'Kakariko Shop', 'Mini Moldorm Cave', 'Long Fairy Cave', @@ -1338,7 +1108,6 @@ def set_inverted_big_bomb_rules(world, player): 'Bonk Rock Cave', 'Library', 'Potion Shop', - 'Waterfall of Wishing', 'Dam', 'Lumberjack House', 'Lake Hylia Fortune Teller', @@ -1354,14 +1123,33 @@ def set_inverted_big_bomb_rules(world, player): 'Two Brothers House (East)', 'Sanctuary', 'Hyrule Castle Entrance (South)', - 'Hyrule Castle Secret Entrance Stairs'] - LW_walkable_entrances = ['Dark Lake Hylia Ledge Fairy', - 'Dark Lake Hylia Ledge Spike Cave', - 'Dark Lake Hylia Ledge Hint', - 'Mire Shed', - 'Dark Desert Hint', - 'Dark Desert Fairy', - 'Misery Mire'] + 'Hyrule Castle Secret Entrance Stairs', + 'Hyrule Castle Entrance (West)', + 'Hyrule Castle Entrance (East)', + 'Inverted Ganons Tower', + 'Cave 45', + 'Checkerboard Cave'] + LW_DM_entrances = ['Old Man Cave (East)', + 'Old Man House (Bottom)', + 'Old Man House (Top)', + 'Death Mountain Return Cave (East)', + 'Spectacle Rock Cave Peak', + 'Spectacle Rock Cave', + 'Spectacle Rock Cave (Bottom)', + 'Tower of Hera', + 'Death Mountain Return Cave (West)', + 'Paradox Cave (Top)', + 'Fairy Ascension Cave (Top)', + 'Spiral Cave', + 'Paradox Cave (Bottom)', + 'Paradox Cave (Middle)', + 'Hookshot Fairy', + 'Spiral Cave (Bottom)', + 'Mimic Cave', + 'Fairy Ascension Cave (Bottom)', + 'Desert Palace Entrance (West)', + 'Desert Palace Entrance (North)', + 'Desert Palace Entrance (South)'] Northern_DW_entrances = ['Brewery', 'C-Shaped House', 'Chest Game', @@ -1383,10 +1171,8 @@ def set_inverted_big_bomb_rules(world, player): Isolated_DW_entrances = ['Spike Cave', 'Cave Shop (Dark Death Mountain)', 'Dark Death Mountain Fairy', - 'Mimic Cave', 'Skull Woods Second Section Door (West)', 'Skull Woods Final Section', - 'Ice Palace', 'Turtle Rock', 'Dark Death Mountain Ledge (West)', 'Dark Death Mountain Ledge (East)', @@ -1396,37 +1182,17 @@ def set_inverted_big_bomb_rules(world, player): 'Hookshot Cave', 'Turtle Rock Isolated Ledge Entrance', 'Hookshot Cave Back Entrance', - 'Inverted Agahnims Tower'] - Isolated_LW_entrances = ['Capacity Upgrade', - 'Tower of Hera', - 'Death Mountain Return Cave (West)', - 'Paradox Cave (Top)', - 'Fairy Ascension Cave (Top)', - 'Spiral Cave', - 'Desert Palace Entrance (East)'] - West_LW_DM_entrances = ['Old Man Cave (East)', - 'Old Man House (Bottom)', - 'Old Man House (Top)', - 'Death Mountain Return Cave (East)', - 'Spectacle Rock Cave Peak', - 'Spectacle Rock Cave', - 'Spectacle Rock Cave (Bottom)'] - East_LW_DM_entrances = ['Paradox Cave (Bottom)', - 'Paradox Cave (Middle)', - 'Hookshot Fairy', - 'Spiral Cave (Bottom)'] - Mirror_from_SDW_entrances = ['Two Brothers House (West)', - 'Cave 45'] - Castle_ledge_entrances = ['Hyrule Castle Entrance (West)', - 'Hyrule Castle Entrance (East)', - 'Inverted Ganons Tower'] - Desert_mirrorable_ledge_entrances = ['Desert Palace Entrance (West)', - 'Desert Palace Entrance (North)', - 'Desert Palace Entrance (South)', - 'Checkerboard Cave',] - Desert_ledge_entrances = ['Desert Palace Entrance (West)', - 'Desert Palace Entrance (North)', - 'Desert Palace Entrance (South)'] + 'Inverted Agahnims Tower', + 'Dark Lake Hylia Ledge Fairy', + 'Dark Lake Hylia Ledge Spike Cave', + 'Dark Lake Hylia Ledge Hint', + 'Mire Shed', + 'Dark Desert Hint', + 'Dark Desert Fairy', + 'Misery Mire'] + 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)) @@ -1441,41 +1207,48 @@ def set_inverted_big_bomb_rules(world, player): # M = Mirror # G = Glove if bombshop_entrance.name in Normal_LW_entrances: + # Just walk to the castle and mirror. add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) - elif bombshop_entrance.name in LW_walkable_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player)) + elif bombshop_entrance.name in LW_DM_entrances: + # For these entrances, you cannot walk to the castle/pyramid and thus must use Mirror and then Flute. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) elif bombshop_entrance.name in Northern_DW_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute or (state.can_lift_heavy_rocks(player) and (cross_peg_bridge(state) or (state.has_Mirror(player) and state.has('Beat Agahnim 1', player))))) - elif bombshop_entrance.name == 'Bumper Cave (Bottom)': - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute or (state.can_lift_heavy_rocks(player) and (cross_peg_bridge(state) or state.has_Mirror(player) and state.has('Beat Agahnim 1', player)))) + # You can just fly with the Flute, you can take a long walk with Mitts and Hammer, + # or you can leave a Mirror portal nearby and then walk to the castle to Mirror again. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute or (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (state.has_Mirror(player) and state.can_reach('Light World', 'Region', player))) elif bombshop_entrance.name in Southern_DW_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: cross_peg_bridge(state) or state.can_flute(player) or (state.has_Mirror(player) and state.has('Beat Agahnim 1', player))) + # This is the same as north DW without the Mitts rock present. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: cross_peg_bridge(state) or state.can_flute(player) or (state.has_Mirror(player) and state.can_reach('Light World', 'Region', player))) elif bombshop_entrance.name in Isolated_DW_entrances: + # There's just no way to escape these places with the bomb and no Flute. add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player)) - elif bombshop_entrance.name in Isolated_LW_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) - elif bombshop_entrance.name in West_LW_DM_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) - elif bombshop_entrance.name in East_LW_DM_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) - elif bombshop_entrance.name == 'Fairy Ascension Cave (Bottom)': - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) and state.has_Mirror(player)) - elif bombshop_entrance.name in Castle_ledge_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) - elif bombshop_entrance.name in Desert_ledge_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and state.can_flute(player)) - elif bombshop_entrance.name == 'Checkerboard Cave': - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) + elif bombshop_entrance.name in LW_bush_entrances: + # These entrances are behind bushes in LW so you need either Pearl or the tools to solve NDW bomb shop locations. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and (state.can_flute(player) or state.has_Pearl(player) or (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)))) + elif bombshop_entrance.name == 'Bumper Cave (Bottom)': + # This is mostly the same as NDW but the Mirror path requires being able to lift a rock. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute or (state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (state.has_Mirror(player) and state.can_lift_rocks(player) and state.can_reach('Light World', 'Region', player))) elif bombshop_entrance.name == 'Old Man Cave (West)': - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and ((state.can_lift_rocks(player) and cross_peg_bridge(state)) or state.can_flute(player))) - elif bombshop_entrance.name == 'Graveyard Cave': - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player)) - elif bombshop_entrance.name in Mirror_from_SDW_entrances: - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and (state.can_flute(player) or cross_peg_bridge(state))) + # The three paths back are Mirror and DW walk, Mirror and Flute, or LW walk and then Mirror. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has_Mirror(player) and ((state.can_lift_heavy_rocks(player) and cross_peg_bridge(state)) or (state.can_lift_rocks(player) and state.has_Pearl(player)) or state.can_flute(player))) elif bombshop_entrance.name == 'Dark World Potion Shop': + # You either need to Flute to 5 or cross the rock/hammer choice pass to the south. add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_flute(player) or state.has('Hammer', player) or state.can_lift_rocks(player)) elif bombshop_entrance.name == 'Kings Grave': - add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.can_lift_heavy_rocks(player) and state.has_Mirror(player)) + # Either lift the rock and walk to the castle to Mirror or Mirror immediately and Flute. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_flute(player) or state.can_lift_heavy_rocks(player)) and state.has_Mirror(player)) + elif bombshop_entrance.name == 'Two Brothers House (West)': + # First you must Mirror. Then you can either Flute, cross the peg bridge, or use the Agah 1 portal to Mirror again. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.can_flute(player) or cross_peg_bridge(state) or state.has('Beat Agahnim 1', player)) and state.has_Mirror(player)) + elif bombshop_entrance.name == 'Waterfall of Wishing': + # You absolutely must be able to swim to return it from here. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has('Flippers', player) and state.has_Pearl(player) and state.has_Mirror(player)) + elif bombshop_entrance.name == 'Ice Palace': + # You can swim to the dock or use the Flute to get off the island. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: state.has('Flippers', player) or state.can_flute(player)) + elif bombshop_entrance.name == 'Capacity Upgrade': + # You must Mirror but then can use either Ice Palace return path. + add_rule(world.get_entrance('Pyramid Fairy', player), lambda state: (state.has('Flippers', player) or state.can_flute(player)) and state.has_Mirror(player)) def set_bunny_rules(world, player): From 63db5ac07779942ecae30fdc7885dca01132d913 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Wed, 23 Oct 2019 20:45:02 -0500 Subject: [PATCH 057/185] Hints for inverted A few locations have different internal names in inverted mode, and the hint system used to fail to handle this. Now it will handle this correctly. --- Rom.py | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/Rom.py b/Rom.py index ae7bad8d..a450072d 100644 --- a/Rom.py +++ b/Rom.py @@ -1181,7 +1181,10 @@ def write_strings(rom, world, player): entrances_to_hint = {} entrances_to_hint.update(InconvenientDungeonEntrances) if world.shuffle_ganon: - entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) + if world.mode == 'inverted': + entrances_to_hint.update({'Inverted Ganons Tower': 'The sealed castle door'}) + else: + entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) if world.shuffle in ['simple', 'restricted', 'restricted_legacy']: for entrance in all_entrances: if entrance.name in entrances_to_hint: @@ -1211,13 +1214,27 @@ def write_strings(rom, world, player): if world.shuffle not in ['simple', 'restricted', 'restricted_legacy']: entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(DungeonEntrances) + if world.mode == 'inverted': + entrances_to_hint.update({'Inverted Agahnims Tower': 'The dark mountain tower'}) + else: + entrances_to_hint.update({'Agahnims Tower': 'The sealed castle door'}) elif world.shuffle == 'restricted': entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(OtherEntrances) + if world.mode == 'inverted': + entrances_to_hint.update({'Inverted Dark Sanctuary': 'The dark sanctuary cave'}) + entrances_to_hint.update({'Inverted Big Bomb Shop': 'The old hero\'s dark home'}) + entrances_to_hint.update({'Inverted Links House': 'The old hero\'s light home'}) + else: + entrances_to_hint.update({'Dark Sanctuary Hint': 'The dark sanctuary cave'}) + entrances_to_hint.update({'Big Bomb Shop': 'The old bomb shop'}) if world.shuffle in ['insanity', 'madness_legacy', 'insanity_legacy']: entrances_to_hint.update(InsanityEntrances) if world.shuffle_ganon: - entrances_to_hint.update({'Pyramid Ledge': 'The pyramid ledge'}) + if world.mode == 'inverted': + entrances_to_hint.update({'Inverted Pyramid Entrance': 'The extra castle passage'}) + else: + entrances_to_hint.update({'Pyramid Ledge': 'The pyramid ledge'}) hint_count = 4 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 0 for entrance in all_entrances: if entrance.name in entrances_to_hint: @@ -1688,7 +1705,6 @@ DungeonEntrances = {'Eastern Palace': 'Eastern Palace', 'Palace of Darkness': 'Palace of Darkness', 'Hyrule Castle Entrance (West)': 'The left castle door', 'Hyrule Castle Entrance (East)': 'The right castle door', - 'Agahnims Tower': 'The sealed castle door', 'Desert Palace Entrance (West)': 'The westmost building in the desert', 'Desert Palace Entrance (North)': 'The northmost cave in the desert' } @@ -1733,10 +1749,8 @@ OtherEntrances = {'Blinds Hideout': 'Blind\'s old house', 'Bonk Fairy (Light)': 'The rock pile near your home', 'Hookshot Fairy': 'The left paired cave on east DM', 'Bonk Fairy (Dark)': 'The rock pile near the old bomb shop', - 'Dark Sanctuary Hint': 'The dark sanctuary cave', 'Dark Lake Hylia Fairy': 'The cave NE dark Lake Hylia', 'C-Shaped House': 'The NE house in Village of Outcasts', - 'Big Bomb Shop': 'The old bomb shop', 'Dark Death Mountain Fairy': 'The SW cave on dark DM', 'Dark Lake Hylia Shop': 'The building NW dark Lake Hylia', 'Dark World Shop': 'The hammer sealed building', From 948901c51afb2987869b4d5ef8e0bec136a15761 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Wed, 23 Oct 2019 20:46:09 -0500 Subject: [PATCH 058/185] Update GUI The GUI was dysfunctional after the latest round of updates as it failed to address several new v31 features. The GUI should work again with this update and should allow proper interaction with all relevant options. Some aesthetic rework was necessary to account for the new large number of dropdowns. --- Gui.py | 114 ++++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 85 insertions(+), 29 deletions(-) diff --git a/Gui.py b/Gui.py index e02457d1..da8550df 100755 --- a/Gui.py +++ b/Gui.py @@ -90,6 +90,34 @@ def guiMain(args=None): fileDialogFrame = Frame(rightHalfFrame) + heartbeepFrame = Frame(fileDialogFrame) + heartbeepVar = StringVar() + heartbeepVar.set('normal') + heartbeepOptionMenu = OptionMenu(heartbeepFrame, heartbeepVar, 'double', 'normal', 'half', 'quarter', 'off') + heartbeepOptionMenu.pack(side=RIGHT) + heartbeepLabel = Label(heartbeepFrame, text='Heartbeep sound rate') + heartbeepLabel.pack(side=LEFT, padx=(0,52)) + + heartcolorFrame = Frame(fileDialogFrame) + heartcolorVar = StringVar() + heartcolorVar.set('red') + heartcolorOptionMenu = OptionMenu(heartcolorFrame, heartcolorVar, 'red', 'blue', 'green', 'yellow', 'random') + heartcolorOptionMenu.pack(side=RIGHT) + heartcolorLabel = Label(heartcolorFrame, text='Heart color') + heartcolorLabel.pack(side=LEFT, padx=(0,127)) + + fastMenuFrame = Frame(fileDialogFrame) + fastMenuVar = StringVar() + fastMenuVar.set('normal') + fastMenuOptionMenu = OptionMenu(fastMenuFrame, fastMenuVar, 'normal', 'instant', 'double', 'triple', 'quadruple', 'half') + fastMenuOptionMenu.pack(side=RIGHT) + fastMenuLabel = Label(fastMenuFrame, text='Menu speed') + fastMenuLabel.pack(side=LEFT, padx=(0,100)) + + heartbeepFrame.pack(expand=True, anchor=E) + heartcolorFrame.pack(expand=True, anchor=E) + fastMenuFrame.pack(expand=True, anchor=E) + romDialogFrame = Frame(fileDialogFrame) baseRomLabel = Label(romDialogFrame, text='Base Rom') romVar = StringVar() @@ -144,7 +172,7 @@ def guiMain(args=None): modeVar.set('open') modeOptionMenu = OptionMenu(modeFrame, modeVar, 'standard', 'open', 'inverted') modeOptionMenu.pack(side=RIGHT) - modeLabel = Label(modeFrame, text='Game Mode') + modeLabel = Label(modeFrame, text='Game mode') modeLabel.pack(side=LEFT) logicFrame = Frame(drowDownFrame) @@ -163,14 +191,46 @@ def guiMain(args=None): goalLabel = Label(goalFrame, text='Game goal') goalLabel.pack(side=LEFT) + crystalsGTFrame = Frame(drowDownFrame) + crystalsGTVar = StringVar() + crystalsGTVar.set('7') + crystalsGTOptionMenu = OptionMenu(crystalsGTFrame, crystalsGTVar, '0', '1', '2', '3', '4', '5', '6', '7', 'random') + crystalsGTOptionMenu.pack(side=RIGHT) + crystalsGTLabel = Label(crystalsGTFrame, text='Crystals to open Ganon\'s Tower') + crystalsGTLabel.pack(side=LEFT) + + crystalsGanonFrame = Frame(drowDownFrame) + crystalsGanonVar = StringVar() + crystalsGanonVar.set('7') + crystalsGanonOptionMenu = OptionMenu(crystalsGanonFrame, crystalsGanonVar, '0', '1', '2', '3', '4', '5', '6', '7', 'random') + crystalsGanonOptionMenu.pack(side=RIGHT) + crystalsGanonLabel = Label(crystalsGanonFrame, text='Crystals to fight Ganon') + crystalsGanonLabel.pack(side=LEFT) + + swordFrame = Frame(drowDownFrame) + swordVar = StringVar() + swordVar.set('random') + swordOptionMenu = OptionMenu(swordFrame, swordVar, 'random', 'assured', 'swordless', 'vanilla') + swordOptionMenu.pack(side=RIGHT) + swordLabel = Label(swordFrame, text='Sword availability') + swordLabel.pack(side=LEFT) + difficultyFrame = Frame(drowDownFrame) difficultyVar = StringVar() difficultyVar.set('normal') difficultyOptionMenu = OptionMenu(difficultyFrame, difficultyVar, 'normal', 'hard', 'expert') difficultyOptionMenu.pack(side=RIGHT) - difficultyLabel = Label(difficultyFrame, text='Game difficulty') + difficultyLabel = Label(difficultyFrame, text='Difficulty: item pool') difficultyLabel.pack(side=LEFT) + itemfunctionFrame = Frame(drowDownFrame) + itemfunctionVar = StringVar() + itemfunctionVar.set('normal') + itemfunctionOptionMenu = OptionMenu(itemfunctionFrame, itemfunctionVar, 'normal', 'hard', 'expert') + itemfunctionOptionMenu.pack(side=RIGHT) + itemfunctionLabel = Label(itemfunctionFrame, text='Difficulty: item functionality') + itemfunctionLabel.pack(side=LEFT) + timerFrame = Frame(drowDownFrame) timerVar = StringVar() timerVar.set('none') @@ -187,6 +247,14 @@ def guiMain(args=None): progressiveLabel = Label(progressiveFrame, text='Progressive equipment') progressiveLabel.pack(side=LEFT) + accessibilityFrame = Frame(drowDownFrame) + accessibilityVar = StringVar() + accessibilityVar.set('items') + accessibilityOptionMenu = OptionMenu(accessibilityFrame, accessibilityVar, 'items', 'locations', 'none') + accessibilityOptionMenu.pack(side=RIGHT) + accessibilityLabel = Label(accessibilityFrame, text='Item accessibility') + accessibilityLabel.pack(side=LEFT) + algorithmFrame = Frame(drowDownFrame) algorithmVar = StringVar() algorithmVar.set('balanced') @@ -203,41 +271,19 @@ def guiMain(args=None): shuffleLabel = Label(shuffleFrame, text='Entrance shuffle algorithm') shuffleLabel.pack(side=LEFT) - heartbeepFrame = Frame(drowDownFrame) - heartbeepVar = StringVar() - heartbeepVar.set('normal') - heartbeepOptionMenu = OptionMenu(heartbeepFrame, heartbeepVar, 'double', 'normal', 'half', 'quarter', 'off') - heartbeepOptionMenu.pack(side=RIGHT) - heartbeepLabel = Label(heartbeepFrame, text='Heartbeep sound rate') - heartbeepLabel.pack(side=LEFT) - - heartcolorFrame = Frame(drowDownFrame) - heartcolorVar = StringVar() - heartcolorVar.set('red') - heartcolorOptionMenu = OptionMenu(heartcolorFrame, heartcolorVar, 'red', 'blue', 'green', 'yellow', 'random') - heartcolorOptionMenu.pack(side=RIGHT) - heartcolorLabel = Label(heartcolorFrame, text='Heart color') - heartcolorLabel.pack(side=LEFT) - - fastMenuFrame = Frame(drowDownFrame) - fastMenuVar = StringVar() - fastMenuVar.set('normal') - fastMenuOptionMenu = OptionMenu(fastMenuFrame, fastMenuVar, 'normal', 'instant', 'double', 'triple', 'quadruple', 'half') - fastMenuOptionMenu.pack(side=RIGHT) - fastMenuLabel = Label(fastMenuFrame, text='Menu speed') - fastMenuLabel.pack(side=LEFT) - modeFrame.pack(expand=True, anchor=E) logicFrame.pack(expand=True, anchor=E) goalFrame.pack(expand=True, anchor=E) + crystalsGTFrame.pack(expand=True, anchor=E) + crystalsGanonFrame.pack(expand=True, anchor=E) + swordFrame.pack(expand=True, anchor=E) difficultyFrame.pack(expand=True, anchor=E) + itemfunctionFrame.pack(expand=True, anchor=E) timerFrame.pack(expand=True, anchor=E) progressiveFrame.pack(expand=True, anchor=E) + accessibilityFrame.pack(expand=True, anchor=E) algorithmFrame.pack(expand=True, anchor=E) shuffleFrame.pack(expand=True, anchor=E) - heartbeepFrame.pack(expand=True, anchor=E) - heartcolorFrame.pack(expand=True, anchor=E) - fastMenuFrame.pack(expand=True, anchor=E) enemizerFrame = LabelFrame(randomizerWindow, text="Enemizer", padx=5, pady=5) enemizerFrame.columnconfigure(0, weight=1) @@ -315,9 +361,14 @@ def guiMain(args=None): guiargs.mode = modeVar.get() guiargs.logic = logicVar.get() guiargs.goal = goalVar.get() + guiargs.crystals_gt = crystalsGTVar.get() + guiargs.crystals_ganon = crystalsGanonVar.get() + guiargs.swords = swordVar.get() guiargs.difficulty = difficultyVar.get() + guiargs.item_functionality = itemfunctionVar.get() guiargs.timer = timerVar.get() guiargs.progressive = progressiveVar.get() + guiargs.accessibility = accessibilityVar.get() guiargs.algorithm = algorithmVar.get() guiargs.shuffle = shuffleVar.get() guiargs.heartbeep = heartbeepVar.get() @@ -1074,10 +1125,15 @@ def guiMain(args=None): if args.seed: seedVar.set(str(args.seed)) modeVar.set(args.mode) + swordVar.set(args.swords) difficultyVar.set(args.difficulty) + itemfunctionVar.set(args.item_functionality) timerVar.set(args.timer) progressiveVar.set(args.progressive) + accessibilityVar.set(args.accessibility) goalVar.set(args.goal) + crystalsGTVar.set(args.crystals_gt) + crystalsGanonVar.set(args.crystals_ganon) algorithmVar.set(args.algorithm) shuffleVar.set(args.shuffle) heartbeepVar.set(args.heartbeep) From acc04e92ce2045776420a2063f28af0a85d21cf0 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Wed, 23 Oct 2019 21:31:02 -0500 Subject: [PATCH 059/185] Custom Item Pool Update This updates the custom item pool feature to support progressive bows and the 10 bomb item. Yes, the latter had existed for a long time and was just never put in properly. The default item pool with the custom item pool feature now matches v31's item distribution instead of whatever the last version with bomb/arrow capacity upgrades' default was. I'm unsure if anyone will actually use this feature even still, but it's now up to date! --- Gui.py | 64 +++++++++++++++++++++++++++++++++-------------------- ItemList.py | 32 ++++++++++++++------------- 2 files changed, 57 insertions(+), 39 deletions(-) diff --git a/Gui.py b/Gui.py index da8550df..819e8469 100755 --- a/Gui.py +++ b/Gui.py @@ -398,8 +398,8 @@ def guiMain(args=None): int(sword3Var.get()), int(sword4Var.get()), int(progswordVar.get()), int(shield1Var.get()), int(shield2Var.get()), int(shield3Var.get()), int(progshieldVar.get()), int(bluemailVar.get()), int(redmailVar.get()), int(progmailVar.get()), int(halfmagicVar.get()), int(quartermagicVar.get()), int(bcap5Var.get()), int(bcap10Var.get()), int(acap5Var.get()), int(acap10Var.get()), int(arrow1Var.get()), int(arrow10Var.get()), int(bomb1Var.get()), int(bomb3Var.get()), int(rupee1Var.get()), int(rupee5Var.get()), int(rupee20Var.get()), int(rupee50Var.get()), int(rupee100Var.get()), - int(rupee300Var.get()), int(rupoorVar.get()), int(blueclockVar.get()), int(greenclockVar.get()), int(redclockVar.get()), int(triforcepieceVar.get()), int(triforcecountVar.get()), - int(triforceVar.get()), int(rupoorcostVar.get()), int(universalkeyVar.get())] + int(rupee300Var.get()), int(rupoorVar.get()), int(blueclockVar.get()), int(greenclockVar.get()), int(redclockVar.get()), int(progbowVar.get()), int(bomb10Var.get()), int(triforcepieceVar.get()), + int(triforcecountVar.get()), int(triforceVar.get()), int(rupoorcostVar.get()), int(universalkeyVar.get())] guiargs.rom = romVar.get() guiargs.jsonout = None guiargs.sprite = sprite @@ -553,19 +553,19 @@ def guiMain(args=None): bowFrame = Frame(itemList1) bowLabel = Label(bowFrame, text='Bow') - bowVar = StringVar(value='1') + bowVar = StringVar(value='0') bowEntry = Entry(bowFrame, textvariable=bowVar, width=3, validate='all', vcmd=vcmd) bowFrame.pack() bowLabel.pack(anchor=W, side=LEFT, padx=(0,53)) bowEntry.pack(anchor=E) - silverarrowFrame = Frame(itemList1) - silverarrowLabel = Label(silverarrowFrame, text='Silver Arrow') - silverarrowVar = StringVar(value='1') - silverarrowEntry = Entry(silverarrowFrame, textvariable=silverarrowVar, width=3, validate='all', vcmd=vcmd) - silverarrowFrame.pack() - silverarrowLabel.pack(anchor=W, side=LEFT, padx=(0,13)) - silverarrowEntry.pack(anchor=E) + progbowFrame = Frame(itemList1) + progbowLabel = Label(progbowFrame, text='Prog.Bow') + progbowVar = StringVar(value='2') + progbowEntry = Entry(progbowFrame, textvariable=progbowVar, width=3, validate='all', vcmd=vcmd) + progbowFrame.pack() + progbowLabel.pack(anchor=W, side=LEFT, padx=(0,25)) + progbowEntry.pack(anchor=E) boomerangFrame = Frame(itemList1) boomerangLabel = Label(boomerangFrame, text='Boomerang') @@ -921,7 +921,7 @@ def guiMain(args=None): bcap5Frame = Frame(itemList3) bcap5Label = Label(bcap5Frame, text='Bomb C.+5') - bcap5Var = StringVar(value='6') + bcap5Var = StringVar(value='0') bcap5Entry = Entry(bcap5Frame, textvariable=bcap5Var, width=3, validate='all', vcmd=vcmd) bcap5Frame.pack() bcap5Label.pack(anchor=W, side=LEFT, padx=(0,16)) @@ -929,7 +929,7 @@ def guiMain(args=None): bcap10Frame = Frame(itemList3) bcap10Label = Label(bcap10Frame, text='Bomb C.+10') - bcap10Var = StringVar(value='1') + bcap10Var = StringVar(value='0') bcap10Entry = Entry(bcap10Frame, textvariable=bcap10Var, width=3, validate='all', vcmd=vcmd) bcap10Frame.pack() bcap10Label.pack(anchor=W, side=LEFT, padx=(0,10)) @@ -937,7 +937,7 @@ def guiMain(args=None): acap5Frame = Frame(itemList4) acap5Label = Label(acap5Frame, text='Arrow C.+5') - acap5Var = StringVar(value='6') + acap5Var = StringVar(value='0') acap5Entry = Entry(acap5Frame, textvariable=acap5Var, width=3, validate='all', vcmd=vcmd) acap5Frame.pack() acap5Label.pack(anchor=W, side=LEFT, padx=(0,7)) @@ -945,7 +945,7 @@ def guiMain(args=None): acap10Frame = Frame(itemList4) acap10Label = Label(acap10Frame, text='Arrow C.+10') - acap10Var = StringVar(value='1') + acap10Var = StringVar(value='0') acap10Entry = Entry(acap10Frame, textvariable=acap10Var, width=3, validate='all', vcmd=vcmd) acap10Frame.pack() acap10Label.pack(anchor=W, side=LEFT, padx=(0,1)) @@ -961,7 +961,7 @@ def guiMain(args=None): arrow10Frame = Frame(itemList4) arrow10Label = Label(arrow10Frame, text='Arrows (10)') - arrow10Var = StringVar(value='5') + arrow10Var = StringVar(value='12') arrow10Entry = Entry(arrow10Frame, textvariable=arrow10Var, width=3, validate='all', vcmd=vcmd) arrow10Frame.pack() arrow10Label.pack(anchor=W, side=LEFT, padx=(0,7)) @@ -977,12 +977,20 @@ def guiMain(args=None): bomb3Frame = Frame(itemList4) bomb3Label = Label(bomb3Frame, text='Bombs (3)') - bomb3Var = StringVar(value='10') + bomb3Var = StringVar(value='16') bomb3Entry = Entry(bomb3Frame, textvariable=bomb3Var, width=3, validate='all', vcmd=vcmd) bomb3Frame.pack() bomb3Label.pack(anchor=W, side=LEFT, padx=(0,13)) bomb3Entry.pack(anchor=E) + bomb10Frame = Frame(itemList4) + bomb10Label = Label(bomb10Frame, text='Bombs (10)') + bomb10Var = StringVar(value='1') + bomb10Entry = Entry(bomb10Frame, textvariable=bomb10Var, width=3, validate='all', vcmd=vcmd) + bomb10Frame.pack() + bomb10Label.pack(anchor=W, side=LEFT, padx=(0,7)) + bomb10Entry.pack(anchor=E) + rupee1Frame = Frame(itemList4) rupee1Label = Label(rupee1Frame, text='Rupee (1)') rupee1Var = StringVar(value='2') @@ -1031,14 +1039,6 @@ def guiMain(args=None): rupee300Label.pack(anchor=W, side=LEFT, padx=(0,0)) rupee300Entry.pack(anchor=E) - rupoorFrame = Frame(itemList4) - rupoorLabel = Label(rupoorFrame, text='Rupoor') - rupoorVar = StringVar(value='0') - rupoorEntry = Entry(rupoorFrame, textvariable=rupoorVar, width=3, validate='all', vcmd=vcmd) - rupoorFrame.pack() - rupoorLabel.pack(anchor=W, side=LEFT, padx=(0,28)) - rupoorEntry.pack(anchor=E) - blueclockFrame = Frame(itemList4) blueclockLabel = Label(blueclockFrame, text='Blue Clock') blueclockVar = StringVar(value='0') @@ -1063,6 +1063,14 @@ def guiMain(args=None): redclockLabel.pack(anchor=W, side=LEFT, padx=(0,14)) redclockEntry.pack(anchor=E) + silverarrowFrame = Frame(itemList5) + silverarrowLabel = Label(silverarrowFrame, text='Silver Arrow') + silverarrowVar = StringVar(value='0') + silverarrowEntry = Entry(silverarrowFrame, textvariable=silverarrowVar, width=3, validate='all', vcmd=vcmd) + silverarrowFrame.pack() + silverarrowLabel.pack(anchor=W, side=LEFT, padx=(0,64)) + silverarrowEntry.pack(anchor=E) + universalkeyFrame = Frame(itemList5) universalkeyLabel = Label(universalkeyFrame, text='Universal Key') universalkeyVar = StringVar(value='0') @@ -1095,6 +1103,14 @@ def guiMain(args=None): triforceLabel.pack(anchor=W, side=LEFT, padx=(0,23)) triforceEntry.pack(anchor=E) + rupoorFrame = Frame(itemList5) + rupoorLabel = Label(rupoorFrame, text='Rupoor') + rupoorVar = StringVar(value='0') + rupoorEntry = Entry(rupoorFrame, textvariable=rupoorVar, width=3, validate='all', vcmd=vcmd) + rupoorFrame.pack() + rupoorLabel.pack(anchor=W, side=LEFT, padx=(0,87)) + rupoorEntry.pack(anchor=E) + rupoorcostFrame = Frame(itemList5) rupoorcostLabel = Label(rupoorcostFrame, text='Rupoor Cost') rupoorcostVar = StringVar(value='10') diff --git a/ItemList.py b/ItemList.py index 7fb78342..aeb7e106 100644 --- a/ItemList.py +++ b/ItemList.py @@ -178,7 +178,7 @@ def generate_itempool(world, player): # set up item pool if world.custom: (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro, world.customitemarray) - world.rupoor_cost = min(world.customitemarray[67], 9999) + world.rupoor_cost = min(world.customitemarray[69], 9999) else: (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro) world.itempool += ItemFactory(pool, player) @@ -489,16 +489,16 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s treasure_hunt_icon = None # Correct for insanely oversized item counts and take initial steps to handle undersized pools. - for x in range(0, 64): + for x in range(0, 66): if customitemarray[x] > total_items_to_place: customitemarray[x] = total_items_to_place - if customitemarray[66] > total_items_to_place: - customitemarray[66] = total_items_to_place + if customitemarray[68] > total_items_to_place: + customitemarray[68] = total_items_to_place itemtotal = 0 - for x in range(0, 65): + for x in range(0, 66): itemtotal = itemtotal + customitemarray[x] - itemtotal = itemtotal + customitemarray[66] itemtotal = itemtotal + customitemarray[68] + itemtotal = itemtotal + customitemarray[70] pool.extend(['Bow'] * customitemarray[0]) pool.extend(['Silver Arrows']* customitemarray[1]) @@ -559,8 +559,10 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s pool.extend(['Blue Clock'] * customitemarray[61]) pool.extend(['Green Clock'] * customitemarray[62]) pool.extend(['Red Clock'] * customitemarray[63]) - pool.extend(['Triforce Piece'] * customitemarray[64]) - pool.extend(['Triforce'] * customitemarray[66]) + pool.extend(['Progressive Bow'] * customitemarray[64]) + pool.extend(['Bombs (10)'] * customitemarray[65]) + pool.extend(['Triforce Piece'] * customitemarray[66]) + pool.extend(['Triforce'] * customitemarray[68]) diff = difficulties[difficulty] @@ -575,12 +577,12 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s thisbottle = random.choice(diff.bottles) pool.append(thisbottle) - if customitemarray[64] > 0 or customitemarray[65] > 0: - treasure_hunt_count = max(min(customitemarray[65], 99), 1) #To display, count must be between 1 and 99. + if customitemarray[66] > 0 or customitemarray[67] > 0: + treasure_hunt_count = max(min(customitemarray[67], 99), 1) #To display, count must be between 1 and 99. treasure_hunt_icon = 'Triforce Piece' # Ensure game is always possible to complete here, force sufficient pieces if the player is unwilling. - if (customitemarray[64] < treasure_hunt_count) and (goal == 'triforcehunt') and (customitemarray[66] == 0): - extrapieces = treasure_hunt_count - customitemarray[64] + if (customitemarray[66] < treasure_hunt_count) and (goal == 'triforcehunt') and (customitemarray[68] == 0): + extrapieces = treasure_hunt_count - customitemarray[66] pool.extend(['Triforce Piece'] * extrapieces) itemtotal = itemtotal + extrapieces @@ -599,11 +601,11 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s if retro: key_location = random.choice(['Secret Passage', 'Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest', 'Sewers - Dark Cross']) placed_items.append((key_location, 'Small Key (Universal)')) - pool.extend(['Small Key (Universal)'] * max((customitemarray[68] - 1), 0)) + pool.extend(['Small Key (Universal)'] * max((customitemarray[70] - 1), 0)) else: - pool.extend(['Small Key (Universal)'] * customitemarray[68]) + pool.extend(['Small Key (Universal)'] * customitemarray[70]) else: - pool.extend(['Small Key (Universal)'] * customitemarray[68]) + pool.extend(['Small Key (Universal)'] * customitemarray[70]) pool.extend(['Fighter Sword'] * customitemarray[32]) pool.extend(['Progressive Sword'] * customitemarray[36]) From 1ddfc040f3b34065af3ea38e24eb6d62e85f8f80 Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Thu, 24 Oct 2019 02:13:02 -0500 Subject: [PATCH 060/185] Update base ROM Oops, forgot to ever do this, erroneously assumed it was done before. --- Rom.py | 2 +- data/base2current.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index a450072d..c18784ab 100644 --- a/Rom.py +++ b/Rom.py @@ -18,7 +18,7 @@ from EntranceShuffle import door_addresses JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = 'cb560220b7b1b8202e92381aee19cd36' +RANDOMIZERBASEHASH = '1907d4caccffe60fc69940cfa11b2dab' class JsonRom(object): diff --git a/data/base2current.json b/data/base2current.json index a5eb0682..61309197 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[186]},{"127":[174]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,130,219,160,234]},{"827":[128,1]},{"980":[92,55,133,164]},{"2379":[34,106,129,160]},{"2404":[234,234,234]},{"2414":[234,234,234]},{"2424":[234,234,234]},{"2434":[234,234,234]},{"2444":[234,234,234]},{"2561":[165,188]},{"3097":[34,47,132,164,234]},{"4993":[252]},{"5002":[178]},{"5011":[164]},{"20581":[49]},{"20636":[49,49]},{"20804":[168]},{"20859":[160,176]},{"21027":[0]},{"21082":[0,0]},{"21809":[92,73,195,160]},{"21847":[34,33,196,160,234]},{"21854":[34,91,148]},{"21858":[234,234]},{"24418":[92,10,246]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,153,245,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[255,159,160]},{"30994":[129,160,160]},{"31001":[255,159,160]},{"31011":[129,160,160]},{"31046":[43,217,160]},{"31102":[34,75,150,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[18,217,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,240,194,160,234,234,234,234]},{"51019":[234,234]},{"53095":[34,175,217,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,92,147,164,234]},{"60790":[46,218,160]},{"61077":[155,177,160]},{"61133":[34,111,192,160,234]},{"62723":[34,200,131,160]},{"65511":[34,4,232,160]},{"65607":[37,231,160]},{"65778":[34,215,140,160,234,234]},{"65879":[34,124,190,160,234]},{"65894":[34,170,190,160]},{"66284":[34,205,190,160]},{"66292":[92,243,241,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,217,233,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,135,130,164]},{"67619":[34,143,128,160]},{"67793":[34,191,218,160,234,234]},{"67934":[128,242,160]},{"68495":[34,135,151,160,208,6,234]},{"68584":[132,242,160]},{"69776":[34,135,151,160,208,4,234]},{"70410":[132,242,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,236,241,160,234]},{"72216":[228,216,160]},{"72241":[34,170,190,160]},{"72246":[102,150,160]},{"73041":[34,98,151,160]},{"73263":[28,231,160]},{"73340":[34,241,128,160,234]},{"73937":[34,186,190,160]},{"74833":[34,135,130,164]},{"76423":[34,9,232,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]},{"78172":[34,90,218,160,34,75,150,160,234,234]},{"79603":[34,24,217,160]},{"79767":[34,206,218,160]},{"82676":[132,242,160]},{"87892":[34,201,241,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,22,233,160]},{"90651":[34,134,230,160,234,234]},{"93230":[34,156,154,164,234,234]},{"93325":[34,88,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,156,154,164,234,234]},{"130070":[177,198,249,201,198,249]},{"157614":[34,123,153,164]},{"166331":[34,98,151,160]},{"173045":[214,177,160]},{"173058":[214,177,160]},{"173307":[214,177,160]},{"173320":[214,177,160]},{"183384":[34,118,242,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,98,151,160]},{"187902":[34,121,151,160]},{"188153":[0]},{"188234":[176,230,160]},{"188261":[34,65,130,164,96]},{"188337":[34,223,148,160]},{"188959":[34,229,229,160,128,13]},{"189655":[34,15,192,160,234,234]},{"191439":[34,44,193,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,64,193,160,234,234]},{"192037":[34,121,151,160]},{"192083":[34,32,141,160,234,234]},{"192095":[34,102,191,160,234]},{"192121":[182,191,160]},{"192140":[34,205,141,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,229,132,160]},{"192350":[47,133,160]},{"192378":[147,132,160]},{"192463":[76,132,160]},{"192506":[34,248,132,160,234,234,234,234,234,234]},{"192561":[94,132,160]},{"192650":[34,18,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,18,141,160]},{"192893":[34,121,151,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,98,151,160]},{"193025":[158,141,160]},{"193033":[34,98,151,160]},{"193140":[34,141,175,160]},{"193157":[34,134,175,160]},{"193440":[34,7,215,160]},{"193472":[122,229,160]},{"193546":[34,7,215,160]},{"193578":[66,229,160]},{"193854":[34,41,141,160]},{"193859":[32]},{"193888":[246,190,160]},{"194141":[34,206,191,160,234,234,234,234,234]},{"194177":[34,68,191,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,229,229,160]},{"195327":[34,208,140,160,240,2,96,234]},{"195539":[34,0,195,160]},{"195589":[248,172,160]},{"195710":[34,14,173,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[209,172,160]},{"195909":[219,172,160]},{"196477":[34,121,151,160]},{"196497":[34,98,151,160]},{"197750":[205,188,160]},{"198721":[34,233,213,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,32,182,164]},{"198942":[34,251,152,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,245,140,160]},{"199659":[34,153,162,160,96,234]},{"199950":[34,25,141,160]},{"199964":[154,172,160]},{"199993":[34,229,172,160]},{"200070":[34,231,140,160]},{"200470":[34,224,140,160]},{"200845":[34,238,140,160,201]},{"200851":[240]},{"200853":[34,238,140,160]},{"200858":[8]},{"200893":[34,245,140,160]},{"201132":[34,0,128,164,234,234]},{"208729":[92,134,194,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[254,140,160]},{"208994":[34,245,140,160,234,234]},{"209010":[139]},{"209098":[141,141,160]},{"209199":[41,247]},{"210057":[92,59,215,160,234,234,234,234]},{"210164":[68,141,160]},{"211413":[124,141,160]},{"213169":[15,133,160]},{"214205":[34,39,177,160]},{"214972":[185,176,160]},{"217490":[34,123,217,160]},{"217579":[34,111,189,160]},{"224597":[34,7,214,160]},{"224693":[34,27,214,160]},{"224710":[34,100,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,179,129,164]},{"226026":[34,41,215,160,234]},{"226304":[34,92,214,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,231,231,160]},{"230816":[171,175,160]},{"230955":[171,175,160]},{"233256":[145,149,160]},{"233266":[34,165,128,160]},{"233297":[34,240,231,160,234]},{"233987":[129,216,160]},{"234731":[34,222,216,160]},{"234747":[34,251,231,160]},{"235953":[34,173,132,160,144,3]},{"236024":[26,200,160]},{"236047":[79,189,160]},{"236578":[34,232,133,164]},{"237653":[34,1,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,162,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[218,193,160]},{"238498":[34,133,192,160,128,3]},{"238562":[34,158,194,160,240,4,234]},{"238751":[34,149,215,160]},{"238964":[34,149,215,160]},{"239190":[34,149,215,160]},{"239964":[116,218,160]},{"240044":[92,141,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,125,214,160]},{"241165":[34,125,214,160]},{"241175":[34,4,129,164]},{"241294":[34,125,214,160]},{"241304":[34,4,129,164]},{"241814":[34,125,214,160,24,125,139,176]},{"241869":[223,229,160]},{"241877":[34,125,214,160,24,125,139,176]},{"242973":[255]},{"243003":[255]},{"243060":[34,243,217,160,234]},{"243067":[234,234,34,213,211,160,234]},{"250411":[34,181,128,164,234,234]},{"250420":[34,155,214,160,234]},{"250478":[34,209,214,160,234]},{"259329":[142,1]},{"261983":[34,203,150,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,192,237,160,234]},{"273608":[34,27,179,160,76,230,172]},{"275716":[34,255,178,160,234]},{"276202":[34,60,179,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,125,220,160,234]},{"279601":[34,156,128,160,234]},{"279644":[83,133,160,34,74,232,160,234,234]},{"280037":[34,195,228,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[223,229,160]},{"280106":[92,187,220,160,234]},{"280265":[200,205,160]},{"280287":[200,204,160]},{"280314":[200,205,160]},{"280335":[34,67,176,160]},{"282028":[34,16,153,164,234,234,234,234,234]},{"283541":[34,105,190,160,234,234]},{"285863":[34,52,129,164,234]},{"285881":[34,125,214,160]},{"285891":[34,207,128,164]},{"295207":[34,120,132,164]},{"295219":[34,145,132,164]},{"296429":[34,146,196,160,234]},{"296466":[200,206]},{"296471":[201,206]},{"296480":[200,208]},{"296488":[200,206]},{"296493":[201,206]},{"296502":[200,208,34,0,128,160]},{"296583":[34,98,151,160]},{"296619":[200,209]},{"296810":[216,203]},{"297038":[248,201]},{"297052":[232,202]},{"297087":[34,201,132,160,234,176]},{"297144":[200,204]},{"297200":[248,201]},{"297225":[232,202]},{"297263":[201,210]},{"297292":[34,49,191,160]},{"297309":[208,210]},{"297904":[34,91,129,160,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]},{"313527":[189,247]},{"324619":[34,123,149,160]},{"324675":[34,221,217,160]},{"324896":[34,119,230,160,34,197,217,160,234,234,234,234,234,234]},{"324996":[34,186,190,160]},{"325131":[34,167,230,160]},{"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":[32,232,160]},{"342245":[34,207,131,160,34,70,217,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,121,151,160]},{"344119":[34,121,151,160]},{"344185":[34,121,151,160]},{"344248":[34,121,151,160]},{"344312":[34,121,151,160]},{"344375":[34,121,151,160]},{"344441":[34,121,151,160]},{"344499":[34,121,151,160]},{"344565":[34,121,151,160]},{"344623":[34,121,151,160]},{"344689":[34,121,151,160]},{"344747":[34,121,151,160]},{"344813":[34,121,151,160]},{"344871":[34,121,151,160]},{"344937":[34,121,151,160]},{"345406":[34,151,150,160]},{"345531":[34,170,150,160,96]},{"345560":[34,170,150,160,96]},{"393133":[18,217,160]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[221,231,160]},{"412876":[92,172,144,164]},{"413015":[107]},{"413094":[44,145,164]},{"413109":[34,83,230,160]},{"413141":[34,59,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,209,145,164,234,234,234,234]},{"413264":[34,248,145,164,234,234,234,234,234,234]},{"413297":[92,31,146,164,234]},{"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]},{"414536":[94]},{"414544":[94]},{"414548":[125,29,136,1,94,29,136,1]},{"414611":[34,59,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414951":[234,234,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,168,134,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415678":[34,81,146,164]},{"416378":[196,146,164]},{"416491":[34,155,146,164,234]},{"416529":[34,118,146,164]},{"416912":[34,146,146,164]},{"416937":[34,132,146,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]},{"422780":[244,237,160,234,234]},{"436680":[165,2,105,0]},{"444489":[34,121,151,160]},{"449502":[34,149,218,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,25,238,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,55,238,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,4,238,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,168,151,160,96]},{"450208":[4]},{"450227":[34,102,132,164]},{"450334":[34,251,151,160]},{"450360":[34,87,179,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,195,180,160,234]},{"450492":[34,219,151,160,234,234,234]},{"450861":[34,217,180,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,131,132,164]},{"452340":[128]},{"452537":[34,110,152,160,234]},{"452559":[34,92,152,160,234]},{"452581":[34,128,152,160,234]},{"452634":[96]},{"453064":[34,155,156,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,135,189,160,234,234,76,230,236]},{"453867":[34,146,152,160,234]},{"453892":[34,164,152,160]},{"454092":[34,13,152,160,234,234,234,234,234]},{"454233":[34,13,152,160,234,234,234,234,234]},{"454256":[34,239,190,160,234]},{"454282":[34,13,152,160,234,234,234,234,234]},{"454459":[34,13,152,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,135,131,160]},{"457344":[34,125,150,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,232,211,160]},{"457513":[34,14,212,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,43,192,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,103,230,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]},{"484946":[74,179,35]},{"485100":[34,249,220,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,109,131,164,234,234]},{"486677":[34,109,131,164,234,234]},{"486698":[34,122,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[187,228,160]},{"487935":[34,33,221,160]},{"488156":[34,33,221,160]},{"488213":[34,33,221,160]},{"488242":[34,33,221,160]},{"488309":[34,33,221,160]},{"488340":[34,33,221,160]},{"488721":[34,33,221,160]},{"489560":[34,33,221,160]},{"490022":[34,33,221,160]},{"490060":[34,33,221,160]},{"490164":[34,33,221,160]},{"490184":[34,33,221,160]},{"490209":[34,33,221,160]},{"490257":[34,33,221,160]},{"490438":[34,49,221,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]},{"882113":[34,74,153,164]},{"883789":[34,184,131,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,23,234,160]},{"900244":[34,109,232,160,208,39,234,234,234,234,234,234]},{"900357":[92,98,234,160,234]},{"900437":[92,252,232,160,234]},{"900447":[34,187,241,160,234,234,234]},{"900458":[34,24,217,160]},{"901799":[34,28,150,164,107,32,222,201,107]},{"903876":[34,164,234,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,109,1,189,177,170,189,216,188,255,170,248,185,187,174,189,189,194,255,188,192,184,187,173,200,249,171,190,189,255,178,216,182,255,184,181,173,200,250,246,175,184,187,176,174,189,175,190,181,200,255,170,183,173,246,184,181,173,205,255,192,177,194,255,173,184,183,216,189,246,194,184,190,255,176,184,255,173,184,255,170,181,181,250,246,189,177,174,255,177,170,187,173,255,192,184,187,180]},{"918790":[192,177,178,181,174,255,178,255,177,170,183,176,246,184,190,189,255,178,183,255,189,177,178,188,250,246,177,190,189,205,251,254,109,1,188,170,177,170,188,187,170,177,181,170,200]},{"918836":[178,248,170,182,205,255,194,184,190,255,192,184,190,181,173,249,173,184,255,192,174,181,181]},{"918860":[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,255,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]},{"919113":[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,255,187,170,183,173,184,182,178,195,174,187,248,173,184,183,216,189,255,187,174,170,173,255,182,174,200,249,176,184,255,171,174,170,189,255,176,170,183,184,183,199,251,172,170,191,174,255,189,184,255,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,251,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]},{"919355":[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,255,178,189,216,188,250,246,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]},{"919576":[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,170,255,171,184,189,189,181,174,255,175,184,187,248,194,184,190,187,255,189,177,184,190,176,177,189,188,198,249,184,187,200,255,189,184,255,185,190,189,250,246,185,184,189,178,184,183,188]},{"919701":[178,183,205,251]},{"919706":[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,254,107,4,251,254,110,0,254,107,4,251,254,110,0]},{"919847":[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,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]},{"920088":[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]},{"920131":[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]},{"920204":[184,175,250]},{"920208":[189,184,192,183,200,255,194,170,255,177,174,170,187,173,246,178,189,255,177,174,187,174,205,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]},{"920311":[183,174,170,187,249,189,177,174,255,181,184,188,189,250,246,192,184,184,173,188,200,255,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]},{"920439":[187,190,185,174,174,188,205,248,165]},{"920449":[170,187,187,184,192,188,205,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,255,190,185,199,251,180,174,174,185,255,185,181,170,194,178,183,176,198,248,255,255,228,255,194,174,188,249,255,255,255,255,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,194,184,190,255,189,184,188,188,255,189,177,178,188,198,248,255,255,228,255,194,190,185,249,255,255,255,255,192,187,184,183,176,254,104,251,194,184,190,216,187,174,255,177,184,183,174,188,189,200,248,188,184,255,178,216,181,181,255,176,178,191,174,249,194,184,190]},{"920707":[170]},{"920709":[185,187,174,188,174,183,189,205,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]},{"920798":[176,187,170,183,189,255,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,255,176,170,183,184,183,198,250]},{"920910":[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,255,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,255,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,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,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]},{"921465":[172,170,190,188,174,255,187,174,170,188,184,183,188,205,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,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,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]},{"921802":[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]},{"922013":[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,250,246,255,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,255,185,170,188,189,249,189,177,174,255,187,174,173,250,246,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]},{"922365":[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]},{"922448":[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,246,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]},{"922512":[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,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,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,254,107,2,184,183,181,194,255,170,187,187,184,192,188,248,192,178,181,181,255,175,178,183,178,188,177,249,184,175,175,255,170]},{"922704":[171,181,190,174,250,246,176,170,183,184,183,200,255,184,187,246,187,174,170,181,181,194,246,192,174,181,181,201,189,178,182,174,173,250,246,188,185,178,183,188,255,178,183,255,185,177,170,188,174,246,164,205,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,249,174,183,174,182,178,195,174,187,251,254,107,2,189,177,178,183,176,188,255,172,170,183]},{"922807":[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,255,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]},{"922931":[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,255,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,255,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,255,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,255,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]},{"923211":[181,184,189,205]},{"923216":[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]},{"923249":[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,251,172,170,190,176,177,189]},{"923294":[170,255,171,174,174,248,255,255,228,255,180,174,174,185,249,255,255,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,188,255,189,187,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,200,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,199,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,189,177,178,188,248]},{"923889":[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,255,175,178,183,174,199,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,255,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]},{"924157":[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,255,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,170,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]},{"924675":[177,190,183,176,187,194,200,249,172,184,182,174,255,171,170,172,180,255,192,178,189,177,250,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,255,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]},{"924968":[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]},{"925025":[254,109]},{"925028":[171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,184,185,174,183]},{"925052":[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,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,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,246,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]},{"925930":[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]},{"925979":[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]},{"926041":[188,170,183,174,251,254,109,1,178,216,182,255,188,178,172,180,199,255,188,177,184,192]},{"926064":[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,204,204,204,204,204,204,204,204,204,251,192,177,194,204,204,204,204,204,251,178,255,192,170,188,255,170,255,189,177,178,174,175]},{"926178":[248,178,255,184,185,174,183,255,185,190,187,185,181,174,249,172,177,174,188,189,188,199,250,246,180,174,174,185]},{"926207":[188,174,172,187,174,189,198,246,255,255,228,255,188,190,187,174,255,189,177,178,183,176,246,255,255,255,255,183,174,191,174,187,199,254,104,251,172,184,184,181,200,255,171,187,178,183,176,255,182,174,248,170,183,194,255,185,190,187,185,181,174,249,172,177,174,188,189,188,255,194,184,190,250,246,175,178,183,173,205,251,194,184,190,255,189,174,181,181,248,170,183,194,184,183,174,255,170,183,173,255,178,249,192,178,181,181,255,176,178,191,174,255,194,184,190,250,246,188,190,172,177,255,170,255,185,178,183,172,177,199,251,171,187,178,183,176,255,172,177,174,188,189,188,205,248,178,189,216,188,255,170,255,188,174,172,187,174,189,249,189,184,255,174,191,174,187,194,184,183,174,205,251,222,222,255,222,221,223,222,223,255,223,221,223,248,223,221,221,255,223,221,221,223,222]},{"926402":[223,223,221,222,223,255,221,223,222,222,221,251,172,170,183,255,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,255,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,255,189,184,255,255,255,255,249,255,255,255,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,255,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]},{"926784":[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]},{"926853":[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,255,176,174,189,246,189,177,174,255,167,255,172,187,194,188,189,170,181,188,246,189,184,255,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,2,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]},{"927160":[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,255,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,174,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,0,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]},{"927744":[179,170,195,195,255,177,170,183,173,188,246,176,190,194,188,255,187,170,183,255,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,249,170,183,178,182,170,181,188,205,255,183,174,191,174,187,250,246,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]},{"928188":[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]},{"928247":[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]},{"928279":[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]},{"928336":[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]},{"928416":[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]},{"928511":[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,246,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]},{"928659":[185,184,183,173,201,249,250,246,189,177,187,184,192]},{"928673":[178,189,174,182,255,178,183,198,246,255,255,228,255,194,174,188,177,246,255,255,255,255,183,184,254,104,251]},{"928701":[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,205,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]},{"928819":[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]},{"928864":[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]},{"928929":[248,255,178,188,255,176,184,184,173,255,181,190,172,180,251]},{"928945":[255,178,188,255,182,174,177,255,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,255,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]},{"929095":[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,255,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,205,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]},{"929487":[182,178,183,173,188,205,255,178,189,246,175,181,178,189,189,174,187,188,255,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]},{"929647":[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]},{"929674":[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]},{"929980":[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,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,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]},{"930196":[182,190,172,177]},{"930201":[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]},{"930291":[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]},{"930484":[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,183,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,205,250,246,177,174,216,181,181,255,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,255,181,178,180,174,200,248,171,190,188,189,174,173,255,173,184,192,183,255,182,194,249,173,184,184,187,200,255,170,183,173]},{"930671":[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]},{"930716":[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,255,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]},{"930826":[187,190,185,174,174,188,205,251,178,216,182]},{"930838":[170]},{"930840":[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]},{"930868":[192,178,181,181,250,246,189,170,180,174,255,184,191,174,187]},{"930884":[189,177,174,246,192,184,187,181,173,255,192,178,189,177,255,182,194,246,188,180,178,181,181,195,205,255,177,170,191,174,250,246,194,184,190]},{"930920":[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,246,189,177,170,183,255,178,255,170,182,205,251,206,206,255,173,174,191,255,172,170,191,174,255,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]},{"931128":[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]},{"931188":[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,255,228,255,185,181,170,194,246,255,255,255,255,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,255,178,248,173,178,173,183,216,189]},{"931343":[192,170,183,189,249,194,184,190,187]},{"931353":[187,190,185,174,174,188,205,251,185,170,194,255,161,160,160,255,187,190,185,174,174,188,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]},{"931410":[185,181,170,194,255,176,170,182,174,198,246,255,255,228]},{"931425":[185,181,170,194,246,255,255,255]},{"931434":[183,174,191,174,187,199,254,104,251,178,255,188,190,187,174]},{"931450":[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]},{"931480":[178,188,255,170,246,172,177,174,170,185,188,180,170,189,174,255,170,183,173]},{"931500":[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]},{"931565":[181,184,189]},{"931569":[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,255,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,248,189,178,182,174,255,175,184,187,255,194,184,190,249,189,184]},{"931849":[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]},{"931953":[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,255,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]},{"932047":[190,187,246,176,184,170,181,188,205,255,173,178,183,176,190,188,199,251,176,184,189,255,192,170,193,255,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,255,194,184,190,248,176,174,189,255,190,185,255,177,174,187,174,198]},{"932126":[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,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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,33,229,160,96]},{"954852":[50,178,160]},{"955117":[0,229,160]},{"955529":[46,178,160]},{"962925":[11,178,160]},{"962951":[11,178,160]},{"963167":[11,178,160]},{"963214":[11,178,160]},{"965041":[11,178,160]},{"965069":[11,178,160]},{"965214":[11,178,160]},{"965298":[11,178,160]},{"965316":[11,178,160]},{"967797":[34,123,176,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,149,176,160]},{"972824":[218,177,160]},{"972834":[218,177,160]},{"972851":[218,177,160]},{"974665":[92]},{"974667":[193,160,234]},{"974706":[197,193,160]},{"974722":[170,193,160]},{"975106":[34,48,141,160]},{"975132":[34,48,141,160]},{"975265":[34,161,193,160,234,234]},{"975332":[34,135,193,160,234,234]},{"975401":[255]},{"976357":[7,178,160]},{"976423":[7,178,160]},{"978658":[247,177,160]},{"979078":[34,27,215,160]},{"982376":[131,177,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,99,192,160]},{"983466":[247,177,160]},{"983651":[247,177,160]},{"988539":[3,178,160]},{"988657":[3,178,160]},{"988668":[3,178,160]},{"988874":[3,178,160]},{"988902":[3,178,160]},{"989142":[3,178,160]},{"994007":[157,80]},{"994143":[157,80]},{"996856":[251,177,160]},{"999246":[255,177,160]},{"999265":[255,177,160]},{"999359":[255,177,160]},{"999574":[255,177,160]},{"1002731":[92,57,205,30]},{"1003079":[92,93,193,160]},{"1003229":[34,98,151,160]},{"1003277":[34,98,151,160]},{"1004410":[112,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[222,177,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[222,177,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,85,238,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,215,140,160,234,234]},{"1010175":[94,141,160]},{"1011427":[34,33,166,160,96,234]},{"1011808":[34,31,142]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,24,7,35]},{"1048576":[34,4,181,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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,169,112,72,171,34,96,130,160,34,176,216,160,107,175,74,128,48,240,3,76,234,129,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1048984":[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,27,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,119,129,175,162,128,48,208,23,76,140,129,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,175,83,243,126,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]},{"1049110":[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,119,129,175,162,128,48,208,23,76,246,129,169]},{"1049150":[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]},{"1049195":[143,204,243,126,107,169]},{"1049202":[143,204,243,126,34,69,249]},{"1049210":[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]},{"1049424":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049438":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049452":[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,135,131,160,133,29,107,34,96,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,67,133,160,168,34,96,133,160,156,233,2,192,38,208,15,175,107,243,126,26,41,3,143,107,243,126,208,14,128]},{"1049656":[34,179,145,7,34,157,153,7,24,130,1]},{"1049668":[56,34,239,175,160,122,250,107,218,90,34,205,188,160,188,128,14,208,5,34,45,138,160,168,128,196,8,34,119,148,160,144,44,72,90,175]},{"1049705":[80,127,240,7,34,15,133,160,130,27]},{"1049716":[189,128,14,72,34,110,146,160,144,8,189,96,14,9,32,157,96,14,104,34,186,147,160,34,92,220,6,122,104,40,107,8,34,119,148,160,144,247,72,90,175]},{"1049758":[80,127,240,6,34,47,133,160,128,231,189,128,14,128,202,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,96,140,160,144,4,169,46,56,107,24,107,189,94,12,192,32,240,19,192,55,240,15,192,56,240,11,192,57,240,7,72,34,96,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049842":[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,169,1,143]},{"1049876":[80,127,165,93,201,20,240,17,169]},{"1049886":[143]},{"1049888":[80,127,34,67,133,160,157,128,14,34,84,147,160,104,107,72,169]},{"1049906":[143]},{"1049908":[80,127,34,45,138,160,157,128,14,34,84,147,160,104,107,165,27,240,7,34,125,133,160,130,4]},{"1049934":[34,26,135,160,107,34,88,173,9,72,169,1,143]},{"1049948":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1049965":[208,11,175,22,244,126,9,1]},{"1049974":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1049989":[208,50,175,135,128,48,208,6,175]},{"1049999":[128,48,128,35,218,8,194,48,165]},{"1050009":[72,165,2,72,169]},{"1050015":[128,133]},{"1050018":[169,48]},{"1050021":[133,2,169]},{"1050026":[34,233,146,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050044":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050064":[72,165,2,72,169]},{"1050070":[128,133]},{"1050073":[169,48]},{"1050076":[133,2,169,1]},{"1050081":[34,233,146,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050099":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050119":[72,165,2,72,169]},{"1050125":[128,133]},{"1050128":[169,48]},{"1050131":[133,2,169,2]},{"1050136":[34,233,146,164,250,134,2,250,134,1,40,250,130,238]},{"1050151":[201,27,1,208,108,165,34,235,41,1]},{"1050162":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050182":[72,165,2,72,169]},{"1050188":[128,133]},{"1050191":[169,48]},{"1050194":[133,2,169,3]},{"1050199":[34,233,146,164,250,134,2,250,134,1,40,250,130,175]},{"1050214":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050232":[72,165,2,72,169]},{"1050238":[128,133]},{"1050241":[169,48]},{"1050244":[133,2,169,4]},{"1050249":[34,233,146,164,250,134,2,250,134,1,40,250,130,125]},{"1050264":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050287":[72,165,2,72,169]},{"1050293":[128,133]},{"1050296":[169,48]},{"1050299":[133,2,169,5]},{"1050304":[34,233,146,164,250,134,2,250,134,1,40,250,130,70]},{"1050319":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050342":[72,165,2,72,169]},{"1050348":[128,133]},{"1050351":[169,48]},{"1050354":[133,2,169,6]},{"1050359":[34,233,146,164,250,134,2,250,134,1,40,250,130,15]},{"1050374":[201,135]},{"1050377":[208,7,175,98,129,48,130,3]},{"1050386":[169,23]},{"1050389":[41,255]},{"1050392":[40,107,8,194,32,165,138,201,3]},{"1050402":[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]},{"1050429":[72,165,2,72,169,64,129,133]},{"1050438":[169,48]},{"1050441":[133,2,169]},{"1050446":[34,233,146,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]},{"1050479":[72,165,2,72,169,16,128,133]},{"1050488":[169,48]},{"1050491":[133,2,169,6]},{"1050496":[34,233,146,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050514":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050534":[72,165,2,72,169,64,129,133]},{"1050543":[169,48]},{"1050546":[133,2,169,1]},{"1050551":[34,233,146,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050569":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050589":[72,165,2,72,169,64,129,133]},{"1050598":[169,48]},{"1050601":[133,2,169,2]},{"1050606":[34,233,146,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050624":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050644":[72,165,2,72,169,64,129,133]},{"1050653":[169,48]},{"1050656":[133,2,169,10]},{"1050661":[34,233,146,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050679":[208,107,165,34,201]},{"1050685":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050706":[72,165,2,72,169,64,129,133]},{"1050715":[169,48]},{"1050718":[133,2,169,3]},{"1050723":[34,233,146,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]},{"1050756":[72,165,2,72,169,16,128,133]},{"1050765":[169,48]},{"1050768":[133,2,169,7]},{"1050773":[34,233,146,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050791":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050811":[72,165,2,72,169,64,129,133]},{"1050820":[169,48]},{"1050823":[133,2,169,4]},{"1050828":[34,233,146,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050846":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1050866":[72,165,2,72,169,64,129,133]},{"1050875":[169,48]},{"1050878":[133,2,169,5]},{"1050883":[34,233,146,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1050901":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1050921":[72,165,2,72,169,64,129,133]},{"1050930":[169,48]},{"1050933":[133,2,169,6]},{"1050938":[34,233,146,164,250,134,2,250,134,1,40,250,130,223]},{"1050953":[201,74]},{"1050956":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1050976":[72,165,2,72,169,64,129,133]},{"1050985":[169,48]},{"1050988":[133,2,169,6]},{"1050993":[34,233,146,164,250,134,2,250,134,1,40,250,130,168]},{"1051008":[201,91]},{"1051011":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051031":[72,165,2,72,169,64,129,133]},{"1051040":[169,48]},{"1051043":[133,2,169,7]},{"1051048":[34,233,146,164,250,134,2,250,134,1,40,250,130,113]},{"1051063":[201,104]},{"1051066":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051086":[72,165,2,72,169,64,129,133]},{"1051095":[169,48]},{"1051098":[133,2,169,8]},{"1051103":[34,233,146,164,250,134,2,250,134,1,40,250,130,58]},{"1051118":[201,129]},{"1051121":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051141":[72,165,2,72,169,64,129,133]},{"1051150":[169,48]},{"1051153":[133,2,169,9]},{"1051158":[34,233,146,164,250,134,2,250,134,1,40,250,130,3]},{"1051173":[169,23]},{"1051176":[41,255]},{"1051179":[40,107,8,194,32,165,160,201,200]},{"1051189":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051209":[72,165,2,72,169,80,129,133]},{"1051218":[169,48]},{"1051221":[133,2,169]},{"1051226":[34,233,146,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051244":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051264":[72,165,2,72,169,80,129,133]},{"1051273":[169,48]},{"1051276":[133,2,169,1]},{"1051281":[34,233,146,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051299":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051319":[72,165,2,72,169,80,129,133]},{"1051328":[169,48]},{"1051331":[133,2,169,2]},{"1051336":[34,233,146,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051354":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051374":[72,165,2,72,169,80,129,133]},{"1051383":[169,48]},{"1051386":[133,2,169,3]},{"1051391":[34,233,146,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051409":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051429":[72,165,2,72,169,80,129,133]},{"1051438":[169,48]},{"1051441":[133,2,169,4]},{"1051446":[34,233,146,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051464":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051484":[72,165,2,72,169,80,129,133]},{"1051493":[169,48]},{"1051496":[133,2,169,5]},{"1051501":[34,233,146,164,250,134,2,250,134,1,40,250,130,223]},{"1051516":[201,172]},{"1051519":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051539":[72,165,2,72,169,80,129,133]},{"1051548":[169,48]},{"1051551":[133,2,169,6]},{"1051556":[34,233,146,164,250,134,2,250,134,1,40,250,130,168]},{"1051571":[201,222]},{"1051574":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051594":[72,165,2,72,169,80,129,133]},{"1051603":[169,48]},{"1051606":[133,2,169,7]},{"1051611":[34,233,146,164,250,134,2,250,134,1,40,250,130,113]},{"1051626":[201,144]},{"1051629":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051649":[72,165,2,72,169,80,129,133]},{"1051658":[169,48]},{"1051661":[133,2,169,8]},{"1051666":[34,233,146,164,250,134,2,250,134,1,40,250,130,58]},{"1051681":[201,164]},{"1051684":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051704":[72,165,2,72,169,80,129,133]},{"1051713":[169,48]},{"1051716":[133,2,169,9]},{"1051721":[34,233,146,164,250,134,2,250,134,1,40,250,130,3]},{"1051736":[169,62]},{"1051739":[41,255]},{"1051742":[40,107,194,32,165,160,201,200]},{"1051751":[208,4,56,130,82]},{"1051757":[201,51]},{"1051760":[208,4,56,130,73]},{"1051766":[201,7]},{"1051769":[208,4,56,130,64]},{"1051775":[201,90]},{"1051778":[208,4,56,130,55]},{"1051784":[201,6]},{"1051787":[208,4,56,130,46]},{"1051793":[201,41]},{"1051796":[208,4,56,130,37]},{"1051802":[201,172]},{"1051805":[208,4,56,130,28]},{"1051811":[201,222]},{"1051814":[208,4,56,130,19]},{"1051820":[201,144]},{"1051823":[208,4,56,130,10]},{"1051829":[201,164]},{"1051832":[208,4,56,130,1]},{"1051838":[24,226,32,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,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,34,157,153,7,72,175,16,244,126,9,4,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,8,143,16,244,126,104,107,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,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]},{"1052143":[72,165,2,72,169,16,128,133]},{"1052152":[169,48]},{"1052155":[133,2,169,3]},{"1052160":[34,233,146,164,250,134,2,250,134,1,40,250,168,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,50,175,135,128,48,208,6,175,16,128,48,128,35,218,8,194,48,165]},{"1052223":[72,165,2,72,169,16,128,133]},{"1052232":[169,48]},{"1052235":[133,2,169]},{"1052240":[34,233,146,164,250,134,2,250,134,1,40,250,168,128,57,201,30,1,208,50,175,135,128,48,208,6,175,17,128,48,128,35,218,8,194,48,165]},{"1052278":[72,165,2,72,169,16,128,133]},{"1052287":[169,48]},{"1052290":[133,2,169,1]},{"1052295":[34,233,146,164,250,134,2,250,134,1,40,250,168,128,2,160,70,40,104,107,32,144,213,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,193,213,207,150,128,48,144,10,104,175,151,128,48,34,155,142,160,107,104,218,139,75,171,170,191,129,143,160,171,250,201,249,176,1,107,201,249,208,12,175,123,243,126,208,3,169,59,107,169,60,107,201,250,208,7,34,121,212,160,76,155,142,201,251,208,7,34,53,213,160,76,155,142,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,155,142,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,155,142,160,107,201]},{"1052474":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,155,142,160,107,201]},{"1052529":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,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]},{"1052594":[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]},{"1052633":[65,36,71,72,72,72,254,255,253,13,250,251,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,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,73,32,144,213,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,193,213,207,150,128,48,144,10,104,175,151,128,48,34,129,144,160,107,104,218,139,75,171,170,191,110,145,160,171,250,201,250,176,1,107,201,253,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,129,144,160,107,201]},{"1052896":[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,129,144,160,107,201]},{"1052951":[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,129,144,160,107,201]},{"1052991":[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,250,208,7,34,121,212,160,76,129,144,201,251,208,7,34,53,213,160,76,129,144,107]},{"1053039":[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]},{"1053077":[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]},{"1053126":[2,6,2,2,4,8,253,254,255,252,250,251]},{"1053144":[8,8,8]},{"1053150":[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,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,8,72,218,139,75,171,32,144,213,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,193,213,207,150,128,48,144,11,175,151,128,48,34,110,146,160,130,128]},{"1053352":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,110,146,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,110,146,160,128,63,128,60,201,96,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,34,110,146,160,128,37,201,98,208,6,34,121,212,160,128,8,201,99,208,4,34,53,213,160,162]},{"1053463":[224,36,176,12,223,44,147,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,32,102,147,34,155,142,160,34,45,213]},{"1053538":[122,250,104,107,72,8,72,194,32,169]},{"1053550":[143,37,192,126,143,39,192,126,169]},{"1053560":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,129,144,160,143,42,192,126,143,50,192,126,104,34,110,146,160,176,2,128,27,194,32,169]},{"1053601":[143,44,192,126,143,51,192,126,169]},{"1053611":[8,143,46,192,126,169]},{"1053618":[52,143,48,192,126,40,104,96,34,110,146,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]},{"1053687":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,110,146,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]},{"1053768":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1053798":[169]},{"1053801":[143,66,80,127,128,6,162,64,45,160,2]},{"1053813":[104,107,32,160,148,176,35,194,32,165,226,72,56,233,15]},{"1053829":[133,226,165,232,72,56,233,15]},{"1053838":[133,232,226,32,32,160,148,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1053870":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1053890":[13,133]},{"1053893":[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]},{"1053928":[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]},{"1053970":[144,8,230,5,56,233,100]},{"1053978":[128,243,201,10]},{"1053983":[144,8,230,6,56,233,10]},{"1053991":[128,243,201,1]},{"1053996":[144,8,230,7,56,233,1]},{"1054004":[128,243,165,4,143,4,80,127,165,6,143,6,80,127,104,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]},{"1054059":[143,109,243,126,169]},{"1054065":[143,1,80,127,40,175,109,243,126,107,162]},{"1054077":[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]},{"1054103":[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]},{"1054130":[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,221,149,160,107,72,173]},{"1054176":[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]},{"1054206":[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]},{"1054280":[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]},{"1054341":[143,23,192,126,175,139,243,126,107,169]},{"1054352":[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,77,151,160,170,191,104,243,126,31,20,244,126,250,63,87,151,160,208,3,130,98]},{"1054429":[191,66,151,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,80,151,160,170,191,104,243,126,31,20,244,126,250,63,91,151,160,208,3,130,44]},{"1054483":[191,70,151,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]},{"1054543":[1,1]},{"1054548":[1]},{"1054550":[1,32,32,16]},{"1054555":[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,175,90,128,48,41,255]},{"1054606":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1054619":[107,175,122,243,126,47,165,160,2,41,255]},{"1054631":[107,194,32,175,19,130,48,41,255]},{"1054641":[240,5,169,8]},{"1054646":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1054659":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1054681":[2,107,175,19,130,48,41,255]},{"1054690":[240,5,169,8]},{"1054695":[128,7,175,72,128,48,41,255]},{"1054704":[24,101,234,48,3,169]},{"1054712":[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]},{"1054739":[201,255]},{"1054742":[208,1,107,175,22,244,126,41,32]},{"1054752":[240,4,169]},{"1054757":[107,173,12,4,41,255]},{"1054764":[201,255]},{"1054767":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1054791":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,69,232,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1054823":[107,169,136,21,133]},{"1054829":[107,175,69,128,48,208,6,169,16,22,133]},{"1054841":[107,169,144,21,133]},{"1054847":[107,175,69,128,48,208,6,169,24,22,133]},{"1054859":[107,169,152,21,133]},{"1054865":[107,175,69,128,48,208,6,169,32,22,133]},{"1054877":[107,169,160,21,133]},{"1054883":[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]},{"1054975":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1054989":[144,240,175,22,244,126,41,32]},{"1054998":[240,3,130,200,1,175,69,128,48,41,1]},{"1055010":[208,3,130,231]},{"1055015":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055037":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055054":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055071":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055088":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055105":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055122":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055139":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055156":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055173":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1055190":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1055207":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1055224":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1055241":[141,165,22,194,32,175,69,128,48,41,2]},{"1055253":[208,3,130,201]},{"1055258":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1055271":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1055286":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1055301":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1055316":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1055331":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1055346":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1055361":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1055376":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1055391":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1055406":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1055421":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1055436":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1055451":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1055466":[208,3,130,170,1,175,69,128,48,41,4]},{"1055478":[208,3,130,201]},{"1055483":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1055496":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1055511":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1055526":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1055541":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1055556":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1055571":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1055586":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1055601":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1055616":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1055631":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1055646":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1055661":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1055676":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1055691":[208,3,130,201]},{"1055696":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1055709":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1055724":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1055739":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1055754":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1055769":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1055784":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1055799":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1055814":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1055829":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1055844":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1055859":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1055874":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1055889":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1055908":[191,227,157,160,157,234,18,191,247,157,160,157,42,19,191,11,158,160,157,106,19,191,31,158,160,157,170,19,191,51,158,160,157,234,19,191,71,158,160,157,42,20,191,91,158,160,157,106,20,191,111,158,160,157,170,20,191,131,158,160,157,234,20,232,232,224,20]},{"1055976":[144,186,175,116,243,126,41,4]},{"1055985":[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]},{"1056018":[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]},{"1056051":[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]},{"1056084":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056105":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056126":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056147":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056168":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1056189":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1056210":[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]},{"1056833":[143,114,243,126,173,10,2,208,14,169]},{"1056844":[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]},{"1056878":[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]},{"1056959":[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]},{"1057002":[165,12,201,232,3,144,3,130,24]},{"1057012":[201,100]},{"1057015":[144,3,130,97]},{"1057020":[201,10]},{"1057023":[144,3,130,170]},{"1057028":[201,1]},{"1057031":[144,3,130,243]},{"1057036":[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,145,162,133,14,165,14,159]},{"1057073":[201,126,232,232,169,56]},{"1057080":[159]},{"1057082":[201,126,232,232,164,10,152,10,168,185,125,162,159]},{"1057096":[201,126,232,232,169]},{"1057103":[159]},{"1057105":[201,126,232,232,165,14,24,105,8]},{"1057115":[133,14,100,10,165,12,201,100]},{"1057124":[144,8,56,233,100]},{"1057130":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,145,162,133,14,165,14,159]},{"1057154":[201,126,232,232,169,56]},{"1057161":[159]},{"1057163":[201,126,232,232,164,10,152,10,168,185,125,162,159]},{"1057177":[201,126,232,232,169]},{"1057184":[159]},{"1057186":[201,126,232,232,165,14,24,105,8]},{"1057196":[133,14,100,10,165,12,201,10]},{"1057205":[144,8,56,233,10]},{"1057211":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,145,162,133,14,165,14,159]},{"1057235":[201,126,232,232,169,56]},{"1057242":[159]},{"1057244":[201,126,232,232,164,10,152,10,168,185,125,162,159]},{"1057258":[201,126,232,232,169]},{"1057265":[159]},{"1057267":[201,126,232,232,165,14,24,105,8]},{"1057277":[133,14,100,10,165,12,201,1]},{"1057286":[144,8,56,233,1]},{"1057292":[230,10,128,243,133,12,192,255,208,10,160]},{"1057304":[165,14,24,121,145,162,133,14,165,14,159]},{"1057316":[201,126,232,232,169,56]},{"1057323":[159]},{"1057325":[201,126,232,232,164,10,152,10,168,185,125,162,159]},{"1057339":[201,126,232,232,169]},{"1057346":[159]},{"1057348":[201,126,232,232,165,14,24,105,8]},{"1057358":[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]},{"1057429":[252,255,248,255,218,90,8,194,48,162]},{"1057441":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1057456":[208,13,175,153,80,127,41,255]},{"1057465":[223,3,200,48,208,44,226,32,191]},{"1057475":[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]},{"1057517":[200,48,41,255]},{"1057522":[201,255]},{"1057525":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,222]},{"1057548":[226,32,162]},{"1057553":[160]},{"1057556":[152,207,96,80,127,144,3,130,172]},{"1057566":[191,1,201,48,201,255,208,3,130,161]},{"1057577":[191]},{"1057579":[201,48,207,80,80,127,240,3,130,137]},{"1057590":[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]},{"1057627":[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,91,164,160,170,32,122,164,122,250,200,200,200,200,232,232,232,232,232,232,232,232,130,74,255,165,160,201,255,208,13,173,55,33,173,63,33,173,61,33,201,60,144,243,169,128,141]},{"1057761":[33,32,149,164,169,15,141]},{"1057769":[33,175,81,80,127,137,32,240,14,169]},{"1057780":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1057794":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,181,169,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,182,169,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,183,169,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]},{"1057887":[128]},{"1057892":[1]},{"1057895":[169,145,143,68,80,127,169,164,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,155,142,160,34,45,213]},{"1057934":[194,16,96,32,149,164,107,173]},{"1057943":[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]},{"1057973":[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]},{"1058010":[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]},{"1058151":[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]},{"1058316":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1058337":[175,81,80,127,201,255,208,3,76,14,166,139,75,171,34,231,244,30,32,92,166,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]},{"1058388":[32,121,170,32,121,168,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1058411":[201,2,208,3,130,227]},{"1058418":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1058433":[165,26,41,16,240,12,189,240,166,159]},{"1058444":[201,126,232,224,16,144,244,189]},{"1058453":[167,159]},{"1058456":[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]},{"1058515":[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]},{"1058546":[248,255]},{"1058551":[2]},{"1058556":[16]},{"1058559":[2]},{"1058562":[248,255]},{"1058567":[2]},{"1058572":[16,64]},{"1058575":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,69,133,8,169,167,133,9,128,8,169,77,133,8,169,167,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1058633":[70,10]},{"1058636":[2]},{"1058641":[70,74]},{"1058644":[2,218,162]},{"1058648":[165,26,41,64,240,12,189,199,167,159]},{"1058659":[201,126,232,224,16,144,244,189,215,167,159]},{"1058671":[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]},{"1058730":[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]},{"1058761":[248,255,132]},{"1058766":[2]},{"1058771":[16]},{"1058774":[2]},{"1058777":[248,255,132]},{"1058782":[2]},{"1058787":[16,64]},{"1058790":[2,218,162]},{"1058794":[165,26,41,64,240,12,189,89,168,159]},{"1058805":[201,126,232,224,16,144,244,189,105,168,159]},{"1058817":[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]},{"1058876":[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]},{"1058907":[248,255,142]},{"1058912":[2]},{"1058917":[16]},{"1058920":[2]},{"1058923":[248,255,142]},{"1058928":[2]},{"1058933":[16,64]},{"1058936":[2,218,90,8,160]},{"1058942":[90,152,74,74,168,175,95,80,127,57,181,169,240,3,122,128,48,122,173,238]},{"1058963":[221,32,15,208,39,32,76,170,32,184,169,34,230,131,6,144,3,32,108,170,32,34,170,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,206,168,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]},{"1059091":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059107":[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,181,169,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,181,169,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]},{"1059260":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1059281":[58,10,168,185,110,171,133]},{"1059289":[122,104,24,113]},{"1059294":[24,105,2]},{"1059298":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1059311":[13,194,32,90,200,200,24,113]},{"1059320":[122,72,175,81,80,127,41,128]},{"1059329":[240,7,104,24,105,4]},{"1059336":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1059359":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1059376":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1059389":[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]},{"1059417":[165,35,105]},{"1059421":[133,8,165,32,105,8,133,1,165,33,105]},{"1059433":[133,9,96,218,34]},{"1059439":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1059461":[160]},{"1059463":[175,81,80,127,41,3,201,3,208,5,32,170,170,128,4,201,2,208,5,32,170,170,128,4,201,1,208,3,32,170,170,122,250,171,96,175,95,80,127,57,181,169,240,3,130,178]},{"1059510":[90,175,81,80,127,41,3,58,10,168,194,32,185,110,171,133]},{"1059527":[163,1,10,10,168,177]},{"1059534":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1059547":[208,8,177]},{"1059551":[143,39,192,126,128,10,177]},{"1059559":[24,105,4]},{"1059563":[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,140,171,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,129,144,160,143,42,192,126,169]},{"1059630":[143,43,192,126,191,82,80,127,34,110,146,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1059656":[143,44,192,126,32,97,172,169,2,218,72,175,97,80,127,170,104,32,24,172,250,175,81,80,127,41,128,208,3,32,143,171,200,232,232,232,232,96,116,171,120,171,128,171,8]},{"1059702":[40]},{"1059704":[240,255,40]},{"1059708":[32]},{"1059710":[40]},{"1059712":[216,255,40]},{"1059716":[8]},{"1059718":[40]},{"1059720":[56]},{"1059722":[40]},{"1059724":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1059743":[58,10,168,185,110,171,133]},{"1059751":[185,6,172,133,2,122,90,152,10,10,168,177]},{"1059764":[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,227,160,226,32,133,6,100,7,72,169]},{"1059803":[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,12,172,14,172,18,172]},{"1059853":[255]},{"1059855":[128,128,255]},{"1059859":[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]},{"1059940":[194,32,191,37,192,126,24,105,4]},{"1059950":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1059966":[159,47,192,126,191,41,192,126,24,105,16]},{"1059978":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060012":[72,165,2,72,169,16,128,133]},{"1060021":[169,48]},{"1060024":[133,2,169,2]},{"1060029":[34,233,146,164,250,134,2,250,134,1,40,250,157,128,14,34,84,147,160,107,72,189,128,14,34,186,147,160,104,107,72,188,128,14,104,34,188,141,160,107,169,8,157,80,15,169]},{"1060076":[143]},{"1060078":[80,127,32,53,173,34,84,147,160,107,72,175]},{"1060091":[80,127,240,6,34,234,172,160,128,7,32,53,173,34,11,148,160,104,107,32,53,173,201,36,208,24,90,160,36,34,4,181,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,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]},{"1060442":[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]},{"1060509":[191,102,175,160,197,4,144,3,232,128,245,191,103,175,160,133,6,100,7,194,32,138,10,10,170,191,104,175,160,141,232,80,191,106,175,160,141,234,80,173]},{"1060550":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1060568":[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,82,173,173,236,80,10,10,170,189]},{"1060605":[81,56,229,8,157]},{"1060611":[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]},{"1060643":[81,141,228,80,189,2,81,141,230,80,32,82,173,173]},{"1060658":[81,56,229,8,141]},{"1060664":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,78,173,160,141,232,80,173,234,80,239,80,173,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,34,155,142,160,72,165,138,201,3,240,6,34,121,175,160,128,4,34,108,175,160,104,107,34,26,135,160,72,34,84,147,160,169,1,143,51,80,127,143,52,80,127,34,148,175,160,169,235,143]},{"1060806":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1060830":[13,165,33,153,32,13,169]},{"1060838":[153,32,15,169,127,153,112,15,107,72,8,34,25,176,160,144,31,156,18,1,156,239,3,169]},{"1060863":[133,93,194,32,165,138,201,48]},{"1060872":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1060896":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1060909":[128,16,201,48]},{"1060914":[208,11,165,34,201]},{"1060920":[2,144,4,56,130,1]},{"1060927":[24,226,32,107,191,200,204,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1060948":[226,32,34,16,247,8,169,52,145,144,200,191,200,205,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1060983":[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]},{"1061045":[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,33,177,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]},{"1061192":[13,173,219,15,233]},{"1061198":[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]},{"1061237":[13,173,219,15,233]},{"1061243":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1061268":[254,127,208,245,169,4,107,34,10,218,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,19,34,28,218,160,107,169,51,133,200,173,3,4,41,64,208,3,169,7,107,34,28,218,160,34,113,186,13,41,7,201,7,208,2,169]},{"1061333":[107,169]},{"1061336":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,74,178,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,74,178,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,74,178,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,74,178,160,107,218,8,194,32,41,127]},{"1061457":[10,170,191]},{"1061461":[82,127,26,41,255,3,159]},{"1061469":[82,127,170,10,191]},{"1061475":[128,175,40,250,107,218,8,194,48,162]},{"1061487":[191,159,178,160,159]},{"1061493":[82,127,232,232,191,159,178,160,159]},{"1061503":[82,127,232,232,191,159,178,160,159]},{"1061513":[82,127,232,232,191,159,178,160,159]},{"1061523":[82,127,232,232,224,127]},{"1061530":[144,211,40,250,107]},{"1061537":[64]},{"1061539":[128]},{"1061541":[192]},{"1061544":[1,64,1,128,1,192,1]},{"1061552":[2,64,2,128,2,192,2]},{"1061560":[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,191,178,160,175,35,128,48,208,4,34,223,178,160,104,107,72,169]},{"1061662":[143,65,80,127,175,34,128,48,201,1,208,4,34,191,178,160,175,35,128,48,201,1,208,4,34,223,178,160,104,107,72,175,34,128,48,201,2,208,4,34,191,178,160,175,35,128,48,201,2,208,4,34,223,178,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]},{"1061828":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1061845":[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]},{"1061916":[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]},{"1061952":[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,147,180,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]},{"1062077":[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]},{"1062103":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062123":[2,156,5,2,169]},{"1062129":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,220,181,72,218,8,192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,196]},{"1062168":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,179]},{"1062185":[192,41,208,13,175,140,243,126,9,32,143,140,243,126,130,162]},{"1062202":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,145]},{"1062219":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,128]},{"1062236":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,111]},{"1062253":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,94]},{"1062270":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,71]},{"1062293":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,54]},{"1062310":[192,59,208,13,175,142,243,126,9,64,143,142,243,126,130,37]},{"1062327":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1062350":[192,88,208,10,175,142,243,126,9,64,143,142,243,126,175,67,244,126,240,3,130,188,4,192,32,208,3,130,118,2,192,38,208,3,130,111,2,192,46,208,3,130,104,2,192,47,208,3,130,97,2,192,48,208,3,130,90,2,192,55,208,3,130,83,2,192,56,208,3,130,76,2,192,57,208,3,130,69,2,192]},{"1062431":[208,3,130,62,2,192,4,144,14,192,73,240,10,192,80,240,6,192,94,240,2,128,3,130,103]},{"1062457":[192,59,208,3,130,96]},{"1062464":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1062489":[201,15,1,208,3,130,59]},{"1062497":[201,16,1,208,3,130,51]},{"1062505":[201,28,1,208,3,130,43]},{"1062513":[201,31,1,208,3,130,35]},{"1062521":[201,255]},{"1062524":[208,3,130,27]},{"1062529":[201,20,1,208,3,130,19]},{"1062537":[201,21,1,208,3,130,11]},{"1062545":[201,22,1,208,3,130,3]},{"1062553":[40,128,4,40,130,1,4,165,27,208,3,130,134,1,226,32,173,12,4,201]},{"1062574":[208,2,128,4,201,2,208,21,192,50,208,3,130,165,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]},{"1062727":[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]},{"1062765":[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]},{"1062803":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1062821":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1062839":[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]},{"1062875":[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]},{"1062913":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1062931":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,143,188,192,59,208,10,175,42,244,126,137,32,240,2,128,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,192]},{"1063012":[208,9,32,41,187,32,90,187,130,50,2,192,1,208,6,32,41,187,130,40,2,192,2,208,6,32,41,187,130,30,2,192,3,208,6,32,41,187,130,20,2,192,4,208,6,32,90,187,130,10,2,192,5,208,6,32,90,187,130]},{"1063072":[2,192,6,208,6,32,90,187,130,246,1,192,7,144,10,192,14,176,6,32,139,187,130,232,1,192,20,208,9,32,231,186,32,139,187,130,219,1,192,15,144,10,192,23,176,6,32,139,187,130,205,1,192,23,208,6,32,239,187,130,195,1,192,24,144,10,192,26,176,6,32,139,187,130,181,1,192,26,208,9,32,8,187,32,139,187,130,168,1,192,29,208,6,32,139,187,130,158,1,192,27,144,10,192,32,176,6,32,151,187,130,144,1,192,32,208,6,32,23,188,130,134,1,192,33,208,6,32,139,187,130,124,1,192,34,144,10,192,36,176,6,32,51,188,130,110,1,192,36,208,6,32,67,188,130,100,1,192,37,208,6,32,99,188,130,90,1,192,38,208,3,130,83,1,192,39,208,6,32,171,188,130,73,1,192,40,208,6,32,171,188,130,63,1,192,41,208,6,32,139,187,130,53,1,192,42,144,10,192,46,176,6,32,139,187,130,39,1,192,49,208,6,32,171,188,130,29,1,192,50,208,6,32,131,188,130,19,1,192,51,208,6,32,193,188,130,9,1,192,55,144,10,192,58,176,6,32,179,187,130,251]},{"1063334":[192,58,144,10,192,60,176,6,32,120,187,130,237]},{"1063348":[192,60,208,6,32,139,187,130,227]},{"1063358":[192,61,208,6,32,139,187,130,217]},{"1063368":[192,62,144,10,192,64,176,6,32,11,188,130,203]},{"1063382":[192,72,208,6,32,139,187,130,193]},{"1063392":[192,73,208,6,32,41,187,130,183]},{"1063402":[192,74,208,9,32,231,186,32,139,187,130,170]},{"1063415":[192,75,208,9,32,198,186,32,151,187,130,157]},{"1063428":[192,76,208,9,32,207,187,32,171,188,130,144]},{"1063441":[192,77,144,10,192,80,176,6,32,207,187,130,130]},{"1063455":[192,80,208,6,32,41,187,130,120]},{"1063465":[192,81,144,10,192,85,176,6,32,207,187,130,106]},{"1063479":[192,88,208,6,32,120,187,130,96]},{"1063489":[192,94,208,6,32,41,187,130,86]},{"1063499":[192,95,208,6,32,90,187,130,76]},{"1063509":[192,96,208,6,32,51,188,130,66]},{"1063519":[192,97,208,6,32,151,187,130,56]},{"1063529":[192,112,144,10,192,128,176,6,32,193,188,130,42]},{"1063543":[192,128,144,10,192,144,176,6,32,99,188,130,28]},{"1063557":[192,144,144,10,192,160,176,6,32,131,188,130,14]},{"1063571":[192,160,144,10,192,176,176,6,32,67,188,130]},{"1063585":[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,165,186,152,201,80,208,2,169,1,201,73,208,2,169]},{"1063737":[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,67,188,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,139,187,96,175,40,244,126,24,105,16,143,40,244,126,96,32,209,188,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,69,232,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]},{"1064333":[201,2]},{"1064336":[208,14,175,140,243,126,41,192]},{"1064345":[201,192]},{"1064348":[240,79,128,64,201,1]},{"1064355":[208,14,175,142,243,126,41,192]},{"1064364":[201,192]},{"1064367":[240,60,128,45,201,5]},{"1064374":[208,14,175,140,243,126,41,48]},{"1064383":[201,48]},{"1064386":[240,41,128,26,201,13]},{"1064393":[208,16,175,140,243,126,137,4]},{"1064402":[240,12,41,3]},{"1064407":[208,20,128,5,201,16]},{"1064414":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1064427":[208,5,169,79,61,128,6,32,252,189,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]},{"1064474":[41,255,239,153,4]},{"1064480":[185,62]},{"1064483":[41,255,239,153,62]},{"1064489":[185,68]},{"1064492":[41,255,239,153,68]},{"1064498":[185,128]},{"1064501":[41,255,239,153,128]},{"1064507":[185,130]},{"1064510":[41,255,239,153,130]},{"1064516":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1064537":[41,255,239,153,132]},{"1064543":[185,126]},{"1064546":[41,255,239,153,126]},{"1064552":[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]},{"1064590":[201,144]},{"1064593":[208,3,169,127]},{"1064598":[9]},{"1064600":[36,143,100,199,126,165,5,41,255]},{"1064610":[9]},{"1064612":[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,141,234,160,34,81,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1064716":[72,165,2,72,169,16,128,133]},{"1064725":[169,48]},{"1064728":[133,2,169,4]},{"1064733":[34,233,146,164,250,134,2,250,134,1,40,250,153,160,13,34,84,147,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,28,175]},{"1064779":[80,127,240,15,189,160,13,34,84,147,160,169]},{"1064792":[143]},{"1064794":[80,127,128,7,189,160,13,34,186,147,160,107,169]},{"1064808":[157,192,13,72,169,1,143]},{"1064816":[80,127,165,93,201,20,240,60,169]},{"1064826":[143]},{"1064828":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1064848":[72,165,2,72,169,16,128,133]},{"1064857":[169,48]},{"1064860":[133,2,169,3]},{"1064865":[34,233,146,164,250,134,2,250,134,1,40,250,157,128,14,34,84,147,160,104,107,72,90,175]},{"1064890":[80,127,240,6,34,107,191,160,128,7,189,128,14,34,186,147,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]},{"1064933":[72,165,2,72,169,16,128,133]},{"1064942":[169,48]},{"1064945":[133,2,169,4]},{"1064950":[34,233,146,164,250,134,2,250,134,1,40,250,168,156,233,2,34,157,153,7,34,18,142,160,107,175,140,243,126,41,223,143,140,243,126,41,16,240,7,169,2,143,68,243,126,107,169]},{"1064998":[143,68,243,126,107,175,123,243,126,41,255]},{"1065010":[201,2]},{"1065013":[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]},{"1065046":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065061":[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]},{"1065097":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1065111":[173,91,3,41,1,208,3,130,134]},{"1065121":[90,8,139,75,171,226,48,165,27,240,3,76,36,193,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1065158":[129,48,143]},{"1065162":[254,127,34,93,246,29,162]},{"1065170":[165,47,201,4,240,1,232,191,40,193,160,153,80,13,169]},{"1065186":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,42,193,160,41,240,153,16,13,165,35,105]},{"1065220":[153,48,13,165,32,24,105,22,41,240,153]},{"1065232":[13,165,33,105]},{"1065237":[153,32,13,169]},{"1065242":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1065259":[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]},{"1065290":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1065311":[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,206,149,160,92,53,207,30,175,195,225,29,34,84,147,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1065373":[92,82,223,29,175,133,225,29,34,84,147,160,107,165,138,201,129,208,12,169,1,143]},{"1065396":[80,127,175,195,225,29,128,4,175,133,225,29,34,186,147,160,107,34,157,153,7,165,138,201,129,208,6,34,111,141,160,128,4,34,175,141,160,107,165,138,201,42,240,1,107,165,27,240,1,107,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1065464":[72,165,2,72,169,64,129,133]},{"1065473":[169,48]},{"1065476":[133,2,169,10]},{"1065481":[34,233,146,164,250,134,2,250,134,1,40,250,34,84,147,160,169,235,143]},{"1065501":[254,127,34,93,246,29,162]},{"1065509":[165,47,201,4,240,1,232,191,130,194,160,153,80,13,169]},{"1065525":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,132,194,160,41,240,153,16,13,165,35,105]},{"1065559":[153,48,13,165,32,24,105,22,41,240,153]},{"1065571":[13,165,33,105]},{"1065576":[153,32,13,169]},{"1065581":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1065605":[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]},{"1065684":[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]},{"1065711":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,81,141,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1065750":[72,165,2,72,169,16,128,133]},{"1065759":[169,48]},{"1065762":[133,2,169,5]},{"1065767":[34,233,146,164,250,134,2,250,134,1,40,250,201,255,240,9,168,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]},{"1065811":[201,35,208,6,160,93,92,71,213]},{"1065821":[201,72,208,6,160,96,92,71,213]},{"1065831":[201,36,176,6,160,91,92,71,213]},{"1065841":[201,55,176,6,160,92,92,71,213]},{"1065851":[201,57,176,6,160,93,92,71,213]},{"1065861":[160,50,92,71,213]},{"1065867":[192,9,48]},{"1065871":[96]},{"1065873":[144]},{"1065875":[192]},{"1065878":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1065902":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1065920":[9,48,9,96,9,144,9,240,9]},{"1065931":[240]},{"1065933":[32,10,80,10,96,6]},{"1065940":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1065962":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1065978":[6,48,6]},{"1065982":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1065998":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066019":[127,139,195,160,107,165]},{"1066026":[72,165,1,72,165,2,72,90,8,139,169,175,72,171,173,216,2,201,224,208,68,194,48,175,80,244,126,10,170,191]},{"1066057":[132,175,24,105]},{"1066062":[136,133]},{"1066065":[226,32,169,175,133,2,34,67,221,160,175,80,244,126,26,143,80,244,126,226,16,175,103,129,48,240,19,175,24,244,126,26,143,24,244,126,207,103,129,48,144,4,34,225,213,160,162,1,128,2,162]},{"1066117":[171,40,122,104,133,2,104,133,1,104,133]},{"1066129":[96,218,173,216,2,34,121,221,160,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,94,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,70,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,46,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,20,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,1,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,236,2,201,81,208,22,175,112,243,126,24,105,5,143,112,243,126,175,128,128,48,143,117,243,126,130,210,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,184,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,158,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,132,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,101,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,70,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,39,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,224,1,201,90,208,3,130,217,1,201,91,208,32,194,32,175,84,244,126,24,111]},{"1066567":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,181,1,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,145,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,109,1,201,94,208,3,130,102,1,201,95,208,3,130,95,1,201,96,208,3,130,88,1,201,97,208,3,130,81,1,201,98,208,3,130,74,1,201,99,208,3,130,67,1,201,106,208,7,34,225,213,160,130,56,1,201,107,208,2,128,4,201,108,208,28,175,103,129,48,240,19,175,24,244,126,26,143,24,244,126,207,103,129,48,144,4,34,225,213,160,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1066772":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1066789":[56,233,8,170,169,1,224]},{"1066797":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1066820":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1066839":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1066856":[56,233,8,170,169,1,224]},{"1066864":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1066887":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1066906":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1066923":[56,233,8,170,169,1,224]},{"1066931":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1066954":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1066976":[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,19]},{"1067008":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1067027":[250,173,233,2,201,1,107,72,218,34,62,232,160,173,216,2,32,144,213,141,216,2,32,102,213,201,22,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,173,1,201,43,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,150,1,201,44,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,127,1,201,45,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,104,1,201,60,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,81,1,201,61,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,58,1,201,72,208,19,32,193,213,207,150,128,48,144,7,175,151,128,48,141,216,2,130,35,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,17,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,249]},{"1067255":[201]},{"1067257":[208,8,169,73,141,216,2,130,237]},{"1067267":[201,1,208,8,169,80,141,216,2,130,225]},{"1067279":[201,2,208,8,169,2,141,216,2,130,213]},{"1067291":[169,3,141,216,2,130,205]},{"1067299":[201,95,208,93,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,175]},{"1067329":[175,22,244,126,41,192,208,19,169,4,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,148]},{"1067356":[201,64,208,18,169,5,141,216,2,175,22,244,126,24,105,64,143,22,244,126,128,126,169,6,141,216,2,175,22,244,126,24,105,64,143,22,244,126,128,108,201,96,208,38,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,84]},{"1067420":[201]},{"1067422":[208,7,169,34,141,216,2,128,73,169,35,141,216,2,128,66,201,97,208,20,175,84,243,126,208,7,169,27,141,216,2,128,49,169,28,141,216,2,128,42,201,98,208,19,34,121,212,160,141,216,2,235,32,4,213,169,255,143,144,80,127,128,19,201,99,208,15,34,53,213,160,141,216,2,169,255,143,144,80,127,128]},{"1067504":[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]},{"1067759":[4,4,4,4,4,5]},{"1067771":[4]},{"1067773":[4]},{"1067776":[4]},{"1067788":[4]},{"1067794":[5]},{"1067804":[4,4,4]},{"1067818":[4,4]},{"1067821":[4]},{"1067825":[4]},{"1067832":[4]},{"1067841":[4]},{"1067912":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1067992":[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]},{"1068041":[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]},{"1068080":[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,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]},{"1068237":[2,2]},{"1068245":[2,2,2,2,2,2]},{"1068252":[2]},{"1068254":[2,2]},{"1068257":[2,2,2,2,2,2,2,2,2,2,2]},{"1068269":[2,2,2,2,2]},{"1068275":[2,2,2,2,2,2,2,2,2]},{"1068287":[2,2,2,2,2,2,2,2,2,2,2]},{"1068300":[2]},{"1068302":[2,2,2]},{"1068306":[2,2,2,2,2,2]},{"1068313":[2,2,2,2,2,2,2,2]},{"1068322":[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]},{"1068408":[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]},{"1068594":[4,4,4]},{"1068600":[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,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,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,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,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]},{"1069513":[128]},{"1069515":[64]},{"1069517":[32]},{"1069519":[16]},{"1069521":[8]},{"1069523":[4]},{"1069525":[2]},{"1069527":[1,128]},{"1069530":[64]},{"1069532":[32]},{"1069534":[16]},{"1069536":[8]},{"1069538":[4]},{"1069769":[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,152,32,144,213,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,14,212,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,14,212,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]},{"1070214":[160,48,107,162]},{"1070219":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1070232":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1070246":[168,152,32,224,212,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1070266":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1070290":[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]},{"1070330":[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]},{"1070367":[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]},{"1070406":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1070419":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1070442":[191]},{"1070444":[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]},{"1070484":[191]},{"1070486":[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,162]},{"1070531":[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,96,100,17,100,176,92,206,218,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1070594":[13,24,105,3,107,189,32,14,201,136,208,9,32,63,214,201,4,144,1,58,107,32,63,214,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1070640":[200,49,74,74,74,74,107,40,191]},{"1070650":[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]},{"1070700":[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]},{"1070734":[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,201,140,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]},{"1070936":[226,32,176,19,194,16,169,122,160,1,34,25,226,5,169,60,141,46,1,226,16,128,34,175,42,128,48,168,156,233,2,218,34,157,153,7,250,194,32,175,96,243,126,56,233,10]},{"1070983":[143,96,243,126,226,32,34,68,141,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1071009":[165,27,240,121,194,32,165,160,201,14]},{"1071020":[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]},{"1071055":[201,126]},{"1071058":[208,33,165,34,41,255,1,201,104]},{"1071068":[144,60,201,136]},{"1071073":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1071093":[201,222]},{"1071096":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1071121":[144,7,201,154]},{"1071126":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,126,216,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,126,216,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,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]},{"1071336":[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]},{"1071396":[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,43,217,160,107,143,111,243,126,218,175,67,244,126,208,4,34,63,188,160,34,48,152,160,90,160,24,34,247,180,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,63,188,160,34,48,152,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1071515":[208,11,40,90,160,24,34,247,180,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,48,152,160,107,72,175,67,244,126,208,4,34,205,188,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,43,217,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,43,217,160,104,34,168,160,2,107,58,16,8,169]},{"1071771":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1071785":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,43,217,169,1,143]},{"1071811":[80,127,156,70,6,156,66,6,76,43,217,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,205,188,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1072023":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,116,175,155,80,127,240,65,173]},{"1072054":[32,137,64,240,4,92,220,128]},{"1072063":[173]},{"1072065":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1072090":[143,155,80,127,92,220,128]},{"1072098":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1072117":[173,39,1,205,41,1,208,4,92,220,128]},{"1072129":[144,15,233,2,176,17,156,39,1,156,7,32,156,43,1,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1072162":[224,255,208,4,92,220,128]},{"1072170":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1072186":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1072202":[224,241,208,10,142,64,33,156,41,1,92,220,128]},{"1072216":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1072229":[142,4,32,156,5,32,156,7,32,191]},{"1072240":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1072253":[175,19,130,48,208,45,194,32,173,2,32,201,83,45,208,35,173,4,32,201,77,83,208,27,173,6,32,201,85,49,208,19,226,32,175,155,80,127,208,7,173]},{"1072295":[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,45,194,32,173,2,32,201,83,45,208,35,173,4,32,201,77,83,208,27,173,6,32,201,85,49,208,19,226,32,175,155,80,127,208,7,173]},{"1072357":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1072407":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1072425":[87,127,107,191]},{"1072430":[18,127,107,156,240,28,156,241,28,169]},{"1072441":[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]},{"1072473":[226,32,183]},{"1072477":[159]},{"1072479":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072498":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072522":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,18,7,169]},{"1072540":[143,16,80,127,175,64,80,127,201,36,208,119,169,170,133]},{"1072556":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072574":[226,32,183]},{"1072578":[159]},{"1072580":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072599":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1072619":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072637":[226,32,183]},{"1072641":[159]},{"1072643":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072662":[143,148,80,127,226,32,130,108,6,201,37,208,119,169,52,133]},{"1072679":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072697":[226,32,183]},{"1072701":[159]},{"1072703":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072722":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1072742":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072760":[226,32,183]},{"1072764":[159]},{"1072766":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072785":[143,148,80,127,226,32,130,241,5,201,51,208,119,169]},{"1072800":[133]},{"1072802":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072820":[226,32,183]},{"1072824":[159]},{"1072826":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072845":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1072865":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072883":[226,32,183]},{"1072887":[159]},{"1072889":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072908":[143,148,80,127,226,32,130,118,5,201,50,208,119,169,112,133]},{"1072925":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1072943":[226,32,183]},{"1072947":[159]},{"1072949":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072968":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1072988":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073006":[226,32,183]},{"1073010":[159]},{"1073012":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073031":[143,148,80,127,226,32,130,251,4,41,240,201,112,208,56,169]},{"1073048":[133]},{"1073050":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073068":[226,32,183]},{"1073072":[159]},{"1073074":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073093":[143,148,80,127,226,32,130,213]},{"1073102":[201,128,208,56,169,52,133]},{"1073110":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073128":[226,32,183]},{"1073132":[159]},{"1073134":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073153":[143,148,80,127,226,32,130,153]},{"1073162":[201,144,208,55,169,112,133]},{"1073170":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073188":[226,32,183]},{"1073192":[159]},{"1073194":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073213":[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]},{"1073240":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073258":[226,32,183]},{"1073262":[159]},{"1073264":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073283":[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]},{"1073362":[208,56,169,216,133]},{"1073368":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073386":[226,32,183]},{"1073390":[159]},{"1073392":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073411":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1073428":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073446":[226,32,183]},{"1073450":[159]},{"1073452":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073471":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1073488":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073506":[226,32,183]},{"1073510":[159]},{"1073512":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073531":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1073548":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073566":[226,32,183]},{"1073570":[159]},{"1073572":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073591":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1073608":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073626":[226,32,183]},{"1073630":[159]},{"1073632":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073651":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1073668":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073686":[226,32,183]},{"1073690":[159]},{"1073692":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073711":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1073728":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073746":[226,32,183]},{"1073750":[159]},{"1073752":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073771":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1073788":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073806":[226,32,183]},{"1073810":[159]},{"1073812":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073831":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1073848":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073866":[226,32,183]},{"1073870":[159]},{"1073872":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073891":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1073908":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073926":[226,32,183]},{"1073930":[159]},{"1073932":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073951":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1073968":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073986":[226,32,183]},{"1073990":[159]},{"1073992":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074011":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1074028":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074046":[226,32,183]},{"1074050":[159]},{"1074052":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074071":[143,148,80,127,226,32,130,235]},{"1074080":[201,12,208,56,169,12,133]},{"1074088":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074106":[226,32,183]},{"1074110":[159]},{"1074112":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074131":[143,148,80,127,226,32,130,175]},{"1074140":[201,13,208,55,169,41,133]},{"1074148":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074166":[226,32,183]},{"1074170":[159]},{"1074172":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074191":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1074207":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074225":[226,32,183]},{"1074229":[159]},{"1074231":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074250":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1074266":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074284":[226,32,183]},{"1074288":[159]},{"1074290":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074309":[143,148,80,127,226,32,156,240,28,156,241,28,169,1,143,53,80,127,169,1,143,160,80,127,104,133,2,104,133,1,104,133]},{"1074342":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1074357":[171,40,122,250,104,107,34,78,216]},{"1074367":[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]},{"1074431":[107,34,207,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,229,229,160,107,34,207,129,164,176,12,194,32,169,141,1,141,240,28,226,32,128,10,194,32,169,110,1,141,240,28,226,32,34,229,229,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]},{"1074622":[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]},{"1074667":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1074691":[226,48,160]},{"1074695":[183]},{"1074697":[201,254,208,39,200,183]},{"1074704":[201,110,208,32,200,183]},{"1074711":[208,27,200,183]},{"1074716":[201,254,208,20,200,183]},{"1074723":[201,107,208,13,200,183]},{"1074730":[201,4,208,6,156,232,28,130,19]},{"1074740":[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]},{"1074768":[122,250,107,165,17,201,3,208,5,169,6,133,20,107,34,183,147,164,34,173,144,164,107,34,149,240,160,34,239,169,164,34]},{"1074801":[128,191,92,21,253,13,72,34,171,129,160,34,113,131,160,34,123,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,1,132,160,34,113,131,160,40,104,107,34,74,129,160,169,16,133,28,107,34,157,153,7,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,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,184,217,160,107,194,16,34,61,137]},{"1074987":[169,7,141,12,33,175,240,244,126,208,10,34,140,231,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,119,129,160,34,96,130,160,34,79,130,164,169,255,143,144,80,127,169]},{"1075039":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,113,131,160,34,123,130,160,34,32,131,160,175,135,128,48,201,1,208,4,34,208,146,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]},{"1075119":[191]},{"1075121":[176,48,159,64,243,126,232,232,224,79]},{"1075132":[144,241,226,32,175,64,128,48,240,12,169,128,143,97,240,126,169,128,143,147,240,126,175,67,128,48,143,89,243,126,40,250,107,169,81,141,162,10,34,61,137]},{"1075174":[107,34,68,149,160,34,154,241,160,107,34,183,149,160,34,192,149,160,162,4,107,34,154,241,160,169,20,133,17,107,34,154,241,160,107,34,211,131,160,34,156,149,160,34,43,217,160,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]},{"1075249":[2,107,169]},{"1075253":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,206,149,160,107,169]},{"1075276":[143,145,80,127,175,160,80,127,240,16,156,240,28,156,241,28,34,223,229,160,169]},{"1075298":[143,160,80,127,156,233,2,189,94,12,107,175,105,129,48,41,255]},{"1075316":[208,4,169]},{"1075321":[107,201,1]},{"1075325":[208,16,175,197,243,126,41,15]},{"1075334":[201,2]},{"1075337":[176,82,32,225,232,107,201,2]},{"1075346":[208,51,32,225,232,240,68,175,122,243,126,41,127]},{"1075360":[201,127]},{"1075363":[240,4,169,1]},{"1075368":[107,175,74,128,48,41,255]},{"1075376":[240,43,175,195,242,126,41,32]},{"1075385":[208,34,173,8,3,41,128]},{"1075393":[240,4,169,1]},{"1075398":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1075420":[107,169]},{"1075424":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1075447":[96,169]},{"1075451":[96,175,76,128,48,41,255]},{"1075459":[240,4,92,90,189,27,224,118]},{"1075468":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1075485":[72,170,191,64,130,48,208,3,130,175]},{"1075496":[58,133]},{"1075499":[74,74,24,101]},{"1075504":[74,74,170,169,22]},{"1075510":[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]},{"1075538":[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]},{"1075581":[137,128]},{"1075584":[240,3,9]},{"1075588":[255,143,106,193,126,191,98,130,48,41,255]},{"1075600":[137,128]},{"1075603":[240,3,9]},{"1075607":[255,143,110,193,126,169]},{"1075615":[56,239,106,193,126,143,108,193,126,169]},{"1075627":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1075643":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1075661":[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]},{"1075738":[165]},{"1075740":[223]},{"1075742":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1075762":[165]},{"1075764":[223]},{"1075766":[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]},{"1075812":[175,74,128,48,41,255]},{"1075819":[240,25,175,93]},{"1075825":[41,255]},{"1075828":[201,20]},{"1075831":[208,13,165,138,41,64]},{"1075838":[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]},{"1075895":[107,104,141,228,2,141,193,15,141,16,7,107,34,204,234,160,34,57,235,160,107,169,14,143,1,40]},{"1075922":[169,4,143,1,40]},{"1075928":[169,13,143,1,40]},{"1075934":[169,14,143,1,40]},{"1075940":[169]},{"1075942":[143,1,40]},{"1075946":[169]},{"1075948":[143,1,40]},{"1075952":[169]},{"1075954":[143,1,40]},{"1075958":[169]},{"1075960":[143,1,40]},{"1075964":[169]},{"1075966":[143,1,40]},{"1075970":[169]},{"1075972":[143,1,40]},{"1075976":[169]},{"1075978":[143,1,40]},{"1075982":[169,1,143,1,40]},{"1075988":[169]},{"1075990":[143,1,40]},{"1075994":[169,1,143,1,40]},{"1076000":[169]},{"1076002":[143,1,40]},{"1076006":[169]},{"1076008":[143,1,40]},{"1076012":[169,10,143,1,40]},{"1076018":[169,13,143,1,40]},{"1076024":[107,72,218,162]},{"1076029":[175]},{"1076031":[40]},{"1076033":[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]},{"1076060":[175]},{"1076062":[40]},{"1076064":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1076078":[232,128,235,56,175]},{"1076084":[40]},{"1076086":[72,175]},{"1076089":[40]},{"1076091":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1076109":[175]},{"1076111":[40]},{"1076113":[72,175]},{"1076116":[40]},{"1076118":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1076138":[40]},{"1076140":[72,175]},{"1076143":[40]},{"1076145":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1076165":[40]},{"1076167":[72,175]},{"1076170":[40]},{"1076172":[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]},{"1076257":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1076275":[133]},{"1076277":[165,3,41,255]},{"1076282":[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,108,236,160,132,2,100,3,24,101]},{"1076324":[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]},{"1076379":[175]},{"1076381":[40]},{"1076383":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1076397":[232,128,235,56,175]},{"1076403":[40]},{"1076405":[72,175]},{"1076408":[40]},{"1076410":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1076428":[175]},{"1076430":[40]},{"1076432":[72,175]},{"1076435":[40]},{"1076437":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1076457":[40]},{"1076459":[72,175]},{"1076462":[40]},{"1076464":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1076484":[40]},{"1076486":[72,175]},{"1076489":[40]},{"1076491":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1076511":[40]},{"1076513":[133,4,175]},{"1076517":[40]},{"1076519":[72,175]},{"1076522":[40]},{"1076524":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1076544":[40]},{"1076546":[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]},{"1076615":[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,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]},{"1076705":[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]},{"1076739":[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]},{"1076838":[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]},{"1076869":[201,2]},{"1076872":[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]},{"1076904":[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,147,240,160,144,10,208,8,175,140,80,127,207,145,240,160,144,114,175,145,129,48,41,255]},{"1076960":[208,24,169,2]},{"1076965":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1076989":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1077002":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1077016":[143,142,80,127,169,1]},{"1077023":[143,126,80,127,128,54,201,2]},{"1077032":[208,24,169,2]},{"1077037":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,225,213,160,194,48,96,175,146,129,48,41,255]},{"1077074":[240,7,169]},{"1077079":[143,126,80,127,175,142,80,127,207,135,240,160,144,10,208,8,175,140,80,127,207,133,240,160,144,53,175,128,80,127,26,201,10]},{"1077113":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1077127":[143,128,80,127,175,140,80,127,56,239,133,240,160,143,140,80,127,175,142,80,127,239,135,240,160,143,142,80,127,128,181,175,142,80,127,207,139,240,160,144,10,208,8,175,140,80,127,207,137,240,160,144,53,175,132,80,127,26,201,10]},{"1077188":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1077202":[143,132,80,127,175,140,80,127,56,239,137,240,160,143,140,80,127,175,142,80,127,239,139,240,160,143,142,80,127,128,181,175,142,80,127,207,143,240,160,144,10,208,8,175,140,80,127,207,141,240,160,144,53,175,136,80,127,26,201,10]},{"1077263":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1077277":[143,136,80,127,175,140,80,127,56,239,141,240,160,143,140,80,127,175,142,80,127,239,143,240,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]},{"1077385":[16,14]},{"1077389":[60]},{"1077393":[255,255,255,127,175,204,80,127,41,255]},{"1077404":[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]},{"1077475":[240,93,175,145,129,48,41,255]},{"1077484":[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]},{"1077577":[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]},{"1077652":[208,3,32,99,238,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1077682":[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]},{"1077716":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1077800":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,188,218,160,34,58,135,1,194,16,166,160,191,74,244,160,226,16,34,156,135]},{"1077910":[162,242,160,163,242,160,48,243,160,189,243,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1077940":[32,126,232,232,159]},{"1077946":[32,126,232,232,159]},{"1077952":[32,126,232,232,159]},{"1077958":[32,126,232,232,162,220,25,159]},{"1077967":[32,126,232,232,169,202,12,159]},{"1077976":[32,126,232,232,169,203,12,159]},{"1077985":[32,126,232,232,169,208,8,159]},{"1077994":[32,126,232,232,162,92,26,159]},{"1078003":[32,126,232,232,169,218,12,159]},{"1078012":[32,126,232,232,169,219,12,159]},{"1078021":[32,126,232,232,169,208,8,159]},{"1078030":[32,126,232,232,162,220,26,159]},{"1078039":[32,126,232,232,159]},{"1078045":[32,126,232,232,159]},{"1078051":[32,126,232,232,159]},{"1078057":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1078081":[32,126,232,232,159]},{"1078087":[32,126,232,232,159]},{"1078093":[32,126,232,232,159]},{"1078099":[32,126,232,232,162,156,25,159]},{"1078108":[32,126,232,232,169,202,12,159]},{"1078117":[32,126,232,232,169,203,12,159]},{"1078126":[32,126,232,232,169,208,8,159]},{"1078135":[32,126,232,232,162,28,26,159]},{"1078144":[32,126,232,232,169,218,12,159]},{"1078153":[32,126,232,232,169,219,12,159]},{"1078162":[32,126,232,232,169,208,8,159]},{"1078171":[32,126,232,232,162,156,26,159]},{"1078180":[32,126,232,232,159]},{"1078186":[32,126,232,232,159]},{"1078192":[32,126,232,232,159]},{"1078198":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1078222":[32,126,232,232,159]},{"1078228":[32,126,232,232,159]},{"1078234":[32,126,232,232,159]},{"1078240":[32,126,232,232,162,220,9,159]},{"1078249":[32,126,232,232,169,202,12,159]},{"1078258":[32,126,232,232,169,203,12,159]},{"1078267":[32,126,232,232,169,208,8,159]},{"1078276":[32,126,232,232,162,92,10,159]},{"1078285":[32,126,232,232,169,218,12,159]},{"1078294":[32,126,232,232,169,219,12,159]},{"1078303":[32,126,232,232,169,208,8,159]},{"1078312":[32,126,232,232,162,220,10,159]},{"1078321":[32,126,232,232,159]},{"1078327":[32,126,232,232,159]},{"1078333":[32,126,232,232,159]},{"1078339":[32,126,232,232,226,48,107]},{"1078360":[1]},{"1078472":[2]},{"1078568":[3]},{"1078666":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1078683":[134,1,133,2,32,138,245,176,4,92,83,230]},{"1078696":[175,255,255,255,169,49,133,2,194,32,169]},{"1078708":[192,133]},{"1078711":[162,128,167]},{"1078715":[141,24,33,230]},{"1078720":[230]},{"1078722":[167]},{"1078724":[141,24,33,230]},{"1078729":[230]},{"1078731":[167]},{"1078733":[141,24,33,230]},{"1078738":[230]},{"1078740":[167]},{"1078742":[141,24,33,230]},{"1078747":[230]},{"1078749":[167]},{"1078751":[141,24,33,230]},{"1078756":[230]},{"1078758":[167]},{"1078760":[141,24,33,230]},{"1078765":[230]},{"1078767":[167]},{"1078769":[141,24,33,230]},{"1078774":[230]},{"1078776":[167]},{"1078778":[141,24,33,230]},{"1078783":[230]},{"1078785":[202,208,181,226,32,92,81,230]},{"1078794":[226,48,175,248,194,126,168,32,138,245,194,48,176,10,162]},{"1078811":[160,64]},{"1078814":[92,104,223]},{"1078818":[162]},{"1078820":[192,160]},{"1078824":[169]},{"1078826":[8,139,84,127,177,171,162]},{"1078834":[8,169]},{"1078837":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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,67,244,126,41,255]},{"1081421":[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,251,150,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]},{"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,178,229,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,195,229,160,169,64,157,16,15,104,73,3,56,107,189,224,13,24,107]},{"1146880":[6,37,40,43,34,32,34,39,26,37,159,32,26,38,30,159,44,45,26,31,31]},{"1146902":[1,159,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,110,103,93,112,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,114,97,97,112,107,110,108,2,55,141,131,148,141,131,150,159,159,159,159,159,159,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,139,140,139,140,21,128,24,128,139,140,139,140,44,128,62,128,139,140,139,140,139,140,80,128,139,140,139,140,90,128,108,128,139,140,139,140,139,140,126,128,139,140,139,140,136,128,152,128,139,140,139,140,139,140,168,128,139,140,139,140,183,128,199,128,139,140,139,140,139,140,215,128,139,140,139,140,236,128,255,128,139,140,18,129,33,129,139,140,139,140,139,140,48,129,139,140,139,140,21,128,75,129,139,140,139,140,93,129,110,129,139,140,127,129,143,129,139,140,139,140,139,140,159,129,139,140,139,140,182,129,199,129,139,140,216,129,235,129,139,140,139,140,139,140,254,129,139,140,139,140,16,130,34,130,139,140,139,140,139,140,52,130,139,140,139,140,69,130,87,130,139,140,139,140,139,140,105,130,139,140,139,140,124,130,140,130,139,140,139,140,139,140,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,139,140,185,131,139,140,139,140,201,131,213,131,139,140,139,140,139,140,225,131,139,140,139,140,239,131,251,131,139,140,7,132,22,132,139,140,139,140,139,140,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,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,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,184,133,139,140,139,140,21,128,209,133,139,140,139,140,226,133]},{"1150521":[134,139,140,30,134,60,134,139,140,90,134,103,134,139,140,139,140,139,140,116,134,139,140,139,140,137,134,167,134,139,140,197,134,212,134,139,140,139,140,139,140,227,134,139,140,139,140,245,134,19,135,139,140,49,135,63,135,139,140,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,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,139,140,83,137,139,140,139,140,102,137,130,137,139,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,158,137,139,140,139,140,21,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,139,140,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,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,21,128,21,128,21,128,21,128,21,128,55,140,85,140,139,140,115,140,127,140,21,128,21,128,21,128,21,128,21,128,21,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,69,145,164,194,16,34,96,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,94,145,164,34,201,143,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,63]},{"1160668":[128]},{"1160670":[88,244,126,155,66]},{"1160676":[128]},{"1160678":[92,244,126,155,69]},{"1160684":[128]},{"1160686":[96,244,126,155,72]},{"1160692":[128]},{"1160694":[100,244,126,185,80,68,64]},{"1160702":[82,244,126,185,83,68,64]},{"1160710":[37,244,126,185,86,64,64]},{"1160718":[37,244,126,185,89,68,64]},{"1160726":[38,244,126,185,92,64,64]},{"1160734":[38,244,126,185,100,80,64]},{"1160742":[42,244,126,209,103,128,96]},{"1160750":[32,244,126,209,106,128,64]},{"1160758":[45,244,126,209,109,128,64]},{"1160766":[73,244,126,209,112,128,96]},{"1160774":[83,244,126,155,115,8,128]},{"1160782":[68,244,126,155,118]},{"1160788":[128]},{"1160790":[56,80,127,177,125,128,96]},{"1160798":[35,244,126,155,128]},{"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,173,10,4,41,255]},{"1179810":[201,5]},{"1179813":[208,7,169,1,1,143,152,45,126,162,30]},{"1179825":[169,190,13,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]},{"1179866":[240,24,201,172]},{"1179871":[240,19,201,179]},{"1179876":[240,14,201,213]},{"1179881":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,107,129,48,133]},{"1179902":[250,175,110,243,126,107,165,27,240,39,194,32,165,160,201,95]},{"1179919":[240,19,201,179]},{"1179924":[240,14,201,213]},{"1179929":[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]},{"1179967":[240,19,201,179]},{"1179972":[240,14,201,213]},{"1179977":[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]},{"1180057":[107,133,5,218,162]},{"1180063":[189,74,12,232,224,10,240,8,197,5,208,244,169,1,128,2,169]},{"1180081":[250,96,189,32,14,201,214,208,16,34,207,129,164,176,10,189,128,13,201,17,144,3,169]},{"1180105":[107,165,68,201,128,107,175,62,128,48,240,106,201,1,240,100,201,2,208,40,175,116,243,126,41,7,201,7,208,86,175,122,243,126,41,127,201,127,208,76,175,197,243,126,201,3,144,68,175,219,242,126,41,32,201,32,208,58,128,58,201,4,208,12,175,122,243,126,41,127,201,127,208,42,128,42,201,3,208,22,175,122,243,126,41,127,201,127,208,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,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,249,130,165,242,137,32,208,13,128,36,32,51,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,156,179,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]},{"1180419":[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]},{"1180459":[232,34,102,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,102,132,164,240,203,96,90,218,187,191]},{"1180530":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180543":[149,48,41,255]},{"1180548":[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]},{"1180645":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180660":[13,165,233,105]},{"1180665":[153,32,13,128,34,165,15,101,232,153]},{"1180676":[13,165,233,105]},{"1180681":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180701":[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]},{"1180728":[208,30,166,162,224,239]},{"1180735":[208,23,174,24,1,224]},{"1180742":[24,240,21,224]},{"1180747":[26,240,16,224]},{"1180752":[28,240,5,224]},{"1180757":[30,240]},{"1180760":[169,1,141,11,66,107,162,192]},{"1180769":[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]},{"1180810":[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,200,80,127,208,8,175,117,129,48,208,19,128,3,169,1,107,175,119,243,126,240,69,58,143,119,243,126,26,128,61,175,64,243,126,41,1,240,11,165,153,208,7,165,154,208,3,169]},{"1180883":[107,218,194,32,175,96,243,126,240,30,72,175,64,243,126,58,41,2]},{"1180902":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1180918":[128,3,169]},{"1180923":[226,32,250,201]},{"1180928":[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]},{"1180965":[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]},{"1180992":[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]},{"1181024":[66,240,3,73]},{"1181029":[66,137]},{"1181032":[132,240,3,73]},{"1181037":[132,133]},{"1181040":[226,32,92,222,131]},{"1181046":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181069":[12,240,3,73]},{"1181074":[12,137]},{"1181077":[3,240,3,73]},{"1181082":[3,133]},{"1181085":[226,32,92,222,131]},{"1181091":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181114":[226,32,92,222,131]},{"1181120":[173,24,66,133]},{"1181125":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181146":[173,24,66,133]},{"1181151":[173,25,66,133,1,92,222,131]},{"1181160":[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,189]},{"1181198":[153]},{"1181201":[189,2]},{"1181204":[153,2]},{"1181207":[189,4]},{"1181210":[153,64]},{"1181213":[189,6]},{"1181216":[153,66]},{"1181219":[96,189]},{"1181223":[41,255,227,9]},{"1181228":[16,153]},{"1181232":[189,2]},{"1181235":[41,255,227,9]},{"1181240":[16,153,2]},{"1181244":[189,4]},{"1181247":[41,255,227,9]},{"1181252":[16,153,64]},{"1181256":[189,6]},{"1181259":[41,255,227,9]},{"1181264":[16,153,66]},{"1181268":[96,41,255]},{"1181272":[240,3,76,11,134,76,36,134,41,255]},{"1181283":[208,6,162,65,141,76,36,134,58,58,208,6,162,65,141,76,11,134,58,208,6,162,73,141,76,11,134,58,208,6,162,81,141,76,11,134,58,208,6,162,89,141,76,11,134,58,208,6,162,97,141,76,11,134,58,208,6,162,105,141,76,11,134,162,113,141,76,11,134,165,26,41,1]},{"1181357":[240,2,128,14,32,206,134,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181387":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181403":[5,112,9]},{"1181407":[28,141,142,17,24,105,16]},{"1181415":[141,206,17,175,2,5,112,9]},{"1181424":[28,141,144,17,24,105,16]},{"1181432":[141,208,17,175,4,5,112,9]},{"1181441":[28,141,146,17,24,105,16]},{"1181449":[141,210,17,175,6,5,112,9]},{"1181458":[28,141,148,17,24,105,16]},{"1181466":[141,212,17,175,8,5,112,9]},{"1181475":[28,141,78,18,24,105,16]},{"1181483":[141,142,18,175,10,5,112,9]},{"1181492":[28,141,80,18,24,105,16]},{"1181500":[141,144,18,175,12,5,112,9]},{"1181509":[28,141,82,18,24,105,16]},{"1181517":[141,146,18,175,14,5,112,9]},{"1181526":[28,141,84,18,24,105,16]},{"1181534":[141,148,18,32,121,141,175,142,3,112,41,64]},{"1181547":[240,31,175,64,3,112,41,255]},{"1181556":[240,11,162,193,139,160,220,16,32,11,134,128,40,162,209,139,160,220,16,32,11,134,128,29,175,64,3,112,41,255]},{"1181587":[240,11,162,185,139,160,220,16,32,11,134,128,9,162,185,139,160,220,16,32,36,134,175,140,3,112,41,192]},{"1181616":[201,192]},{"1181619":[208,11,162,233,139,160,224,16,32,11,134,128,49,175,140,3,112,41,64]},{"1181639":[240,11,162,225,139,160,224,16,32,11,134,128,29,175,140,3,112,41,128]},{"1181659":[240,11,162,217,139,160,224,16,32,11,134,128,9,162,217,139,160,224,16,32,36,134,162,241,139,160,228,16,175,66,3,112,32,85,134,175,140,3,112,41,16]},{"1181701":[240,11,162,201,140,160,236,16,32,11,134,128,9,162,201,140,160,236,16,32,36,134,175,140,3,112,41,32]},{"1181730":[240,11,162,193,140,160,232,16,32,11,134,128,9,162,193,140,160,232,16,32,36,134,175,140,3,112,41,3]},{"1181759":[240,11,162,73,140,160,228,17,32,11,134,128,9,162,73,140,160,228,17,32,36,134,175,140,3,112,41,4]},{"1181788":[240,11,162,65,140,160,92,18,32,11,134,128,9,162,65,140,160,92,18,32,36,134,162,1,140,160,92,17,175,69,3,112,32,85,134,162,9,140,160,96,17,175,70,3,112,32,85,134,162,17,140,160,100,17,175,71,3,112,32,85,134,162,25,140,160,104,17,175,72,3,112,32,85,134,162,33,140,160,108,17,175,73,3,112,32,85,134,162,41,140,160,220,17,175,74,3,112,32,85,134,162,49,140,160,224,17,175,75,3,112,32,85,134,162,57,140,160,232,17,175,77,3,112,32,85,134,162,81,140,160,236,17,175,78,3,112,32,85,134,162,89,140,160,96,18,175,80,3,112,32,85,134,162,97,140,160,100,18,175,81,3,112,32,85,134,162,105,140,160,104,18,175,82,3,112,32,85,134,162,113,140,160,108,18,175,83,3,112,32,85,134,160,242,16,175,92,3,112,32,96,134,160,114,17,175,93,3,112,32,96,134,160,242,17,175,94,3,112,32,96,134,160,114,18,175,95,3,112,32,96,134,175,89,3,112,41,255]},{"1182026":[208,11,162,209,140,160,248,16,32,36,134,128,65,58,208,11,162,209,140,160,248,16,32,11,134,128,51,58,208,11,162,217,140,160,248,16,32,11,134,128,37,58,208,11,162,225,140,160,248,16,32,11,134,128,23,58,208,11,162,233,140,160,248,16,32,11,134,128,9,162,209,140,160,248,16,32,36,134,175,90,3,112,41,255]},{"1182111":[208,11,162,241,140,160,120,17,32,36,134,128,37,58,208,11,162,241,140,160,120,17,32,11,134,128,23,58,208,11,162,249,140,160,120,17,32,11,134,128,9,162,1,141,160,120,17,32,11,134,175,91,3,112,41,255]},{"1182168":[208,11,162,9,141,160,248,17,32,11,134,128,23,58,208,11,162,17,141,160,248,17,32,11,134,128,9,162,25,141,160,248,17,32,11,134,175,107,3,112,41,255]},{"1182211":[208,11,162,33,141,160,120,18,32,11,134,128,37,58,208,11,162,41,141,160,120,18,32,11,134,128,23,58,208,11,162,49,141,160,120,18,32,11,134,128,9,162,57,141,160,120,18,32,11,134,175,72,4,112,41,255]},{"1182268":[34,248,148,160,175,6,80,127,41,255]},{"1182279":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182293":[24,105,16,30,141,250,18,162,129,140,160,252,16,175,85,3,112,32,85,134,175,84,3,112,41,255]},{"1182320":[208,11,162,177,140,160,124,17,32,36,134,128,23,58,208,11,162,177,140,160,124,17,32,11,134,128,9,162,185,140,160,124,17,32,11,134,162,121,140,160,252,17,175,86,3,112,32,85,134,162,137,140,160,124,18,175,87,3,112,32,85,134,175,116,3,112,41,4]},{"1182389":[240,11,162,153,140,160,28,19,32,11,134,128,9,162,145,140,160,28,19,32,11,134,175,116,3,112,41,2]},{"1182418":[240,11,162,161,140,160,32,19,32,11,134,128,9,162,145,140,160,32,19,32,11,134,175,116,3,112,41,1]},{"1182447":[240,11,162,169,140,160,36,19,32,11,134,128,9,162,145,140,160,36,19,32,11,134,175,122,3,112,41,2]},{"1182476":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182500":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182524":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182548":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182572":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182596":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182620":[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]},{"1182666":[10,186,10,185,6]},{"1182672":[10]},{"1182674":[10,20,10,19,6]},{"1182680":[10,5,14,6,14]},{"1182686":[30,22,14,5,6,6,6]},{"1182694":[30,22,6,182,14,182,6,182,142,182,134]},{"1182706":[6,21,6,48,6]},{"1182712":[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,248,148,160,175,4,80,127,41,255]},{"1183122":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183136":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183150":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183164":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183188":[34,248,148,160,175,6,80,127,41,255]},{"1183199":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183213":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183227":[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]},{"1183258":[34,248,148,160,175,6,80,127,41,255]},{"1183269":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183283":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183300":[4,169,136,1,157]},{"1183306":[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]},{"1183409":[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]},{"1183461":[141,2,20,165,16,41,255]},{"1183469":[201,1]},{"1183472":[208,107,175,135,128,48,41,255]},{"1183481":[201,2]},{"1183484":[208,95,8,226,48,218,90,34,47,176,164,122,250,40,41,255]},{"1183501":[208,78,169,110,29,141,142,19,24,105,16]},{"1183513":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183526":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183539":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183552":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183565":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183578":[141,216,19,226,32,107,34,64,142,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]},{"1183694":[189,4,16,9]},{"1183699":[32,157,4,16,202,202,208,243,162,60]},{"1183710":[189,68,16,9]},{"1183715":[32,157,68,16,202,202,208,243,162,60]},{"1183726":[189,132,16,9]},{"1183731":[32,157,132,16,202,202,208,243,162,60]},{"1183742":[189,196,16,9]},{"1183747":[32,157,196,16,202,202,208,243,162,60]},{"1183758":[189,4,17,9]},{"1183763":[32,157,4,17,202,202,208,243,162,60]},{"1183774":[189,68,17,9]},{"1183779":[32,157,68,17,202,202,208,243,162,60]},{"1183790":[189,132,17,9]},{"1183795":[32,157,132,17,202,202,208,243,162,60]},{"1183806":[189,196,17,9]},{"1183811":[32,157,196,17,202,202,208,243,162,60]},{"1183822":[189,4,18,9]},{"1183827":[32,157,4,18,202,202,208,243,162,60]},{"1183838":[189,68,18,9]},{"1183843":[32,157,68,18,202,202,208,243,162,60]},{"1183854":[189,132,18,9]},{"1183859":[32,157,132,18,202,202,208,243,162,60]},{"1183870":[189,196,18,9]},{"1183875":[32,157,196,18,202,202,208,243,162,60]},{"1183886":[189,4,19,9]},{"1183891":[32,157,4,19,202,202,208,243,162,60]},{"1183902":[189,68,19,9]},{"1183907":[32,157,68,19,202,202,208,243,107,107,72,218,173]},{"1183921":[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]},{"1183956":[67,169,24,141,1,67,169]},{"1183964":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1183979":[141,2,67,169,208,141,3,67,173]},{"1183989":[33,72,169,128,141]},{"1183995":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184012":[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]},{"1184040":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,69,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184077":[128,51,159]},{"1184081":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184102":[28,141,206,16,24,105,16]},{"1184110":[141,14,17,175,219,3,112,9]},{"1184119":[28,141,208,16,24,105,16]},{"1184127":[141,16,17,175,221,3,112,9]},{"1184136":[28,141,210,16,24,105,16]},{"1184144":[141,18,17,175,223,3,112,9]},{"1184153":[28,141,212,16,24,105,16]},{"1184161":[141,20,17,175,108,3,112,41,255]},{"1184171":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184185":[153]},{"1184188":[200,200,202,208,8,72,152,24,105,44]},{"1184199":[168,104,198,2,208,236,32,206,134,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184223":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184245":[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]},{"1184284":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,47,176,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]},{"1184339":[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]},{"1184377":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184391":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,172,146,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184424":[141,18,11,107,110]},{"1184430":[111]},{"1184432":[112]},{"1184434":[113]},{"1184436":[115]},{"1184438":[116]},{"1184440":[117]},{"1184442":[118]},{"1184444":[120]},{"1184446":[121]},{"1184448":[122]},{"1184450":[123]},{"1184452":[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]},{"1184480":[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]},{"1184516":[143]},{"1184518":[81,127,200,200,183]},{"1184524":[143,2,81,127,200,200,183]},{"1184532":[143,4,81,127,200,200,183]},{"1184540":[143,6,81,127,169,2]},{"1184547":[133,4,34,145,174,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184575":[170,191]},{"1184578":[81,127,72,169]},{"1184584":[143]},{"1184586":[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]},{"1184648":[72,165,2,72,169,188,234,133]},{"1184657":[169,1]},{"1184660":[133,2,138,74,34,233,146,164,133,12,104,133,2,104,133]},{"1184676":[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]},{"1184708":[189,156,149,159]},{"1184713":[201,126,232,232,224,128,144,243,160]},{"1184723":[162]},{"1184725":[218,187,191,21,130,48,250,41,31]},{"1184735":[10,10,10,90,168,185,156,148,159,24,201,126,185,158,148,159,26,201,126,185,160,148,159,88,201,126,185,162,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,23,148,40,122,250,104,171,107,72,218,173]},{"1184795":[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]},{"1184825":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184846":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184869":[33,72,169,128,141]},{"1184875":[33,169,1,141,11,66,104,141]},{"1184884":[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]},{"1184912":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1184937":[30,22,14]},{"1184941":[6,21,6,48,6]},{"1184947":[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]},{"1185317":[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]},{"1185393":[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]},{"1185490":[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]},{"1185547":[39,1,1,1,1,1,2,2,39,39,39]},{"1185563":[39,1,1,1,32,1,2,2,39,39,39]},{"1185579":[39,1,1,1,1,32,2,2,2,2,2]},{"1185595":[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]},{"1185639":[44]},{"1185641":[78,79,1,1,1,1,1,1,2,1,2]},{"1185653":[46]},{"1185657":[2,34,1,1,2]},{"1185665":[24,18,2,2]},{"1185670":[72]},{"1185675":[1,1,2]},{"1185679":[1,1,16,26,2]},{"1185686":[72]},{"1185691":[16,16,2]},{"1185695":[1,1,1,1]},{"1185701":[72]},{"1185704":[9]},{"1185707":[2,2,2]},{"1185711":[1,1,43]},{"1185716":[9]},{"1185723":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185739":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185755":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185771":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185787":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185803":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185820":[2,2,2]},{"1185825":[2,2,2,2]},{"1185836":[2,2,2,2,41,2,2,2,2]},{"1185851":[1,1,1,1,1,1,1,1,1,1,1]},{"1185865":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185881":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185899":[1,1,67,1,1,1,1,1,2,2,2]},{"1185915":[80,2,84,81,87,87,86,86,39,39,39]},{"1185927":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1185943":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1185959":[72,2,2]},{"1185963":[39,2,82,83,9,1,26,16,85,85]},{"1185975":[72,2,2]},{"1185979":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186001":[9,9,9,9,9,72,9,41]},{"1186010":[75,2,2,2]},{"1186015":[8,2,2]},{"1186022":[1]},{"1186025":[32]},{"1186027":[2,2,2,2,2,2,2]},{"1186036":[1,1,1,2]},{"1186041":[8]},{"1186043":[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]},{"1186143":[240,2,128,23,169,15,2,166,138,224,51]},{"1186155":[208,4,143,168,34,126,224,47]},{"1186164":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186178":[208,5,175,135,242,126,107,169,32]},{"1186188":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186211":[191,228,153,164,197,34,176,29,191,230,153,164,197,34,144,21,191,232,153,164,197,32,176,13,191,234,153,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186253":[201,184]},{"1186256":[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]},{"1186287":[10]},{"1186289":[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]},{"1186319":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186342":[143]},{"1186344":[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]},{"1186375":[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]},{"1186418":[112]},{"1186420":[240,14,48,15,32,1,96,1,208,10]},{"1186431":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186450":[64]},{"1186452":[168,2,232,2,144,12,192,12,226,48,175,74,128,48,240,20,139,169,126,72,171,194,48,165,138,201,128]},{"1186480":[176,5,10,170,252,193,154,171,194,48,162,30]},{"1186493":[169,190,13,107,193,155,193,155,193,155,194,155,193,155,237,155,193,155,231,156,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,54,157,193,155,193,155,193,155,61,157,193,155,193,155,193,155,193,155,193,155,193,155,92,157,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,232,159,193,155,193,155,193,155,193,155,193,155,193,155,4,160,193,155,198,163,73,166,193,155,80,166,193,155,193,155,193,155,193,155,135,166,193,155,92,163,193,155,193,155,193,155,193,155,193,155,193,155,253,166,193,155,116,167,193,155,82,167,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,123,167,193,155,193,155,193,155,130,167,193,155,193,155,193,155,193,155,193,155,193,155,158,167,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,112,169,126,169,193,155,193,155,119,169,193,155,133,169,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,193,155,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186769":[141,186,41,169,4,1,141,188,41,169,198]},{"1186781":[141,52,42,141,56,42,141,58,42,169,52]},{"1186793":[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]},{"1186896":[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]},{"1187043":[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]},{"1187122":[141,38,40,96,169,52]},{"1187129":[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]},{"1187242":[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]},{"1187278":[141,40,44,141,174,47,169,52]},{"1187287":[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]},{"1187326":[141,54,44,141,168,47,169,174]},{"1187335":[141,172,44,169,175]},{"1187341":[141,174,44,169,126]},{"1187347":[141,176,44,169,127]},{"1187353":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187371":[141,44,45,169,20]},{"1187377":[141,46,45,169,21]},{"1187383":[141,48,45,169,168]},{"1187389":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187407":[141,172,45,169,28]},{"1187413":[141,174,45,169,29]},{"1187419":[141,176,45,169,118]},{"1187425":[141,178,45,169,241]},{"1187431":[141,44,46,169,78]},{"1187437":[141,46,46,169,79]},{"1187443":[141,48,46,169,217]},{"1187449":[141,50,46,169,154]},{"1187455":[141,172,46,169,155]},{"1187461":[141,174,46,169,156]},{"1187467":[141,176,46,169,149]},{"1187473":[141,178,46,169,52]},{"1187479":[141,40,48,141,44,48,169,53]},{"1187488":[141,42,48,141,50,48,169,218]},{"1187497":[141,46,48,169,226]},{"1187503":[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]},{"1187584":[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]},{"1187668":[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]},{"1187725":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187741":[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,96,169,52]},{"1187819":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1187840":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1187856":[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]},{"1187898":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1187919":[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]},{"1187985":[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]},{"1188015":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188033":[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]},{"1188060":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188081":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188099":[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]},{"1188168":[141,226,34,169,2,3,141,228,34,169,204]},{"1188180":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188204":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188225":[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]},{"1188267":[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]},{"1188300":[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]},{"1188395":[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]},{"1188528":[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]},{"1188621":[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]},{"1188696":[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]},{"1188830":[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]},{"1188875":[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]},{"1189193":[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]},{"1189238":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189256":[141,134,41,169,229]},{"1189262":[141,136,41,169]},{"1189267":[1,141,162,41,169,113]},{"1189274":[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]},{"1189319":[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]},{"1189355":[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]},{"1189382":[141,26,44,169,206]},{"1189388":[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,125,3,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]},{"1189507":[141,86,47,96,169,116,7,141]},{"1189516":[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]},{"1189558":[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]},{"1189774":[141,162,36,141,164,36,169,227]},{"1189783":[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]},{"1189910":[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]},{"1189940":[141,30,50,169,218]},{"1189946":[141,32,50,141,154,50,169,225]},{"1189955":[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]},{"1190000":[141,26,50,169,242]},{"1190006":[141,184,59,169,8,1,141,56,60,169,52]},{"1190018":[141,190,59,175,197,243,126,41,255]},{"1190028":[201,3]},{"1190031":[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]},{"1190174":[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,212,172,194,32,166,6,138,9]},{"1190405":[36,143,90,199,126,166,7,138,9]},{"1190415":[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,114,172,166,4,138,9]},{"1190448":[36,143,80,199,126,166,5,138,9]},{"1190458":[36,143,82,199,126,166,6,138,9]},{"1190468":[36,143,84,199,126,166,7,138,9]},{"1190478":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,212,172,194,32,166,6,138,9]},{"1190511":[36,143,96,199,126,166,7,138,9]},{"1190521":[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]},{"1190553":[175,24,244,126,32,173,172,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190575":[36,143,44,199,126,166,6,138,9]},{"1190585":[36,143,46,199,126,166,7,138,9]},{"1190595":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,173,172,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190631":[36,143,52,199,126,166,6,138,9]},{"1190641":[36,143,54,199,126,166,7,138,9]},{"1190651":[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]},{"1190684":[240,4,34,238,172,164,226,32,175,111,243,126,201,255,240,34,32,212,172,194,32,166,6,138,224,144,208,3,169,127]},{"1190715":[9]},{"1190717":[36,143,100,199,126,166,7,138,9]},{"1190727":[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]},{"1190758":[24,105,7]},{"1190762":[41,248,255,170,175,202,80,127,41,255]},{"1190773":[208,3,130,215]},{"1190778":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190791":[165,26,41,12]},{"1190796":[74,74,240,58,201,1]},{"1190803":[240,98,201,2]},{"1190808":[208,3,130,180]},{"1190813":[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]},{"1191046":[144,6,200,233,100]},{"1191052":[128,245,132,5,160,144,201,10]},{"1191061":[144,6,200,233,10]},{"1191067":[128,245,132,6,160,144,201,1]},{"1191076":[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]},{"1191166":[240,11,175,100,243,126,63,47,173,164,208,1,107,124,75,173,32,212,172,194,32,166,6,138,9]},{"1191192":[36,143,148,199,126,166,7,138,9]},{"1191202":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191216":[128]},{"1191218":[64]},{"1191220":[32]},{"1191222":[16]},{"1191224":[8]},{"1191226":[4]},{"1191228":[2]},{"1191230":[1,128]},{"1191233":[64]},{"1191235":[32]},{"1191237":[16]},{"1191239":[8]},{"1191241":[4]},{"1191243":[103,173,103,173,130,173,155,173,183,173,208,173,233,173,2,174,27,174,54,174,81,174,108,174,133,174,160,174,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,14,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,14,173,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,14,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,14,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,14,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,14,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,14,173,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,14,173,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,14,173,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,14,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,14,173,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,14,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,14,173,165,17,34,156,135]},{"1191616":[207,174,164,231,174,164,6,175,164,7,176,164,29,176,164,169,128,141,16,7,34,61,137]},{"1191640":[34,51,131]},{"1191644":[34,69,145,164,169,7,133,20,230,17,107,32,38,177,100,200,100,201,34,47,176,164,208,11,162,15,169]},{"1191672":[159,16,5,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,150,177,165,246,41,16,240,3,32,226,178,165,246,41,32,240,3,32,239,178,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,227,175,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,239,178,128,52,201,242,208,5,32,226,178,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159,16,5,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,148,178,32,73,178,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,47,176,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,16,5,112,208,3,130,161]},{"1191996":[202,16,244,194,32,162,14,169]},{"1192006":[159,208,80,127,202,202,16,248,32,226,176,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]},{"1192047":[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]},{"1192076":[133,4,34,145,174,160,226,32,175]},{"1192086":[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]},{"1192161":[107,169]},{"1192165":[133]},{"1192167":[133,2,169,11]},{"1192172":[133,4,166]},{"1192176":[191,16,5,112,58,41,31]},{"1192184":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192209":[16,6,24,105,8]},{"1192215":[230,2,133,4,165]},{"1192221":[26,133]},{"1192224":[201,16]},{"1192227":[144,201,96,173]},{"1192232":[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]},{"1192260":[141]},{"1192262":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,190,141,2,67,169,180,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]},{"1192340":[67,96,194,32,165,200,41,255]},{"1192349":[10,170,191,225,177,164,24,105,132,96,235,143,2,17]},{"1192364":[165,201,41,255]},{"1192369":[10,170,191,1,178,164,24,105,163,97,235,143,18,17]},{"1192384":[235,24,105,32]},{"1192389":[235,143,30,17]},{"1192394":[235,24,105,3]},{"1192399":[235,143,38,17]},{"1192404":[235,24,105,61]},{"1192409":[235,143,46,17]},{"1192414":[226,32,96,64]},{"1192419":[67]},{"1192421":[70]},{"1192423":[73]},{"1192425":[76]},{"1192427":[79]},{"1192429":[82]},{"1192431":[85]},{"1192433":[160]},{"1192435":[163]},{"1192437":[166]},{"1192439":[169]},{"1192441":[172]},{"1192443":[175]},{"1192445":[178]},{"1192447":[181]},{"1192449":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192469":[66]},{"1192471":[69]},{"1192473":[72]},{"1192475":[75]},{"1192477":[78]},{"1192479":[81]},{"1192481":[84]},{"1192483":[87]},{"1192485":[159]},{"1192487":[162]},{"1192489":[165]},{"1192491":[168]},{"1192493":[171]},{"1192495":[174]},{"1192497":[177]},{"1192499":[180]},{"1192501":[183]},{"1192503":[255]},{"1192505":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1192528":[10,170,191,225,177,164,24,105,132,96,235,143,10,17]},{"1192543":[165,201,41,255]},{"1192548":[10,170,191,1,178,164,24,105,163,97,235,143,58,17]},{"1192563":[235,24,105,32]},{"1192568":[235,143,70,17]},{"1192573":[235,24,105,3]},{"1192578":[235,143,78,17]},{"1192583":[235,24,105,61]},{"1192588":[235,143,86,17]},{"1192593":[226,32,96,194,48,162,15]},{"1192601":[191,16,5,112,41,255]},{"1192608":[155,10,10,10,133]},{"1192614":[152,10,10,10,10,133,3,166]},{"1192623":[191,148,148,164,166,3,157,6,16,166]},{"1192634":[191,150,148,164,166,3,157,8,16,166]},{"1192645":[191,152,148,164,166,3,157,14,16,166]},{"1192656":[191,154,148,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]},{"1192703":[51,1,10,2,10]},{"1192709":[2,5,14,6,14]},{"1192715":[2]},{"1192717":[6,21,6]},{"1192721":[2,12,14,13,14]},{"1192727":[2,98,6,99,6]},{"1192733":[2,10,2,11,2]},{"1192739":[2,32,14,33,14]},{"1192745":[2,133,26,134,26]},{"1192751":[2,171,30,171,30,97,195]},{"1192759":[51,17,10,18,10]},{"1192765":[2]},{"1192767":[30,22,14]},{"1192771":[2,48,6]},{"1192775":[30]},{"1192777":[2,28,14,28,78]},{"1192783":[2,114,6,115,6]},{"1192789":[2,26,2,27,2]},{"1192795":[2,48,14,49,14]},{"1192801":[2,149,26,150,26]},{"1192807":[2,171,30,171,30,98,3]},{"1192815":[51,7,10,23,202]},{"1192821":[2,8,10,24,202]},{"1192827":[2,9,10,25,202]},{"1192833":[2,44,6,44,70]},{"1192839":[2,34,2,35,2]},{"1192845":[2,36,2,37,2]},{"1192851":[2,38,14,39,14]},{"1192857":[2,40,10,41,10]},{"1192863":[2,138,29]},{"1192867":[2,98,35]},{"1192871":[51,23,10,7,202]},{"1192877":[2,24,10,8,202]},{"1192883":[2,25,10,9,202]},{"1192889":[2,60,6,61,6]},{"1192895":[2,50,2,51,2]},{"1192901":[2,52,2,53,2]},{"1192907":[2,54,14,55,14]},{"1192913":[2,56,10,57,10]},{"1192919":[2,154,29]},{"1192923":[2,98,99]},{"1192927":[51,42,26,43,26]},{"1192933":[2,64,30,65,30]},{"1192939":[2,66,26,66,90]},{"1192945":[2,29,6,30,6]},{"1192951":[2,72,6,73,6]},{"1192957":[2,74,14,75,14]},{"1192963":[2,76,22,77,22]},{"1192969":[2,78,2,79,2]},{"1192975":[2]},{"1192977":[2,139,29,98,131]},{"1192983":[51,58,26,59,26]},{"1192989":[2,80,30,81,30]},{"1192995":[2,82,26,83,26]},{"1193001":[2,45,6,46,6]},{"1193007":[2,88,6,89,6]},{"1193013":[2,90,14,91,14]},{"1193019":[2,92,22,93,22]},{"1193025":[2,94,2,95,2]},{"1193031":[2]},{"1193033":[2,155,29,98,195]},{"1193039":[51,14,14,15,14]},{"1193045":[2,100,6,101,6]},{"1193051":[2,109,10,110,10]},{"1193057":[2,111,26,111,90]},{"1193063":[2,129,6,129,70]},{"1193069":[2,130,10,131,10]},{"1193075":[2,132,6,132,70]},{"1193081":[2,47,74,47,10]},{"1193087":[2,103,94,103,30,98,227]},{"1193095":[51,31,78,31,14]},{"1193101":[2,116,6,117,6]},{"1193107":[2,125,10,126,10]},{"1193113":[2,127,26,127,90]},{"1193119":[2,145,6,145,70]},{"1193125":[2,146,10,147,10]},{"1193131":[2,148,6,148,70]},{"1193137":[2,62,10,63,10]},{"1193143":[2,103,222,103,158,255,255,96,132]},{"1193153":[3,134,29,134,29,96,164]},{"1193161":[3,150,29,150,29,96,135]},{"1193169":[3,134,29,134,29,96,167]},{"1193177":[3,150,29,150,29,96,138]},{"1193185":[3,134,29,134,29,96,170]},{"1193193":[3,150,29,150,29,96,141]},{"1193201":[3,134,29,134,29,96,173]},{"1193209":[3,150,29,150,29,96,144]},{"1193217":[3,134,29,134,29,96,176]},{"1193225":[3,150,29,150,29,96,147]},{"1193233":[3,134,29,134,29,96,179]},{"1193241":[3,150,29,150,29,96,150]},{"1193249":[3,134,29,134,29,96,182]},{"1193257":[3,150,29,150,29,96,153]},{"1193265":[3,134,29,134,29,96,185]},{"1193273":[3,150,29,150,29,96,228]},{"1193281":[3,134,29,134,29,97,4]},{"1193289":[3,150,29,150,29,96,231]},{"1193297":[3,134,29,134,29,97,7]},{"1193305":[3,150,29,150,29,96,234]},{"1193313":[3,134,29,134,29,97,10]},{"1193321":[3,150,29,150,29,96,237]},{"1193329":[3,134,29,134,29,97,13]},{"1193337":[3,150,29,150,29,96,240]},{"1193345":[3,134,29,134,29,97,16]},{"1193353":[3,150,29,150,29,96,243]},{"1193361":[3,134,29,134,29,97,19]},{"1193369":[3,150,29,150,29,96,246]},{"1193377":[3,134,29,134,29,97,22]},{"1193385":[3,150,29,150,29,96,249]},{"1193393":[3,134,29,134,29,97,25]},{"1193401":[3,150,29,150,29,96,196]},{"1193409":[3]},{"1193411":[2]},{"1193413":[2,96,196]},{"1193417":[3,103,222,103,158,97,130]},{"1193425":[7]},{"1193427":[2]},{"1193429":[2]},{"1193431":[2]},{"1193433":[2,97,162,128,3]},{"1193439":[2]},{"1193441":[2,97,165,128,3]},{"1193447":[2]},{"1193449":[2,97,226]},{"1193453":[7]},{"1193455":[2]},{"1193457":[2]},{"1193459":[2]},{"1193461":[2,97,130]},{"1193465":[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]},{"1193493":[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]},{"1193532":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107]},{"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]},{"1572960":[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]},{"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":[5]},{"1573240":[10]},{"1573246":[1]},{"1573248":[3]},{"1573250":[1,44,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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"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,68,255]},{"1613852":[8,255,3]},{"1613856":[28,3,34,29,66,61,67,192,63,19,164,27,170,17,240]},{"1613872":[15,240]},{"1613875":[255,113,142,81,142,74,132,85,128,91,128,133,48]},{"1613889":[224,67,207,48,88,32,87,32,84,35,87,32,31]},{"1613903":[224,31]},{"1613906":[255,231,24,52,8,213,8,85,136,213,8,128]},{"1613919":[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,70,255,153,5,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]},{"1614007":[1,34,62,131,130]},{"1614013":[5,72,120,140,252,130,254,133,176]},{"1614023":[3,121,127,9,15,69,18,30,139,144]},{"1614034":[67,153,255,137,176]},{"1614040":[133,184]},{"1614043":[79,231,153,47,255,19,51]},{"1614051":[20,3,56,7,104,23,96,31,254,1,249]},{"1614063":[192]},{"1614065":[95,128,213,10,67,81,142,8,241,14,192,63,143,112,112]},{"1614081":[80,132,73]},{"1614085":[10,84,35,220,35]},{"1614091":[255,113,14,15]},{"1614096":[20,132,89]},{"1614100":[224,37,85,136,119,136,1,254,128,127,255]},{"1614112":[12,3,248,7]},{"1614117":[255,1,255,3,255,7,255,31,255,248,248,114,252,254,254,252,252,248,248,240,240,192,192,35]},{"1614142":[77,36,60,1,24,24,131,196]},{"1614151":[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]},{"1614177":[131,154]},{"1614180":[11,9,15,105,111,153,255,129,255,66,126,60,60,137,228]},{"1614196":[133,186,1,141,224]},{"1614202":[3,66,126,124,124,131,188]},{"1614210":[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]},{"1614289":[127,34,255,2,243,255,227,68,255,243]},{"1614300":[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,132,147,2]},{"1614334":[67,132,145,2,6,153,255,249,255,227,255,231,34,255,131,168,2,37,255]},{"1614354":[248,132,39,2,2,238,255,241,34,255,8,31,255,111,255,247,255,123,255,187,68,255,221,16,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,70,255,189]},{"1614399":[219,138,171,2,4,225,255,205,255,253,131,207,2,36,255,4,242,255,243,253,247,68,255,248,3,203,255,199,252,131,78,2,11,111,191,111,255,159,247,247,255,251,15,255,247,39]},{"1614447":[123,70,123,74,39]},{"1614454":[255,68,255,9,133,60,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]},{"1614497":[127,68,127,72]},{"1614502":[73,67,127,255,132,83,2,4,211,255,193,255,115,138,125,3]},{"1614519":[252,68,252,36,17,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,72,255,192]},{"1614553":[225,37,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,68,255,248]},{"1614584":[254,34,255,7,15,251,7,255,119,255,255,143,68,255,151,2,31,255,255,71,74,123]},{"1614607":[78,68,127,66,10,127,127,121,255,28,255,20,247,116,247,122,68,251,10,3,251,251,255,254,68,255,252]},{"1614635":[248,132,17,2,3,253,255,254,127,68,255,63,3,31,255,127,159,68,255,63,1,127,255,68,255,254]},{"1614662":[252,131,76,4,132,11,4,135,80,4]},{"1614673":[31,68,255,191]},{"1614678":[127,132,78,2,139,148,2,1,73,127,67,152,255,2,153,255,41,68,239,40,2,239,239,228,68,252,100,67,228,252,67,33,255,1,255,255,159,176,3,12,130,130,69,199,74,207,118,255,110,255,95,255,191,132,125,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,68,255,171,4,139,255,171,255,172,36,255,2,189,255,185,70,255,189]},{"1614783":[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,132,67,5]},{"1614814":[173,36,255,2,157,255,169,70,255,173]},{"1614825":[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]},{"1614859":[4,255,255,152,255,171,132,119,5]},{"1614869":[170,134,139,5,4,156,255,171,255,169,68,255,170,135,140,5,133,100,5,135,138,5]},{"1614892":[200,68,255,189,4,173,255,181,255,205,34,255,2,223,255,129,68,255,221,67,223,255,131,220,3]},{"1614918":[189,68,255,221,131,248,2,2,247,255,143,132,205,5,10,193,255,221,255,173,255,245,255,251,255,199,34,255,6,251,255,135,255,247,255,1,68,255,247]},{"1614958":[207,34,255,69,173,255,133,230,5,131,12,6]},{"1614971":[131,34,255,133,6,6]},{"1614978":[239,132,75,2,69,223,255,2,199,255,219,68,255,223]},{"1614993":[255,136,3,6,131,40,2]},{"1615001":[159,36,255,131,32,6,37,255]},{"1615010":[1,34,255,10,129,255,253,255,221,255,235,255,247,255,235,132,139,5,2,231,255,129,132,231,5,4,227,255,149,255,247,132,253,5,69,251,255,135,72,6]},{"1615051":[191,68,255,183,67,187,255,67,125,255,131,142,6]},{"1615065":[129,70,255,191,133,218,5]},{"1615073":[1,70,255,253,135,24,6,6,255,255,159,255,175,255,119,136,25,2,4,239,255,1,255,239,132,147,5,2,109,255,239,136,173,6,4,187,255,215,255,239,132,123,6,4,15,255,243,255,159,132,167,2,2,31,255,227,132,205,6,131,42,6,6,219,255,187,255,177,255,13,34,255,67,253,255]},{"1615149":[219,138,101,6]},{"1615154":[129,68,255,239,133,32,7,131,190,2,2,223,255,1,68,255,221,69,239,255,131,146,2,137,128,6]},{"1615181":[129,134,93,6]},{"1615186":[253,136,79,7,131,94,6,135,78,7,133,250,5,71,187,255,135,24,6,69,175,255,131,216,6]},{"1615212":[107,132,107,3,69,191,255,131,40,5]},{"1615223":[183,132,235,5]},{"1615228":[129,74,255,189,133,76,7,67,189,255,137,22,6,131,236,5,135,180,6,131,236,5,133,78,6]},{"1615254":[251,132,63,7,135,82,6,67,171,255,137,184,6]},{"1615268":[255,132,1,6,67,247,255,131,32,6,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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[193]},{"127":[176]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,109,223,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,194,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,69,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[3]},{"5002":[181]},{"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,118,196,160]},{"21847":[34,78,197,160,234]},{"21854":[34,219,148]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,151,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,42,253,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[14,161,160]},{"30994":[144,161,160]},{"31001":[14,161,160]},{"31011":[144,161,160]},{"31046":[227,218,160]},{"31102":[34,90,151,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[202,218,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,29,196,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,103,219,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60790":[230,219,160]},{"61077":[170,178,160]},{"61133":[34,156,193,160,234]},{"62723":[34,32,132,160]},{"65511":[34,121,237,160]},{"65607":[133,236,160]},{"65778":[34,53,141,160,234,234]},{"65879":[34,169,191,160,234]},{"65894":[34,215,191,160]},{"66284":[34,250,191,160]},{"66292":[92,137,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,111,239,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,119,220,160,234,234]},{"67934":[55,249,160]},{"68495":[34,150,152,160,208,6,234]},{"68584":[59,249,160]},{"69776":[34,150,152,160,208,4,234]},{"70410":[59,249,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,130,247,160,234]},{"72216":[156,218,160]},{"72241":[34,215,191,160]},{"72246":[117,151,160]},{"73041":[34,113,152,160]},{"73263":[124,236,160]},{"73340":[34,241,128,160,234]},{"73937":[34,231,191,160]},{"74833":[34,213,130,164]},{"76423":[34,126,237,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]},{"78138":[28,248,160]},{"78172":[34,18,220,160,34,90,151,160,234,234]},{"79603":[34,208,218,160]},{"79767":[34,134,220,160]},{"82676":[59,249,160]},{"87892":[34,95,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,172,238,160]},{"90651":[34,230,235,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166331":[34,113,152,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[229,178,160]},{"173058":[229,178,160]},{"173307":[229,178,160]},{"173320":[229,178,160]},{"183384":[34,45,249,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,113,152,160]},{"187902":[34,136,152,160]},{"188153":[0]},{"188234":[16,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,95,149,160]},{"188959":[34,17,235,160,128,13]},{"189655":[34,60,193,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191439":[34]},{"191441":[194,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,109,194,160,234,234]},{"192037":[34,136,152,160]},{"192083":[34,126,141,160,234,234]},{"192095":[34,147,192,160,234]},{"192121":[227,192,160]},{"192140":[34,43,142,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,61,133,160]},{"192350":[141,133,160]},{"192378":[235,132,160]},{"192463":[164,132,160]},{"192506":[34,80,133,160,234,234,234,234,234,234]},{"192561":[182,132,160]},{"192650":[34,106,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,112,141,160]},{"192893":[34,136,152,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,113,152,160]},{"193025":[252,141,160]},{"193033":[34,113,152,160]},{"193140":[34,156,176,160]},{"193157":[34,149,176,160]},{"193440":[34,191,216,160]},{"193472":[166,234,160]},{"193546":[34,191,216,160]},{"193578":[110,234,160]},{"193854":[34,135,141,160]},{"193859":[32]},{"193888":[35,192,160]},{"194141":[34,251,192,160,234,234,234,234,234]},{"194177":[34,113,192,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,17,235,160]},{"195327":[34,46,141,160,240,2,96,234]},{"195539":[34,45,196,160]},{"195589":[7,174,160]},{"195710":[34,29,174,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[224,173,160]},{"195909":[234,173,160]},{"196477":[34,136,152,160]},{"196497":[34,113,152,160]},{"197750":[250,189,160]},{"198721":[34,161,215,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,39,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,83,141,160]},{"199659":[34,168,163,160,96,234]},{"199950":[34,119,141,160]},{"199964":[169,173,160]},{"199993":[34,244,173,160]},{"200070":[34,69,141,160]},{"200470":[34,62,141,160]},{"200845":[34,76,141,160,201]},{"200851":[240]},{"200853":[34]},{"200855":[141,160]},{"200858":[8]},{"200893":[34,83,141,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,179,195,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[92,141,160]},{"208994":[34,83,141,160,234,234]},{"209010":[139]},{"209098":[235,141,160]},{"209199":[41,247]},{"210057":[92,243,216,160,234,234,234,234]},{"210164":[162,141,160]},{"211413":[218,141,160]},{"213139":[189,185,164]},{"213169":[103,133,160]},{"214205":[34,54,178,160]},{"214972":[200,177,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,51,219,160]},{"217579":[34,156,190,160]},{"224597":[34,191,215,160]},{"224693":[34,211,215,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,225,216,160,234]},{"226304":[34,20,216,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,92,237,160]},{"230816":[186,176,160]},{"230955":[186,176,160]},{"233256":[160,150,160]},{"233266":[34,165,128,160]},{"233297":[34,101,237,160,234]},{"233987":[57,218,160]},{"234731":[34,150,218,160]},{"234747":[34,112,237,160]},{"235953":[34,5,133,160,144,3]},{"236024":[152,201,160]},{"236047":[124,190,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[7,195,160]},{"238498":[34,178,193,160,128,3]},{"238562":[34,203,195,160,240,4,234]},{"238751":[34,77,217,160]},{"238964":[34,77,217,160]},{"239190":[34,77,217,160]},{"239964":[44,220,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,53,216,160]},{"241165":[34,53,216,160]},{"241175":[34,235,128,164]},{"241294":[34,53,216,160]},{"241304":[34,235,128,164]},{"241814":[34,53,216,160,24,125,139,176]},{"241869":[11,235,160]},{"241877":[34,53,216,160,24,125,139,176]},{"242942":[34,127,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,171,219,160,234]},{"243067":[234,234,34,141,213,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,83,216,160,234]},{"250478":[34,137,216,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,86,243,160,234]},{"273608":[34,42,180,160,76,230,172]},{"275716":[34,14,180,160,234]},{"276202":[34,75,180,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,239,224,160,234]},{"279601":[34,156,128,160,234]},{"279644":[177,133,160,34,191,237,160,234,234]},{"280037":[34,159,233,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[11,235,160]},{"280106":[92,70,225,160,234]},{"280265":[128,207,160]},{"280287":[128,206,160]},{"280314":[128,207,160]},{"280335":[34,82,177,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,150,191,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,53,216,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,197,197,160,234]},{"296466":[128,208]},{"296471":[129,208]},{"296480":[128,210]},{"296488":[128,208]},{"296493":[129,208]},{"296502":[128,210,34,0,128,160]},{"296583":[34,113,152,160]},{"296619":[128,211]},{"296810":[144,205]},{"297038":[176,203]},{"297052":[160,204]},{"297087":[34,33,133,160,234,176]},{"297144":[128,206]},{"297200":[176,203]},{"297225":[160,204]},{"297263":[129,212]},{"297292":[34,94,192,160]},{"297309":[136,212]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"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]},{"324619":[34,138,150,160]},{"324675":[34,149,219,160]},{"324780":[8,8,16]},{"324896":[34,215,235,160,34,125,219,160,234,234,234,234,234,234]},{"324996":[34,231,191,160]},{"325098":[169,2,0,234]},{"325131":[34,7,236,160]},{"325203":[34,156,175,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":[149,237,160]},{"342245":[34,39,132,160,34,254,218,160,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,196,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,136,152,160]},{"344119":[34,136,152,160]},{"344185":[34,136,152,160]},{"344248":[34,136,152,160]},{"344312":[34,136,152,160]},{"344375":[34,136,152,160]},{"344441":[34,136,152,160]},{"344499":[34,136,152,160]},{"344565":[34,136,152,160]},{"344623":[34,136,152,160]},{"344689":[34,136,152,160]},{"344747":[34,136,152,160]},{"344813":[34,136,152,160]},{"344871":[34,136,152,160]},{"344937":[34,136,152,160]},{"345406":[34,166,151,160]},{"345531":[34,185,151,160,96]},{"345560":[34,185,151,160,96]},{"393133":[202,218,160]},{"410028":[94,255,161]},{"410347":[34,156,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[82,237,160]},{"412876":[92,106,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,179,235,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,205,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,107,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,107,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[138,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,136,152,160]},{"449502":[34,77,220,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,175]},{"449578":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,205]},{"449612":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,154,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,183,152,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,10,153,160]},{"450360":[34,102,180,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,210,181,160,234]},{"450492":[34]},{"450494":[152,160,234,234,234]},{"450861":[34,232,181,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,125,153,160,234]},{"452559":[34,107,153,160,234]},{"452581":[34,143,153,160,234]},{"452634":[96]},{"453064":[34,170,157,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,180,190,160,234,234,76,230,236]},{"453867":[34,161,153,160,234]},{"453892":[34,179,153,160]},{"454092":[34,28,153,160,234,234,234,234,234]},{"454233":[34,28,153,160,234,234,234,234,234]},{"454256":[34,28,192,160,234]},{"454282":[34,28,153,160,234,234,234,234,234]},{"454459":[34,28,153,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,223,131,160]},{"457344":[34,140,151,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,160,213,160]},{"457513":[34,198,213,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,88,193,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,199,235,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,157,225,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[151,233,160]},{"487403":[169,2,0,234]},{"487935":[34,197,225,160]},{"488156":[34,197,225,160]},{"488213":[34,197,225,160]},{"488242":[34,197,225,160]},{"488309":[34,197,225,160]},{"488340":[34,197,225,160]},{"488721":[34,197,225,160]},{"489560":[34,197,225,160]},{"490022":[34,197,225,160]},{"490060":[34,197,225,160]},{"490164":[34,197,225,160]},{"490184":[34,197,225,160]},{"490209":[34,197,225,160]},{"490257":[34,197,225,160]},{"490438":[34,213,225,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,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,16,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,173,239,160]},{"900244":[34,1,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,248,239,160,234]},{"900437":[92,146,238,160,234]},{"900447":[34,81,247,160,234,234,234]},{"900458":[34,208,218,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,58,240,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,253,233,160,96]},{"954852":[65,179,160]},{"955117":[220,233,160]},{"955529":[61,179,160]},{"962925":[26,179,160]},{"962951":[26,179,160]},{"963167":[26,179,160]},{"963214":[26,179,160]},{"965041":[26,179,160]},{"965069":[26,179,160]},{"965214":[26,179,160]},{"965298":[26,179,160]},{"965316":[26,179,160]},{"967797":[34,138,177,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,164,177,160]},{"972824":[233,178,160]},{"972834":[233,178,160]},{"972851":[233,178,160]},{"974665":[92,189,194,160,234]},{"974706":[242,194,160]},{"974722":[215,194,160]},{"975106":[34,142,141,160]},{"975132":[34,142,141,160]},{"975265":[34,206,194,160,234,234]},{"975332":[34,180,194,160,234,234]},{"975401":[255]},{"976357":[22,179,160]},{"976423":[22,179,160]},{"978658":[6,179,160]},{"979078":[34,211,216,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":[146,178,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,144,193,160]},{"983466":[6,179,160]},{"983651":[6,179,160]},{"988539":[18,179,160]},{"988657":[18,179,160]},{"988668":[18,179,160]},{"988874":[18,179,160]},{"988902":[18,179,160]},{"989142":[18,179,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[10,179,160]},{"999246":[14,179,160]},{"999265":[14,179,160]},{"999359":[14,179,160]},{"999574":[14,179,160]},{"1002731":[92,57,205,30]},{"1003079":[92,138,194,160]},{"1003229":[34,113,152,160]},{"1003277":[34,113,152,160]},{"1004410":[200,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[237,178,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[237,178,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,235]},{"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,53,141,160,234,234]},{"1010175":[188,141,160]},{"1011427":[34,48,167,160,96,234]},{"1011808":[34,125,142]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,19,182,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[232,232,136,16,241,107,169,112,72,171,34,184,130,160,34,104,218,160,107,175,74,128,48,240,3,76,66,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049072":[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,115,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,207,129,175,162,128,48,208,23,76,228,129,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,175,83,243,126,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]},{"1049198":[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,207,129,175,162,128,48,208,23,76,78,130,169]},{"1049238":[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]},{"1049283":[143,204,243,126,107,169]},{"1049290":[143,204,243,126,34,69,249]},{"1049298":[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]},{"1049512":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049526":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049540":[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,223,131,160,133,29,107,34,184,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,161,133,160,168,34,190,133,160,156,233,2,192,38,208,15,175,107,243,126,26,41,3,143,107,243,126,208,14,128]},{"1049744":[34,179,145,7,34,157,153,7,24,130,1]},{"1049756":[56,34,254,176,160,122,250,107,218,90,34,250,189,160,188,128,14,208,5,34,139,138,160,168,128,196,8,34,247,148,160,144,44,72,90,175]},{"1049793":[80,127,240,7,34,103,133,160,130,27]},{"1049804":[189,128,14,72,34,238,146,160,144,8,189,96,14,9,32,157,96,14,104,34,58,148,160,34,92,220,6,122,104,40,107,8,34,247,148,160,144,247,72,90,175]},{"1049846":[80,127,240,6,34,141,133,160,128,231,189,128,14,128,202,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,190,140,160,144,4,169,46,56,107,24,107,189,94,12,192,32,240,19,192,55,240,15,192,56,240,11,192,57,240,7,72,34,190,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049930":[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]},{"1049966":[169,1,143]},{"1049970":[80,127,165,93,201,20,240,17,169]},{"1049980":[143]},{"1049982":[80,127,34,161,133,160,157,128,14,34,212,147,160,104,107,72,169]},{"1050000":[143]},{"1050002":[80,127,34,139,138,160,157,128,14,34,212,147,160,104,107,165,27,240,7,34,219,133,160,130,4]},{"1050028":[34,120,135,160,107,34,88,173,9,72,169,1,143]},{"1050042":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050059":[208,11,175,22,244,126,9,1]},{"1050068":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050083":[208,50,175,135,128,48,208,6,175]},{"1050093":[128,48,128,35,218,8,194,48,165]},{"1050103":[72,165,2,72,169]},{"1050109":[128,133]},{"1050112":[169,48]},{"1050115":[133,2,169]},{"1050120":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050138":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050158":[72,165,2,72,169]},{"1050164":[128,133]},{"1050167":[169,48]},{"1050170":[133,2,169,1]},{"1050175":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050193":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050213":[72,165,2,72,169]},{"1050219":[128,133]},{"1050222":[169,48]},{"1050225":[133,2,169,2]},{"1050230":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050245":[201,27,1,208,108,165,34,235,41,1]},{"1050256":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,3]},{"1050293":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050308":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050326":[72,165,2,72,169]},{"1050332":[128,133]},{"1050335":[169,48]},{"1050338":[133,2,169,4]},{"1050343":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050358":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050381":[72,165,2,72,169]},{"1050387":[128,133]},{"1050390":[169,48]},{"1050393":[133,2,169,5]},{"1050398":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050413":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050436":[72,165,2,72,169]},{"1050442":[128,133]},{"1050445":[169,48]},{"1050448":[133,2,169,6]},{"1050453":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050468":[201,135]},{"1050471":[208,7,175,98,129,48,130,3]},{"1050480":[169,23]},{"1050483":[41,255]},{"1050486":[40,107,8,194,32,165,138,201,3]},{"1050496":[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]},{"1050523":[72,165,2,72,169,64,129,133]},{"1050532":[169,48]},{"1050535":[133,2,169]},{"1050540":[34,67,147,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]},{"1050573":[72,165,2,72,169,16,128,133]},{"1050582":[169,48]},{"1050585":[133,2,169,6]},{"1050590":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050608":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050628":[72,165,2,72,169,64,129,133]},{"1050637":[169,48]},{"1050640":[133,2,169,1]},{"1050645":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050663":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050683":[72,165,2,72,169,64,129,133]},{"1050692":[169,48]},{"1050695":[133,2,169,2]},{"1050700":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050718":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050738":[72,165,2,72,169,64,129,133]},{"1050747":[169,48]},{"1050750":[133,2,169,10]},{"1050755":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050773":[208,107,165,34,201]},{"1050779":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050800":[72,165,2,72,169,64,129,133]},{"1050809":[169,48]},{"1050812":[133,2,169,3]},{"1050817":[34,67,147,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]},{"1050850":[72,165,2,72,169,16,128,133]},{"1050859":[169,48]},{"1050862":[133,2,169,7]},{"1050867":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050885":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050905":[72,165,2,72,169,64,129,133]},{"1050914":[169,48]},{"1050917":[133,2,169,4]},{"1050922":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050940":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1050960":[72,165,2,72,169,64,129,133]},{"1050969":[169,48]},{"1050972":[133,2,169,5]},{"1050977":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1050995":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051015":[72,165,2,72,169,64,129,133]},{"1051024":[169,48]},{"1051027":[133,2,169,6]},{"1051032":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051047":[201,74]},{"1051050":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051070":[72,165,2,72,169,64,129,133]},{"1051079":[169,48]},{"1051082":[133,2,169,6]},{"1051087":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051102":[201,91]},{"1051105":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051125":[72,165,2,72,169,64,129,133]},{"1051134":[169,48]},{"1051137":[133,2,169,7]},{"1051142":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051157":[201,104]},{"1051160":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051180":[72,165,2,72,169,64,129,133]},{"1051189":[169,48]},{"1051192":[133,2,169,8]},{"1051197":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051212":[201,129]},{"1051215":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051235":[72,165,2,72,169,64,129,133]},{"1051244":[169,48]},{"1051247":[133,2,169,9]},{"1051252":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051267":[169,23]},{"1051270":[41,255]},{"1051273":[40,107,8,194,32,165,160,201,200]},{"1051283":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051303":[72,165,2,72,169,80,129,133]},{"1051312":[169,48]},{"1051315":[133,2,169]},{"1051320":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051338":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051358":[72,165,2,72,169,80,129,133]},{"1051367":[169,48]},{"1051370":[133,2,169,1]},{"1051375":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051393":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051413":[72,165,2,72,169,80,129,133]},{"1051422":[169,48]},{"1051425":[133,2,169,2]},{"1051430":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051448":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051468":[72,165,2,72,169,80,129,133]},{"1051477":[169,48]},{"1051480":[133,2,169,3]},{"1051485":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051503":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051523":[72,165,2,72,169,80,129,133]},{"1051532":[169,48]},{"1051535":[133,2,169,4]},{"1051540":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051558":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051578":[72,165,2,72,169,80,129,133]},{"1051587":[169,48]},{"1051590":[133,2,169,5]},{"1051595":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051610":[201,172]},{"1051613":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051633":[72,165,2,72,169,80,129,133]},{"1051642":[169,48]},{"1051645":[133,2,169,6]},{"1051650":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051665":[201,222]},{"1051668":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051688":[72,165,2,72,169,80,129,133]},{"1051697":[169,48]},{"1051700":[133,2,169,7]},{"1051705":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051720":[201,144]},{"1051723":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051743":[72,165,2,72,169,80,129,133]},{"1051752":[169,48]},{"1051755":[133,2,169,8]},{"1051760":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051775":[201,164]},{"1051778":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051798":[72,165,2,72,169,80,129,133]},{"1051807":[169,48]},{"1051810":[133,2,169,9]},{"1051815":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051830":[169,62]},{"1051833":[41,255]},{"1051836":[40,107,194,32,165,160,201,200]},{"1051845":[208,4,56,130,82]},{"1051851":[201,51]},{"1051854":[208,4,56,130,73]},{"1051860":[201,7]},{"1051863":[208,4,56,130,64]},{"1051869":[201,90]},{"1051872":[208,4,56,130,55]},{"1051878":[201,6]},{"1051881":[208,4,56,130,46]},{"1051887":[201,41]},{"1051890":[208,4,56,130,37]},{"1051896":[201,172]},{"1051899":[208,4,56,130,28]},{"1051905":[201,222]},{"1051908":[208,4,56,130,19]},{"1051914":[201,144]},{"1051917":[208,4,56,130,10]},{"1051923":[201,164]},{"1051926":[208,4,56,130,1]},{"1051932":[24,226,32,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,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,34,157,153,7,72,175,16,244,126,9,4,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,8,143,16,244,126,104,107,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,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]},{"1052237":[72,165,2,72,169,16,128,133]},{"1052246":[169,48]},{"1052249":[133,2,169,3]},{"1052254":[34,67,147,164,250,134,2,250,134,1,40,250,168,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,50,175,135,128,48,208,6,175,16,128,48,128,35,218,8,194,48,165]},{"1052317":[72,165,2,72,169,16,128,133]},{"1052326":[169,48]},{"1052329":[133,2,169]},{"1052334":[34,67,147,164,250,134,2,250,134,1,40,250,168,128,57,201,30,1,208,50,175,135,128,48,208,6,175,17,128,48,128,35,218,8,194,48,165]},{"1052372":[72,165,2,72,169,16,128,133]},{"1052381":[169,48]},{"1052384":[133,2,169,1]},{"1052389":[34,67,147,164,250,134,2,250,134,1,40,250,168,128,2,160,70,40,104,107,32,72,215,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,121,215,207,150,128,48,144,10,104,175,151,128,48,34,249,142,160,107,104,218,139,75,171,170,191,241,143,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,49,214,160,76,249,142,201,251,208,7,34,237,214,160,76,249,142,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,249,142,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,249,142,160,107,201]},{"1052568":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,249,142,160,107,201]},{"1052623":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,14,175,64,243,126,201]},{"1052648":[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]},{"1052706":[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]},{"1052745":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,73,32,72,215,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,121,215,207,150,128,48,144,10,104,175,151,128,48,34,241,144,160,107,104,218,139,75,171,170,191,238,145,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,241,144,160,107,201]},{"1053008":[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,241,144,160,107,201]},{"1053063":[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,241,144,160,107,201]},{"1053103":[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,49,214,160,76,241,144,201,251,208,7,34,237,214,160,76,241,144,107]},{"1053167":[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]},{"1053205":[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]},{"1053254":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053272":[8,8,8]},{"1053278":[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,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,8,72,218,139,75,171,32,72,215,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,121,215,207,150,128,48,144,11,175,151,128,48,34,238,146,160,130,128]},{"1053480":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,238,146,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,238,146,160,128,63,128,60,201,96,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,34,238,146,160,128,37,201,98,208,6,34,49,214,160,128,8,201,99,208,4,34,237,214,160,162]},{"1053591":[224,36,176,12,223,172,147,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,32,230,147,34,249,142,160,34,45,213]},{"1053666":[122,250,104,107,72,8,72,194,32,169]},{"1053678":[143,37,192,126,143,39,192,126,169]},{"1053688":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,241,144,160,143,42,192,126,143,50,192,126,104,34,238,146,160,176,2,128,27,194,32,169]},{"1053729":[143,44,192,126,143,51,192,126,169]},{"1053739":[8,143,46,192,126,169]},{"1053746":[52,143,48,192,126,40,104,96,34,238,146,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]},{"1053815":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,238,146,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]},{"1053896":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1053926":[169]},{"1053929":[143,66,80,127,128,6,162,64,45,160,2]},{"1053941":[104,107,32,32,149,176,35,194,32,165,226,72,56,233,15]},{"1053957":[133,226,165,232,72,56,233,15]},{"1053966":[133,232,226,32,32,32,149,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1053998":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054018":[13,133]},{"1054021":[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]},{"1054056":[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]},{"1054098":[144,8,230,5,56,233,100]},{"1054106":[128,243,201,10]},{"1054111":[144,8,230,6,56,233,10]},{"1054119":[128,243,201,1]},{"1054124":[144,8,230,7,56,233,1]},{"1054132":[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,218,149,127,218,149,160,171,107]},{"1054171":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054189":[16,41,127]},{"1054193":[157,2,16,232,232,104,10,41,255,127,9]},{"1054205":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054226":[16,169,1,133,20,194,32,107,218,174]},{"1054237":[16,41,127]},{"1054241":[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]},{"1054283":[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]},{"1054330":[143,109,243,126,169]},{"1054336":[143,1,80,127,40,175,109,243,126,107,162]},{"1054348":[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]},{"1054374":[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]},{"1054401":[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,236,150,160,107,72,173]},{"1054447":[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]},{"1054477":[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]},{"1054551":[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]},{"1054612":[143,23,192,126,175,139,243,126,107,169]},{"1054623":[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,92,152,160,170,191,104,243,126,31,20,244,126,250,63,102,152,160,208,3,130,98]},{"1054700":[191,81,152,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,95,152,160,170,191,104,243,126,31,20,244,126,250,63,106,152,160,208,3,130,44]},{"1054754":[191,85,152,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]},{"1054814":[1,1]},{"1054819":[1]},{"1054821":[1,32,32,16]},{"1054826":[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,175,90,128,48,41,255]},{"1054877":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1054890":[107,175,122,243,126,47,165,160,2,41,255]},{"1054902":[107,194,32,175,19,130,48,41,255]},{"1054912":[240,5,169,8]},{"1054917":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1054930":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1054952":[2,107,175,19,130,48,41,255]},{"1054961":[240,5,169,8]},{"1054966":[128,7,175,72,128,48,41,255]},{"1054975":[24,101,234,48,3,169]},{"1054983":[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]},{"1055010":[201,255]},{"1055013":[208,1,107,175,22,244,126,41,32]},{"1055023":[240,4,169]},{"1055028":[107,173,12,4,41,255]},{"1055035":[201,255]},{"1055038":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055062":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,186,237,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055094":[107,169,136,21,133]},{"1055100":[107,175,69,128,48,208,6,169,16,22,133]},{"1055112":[107,169,144,21,133]},{"1055118":[107,175,69,128,48,208,6,169,24,22,133]},{"1055130":[107,169,152,21,133]},{"1055136":[107,175,69,128,48,208,6,169,32,22,133]},{"1055148":[107,169,160,21,133]},{"1055154":[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]},{"1055246":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055260":[144,240,175,22,244,126,41,32]},{"1055269":[240,3,130,200,1,175,69,128,48,41,1]},{"1055281":[208,3,130,231]},{"1055286":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055308":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055325":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055342":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055359":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055376":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055393":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055410":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055427":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055444":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1055461":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1055478":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1055495":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1055512":[141,165,22,194,32,175,69,128,48,41,2]},{"1055524":[208,3,130,201]},{"1055529":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1055542":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1055557":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1055572":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1055587":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1055602":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1055617":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1055632":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1055647":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1055662":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1055677":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1055692":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1055707":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1055722":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1055737":[208,3,130,170,1,175,69,128,48,41,4]},{"1055749":[208,3,130,201]},{"1055754":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1055767":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1055782":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1055797":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1055812":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1055827":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1055842":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1055857":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1055872":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1055887":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1055902":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1055917":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1055932":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1055947":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1055962":[208,3,130,201]},{"1055967":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1055980":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1055995":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056010":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056025":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056040":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056055":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056070":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056085":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056100":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056115":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056130":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056145":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056160":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056179":[191,242,158,160,157,234,18,191,6,159,160,157,42,19,191,26,159,160,157,106,19,191,46,159,160,157,170,19,191,66,159,160,157,234,19,191,86,159,160,157,42,20,191,106,159,160,157,106,20,191,126,159,160,157,170,20,191,146,159,160,157,234,20,232,232,224,20]},{"1056247":[144,186,175,116,243,126,41,4]},{"1056256":[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]},{"1056289":[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]},{"1056322":[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]},{"1056355":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056376":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056397":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056418":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056439":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1056460":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1056481":[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]},{"1057104":[143,114,243,126,173,10,2,208,14,169]},{"1057115":[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]},{"1057149":[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]},{"1057230":[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]},{"1057273":[165,12,201,232,3,144,3,130,24]},{"1057283":[201,100]},{"1057286":[144,3,130,97]},{"1057291":[201,10]},{"1057294":[144,3,130,170]},{"1057299":[201,1]},{"1057302":[144,3,130,243]},{"1057307":[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,160,163,133,14,165,14,159]},{"1057344":[201,126,232,232,169,56]},{"1057351":[159]},{"1057353":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057367":[201,126,232,232,169]},{"1057374":[159]},{"1057376":[201,126,232,232,165,14,24,105,8]},{"1057386":[133,14,100,10,165,12,201,100]},{"1057395":[144,8,56,233,100]},{"1057401":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,160,163,133,14,165,14,159]},{"1057425":[201,126,232,232,169,56]},{"1057432":[159]},{"1057434":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057448":[201,126,232,232,169]},{"1057455":[159]},{"1057457":[201,126,232,232,165,14,24,105,8]},{"1057467":[133,14,100,10,165,12,201,10]},{"1057476":[144,8,56,233,10]},{"1057482":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,160,163,133,14,165,14,159]},{"1057506":[201,126,232,232,169,56]},{"1057513":[159]},{"1057515":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057529":[201,126,232,232,169]},{"1057536":[159]},{"1057538":[201,126,232,232,165,14,24,105,8]},{"1057548":[133,14,100,10,165,12,201,1]},{"1057557":[144,8,56,233,1]},{"1057563":[230,10,128,243,133,12,192,255,208,10,160]},{"1057575":[165,14,24,121,160,163,133,14,165,14,159]},{"1057587":[201,126,232,232,169,56]},{"1057594":[159]},{"1057596":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057610":[201,126,232,232,169]},{"1057617":[159]},{"1057619":[201,126,232,232,165,14,24,105,8]},{"1057629":[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]},{"1057700":[252,255,248,255,218,90,8,194,48,162]},{"1057712":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1057727":[208,13,175,153,80,127,41,255]},{"1057736":[223,3,200,48,208,44,226,32,191]},{"1057746":[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]},{"1057788":[200,48,41,255]},{"1057793":[201,255]},{"1057796":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,222]},{"1057819":[226,32,162]},{"1057824":[160]},{"1057827":[152,207,96,80,127,144,3,130,172]},{"1057837":[191,1,201,48,201,255,208,3,130,161]},{"1057848":[191]},{"1057850":[201,48,207,80,80,127,240,3,130,137]},{"1057861":[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]},{"1057898":[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,106,165,160,170,32,137,165,122,250,200,200,200,200,232,232,232,232,232,232,232,232,130,74,255,165,160,201,255,208,13,173,55,33,173,63,33,173,61,33,201,60,144,243,169,128,141]},{"1058032":[33,32,164,165,169,15,141]},{"1058040":[33,175,81,80,127,137,32,240,14,169]},{"1058051":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058065":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,196,170,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,197,170,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,198,170,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]},{"1058158":[128]},{"1058163":[1]},{"1058166":[169,160,143,68,80,127,169,165,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,249,142,160,34,45,213]},{"1058205":[194,16,96,32,164,165,107,173]},{"1058214":[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]},{"1058244":[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]},{"1058281":[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]},{"1058422":[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]},{"1058587":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1058608":[175,81,80,127,201,255,208,3,76,29,167,139,75,171,34,231,244,30,32,107,167,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]},{"1058659":[32,136,171,32,136,169,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1058682":[201,2,208,3,130,227]},{"1058689":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1058704":[165,26,41,16,240,12,189,255,167,159]},{"1058715":[201,126,232,224,16,144,244,189,15,168,159]},{"1058727":[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]},{"1058786":[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]},{"1058817":[248,255]},{"1058822":[2]},{"1058827":[16]},{"1058830":[2]},{"1058833":[248,255]},{"1058838":[2]},{"1058843":[16,64]},{"1058846":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,84,133,8,169,168,133,9,128,8,169,92,133,8,169,168,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1058904":[70,10]},{"1058907":[2]},{"1058912":[70,74]},{"1058915":[2,218,162]},{"1058919":[165,26,41,64,240,12,189,214,168,159]},{"1058930":[201,126,232,224,16,144,244,189,230,168,159]},{"1058942":[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]},{"1059001":[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]},{"1059032":[248,255,132]},{"1059037":[2]},{"1059042":[16]},{"1059045":[2]},{"1059048":[248,255,132]},{"1059053":[2]},{"1059058":[16,64]},{"1059061":[2,218,162]},{"1059065":[165,26,41,64,240,12,189,104,169,159]},{"1059076":[201,126,232,224,16,144,244,189,120,169,159]},{"1059088":[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]},{"1059147":[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]},{"1059178":[248,255,142]},{"1059183":[2]},{"1059188":[16]},{"1059191":[2]},{"1059194":[248,255,142]},{"1059199":[2]},{"1059204":[16,64]},{"1059207":[2,218,90,8,160]},{"1059213":[90,152,74,74,168,175,95,80,127,57,196,170,240,3,122,128,48,122,173,238]},{"1059234":[221,32,15,208,39,32,91,171,32,199,170,34,230,131,6,144,3,32,123,171,32,49,171,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,221,169,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]},{"1059362":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059378":[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,196,170,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,196,170,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]},{"1059531":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1059552":[58,10,168,185,125,172,133]},{"1059560":[122,104,24,113]},{"1059565":[24,105,2]},{"1059569":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1059582":[13,194,32,90,200,200,24,113]},{"1059591":[122,72,175,81,80,127,41,128]},{"1059600":[240,7,104,24,105,4]},{"1059607":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1059630":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1059647":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1059660":[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]},{"1059688":[165,35,105]},{"1059692":[133,8,165,32,105,8,133,1,165,33,105]},{"1059704":[133,9,96,218,34]},{"1059710":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1059732":[160]},{"1059734":[175,81,80,127,41,3,201,3,208,5,32,185,171,128,4,201,2,208,5,32,185,171,128,4,201,1,208,3,32,185,171,122,250,171,96,175,95,80,127,57,196,170,240,3,130,178]},{"1059781":[90,175,81,80,127,41,3,58,10,168,194,32,185,125,172,133]},{"1059798":[163,1,10,10,168,177]},{"1059805":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1059818":[208,8,177]},{"1059822":[143,39,192,126,128,10,177]},{"1059830":[24,105,4]},{"1059834":[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,155,172,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,241,144,160,143,42,192,126,169]},{"1059901":[143,43,192,126,191,82,80,127,34,238,146,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1059927":[143,44,192,126,32,112,173,169,2,218,72,175,97,80,127,170,104,32,39,173,250,175,81,80,127,41,128,208,3,32,158,172,200,232,232,232,232,96,131,172,135,172,143,172,8]},{"1059973":[40]},{"1059975":[240,255,40]},{"1059979":[32]},{"1059981":[40]},{"1059983":[216,255,40]},{"1059987":[8]},{"1059989":[40]},{"1059991":[56]},{"1059993":[40]},{"1059995":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060014":[58,10,168,185,125,172,133]},{"1060022":[185,21,173,133,2,122,90,152,10,10,168,177]},{"1060035":[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,242,161,226,32,133,6,100,7,72,169]},{"1060074":[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,27,173,29,173,33,173]},{"1060124":[255]},{"1060126":[128,128,255]},{"1060130":[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]},{"1060211":[194,32,191,37,192,126,24,105,4]},{"1060221":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060237":[159,47,192,126,191,41,192,126,24,105,16]},{"1060249":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060283":[72,165,2,72,169,16,128,133]},{"1060292":[169,48]},{"1060295":[133,2,169,2]},{"1060300":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,212,147,160,107,72,189,128,14,34,58,148,160,104,107,72,188,128,14,104,34,26,142,160,107,169,8,157,80,15,169]},{"1060347":[143]},{"1060349":[80,127,32,68,174,34,212,147,160,107,72,175]},{"1060362":[80,127,240,6,34,249,173,160,128,7,32,68,174,34,139,148,160,104,107,32,68,174,201,36,208,24,90,160,36,34,19,182,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,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]},{"1060713":[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]},{"1060780":[191,117,176,160,197,4,144,3,232,128,245,191,118,176,160,133,6,100,7,194,32,138,10,10,170,191,119,176,160,141,232,80,191,121,176,160,141,234,80,173]},{"1060821":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1060839":[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,97,174,173,236,80,10,10,170,189]},{"1060876":[81,56,229,8,157]},{"1060882":[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]},{"1060914":[81,141,228,80,189,2,81,141,230,80,32,97,174,173]},{"1060929":[81,56,229,8,141]},{"1060935":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,93,174,160,141,232,80,173,234,80,239,95,174,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,34,249,142,160,72,165,138,201,3,240,6,34,136,176,160,128,4,34,123,176,160,104,107,34,120,135,160,72,34,212,147,160,169,1,143,51,80,127,143,52,80,127,34,163,176,160,169,235,143]},{"1061077":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061101":[13,165,33,153,32,13,169]},{"1061109":[153,32,15,169,127,153,112,15,107,72,8,34,40,177,160,144,31,156,18,1,156,239,3,169]},{"1061134":[133,93,194,32,165,138,201,48]},{"1061143":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061167":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061180":[128,16,201,48]},{"1061185":[208,11,165,34,201]},{"1061191":[2,144,4,56,130,1]},{"1061198":[24,226,32,107,191,128,206,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061219":[226,32,34,16,247,8,169,52,145,144,200,191,128,207,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061254":[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]},{"1061316":[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,48,178,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]},{"1061463":[13,173,219,15,233]},{"1061469":[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]},{"1061508":[13,173,219,15,233]},{"1061514":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1061539":[254,127,208,245,169,4,107,34,194,219,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,19,34,212,219,160,107,169,51,133,200,173,3,4,41,64,208,3,169,7,107,34,212,219,160,34,113,186,13,41,7,201,7,208,2,169]},{"1061604":[107,169]},{"1061607":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,89,179,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,89,179,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,89,179,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,89,179,160,107,218,8,194,32,41,127]},{"1061728":[10,170,191]},{"1061732":[82,127,26,41,255,3,159]},{"1061740":[82,127,170,10,191]},{"1061746":[128,175,40,250,107,218,8,194,48,162]},{"1061758":[191,174,179,160,159]},{"1061764":[82,127,232,232,191,174,179,160,159]},{"1061774":[82,127,232,232,191,174,179,160,159]},{"1061784":[82,127,232,232,191,174,179,160,159]},{"1061794":[82,127,232,232,224,127]},{"1061801":[144,211,40,250,107]},{"1061808":[64]},{"1061810":[128]},{"1061812":[192]},{"1061815":[1,64,1,128,1,192,1]},{"1061823":[2,64,2,128,2,192,2]},{"1061831":[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,206,179,160,175,35,128,48,208,4,34,238,179,160,104,107,72,169]},{"1061933":[143,65,80,127,175,34,128,48,201,1,208,4,34,206,179,160,175,35,128,48,201,1,208,4,34,238,179,160,104,107,72,175,34,128,48,201,2,208,4,34,206,179,160,175,35,128,48,201,2,208,4,34,238,179,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]},{"1062099":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062116":[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]},{"1062187":[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]},{"1062223":[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,162,181,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]},{"1062348":[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]},{"1062374":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062394":[2,156,5,2,169]},{"1062400":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,251,182,72,218,8,192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1062439":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1062456":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1062473":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1062490":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1062507":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1062524":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1062541":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1062564":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1062581":[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]},{"1062614":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1062637":[192,88,208,10,175,142,243,126,9,64,143,142,243,126,175,67,244,126,240,3,130,202,4,192,32,208,3,130,118,2,192,38,208,3,130,111,2,192,46,208,3,130,104,2,192,47,208,3,130,97,2,192,48,208,3,130,90,2,192,55,208,3,130,83,2,192,56,208,3,130,76,2,192,57,208,3,130,69,2,192]},{"1062718":[208,3,130,62,2,192,4,144,14,192,73,240,10,192,80,240,6,192,94,240,2,128,3,130,103]},{"1062744":[192,59,208,3,130,96]},{"1062751":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1062776":[201,15,1,208,3,130,59]},{"1062784":[201,16,1,208,3,130,51]},{"1062792":[201,28,1,208,3,130,43]},{"1062800":[201,31,1,208,3,130,35]},{"1062808":[201,255]},{"1062811":[208,3,130,27]},{"1062816":[201,20,1,208,3,130,19]},{"1062824":[201,21,1,208,3,130,11]},{"1062832":[201,22,1,208,3,130,3]},{"1062840":[40,128,4,40,130,15,4,165,27,208,3,130,134,1,226,32,173,12,4,201]},{"1062861":[208,2,128,4,201,2,208,21,192,50,208,3,130,165,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]},{"1063014":[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]},{"1063052":[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]},{"1063090":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063108":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063126":[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]},{"1063162":[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]},{"1063200":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063218":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,188,189,192,59,208,10,175,42,244,126,137,32,240,2,128,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,192]},{"1063299":[208,9,32,86,188,32,135,188,130,64,2,192,1,208,6,32,86,188,130,54,2,192,2,208,6,32,86,188,130,44,2,192,3,208,6,32,86,188,130,34,2,192,4,208,6,32,135,188,130,24,2,192,5,208,6,32,135,188,130,14,2,192,6,208,6,32,135,188,130,4,2,192,7,144,10,192,14,176,6,32,184,188,130,246,1,192,20,208,9,32,20,188,32,184,188,130,233,1,192,15,144,10,192,23,176,6,32,184,188,130,219,1,192,23,208,6,32,28,189,130,209,1,192,24,144,10,192,26,176,6,32,184,188,130,195,1,192,26,208,9,32,53,188,32,184,188,130,182,1,192,29,208,6,32,184,188,130,172,1,192,27,144,10,192,32,176,6,32,196,188,130,158,1,192,32,208,6,32,68,189,130,148,1,192,33,208,6,32,184,188,130,138,1,192,34,144,10,192,36,176,6,32,96,189,130,124,1,192,36,208,6,32,112,189,130,114,1,192,37,208,6,32,144,189,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,216,189,130,87,1,192,40,208,6,32,216,189,130,77,1,192,41,208,6,32,184,188,130,67,1,192,42,144,10,192,46,176,6,32,184,188,130,53,1,192,49,208,6,32,216,189,130,43,1,192,50,208,6,32,176,189,130,33,1,192,51,208,6,32,238,189,130,23,1,192,55,144,10,192,58,176,6,32,224,188,130,9,1,192,58,144,10,192,60,176,6,32,165,188,130,251]},{"1063635":[192,60,208,6,32,184,188,130,241]},{"1063645":[192,61,208,6,32,184,188,130,231]},{"1063655":[192,62,144,10,192,64,176,6,32,56,189,130,217]},{"1063669":[192,72,208,6,32,184,188,130,207]},{"1063679":[192,73,208,6,32,86,188,130,197]},{"1063689":[192,74,208,9,32,20,188,32,184,188,130,184]},{"1063702":[192,75,208,9,32,243,187,32,196,188,130,171]},{"1063715":[192,76,208,9,32,252,188,32,216,189,130,158]},{"1063728":[192,77,144,10,192,80,176,6,32,252,188,130,144]},{"1063742":[192,80,208,6,32,86,188,130,134]},{"1063752":[192,81,144,10,192,85,176,6,32,252,188,130,120]},{"1063766":[192,88,208,6,32,165,188,130,110]},{"1063776":[192,94,208,6,32,86,188,130,100]},{"1063786":[192,95,208,6,32,135,188,130,90]},{"1063796":[192,96,208,6,32,96,189,130,80]},{"1063806":[192,97,208,6,32,196,188,130,70]},{"1063816":[192,100,144,10,192,102,176,6,32,165,188,130,56]},{"1063830":[192,112,144,10,192,128,176,6,32,238,189,130,42]},{"1063844":[192,128,144,10,192,144,176,6,32,144,189,130,28]},{"1063858":[192,144,144,10,192,160,176,6,32,176,189,130,14]},{"1063872":[192,160,144,10,192,176,176,6,32,112,189,130]},{"1063886":[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,210,187,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064038":[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,112,189,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,184,188,96,175,40,244,126,24,105,16,143,40,244,126,96,32,254,189,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,186,237,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]},{"1064634":[201,2]},{"1064637":[208,14,175,140,243,126,41,192]},{"1064646":[201,192]},{"1064649":[240,79,128,64,201,1]},{"1064656":[208,14,175,142,243,126,41,192]},{"1064665":[201,192]},{"1064668":[240,60,128,45,201,5]},{"1064675":[208,14,175,140,243,126,41,48]},{"1064684":[201,48]},{"1064687":[240,41,128,26,201,13]},{"1064694":[208,16,175,140,243,126,137,4]},{"1064703":[240,12,41,3]},{"1064708":[208,20,128,5,201,16]},{"1064715":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1064728":[208,5,169,79,61,128,6,32,41,191,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]},{"1064775":[41,255,239,153,4]},{"1064781":[185,62]},{"1064784":[41,255,239,153,62]},{"1064790":[185,68]},{"1064793":[41,255,239,153,68]},{"1064799":[185,128]},{"1064802":[41,255,239,153,128]},{"1064808":[185,130]},{"1064811":[41,255,239,153,130]},{"1064817":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1064838":[41,255,239,153,132]},{"1064844":[185,126]},{"1064847":[41,255,239,153,126]},{"1064853":[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]},{"1064891":[201,144]},{"1064894":[208,3,169,127]},{"1064899":[9]},{"1064901":[36,143,100,199,126,165,5,41,255]},{"1064911":[9]},{"1064913":[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,35,240,160,34,169,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065017":[72,165,2,72,169,16,128,133]},{"1065026":[169,48]},{"1065029":[133,2,169,4]},{"1065034":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,212,147,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,28,175]},{"1065080":[80,127,240,15,189,160,13,34,212,147,160,169]},{"1065093":[143]},{"1065095":[80,127,128,7,189,160,13,34,58,148,160,107,169]},{"1065109":[157,192,13,72,169,1,143]},{"1065117":[80,127,165,93,201,20,240,60,169]},{"1065127":[143]},{"1065129":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065149":[72,165,2,72,169,16,128,133]},{"1065158":[169,48]},{"1065161":[133,2,169,3]},{"1065166":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,212,147,160,104,107,72,90,175]},{"1065191":[80,127,240,6,34,152,192,160,128,7,189,128,14,34,58,148,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]},{"1065234":[72,165,2,72,169,16,128,133]},{"1065243":[169,48]},{"1065246":[133,2,169,4]},{"1065251":[34,67,147,164,250,134,2,250,134,1,40,250,168,156,233,2,34,157,153,7,34,112,142,160,107,175,140,243,126,41,223,143,140,243,126,41,16,240,7,169,2,143,68,243,126,107,169]},{"1065299":[143,68,243,126,107,175,123,243,126,41,255]},{"1065311":[201,2]},{"1065314":[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]},{"1065347":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065362":[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]},{"1065398":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1065412":[173,91,3,41,1,208,3,130,134]},{"1065422":[90,8,139,75,171,226,48,165,27,240,3,76,81,194,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1065459":[129,48,143]},{"1065463":[254,127,34,93,246,29,162]},{"1065471":[165,47,201,4,240,1,232,191,85,194,160,153,80,13,169]},{"1065487":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,87,194,160,41,240,153,16,13,165,35,105]},{"1065521":[153,48,13,165,32,24,105,22,41,240,153]},{"1065533":[13,165,33,105]},{"1065538":[153,32,13,169]},{"1065543":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1065560":[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]},{"1065591":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1065612":[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,221,150,160,92,53,207,30,175,195,225,29,34,212,147,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1065674":[92,82,223,29,175,133,225,29,34,212,147,160,107,165,138,201,129,208,12,169,1,143]},{"1065697":[80,127,175,195,225,29,128,4,175,133,225,29,34,58,148,160,107,34,157,153,7,165,138,201,129,208,6,34,205,141,160,128,4,34,13,142,160,107,165,138,201,42,240,1,107,165,27,240,1,107,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1065765":[72,165,2,72,169,64,129,133]},{"1065774":[169,48]},{"1065777":[133,2,169,10]},{"1065782":[34,67,147,164,250,134,2,250,134,1,40,250,34,212,147,160,169,235,143]},{"1065802":[254,127,34,93,246,29,162]},{"1065810":[165,47,201,4,240,1,232,191,175,195,160,153,80,13,169]},{"1065826":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,177,195,160,41,240,153,16,13,165,35,105]},{"1065860":[153,48,13,165,32,24,105,22,41,240,153]},{"1065872":[13,165,33,105]},{"1065877":[153,32,13,169]},{"1065882":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1065906":[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]},{"1065985":[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]},{"1066012":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,175,141,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066051":[72,165,2,72,169,16,128,133]},{"1066060":[169,48]},{"1066063":[133,2,169,5]},{"1066068":[34,67,147,164,250,134,2,250,134,1,40,250,201,255,240,9,168,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]},{"1066112":[201,35,208,6,160,93,92,71,213]},{"1066122":[201,72,208,6,160,96,92,71,213]},{"1066132":[201,36,176,6,160,91,92,71,213]},{"1066142":[201,55,176,6,160,92,92,71,213]},{"1066152":[201,57,176,6,160,93,92,71,213]},{"1066162":[160,50,92,71,213]},{"1066168":[192,9,48]},{"1066172":[96]},{"1066174":[144]},{"1066176":[192]},{"1066179":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066203":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066221":[9,48,9,96,9,144,9,240,9]},{"1066232":[240]},{"1066234":[32,10,80,10,96,6]},{"1066241":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1066263":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1066279":[6,48,6]},{"1066283":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1066299":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066320":[127,184,196,160,107,165]},{"1066327":[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]},{"1066358":[132,175,24,105]},{"1066363":[136,133]},{"1066366":[226,32,169,175,133,2,34,231,225,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,153,215,160,162,1,128,2,162]},{"1066424":[171,40,122,104,133,2,104,133,1,104,133]},{"1066436":[96,218,173,216,2,34,29,226,160,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1066907":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,153,215,160,130,84,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,153,215,160,130,40,1,201,109,208,7,34,131,185,164,130,29,1,201,110,208,7,34,131,185,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067154":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067171":[56,233,8,170,169,1,224]},{"1067179":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067202":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067221":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1067238":[56,233,8,170,169,1,224]},{"1067246":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1067269":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067288":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1067305":[56,233,8,170,169,1,224]},{"1067313":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1067336":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1067358":[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,19]},{"1067390":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1067409":[250,173,233,2,201,1,107,72,218,34,179,237,160,173,216,2,32,72,215,141,216,2,32,30,215,201,22,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,231,1,201,43,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,208,1,201,44,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,185,1,201,45,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,162,1,201,60,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,139,1,201,61,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,116,1,201,72,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,93,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,75,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,51,1,201]},{"1067639":[208,8,169,73,141,216,2,130,39,1,201,1,208,8,169,80,141,216,2,130,27,1,201,2,208,8,169,2,141,216,2,130,15,1,169,3,141,216,2,130,7,1,201,95,208,95,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,233]},{"1067711":[175,22,244,126,41,192,208,19,169,4,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,206]},{"1067738":[201,64,208,19,169,5,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,183]},{"1067761":[169,6,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,164]},{"1067780":[201,96,208,39,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,140]},{"1067804":[201]},{"1067806":[208,8,169,34,141,216,2,130,128]},{"1067816":[169,35,141,216,2,128,121,201,97,208,20,175,84,243,126,208,7,169,27,141,216,2,128,104,169,28,141,216,2,128,97,201,100,208,40,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,71]},{"1067873":[201]},{"1067875":[208,7,169,58,141,216,2,128,60,169,59,141,216,2,128,53,201,101,208,7,169,32,12,142,243,128,205,201,98,208,19,34,49,214,160,141,216,2,235,32,188,214,169,255,143,144,80,127,128,19,201,99,208,15,34,237,214,160,141,216,2,169,255,143,144,80,127,128]},{"1067944":[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]},{"1068199":[4,4,4,4,4,5]},{"1068211":[4]},{"1068213":[4]},{"1068216":[4]},{"1068228":[4]},{"1068234":[5]},{"1068244":[4,4,4]},{"1068258":[4,4]},{"1068261":[4]},{"1068265":[4]},{"1068272":[4]},{"1068281":[4]},{"1068352":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1068432":[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]},{"1068481":[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]},{"1068520":[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,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]},{"1068677":[2,2]},{"1068685":[2,2,2,2,2,2]},{"1068692":[2]},{"1068694":[2,2]},{"1068697":[2,2,2,2,2,2,2,2,2,2,2]},{"1068709":[2,2,2,2,2]},{"1068715":[2,2,2,2,2,2,2,2,2]},{"1068727":[2,2,2,2,2,2,2,2,2,2,2]},{"1068740":[2]},{"1068742":[2,2,2]},{"1068746":[2,2,2,2,2,2]},{"1068753":[2,2,2,2,2,2,2,2]},{"1068762":[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]},{"1068848":[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]},{"1069034":[4,4,4]},{"1069040":[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,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,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]},{"1069953":[128]},{"1069955":[64]},{"1069957":[32]},{"1069959":[16]},{"1069961":[8]},{"1069963":[4]},{"1069965":[2]},{"1069967":[1,128]},{"1069970":[64]},{"1069972":[32]},{"1069974":[16]},{"1069976":[8]},{"1069978":[4]},{"1070209":[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,152,32,72,215,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,198,213,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,198,213,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]},{"1070654":[160,48,107,162]},{"1070659":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1070672":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1070686":[168,152,32,152,214,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1070706":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1070730":[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]},{"1070770":[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]},{"1070807":[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]},{"1070846":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1070859":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1070882":[191]},{"1070884":[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]},{"1070924":[191]},{"1070926":[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,162]},{"1070971":[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,96,100,17,100,176,92,134,220,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071034":[13,24,105,3,107,189,32,14,201,136,208,9,32,247,215,201,4,144,1,58,107,32,247,215,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071080":[200,49,74,74,74,74,107,40,191]},{"1071090":[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]},{"1071140":[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]},{"1071174":[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,39,141,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]},{"1071376":[226,32,176,19,194,16,169,122,160,1,34,25,226,5,169,60,141,46,1,226,16,128,34,175,42,128,48,168,156,233,2,218,34,157,153,7,250,194,32,175,96,243,126,56,233,10]},{"1071423":[143,96,243,126,226,32,34,162,141,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1071449":[165,27,240,121,194,32,165,160,201,14]},{"1071460":[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]},{"1071495":[201,126]},{"1071498":[208,33,165,34,41,255,1,201,104]},{"1071508":[144,60,201,136]},{"1071513":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1071533":[201,222]},{"1071536":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1071561":[144,7,201,154]},{"1071566":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,54,218,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,54,218,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,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]},{"1071776":[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]},{"1071836":[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,227,218,160,107,143,111,243,126,218,175,67,244,126,208,4,34,108,189,160,34,63,153,160,90,160,24,34,6,182,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,108,189,160,34,63,153,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1071955":[208,11,40,90,160,24,34,6,182,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,63,153,160,107,72,175,67,244,126,208,4,34,250,189,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,227,218,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,227,218,160,104,34,168,160,2,107,58,16,8,169]},{"1072211":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1072225":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,227,218,169,1,143]},{"1072251":[80,127,156,70,6,156,66,6,76,227,218,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,250,189,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,194,16,72,218,90,173,44,1,240,7,48,5,205,51,1,208,11,141,43,1,156,44,1,122,250,104,40,107,156]},{"1072473":[66,175,26,130,48,240,3,130,195]},{"1072483":[174,2,32,224,83,45,240,3,130,6,1,174,4,32,224,77,83,208,245,174,6,32,224,85,49,208,237,226,16,173,44,1,201,2,240,33,201,9,240,46,201,13,240,56,201,16,240,70,201,17,240,73,201,22,240,69,201,21,208,100,173,12,4,74,24,105,45,128,88,72,175]},{"1072555":[243,126,41,64,240,5,104,169,60,128,74,104,128,71,72,175,113,243,126,201,127,208,244,104,169,61,128,57,72,175,202,243,126,240,232,165,138,201,64,208,226,104,169,15,128,39,173,12,4,201,8,208,35,173,12,4,74,24,105,33,141,44,1,201,46,208,21,175,102,243,126,41,4,240,13,175,167,80,127,41,4,240,5,169,59,141,44,1,173,44,1,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,33,201,255,240,12,192]},{"1072668":[240,4,74,136,128,248,41,1,240,17,169,255,141,64,33,169,160,133]},{"1072687":[169,208,133,1,169,48,128,76,174,44,1,191,63,208,48,205,44,1,240,49,224,35,144,4,224,47,144,5,141,44,1,128,179,139,194,16,174,12,4,169,2,72,171,164]},{"1072732":[90,194,32,191,128,208,48,133]},{"1072741":[226,32,178]},{"1072745":[122,132]},{"1072748":[226,16,171,141,44,1,128,143,169,255,141,64,33,169,192,133]},{"1072765":[169,208,133,1,169,48,194,16,34,29,137]},{"1072777":[169,1,143,173,80,127,169,129,141]},{"1072787":[66,173,44,1,201,8,240,50,165,16,201,7,240,55,201,14,240,51,201,9,208,33,226,16,162,5,165,138,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,92,150,130,2,8,194,32,169]},{"1072879":[141,6,32,143,170,80,127,173,2,32,201,83,45,208,103,173,4,32,201,77,83,208,95,173,6,32,201,85,49,208,87,169]},{"1072913":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1072929":[232,226,32,168,173]},{"1072935":[32,137,64,208,249,173]},{"1072942":[32,137,8,240,228,138,143,170,80,127,169,64,162,7,160,7,141,4,32,156,5,32,72,24,173]},{"1072968":[32,137,64,208,249,173]},{"1072975":[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]},{"1073026":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,208,98,175,169,80,127,240,50,173]},{"1073057":[32,137,64,240,4,92,220,128]},{"1073066":[173]},{"1073068":[32,137,8,240,4,92,220,128]},{"1073077":[169,255,141,41,1,141,39,1,141,6,32,175,169,80,127,141,7,32,169]},{"1073097":[143,169,80,127,92,220,128]},{"1073105":[173,39,1,205,41,1,208,4,92,220,128]},{"1073117":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073147":[224,255,208,4,92,220,128]},{"1073155":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073171":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073187":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073204":[236,11,1,208,8,224,27,240,4,92,220,128]},{"1073217":[236,51,1,240,243,169]},{"1073224":[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]},{"1073256":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,191]},{"1073273":[208,48,143,169,80,127,191,63,208,48,201,35,144,35,201,47,176,31,139,194,16,174,12,4,169,2,72,171,164]},{"1073303":[90,194,32,191,128,208,48,133]},{"1073312":[226,32,178]},{"1073316":[122,132]},{"1073319":[226,16,171,170,223,63,208,48,240,6,191,63,208,48,128,243,141,43,1,92,220,128]},{"1073342":[141,11,1,170,169]},{"1073348":[235,175,171,80,127,240,13,207,170,80,127,144,7,56,239,170,80,127,128,243,72,138,250,194,32,240,7,24,105,100]},{"1073379":[202,208,249,141,4,32,226,32,92,220,128]},{"1073391":[175,19,130,48,208,64,175,27,130,48,208,71,194,32,173,2,32,201,83,45,208,48,173,4,32,201,77,83,208,40,173,6,32,201,85,49,208,32,226,32,173]},{"1073433":[32,137,8,208,23,175,169,80,127,208,13,173]},{"1073446":[32,137,16,240,23,169]},{"1073453":[143,173,80,127,92,38,196,8,226,32,173,64,33,208,239,175,173,80,127,208,239,92,43,196,8,175,19,130,48,208,64,175,27,130,48,208,71,194,32,173,2,32,201,83,45,208,48,173,4,32,201,77,83,208,40,173,6,32,201,85,49,208,32,226,32,173]},{"1073520":[32,137,8,208,23,175,169,80,127,208,13,173]},{"1073533":[32,137,16,240,23,169]},{"1073540":[143,173,80,127,92,55,198,8,226,32,173,64,33,208,239,175,173,80,127,208,239,92,47,198,8,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]},{"1073595":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073613":[87,127,107,191]},{"1073618":[18,127,107,156,240,28,156,241,28,169]},{"1073629":[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]},{"1073661":[226,32,183]},{"1073665":[159]},{"1073667":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073686":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073710":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073728":[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]},{"1073754":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073772":[226,32,183]},{"1073776":[159]},{"1073778":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073797":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073817":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073835":[226,32,183]},{"1073839":[159]},{"1073841":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073860":[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]},{"1073891":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073909":[226,32,183]},{"1073913":[159]},{"1073915":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073934":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073954":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073972":[226,32,183]},{"1073976":[159]},{"1073978":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073997":[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]},{"1074026":[133]},{"1074028":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074046":[226,32,183]},{"1074050":[159]},{"1074052":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074071":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074091":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074109":[226,32,183]},{"1074113":[159]},{"1074115":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074134":[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]},{"1074165":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074183":[226,32,183]},{"1074187":[159]},{"1074189":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074208":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074228":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074246":[226,32,183]},{"1074250":[159]},{"1074252":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074271":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074292":[133]},{"1074294":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074312":[226,32,183]},{"1074316":[159]},{"1074318":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074337":[143,148,80,127,226,32,130,213]},{"1074346":[201,128,208,56,169,52,133]},{"1074354":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074372":[226,32,183]},{"1074376":[159]},{"1074378":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074397":[143,148,80,127,226,32,130,153]},{"1074406":[201,144,208,55,169,112,133]},{"1074414":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074432":[226,32,183]},{"1074436":[159]},{"1074438":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074457":[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]},{"1074484":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074502":[226,32,183]},{"1074506":[159]},{"1074508":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074527":[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]},{"1074606":[208,56,169,216,133]},{"1074612":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074630":[226,32,183]},{"1074634":[159]},{"1074636":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074655":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074672":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074690":[226,32,183]},{"1074694":[159]},{"1074696":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074715":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074732":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074750":[226,32,183]},{"1074754":[159]},{"1074756":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074775":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074792":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074810":[226,32,183]},{"1074814":[159]},{"1074816":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074835":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074852":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074870":[226,32,183]},{"1074874":[159]},{"1074876":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074895":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074912":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074930":[226,32,183]},{"1074934":[159]},{"1074936":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074955":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1074972":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074990":[226,32,183]},{"1074994":[159]},{"1074996":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075015":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075032":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075050":[226,32,183]},{"1075054":[159]},{"1075056":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075075":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075092":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075110":[226,32,183]},{"1075114":[159]},{"1075116":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075135":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075152":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075170":[226,32,183]},{"1075174":[159]},{"1075176":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075195":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075212":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075230":[226,32,183]},{"1075234":[159]},{"1075236":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075255":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075272":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075290":[226,32,183]},{"1075294":[159]},{"1075296":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075315":[143,148,80,127,226,32,130,235]},{"1075324":[201,12,208,56,169,12,133]},{"1075332":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075350":[226,32,183]},{"1075354":[159]},{"1075356":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075375":[143,148,80,127,226,32,130,175]},{"1075384":[201,13,208,55,169,41,133]},{"1075392":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075410":[226,32,183]},{"1075414":[159]},{"1075416":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075435":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075451":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075469":[226,32,183]},{"1075473":[159]},{"1075475":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075494":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075510":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075528":[226,32,183]},{"1075532":[159]},{"1075534":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075553":[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]},{"1075586":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075601":[171,40,122,250,104,107,34,78,216]},{"1075611":[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]},{"1075675":[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,17,235,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,17,235,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]},{"1075946":[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]},{"1075991":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076015":[226,48,160]},{"1076019":[183]},{"1076021":[201,254,208,39,200,183]},{"1076028":[201,110,208,32,200,183]},{"1076035":[208,27,200,183]},{"1076040":[201,254,208,20,200,183]},{"1076047":[201,107,208,13,200,183]},{"1076054":[201,4,208,6,156,232,28,130,19]},{"1076064":[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]},{"1076092":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076109":[10,10,69,138,41,8]},{"1076116":[240,6,152,24,105,16]},{"1076123":[168,165,35,41,2]},{"1076129":[74,69,138,41,1]},{"1076135":[240,4,152,26,26,168,152,41,255]},{"1076145":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,43,246,160,34,159,170,164,34]},{"1076177":[128,191,92,21,253,13,72,34,3,130,160,34,201,131,160,34,211,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,89,132,160,34,201,131,160,40,104,107,34,74,129,160,169,16,133,28,107,34,157,153,7,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,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,112,219,160,107,194,16,34,61,137]},{"1076363":[169,7,141,12,33,175,240,244,126,208,10,34,236,236,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,207,129,160,34,184,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076415":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,201,131,160,34,211,130,160,34,120,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076495":[191]},{"1076497":[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]},{"1076571":[107,34,83,150,160,34,48,247,160,107,34,198,150,160,34,207,150,160,162,4,107,34,48,247,160,169,20,133,17,107,34,48,247,160,107,34,43,132,160,34,171,150,160,34,227,218,160,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]},{"1076646":[2,107,169]},{"1076650":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,221,150,160,107,169]},{"1076673":[143,145,80,127,173,216,2,201,50,208,24,165,27,240,20,173,12,4,201,26,208,13,175,167,80,127,41,4,240,5,169,59,141,44,1,175,159,80,127,240,16,156,240,28,156,241,28,34,11,235,160,169]},{"1076726":[143,159,80,127,156,233,2,189,94,12,107,175,105,129,48,41,255]},{"1076744":[208,4,169]},{"1076749":[107,201,1]},{"1076753":[208,16,175,197,243,126,41,15]},{"1076762":[201,2]},{"1076765":[176,84,32,119,238,107,201,2]},{"1076774":[208,75,32,119,238,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076798":[107,175,74,128,48,41,255]},{"1076806":[240,43,175,195,242,126,41,32]},{"1076815":[208,34,173,8,3,41,128]},{"1076823":[240,4,169,1]},{"1076828":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076850":[107,169]},{"1076854":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076877":[96,169]},{"1076881":[96,175,76,128,48,41,255]},{"1076889":[240,4,92,90,189,27,224,118]},{"1076898":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1076915":[72,170,191,64,130,48,208,3,130,175]},{"1076926":[58,133]},{"1076929":[10,10,24,101]},{"1076934":[10,10,170,169,22]},{"1076940":[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]},{"1076968":[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]},{"1077011":[137,128]},{"1077014":[240,3,9]},{"1077018":[255,143,106,193,126,191,98,130,48,41,255]},{"1077030":[137,128]},{"1077033":[240,3,9]},{"1077037":[255,143,110,193,126,169]},{"1077045":[56,239,106,193,126,143,108,193,126,169]},{"1077057":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077073":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077091":[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]},{"1077168":[165]},{"1077170":[223]},{"1077172":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077192":[165]},{"1077194":[223]},{"1077196":[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]},{"1077242":[175,74,128,48,41,255]},{"1077249":[240,25,175,93]},{"1077255":[41,255]},{"1077258":[201,20]},{"1077261":[208,13,165,138,41,64]},{"1077268":[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]},{"1077325":[107,104,141,228,2,141,193,15,141,16,7,107,34,98,240,160,34,207,240,160,107,169,14,143,1,40]},{"1077352":[169,4,143,1,40]},{"1077358":[169,13,143,1,40]},{"1077364":[169,14,143,1,40]},{"1077370":[169]},{"1077372":[143,1,40]},{"1077376":[169]},{"1077378":[143,1,40]},{"1077382":[169]},{"1077384":[143,1,40]},{"1077388":[169]},{"1077390":[143,1,40]},{"1077394":[169]},{"1077396":[143,1,40]},{"1077400":[169]},{"1077402":[143,1,40]},{"1077406":[169]},{"1077408":[143,1,40]},{"1077412":[169,1,143,1,40]},{"1077418":[169]},{"1077420":[143,1,40]},{"1077424":[169,1,143,1,40]},{"1077430":[169]},{"1077432":[143,1,40]},{"1077436":[169]},{"1077438":[143,1,40]},{"1077442":[169,10,143,1,40]},{"1077448":[169,13,143,1,40]},{"1077454":[107,72,218,162]},{"1077459":[175]},{"1077461":[40]},{"1077463":[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]},{"1077490":[175]},{"1077492":[40]},{"1077494":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077508":[232,128,235,56,175]},{"1077514":[40]},{"1077516":[72,175]},{"1077519":[40]},{"1077521":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077539":[175]},{"1077541":[40]},{"1077543":[72,175]},{"1077546":[40]},{"1077548":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077568":[40]},{"1077570":[72,175]},{"1077573":[40]},{"1077575":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077595":[40]},{"1077597":[72,175]},{"1077600":[40]},{"1077602":[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]},{"1077687":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077705":[133]},{"1077707":[165,3,41,255]},{"1077712":[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,2,242,160,132,2,100,3,24,101]},{"1077754":[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]},{"1077809":[175]},{"1077811":[40]},{"1077813":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077827":[232,128,235,56,175]},{"1077833":[40]},{"1077835":[72,175]},{"1077838":[40]},{"1077840":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077858":[175]},{"1077860":[40]},{"1077862":[72,175]},{"1077865":[40]},{"1077867":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077887":[40]},{"1077889":[72,175]},{"1077892":[40]},{"1077894":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077914":[40]},{"1077916":[72,175]},{"1077919":[40]},{"1077921":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1077941":[40]},{"1077943":[133,4,175]},{"1077947":[40]},{"1077949":[72,175]},{"1077952":[40]},{"1077954":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1077974":[40]},{"1077976":[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]},{"1078045":[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,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]},{"1078135":[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]},{"1078169":[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]},{"1078268":[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]},{"1078299":[201,2]},{"1078302":[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]},{"1078334":[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,41,246,160,144,10,208,8,175,140,80,127,207,39,246,160,144,114,175,145,129,48,41,255]},{"1078390":[208,24,169,2]},{"1078395":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078419":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078432":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078446":[143,142,80,127,169,1]},{"1078453":[143,126,80,127,128,54,201,2]},{"1078462":[208,24,169,2]},{"1078467":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,153,215,160,194,48,96,175,146,129,48,41,255]},{"1078504":[240,7,169]},{"1078509":[143,126,80,127,175,142,80,127,207,29,246,160,144,10,208,8,175,140,80,127,207,27,246,160,144,53,175,128,80,127,26,201,10]},{"1078543":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078557":[143,128,80,127,175,140,80,127,56,239,27,246,160,143,140,80,127,175,142,80,127,239,29,246,160,143,142,80,127,128,181,175,142,80,127,207,33,246,160,144,10,208,8,175,140,80,127,207,31,246,160,144,53,175,132,80,127,26,201,10]},{"1078618":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078632":[143,132,80,127,175,140,80,127,56,239,31,246,160,143,140,80,127,175,142,80,127,239,33,246,160,143,142,80,127,128,181,175,142,80,127,207,37,246,160,144,10,208,8,175,140,80,127,207,35,246,160,144,53,175,136,80,127,26,201,10]},{"1078693":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078707":[143,136,80,127,175,140,80,127,56,239,35,246,160,143,140,80,127,175,142,80,127,239,37,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]},{"1078815":[16,14]},{"1078819":[60]},{"1078823":[255,255,255,127,175,204,80,127,41,255]},{"1078834":[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]},{"1078905":[240,93,175,145,129,48,41,255]},{"1078914":[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]},{"1079007":[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]},{"1079082":[208,3,32,249,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]},{"1079112":[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]},{"1079146":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079230":[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]},{"1079336":[255,157]},{"1079339":[27,157,64,27,157,128,27,157,192,27,157]},{"1079351":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079365":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079379":[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,24,162,9,165,138,201,64,176,16,162,2,201,24,208,10,175,197,243,126,201,3,176,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]},{"1079487":[2,156,16,7,107,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079520":[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,107,173,10,4,201,24,208,2,165,27,107,34,116,220,160,34,58,135,1,194,16,166,160,191,219,251,160,226,16,34,156,135]},{"1079629":[95,249,160,96,249,160,237,249,160,122,250,160,7,251,160,113,251,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079665":[32,126,232,232,159]},{"1079671":[32,126,232,232,159]},{"1079677":[32,126,232,232,159]},{"1079683":[32,126,232,232,162,220,25,159]},{"1079692":[32,126,232,232,169,202,12,159]},{"1079701":[32,126,232,232,169,203,12,159]},{"1079710":[32,126,232,232,169,208,8,159]},{"1079719":[32,126,232,232,162,92,26,159]},{"1079728":[32,126,232,232,169,218,12,159]},{"1079737":[32,126,232,232,169,219,12,159]},{"1079746":[32,126,232,232,169,208,8,159]},{"1079755":[32,126,232,232,162,220,26,159]},{"1079764":[32,126,232,232,159]},{"1079770":[32,126,232,232,159]},{"1079776":[32,126,232,232,159]},{"1079782":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079806":[32,126,232,232,159]},{"1079812":[32,126,232,232,159]},{"1079818":[32,126,232,232,159]},{"1079824":[32,126,232,232,162,156,25,159]},{"1079833":[32,126,232,232,169,202,12,159]},{"1079842":[32,126,232,232,169,203,12,159]},{"1079851":[32,126,232,232,169,208,8,159]},{"1079860":[32,126,232,232,162,28,26,159]},{"1079869":[32,126,232,232,169,218,12,159]},{"1079878":[32,126,232,232,169,219,12,159]},{"1079887":[32,126,232,232,169,208,8,159]},{"1079896":[32,126,232,232,162,156,26,159]},{"1079905":[32,126,232,232,159]},{"1079911":[32,126,232,232,159]},{"1079917":[32,126,232,232,159]},{"1079923":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079947":[32,126,232,232,159]},{"1079953":[32,126,232,232,159]},{"1079959":[32,126,232,232,159]},{"1079965":[32,126,232,232,162,220,9,159]},{"1079974":[32,126,232,232,169,202,12,159]},{"1079983":[32,126,232,232,169,203,12,159]},{"1079992":[32,126,232,232,169,208,8,159]},{"1080001":[32,126,232,232,162,92,10,159]},{"1080010":[32,126,232,232,169,218,12,159]},{"1080019":[32,126,232,232,169,219,12,159]},{"1080028":[32,126,232,232,169,208,8,159]},{"1080037":[32,126,232,232,162,220,10,159]},{"1080046":[32,126,232,232,159]},{"1080052":[32,126,232,232,159]},{"1080058":[32,126,232,232,159]},{"1080064":[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]},{"1080297":[1]},{"1080379":[5]},{"1080381":[4]},{"1080409":[2]},{"1080505":[3]},{"1080603":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080620":[134,1,133,2,32,27,253,176,4,92,83,230]},{"1080633":[169,49,133,2,194,32,169]},{"1080641":[192,133]},{"1080644":[162,128,167]},{"1080648":[141,24,33,230]},{"1080653":[230]},{"1080655":[167]},{"1080657":[141,24,33,230]},{"1080662":[230]},{"1080664":[167]},{"1080666":[141,24,33,230]},{"1080671":[230]},{"1080673":[167]},{"1080675":[141,24,33,230]},{"1080680":[230]},{"1080682":[167]},{"1080684":[141,24,33,230]},{"1080689":[230]},{"1080691":[167]},{"1080693":[141,24,33,230]},{"1080698":[230]},{"1080700":[167]},{"1080702":[141,24,33,230]},{"1080707":[230]},{"1080709":[167]},{"1080711":[141,24,33,230]},{"1080716":[230]},{"1080718":[202,208,181,226,32,92,81,230]},{"1080727":[226,48,175,248,194,126,168,32,27,253,194,48,176,10,162]},{"1080744":[160,64]},{"1080747":[92,104,223]},{"1080751":[162]},{"1080753":[192,160]},{"1080757":[169]},{"1080759":[8,139,84,127,177,171,162]},{"1080767":[8,169]},{"1080770":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,58,221,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,67,244,126,41,255]},{"1081425":[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,85,151,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,233,222,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,222,234,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,239,234,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,196,149,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,196,149,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,71,131,165,242,137,32,208,13,128,36,32,129,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,171,180,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,120,149,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,120,149,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,120,149,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,120,149,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,54,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,54,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,160,175,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,152,45,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,18,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[208,7,169,1,1,143,46,39,126,226,48,175,74,128,48,240,20,139,169,126,72,171,194,48,165,138,201,128]},{"1186642":[176,5,10,170,252,99,155,171,194,48,162,30]},{"1186655":[169,190,13,107,99,156,99,156,99,156,100,156,99,156,143,156,99,156,137,157,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,216,157,99,156,99,156,99,156,223,157,99,156,99,156,99,156,99,156,99,156,99,156,254,157,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,152,160,99,156,99,156,99,156,99,156,99,156,99,156,180,160,99,156,118,164,249,166,99,156]},{"1186766":[167,99,156,99,156,99,156,99,156,55,167,99,156,12,164,99,156,99,156,99,156,99,156,99,156,99,156,173,167,99,156,36,168,99,156,2,168,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,43,168,99,156,99,156,99,156,50,168,99,156,99,156,99,156,99,156,99,156,99,156,78,168,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,32,170,46,170,99,156,99,156,39,170,99,156,53,170,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186931":[141,186,41,169,4,1,141,188,41,169,198]},{"1186943":[141,52,42,141,56,42,141,58,42,169,52]},{"1186955":[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]},{"1187058":[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]},{"1187205":[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]},{"1187284":[141,38,40,96,169,52]},{"1187291":[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]},{"1187404":[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]},{"1187440":[141,40,44,141,174,47,169,52]},{"1187449":[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]},{"1187488":[141,54,44,141,168,47,169,174]},{"1187497":[141,172,44,169,175]},{"1187503":[141,174,44,169,126]},{"1187509":[141,176,44,169,127]},{"1187515":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187533":[141,44,45,169,20]},{"1187539":[141,46,45,169,21]},{"1187545":[141,48,45,169,168]},{"1187551":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187569":[141,172,45,169,28]},{"1187575":[141,174,45,169,29]},{"1187581":[141,176,45,169,118]},{"1187587":[141,178,45,169,241]},{"1187593":[141,44,46,169,78]},{"1187599":[141,46,46,169,79]},{"1187605":[141,48,46,169,217]},{"1187611":[141,50,46,169,154]},{"1187617":[141,172,46,169,155]},{"1187623":[141,174,46,169,156]},{"1187629":[141,176,46,169,149]},{"1187635":[141,178,46,169,52]},{"1187641":[141,40,48,141,44,48,169,53]},{"1187650":[141,42,48,141,50,48,169,218]},{"1187659":[141,46,48,169,226]},{"1187665":[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]},{"1187746":[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]},{"1187830":[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]},{"1187887":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187903":[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]},{"1187995":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188016":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188032":[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]},{"1188074":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188095":[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]},{"1188161":[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]},{"1188191":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188209":[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]},{"1188236":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188257":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188275":[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]},{"1188344":[141,226,34,169,2,3,141,228,34,169,204]},{"1188356":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188380":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188401":[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]},{"1188443":[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]},{"1188476":[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]},{"1188571":[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]},{"1188704":[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]},{"1188797":[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]},{"1188872":[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]},{"1189006":[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]},{"1189051":[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]},{"1189369":[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]},{"1189414":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189432":[141,134,41,169,229]},{"1189438":[141,136,41,169]},{"1189443":[1,141,162,41,169,113]},{"1189450":[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]},{"1189495":[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]},{"1189531":[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]},{"1189558":[141,26,44,169,206]},{"1189564":[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]},{"1189628":[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]},{"1189683":[141,86,47,96,169,116,7,141]},{"1189692":[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]},{"1189734":[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]},{"1189950":[141,162,36,141,164,36,169,227]},{"1189959":[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]},{"1190086":[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]},{"1190116":[141,30,50,169,218]},{"1190122":[141,32,50,141,154,50,169,225]},{"1190131":[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]},{"1190176":[141,26,50,169,242]},{"1190182":[141,184,59,169,8,1,141,56,60,169,52]},{"1190194":[141,190,59,175,197,243,126,41,255]},{"1190204":[201,3]},{"1190207":[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]},{"1190350":[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,132,173,194,32,166,6,138,9]},{"1190581":[36,143,90,199,126,166,7,138,9]},{"1190591":[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,34,173,166,4,138,9]},{"1190624":[36,143,80,199,126,166,5,138,9]},{"1190634":[36,143,82,199,126,166,6,138,9]},{"1190644":[36,143,84,199,126,166,7,138,9]},{"1190654":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,132,173,194,32,166,6,138,9]},{"1190687":[36,143,96,199,126,166,7,138,9]},{"1190697":[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]},{"1190729":[175,24,244,126,32,93,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190751":[36,143,44,199,126,166,6,138,9]},{"1190761":[36,143,46,199,126,166,7,138,9]},{"1190771":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,93,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190807":[36,143,52,199,126,166,6,138,9]},{"1190817":[36,143,54,199,126,166,7,138,9]},{"1190827":[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]},{"1190860":[240,4,34,158,173,164,226,32,175,111,243,126,201,255,240,34,32,132,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190891":[9]},{"1190893":[36,143,100,199,126,166,7,138,9]},{"1190903":[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]},{"1190934":[24,105,7]},{"1190938":[41,248,255,170,175,202,80,127,41,255]},{"1190949":[208,3,130,215]},{"1190954":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190967":[165,26,41,12]},{"1190972":[74,74,240,58,201,1]},{"1190979":[240,98,201,2]},{"1190984":[208,3,130,180]},{"1190989":[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]},{"1191222":[144,6,200,233,100]},{"1191228":[128,245,132,5,160,144,201,10]},{"1191237":[144,6,200,233,10]},{"1191243":[128,245,132,6,160,144,201,1]},{"1191252":[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]},{"1191342":[240,11,175,100,243,126,63,223,173,164,208,1,107,124,251,173,32,132,173,194,32,166,6,138,9]},{"1191368":[36,143,148,199,126,166,7,138,9]},{"1191378":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191392":[128]},{"1191394":[64]},{"1191396":[32]},{"1191398":[16]},{"1191400":[8]},{"1191402":[4]},{"1191404":[2]},{"1191406":[1,128]},{"1191409":[64]},{"1191411":[32]},{"1191413":[16]},{"1191415":[8]},{"1191417":[4]},{"1191419":[23,174,23,174,50,174,75,174,103,174,128,174,153,174,178,174,203,174,230,174,1,175,28,175,53,175,80,175,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,190,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,190,173,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,190,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,190,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,190,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,190,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,190,173,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,190,173,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,190,173,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,190,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,190,173,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,190,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,190,173,107,159]},{"1191789":[4,112,159]},{"1191793":[5,112,159]},{"1191797":[6,112,159]},{"1191801":[7,112,159]},{"1191805":[8,112,159]},{"1191809":[9,112,159]},{"1191813":[10,112,159]},{"1191817":[11,112,159]},{"1191821":[12,112,159]},{"1191825":[13,112,159]},{"1191829":[14,112,159]},{"1191833":[15,112,107,159]},{"1191838":[244,126,159]},{"1191842":[101,127,159]},{"1191846":[102,127,159]},{"1191850":[103,127,159]},{"1191854":[104,127,159]},{"1191858":[105,127,159]},{"1191862":[106,127,159]},{"1191866":[107,127,159]},{"1191870":[108,127,159]},{"1191874":[109,127,159]},{"1191878":[110,127,159]},{"1191882":[111,127,107,72,226,48,173]},{"1191890":[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]},{"1191918":[141]},{"1191920":[67,169,128,141,1,67,169]},{"1191928":[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]},{"1191956":[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]},{"1191996":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192011":[72,171,173]},{"1192015":[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]},{"1192045":[67,141,1,67,169]},{"1192051":[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]},{"1192079":[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]},{"1192119":[67,194,48,171,104,162]},{"1192127":[138,107,165,17,34,156,135]},{"1192135":[214,176,164,238,176,164,13,177,164,14,178,164,36,178,164,169,128,141,16,7,34,61,137]},{"1192159":[34,51,131]},{"1192163":[34,159,145,164,169,7,133,20,230,17,107,32,45,179,100,200,100,201,34,54,178,164,208,11,162,15,169]},{"1192191":[159]},{"1192193":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,157,179,165,246,41,16,240,3,32,233,180,165,246,41,32,240,3,32,246,180,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,234,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,246,180,128,52,201,242,208,5,32,233,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192384":[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,155,180,32,80,180,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,54,178,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]},{"1192508":[16,112,208,3,130,161]},{"1192515":[202,16,244,194,32,162,14,169]},{"1192525":[159,208,80,127,202,202,16,248,32,233,178,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]},{"1192566":[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]},{"1192595":[133,4,34,160,175,160,226,32,175]},{"1192605":[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]},{"1192680":[107,169]},{"1192684":[133]},{"1192686":[133,2,169,11]},{"1192691":[133,4,166]},{"1192695":[191]},{"1192697":[16,112,58,41,31]},{"1192703":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192728":[16,6,24,105,8]},{"1192734":[230,2,133,4,165]},{"1192740":[26,133]},{"1192743":[201,16]},{"1192746":[144,201,96,173]},{"1192751":[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]},{"1192779":[141]},{"1192781":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,197,141,2,67,169,182,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]},{"1192859":[67,96,194,32,165,200,41,255]},{"1192868":[10,170,191,232,179,164,24,105,132,96,235,143,2,17]},{"1192883":[165,201,41,255]},{"1192888":[10,170,191,8,180,164,24,105,163,97,235,143,18,17]},{"1192903":[235,24,105,32]},{"1192908":[235,143,30,17]},{"1192913":[235,24,105,3]},{"1192918":[235,143,38,17]},{"1192923":[235,24,105,61]},{"1192928":[235,143,46,17]},{"1192933":[226,32,96,64]},{"1192938":[67]},{"1192940":[70]},{"1192942":[73]},{"1192944":[76]},{"1192946":[79]},{"1192948":[82]},{"1192950":[85]},{"1192952":[160]},{"1192954":[163]},{"1192956":[166]},{"1192958":[169]},{"1192960":[172]},{"1192962":[175]},{"1192964":[178]},{"1192966":[181]},{"1192968":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192988":[66]},{"1192990":[69]},{"1192992":[72]},{"1192994":[75]},{"1192996":[78]},{"1192998":[81]},{"1193000":[84]},{"1193002":[87]},{"1193004":[159]},{"1193006":[162]},{"1193008":[165]},{"1193010":[168]},{"1193012":[171]},{"1193014":[174]},{"1193016":[177]},{"1193018":[180]},{"1193020":[183]},{"1193022":[255]},{"1193024":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193047":[10,170,191,232,179,164,24,105,132,96,235,143,10,17]},{"1193062":[165,201,41,255]},{"1193067":[10,170,191,8,180,164,24,105,163,97,235,143,58,17]},{"1193082":[235,24,105,32]},{"1193087":[235,143,70,17]},{"1193092":[235,24,105,3]},{"1193097":[235,143,78,17]},{"1193102":[235,24,105,61]},{"1193107":[235,143,86,17]},{"1193112":[226,32,96,194,48,162,15]},{"1193120":[191]},{"1193122":[16,112,41,255]},{"1193127":[155,10,10,10,133]},{"1193133":[152,10,10,10,10,133,3,166]},{"1193142":[191,238,148,164,166,3,157,6,16,166]},{"1193153":[191,240,148,164,166,3,157,8,16,166]},{"1193164":[191,242,148,164,166,3,157,14,16,166]},{"1193175":[191,244,148,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]},{"1193222":[51,1,10,2,10]},{"1193228":[2,5,14,6,14]},{"1193234":[2]},{"1193236":[6,21,6]},{"1193240":[2,12,14,13,14]},{"1193246":[2,98,6,99,6]},{"1193252":[2,10,2,11,2]},{"1193258":[2,32,14,33,14]},{"1193264":[2,133,26,134,26]},{"1193270":[2,171,30,171,30,97,195]},{"1193278":[51,17,10,18,10]},{"1193284":[2]},{"1193286":[30,22,14]},{"1193290":[2,48,6]},{"1193294":[30]},{"1193296":[2,28,14,28,78]},{"1193302":[2,114,6,115,6]},{"1193308":[2,26,2,27,2]},{"1193314":[2,48,14,49,14]},{"1193320":[2,149,26,150,26]},{"1193326":[2,171,30,171,30,98,3]},{"1193334":[51,7,10,23,202]},{"1193340":[2,8,10,24,202]},{"1193346":[2,9,10,25,202]},{"1193352":[2,44,6,44,70]},{"1193358":[2,34,2,35,2]},{"1193364":[2,36,2,37,2]},{"1193370":[2,38,14,39,14]},{"1193376":[2,40,10,41,10]},{"1193382":[2,138,29]},{"1193386":[2,98,35]},{"1193390":[51,23,10,7,202]},{"1193396":[2,24,10,8,202]},{"1193402":[2,25,10,9,202]},{"1193408":[2,60,6,61,6]},{"1193414":[2,50,2,51,2]},{"1193420":[2,52,2,53,2]},{"1193426":[2,54,14,55,14]},{"1193432":[2,56,10,57,10]},{"1193438":[2,154,29]},{"1193442":[2,98,99]},{"1193446":[51,42,26,43,26]},{"1193452":[2,64,30,65,30]},{"1193458":[2,66,26,66,90]},{"1193464":[2,29,6,30,6]},{"1193470":[2,72,6,73,6]},{"1193476":[2,74,14,75,14]},{"1193482":[2,76,22,77,22]},{"1193488":[2,78,2,79,2]},{"1193494":[2]},{"1193496":[2,139,29,98,131]},{"1193502":[51,58,26,59,26]},{"1193508":[2,80,30,81,30]},{"1193514":[2,82,26,83,26]},{"1193520":[2,45,6,46,6]},{"1193526":[2,88,6,89,6]},{"1193532":[2,90,14,91,14]},{"1193538":[2,92,22,93,22]},{"1193544":[2,94,2,95,2]},{"1193550":[2]},{"1193552":[2,155,29,98,195]},{"1193558":[51,14,14,15,14]},{"1193564":[2,100,6,101,6]},{"1193570":[2,109,10,110,10]},{"1193576":[2,111,26,111,90]},{"1193582":[2,129,6,129,70]},{"1193588":[2,130,10,131,10]},{"1193594":[2,132,6,132,70]},{"1193600":[2,47,74,47,10]},{"1193606":[2,103,94,103,30,98,227]},{"1193614":[51,31,78,31,14]},{"1193620":[2,116,6,117,6]},{"1193626":[2,125,10,126,10]},{"1193632":[2,127,26,127,90]},{"1193638":[2,145,6,145,70]},{"1193644":[2,146,10,147,10]},{"1193650":[2,148,6,148,70]},{"1193656":[2,62,10,63,10]},{"1193662":[2,103,222,103,158,255,255,96,132]},{"1193672":[3,134,29,134,29,96,164]},{"1193680":[3,150,29,150,29,96,135]},{"1193688":[3,134,29,134,29,96,167]},{"1193696":[3,150,29,150,29,96,138]},{"1193704":[3,134,29,134,29,96,170]},{"1193712":[3,150,29,150,29,96,141]},{"1193720":[3,134,29,134,29,96,173]},{"1193728":[3,150,29,150,29,96,144]},{"1193736":[3,134,29,134,29,96,176]},{"1193744":[3,150,29,150,29,96,147]},{"1193752":[3,134,29,134,29,96,179]},{"1193760":[3,150,29,150,29,96,150]},{"1193768":[3,134,29,134,29,96,182]},{"1193776":[3,150,29,150,29,96,153]},{"1193784":[3,134,29,134,29,96,185]},{"1193792":[3,150,29,150,29,96,228]},{"1193800":[3,134,29,134,29,97,4]},{"1193808":[3,150,29,150,29,96,231]},{"1193816":[3,134,29,134,29,97,7]},{"1193824":[3,150,29,150,29,96,234]},{"1193832":[3,134,29,134,29,97,10]},{"1193840":[3,150,29,150,29,96,237]},{"1193848":[3,134,29,134,29,97,13]},{"1193856":[3,150,29,150,29,96,240]},{"1193864":[3,134,29,134,29,97,16]},{"1193872":[3,150,29,150,29,96,243]},{"1193880":[3,134,29,134,29,97,19]},{"1193888":[3,150,29,150,29,96,246]},{"1193896":[3,134,29,134,29,97,22]},{"1193904":[3,150,29,150,29,96,249]},{"1193912":[3,134,29,134,29,97,25]},{"1193920":[3,150,29,150,29,96,196]},{"1193928":[3]},{"1193930":[2]},{"1193932":[2,96,196]},{"1193936":[3,103,222,103,158,97,130]},{"1193944":[7]},{"1193946":[2]},{"1193948":[2]},{"1193950":[2]},{"1193952":[2,97,162,128,3]},{"1193958":[2]},{"1193960":[2,97,165,128,3]},{"1193966":[2]},{"1193968":[2,97,226]},{"1193972":[7]},{"1193974":[2]},{"1193976":[2]},{"1193978":[2]},{"1193980":[2,97,130]},{"1193984":[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]},{"1194012":[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]},{"1194051":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,127]},{"1194077":[127]},{"1194079":[127]},{"1194081":[127]},{"1194083":[127]},{"1194085":[127]},{"1194087":[127]},{"1194089":[127]},{"1194091":[127]},{"1194093":[127]},{"1194095":[127]},{"1194097":[127]},{"1194099":[127]},{"1194101":[127]},{"1194103":[127]},{"1194105":[127]},{"1194107":[127]},{"1194109":[127]},{"1194111":[127]},{"1194113":[127]},{"1194115":[127]},{"1194117":[127]},{"1194119":[127]},{"1194121":[127]},{"1194123":[127]},{"1194125":[127]},{"1194127":[127]},{"1194129":[127]},{"1194131":[127]},{"1194133":[127]},{"1194135":[127]},{"1194137":[127]},{"1194139":[8,162,128,142]},{"1194144":[33,194,32,169,64,99,141,22,33,169,39,192,141,66,67,162,126,142,68,67,169,64]},{"1194167":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,162,15,142]},{"1194185":[33,40,107,8,162,128,142]},{"1194193":[33,194,32,169,64,99,141,22,33,169,91,184,141,66,67,162,164,142,68,67,169,64]},{"1194216":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,162,15,142]},{"1194234":[33,40,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194269":[83,127,201,3,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,186,164,226,48,169]},{"1194307":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194365":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194423":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,219,185,34,231,244,30,32,27,186,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,251,133,8,169,185,105]},{"1194480":[133,9,34,117,223,5,34,92,220,6,96]},{"1194493":[247,255,198]},{"1194498":[2]},{"1194503":[200]},{"1194506":[2]},{"1194509":[248,255,198]},{"1194514":[2]},{"1194519":[202,64]},{"1194522":[2,175,103,129,48,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,153,215,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194580":[84,34,26,150,160,40,122,107]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,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]},{"1593408":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,13,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]},{"1593476":[154,213,155,213]},{"1593482":[183,213,184,213,185,213,186,213,191,213,197,213,198,213,199,213,201,213]},{"1593504":[1]},{"1593506":[74,10]},{"1593509":[1]},{"1593511":[243,10]},{"1593514":[2]},{"1593516":[50,12]},{"1593520":[1]},{"1593522":[25,13,52]},{"1593527":[255,255,255,255,255,255,255,255,255,1]},{"1593538":[74,10,112,1]},{"1593543":[243,10,192,2]},{"1593548":[50,12,218,88,1]},{"1593554":[25,13,52]},{"1593559":[255,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]},{"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]},{"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]},{"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 From 7a6c22c452993c78cb4dba46bce37a5a705eb8d0 Mon Sep 17 00:00:00 2001 From: cassidoxa Date: Thu, 5 Dec 2019 19:20:29 -0500 Subject: [PATCH 061/185] Add flippers rule to East Dark World Pier in inverted --- Rules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Rules.py b/Rules.py index fc9c21fe..0a3acfed 100644 --- a/Rules.py +++ b/Rules.py @@ -635,6 +635,7 @@ def no_glitches_rules(world, player): set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has('Flippers', player)) set_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))) set_rule(world.get_entrance('Dark Lake Hylia Ledge Drop', player), lambda state: state.has('Flippers', player)) + set_rule(world.get_entrance('East Dark World Pier', player), lambda state: state.has('Flippers', player)) add_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hookshot', player) or state.has_Boots(player)) add_rule(world.get_entrance('Ganons Tower (Double Switch Room)', player), lambda state: state.has('Hookshot', player)) From fe6a032f09c79ea7e47a7af63b7f847443e5a9ff Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 9 Dec 2019 13:43:30 +0100 Subject: [PATCH 062/185] Fixed a bug in the balancing algorithm in non keysanity modes and increased the threshold --- Fill.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Fill.py b/Fill.py index bfc1145e..8944402a 100644 --- a/Fill.py +++ b/Fill.py @@ -338,8 +338,7 @@ def balance_multiworld_progression(world): reachable_locations_count[location.player] += 1 if checked_locations: - average_reachable_locations = sum(reachable_locations_count.values()) / world.players - threshold = ((average_reachable_locations + max(reachable_locations_count.values())) / 2) * 0.8 #todo: probably needs some tweaking + threshold = max(reachable_locations_count.values()) - 20 balancing_players = [player for player, reachables in reachable_locations_count.items() if reachables < threshold] if balancing_players: @@ -386,13 +385,12 @@ def balance_multiworld_progression(world): items_to_replace.append(testing) replaced_items = False - locations_for_replacing = [l for l in checked_locations if not l.event and not l.locked] - while locations_for_replacing and items_to_replace: - new_location = locations_for_replacing.pop() + replacement_locations = [l for l in checked_locations if not l.event and not l.locked] + while replacement_locations and items_to_replace: + new_location = replacement_locations.pop() old_location = items_to_replace.pop() new_location.item, old_location.item = old_location.item, new_location.item - new_location.event = True - old_location.event = False + new_location.event, old_location.event = True, False state.collect(new_location.item, True, new_location) replaced_items = True if replaced_items: @@ -402,7 +400,7 @@ def balance_multiworld_progression(world): sphere_locations.append(location) for location in sphere_locations: - if location.event: + if location.event and (world.keysanity or not location.item.key): state.collect(location.item, True, location) checked_locations.extend(sphere_locations) From ce19713209385a2bb72b0e61f81a9ab6be4062a0 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 16 Oct 2019 08:20:28 +0200 Subject: [PATCH 063/185] Removed usage of deprecated time.clock() --- AdjusterMain.py | 4 ++-- Main.py | 4 ++-- Plando.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/AdjusterMain.py b/AdjusterMain.py index 63466142..85d362f6 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -7,7 +7,7 @@ from Rom import LocalRom, Sprite, apply_rom_settings def adjust(args): - start = time.clock() + start = time.process_time() logger = logging.getLogger('') logger.info('Patching ROM.') @@ -31,6 +31,6 @@ def adjust(args): rom.write_to_file(output_path('%s.sfc' % outfilebase)) logger.info('Done. Enjoy.') - logger.debug('Total Time: %s', time.clock() - start) + logger.debug('Total Time: %s', time.process_time() - start) return args diff --git a/Main.py b/Main.py index 9442c8ab..ad4184fb 100644 --- a/Main.py +++ b/Main.py @@ -21,7 +21,7 @@ from Utils import output_path __version__ = '0.6.3-pre' def main(args, seed=None): - start = time.clock() + start = time.process_time() # initialize the world world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) @@ -172,7 +172,7 @@ def main(args, seed=None): world.spoiler.to_file(output_path('%s_Spoiler.txt' % outfilebase)) logger.info('Done. Enjoy.') - logger.debug('Total Time: %s', time.clock() - start) + logger.debug('Total Time: %s', time.process_time() - start) return world diff --git a/Plando.py b/Plando.py index 290e212b..92108fec 100755 --- a/Plando.py +++ b/Plando.py @@ -20,7 +20,7 @@ from Main import create_playthrough __version__ = '0.2-dev' def main(args): - start_time = time.clock() + start_time = time.process_time() # initialize the world world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, False, None, 'none', False) @@ -89,7 +89,7 @@ def main(args): world.spoiler.to_file('%s_Spoiler.txt' % outfilebase) logger.info('Done. Enjoy.') - logger.debug('Total Time: %s', time.clock() - start_time) + logger.debug('Total Time: %s', time.process_time() - start_time) return world From 55a30aa91f6432fc67fa0c2871235e4374e88f5e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 9 Dec 2019 19:27:56 +0100 Subject: [PATCH 064/185] multiworld --- Adjuster.py | 1 + AdjusterMain.py | 5 +- BaseClasses.py | 4 +- EntranceRandomizer.py | 2 +- Gui.py | 29 +- InvertedRegions.py | 470 +++++++-------- Main.py | 29 +- MultiClient.py | 920 +++++++++++++++++++++++++++++ MultiServer.py | 393 ++++++++++++ Plando.py | 6 +- Regions.py | 470 +++++++-------- Rom.py | 412 +++++++------ Utils.py | 4 + data/base2current.json | 2 +- data/base2current_extendedmsu.json | 1 + 15 files changed, 2070 insertions(+), 678 deletions(-) create mode 100644 MultiClient.py create mode 100644 MultiServer.py create mode 100644 data/base2current_extendedmsu.json diff --git a/Adjuster.py b/Adjuster.py index 4ab61b8c..393b7b75 100755 --- a/Adjuster.py +++ b/Adjuster.py @@ -38,6 +38,7 @@ def main(): Alternatively, can be a ALttP Rom patched with a Link sprite that will be extracted. ''') + parser.add_argument('--names', default='', type=str) args = parser.parse_args() # ToDo: Validate files further than mere existance diff --git a/AdjusterMain.py b/AdjusterMain.py index 85d362f6..f4dbb663 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -1,8 +1,9 @@ import os +import re import time import logging -from Utils import output_path +from Utils import output_path, parse_names_string from Rom import LocalRom, Sprite, apply_rom_settings @@ -26,7 +27,7 @@ def adjust(args): else: raise RuntimeError('Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.') - apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, sprite) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, sprite, parse_names_string(args.names)) rom.write_to_file(output_path('%s.sfc' % outfilebase)) diff --git a/BaseClasses.py b/BaseClasses.py index c6d63713..a782aa08 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -781,12 +781,13 @@ class Boss(object): return self.defeat_rule(state, self.player) class Location(object): - def __init__(self, player, name='', address=None, crystal=False, hint_text=None, parent=None): + def __init__(self, player, name='', address=None, crystal=False, hint_text=None, parent=None, player_address=None): self.name = name self.parent_region = parent self.item = None self.crystal = crystal self.address = address + self.player_address = player_address self.spot_type = 'Location' self.hint_text = hint_text if hint_text is not None else 'Hyrule' self.recursion_count = 0 @@ -1033,6 +1034,7 @@ class Spoiler(object): 'accessibility': self.world.accessibility, 'hints': self.world.hints, 'keysanity': self.world.keysanity, + 'players': self.world.players } def to_json(self): diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 46908a9b..6e8af120 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -255,7 +255,7 @@ def start(): parser.add_argument('--shufflepalette', default=False, action='store_true') parser.add_argument('--shufflepots', default=False, action='store_true') parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) - + parser.add_argument('--names', default='') parser.add_argument('--outputpath') args = parser.parse_args() diff --git a/Gui.py b/Gui.py index 819e8469..0eae8dee 100755 --- a/Gui.py +++ b/Gui.py @@ -13,7 +13,7 @@ from AdjusterMain import adjust from GuiUtils import ToolTips, set_icon, BackgroundTaskProgress from Main import main, __version__ as ESVersion from Rom import Sprite -from Utils import is_bundled, local_path, output_path, open_file +from Utils import is_bundled, local_path, output_path, open_file, parse_names_string def guiMain(args=None): @@ -346,6 +346,9 @@ def guiMain(args=None): worldLabel = Label(bottomFrame, text='Worlds') worldVar = StringVar() worldSpinbox = Spinbox(bottomFrame, from_=1, to=100, width=5, textvariable=worldVar) + namesLabel = Label(bottomFrame, text='Player names') + namesVar = StringVar() + namesEntry = Entry(bottomFrame, textvariable=namesVar) seedLabel = Label(bottomFrame, text='Seed #') seedVar = StringVar() seedEntry = Entry(bottomFrame, width=15, textvariable=seedVar) @@ -356,6 +359,7 @@ def guiMain(args=None): def generateRom(): guiargs = Namespace guiargs.multi = int(worldVar.get()) + guiargs.names = namesVar.get() guiargs.seed = int(seedVar.get()) if seedVar.get() else None guiargs.count = int(countVar.get()) if countVar.get() != '1' else None guiargs.mode = modeVar.get() @@ -416,12 +420,18 @@ def guiMain(args=None): except Exception as e: messagebox.showerror(title="Error while creating seed", message=str(e)) else: - messagebox.showinfo(title="Success", message="Rom patched successfully") + msgtxt = "Rom patched successfully" + if guiargs.names: + for player, name in parse_names_string(guiargs.names).items(): + msgtxt += "\nPlayer %d => %s" % (player, name) + messagebox.showinfo(title="Success", message=msgtxt) generateButton = Button(bottomFrame, text='Generate Patched Rom', command=generateRom) worldLabel.pack(side=LEFT) worldSpinbox.pack(side=LEFT) + namesLabel.pack(side=LEFT) + namesEntry.pack(side=LEFT) seedLabel.pack(side=LEFT, padx=(5, 0)) seedEntry.pack(side=LEFT) countLabel.pack(side=LEFT, padx=(5, 0)) @@ -502,10 +512,18 @@ def guiMain(args=None): fastMenuLabel2 = Label(fastMenuFrame2, text='Menu speed') fastMenuLabel2.pack(side=LEFT) + namesFrame2 = Frame(drowDownFrame2) + namesLabel2 = Label(namesFrame2, text='Player names') + namesVar2 = StringVar() + namesEntry2 = Entry(namesFrame2, textvariable=namesVar2) + + namesLabel2.pack(side=LEFT) + namesEntry2.pack(side=LEFT) heartbeepFrame2.pack(expand=True, anchor=E) heartcolorFrame2.pack(expand=True, anchor=E) fastMenuFrame2.pack(expand=True, anchor=E) + namesFrame2.pack(expand=True, anchor=E) bottomFrame2 = Frame(topFrame2) @@ -518,12 +536,17 @@ def guiMain(args=None): guiargs.disablemusic = bool(disableMusicVar.get()) guiargs.rom = romVar2.get() guiargs.sprite = sprite + guiargs.names = namesEntry2.get() try: adjust(args=guiargs) except Exception as e: messagebox.showerror(title="Error while creating seed", message=str(e)) else: - messagebox.showinfo(title="Success", message="Rom patched successfully") + msgtxt = "Rom patched successfully" + if guiargs.names: + for player, name in parse_names_string(guiargs.names).items(): + msgtxt += "\nPlayer %d => %s" % (player, name) + messagebox.showinfo(title="Success", message=msgtxt) adjustButton = Button(bottomFrame2, text='Adjust Rom', command=adjustRom) diff --git a/InvertedRegions.py b/InvertedRegions.py index 7623b398..c03e979f 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -340,8 +340,8 @@ 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: - address, crystal, hint_text = location_table[location] - ret.locations.append(Location(player, location, address, crystal, hint_text, ret)) + address, player_address, crystal, hint_text = location_table[location] + ret.locations.append(Location(player, location, address, crystal, hint_text, ret, player_address)) return ret def mark_dark_world_regions(world): @@ -406,236 +406,236 @@ default_shop_contents = { 'Potion Shop': [('Red Potion', 120), ('Green Potion', 60), ('Blue Potion', 160)], } -location_table = {'Mushroom': (0x180013, False, 'in the woods'), - 'Bottle Merchant': (0x2EB18, False, 'with a merchant'), - 'Flute Spot': (0x18014A, False, 'underground'), - 'Sunken Treasure': (0x180145, False, 'underwater'), - 'Purple Chest': (0x33D68, False, 'from a box'), - 'Blind\'s Hideout - Top': (0xEB0F, False, 'in a basement'), - 'Blind\'s Hideout - Left': (0xEB12, False, 'in a basement'), - 'Blind\'s Hideout - Right': (0xEB15, False, 'in a basement'), - 'Blind\'s Hideout - Far Left': (0xEB18, False, 'in a basement'), - 'Blind\'s Hideout - Far Right': (0xEB1B, False, 'in a basement'), - 'Link\'s Uncle': (0x2DF45, False, 'with your uncle'), - 'Secret Passage': (0xE971, False, 'near your uncle'), - 'King Zora': (0xEE1C3, False, 'at a high price'), - 'Zora\'s Ledge': (0x180149, False, 'near Zora'), - 'Waterfall Fairy - Left': (0xE9B0, False, 'near a fairy'), - 'Waterfall Fairy - Right': (0xE9D1, False, 'near a fairy'), - 'King\'s Tomb': (0xE97A, False, 'alone in a cave'), - 'Floodgate Chest': (0xE98C, False, 'in the dam'), - 'Link\'s House': (0xE9BC, False, 'in your home'), - 'Kakariko Tavern': (0xE9CE, False, 'in the bar'), - 'Chicken House': (0xE9E9, False, 'near poultry'), - 'Aginah\'s Cave': (0xE9F2, False, 'with Aginah'), - 'Sahasrahla\'s Hut - Left': (0xEA82, False, 'near the elder'), - 'Sahasrahla\'s Hut - Middle': (0xEA85, False, 'near the elder'), - 'Sahasrahla\'s Hut - Right': (0xEA88, False, 'near the elder'), - 'Sahasrahla': (0x2F1FC, False, 'with the elder'), - 'Kakariko Well - Top': (0xEA8E, False, 'in a well'), - 'Kakariko Well - Left': (0xEA91, False, 'in a well'), - 'Kakariko Well - Middle': (0xEA94, False, 'in a well'), - 'Kakariko Well - Right': (0xEA97, False, 'in a well'), - 'Kakariko Well - Bottom': (0xEA9A, False, 'in a well'), - 'Blacksmith': (0x18002A, False, 'with the smith'), - 'Magic Bat': (0x180015, False, 'with the bat'), - 'Sick Kid': (0x339CF, False, 'with the sick'), - 'Hobo': (0x33E7D, False, 'with the hobo'), - 'Lost Woods Hideout': (0x180000, False, 'near a thief'), - 'Lumberjack Tree': (0x180001, False, 'in a hole'), - 'Cave 45': (0x180003, False, 'alone in a cave'), - 'Graveyard Cave': (0x180004, False, 'alone in a cave'), - 'Checkerboard Cave': (0x180005, False, 'alone in a cave'), - 'Mini Moldorm Cave - Far Left': (0xEB42, False, 'near Moldorms'), - 'Mini Moldorm Cave - Left': (0xEB45, False, 'near Moldorms'), - 'Mini Moldorm Cave - Right': (0xEB48, False, 'near Moldorms'), - 'Mini Moldorm Cave - Far Right': (0xEB4B, False, 'near Moldorms'), - 'Mini Moldorm Cave - Generous Guy': (0x180010, False, 'near Moldorms'), - 'Ice Rod Cave': (0xEB4E, False, 'in a frozen cave'), - 'Bonk Rock Cave': (0xEB3F, False, 'alone in a cave'), - 'Library': (0x180012, False, 'near books'), - 'Potion Shop': (0x180014, False, 'near potions'), - 'Lake Hylia Island': (0x180144, False, 'on an island'), - 'Maze Race': (0x180142, False, 'at the race'), - 'Desert Ledge': (0x180143, False, 'in the desert'), - 'Desert Palace - Big Chest': (0xE98F, False, 'in Desert Palace'), - 'Desert Palace - Torch': (0x180160, False, 'in Desert Palace'), - 'Desert Palace - Map Chest': (0xE9B6, False, 'in Desert Palace'), - 'Desert Palace - Compass Chest': (0xE9CB, False, 'in Desert Palace'), - 'Desert Palace - Big Key Chest': (0xE9C2, False, 'in Desert Palace'), - 'Desert Palace - Boss': (0x180151, False, 'with Lanmolas'), - 'Eastern Palace - Compass Chest': (0xE977, False, 'in Eastern Palace'), - 'Eastern Palace - Big Chest': (0xE97D, False, 'in Eastern Palace'), - 'Eastern Palace - Cannonball Chest': (0xE9B3, False, 'in Eastern Palace'), - 'Eastern Palace - Big Key Chest': (0xE9B9, False, 'in Eastern Palace'), - 'Eastern Palace - Map Chest': (0xE9F5, False, 'in Eastern Palace'), - 'Eastern Palace - Boss': (0x180150, False, 'with the Armos'), - 'Master Sword Pedestal': (0x289B0, False, 'at the pedestal'), - 'Hyrule Castle - Boomerang Chest': (0xE974, False, 'in Hyrule Castle'), - 'Hyrule Castle - Map Chest': (0xEB0C, False, 'in Hyrule Castle'), - 'Hyrule Castle - Zelda\'s Chest': (0xEB09, False, 'in Hyrule Castle'), - 'Sewers - Dark Cross': (0xE96E, False, 'in the sewers'), - 'Sewers - Secret Room - Left': (0xEB5D, False, 'in the sewers'), - 'Sewers - Secret Room - Middle': (0xEB60, False, 'in the sewers'), - 'Sewers - Secret Room - Right': (0xEB63, False, 'in the sewers'), - 'Sanctuary': (0xEA79, False, 'in Sanctuary'), - 'Castle Tower - Room 03': (0xEAB5, False, 'in Castle Tower'), - 'Castle Tower - Dark Maze': (0xEAB2, False, 'in Castle Tower'), - 'Old Man': (0xF69FA, False, 'with the old man'), - 'Spectacle Rock Cave': (0x180002, False, 'alone in a cave'), - 'Paradox Cave Lower - Far Left': (0xEB2A, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Left': (0xEB2D, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Right': (0xEB30, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Far Right': (0xEB33, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Middle': (0xEB36, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Left': (0xEB39, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Right': (0xEB3C, False, 'in a cave with seven chests'), - 'Spiral Cave': (0xE9BF, False, 'in spiral cave'), - 'Ether Tablet': (0x180016, False, 'at a monolith'), - 'Spectacle Rock': (0x180140, False, 'atop a rock'), - 'Tower of Hera - Basement Cage': (0x180162, False, 'in Tower of Hera'), - 'Tower of Hera - Map Chest': (0xE9AD, False, 'in Tower of Hera'), - 'Tower of Hera - Big Key Chest': (0xE9E6, False, 'in Tower of Hera'), - 'Tower of Hera - Compass Chest': (0xE9FB, False, 'in Tower of Hera'), - 'Tower of Hera - Big Chest': (0xE9F8, False, 'in Tower of Hera'), - 'Tower of Hera - Boss': (0x180152, False, 'with Moldorm'), - 'Pyramid': (0x180147, False, 'on the pyramid'), - 'Catfish': (0xEE185, False, 'with a catfish'), - 'Stumpy': (0x330C7, False, 'with tree boy'), - 'Digging Game': (0x180148, False, 'underground'), - 'Bombos Tablet': (0x180017, False, 'at a monolith'), - 'Hype Cave - Top': (0xEB1E, False, 'near a bat-like man'), - 'Hype Cave - Middle Right': (0xEB21, False, 'near a bat-like man'), - 'Hype Cave - Middle Left': (0xEB24, False, 'near a bat-like man'), - 'Hype Cave - Bottom': (0xEB27, False, 'near a bat-like man'), - 'Hype Cave - Generous Guy': (0x180011, False, 'with a bat-like man'), - 'Peg Cave': (0x180006, False, 'alone in a cave'), - 'Pyramid Fairy - Left': (0xE980, False, 'near a fairy'), - 'Pyramid Fairy - Right': (0xE983, False, 'near a fairy'), - 'Brewery': (0xE9EC, False, 'alone in a home'), - 'C-Shaped House': (0xE9EF, False, 'alone in a home'), - 'Chest Game': (0xEDA8, False, 'as a prize'), - 'Bumper Cave Ledge': (0x180146, False, 'on a ledge'), - 'Mire Shed - Left': (0xEA73, False, 'near sparks'), - 'Mire Shed - Right': (0xEA76, False, 'near sparks'), - 'Superbunny Cave - Top': (0xEA7C, False, 'in a connection'), - 'Superbunny Cave - Bottom': (0xEA7F, False, 'in a connection'), - 'Spike Cave': (0xEA8B, False, 'beyond spikes'), - 'Hookshot Cave - Top Right': (0xEB51, False, 'across pits'), - 'Hookshot Cave - Top Left': (0xEB54, False, 'across pits'), - 'Hookshot Cave - Bottom Right': (0xEB5A, False, 'across pits'), - 'Hookshot Cave - Bottom Left': (0xEB57, False, 'across pits'), - 'Floating Island': (0x180141, False, 'on an island'), - 'Mimic Cave': (0xE9C5, False, 'in a cave of mimicry'), - 'Swamp Palace - Entrance': (0xEA9D, False, 'in Swamp Palace'), - 'Swamp Palace - Map Chest': (0xE986, False, 'in Swamp Palace'), - 'Swamp Palace - Big Chest': (0xE989, False, 'in Swamp Palace'), - 'Swamp Palace - Compass Chest': (0xEAA0, False, 'in Swamp Palace'), - 'Swamp Palace - Big Key Chest': (0xEAA6, False, 'in Swamp Palace'), - 'Swamp Palace - West Chest': (0xEAA3, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Left': (0xEAA9, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Right': (0xEAAC, False, 'in Swamp Palace'), - 'Swamp Palace - Waterfall Room': (0xEAAF, False, 'in Swamp Palace'), - 'Swamp Palace - Boss': (0x180154, False, 'with Arrghus'), - 'Thieves\' Town - Big Key Chest': (0xEA04, False, 'in Thieves\' Town'), - 'Thieves\' Town - Map Chest': (0xEA01, False, 'in Thieves\' Town'), - 'Thieves\' Town - Compass Chest': (0xEA07, False, 'in Thieves\' Town'), - 'Thieves\' Town - Ambush Chest': (0xEA0A, False, 'in Thieves\' Town'), - 'Thieves\' Town - Attic': (0xEA0D, False, 'in Thieves\' Town'), - 'Thieves\' Town - Big Chest': (0xEA10, False, 'in Thieves\' Town'), - 'Thieves\' Town - Blind\'s Cell': (0xEA13, False, 'in Thieves\' Town'), - 'Thieves\' Town - Boss': (0x180156, False, 'with Blind'), - 'Skull Woods - Compass Chest': (0xE992, False, 'in Skull Woods'), - 'Skull Woods - Map Chest': (0xE99B, False, 'in Skull Woods'), - 'Skull Woods - Big Chest': (0xE998, False, 'in Skull Woods'), - 'Skull Woods - Pot Prison': (0xE9A1, False, 'in Skull Woods'), - 'Skull Woods - Pinball Room': (0xE9C8, False, 'in Skull Woods'), - 'Skull Woods - Big Key Chest': (0xE99E, False, 'in Skull Woods'), - 'Skull Woods - Bridge Room': (0xE9FE, False, 'near Mothula'), - 'Skull Woods - Boss': (0x180155, False, 'with Mothula'), - 'Ice Palace - Compass Chest': (0xE9D4, False, 'in Ice Palace'), - 'Ice Palace - Freezor Chest': (0xE995, False, 'in Ice Palace'), - 'Ice Palace - Big Chest': (0xE9AA, False, 'in Ice Palace'), - 'Ice Palace - Iced T Room': (0xE9E3, False, 'in Ice Palace'), - 'Ice Palace - Spike Room': (0xE9E0, False, 'in Ice Palace'), - 'Ice Palace - Big Key Chest': (0xE9A4, False, 'in Ice Palace'), - 'Ice Palace - Map Chest': (0xE9DD, False, 'in Ice Palace'), - 'Ice Palace - Boss': (0x180157, False, 'with Kholdstare'), - 'Misery Mire - Big Chest': (0xEA67, False, 'in Misery Mire'), - 'Misery Mire - Map Chest': (0xEA6A, False, 'in Misery Mire'), - 'Misery Mire - Main Lobby': (0xEA5E, False, 'in Misery Mire'), - 'Misery Mire - Bridge Chest': (0xEA61, False, 'in Misery Mire'), - 'Misery Mire - Spike Chest': (0xE9DA, False, 'in Misery Mire'), - 'Misery Mire - Compass Chest': (0xEA64, False, 'in Misery Mire'), - 'Misery Mire - Big Key Chest': (0xEA6D, False, 'in Misery Mire'), - 'Misery Mire - Boss': (0x180158, False, 'with Vitreous'), - 'Turtle Rock - Compass Chest': (0xEA22, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Left': (0xEA1C, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Right': (0xEA1F, False, 'in Turtle Rock'), - 'Turtle Rock - Chain Chomps': (0xEA16, False, 'in Turtle Rock'), - 'Turtle Rock - Big Key Chest': (0xEA25, False, 'in Turtle Rock'), - 'Turtle Rock - Big Chest': (0xEA19, False, 'in Turtle Rock'), - 'Turtle Rock - Crystaroller Room': (0xEA34, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Left': (0xEA31, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Right': (0xEA2E, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Left': (0xEA2B, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Right': (0xEA28, False, 'in Turtle Rock'), - 'Turtle Rock - Boss': (0x180159, False, 'with Trinexx'), - 'Palace of Darkness - Shooter Room': (0xEA5B, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Bridge': (0xEA3D, False, 'in Palace of Darkness'), - 'Palace of Darkness - Stalfos Basement': (0xEA49, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Key Chest': (0xEA37, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Ledge': (0xEA3A, False, 'in Palace of Darkness'), - 'Palace of Darkness - Map Chest': (0xEA52, False, 'in Palace of Darkness'), - 'Palace of Darkness - Compass Chest': (0xEA43, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Left': (0xEA4C, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Right': (0xEA4F, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Top': (0xEA55, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Bottom': (0xEA58, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Chest': (0xEA40, False, 'in Palace of Darkness'), - 'Palace of Darkness - Harmless Hellway': (0xEA46, False, 'in Palace of Darkness'), - 'Palace of Darkness - Boss': (0x180153, False, 'with Helmasaur King'), - 'Ganons Tower - Bob\'s Torch': (0x180161, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Hope Room - Left': (0xEAD9, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Hope Room - Right': (0xEADC, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Tile Room': (0xEAE2, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Top Left': (0xEAE5, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Top Right': (0xEAE8, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Bottom Left': (0xEAEB, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Compass Room - Bottom Right': (0xEAEE, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Top Left': (0xEAB8, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Top Right': (0xEABB, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Bottom Left': (0xEABE, False, 'in Ganon\'s Tower'), - 'Ganons Tower - DMs Room - Bottom Right': (0xEAC1, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Map Chest': (0xEAD3, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Firesnake Room': (0xEAD0, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Top Left': (0xEAC4, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Top Right': (0xEAC7, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Bottom Left': (0xEACA, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Randomizer Room - Bottom Right': (0xEACD, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Bob\'s Chest': (0xEADF, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Chest': (0xEAD6, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Key Room - Left': (0xEAF4, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Key Room - Right': (0xEAF7, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Big Key Chest': (0xEAF1, False, 'in Ganon\'s Tower'), - 'Ganons Tower - Mini Helmasaur Room - Left': (0xEAFD, False, 'atop Ganon\'s Tower'), - 'Ganons Tower - Mini Helmasaur Room - Right': (0xEB00, False, 'atop Ganon\'s Tower'), - 'Ganons Tower - Pre-Moldorm Chest': (0xEB03, False, 'atop Ganon\'s Tower'), - 'Ganons Tower - Validation Chest': (0xEB06, False, 'atop Ganon\'s Tower'), - 'Ganon': (None, False, 'from me'), - 'Agahnim 1': (None, False, 'from Ganon\'s wizardry form'), - 'Agahnim 2': (None, False, 'from Ganon\'s wizardry form'), - 'Floodgate': (None, False, None), - 'Frog': (None, False, None), - 'Missing Smith': (None, False, None), - 'Dark Blacksmith Ruins': (None, False, None), - 'Eastern Palace - Prize': ([0x1209D, 0x53EF8, 0x53EF9, 0x180052, 0x18007C, 0xC6FE], True, 'Eastern Palace'), - 'Desert Palace - Prize': ([0x1209E, 0x53F1C, 0x53F1D, 0x180053, 0x180078, 0xC6FF], True, 'Desert Palace'), - 'Tower of Hera - Prize': ([0x120A5, 0x53F0A, 0x53F0B, 0x18005A, 0x18007A, 0xC706], True, 'Tower of Hera'), - 'Palace of Darkness - Prize': ([0x120A1, 0x53F00, 0x53F01, 0x180056, 0x18007D, 0xC702], True, 'Palace of Darkness'), - 'Swamp Palace - Prize': ([0x120A0, 0x53F6C, 0x53F6D, 0x180055, 0x180071, 0xC701], True, 'Swamp Palace'), - 'Thieves\' Town - Prize': ([0x120A6, 0x53F36, 0x53F37, 0x18005B, 0x180077, 0xC707], True, 'Thieves\' Town'), - 'Skull Woods - Prize': ([0x120A3, 0x53F12, 0x53F13, 0x180058, 0x18007B, 0xC704], True, 'Skull Woods'), - 'Ice Palace - Prize': ([0x120A4, 0x53F5A, 0x53F5B, 0x180059, 0x180073, 0xC705], True, 'Ice Palace'), - 'Misery Mire - Prize': ([0x120A2, 0x53F48, 0x53F49, 0x180057, 0x180075, 0xC703], True, 'Misery Mire'), - 'Turtle Rock - Prize': ([0x120A7, 0x53F24, 0x53F25, 0x18005C, 0x180079, 0xC708], True, 'Turtle Rock')} +location_table = {'Mushroom': (0x180013, 0x186338, False, 'in the woods'), + 'Bottle Merchant': (0x2eb18, 0x186339, False, 'with a merchant'), + 'Flute Spot': (0x18014a, 0x18633d, False, 'underground'), + 'Sunken Treasure': (0x180145, 0x186354, False, 'underwater'), + 'Purple Chest': (0x33d68, 0x186359, False, 'from a box'), + "Blind's Hideout - Top": (0xeb0f, 0x1862e3, False, 'in a basement'), + "Blind's Hideout - Left": (0xeb12, 0x1862e6, False, 'in a basement'), + "Blind's Hideout - Right": (0xeb15, 0x1862e9, False, 'in a basement'), + "Blind's Hideout - Far Left": (0xeb18, 0x1862ec, False, 'in a basement'), + "Blind's Hideout - Far Right": (0xeb1b, 0x1862ef, False, 'in a basement'), + "Link's Uncle": (0x2df45, 0x18635f, False, 'with your uncle'), + 'Secret Passage': (0xe971, 0x186145, False, 'near your uncle'), + 'King Zora': (0xee1c3, 0x186360, False, 'at a high price'), + "Zora's Ledge": (0x180149, 0x186358, False, 'near Zora'), + 'Waterfall Fairy - Left': (0xe9b0, 0x186184, False, 'near a fairy'), + 'Waterfall Fairy - Right': (0xe9d1, 0x1861a5, False, 'near a fairy'), + "King's Tomb": (0xe97a, 0x18614e, False, 'alone in a cave'), + 'Floodgate Chest': (0xe98c, 0x186160, False, 'in the dam'), + "Link's House": (0xe9bc, 0x186190, False, 'in your home'), + 'Kakariko Tavern': (0xe9ce, 0x1861a2, False, 'in the bar'), + 'Chicken House': (0xe9e9, 0x1861bd, False, 'near poultry'), + "Aginah's Cave": (0xe9f2, 0x1861c6, False, 'with Aginah'), + "Sahasrahla's Hut - Left": (0xea82, 0x186256, False, 'near the elder'), + "Sahasrahla's Hut - Middle": (0xea85, 0x186259, False, 'near the elder'), + "Sahasrahla's Hut - Right": (0xea88, 0x18625c, False, 'near the elder'), + 'Sahasrahla': (0x2f1fc, 0x186365, False, 'with the elder'), + 'Kakariko Well - Top': (0xea8e, 0x186262, False, 'in a well'), + 'Kakariko Well - Left': (0xea91, 0x186265, False, 'in a well'), + 'Kakariko Well - Middle': (0xea94, 0x186268, False, 'in a well'), + 'Kakariko Well - Right': (0xea97, 0x18626b, False, 'in a well'), + 'Kakariko Well - Bottom': (0xea9a, 0x18626e, False, 'in a well'), + 'Blacksmith': (0x18002a, 0x186366, False, 'with the smith'), + 'Magic Bat': (0x180015, 0x18635e, False, 'with the bat'), + 'Sick Kid': (0x339cf, 0x186367, False, 'with the sick'), + 'Hobo': (0x33e7d, 0x186368, False, 'with the hobo'), + 'Lost Woods Hideout': (0x180000, 0x186348, False, 'near a thief'), + 'Lumberjack Tree': (0x180001, 0x186349, False, 'in a hole'), + 'Cave 45': (0x180003, 0x18634b, False, 'alone in a cave'), + 'Graveyard Cave': (0x180004, 0x18634c, False, 'alone in a cave'), + 'Checkerboard Cave': (0x180005, 0x18634d, False, 'alone in a cave'), + 'Mini Moldorm Cave - Far Left': (0xeb42, 0x186316, False, 'near Moldorms'), + 'Mini Moldorm Cave - Left': (0xeb45, 0x186319, False, 'near Moldorms'), + 'Mini Moldorm Cave - Right': (0xeb48, 0x18631c, False, 'near Moldorms'), + 'Mini Moldorm Cave - Far Right': (0xeb4b, 0x18631f, False, 'near Moldorms'), + 'Mini Moldorm Cave - Generous Guy': (0x180010, 0x18635a, False, 'near Moldorms'), + 'Ice Rod Cave': (0xeb4e, 0x186322, False, 'in a frozen cave'), + 'Bonk Rock Cave': (0xeb3f, 0x186313, False, 'alone in a cave'), + 'Library': (0x180012, 0x18635c, False, 'near books'), + 'Potion Shop': (0x180014, 0x18635d, False, 'near potions'), + 'Lake Hylia Island': (0x180144, 0x186353, False, 'on an island'), + 'Maze Race': (0x180142, 0x186351, False, 'at the race'), + 'Desert Ledge': (0x180143, 0x186352, False, 'in the desert'), + 'Desert Palace - Big Chest': (0xe98f, 0x186163, False, 'in Desert Palace'), + 'Desert Palace - Torch': (0x180160, 0x186362, False, 'in Desert Palace'), + 'Desert Palace - Map Chest': (0xe9b6, 0x18618a, False, 'in Desert Palace'), + 'Desert Palace - Compass Chest': (0xe9cb, 0x18619f, False, 'in Desert Palace'), + 'Desert Palace - Big Key Chest': (0xe9c2, 0x186196, False, 'in Desert Palace'), + 'Desert Palace - Boss': (0x180151, 0x18633f, False, 'with Lanmolas'), + 'Eastern Palace - Compass Chest': (0xe977, 0x18614b, False, 'in Eastern Palace'), + 'Eastern Palace - Big Chest': (0xe97d, 0x186151, False, 'in Eastern Palace'), + 'Eastern Palace - Cannonball Chest': (0xe9b3, 0x186187, False, 'in Eastern Palace'), + 'Eastern Palace - Big Key Chest': (0xe9b9, 0x18618d, False, 'in Eastern Palace'), + 'Eastern Palace - Map Chest': (0xe9f5, 0x1861c9, False, 'in Eastern Palace'), + 'Eastern Palace - Boss': (0x180150, 0x18633e, False, 'with the Armos'), + 'Master Sword Pedestal': (0x289b0, 0x186369, False, 'at the pedestal'), + 'Hyrule Castle - Boomerang Chest': (0xe974, 0x186148, False, 'in Hyrule Castle'), + 'Hyrule Castle - Map Chest': (0xeb0c, 0x1862e0, False, 'in Hyrule Castle'), + "Hyrule Castle - Zelda's Chest": (0xeb09, 0x1862dd, False, 'in Hyrule Castle'), + 'Sewers - Dark Cross': (0xe96e, 0x186142, False, 'in the sewers'), + 'Sewers - Secret Room - Left': (0xeb5d, 0x186331, False, 'in the sewers'), + 'Sewers - Secret Room - Middle': (0xeb60, 0x186334, False, 'in the sewers'), + 'Sewers - Secret Room - Right': (0xeb63, 0x186337, False, 'in the sewers'), + 'Sanctuary': (0xea79, 0x18624d, False, 'in Sanctuary'), + 'Castle Tower - Room 03': (0xeab5, 0x186289, False, 'in Castle Tower'), + 'Castle Tower - Dark Maze': (0xeab2, 0x186286, False, 'in Castle Tower'), + 'Old Man': (0xf69fa, 0x186364, False, 'with the old man'), + 'Spectacle Rock Cave': (0x180002, 0x18634a, False, 'alone in a cave'), + 'Paradox Cave Lower - Far Left': (0xeb2a, 0x1862fe, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Left': (0xeb2d, 0x186301, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Right': (0xeb30, 0x186304, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Far Right': (0xeb33, 0x186307, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Middle': (0xeb36, 0x18630a, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Left': (0xeb39, 0x18630d, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Right': (0xeb3c, 0x186310, False, 'in a cave with seven chests'), + 'Spiral Cave': (0xe9bf, 0x186193, False, 'in spiral cave'), + 'Ether Tablet': (0x180016, 0x18633b, False, 'at a monolith'), + 'Spectacle Rock': (0x180140, 0x18634f, False, 'atop a rock'), + 'Tower of Hera - Basement Cage': (0x180162, 0x18633a, False, 'in Tower of Hera'), + 'Tower of Hera - Map Chest': (0xe9ad, 0x186181, False, 'in Tower of Hera'), + 'Tower of Hera - Big Key Chest': (0xe9e6, 0x1861ba, False, 'in Tower of Hera'), + 'Tower of Hera - Compass Chest': (0xe9fb, 0x1861cf, False, 'in Tower of Hera'), + 'Tower of Hera - Big Chest': (0xe9f8, 0x1861cc, False, 'in Tower of Hera'), + 'Tower of Hera - Boss': (0x180152, 0x186340, False, 'with Moldorm'), + 'Pyramid': (0x180147, 0x186356, False, 'on the pyramid'), + 'Catfish': (0xee185, 0x186361, False, 'with a catfish'), + 'Stumpy': (0x330c7, 0x18636a, False, 'with tree boy'), + 'Digging Game': (0x180148, 0x186357, False, 'underground'), + 'Bombos Tablet': (0x180017, 0x18633c, False, 'at a monolith'), + 'Hype Cave - Top': (0xeb1e, 0x1862f2, False, 'near a bat-like man'), + 'Hype Cave - Middle Right': (0xeb21, 0x1862f5, False, 'near a bat-like man'), + 'Hype Cave - Middle Left': (0xeb24, 0x1862f8, False, 'near a bat-like man'), + 'Hype Cave - Bottom': (0xeb27, 0x1862fb, False, 'near a bat-like man'), + 'Hype Cave - Generous Guy': (0x180011, 0x18635b, False, 'with a bat-like man'), + 'Peg Cave': (0x180006, 0x18634e, False, 'alone in a cave'), + 'Pyramid Fairy - Left': (0xe980, 0x186154, False, 'near a fairy'), + 'Pyramid Fairy - Right': (0xe983, 0x186157, False, 'near a fairy'), + 'Brewery': (0xe9ec, 0x1861c0, False, 'alone in a home'), + 'C-Shaped House': (0xe9ef, 0x1861c3, False, 'alone in a home'), + 'Chest Game': (0xeda8, 0x18636b, False, 'as a prize'), + 'Bumper Cave Ledge': (0x180146, 0x186355, False, 'on a ledge'), + 'Mire Shed - Left': (0xea73, 0x186247, False, 'near sparks'), + 'Mire Shed - Right': (0xea76, 0x18624a, False, 'near sparks'), + 'Superbunny Cave - Top': (0xea7c, 0x186250, False, 'in a connection'), + 'Superbunny Cave - Bottom': (0xea7f, 0x186253, False, 'in a connection'), + 'Spike Cave': (0xea8b, 0x18625f, False, 'beyond spikes'), + 'Hookshot Cave - Top Right': (0xeb51, 0x186325, False, 'across pits'), + 'Hookshot Cave - Top Left': (0xeb54, 0x186328, False, 'across pits'), + 'Hookshot Cave - Bottom Right': (0xeb5a, 0x18632e, False, 'across pits'), + 'Hookshot Cave - Bottom Left': (0xeb57, 0x18632b, False, 'across pits'), + 'Floating Island': (0x180141, 0x186350, False, 'on an island'), + 'Mimic Cave': (0xe9c5, 0x186199, False, 'in a cave of mimicry'), + 'Swamp Palace - Entrance': (0xea9d, 0x186271, False, 'in Swamp Palace'), + 'Swamp Palace - Map Chest': (0xe986, 0x18615a, False, 'in Swamp Palace'), + 'Swamp Palace - Big Chest': (0xe989, 0x18615d, False, 'in Swamp Palace'), + 'Swamp Palace - Compass Chest': (0xeaa0, 0x186274, False, 'in Swamp Palace'), + 'Swamp Palace - Big Key Chest': (0xeaa6, 0x18627a, False, 'in Swamp Palace'), + 'Swamp Palace - West Chest': (0xeaa3, 0x186277, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Left': (0xeaa9, 0x18627d, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Right': (0xeaac, 0x186280, False, 'in Swamp Palace'), + 'Swamp Palace - Waterfall Room': (0xeaaf, 0x186283, False, 'in Swamp Palace'), + 'Swamp Palace - Boss': (0x180154, 0x186342, False, 'with Arrghus'), + "Thieves' Town - Big Key Chest": (0xea04, 0x1861d8, False, "in Thieves' Town"), + "Thieves' Town - Map Chest": (0xea01, 0x1861d5, False, "in Thieves' Town"), + "Thieves' Town - Compass Chest": (0xea07, 0x1861db, False, "in Thieves' Town"), + "Thieves' Town - Ambush Chest": (0xea0a, 0x1861de, False, "in Thieves' Town"), + "Thieves' Town - Attic": (0xea0d, 0x1861e1, False, "in Thieves' Town"), + "Thieves' Town - Big Chest": (0xea10, 0x1861e4, False, "in Thieves' Town"), + "Thieves' Town - Blind's Cell": (0xea13, 0x1861e7, False, "in Thieves' Town"), + "Thieves' Town - Boss": (0x180156, 0x186344, False, 'with Blind'), + 'Skull Woods - Compass Chest': (0xe992, 0x186166, False, 'in Skull Woods'), + 'Skull Woods - Map Chest': (0xe99b, 0x18616f, False, 'in Skull Woods'), + 'Skull Woods - Big Chest': (0xe998, 0x18616c, False, 'in Skull Woods'), + 'Skull Woods - Pot Prison': (0xe9a1, 0x186175, False, 'in Skull Woods'), + 'Skull Woods - Pinball Room': (0xe9c8, 0x18619c, False, 'in Skull Woods'), + 'Skull Woods - Big Key Chest': (0xe99e, 0x186172, False, 'in Skull Woods'), + 'Skull Woods - Bridge Room': (0xe9fe, 0x1861d2, False, 'near Mothula'), + 'Skull Woods - Boss': (0x180155, 0x186343, False, 'with Mothula'), + 'Ice Palace - Compass Chest': (0xe9d4, 0x1861a8, False, 'in Ice Palace'), + 'Ice Palace - Freezor Chest': (0xe995, 0x186169, False, 'in Ice Palace'), + 'Ice Palace - Big Chest': (0xe9aa, 0x18617e, False, 'in Ice Palace'), + 'Ice Palace - Iced T Room': (0xe9e3, 0x1861b7, False, 'in Ice Palace'), + 'Ice Palace - Spike Room': (0xe9e0, 0x1861b4, False, 'in Ice Palace'), + 'Ice Palace - Big Key Chest': (0xe9a4, 0x186178, False, 'in Ice Palace'), + 'Ice Palace - Map Chest': (0xe9dd, 0x1861b1, False, 'in Ice Palace'), + 'Ice Palace - Boss': (0x180157, 0x186345, False, 'with Kholdstare'), + 'Misery Mire - Big Chest': (0xea67, 0x18623b, False, 'in Misery Mire'), + 'Misery Mire - Map Chest': (0xea6a, 0x18623e, False, 'in Misery Mire'), + 'Misery Mire - Main Lobby': (0xea5e, 0x186232, False, 'in Misery Mire'), + 'Misery Mire - Bridge Chest': (0xea61, 0x186235, False, 'in Misery Mire'), + 'Misery Mire - Spike Chest': (0xe9da, 0x1861ae, False, 'in Misery Mire'), + 'Misery Mire - Compass Chest': (0xea64, 0x186238, False, 'in Misery Mire'), + 'Misery Mire - Big Key Chest': (0xea6d, 0x186241, False, 'in Misery Mire'), + 'Misery Mire - Boss': (0x180158, 0x186346, False, 'with Vitreous'), + 'Turtle Rock - Compass Chest': (0xea22, 0x1861f6, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Left': (0xea1c, 0x1861f0, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Right': (0xea1f, 0x1861f3, False, 'in Turtle Rock'), + 'Turtle Rock - Chain Chomps': (0xea16, 0x1861ea, False, 'in Turtle Rock'), + 'Turtle Rock - Big Key Chest': (0xea25, 0x1861f9, False, 'in Turtle Rock'), + 'Turtle Rock - Big Chest': (0xea19, 0x1861ed, False, 'in Turtle Rock'), + 'Turtle Rock - Crystaroller Room': (0xea34, 0x186208, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Left': (0xea31, 0x186205, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Right': (0xea2e, 0x186202, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Left': (0xea2b, 0x1861ff, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Right': (0xea28, 0x1861fc, False, 'in Turtle Rock'), + 'Turtle Rock - Boss': (0x180159, 0x186347, False, 'with Trinexx'), + 'Palace of Darkness - Shooter Room': (0xea5b, 0x18622f, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Bridge': (0xea3d, 0x186211, False, 'in Palace of Darkness'), + 'Palace of Darkness - Stalfos Basement': (0xea49, 0x18621d, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Key Chest': (0xea37, 0x18620b, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Ledge': (0xea3a, 0x18620e, False, 'in Palace of Darkness'), + 'Palace of Darkness - Map Chest': (0xea52, 0x186226, False, 'in Palace of Darkness'), + 'Palace of Darkness - Compass Chest': (0xea43, 0x186217, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Left': (0xea4c, 0x186220, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Right': (0xea4f, 0x186223, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Top': (0xea55, 0x186229, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Bottom': (0xea58, 0x18622c, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Chest': (0xea40, 0x186214, False, 'in Palace of Darkness'), + 'Palace of Darkness - Harmless Hellway': (0xea46, 0x18621a, False, 'in Palace of Darkness'), + 'Palace of Darkness - Boss': (0x180153, 0x186341, False, 'with Helmasaur King'), + "Ganons Tower - Bob's Torch": (0x180161, 0x186363, False, "in Ganon's Tower"), + 'Ganons Tower - Hope Room - Left': (0xead9, 0x1862ad, False, "in Ganon's Tower"), + 'Ganons Tower - Hope Room - Right': (0xeadc, 0x1862b0, False, "in Ganon's Tower"), + 'Ganons Tower - Tile Room': (0xeae2, 0x1862b6, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Top Left': (0xeae5, 0x1862b9, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Top Right': (0xeae8, 0x1862bc, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Bottom Left': (0xeaeb, 0x1862bf, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Bottom Right': (0xeaee, 0x1862c2, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Top Left': (0xeab8, 0x18628c, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Top Right': (0xeabb, 0x18628f, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Bottom Left': (0xeabe, 0x186292, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Bottom Right': (0xeac1, 0x186295, False, "in Ganon's Tower"), + 'Ganons Tower - Map Chest': (0xead3, 0x1862a7, False, "in Ganon's Tower"), + 'Ganons Tower - Firesnake Room': (0xead0, 0x1862a4, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Top Left': (0xeac4, 0x186298, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Top Right': (0xeac7, 0x18629b, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Bottom Left': (0xeaca, 0x18629e, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Bottom Right': (0xeacd, 0x1862a1, False, "in Ganon's Tower"), + "Ganons Tower - Bob's Chest": (0xeadf, 0x1862b3, False, "in Ganon's Tower"), + 'Ganons Tower - Big Chest': (0xead6, 0x1862aa, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Room - Left': (0xeaf4, 0x1862c8, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Room - Right': (0xeaf7, 0x1862cb, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Chest': (0xeaf1, 0x1862c5, False, "in Ganon's Tower"), + 'Ganons Tower - Mini Helmasaur Room - Left': (0xeafd, 0x1862d1, False, "atop Ganon's Tower"), + 'Ganons Tower - Mini Helmasaur Room - Right': (0xeb00, 0x1862d4, False, "atop Ganon's Tower"), + 'Ganons Tower - Pre-Moldorm Chest': (0xeb03, 0x1862d7, False, "atop Ganon's Tower"), + 'Ganons Tower - Validation Chest': (0xeb06, 0x1862da, False, "atop Ganon's Tower"), + 'Ganon': (None, None, False, 'from me'), + 'Agahnim 1': (None, None, False, 'from Ganon\'s wizardry form'), + 'Agahnim 2': (None, None, False, 'from Ganon\'s wizardry form'), + 'Floodgate': (None, None, False, None), + 'Frog': (None, None, False, None), + 'Missing Smith': (None, None, False, None), + 'Dark Blacksmith Ruins': (None, None, False, None), + 'Eastern Palace - Prize': ([0x1209D, 0x53EF8, 0x53EF9, 0x180052, 0x18007C, 0xC6FE], None, True, 'Eastern Palace'), + 'Desert Palace - Prize': ([0x1209E, 0x53F1C, 0x53F1D, 0x180053, 0x180078, 0xC6FF], None, True, 'Desert Palace'), + 'Tower of Hera - Prize': ([0x120A5, 0x53F0A, 0x53F0B, 0x18005A, 0x18007A, 0xC706], None, True, 'Tower of Hera'), + 'Palace of Darkness - Prize': ([0x120A1, 0x53F00, 0x53F01, 0x180056, 0x18007D, 0xC702], None, True, 'Palace of Darkness'), + 'Swamp Palace - Prize': ([0x120A0, 0x53F6C, 0x53F6D, 0x180055, 0x180071, 0xC701], None, True, 'Swamp Palace'), + 'Thieves\' Town - Prize': ([0x120A6, 0x53F36, 0x53F37, 0x18005B, 0x180077, 0xC707], None, True, 'Thieves\' Town'), + 'Skull Woods - Prize': ([0x120A3, 0x53F12, 0x53F13, 0x180058, 0x18007B, 0xC704], None, True, 'Skull 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')} diff --git a/Main.py b/Main.py index ad4184fb..851a8cfc 100644 --- a/Main.py +++ b/Main.py @@ -4,6 +4,7 @@ from itertools import zip_longest import json import logging import os +import pickle import random import time @@ -16,7 +17,7 @@ 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 Utils import output_path +from Utils import output_path, parse_names_string __version__ = '0.6.3-pre' @@ -120,16 +121,18 @@ def main(args, seed=None): else: sprite = None + player_names = parse_names_string(args.names) outfilebase = 'ER_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s_%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "", world.seed) use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) jsonout = {} if not args.suppress_rom: - if world.players > 1: - raise NotImplementedError("Multiworld rom writes have not been implemented") - else: - player = 1 + from MultiServer import MultiWorld + multidata = MultiWorld() + multidata.players = world.players + + for player in range(1, world.players + 1): local_rom = None if args.jsonout: @@ -147,17 +150,25 @@ def main(args, seed=None): if use_enemizer: enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shuffleenemies, args.enemy_health, args.enemy_damage, args.shufflepalette, args.shufflepots) + multidata.rom_names[player] = list(rom.name) + for location in world.get_filled_locations(player): + if type(location.address) is int: + multidata.locations[(location.address, player)] = (location.item.code, location.item.player) + if args.jsonout: - jsonout['patch'] = rom.patches + jsonout[f'patch{player}'] = rom.patches if use_enemizer: - jsonout['enemizer' % player] = enemizer_patch + jsonout[f'enemizer{player}'] = enemizer_patch else: if use_enemizer: local_rom.patch_enemizer(rom.patches, os.path.join(os.path.dirname(args.enemizercli), "enemizerBasePatch.json"), enemizer_patch) rom = local_rom - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite) - rom.write_to_file(output_path('%s.sfc' % outfilebase)) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) + rom.write_to_file(output_path(f'{outfilebase}{f"_P{player}" if world.players > 1 else ""}{f"_{player_names[player]}" if player in player_names else ""}.sfc')) + + with open(output_path('%s_multidata' % outfilebase), 'wb') as f: + pickle.dump(multidata, f, pickle.HIGHEST_PROTOCOL) if args.create_spoiler and not args.jsonout: world.spoiler.to_file(output_path('%s_Spoiler.txt' % outfilebase)) diff --git a/MultiClient.py b/MultiClient.py new file mode 100644 index 00000000..a112715c --- /dev/null +++ b/MultiClient.py @@ -0,0 +1,920 @@ +import argparse +import asyncio +import json +import logging +import re +import subprocess +import sys + +import Items +import Regions + +while True: + try: + import aioconsole + break + except ImportError: + aioconsole = None + print('Required python module "aioconsole" not found, press enter to install it') + input() + subprocess.call([sys.executable, '-m', 'pip', 'install', '--upgrade', 'aioconsole']) + +while True: + try: + import websockets + break + except ImportError: + websockets = None + print('Required python module "websockets" not found, press enter to install it') + input() + subprocess.call([sys.executable, '-m', 'pip', 'install', '--upgrade', 'websockets']) + +try: + import colorama +except ImportError: + colorama = None + +class ReceivedItem: + def __init__(self, item, location, player_id, player_name): + self.item = item + self.location = location + self.player_id = player_id + self.player_name = player_name + +class Context: + def __init__(self, snes_address, server_address, password, name, team, slot): + self.snes_address = snes_address + self.server_address = server_address + + self.exit_event = asyncio.Event() + + self.input_queue = asyncio.Queue() + self.input_requests = 0 + + self.snes_socket = None + self.snes_state = SNES_DISCONNECTED + self.snes_recv_queue = asyncio.Queue() + self.snes_request_lock = asyncio.Lock() + self.is_sd2snes = False + self.snes_write_buffer = [] + + self.server_task = None + self.socket = None + self.password = password + + self.name = name + self.team = team + self.slot = slot + + self.locations_checked = set() + self.items_received = [] + self.last_rom = None + self.expected_rom = None + self.rom_confirmed = False + +def color_code(*args): + codes = {'reset': 0, 'bold': 1, 'underline': 4, 'black': 30, 'red': 31, 'green': 32, 'yellow': 33, 'blue': 34, + 'magenta': 35, 'cyan': 36, 'white': 37 , 'black_bg': 40, 'red_bg': 41, 'green_bg': 42, 'yellow_bg': 43, + 'blue_bg': 44, 'purple_bg': 45, 'cyan_bg': 46, 'white_bg': 47} + return '\033[' + ';'.join([str(codes[arg]) for arg in args]) + 'm' + +def color(text, *args): + return color_code(*args) + text + color_code('reset') + + +ROM_START = 0x000000 +WRAM_START = 0xF50000 +WRAM_SIZE = 0x20000 +SRAM_START = 0xE00000 + +ROMNAME_START = SRAM_START + 0x2000 +ROMNAME_SIZE = 0x15 + +INGAME_MODES = {0x07, 0x09, 0x0b} + +SAVEDATA_START = WRAM_START + 0xF000 +SAVEDATA_SIZE = 0x500 + +RECV_PROGRESS_ADDR = SAVEDATA_START + 0x4D0 # 2 bytes +RECV_ITEM_ADDR = SAVEDATA_START + 0x4D2 # 1 byte +RECV_ITEM_PLAYER_ADDR = SAVEDATA_START + 0x4D3 # 1 byte +ROOMID_ADDR = SAVEDATA_START + 0x4D4 # 2 bytes +ROOMDATA_ADDR = SAVEDATA_START + 0x4D6 # 1 byte + +location_table_uw = {"Blind's Hideout - Top": (0x11d, 0x10), + "Blind's Hideout - Left": (0x11d, 0x20), + "Blind's Hideout - Right": (0x11d, 0x40), + "Blind's Hideout - Far Left": (0x11d, 0x80), + "Blind's Hideout - Far Right": (0x11d, 0x100), + 'Secret Passage': (0x55, 0x10), + 'Waterfall Fairy - Left': (0x114, 0x10), + 'Waterfall Fairy - Right': (0x114, 0x20), + "King's Tomb": (0x113, 0x10), + 'Floodgate Chest': (0x10b, 0x10), + "Link's House": (0x104, 0x10), + 'Kakariko Tavern': (0x103, 0x10), + 'Chicken House': (0x108, 0x10), + "Aginah's Cave": (0x10a, 0x10), + "Sahasrahla's Hut - Left": (0x105, 0x10), + "Sahasrahla's Hut - Middle": (0x105, 0x20), + "Sahasrahla's Hut - Right": (0x105, 0x40), + 'Kakariko Well - Top': (0x2f, 0x10), + 'Kakariko Well - Left': (0x2f, 0x20), + 'Kakariko Well - Middle': (0x2f, 0x40), + 'Kakariko Well - Right': (0x2f, 0x80), + 'Kakariko Well - Bottom': (0x2f, 0x100), + 'Lost Woods Hideout': (0xe1, 0x200), + 'Lumberjack Tree': (0xe2, 0x200), + 'Cave 45': (0x11b, 0x400), + 'Graveyard Cave': (0x11b, 0x200), + 'Checkerboard Cave': (0x126, 0x200), + 'Mini Moldorm Cave - Far Left': (0x123, 0x10), + 'Mini Moldorm Cave - Left': (0x123, 0x20), + 'Mini Moldorm Cave - Right': (0x123, 0x40), + 'Mini Moldorm Cave - Far Right': (0x123, 0x80), + 'Mini Moldorm Cave - Generous Guy': (0x123, 0x400), + 'Ice Rod Cave': (0x120, 0x10), + 'Bonk Rock Cave': (0x124, 0x10), + 'Desert Palace - Big Chest': (0x73, 0x10), + 'Desert Palace - Torch': (0x73, 0x400), + 'Desert Palace - Map Chest': (0x74, 0x10), + 'Desert Palace - Compass Chest': (0x85, 0x10), + 'Desert Palace - Big Key Chest': (0x75, 0x10), + 'Desert Palace - Boss': (0x33, 0x800), + 'Eastern Palace - Compass Chest': (0xa8, 0x10), + 'Eastern Palace - Big Chest': (0xa9, 0x10), + '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 - Map Chest': (0x72, 0x10), + "Hyrule Castle - Zelda's Chest": (0x80, 0x10), + 'Sewers - Dark Cross': (0x32, 0x10), + '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), + 'Spectacle Rock Cave': (0xea, 0x400), + 'Paradox Cave Lower - Far Left': (0xef, 0x10), + 'Paradox Cave Lower - Left': (0xef, 0x20), + 'Paradox Cave Lower - Right': (0xef, 0x40), + 'Paradox Cave Lower - Far Right': (0xef, 0x80), + 'Paradox Cave Lower - Middle': (0xef, 0x100), + 'Paradox Cave Upper - Left': (0xff, 0x10), + 'Paradox Cave Upper - Right': (0xff, 0x20), + 'Spiral Cave': (0xfe, 0x10), + 'Tower of Hera - Basement Cage': (0x87, 0x400), + 'Tower of Hera - Map Chest': (0x77, 0x10), + 'Tower of Hera - Big Key Chest': (0x87, 0x10), + 'Tower of Hera - Compass Chest': (0x27, 0x20), + 'Tower of Hera - Big Chest': (0x27, 0x10), + 'Tower of Hera - Boss': (0x7, 0x800), + 'Hype Cave - Top': (0x11e, 0x10), + 'Hype Cave - Middle Right': (0x11e, 0x20), + 'Hype Cave - Middle Left': (0x11e, 0x40), + 'Hype Cave - Bottom': (0x11e, 0x80), + 'Hype Cave - Generous Guy': (0x11e, 0x400), + 'Peg Cave': (0x127, 0x400), + 'Pyramid Fairy - Left': (0x116, 0x10), + 'Pyramid Fairy - Right': (0x116, 0x20), + 'Brewery': (0x106, 0x10), + 'C-Shaped House': (0x11c, 0x10), + 'Chest Game': (0x106, 0x400), + 'Mire Shed - Left': (0x10d, 0x10), + 'Mire Shed - Right': (0x10d, 0x20), + 'Superbunny Cave - Top': (0xf8, 0x10), + 'Superbunny Cave - Bottom': (0xf8, 0x20), + 'Spike Cave': (0x117, 0x10), + 'Hookshot Cave - Top Right': (0x3c, 0x10), + 'Hookshot Cave - Top Left': (0x3c, 0x20), + 'Hookshot Cave - Bottom Right': (0x3c, 0x80), + 'Hookshot Cave - Bottom Left': (0x3c, 0x40), + 'Mimic Cave': (0x10c, 0x10), + 'Swamp Palace - Entrance': (0x28, 0x10), + 'Swamp Palace - Map Chest': (0x37, 0x10), + 'Swamp Palace - Big Chest': (0x36, 0x10), + 'Swamp Palace - Compass Chest': (0x46, 0x10), + '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 - 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 - Attic": (0x65, 0x10), + "Thieves' Town - Big Chest": (0x44, 0x10), + "Thieves' Town - Blind's Cell": (0x45, 0x10), + "Thieves' Town - Boss": (0xac, 0x800), + 'Skull Woods - Compass Chest': (0x67, 0x10), + 'Skull Woods - Map Chest': (0x58, 0x20), + 'Skull Woods - Big Chest': (0x58, 0x10), + 'Skull Woods - Pot Prison': (0x57, 0x20), + 'Skull Woods - Pinball Room': (0x68, 0x10), + 'Skull Woods - Big Key Chest': (0x57, 0x10), + 'Skull Woods - Bridge Room': (0x59, 0x10), + 'Skull Woods - Boss': (0x29, 0x800), + 'Ice Palace - Compass Chest': (0x2e, 0x10), + 'Ice Palace - Freezor Chest': (0x7e, 0x10), + 'Ice Palace - Big Chest': (0x9e, 0x10), + 'Ice Palace - Iced T Room': (0xae, 0x10), + 'Ice Palace - Spike Room': (0x5f, 0x10), + 'Ice Palace - Big Key Chest': (0x1f, 0x10), + '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 - Spike Chest': (0xb3, 0x10), + '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 - Chain Chomps': (0xb6, 0x10), + 'Turtle Rock - Big Key Chest': (0x14, 0x10), + 'Turtle Rock - Big Chest': (0x24, 0x10), + 'Turtle Rock - Crystaroller Room': (0x4, 0x10), + 'Turtle Rock - Eye Bridge - Bottom Left': (0xd5, 0x80), + 'Turtle Rock - Eye Bridge - Bottom Right': (0xd5, 0x40), + 'Turtle Rock - Eye Bridge - Top Left': (0xd5, 0x20), + 'Turtle Rock - Eye Bridge - Top Right': (0xd5, 0x10), + 'Turtle Rock - Boss': (0xa4, 0x800), + 'Palace of Darkness - Shooter Room': (0x9, 0x10), + 'Palace of Darkness - The Arena - Bridge': (0x2a, 0x20), + 'Palace of Darkness - Stalfos Basement': (0xa, 0x10), + 'Palace of Darkness - Big Key Chest': (0x3a, 0x10), + 'Palace of Darkness - The Arena - Ledge': (0x2a, 0x10), + 'Palace of Darkness - Map Chest': (0x2b, 0x10), + 'Palace of Darkness - Compass Chest': (0x1a, 0x20), + 'Palace of Darkness - Dark Basement - Left': (0x6a, 0x10), + 'Palace of Darkness - Dark Basement - Right': (0x6a, 0x20), + 'Palace of Darkness - Dark Maze - Top': (0x19, 0x10), + 'Palace of Darkness - Dark Maze - Bottom': (0x19, 0x20), + 'Palace of Darkness - Big Chest': (0x1a, 0x10), + 'Palace of Darkness - Harmless Hellway': (0x1a, 0x40), + 'Palace of Darkness - Boss': (0x5a, 0x800), + "Ganons Tower - Bob's Torch": (0x8c, 0x400), + 'Ganons Tower - Hope Room - Left': (0x8c, 0x20), + 'Ganons Tower - Hope Room - Right': (0x8c, 0x40), + 'Ganons Tower - Tile Room': (0x8d, 0x10), + 'Ganons Tower - Compass Room - Top Left': (0x9d, 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 - 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 - Firesnake Room': (0x7d, 0x10), + 'Ganons Tower - Randomizer Room - Top Left': (0x7c, 0x10), + 'Ganons Tower - Randomizer Room - Top Right': (0x7c, 0x20), + 'Ganons Tower - Randomizer Room - Bottom Left': (0x7c, 0x40), + 'Ganons Tower - Randomizer Room - Bottom Right': (0x7c, 0x80), + "Ganons Tower - Bob's Chest": (0x8c, 0x80), + 'Ganons Tower - Big Chest': (0x8c, 0x10), + 'Ganons Tower - Big Key Room - Left': (0x1c, 0x20), + 'Ganons Tower - Big Key Room - Right': (0x1c, 0x40), + '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 - Pre-Moldorm Chest': (0x3d, 0x40), + 'Ganons Tower - Validation Chest': (0x4d, 0x10)} +location_table_npc = {'Mushroom': 0x1000, + 'King Zora': 0x2, + 'Sahasrahla': 0x10, + 'Blacksmith': 0x400, + 'Magic Bat': 0x8000, + 'Sick Kid': 0x4, + 'Library': 0x80, + 'Potion Shop': 0x2000, + 'Old Man': 0x1, + 'Ether Tablet': 0x100, + 'Catfish': 0x20, + 'Stumpy': 0x8, + 'Bombos Tablet': 0x200} +location_table_ow = {'Flute Spot': 0x2a, + 'Sunken Treasure': 0x3b, + "Zora's Ledge": 0x81, + 'Lake Hylia Island': 0x35, + 'Maze Race': 0x28, + 'Desert Ledge': 0x30, + 'Master Sword Pedestal': 0x80, + 'Spectacle Rock': 0x3, + 'Pyramid': 0x5b, + 'Digging Game': 0x68, + 'Bumper Cave Ledge': 0x4a, + 'Floating Island': 0x5} +location_table_misc = {'Bottle Merchant': (0x3c9, 0x2), + 'Purple Chest': (0x3c9, 0x10), + "Link's Uncle": (0x3c6, 0x1), + 'Hobo': (0x3c9, 0x1)} + +SNES_DISCONNECTED = 0 +SNES_CONNECTING = 1 +SNES_CONNECTED = 2 +SNES_ATTACHED = 3 + +async def snes_connect(ctx : Context, address = None): + if ctx.snes_socket is not None: + print('Already connected to snes') + return + + ctx.snes_state = SNES_CONNECTING + recv_task = None + + if address is None: + address = 'ws://' + ctx.snes_address + + print("Connecting to QUsb2snes at %s ..." % address) + + try: + ctx.snes_socket = await websockets.connect(address, ping_timeout=None, ping_interval=None) + ctx.snes_state = SNES_CONNECTED + + DeviceList_Request = { + "Opcode" : "DeviceList", + "Space" : "SNES" + } + await ctx.snes_socket.send(json.dumps(DeviceList_Request)) + + reply = json.loads(await ctx.snes_socket.recv()) + devices = reply['Results'] if 'Results' in reply and len(reply['Results']) > 0 else None + + if not devices: + raise Exception('No device found') + + print("Available devices:") + for id, device in enumerate(devices): + print("[%d] %s" % (id + 1, device)) + + device = None + while True: + print("Enter a number:") + choice = await console_input(ctx) + if choice is None: + raise Exception('Abort input') + if not choice.isdigit() or int(choice) < 1 or int(choice) > len(devices): + print("Invalid choice (%s)" % choice) + continue + + device = devices[int(choice) - 1] + break + + print("Attaching to " + device) + + Attach_Request = { + "Opcode" : "Attach", + "Space" : "SNES", + "Operands" : [device] + } + await ctx.snes_socket.send(json.dumps(Attach_Request)) + ctx.snes_state = SNES_ATTACHED + + if 'SD2SNES'.lower() in device.lower() or (len(device) == 4 and device[:3] == 'COM'): + print("SD2SNES Detected") + ctx.is_sd2snes = True + await ctx.snes_socket.send(json.dumps({"Opcode" : "Info", "Space" : "SNES"})) + reply = json.loads(await ctx.snes_socket.recv()) + if reply and 'Results' in reply: + print(reply['Results']) + else: + ctx.is_sd2snes = False + + recv_task = asyncio.create_task(snes_recv_loop(ctx)) + + except Exception as e: + print("Error connecting to snes (%s)" % e) + if recv_task is not None: + if not ctx.snes_socket.closed: + await ctx.snes_socket.close() + else: + if ctx.snes_socket is not None: + if not ctx.snes_socket.closed: + await ctx.snes_socket.close() + ctx.snes_socket = None + ctx.snes_state = SNES_DISCONNECTED + +async def snes_recv_loop(ctx : Context): + try: + async for msg in ctx.snes_socket: + ctx.snes_recv_queue.put_nowait(msg) + print("Snes disconnected, type /snes to reconnect") + except Exception as e: + print("Lost connection to the snes, type /snes to reconnect") + if type(e) is not websockets.ConnectionClosed: + logging.exception(e) + finally: + socket, ctx.snes_socket = ctx.snes_socket, None + if socket is not None and not socket.closed: + await socket.close() + + ctx.snes_state = SNES_DISCONNECTED + ctx.snes_recv_queue = asyncio.Queue() + ctx.hud_message_queue = [] + + ctx.rom_confirmed = False + ctx.last_rom = None + +async def snes_read(ctx : Context, address, size): + try: + await ctx.snes_request_lock.acquire() + + if ctx.snes_state != SNES_ATTACHED or ctx.snes_socket is None or not ctx.snes_socket.open or ctx.snes_socket.closed: + return None + + GetAddress_Request = { + "Opcode" : "GetAddress", + "Space" : "SNES", + "Operands" : [hex(address)[2:], hex(size)[2:]] + } + try: + await ctx.snes_socket.send(json.dumps(GetAddress_Request)) + except websockets.ConnectionClosed: + return None + + data = bytes() + while len(data) < size: + try: + data += await asyncio.wait_for(ctx.snes_recv_queue.get(), 5) + except asyncio.TimeoutError: + break + + if len(data) != size: + print('Error reading %s, requested %d bytes, received %d' % (hex(address), size, len(data))) + if len(data): + print(str(data)) + if ctx.snes_socket is not None and not ctx.snes_socket.closed: + await ctx.snes_socket.close() + return None + + return data + finally: + ctx.snes_request_lock.release() + +async def snes_write(ctx : Context, write_list): + try: + await ctx.snes_request_lock.acquire() + + if ctx.snes_state != SNES_ATTACHED or ctx.snes_socket is None or not ctx.snes_socket.open or ctx.snes_socket.closed: + return False + + PutAddress_Request = { + "Opcode" : "PutAddress", + "Operands" : [] + } + + if ctx.is_sd2snes: + cmd = b'\x00\xE2\x20\x48\xEB\x48' + + for address, data in write_list: + if (address < WRAM_START) or ((address + len(data)) > (WRAM_START + WRAM_SIZE)): + print("SD2SNES: Write out of range %s (%d)" % (hex(address), len(data))) + return False + for ptr, byte in enumerate(data, address + 0x7E0000 - WRAM_START): + cmd += b'\xA9' # LDA + cmd += bytes([byte]) + cmd += b'\x8F' # STA.l + cmd += bytes([ptr & 0xFF, (ptr >> 8) & 0xFF, (ptr >> 16) & 0xFF]) + + cmd += b'\xA9\x00\x8F\x00\x2C\x00\x68\xEB\x68\x28\x6C\xEA\xFF\x08' + + PutAddress_Request['Space'] = 'CMD' + PutAddress_Request['Operands'] = ["2C00", hex(len(cmd)-1)[2:], "2C00", "1"] + try: + if ctx.snes_socket is not None: + await ctx.snes_socket.send(json.dumps(PutAddress_Request)) + if ctx.snes_socket is not None: + await ctx.snes_socket.send(cmd) + except websockets.ConnectionClosed: + return False + else: + PutAddress_Request['Space'] = 'SNES' + try: + #will pack those requests as soon as qusb2snes actually supports that for real + for address, data in write_list: + PutAddress_Request['Operands'] = [hex(address)[2:], hex(len(data))[2:]] + if ctx.snes_socket is not None: + await ctx.snes_socket.send(json.dumps(PutAddress_Request)) + if ctx.snes_socket is not None: + await ctx.snes_socket.send(data) + except websockets.ConnectionClosed: + return False + + return True + finally: + ctx.snes_request_lock.release() + +def snes_buffered_write(ctx : Context, address, data): + if len(ctx.snes_write_buffer) > 0 and (ctx.snes_write_buffer[-1][0] + len(ctx.snes_write_buffer[-1][1])) == address: + ctx.snes_write_buffer[-1] = (ctx.snes_write_buffer[-1][0], ctx.snes_write_buffer[-1][1] + data) + else: + ctx.snes_write_buffer.append((address, data)) + +async def snes_flush_writes(ctx : Context): + if not ctx.snes_write_buffer: + return + + await snes_write(ctx, ctx.snes_write_buffer) + ctx.snes_write_buffer = [] + +async def send_msgs(websocket, msgs): + if not websocket or not websocket.open or websocket.closed: + return + try: + await websocket.send(json.dumps(msgs)) + except websockets.ConnectionClosed: + pass + +async def server_loop(ctx : Context): + if ctx.socket is not None: + print('Already connected') + return + + while not ctx.server_address: + print('Enter multiworld server address') + ctx.server_address = await console_input(ctx) + + address = 'ws://' + ctx.server_address + + print('Connecting to multiworld server at %s' % address) + try: + ctx.socket = await websockets.connect(address, ping_timeout=None, ping_interval=None) + print('Connected') + + async for data in ctx.socket: + for msg in json.loads(data): + cmd, args = (msg[0], msg[1]) if len(msg) > 1 else (msg, None) + await process_server_cmd(ctx, cmd, args) + print('Disconnected from multiworld server, type /connect to reconnect') + except ConnectionRefusedError: + print('Connection refused by the multiworld server') + except (OSError, websockets.InvalidURI): + print('Failed to connect to the multiworld server') + except Exception as e: + print('Lost connection to the multiworld server, type /connect to reconnect') + if type(e) is not websockets.ConnectionClosed: + logging.exception(e) + finally: + ctx.name = None + ctx.team = None + ctx.slot = None + ctx.expected_rom = None + ctx.rom_confirmed = False + socket, ctx.socket = ctx.socket, None + if socket is not None and not socket.closed: + await socket.close() + ctx.server_task = None + +async def process_server_cmd(ctx : Context, cmd, args): + if cmd == 'RoomInfo': + print('--------------------------------') + print('Room Information:') + print('--------------------------------') + if args['password']: + print('Password required') + print('%d players seed' % args['slots']) + if len(args['players']) < 1: + print('No player connected') + else: + args['players'].sort(key=lambda player: ('' if not player[1] else player[1].lower(), player[2])) + current_team = 0 + print('Connected players:') + for name, team, slot in args['players']: + if team != current_team: + print(' Default team' if not team else ' Team: %s' % team) + current_team = team + print(' %s (Player %d)' % (name, slot)) + await server_auth(ctx, args['password']) + + if cmd == 'ConnectionRefused': + password_requested = False + if 'InvalidPassword' in args: + print('Invalid password') + ctx.password = None + password_requested = True + if 'InvalidName' in args: + print('Invalid name') + ctx.name = None + if 'NameAlreadyTaken' in args: + print('Name already taken') + ctx.name = None + if 'InvalidTeam' in args: + print('Invalid team name') + ctx.team = None + if 'InvalidSlot' in args: + print('Invalid player slot') + ctx.slot = None + if 'SlotAlreadyTaken' in args: + print('Player slot already in use for that team') + ctx.team = None + ctx.slot = None + await server_auth(ctx, password_requested) + + if cmd == 'Connected': + ctx.expected_rom = args + if ctx.last_rom == ctx.expected_rom: + rom_confirmed(ctx) + if ctx.locations_checked: + await send_msgs(ctx.socket, [['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]]) + elif ctx.last_rom is not None: + raise Exception('Different ROM expected from server') + + if cmd == 'ReceivedItems': + start_index, items = args + if start_index == 0: + ctx.items_received = [] + 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]]) + await send_msgs(ctx.socket, sync_msg) + if start_index == len(ctx.items_received): + for item in items: + ctx.items_received.append(ReceivedItem(item[0], item[1], item[2], item[3])) + + if cmd == 'ItemSent': + player_sent, player_recvd, item, location = args + item = color(get_item_name_from_id(item), 'cyan' if player_sent != ctx.name else 'green') + player_sent = color(player_sent, 'yellow' if player_sent != ctx.name else 'magenta') + player_recvd = color(player_recvd, 'yellow' if player_recvd != ctx.name else 'magenta') + print('(%s) %s sent %s to %s (%s)' % (ctx.team if ctx.team else 'Team', player_sent, item, player_recvd, get_location_name_from_address(location))) + + if cmd == 'Print': + print(args) + +async def server_auth(ctx : Context, password_requested): + if password_requested and not ctx.password: + print('Enter the password required to join this game:') + ctx.password = await console_input(ctx) + while not ctx.name or not re.match(r'\w{1,10}', ctx.name): + print('Enter your name (10 characters):') + ctx.name = await console_input(ctx) + if not ctx.team: + print('Enter your team name (optional):') + ctx.team = await console_input(ctx) + if ctx.team == '': ctx.team = None + if not ctx.slot: + print('Choose your player slot (optional):') + slot = await console_input(ctx) + ctx.slot = int(slot) if slot.isdigit() else None + await send_msgs(ctx.socket, [['Connect', {'password': ctx.password, 'name': ctx.name, 'team': ctx.team, 'slot': ctx.slot}]]) + +async def console_input(ctx : Context): + ctx.input_requests += 1 + return await ctx.input_queue.get() + +async def console_loop(ctx : Context): + while not ctx.exit_event.is_set(): + input = await aioconsole.ainput() + + if ctx.input_requests > 0: + ctx.input_requests -= 1 + ctx.input_queue.put_nowait(input) + continue + + command = input.split() + if not command: + continue + + if command[0] == '/exit': + ctx.exit_event.set() + + if command[0] == '/installcolors' and 'colorama' not in sys.modules: + subprocess.call([sys.executable, '-m', 'pip', 'install', '--upgrade', 'colorama']) + global colorama + import colorama + colorama.init() + + if command[0] == '/snes': + asyncio.create_task(snes_connect(ctx, command[1] if len(command) > 1 else None)) + if command[0] in ['/snes_close', '/snes_quit']: + if ctx.snes_socket is not None and not ctx.snes_socket.closed: + await ctx.snes_socket.close() + + async def disconnect(): + if ctx.socket is not None and not ctx.socket.closed: + await ctx.socket.close() + if ctx.server_task is not None: + await ctx.server_task + async def connect(): + await disconnect() + ctx.server_task = asyncio.create_task(server_loop(ctx)) + + if command[0] in ['/connect', '/reconnect']: + if len(command) > 1: + ctx.server_address = command[1] + asyncio.create_task(connect()) + if command[0] == '/disconnect': + asyncio.create_task(disconnect()) + if command[0][:1] != '/': + asyncio.create_task(send_msgs(ctx.socket, [['Say', input]])) + + if command[0] == '/received': + print('Received items:') + for index, item in enumerate(ctx.items_received, 1): + print('%s from %s (%s) (%d/%d in list)' % ( + color(get_item_name_from_id(item.item), 'red', 'bold'), color(item.player_name, 'yellow'), + 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]: + if location not in ctx.locations_checked: + print('Missing: ' + location) + if command[0] == '/getitem' and len(command) > 1: + item = input[9:] + item_id = Items.item_table[item][3] if item in Items.item_table else None + if type(item_id) is int and item_id in range(0x100): + print('Sending item: ' + item) + snes_buffered_write(ctx, RECV_ITEM_ADDR, bytes([item_id])) + snes_buffered_write(ctx, RECV_ITEM_PLAYER_ADDR, bytes([0])) + else: + print('Invalid item: ' + item) + + await snes_flush_writes(ctx) + +def rom_confirmed(ctx : Context): + ctx.rom_confirmed = True + print('ROM hash Confirmed') + +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' + +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' + +async def track_locations(ctx : Context, roomid, roomdata): + new_locations = [] + def new_check(location): + ctx.locations_checked.add(location) + print("New check: %s (%d/216)" % (location, len(ctx.locations_checked))) + new_locations.append(Regions.location_table[location][0]) + + 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: + new_check(location) + + uw_begin = 0x129 + uw_end = 0 + uw_unchecked = {} + for location, (roomid, mask) in location_table_uw.items(): + if location not in ctx.locations_checked: + uw_unchecked[location] = (roomid, mask) + uw_begin = min(uw_begin, roomid) + uw_end = max(uw_end, roomid + 1) + if uw_begin < uw_end: + uw_data = await snes_read(ctx, SAVEDATA_START + (uw_begin * 2), (uw_end - uw_begin) * 2) + if uw_data is not None: + for location, (roomid, mask) in uw_unchecked.items(): + offset = (roomid - uw_begin) * 2 + roomdata = uw_data[offset] | (uw_data[offset + 1] << 8) + if roomdata & mask != 0: + new_check(location) + + ow_begin = 0x82 + ow_end = 0 + ow_unchecked = {} + for location, screenid in location_table_ow.items(): + if location not in ctx.locations_checked: + ow_unchecked[location] = screenid + ow_begin = min(ow_begin, screenid) + ow_end = max(ow_end, screenid + 1) + if ow_begin < ow_end: + ow_data = await snes_read(ctx, SAVEDATA_START + 0x280 + ow_begin, ow_end - ow_begin) + if ow_data is not None: + for location, screenid in ow_unchecked.items(): + if ow_data[screenid - ow_begin] & 0x40 != 0: + new_check(location) + + if not all([location in ctx.locations_checked for location in location_table_npc.keys()]): + npc_data = await snes_read(ctx, SAVEDATA_START + 0x410, 2) + if npc_data is not None: + npc_value = npc_data[0] | (npc_data[1] << 8) + for location, mask in location_table_npc.items(): + if npc_value & mask != 0 and location not in ctx.locations_checked: + new_check(location) + + if not all([location in ctx.locations_checked for location in location_table_misc.keys()]): + misc_data = await snes_read(ctx, SAVEDATA_START + 0x3c6, 4) + if misc_data is not None: + for location, (offset, mask) in location_table_misc.items(): + assert(0x3c6 <= offset <= 0x3c9) + if misc_data[offset - 0x3c6] & mask != 0 and location not in ctx.locations_checked: + new_check(location) + + await send_msgs(ctx.socket, [['LocationChecks', new_locations]]) + +async def game_watcher(ctx : Context): + while not ctx.exit_event.is_set(): + await asyncio.sleep(2) + + if not ctx.rom_confirmed: + rom = await snes_read(ctx, ROMNAME_START, ROMNAME_SIZE) + if rom is None or rom == bytes([0] * ROMNAME_SIZE): + continue + if list(rom) != ctx.last_rom: + ctx.last_rom = list(rom) + ctx.locations_checked = set() + if ctx.expected_rom is not None: + if ctx.last_rom != ctx.expected_rom: + print("Wrong ROM detected") + await ctx.snes_socket.close() + continue + else: + rom_confirmed(ctx) + + gamemode = await snes_read(ctx, WRAM_START + 0x10, 1) + if gamemode is None or gamemode[0] not in INGAME_MODES: + continue + + data = await snes_read(ctx, RECV_PROGRESS_ADDR, 7) + if data is None: + continue + + recv_index = data[0] | (data[1] << 8) + assert(RECV_ITEM_ADDR == RECV_PROGRESS_ADDR + 2) + recv_item = data[2] + assert(ROOMID_ADDR == RECV_PROGRESS_ADDR + 4) + roomid = data[4] | (data[5] << 8) + assert(ROOMDATA_ADDR == RECV_PROGRESS_ADDR + 6) + roomdata = data[6] + + await track_locations(ctx, roomid, roomdata) + + if recv_index < len(ctx.items_received) and recv_item == 0: + item = ctx.items_received[recv_index] + print('Received %s from %s (%s) (%d/%d in list)' % ( + color(get_item_name_from_id(item.item), 'red', 'bold'), color(item.player_name, 'yellow'), + get_location_name_from_address(item.location), recv_index + 1, len(ctx.items_received))) + recv_index += 1 + snes_buffered_write(ctx, RECV_PROGRESS_ADDR, bytes([recv_index & 0xFF, (recv_index >> 8) & 0xFF])) + snes_buffered_write(ctx, RECV_ITEM_ADDR, bytes([item.item])) + snes_buffered_write(ctx, RECV_ITEM_PLAYER_ADDR, bytes([item.player_id])) + + await snes_flush_writes(ctx) + +async def main(): + parser = argparse.ArgumentParser() + parser.add_argument('--snes', default='localhost:8080', help='Address of the QUsb2snes server.') + parser.add_argument('--connect', default=None, help='Address of the multiworld host.') + parser.add_argument('--password', default=None, help='Password of the multiworld host.') + parser.add_argument('--name', default=None) + parser.add_argument('--team', default=None) + parser.add_argument('--slot', default=None, type=int) + args = parser.parse_args() + + ctx = Context(args.snes, args.connect, args.password, args.name, args.team, args.slot) + + input_task = asyncio.create_task(console_loop(ctx)) + + await snes_connect(ctx) + + if ctx.server_task is None: + ctx.server_task = asyncio.create_task(server_loop(ctx)) + + watcher_task = asyncio.create_task(game_watcher(ctx)) + + + await ctx.exit_event.wait() + + + await watcher_task + + if ctx.socket is not None and not ctx.socket.closed: + await ctx.socket.close() + if ctx.server_task is not None: + await ctx.server_task + + if ctx.snes_socket is not None and not ctx.snes_socket.closed: + await ctx.snes_socket.close() + + while ctx.input_requests > 0: + ctx.input_queue.put_nowait(None) + ctx.input_requests -= 1 + + await input_task + +if __name__ == '__main__': + if 'colorama' in sys.modules: + colorama.init() + + loop = asyncio.get_event_loop() + loop.run_until_complete(main()) + loop.run_until_complete(asyncio.gather(*asyncio.Task.all_tasks())) + loop.close() + + if 'colorama' in sys.modules: + colorama.deinit() diff --git a/MultiServer.py b/MultiServer.py new file mode 100644 index 00000000..9a2a1c92 --- /dev/null +++ b/MultiServer.py @@ -0,0 +1,393 @@ +import aioconsole +import argparse +import asyncio +import functools +import json +import logging +import pickle +import re +import urllib.request +import websockets + +import Items +import Regions +from MultiClient import ReceivedItem, get_item_name_from_id, get_location_name_from_address + +class Client: + def __init__(self, socket): + self.socket = socket + self.auth = False + self.name = None + self.team = None + self.slot = None + self.send_index = 0 + +class MultiWorld: + def __init__(self): + self.players = None + self.rom_names = {} + self.locations = {} + +class Context: + def __init__(self, host, port, password): + self.data_filename = None + self.save_filename = None + self.disable_save = False + self.world = MultiWorld() + self.host = host + self.port = port + self.password = password + self.server = None + self.clients = [] + self.received_items = {} + +def get_room_info(ctx : Context): + return { + 'password': ctx.password is not None, + 'slots': ctx.world.players, + 'players': [(client.name, client.team, client.slot) for client in ctx.clients if client.auth] + } + +def same_name(lhs, rhs): + return lhs.lower() == rhs.lower() + +def same_team(lhs, rhs): + return (type(lhs) is type(rhs)) and ((not lhs and not rhs) or (lhs.lower() == rhs.lower())) + +async def send_msgs(websocket, msgs): + if not websocket or not websocket.open or websocket.closed: + return + try: + await websocket.send(json.dumps(msgs)) + except websockets.ConnectionClosed: + pass + +def broadcast_all(ctx : Context, msgs): + for client in ctx.clients: + if client.auth: + asyncio.create_task(send_msgs(client.socket, msgs)) + +def broadcast_team(ctx : Context, team, msgs): + for client in ctx.clients: + if client.auth and same_team(client.team, team): + asyncio.create_task(send_msgs(client.socket, msgs)) + +def notify_all(ctx : Context, text): + print("Notice (all): %s" % text) + broadcast_all(ctx, [['Print', text]]) + +def notify_team(ctx : Context, team : str, text : str): + print("Team notice (%s): %s" % ("Default" if not team else team, text)) + broadcast_team(ctx, team, [['Print', text]]) + +def notify_client(client : Client, text : str): + if not client.auth: + return + print("Player notice (%s): %s" % (client.name, text)) + asyncio.create_task(send_msgs(client.socket, [['Print', text]])) + +async def server(websocket, path, ctx : Context): + client = Client(websocket) + ctx.clients.append(client) + + try: + await on_client_connected(ctx, client) + async for data in websocket: + for msg in json.loads(data): + if len(msg) == 1: + cmd = msg + args = None + else: + cmd = msg[0] + args = msg[1] + await process_client_cmd(ctx, client, cmd, args) + except Exception as e: + if type(e) is not websockets.ConnectionClosed: + logging.exception(e) + finally: + await on_client_disconnected(ctx, client) + ctx.clients.remove(client) + +async def on_client_connected(ctx : Context, client : Client): + await send_msgs(client.socket, [['RoomInfo', get_room_info(ctx)]]) + +async def on_client_disconnected(ctx : Context, client : Client): + if client.auth: + await on_client_left(ctx, client) + +async def on_client_joined(ctx : Context, client : Client): + notify_all(ctx, "%s has joined the game as player %d for %s" % (client.name, client.slot, "the default team" if not client.team else "team %s" % client.team)) + +async def on_client_left(ctx : Context, client : Client): + notify_all(ctx, "%s (Player %d, %s) has left the game" % (client.name, client.slot, "Default team" if not client.team else "Team %s" % client.team)) + +def get_connected_players_string(ctx : Context): + auth_clients = [c for c in ctx.clients if c.auth] + if not auth_clients: + return 'No player connected' + + auth_clients.sort(key=lambda c: ('' if not c.team else c.team.lower(), c.slot)) + current_team = 0 + text = '' + for c in auth_clients: + if c.team != current_team: + text += '::' + ('default team' if not c.team else c.team) + ':: ' + current_team = c.team + text += '%d:%s ' % (c.slot, c.name) + return 'Connected players: ' + text[:-1] + +def get_player_name_in_team(ctx : Context, team, slot): + for client in ctx.clients: + if client.auth and same_team(team, client.team) and client.slot == slot: + return client.name + return "Player %d" % slot + +def get_client_from_name(ctx : Context, name): + for client in ctx.clients: + if client.auth and same_name(name, client.name): + return client + return None + +def get_received_items(ctx : Context, team, player): + for (c_team, c_id), items in ctx.received_items.items(): + if c_id == player and same_team(c_team, team): + return items + ctx.received_items[(team, player)] = [] + return ctx.received_items[(team, player)] + +def tuplize_received_items(items): + return [(item.item, item.location, item.player_id, item.player_name) for item in items] + +def send_new_items(ctx : Context): + for client in ctx.clients: + if not client.auth: + continue + items = get_received_items(ctx, client.team, client.slot) + if len(items) > client.send_index: + asyncio.create_task(send_msgs(client.socket, [['ReceivedItems', (client.send_index, tuplize_received_items(items)[client.send_index:])]])) + client.send_index = len(items) + +def forfeit_player(ctx : Context, team, slot, name): + all_locations = [values[0] for values in Regions.location_table.values() if type(values[0]) is int] + notify_all(ctx, "%s (Player %d) in team %s has forfeited" % (name, slot, team if team else 'default')) + register_location_checks(ctx, name, team, slot, all_locations) + +def register_location_checks(ctx : Context, name, team, slot, locations): + found_items = False + for location in locations: + if (location, slot) in ctx.world.locations: + target_item, target_player = ctx.world.locations[(location, slot)] + if target_player != slot: + found = False + recvd_items = get_received_items(ctx, team, target_player) + for recvd_item in recvd_items: + if recvd_item.location == location and recvd_item.player_id == slot: + found = True + break + if not found: + new_item = ReceivedItem(target_item, location, slot, name) + recvd_items.append(new_item) + target_player_name = get_player_name_in_team(ctx, team, target_player) + broadcast_team(ctx, team, [['ItemSent', (name, target_player_name, target_item, location)]]) + print('(%s) %s sent %s to %s (%s)' % (team if team else 'Team', name, get_item_name_from_id(target_item), target_player_name, get_location_name_from_address(location))) + found_items = True + send_new_items(ctx) + + if found_items and not ctx.disable_save: + try: + with open(ctx.save_filename, "wb") as f: + pickle.dump((ctx.world.players, ctx.world.rom_names, ctx.received_items), f, pickle.HIGHEST_PROTOCOL) + except Exception as e: + logging.exception(e) + +async def process_client_cmd(ctx : Context, client : Client, cmd, args): + if type(cmd) is not str: + await send_msgs(client.socket, [['InvalidCmd']]) + return + + if cmd == 'Connect': + if not args or type(args) is not dict or \ + 'password' not in args or type(args['password']) not in [str, type(None)] or \ + 'name' not in args or type(args['name']) is not str or \ + 'team' not in args or type(args['team']) not in [str, type(None)] or \ + 'slot' not in args or type(args['slot']) not in [int, type(None)]: + await send_msgs(client.socket, [['InvalidArguments', 'Connect']]) + return + + errors = set() + if ctx.password is not None and ('password' not in args or args['password'] != ctx.password): + errors.add('InvalidPassword') + + if 'name' not in args or not args['name'] or not re.match(r'\w{1,10}', args['name']): + errors.add('InvalidName') + elif any([same_name(c.name, args['name']) for c in ctx.clients if c.auth]): + errors.add('NameAlreadyTaken') + else: + client.name = args['name'] + + if 'team' in args and args['team'] is not None and not re.match(r'\w{1,15}', args['team']): + errors.add('InvalidTeam') + else: + client.team = args['team'] if 'team' in args else None + + if 'slot' in args and any([c.slot == args['slot'] for c in ctx.clients if c.auth and same_team(c.team, client.team)]): + errors.add('SlotAlreadyTaken') + elif 'slot' not in args or not args['slot']: + for slot in range(1, ctx.world.players + 1): + if slot not in [c.slot for c in ctx.clients if c.auth and same_team(c.team, client.team)]: + client.slot = slot + break + elif slot == ctx.world.players: + errors.add('SlotAlreadyTaken') + elif args['slot'] not in range(1, ctx.world.players + 1): + errors.add('InvalidSlot') + else: + client.slot = args['slot'] + + if errors: + client.name = None + client.team = None + client.slot = None + await send_msgs(client.socket, [['ConnectionRefused', list(errors)]]) + else: + client.auth = True + reply = [['Connected', ctx.world.rom_names[client.slot]]] + items = get_received_items(ctx, client.team, client.slot) + if items: + reply.append(['ReceivedItems', (0, tuplize_received_items(items))]) + client.send_index = len(items) + await send_msgs(client.socket, reply) + await on_client_joined(ctx, client) + + if not client.auth: + return + + if cmd == 'Sync': + items = get_received_items(ctx, client.team, client.slot) + if items: + client.send_index = len(items) + await send_msgs(client.socket, ['ReceivedItems', (0, tuplize_received_items(items))]) + + if cmd == 'LocationChecks': + if type(args) is not list: + await send_msgs(client.socket, [['InvalidArguments', 'LocationChecks']]) + return + register_location_checks(ctx, client.name, client.team, client.slot, args) + + if cmd == 'Say': + if type(args) is not str or not args.isprintable(): + await send_msgs(client.socket, [['InvalidArguments', 'Say']]) + return + + notify_all(ctx, client.name + ': ' + args) + + if args[:8] == '!players': + notify_all(ctx, get_connected_players_string(ctx)) + if args[:8] == '!forfeit': + forfeit_player(ctx, client.team, client.slot, client.name) + +def set_password(ctx : Context, password): + ctx.password = password + print('Password set to ' + password if password is not None else 'Password disabled') + +async def console(ctx : Context): + while True: + input = await aioconsole.ainput() + + command = input.split() + if not command: + continue + + if command[0] == '/exit': + ctx.server.ws_server.close() + break + + if command[0] == '/players': + print(get_connected_players_string(ctx)) + if command[0] == '/password': + set_password(ctx, command[1] if len(command) > 1 else None) + if command[0] == '/kick' and len(command) > 1: + client = get_client_from_name(ctx, command[1]) + if client and client.socket and not client.socket.closed: + await client.socket.close() + + if command[0] == '/forfeitslot' and len(command) == 3 and command[2].isdigit(): + team = command[1] if command[1] != 'default' else None + slot = int(command[2]) + name = get_player_name_in_team(ctx, team, slot) + forfeit_player(ctx, team, slot, name) + if command[0] == '/forfeitplayer' and len(command) > 1: + client = get_client_from_name(ctx, command[1]) + if client: + forfeit_player(ctx, client.team, client.slot, client.name) + if command[0] == '/senditem' and len(command) > 2: + [(player, item)] = re.findall(r'\S* (\S*) (.*)', input) + if item in Items.item_table: + client = get_client_from_name(ctx, player) + if client: + new_item = ReceivedItem(Items.item_table[item][3], "cheat console", 0, "server") + get_received_items(ctx, client.team, client.slot).append(new_item) + notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) + send_new_items(ctx) + else: + print("Unknown item: " + item) + + if command[0][0] != '/': + notify_all(ctx, '[Server]: ' + input) + +async def main(): + parser = argparse.ArgumentParser() + parser.add_argument('--host', default=None) + parser.add_argument('--port', default=38281, type=int) + parser.add_argument('--password', default=None) + parser.add_argument('--multidata', default=None) + parser.add_argument('--savefile', default=None) + parser.add_argument('--disable_save', default=False, action='store_true') + args = parser.parse_args() + + ctx = Context(args.host, args.port, args.password) + + ctx.data_filename = args.multidata + + try: + if not ctx.data_filename: + import tkinter + import tkinter.filedialog + root = tkinter.Tk() + root.withdraw() + ctx.data_filename = tkinter.filedialog.askopenfilename(filetypes=(("Multiworld data","*multidata"),)) + + with open(ctx.data_filename, 'rb') as f: + ctx.world = pickle.load(f) + except Exception as e: + print('Failed to read multiworld data (%s)' % e) + return + + ip = urllib.request.urlopen('https://v4.ident.me').read().decode('utf8') if not ctx.host else ctx.host + print('Hosting game of %d players (%s) at %s:%d' % (ctx.world.players, 'No password' if not ctx.password else 'Password: %s' % ctx.password, ip, ctx.port)) + + ctx.disable_save = args.disable_save + if not ctx.disable_save: + if not ctx.save_filename: + ctx.save_filename = (ctx.data_filename[:-9] if ctx.data_filename[-9:] == 'multidata' else (ctx.data_filename + '_')) + 'multisave' + try: + with open(ctx.save_filename, 'rb') as f: + players, rom_names, received_items = pickle.load(f) + if players != ctx.world.players or rom_names != ctx.world.rom_names: + raise Exception('Save file mismatch, will start a new game') + ctx.received_items = received_items + print('Loaded save file with %d received items for %d players' % (sum([len(p) for p in received_items.values()]), len(received_items))) + except FileNotFoundError: + print('No save data found, starting a new game') + except Exception as e: + print(e) + + ctx.server = websockets.serve(functools.partial(server,ctx=ctx), ctx.host, ctx.port, ping_timeout=None, ping_interval=None) + await ctx.server + await console(ctx) + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(main()) + loop.run_until_complete(asyncio.gather(*asyncio.Task.all_tasks())) + loop.close() diff --git a/Plando.py b/Plando.py index 92108fec..527ae799 100755 --- a/Plando.py +++ b/Plando.py @@ -10,7 +10,7 @@ import sys from BaseClasses import World from Regions import create_regions from EntranceShuffle import link_entrances, connect_entrance, connect_two_way, connect_exit -from Rom import patch_rom, LocalRom, Sprite, write_string_to_rom +from Rom import patch_rom, LocalRom, Sprite, write_string_to_rom, apply_rom_settings from Rules import set_rules from Dungeons import create_dungeons from Items import ItemFactory @@ -74,7 +74,9 @@ def main(args): sprite = None rom = LocalRom(args.rom) - patch_rom(world, 1, rom, args.heartbeep, args.heartcolor, sprite) + patch_rom(world, 1, rom) + + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite) for textname, texttype, text in text_patches: if texttype == 'text': diff --git a/Regions.py b/Regions.py index 70ae3b0b..fed6abab 100644 --- a/Regions.py +++ b/Regions.py @@ -331,8 +331,8 @@ 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: - address, crystal, hint_text = location_table[location] - ret.locations.append(Location(player, location, address, crystal, hint_text, ret)) + address, player_address, crystal, hint_text = location_table[location] + ret.locations.append(Location(player, location, address, crystal, hint_text, ret, player_address)) return ret def mark_light_world_regions(world): @@ -397,236 +397,236 @@ default_shop_contents = { 'Potion Shop': [('Red Potion', 120), ('Green Potion', 60), ('Blue Potion', 160)], } -location_table = {'Mushroom': (0x180013, False, 'in the woods'), - 'Bottle Merchant': (0x2eb18, False, 'with a merchant'), - 'Flute Spot': (0x18014a, False, 'underground'), - 'Sunken Treasure': (0x180145, False, 'underwater'), - 'Purple Chest': (0x33d68, False, 'from a box'), - "Blind's Hideout - Top": (0xeb0f, False, 'in a basement'), - "Blind's Hideout - Left": (0xeb12, False, 'in a basement'), - "Blind's Hideout - Right": (0xeb15, False, 'in a basement'), - "Blind's Hideout - Far Left": (0xeb18, False, 'in a basement'), - "Blind's Hideout - Far Right": (0xeb1b, False, 'in a basement'), - "Link's Uncle": (0x2df45, False, 'with your uncle'), - 'Secret Passage': (0xe971, False, 'near your uncle'), - 'King Zora': (0xee1c3, False, 'at a high price'), - "Zora's Ledge": (0x180149, False, 'near Zora'), - 'Waterfall Fairy - Left': (0xe9b0, False, 'near a fairy'), - 'Waterfall Fairy - Right': (0xe9d1, False, 'near a fairy'), - "King's Tomb": (0xe97a, False, 'alone in a cave'), - 'Floodgate Chest': (0xe98c, False, 'in the dam'), - "Link's House": (0xe9bc, False, 'in your home'), - 'Kakariko Tavern': (0xe9ce, False, 'in the bar'), - 'Chicken House': (0xe9e9, False, 'near poultry'), - "Aginah's Cave": (0xe9f2, False, 'with Aginah'), - "Sahasrahla's Hut - Left": (0xea82, False, 'near the elder'), - "Sahasrahla's Hut - Middle": (0xea85, False, 'near the elder'), - "Sahasrahla's Hut - Right": (0xea88, False, 'near the elder'), - 'Sahasrahla': (0x2f1fc, False, 'with the elder'), - 'Kakariko Well - Top': (0xea8e, False, 'in a well'), - 'Kakariko Well - Left': (0xea91, False, 'in a well'), - 'Kakariko Well - Middle': (0xea94, False, 'in a well'), - 'Kakariko Well - Right': (0xea97, False, 'in a well'), - 'Kakariko Well - Bottom': (0xea9a, False, 'in a well'), - 'Blacksmith': (0x18002a, False, 'with the smith'), - 'Magic Bat': (0x180015, False, 'with the bat'), - 'Sick Kid': (0x339cf, False, 'with the sick'), - 'Hobo': (0x33e7d, False, 'with the hobo'), - 'Lost Woods Hideout': (0x180000, False, 'near a thief'), - 'Lumberjack Tree': (0x180001, False, 'in a hole'), - 'Cave 45': (0x180003, False, 'alone in a cave'), - 'Graveyard Cave': (0x180004, False, 'alone in a cave'), - 'Checkerboard Cave': (0x180005, False, 'alone in a cave'), - 'Mini Moldorm Cave - Far Left': (0xeb42, False, 'near Moldorms'), - 'Mini Moldorm Cave - Left': (0xeb45, False, 'near Moldorms'), - 'Mini Moldorm Cave - Right': (0xeb48, False, 'near Moldorms'), - 'Mini Moldorm Cave - Far Right': (0xeb4b, False, 'near Moldorms'), - 'Mini Moldorm Cave - Generous Guy': (0x180010, False, 'near Moldorms'), - 'Ice Rod Cave': (0xeb4e, False, 'in a frozen cave'), - 'Bonk Rock Cave': (0xeb3f, False, 'alone in a cave'), - 'Library': (0x180012, False, 'near books'), - 'Potion Shop': (0x180014, False, 'near potions'), - 'Lake Hylia Island': (0x180144, False, 'on an island'), - 'Maze Race': (0x180142, False, 'at the race'), - 'Desert Ledge': (0x180143, False, 'in the desert'), - 'Desert Palace - Big Chest': (0xe98f, False, 'in Desert Palace'), - 'Desert Palace - Torch': (0x180160, False, 'in Desert Palace'), - 'Desert Palace - Map Chest': (0xe9b6, False, 'in Desert Palace'), - 'Desert Palace - Compass Chest': (0xe9cb, False, 'in Desert Palace'), - 'Desert Palace - Big Key Chest': (0xe9c2, False, 'in Desert Palace'), - 'Desert Palace - Boss': (0x180151, False, 'with Lanmolas'), - 'Eastern Palace - Compass Chest': (0xe977, False, 'in Eastern Palace'), - 'Eastern Palace - Big Chest': (0xe97d, False, 'in Eastern Palace'), - 'Eastern Palace - Cannonball Chest': (0xe9b3, False, 'in Eastern Palace'), - 'Eastern Palace - Big Key Chest': (0xe9b9, False, 'in Eastern Palace'), - 'Eastern Palace - Map Chest': (0xe9f5, False, 'in Eastern Palace'), - 'Eastern Palace - Boss': (0x180150, False, 'with the Armos'), - 'Master Sword Pedestal': (0x289b0, False, 'at the pedestal'), - 'Hyrule Castle - Boomerang Chest': (0xe974, False, 'in Hyrule Castle'), - 'Hyrule Castle - Map Chest': (0xeb0c, False, 'in Hyrule Castle'), - "Hyrule Castle - Zelda's Chest": (0xeb09, False, 'in Hyrule Castle'), - 'Sewers - Dark Cross': (0xe96e, False, 'in the sewers'), - 'Sewers - Secret Room - Left': (0xeb5d, False, 'in the sewers'), - 'Sewers - Secret Room - Middle': (0xeb60, False, 'in the sewers'), - 'Sewers - Secret Room - Right': (0xeb63, False, 'in the sewers'), - 'Sanctuary': (0xea79, False, 'in Sanctuary'), - 'Castle Tower - Room 03': (0xeab5, False, 'in Castle Tower'), - 'Castle Tower - Dark Maze': (0xeab2, False, 'in Castle Tower'), - 'Old Man': (0xf69fa, False, 'with the old man'), - 'Spectacle Rock Cave': (0x180002, False, 'alone in a cave'), - 'Paradox Cave Lower - Far Left': (0xeb2a, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Left': (0xeb2d, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Right': (0xeb30, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Far Right': (0xeb33, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Middle': (0xeb36, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Left': (0xeb39, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Right': (0xeb3c, False, 'in a cave with seven chests'), - 'Spiral Cave': (0xe9bf, False, 'in spiral cave'), - 'Ether Tablet': (0x180016, False, 'at a monolith'), - 'Spectacle Rock': (0x180140, False, 'atop a rock'), - 'Tower of Hera - Basement Cage': (0x180162, False, 'in Tower of Hera'), - 'Tower of Hera - Map Chest': (0xe9ad, False, 'in Tower of Hera'), - 'Tower of Hera - Big Key Chest': (0xe9e6, False, 'in Tower of Hera'), - 'Tower of Hera - Compass Chest': (0xe9fb, False, 'in Tower of Hera'), - 'Tower of Hera - Big Chest': (0xe9f8, False, 'in Tower of Hera'), - 'Tower of Hera - Boss': (0x180152, False, 'with Moldorm'), - 'Pyramid': (0x180147, False, 'on the pyramid'), - 'Catfish': (0xee185, False, 'with a catfish'), - 'Stumpy': (0x330c7, False, 'with tree boy'), - 'Digging Game': (0x180148, False, 'underground'), - 'Bombos Tablet': (0x180017, False, 'at a monolith'), - 'Hype Cave - Top': (0xeb1e, False, 'near a bat-like man'), - 'Hype Cave - Middle Right': (0xeb21, False, 'near a bat-like man'), - 'Hype Cave - Middle Left': (0xeb24, False, 'near a bat-like man'), - 'Hype Cave - Bottom': (0xeb27, False, 'near a bat-like man'), - 'Hype Cave - Generous Guy': (0x180011, False, 'with a bat-like man'), - 'Peg Cave': (0x180006, False, 'alone in a cave'), - 'Pyramid Fairy - Left': (0xe980, False, 'near a fairy'), - 'Pyramid Fairy - Right': (0xe983, False, 'near a fairy'), - 'Brewery': (0xe9ec, False, 'alone in a home'), - 'C-Shaped House': (0xe9ef, False, 'alone in a home'), - 'Chest Game': (0xeda8, False, 'as a prize'), - 'Bumper Cave Ledge': (0x180146, False, 'on a ledge'), - 'Mire Shed - Left': (0xea73, False, 'near sparks'), - 'Mire Shed - Right': (0xea76, False, 'near sparks'), - 'Superbunny Cave - Top': (0xea7c, False, 'in a connection'), - 'Superbunny Cave - Bottom': (0xea7f, False, 'in a connection'), - 'Spike Cave': (0xea8b, False, 'beyond spikes'), - 'Hookshot Cave - Top Right': (0xeb51, False, 'across pits'), - 'Hookshot Cave - Top Left': (0xeb54, False, 'across pits'), - 'Hookshot Cave - Bottom Right': (0xeb5a, False, 'across pits'), - 'Hookshot Cave - Bottom Left': (0xeb57, False, 'across pits'), - 'Floating Island': (0x180141, False, 'on an island'), - 'Mimic Cave': (0xe9c5, False, 'in a cave of mimicry'), - 'Swamp Palace - Entrance': (0xea9d, False, 'in Swamp Palace'), - 'Swamp Palace - Map Chest': (0xe986, False, 'in Swamp Palace'), - 'Swamp Palace - Big Chest': (0xe989, False, 'in Swamp Palace'), - 'Swamp Palace - Compass Chest': (0xeaa0, False, 'in Swamp Palace'), - 'Swamp Palace - Big Key Chest': (0xeaa6, False, 'in Swamp Palace'), - 'Swamp Palace - West Chest': (0xeaa3, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Left': (0xeaa9, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Right': (0xeaac, False, 'in Swamp Palace'), - 'Swamp Palace - Waterfall Room': (0xeaaf, False, 'in Swamp Palace'), - 'Swamp Palace - Boss': (0x180154, False, 'with Arrghus'), - "Thieves' Town - Big Key Chest": (0xea04, False, "in Thieves' Town"), - "Thieves' Town - Map Chest": (0xea01, False, "in Thieves' Town"), - "Thieves' Town - Compass Chest": (0xea07, False, "in Thieves' Town"), - "Thieves' Town - Ambush Chest": (0xea0a, False, "in Thieves' Town"), - "Thieves' Town - Attic": (0xea0d, False, "in Thieves' Town"), - "Thieves' Town - Big Chest": (0xea10, False, "in Thieves' Town"), - "Thieves' Town - Blind's Cell": (0xea13, False, "in Thieves' Town"), - "Thieves' Town - Boss": (0x180156, False, 'with Blind'), - 'Skull Woods - Compass Chest': (0xe992, False, 'in Skull Woods'), - 'Skull Woods - Map Chest': (0xe99b, False, 'in Skull Woods'), - 'Skull Woods - Big Chest': (0xe998, False, 'in Skull Woods'), - 'Skull Woods - Pot Prison': (0xe9a1, False, 'in Skull Woods'), - 'Skull Woods - Pinball Room': (0xe9c8, False, 'in Skull Woods'), - 'Skull Woods - Big Key Chest': (0xe99e, False, 'in Skull Woods'), - 'Skull Woods - Bridge Room': (0xe9fe, False, 'near Mothula'), - 'Skull Woods - Boss': (0x180155, False, 'with Mothula'), - 'Ice Palace - Compass Chest': (0xe9d4, False, 'in Ice Palace'), - 'Ice Palace - Freezor Chest': (0xe995, False, 'in Ice Palace'), - 'Ice Palace - Big Chest': (0xe9aa, False, 'in Ice Palace'), - 'Ice Palace - Iced T Room': (0xe9e3, False, 'in Ice Palace'), - 'Ice Palace - Spike Room': (0xe9e0, False, 'in Ice Palace'), - 'Ice Palace - Big Key Chest': (0xe9a4, False, 'in Ice Palace'), - 'Ice Palace - Map Chest': (0xe9dd, False, 'in Ice Palace'), - 'Ice Palace - Boss': (0x180157, False, 'with Kholdstare'), - 'Misery Mire - Big Chest': (0xea67, False, 'in Misery Mire'), - 'Misery Mire - Map Chest': (0xea6a, False, 'in Misery Mire'), - 'Misery Mire - Main Lobby': (0xea5e, False, 'in Misery Mire'), - 'Misery Mire - Bridge Chest': (0xea61, False, 'in Misery Mire'), - 'Misery Mire - Spike Chest': (0xe9da, False, 'in Misery Mire'), - 'Misery Mire - Compass Chest': (0xea64, False, 'in Misery Mire'), - 'Misery Mire - Big Key Chest': (0xea6d, False, 'in Misery Mire'), - 'Misery Mire - Boss': (0x180158, False, 'with Vitreous'), - 'Turtle Rock - Compass Chest': (0xea22, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Left': (0xea1c, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Right': (0xea1f, False, 'in Turtle Rock'), - 'Turtle Rock - Chain Chomps': (0xea16, False, 'in Turtle Rock'), - 'Turtle Rock - Big Key Chest': (0xea25, False, 'in Turtle Rock'), - 'Turtle Rock - Big Chest': (0xea19, False, 'in Turtle Rock'), - 'Turtle Rock - Crystaroller Room': (0xea34, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Left': (0xea31, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Right': (0xea2e, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Left': (0xea2b, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Right': (0xea28, False, 'in Turtle Rock'), - 'Turtle Rock - Boss': (0x180159, False, 'with Trinexx'), - 'Palace of Darkness - Shooter Room': (0xea5b, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Bridge': (0xea3d, False, 'in Palace of Darkness'), - 'Palace of Darkness - Stalfos Basement': (0xea49, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Key Chest': (0xea37, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Ledge': (0xea3a, False, 'in Palace of Darkness'), - 'Palace of Darkness - Map Chest': (0xea52, False, 'in Palace of Darkness'), - 'Palace of Darkness - Compass Chest': (0xea43, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Left': (0xea4c, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Right': (0xea4f, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Top': (0xea55, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Bottom': (0xea58, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Chest': (0xea40, False, 'in Palace of Darkness'), - 'Palace of Darkness - Harmless Hellway': (0xea46, False, 'in Palace of Darkness'), - 'Palace of Darkness - Boss': (0x180153, False, 'with Helmasaur King'), - "Ganons Tower - Bob's Torch": (0x180161, False, "in Ganon's Tower"), - 'Ganons Tower - Hope Room - Left': (0xead9, False, "in Ganon's Tower"), - 'Ganons Tower - Hope Room - Right': (0xeadc, False, "in Ganon's Tower"), - 'Ganons Tower - Tile Room': (0xeae2, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Top Left': (0xeae5, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Top Right': (0xeae8, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Bottom Left': (0xeaeb, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Bottom Right': (0xeaee, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Top Left': (0xeab8, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Top Right': (0xeabb, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Bottom Left': (0xeabe, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Bottom Right': (0xeac1, False, "in Ganon's Tower"), - 'Ganons Tower - Map Chest': (0xead3, False, "in Ganon's Tower"), - 'Ganons Tower - Firesnake Room': (0xead0, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Top Left': (0xeac4, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Top Right': (0xeac7, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Bottom Left': (0xeaca, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Bottom Right': (0xeacd, False, "in Ganon's Tower"), - "Ganons Tower - Bob's Chest": (0xeadf, False, "in Ganon's Tower"), - 'Ganons Tower - Big Chest': (0xead6, False, "in Ganon's Tower"), - 'Ganons Tower - Big Key Room - Left': (0xeaf4, False, "in Ganon's Tower"), - 'Ganons Tower - Big Key Room - Right': (0xeaf7, False, "in Ganon's Tower"), - 'Ganons Tower - Big Key Chest': (0xeaf1, False, "in Ganon's Tower"), - 'Ganons Tower - Mini Helmasaur Room - Left': (0xeafd, False, "atop Ganon's Tower"), - 'Ganons Tower - Mini Helmasaur Room - Right': (0xeb00, False, "atop Ganon's Tower"), - 'Ganons Tower - Pre-Moldorm Chest': (0xeb03, False, "atop Ganon's Tower"), - 'Ganons Tower - Validation Chest': (0xeb06, False, "atop Ganon's Tower"), - 'Ganon': (None, False, 'from me'), - 'Agahnim 1': (None, False, 'from Ganon\'s wizardry form'), - 'Agahnim 2': (None, False, 'from Ganon\'s wizardry form'), - 'Floodgate': (None, False, None), - 'Frog': (None, False, None), - 'Missing Smith': (None, False, None), - 'Dark Blacksmith Ruins': (None, False, None), - 'Eastern Palace - Prize': ([0x1209D, 0x53EF8, 0x53EF9, 0x180052, 0x18007C, 0xC6FE], True, 'Eastern Palace'), - 'Desert Palace - Prize': ([0x1209E, 0x53F1C, 0x53F1D, 0x180053, 0x180078, 0xC6FF], True, 'Desert Palace'), - 'Tower of Hera - Prize': ([0x120A5, 0x53F0A, 0x53F0B, 0x18005A, 0x18007A, 0xC706], True, 'Tower of Hera'), - 'Palace of Darkness - Prize': ([0x120A1, 0x53F00, 0x53F01, 0x180056, 0x18007D, 0xC702], True, 'Palace of Darkness'), - 'Swamp Palace - Prize': ([0x120A0, 0x53F6C, 0x53F6D, 0x180055, 0x180071, 0xC701], True, 'Swamp Palace'), - 'Thieves\' Town - Prize': ([0x120A6, 0x53F36, 0x53F37, 0x18005B, 0x180077, 0xC707], True, 'Thieves\' Town'), - 'Skull Woods - Prize': ([0x120A3, 0x53F12, 0x53F13, 0x180058, 0x18007B, 0xC704], True, 'Skull Woods'), - 'Ice Palace - Prize': ([0x120A4, 0x53F5A, 0x53F5B, 0x180059, 0x180073, 0xC705], True, 'Ice Palace'), - 'Misery Mire - Prize': ([0x120A2, 0x53F48, 0x53F49, 0x180057, 0x180075, 0xC703], True, 'Misery Mire'), - 'Turtle Rock - Prize': ([0x120A7, 0x53F24, 0x53F25, 0x18005C, 0x180079, 0xC708], True, 'Turtle Rock')} +location_table = {'Mushroom': (0x180013, 0x186338, False, 'in the woods'), + 'Bottle Merchant': (0x2eb18, 0x186339, False, 'with a merchant'), + 'Flute Spot': (0x18014a, 0x18633d, False, 'underground'), + 'Sunken Treasure': (0x180145, 0x186354, False, 'underwater'), + 'Purple Chest': (0x33d68, 0x186359, False, 'from a box'), + "Blind's Hideout - Top": (0xeb0f, 0x1862e3, False, 'in a basement'), + "Blind's Hideout - Left": (0xeb12, 0x1862e6, False, 'in a basement'), + "Blind's Hideout - Right": (0xeb15, 0x1862e9, False, 'in a basement'), + "Blind's Hideout - Far Left": (0xeb18, 0x1862ec, False, 'in a basement'), + "Blind's Hideout - Far Right": (0xeb1b, 0x1862ef, False, 'in a basement'), + "Link's Uncle": (0x2df45, 0x18635f, False, 'with your uncle'), + 'Secret Passage': (0xe971, 0x186145, False, 'near your uncle'), + 'King Zora': (0xee1c3, 0x186360, False, 'at a high price'), + "Zora's Ledge": (0x180149, 0x186358, False, 'near Zora'), + 'Waterfall Fairy - Left': (0xe9b0, 0x186184, False, 'near a fairy'), + 'Waterfall Fairy - Right': (0xe9d1, 0x1861a5, False, 'near a fairy'), + "King's Tomb": (0xe97a, 0x18614e, False, 'alone in a cave'), + 'Floodgate Chest': (0xe98c, 0x186160, False, 'in the dam'), + "Link's House": (0xe9bc, 0x186190, False, 'in your home'), + 'Kakariko Tavern': (0xe9ce, 0x1861a2, False, 'in the bar'), + 'Chicken House': (0xe9e9, 0x1861bd, False, 'near poultry'), + "Aginah's Cave": (0xe9f2, 0x1861c6, False, 'with Aginah'), + "Sahasrahla's Hut - Left": (0xea82, 0x186256, False, 'near the elder'), + "Sahasrahla's Hut - Middle": (0xea85, 0x186259, False, 'near the elder'), + "Sahasrahla's Hut - Right": (0xea88, 0x18625c, False, 'near the elder'), + 'Sahasrahla': (0x2f1fc, 0x186365, False, 'with the elder'), + 'Kakariko Well - Top': (0xea8e, 0x186262, False, 'in a well'), + 'Kakariko Well - Left': (0xea91, 0x186265, False, 'in a well'), + 'Kakariko Well - Middle': (0xea94, 0x186268, False, 'in a well'), + 'Kakariko Well - Right': (0xea97, 0x18626b, False, 'in a well'), + 'Kakariko Well - Bottom': (0xea9a, 0x18626e, False, 'in a well'), + 'Blacksmith': (0x18002a, 0x186366, False, 'with the smith'), + 'Magic Bat': (0x180015, 0x18635e, False, 'with the bat'), + 'Sick Kid': (0x339cf, 0x186367, False, 'with the sick'), + 'Hobo': (0x33e7d, 0x186368, False, 'with the hobo'), + 'Lost Woods Hideout': (0x180000, 0x186348, False, 'near a thief'), + 'Lumberjack Tree': (0x180001, 0x186349, False, 'in a hole'), + 'Cave 45': (0x180003, 0x18634b, False, 'alone in a cave'), + 'Graveyard Cave': (0x180004, 0x18634c, False, 'alone in a cave'), + 'Checkerboard Cave': (0x180005, 0x18634d, False, 'alone in a cave'), + 'Mini Moldorm Cave - Far Left': (0xeb42, 0x186316, False, 'near Moldorms'), + 'Mini Moldorm Cave - Left': (0xeb45, 0x186319, False, 'near Moldorms'), + 'Mini Moldorm Cave - Right': (0xeb48, 0x18631c, False, 'near Moldorms'), + 'Mini Moldorm Cave - Far Right': (0xeb4b, 0x18631f, False, 'near Moldorms'), + 'Mini Moldorm Cave - Generous Guy': (0x180010, 0x18635a, False, 'near Moldorms'), + 'Ice Rod Cave': (0xeb4e, 0x186322, False, 'in a frozen cave'), + 'Bonk Rock Cave': (0xeb3f, 0x186313, False, 'alone in a cave'), + 'Library': (0x180012, 0x18635c, False, 'near books'), + 'Potion Shop': (0x180014, 0x18635d, False, 'near potions'), + 'Lake Hylia Island': (0x180144, 0x186353, False, 'on an island'), + 'Maze Race': (0x180142, 0x186351, False, 'at the race'), + 'Desert Ledge': (0x180143, 0x186352, False, 'in the desert'), + 'Desert Palace - Big Chest': (0xe98f, 0x186163, False, 'in Desert Palace'), + 'Desert Palace - Torch': (0x180160, 0x186362, False, 'in Desert Palace'), + 'Desert Palace - Map Chest': (0xe9b6, 0x18618a, False, 'in Desert Palace'), + 'Desert Palace - Compass Chest': (0xe9cb, 0x18619f, False, 'in Desert Palace'), + 'Desert Palace - Big Key Chest': (0xe9c2, 0x186196, False, 'in Desert Palace'), + 'Desert Palace - Boss': (0x180151, 0x18633f, False, 'with Lanmolas'), + 'Eastern Palace - Compass Chest': (0xe977, 0x18614b, False, 'in Eastern Palace'), + 'Eastern Palace - Big Chest': (0xe97d, 0x186151, False, 'in Eastern Palace'), + 'Eastern Palace - Cannonball Chest': (0xe9b3, 0x186187, False, 'in Eastern Palace'), + 'Eastern Palace - Big Key Chest': (0xe9b9, 0x18618d, False, 'in Eastern Palace'), + 'Eastern Palace - Map Chest': (0xe9f5, 0x1861c9, False, 'in Eastern Palace'), + 'Eastern Palace - Boss': (0x180150, 0x18633e, False, 'with the Armos'), + 'Master Sword Pedestal': (0x289b0, 0x186369, False, 'at the pedestal'), + 'Hyrule Castle - Boomerang Chest': (0xe974, 0x186148, False, 'in Hyrule Castle'), + 'Hyrule Castle - Map Chest': (0xeb0c, 0x1862e0, False, 'in Hyrule Castle'), + "Hyrule Castle - Zelda's Chest": (0xeb09, 0x1862dd, False, 'in Hyrule Castle'), + 'Sewers - Dark Cross': (0xe96e, 0x186142, False, 'in the sewers'), + 'Sewers - Secret Room - Left': (0xeb5d, 0x186331, False, 'in the sewers'), + 'Sewers - Secret Room - Middle': (0xeb60, 0x186334, False, 'in the sewers'), + 'Sewers - Secret Room - Right': (0xeb63, 0x186337, False, 'in the sewers'), + 'Sanctuary': (0xea79, 0x18624d, False, 'in Sanctuary'), + 'Castle Tower - Room 03': (0xeab5, 0x186289, False, 'in Castle Tower'), + 'Castle Tower - Dark Maze': (0xeab2, 0x186286, False, 'in Castle Tower'), + 'Old Man': (0xf69fa, 0x186364, False, 'with the old man'), + 'Spectacle Rock Cave': (0x180002, 0x18634a, False, 'alone in a cave'), + 'Paradox Cave Lower - Far Left': (0xeb2a, 0x1862fe, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Left': (0xeb2d, 0x186301, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Right': (0xeb30, 0x186304, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Far Right': (0xeb33, 0x186307, False, 'in a cave with seven chests'), + 'Paradox Cave Lower - Middle': (0xeb36, 0x18630a, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Left': (0xeb39, 0x18630d, False, 'in a cave with seven chests'), + 'Paradox Cave Upper - Right': (0xeb3c, 0x186310, False, 'in a cave with seven chests'), + 'Spiral Cave': (0xe9bf, 0x186193, False, 'in spiral cave'), + 'Ether Tablet': (0x180016, 0x18633b, False, 'at a monolith'), + 'Spectacle Rock': (0x180140, 0x18634f, False, 'atop a rock'), + 'Tower of Hera - Basement Cage': (0x180162, 0x18633a, False, 'in Tower of Hera'), + 'Tower of Hera - Map Chest': (0xe9ad, 0x186181, False, 'in Tower of Hera'), + 'Tower of Hera - Big Key Chest': (0xe9e6, 0x1861ba, False, 'in Tower of Hera'), + 'Tower of Hera - Compass Chest': (0xe9fb, 0x1861cf, False, 'in Tower of Hera'), + 'Tower of Hera - Big Chest': (0xe9f8, 0x1861cc, False, 'in Tower of Hera'), + 'Tower of Hera - Boss': (0x180152, 0x186340, False, 'with Moldorm'), + 'Pyramid': (0x180147, 0x186356, False, 'on the pyramid'), + 'Catfish': (0xee185, 0x186361, False, 'with a catfish'), + 'Stumpy': (0x330c7, 0x18636a, False, 'with tree boy'), + 'Digging Game': (0x180148, 0x186357, False, 'underground'), + 'Bombos Tablet': (0x180017, 0x18633c, False, 'at a monolith'), + 'Hype Cave - Top': (0xeb1e, 0x1862f2, False, 'near a bat-like man'), + 'Hype Cave - Middle Right': (0xeb21, 0x1862f5, False, 'near a bat-like man'), + 'Hype Cave - Middle Left': (0xeb24, 0x1862f8, False, 'near a bat-like man'), + 'Hype Cave - Bottom': (0xeb27, 0x1862fb, False, 'near a bat-like man'), + 'Hype Cave - Generous Guy': (0x180011, 0x18635b, False, 'with a bat-like man'), + 'Peg Cave': (0x180006, 0x18634e, False, 'alone in a cave'), + 'Pyramid Fairy - Left': (0xe980, 0x186154, False, 'near a fairy'), + 'Pyramid Fairy - Right': (0xe983, 0x186157, False, 'near a fairy'), + 'Brewery': (0xe9ec, 0x1861c0, False, 'alone in a home'), + 'C-Shaped House': (0xe9ef, 0x1861c3, False, 'alone in a home'), + 'Chest Game': (0xeda8, 0x18636b, False, 'as a prize'), + 'Bumper Cave Ledge': (0x180146, 0x186355, False, 'on a ledge'), + 'Mire Shed - Left': (0xea73, 0x186247, False, 'near sparks'), + 'Mire Shed - Right': (0xea76, 0x18624a, False, 'near sparks'), + 'Superbunny Cave - Top': (0xea7c, 0x186250, False, 'in a connection'), + 'Superbunny Cave - Bottom': (0xea7f, 0x186253, False, 'in a connection'), + 'Spike Cave': (0xea8b, 0x18625f, False, 'beyond spikes'), + 'Hookshot Cave - Top Right': (0xeb51, 0x186325, False, 'across pits'), + 'Hookshot Cave - Top Left': (0xeb54, 0x186328, False, 'across pits'), + 'Hookshot Cave - Bottom Right': (0xeb5a, 0x18632e, False, 'across pits'), + 'Hookshot Cave - Bottom Left': (0xeb57, 0x18632b, False, 'across pits'), + 'Floating Island': (0x180141, 0x186350, False, 'on an island'), + 'Mimic Cave': (0xe9c5, 0x186199, False, 'in a cave of mimicry'), + 'Swamp Palace - Entrance': (0xea9d, 0x186271, False, 'in Swamp Palace'), + 'Swamp Palace - Map Chest': (0xe986, 0x18615a, False, 'in Swamp Palace'), + 'Swamp Palace - Big Chest': (0xe989, 0x18615d, False, 'in Swamp Palace'), + 'Swamp Palace - Compass Chest': (0xeaa0, 0x186274, False, 'in Swamp Palace'), + 'Swamp Palace - Big Key Chest': (0xeaa6, 0x18627a, False, 'in Swamp Palace'), + 'Swamp Palace - West Chest': (0xeaa3, 0x186277, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Left': (0xeaa9, 0x18627d, False, 'in Swamp Palace'), + 'Swamp Palace - Flooded Room - Right': (0xeaac, 0x186280, False, 'in Swamp Palace'), + 'Swamp Palace - Waterfall Room': (0xeaaf, 0x186283, False, 'in Swamp Palace'), + 'Swamp Palace - Boss': (0x180154, 0x186342, False, 'with Arrghus'), + "Thieves' Town - Big Key Chest": (0xea04, 0x1861d8, False, "in Thieves' Town"), + "Thieves' Town - Map Chest": (0xea01, 0x1861d5, False, "in Thieves' Town"), + "Thieves' Town - Compass Chest": (0xea07, 0x1861db, False, "in Thieves' Town"), + "Thieves' Town - Ambush Chest": (0xea0a, 0x1861de, False, "in Thieves' Town"), + "Thieves' Town - Attic": (0xea0d, 0x1861e1, False, "in Thieves' Town"), + "Thieves' Town - Big Chest": (0xea10, 0x1861e4, False, "in Thieves' Town"), + "Thieves' Town - Blind's Cell": (0xea13, 0x1861e7, False, "in Thieves' Town"), + "Thieves' Town - Boss": (0x180156, 0x186344, False, 'with Blind'), + 'Skull Woods - Compass Chest': (0xe992, 0x186166, False, 'in Skull Woods'), + 'Skull Woods - Map Chest': (0xe99b, 0x18616f, False, 'in Skull Woods'), + 'Skull Woods - Big Chest': (0xe998, 0x18616c, False, 'in Skull Woods'), + 'Skull Woods - Pot Prison': (0xe9a1, 0x186175, False, 'in Skull Woods'), + 'Skull Woods - Pinball Room': (0xe9c8, 0x18619c, False, 'in Skull Woods'), + 'Skull Woods - Big Key Chest': (0xe99e, 0x186172, False, 'in Skull Woods'), + 'Skull Woods - Bridge Room': (0xe9fe, 0x1861d2, False, 'near Mothula'), + 'Skull Woods - Boss': (0x180155, 0x186343, False, 'with Mothula'), + 'Ice Palace - Compass Chest': (0xe9d4, 0x1861a8, False, 'in Ice Palace'), + 'Ice Palace - Freezor Chest': (0xe995, 0x186169, False, 'in Ice Palace'), + 'Ice Palace - Big Chest': (0xe9aa, 0x18617e, False, 'in Ice Palace'), + 'Ice Palace - Iced T Room': (0xe9e3, 0x1861b7, False, 'in Ice Palace'), + 'Ice Palace - Spike Room': (0xe9e0, 0x1861b4, False, 'in Ice Palace'), + 'Ice Palace - Big Key Chest': (0xe9a4, 0x186178, False, 'in Ice Palace'), + 'Ice Palace - Map Chest': (0xe9dd, 0x1861b1, False, 'in Ice Palace'), + 'Ice Palace - Boss': (0x180157, 0x186345, False, 'with Kholdstare'), + 'Misery Mire - Big Chest': (0xea67, 0x18623b, False, 'in Misery Mire'), + 'Misery Mire - Map Chest': (0xea6a, 0x18623e, False, 'in Misery Mire'), + 'Misery Mire - Main Lobby': (0xea5e, 0x186232, False, 'in Misery Mire'), + 'Misery Mire - Bridge Chest': (0xea61, 0x186235, False, 'in Misery Mire'), + 'Misery Mire - Spike Chest': (0xe9da, 0x1861ae, False, 'in Misery Mire'), + 'Misery Mire - Compass Chest': (0xea64, 0x186238, False, 'in Misery Mire'), + 'Misery Mire - Big Key Chest': (0xea6d, 0x186241, False, 'in Misery Mire'), + 'Misery Mire - Boss': (0x180158, 0x186346, False, 'with Vitreous'), + 'Turtle Rock - Compass Chest': (0xea22, 0x1861f6, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Left': (0xea1c, 0x1861f0, False, 'in Turtle Rock'), + 'Turtle Rock - Roller Room - Right': (0xea1f, 0x1861f3, False, 'in Turtle Rock'), + 'Turtle Rock - Chain Chomps': (0xea16, 0x1861ea, False, 'in Turtle Rock'), + 'Turtle Rock - Big Key Chest': (0xea25, 0x1861f9, False, 'in Turtle Rock'), + 'Turtle Rock - Big Chest': (0xea19, 0x1861ed, False, 'in Turtle Rock'), + 'Turtle Rock - Crystaroller Room': (0xea34, 0x186208, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Left': (0xea31, 0x186205, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Bottom Right': (0xea2e, 0x186202, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Left': (0xea2b, 0x1861ff, False, 'in Turtle Rock'), + 'Turtle Rock - Eye Bridge - Top Right': (0xea28, 0x1861fc, False, 'in Turtle Rock'), + 'Turtle Rock - Boss': (0x180159, 0x186347, False, 'with Trinexx'), + 'Palace of Darkness - Shooter Room': (0xea5b, 0x18622f, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Bridge': (0xea3d, 0x186211, False, 'in Palace of Darkness'), + 'Palace of Darkness - Stalfos Basement': (0xea49, 0x18621d, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Key Chest': (0xea37, 0x18620b, False, 'in Palace of Darkness'), + 'Palace of Darkness - The Arena - Ledge': (0xea3a, 0x18620e, False, 'in Palace of Darkness'), + 'Palace of Darkness - Map Chest': (0xea52, 0x186226, False, 'in Palace of Darkness'), + 'Palace of Darkness - Compass Chest': (0xea43, 0x186217, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Left': (0xea4c, 0x186220, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Basement - Right': (0xea4f, 0x186223, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Top': (0xea55, 0x186229, False, 'in Palace of Darkness'), + 'Palace of Darkness - Dark Maze - Bottom': (0xea58, 0x18622c, False, 'in Palace of Darkness'), + 'Palace of Darkness - Big Chest': (0xea40, 0x186214, False, 'in Palace of Darkness'), + 'Palace of Darkness - Harmless Hellway': (0xea46, 0x18621a, False, 'in Palace of Darkness'), + 'Palace of Darkness - Boss': (0x180153, 0x186341, False, 'with Helmasaur King'), + "Ganons Tower - Bob's Torch": (0x180161, 0x186363, False, "in Ganon's Tower"), + 'Ganons Tower - Hope Room - Left': (0xead9, 0x1862ad, False, "in Ganon's Tower"), + 'Ganons Tower - Hope Room - Right': (0xeadc, 0x1862b0, False, "in Ganon's Tower"), + 'Ganons Tower - Tile Room': (0xeae2, 0x1862b6, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Top Left': (0xeae5, 0x1862b9, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Top Right': (0xeae8, 0x1862bc, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Bottom Left': (0xeaeb, 0x1862bf, False, "in Ganon's Tower"), + 'Ganons Tower - Compass Room - Bottom Right': (0xeaee, 0x1862c2, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Top Left': (0xeab8, 0x18628c, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Top Right': (0xeabb, 0x18628f, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Bottom Left': (0xeabe, 0x186292, False, "in Ganon's Tower"), + 'Ganons Tower - DMs Room - Bottom Right': (0xeac1, 0x186295, False, "in Ganon's Tower"), + 'Ganons Tower - Map Chest': (0xead3, 0x1862a7, False, "in Ganon's Tower"), + 'Ganons Tower - Firesnake Room': (0xead0, 0x1862a4, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Top Left': (0xeac4, 0x186298, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Top Right': (0xeac7, 0x18629b, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Bottom Left': (0xeaca, 0x18629e, False, "in Ganon's Tower"), + 'Ganons Tower - Randomizer Room - Bottom Right': (0xeacd, 0x1862a1, False, "in Ganon's Tower"), + "Ganons Tower - Bob's Chest": (0xeadf, 0x1862b3, False, "in Ganon's Tower"), + 'Ganons Tower - Big Chest': (0xead6, 0x1862aa, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Room - Left': (0xeaf4, 0x1862c8, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Room - Right': (0xeaf7, 0x1862cb, False, "in Ganon's Tower"), + 'Ganons Tower - Big Key Chest': (0xeaf1, 0x1862c5, False, "in Ganon's Tower"), + 'Ganons Tower - Mini Helmasaur Room - Left': (0xeafd, 0x1862d1, False, "atop Ganon's Tower"), + 'Ganons Tower - Mini Helmasaur Room - Right': (0xeb00, 0x1862d4, False, "atop Ganon's Tower"), + 'Ganons Tower - Pre-Moldorm Chest': (0xeb03, 0x1862d7, False, "atop Ganon's Tower"), + 'Ganons Tower - Validation Chest': (0xeb06, 0x1862da, False, "atop Ganon's Tower"), + 'Ganon': (None, None, False, 'from me'), + 'Agahnim 1': (None, None, False, 'from Ganon\'s wizardry form'), + 'Agahnim 2': (None, None, False, 'from Ganon\'s wizardry form'), + 'Floodgate': (None, None, False, None), + 'Frog': (None, None, False, None), + 'Missing Smith': (None, None, False, None), + 'Dark Blacksmith Ruins': (None, None, False, None), + 'Eastern Palace - Prize': ([0x1209D, 0x53EF8, 0x53EF9, 0x180052, 0x18007C, 0xC6FE], None, True, 'Eastern Palace'), + 'Desert Palace - Prize': ([0x1209E, 0x53F1C, 0x53F1D, 0x180053, 0x180078, 0xC6FF], None, True, 'Desert Palace'), + 'Tower of Hera - Prize': ([0x120A5, 0x53F0A, 0x53F0B, 0x18005A, 0x18007A, 0xC706], None, True, 'Tower of Hera'), + 'Palace of Darkness - Prize': ([0x120A1, 0x53F00, 0x53F01, 0x180056, 0x18007D, 0xC702], None, True, 'Palace of Darkness'), + 'Swamp Palace - Prize': ([0x120A0, 0x53F6C, 0x53F6D, 0x180055, 0x180071, 0xC701], None, True, 'Swamp Palace'), + 'Thieves\' Town - Prize': ([0x120A6, 0x53F36, 0x53F37, 0x18005B, 0x180077, 0xC707], None, True, 'Thieves\' Town'), + 'Skull Woods - Prize': ([0x120A3, 0x53F12, 0x53F13, 0x180058, 0x18007B, 0xC704], None, True, 'Skull 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')} diff --git a/Rom.py b/Rom.py index c18784ab..160ef4b5 100644 --- a/Rom.py +++ b/Rom.py @@ -18,7 +18,7 @@ from EntranceShuffle import door_addresses JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = '1907d4caccffe60fc69940cfa11b2dab' +# RANDOMIZERBASEHASH = '1907d4caccffe60fc69940cfa11b2dab' class JsonRom(object): @@ -35,16 +35,6 @@ class JsonRom(object): return self.patches[str(startaddress)] = list(values) - def write_int16(self, address, value): - self.write_bytes(address, int16_as_bytes(value)) - - def write_int16s(self, startaddress, values): - byte_list = [int16_as_bytes(value) for value in values] - self.patches[str(startaddress)] = [byte for bytes in byte_list for byte in bytes] - - def write_int32(self, address, value): - self.write_bytes(address, int32_as_bytes(value)) - def write_to_file(self, file): with open(file, 'w') as stream: json.dump([self.patches], stream) @@ -54,8 +44,6 @@ class JsonRom(object): h.update(json.dumps([self.patches]).encode('utf-8')) return h.hexdigest() - - class LocalRom(object): def __init__(self, file, patch=True): @@ -72,20 +60,6 @@ class LocalRom(object): for i, value in enumerate(values): self.write_byte(startaddress + i, value) - def write_int16(self, address, value): - self.write_bytes(address, int16_as_bytes(value)) - - def write_int16s(self, startaddress, values): - for i, value in enumerate(values): - self.write_int16(startaddress + (i * 2), value) - - def write_int32(self, address, value): - self.write_bytes(address, int32_as_bytes(value)) - - def write_int32s(self, startaddress, values): - for i, value in enumerate(values): - self.write_int32(startaddress + (i * 2), value) - def write_to_file(self, file): with open(file, 'wb') as outfile: outfile.write(self.buffer) @@ -109,10 +83,10 @@ class LocalRom(object): self.write_bytes(int(baseaddress), values) # verify md5 - patchedmd5 = hashlib.md5() - patchedmd5.update(self.buffer) - 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.') + # patchedmd5 = hashlib.md5() + # patchedmd5.update(self.buffer) + # 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 patch_enemizer(self, rando_patch, base_enemizer_patch_path, enemizer_patch): # extend to 4MB @@ -142,6 +116,20 @@ class LocalRom(object): h.update(self.buffer) return h.hexdigest() +def write_int16(rom, address, value): + rom.write_bytes(address, int16_as_bytes(value)) + +def write_int32(rom, address, value): + rom.write_bytes(address, int32_as_bytes(value)) + +def write_int16s(rom, startaddress, values): + for i, value in enumerate(values): + write_int16(rom, startaddress + (i * 2), value) + +def write_int32s(rom, startaddress, values): + for i, value in enumerate(values): + write_int32(rom, startaddress + (i * 4), value) + def read_rom(stream): "Reads rom into bytearray and strips off any smc header" buffer = bytearray(stream.read()) @@ -461,6 +449,11 @@ def patch_rom(world, player, rom): itemid = 0x32 if location.item.type == "SmallKey": itemid = 0x24 + if location.item and location.item.player != player: + if location.player_address is not None: + rom.write_byte(location.player_address, location.item.player) + else: + itemid = 0x5A rom.write_byte(location.address, itemid) else: # crystals @@ -490,9 +483,9 @@ def patch_rom(world, player, rom): rom.write_byte(0x15B8C + offset, ow_area) - rom.write_int16(0x15BDB + 2 * offset, vram_loc) - rom.write_int16(0x15C79 + 2 * offset, scroll_y) - rom.write_int16(0x15D17 + 2 * offset, scroll_x) + write_int16(rom, 0x15BDB + 2 * offset, vram_loc) + write_int16(rom, 0x15C79 + 2 * offset, scroll_y) + write_int16(rom, 0x15D17 + 2 * offset, scroll_x) # for positioning fixups we abuse the roomid as a way of identifying which exit data we are appling # Thanks to Zarby89 for originally finding these values @@ -503,25 +496,25 @@ def patch_rom(world, player, rom): 'Palace of Darkness Exit', 'Swamp Palace Exit', 'Ganons Tower Exit', 'Desert Palace Exit (North)', 'Agahnims Tower Exit', 'Spiral Cave Exit (Top)', 'Superbunny Cave Exit (Bottom)', 'Turtle Rock Ledge Exit (East)']: # For exits that connot be reached from another, no need to apply offset fixes. - rom.write_int16(0x15DB5 + 2 * offset, link_y) # same as final else + write_int16(rom, 0x15DB5 + 2 * offset, link_y) # same as final else elif room_id == 0x0059 and world.fix_skullwoods_exit: - rom.write_int16(0x15DB5 + 2 * offset, 0x00F8) + write_int16(rom, 0x15DB5 + 2 * offset, 0x00F8) elif room_id == 0x004a and world.fix_palaceofdarkness_exit: - rom.write_int16(0x15DB5 + 2 * offset, 0x0640) + write_int16(rom, 0x15DB5 + 2 * offset, 0x0640) elif room_id == 0x00d6 and world.fix_trock_exit: - rom.write_int16(0x15DB5 + 2 * offset, 0x0134) + write_int16(rom, 0x15DB5 + 2 * offset, 0x0134) elif room_id == 0x000c and world.fix_gtower_exit: # fix ganons tower exit point - rom.write_int16(0x15DB5 + 2 * offset, 0x00A4) + write_int16(rom, 0x15DB5 + 2 * offset, 0x00A4) else: - rom.write_int16(0x15DB5 + 2 * offset, link_y) + write_int16(rom, 0x15DB5 + 2 * offset, link_y) - rom.write_int16(0x15E53 + 2 * offset, link_x) - rom.write_int16(0x15EF1 + 2 * offset, camera_y) - rom.write_int16(0x15F8F + 2 * offset, camera_x) + write_int16(rom, 0x15E53 + 2 * offset, link_x) + write_int16(rom, 0x15EF1 + 2 * offset, camera_y) + write_int16(rom, 0x15F8F + 2 * offset, camera_x) rom.write_byte(0x1602D + offset, unknown_1) rom.write_byte(0x1607C + offset, unknown_2) - rom.write_int16(0x160CB + 2 * offset, door_1) - rom.write_int16(0x16169 + 2 * offset, door_2) + write_int16(rom, 0x160CB + 2 * offset, door_1) + write_int16(rom, 0x16169 + 2 * offset, door_2) elif isinstance(exit.addresses, list): # is hole for address in exit.addresses: @@ -605,7 +598,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x34FD6, 0x80) overflow_replacement = GREEN_TWENTY_RUPEES # Rupoor negative value - rom.write_int16(0x180036, world.rupoor_cost) + write_int16(rom, 0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x02) # Hookshot only elif world.difficulty_adjustments == 'expert': @@ -623,7 +616,7 @@ def patch_rom(world, player, rom): rom.write_byte(0x34FD6, 0x80) overflow_replacement = GREEN_TWENTY_RUPEES # Rupoor negative value - rom.write_int16(0x180036, world.rupoor_cost) + write_int16(rom, 0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x00) # Nothing else: @@ -640,7 +633,7 @@ def patch_rom(world, player, rom): #Enable catching fairies rom.write_byte(0x34FD6, 0xF0) # Rupoor negative value - rom.write_int16(0x180036, world.rupoor_cost) + write_int16(rom, 0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x03) # All standard items #Set overflow items for progressive equipment @@ -658,15 +651,35 @@ def patch_rom(world, player, rom): difficulty = world.difficulty_requirements #Set overflow items for progressive equipment + mw_sword_replacements = {0: overflow_replacement, + 1: item_table['Fighter Sword'][3], + 2: item_table['Master Sword'][3], + 3: item_table['Tempered Sword'][3], + 4: item_table['Golden Sword'][3]} + mw_shield_replacements = {0: overflow_replacement, + 1: item_table['Blue Shield'][3], + 2: item_table['Red Shield'][3], + 3: item_table['Mirror Shield'][3]} + mw_armor_replacements = {0: overflow_replacement, + 1: item_table['Blue Mail'][3], + 2: item_table['Red Mail'][3]} + mw_bottle_replacements = {0: overflow_replacement, + 1: item_table['Blue Potion'][3], + 2: item_table['Blue Potion'][3], + 3: item_table['Blue Potion'][3], + 4: item_table['Blue Potion'][3]} + mw_bow_replacements = {0: overflow_replacement, + 1: item_table['Bow'][3], + 2: item_table['Bow'][3]} rom.write_bytes(0x180090, - [difficulty.progressive_sword_limit, overflow_replacement, - difficulty.progressive_shield_limit, overflow_replacement, - difficulty.progressive_armor_limit, overflow_replacement, - difficulty.progressive_bottle_limit, overflow_replacement, - difficulty.progressive_bow_limit, overflow_replacement]) - + [difficulty.progressive_sword_limit, mw_sword_replacements[difficulty.progressive_sword_limit] if world.players > 1 else overflow_replacement, + difficulty.progressive_shield_limit, mw_shield_replacements[difficulty.progressive_shield_limit] if world.players > 1 else overflow_replacement, + difficulty.progressive_armor_limit, mw_armor_replacements[difficulty.progressive_armor_limit] if world.players > 1 else overflow_replacement, + difficulty.progressive_bottle_limit, mw_bottle_replacements[difficulty.progressive_bottle_limit] if world.players > 1 else overflow_replacement, + difficulty.progressive_bow_limit, mw_bow_replacements[difficulty.progressive_bow_limit] if world.players > 1 else overflow_replacement]) + if difficulty.progressive_bow_limit < 2 and world.swords == 'swordless': - rom.write_bytes(0x180098, [2, overflow_replacement]) + rom.write_bytes(0x180098, [2, mw_bow_replacements[difficulty.progressive_bow_limit] if world.players > 1 else overflow_replacement]) rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon # set up game internal RNG seed @@ -802,37 +815,37 @@ def patch_rom(world, player, rom): ERtimeincrease = ERtimeincrease + 15 if world.clock_mode == 'off': rom.write_bytes(0x180190, [0x00, 0x00, 0x00]) # turn off clock mode - rom.write_int32(0x180200, 0) # red clock adjustment time (in frames, sint32) - rom.write_int32(0x180204, 0) # blue clock adjustment time (in frames, sint32) - rom.write_int32(0x180208, 0) # green clock adjustment time (in frames, sint32) - rom.write_int32(0x18020C, 0) # starting time (in frames, sint32) + write_int32(rom, 0x180200, 0) # red clock adjustment time (in frames, sint32) + write_int32(rom, 0x180204, 0) # blue clock adjustment time (in frames, sint32) + write_int32(rom, 0x180208, 0) # green clock adjustment time (in frames, sint32) + write_int32(rom, 0x18020C, 0) # starting time (in frames, sint32) elif world.clock_mode == 'ohko': rom.write_bytes(0x180190, [0x01, 0x02, 0x01]) # ohko timer with resetable timer functionality - rom.write_int32(0x180200, 0) # red clock adjustment time (in frames, sint32) - rom.write_int32(0x180204, 0) # blue clock adjustment time (in frames, sint32) - rom.write_int32(0x180208, 0) # green clock adjustment time (in frames, sint32) - rom.write_int32(0x18020C, 0) # starting time (in frames, sint32) + write_int32(rom, 0x180200, 0) # red clock adjustment time (in frames, sint32) + write_int32(rom, 0x180204, 0) # blue clock adjustment time (in frames, sint32) + write_int32(rom, 0x180208, 0) # green clock adjustment time (in frames, sint32) + write_int32(rom, 0x18020C, 0) # starting time (in frames, sint32) elif world.clock_mode == 'countdown-ohko': rom.write_bytes(0x180190, [0x01, 0x02, 0x01]) # ohko timer with resetable timer functionality - rom.write_int32(0x180200, -100 * 60 * 60 * 60) # red clock adjustment time (in frames, sint32) - rom.write_int32(0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) - rom.write_int32(0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) + write_int32(rom, 0x180200, -100 * 60 * 60 * 60) # red clock adjustment time (in frames, sint32) + write_int32(rom, 0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) + write_int32(rom, 0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) if world.difficulty_adjustments == 'normal': - rom.write_int32(0x18020C, (10 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) + write_int32(rom, 0x18020C, (10 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) else: - rom.write_int32(0x18020C, int((5 + ERtimeincrease / 2) * 60 * 60)) # starting time (in frames, sint32) + write_int32(rom, 0x18020C, int((5 + ERtimeincrease / 2) * 60 * 60)) # starting time (in frames, sint32) if world.clock_mode == 'stopwatch': rom.write_bytes(0x180190, [0x02, 0x01, 0x00]) # set stopwatch mode - rom.write_int32(0x180200, -2 * 60 * 60) # red clock adjustment time (in frames, sint32) - rom.write_int32(0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) - rom.write_int32(0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) - rom.write_int32(0x18020C, 0) # starting time (in frames, sint32) + write_int32(rom, 0x180200, -2 * 60 * 60) # red clock adjustment time (in frames, sint32) + write_int32(rom, 0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) + write_int32(rom, 0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) + write_int32(rom, 0x18020C, 0) # starting time (in frames, sint32) if world.clock_mode == 'countdown': rom.write_bytes(0x180190, [0x01, 0x01, 0x00]) # set countdown, with no reset available - rom.write_int32(0x180200, -2 * 60 * 60) # red clock adjustment time (in frames, sint32) - rom.write_int32(0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) - rom.write_int32(0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) - rom.write_int32(0x18020C, (40 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) + write_int32(rom, 0x180200, -2 * 60 * 60) # red clock adjustment time (in frames, sint32) + write_int32(rom, 0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) + write_int32(rom, 0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) + write_int32(rom, 0x18020C, (40 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) # set up goals for treasure hunt rom.write_bytes(0x180165, [0x0E, 0x28] if world.treasure_hunt_icon == 'Triforce Piece' else [0x0D, 0x28]) @@ -945,8 +958,8 @@ def patch_rom(world, player, rom): return reveal_bytes.get(location.parent_region.dungeon.name, 0x0000) return 0x0000 - rom.write_int16(0x18017A, get_reveal_bytes('Green Pendant') if world.keysanity else 0x0000) # Sahasrahla reveal - rom.write_int16(0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.keysanity else 0x0000) # Bomb Shop Reveal + write_int16(rom, 0x18017A, get_reveal_bytes('Green Pendant') if world.keysanity else 0x0000) # Sahasrahla reveal + write_int16(rom, 0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.keysanity else 0x0000) # Bomb Shop Reveal rom.write_byte(0x180172, 0x01 if world.retro else 0x00) # universal keys rom.write_byte(0x180175, 0x01 if world.retro else 0x00) # rupee bow @@ -974,14 +987,14 @@ def patch_rom(world, player, rom): rom.write_bytes(0x6D313, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) rom.write_byte(0x18004E, 0) # Escape Fill (nothing) - rom.write_int16(0x180183, 300) # Escape fill rupee bow + 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) if world.mode == '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) - rom.write_int16(0x180183, 300) # Escape fill rupee bow + 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) @@ -1024,9 +1037,8 @@ def patch_rom(world, player, rom): # set rom name # 21 bytes from Main import __version__ - rom.name = bytearray('ER_{0}_{1:09}\0'.format(__version__[0:7],world.seed), 'utf8') - assert len(rom.name) <= 21 - rom.write_bytes(0x7FC0, rom.name) + rom.name = bytearray('ER{0}_{1}_{2:09}\0'.format(__version__.split('-')[0].replace('.','')[0:3], player, world.seed), 'utf8') + rom.write_bytes(0x7FC0, rom.name[0:21]) # Write title screen Code hashint = int(rom.get_hash(), 16) @@ -1072,8 +1084,25 @@ def write_custom_shops(rom, world, player): rom.write_bytes(0x184900, items_data) +def hud_format_text(text): + output = bytes() + for char in text.lower(): + if 'a' <= char <= 'z': + output += bytes([0x5d + ord(char) - ord('a'), 0x29]) + elif '0' <= char <= '8': + output += bytes([0x77 + ord(char) - ord('0'), 0x29]) + elif char == '9': + output += b'\x4b\x29' + elif char == ' ': + output += b'\x7f\x00' + else: + output += b'\x2a\x29' + while len(output) < 32: + output += b'\x7f\x00' + return output[:32] -def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite): + +def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite, names = None): # enable instant item menu if fastmenu == 'instant': @@ -1132,6 +1161,11 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr if sprite is not None: write_sprite(rom, sprite) + # set player names + for player, name in names.items(): + if 0 < player <= 64: + rom.write_bytes(0x185380 + ((player - 1) * 32), hud_format_text(name)) + if isinstance(rom, LocalRom): rom.write_crc() @@ -1452,117 +1486,117 @@ def set_inverted_mode(world, rom): rom.write_byte(snes_to_pc(0x05AF79), 0xF0) rom.write_byte(snes_to_pc(0x0DB3C5), 0xC6) rom.write_byte(snes_to_pc(0x07A3F4), 0xF0) # duck - rom.write_int16s(snes_to_pc(0x02E849), [0x0043, 0x0056, 0x0058, 0x006C, 0x006F, 0x0070, 0x007B, 0x007F, 0x001B]) # dw flute - rom.write_int16(snes_to_pc(0x02E8D5), 0x07C8) - rom.write_int16(snes_to_pc(0x02E8F7), 0x01F8) + write_int16s(rom, snes_to_pc(0x02E849), [0x0043, 0x0056, 0x0058, 0x006C, 0x006F, 0x0070, 0x007B, 0x007F, 0x001B]) # dw flute + write_int16(rom, snes_to_pc(0x02E8D5), 0x07C8) + write_int16(rom, snes_to_pc(0x02E8F7), 0x01F8) rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof # the following bytes should only be written in vanilla # or they'll overwrite the randomizer's shuffles if world.shuffle == 'vanilla': rom.write_byte(0xDBB73 + 0x23, 0x37) # switch AT and GT rom.write_byte(0xDBB73 + 0x36, 0x24) - rom.write_int16(0x15AEE + 2*0x38, 0x00E0) - rom.write_int16(0x15AEE + 2*0x25, 0x000C) + write_int16(rom, 0x15AEE + 2*0x38, 0x00E0) + write_int16(rom, 0x15AEE + 2*0x25, 0x000C) if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(0x15B8C, 0x6C) rom.write_byte(0xDBB73 + 0x00, 0x53) # switch bomb shop and links house rom.write_byte(0xDBB73 + 0x52, 0x01) rom.write_byte(0xDBB73 + 0x15, 0x06) # bumper and old man cave - rom.write_int16(0x15AEE + 2*0x17, 0x00F0) + write_int16(rom, 0x15AEE + 2*0x17, 0x00F0) rom.write_byte(0xDBB73 + 0x05, 0x16) - rom.write_int16(0x15AEE + 2*0x07, 0x00FB) + write_int16(rom, 0x15AEE + 2*0x07, 0x00FB) rom.write_byte(0xDBB73 + 0x2D, 0x17) - rom.write_int16(0x15AEE + 2*0x2F, 0x00EB) + write_int16(rom, 0x15AEE + 2*0x2F, 0x00EB) rom.write_byte(0xDBB73 + 0x06, 0x2E) - rom.write_int16(0x15AEE + 2*0x08, 0x00E6) + write_int16(rom, 0x15AEE + 2*0x08, 0x00E6) rom.write_byte(0xDBB73 + 0x16, 0x5E) rom.write_byte(0xDBB73 + 0x6F, 0x07) # DDM fairy to old man cave - rom.write_int16(0x15AEE + 2*0x18, 0x00F1) + write_int16(rom, 0x15AEE + 2*0x18, 0x00F1) rom.write_byte(0x15B8C + 0x18, 0x43) - rom.write_int16(0x15BDB + 2 * 0x18, 0x1400) - rom.write_int16(0x15C79 + 2 * 0x18, 0x0294) - rom.write_int16(0x15D17 + 2 * 0x18, 0x0600) - rom.write_int16(0x15DB5 + 2 * 0x18, 0x02E8) - rom.write_int16(0x15E53 + 2 * 0x18, 0x0678) - rom.write_int16(0x15EF1 + 2 * 0x18, 0x0303) - rom.write_int16(0x15F8F + 2 * 0x18, 0x0685) + write_int16(rom, 0x15BDB + 2 * 0x18, 0x1400) + write_int16(rom, 0x15C79 + 2 * 0x18, 0x0294) + write_int16(rom, 0x15D17 + 2 * 0x18, 0x0600) + write_int16(rom, 0x15DB5 + 2 * 0x18, 0x02E8) + write_int16(rom, 0x15E53 + 2 * 0x18, 0x0678) + write_int16(rom, 0x15EF1 + 2 * 0x18, 0x0303) + write_int16(rom, 0x15F8F + 2 * 0x18, 0x0685) rom.write_byte(0x1602D + 0x18, 0x0A) rom.write_byte(0x1607C + 0x18, 0xF6) - rom.write_int16(0x160CB + 2 * 0x18, 0x0000) - rom.write_int16(0x16169 + 2 * 0x18, 0x0000) - rom.write_int16(0x15AEE + 2 * 0x3D, 0x0003) # pyramid exit and houlihan + write_int16(rom, 0x160CB + 2 * 0x18, 0x0000) + write_int16(rom, 0x16169 + 2 * 0x18, 0x0000) + write_int16(rom, 0x15AEE + 2 * 0x3D, 0x0003) # pyramid exit and houlihan rom.write_byte(0x15B8C + 0x3D, 0x5B) - rom.write_int16(0x15BDB + 2 * 0x3D, 0x0B0E) - rom.write_int16(0x15C79 + 2 * 0x3D, 0x075A) - rom.write_int16(0x15D17 + 2 * 0x3D, 0x0674) - rom.write_int16(0x15DB5 + 2 * 0x3D, 0x07A8) - rom.write_int16(0x15E53 + 2 * 0x3D, 0x06E8) - rom.write_int16(0x15EF1 + 2 * 0x3D, 0x07C7) - rom.write_int16(0x15F8F + 2 * 0x3D, 0x06F3) + write_int16(rom, 0x15BDB + 2 * 0x3D, 0x0B0E) + write_int16(rom, 0x15C79 + 2 * 0x3D, 0x075A) + write_int16(rom, 0x15D17 + 2 * 0x3D, 0x0674) + write_int16(rom, 0x15DB5 + 2 * 0x3D, 0x07A8) + write_int16(rom, 0x15E53 + 2 * 0x3D, 0x06E8) + write_int16(rom, 0x15EF1 + 2 * 0x3D, 0x07C7) + write_int16(rom, 0x15F8F + 2 * 0x3D, 0x06F3) rom.write_byte(0x1602D + 0x3D, 0x06) rom.write_byte(0x1607C + 0x3D, 0xFA) - rom.write_int16(0x160CB + 2 * 0x3D, 0x0000) - rom.write_int16(0x16169 + 2 * 0x3D, 0x0000) - rom.write_int16(snes_to_pc(0x02D8D4), 0x112) # change sactuary spawn point to dark sanc + write_int16(rom, 0x160CB + 2 * 0x3D, 0x0000) + write_int16(rom, 0x16169 + 2 * 0x3D, 0x0000) + write_int16(rom, snes_to_pc(0x02D8D4), 0x112) # change sactuary spawn point to dark sanc rom.write_bytes(snes_to_pc(0x02D8E8), [0x22, 0x22, 0x22, 0x23, 0x04, 0x04, 0x04, 0x05]) - rom.write_int16(snes_to_pc(0x02D91A), 0x0400) - rom.write_int16(snes_to_pc(0x02D928), 0x222E) - rom.write_int16(snes_to_pc(0x02D936), 0x229A) - rom.write_int16(snes_to_pc(0x02D944), 0x0480) - rom.write_int16(snes_to_pc(0x02D952), 0x00A5) - rom.write_int16(snes_to_pc(0x02D960), 0x007F) + write_int16(rom, snes_to_pc(0x02D91A), 0x0400) + write_int16(rom, snes_to_pc(0x02D928), 0x222E) + write_int16(rom, snes_to_pc(0x02D936), 0x229A) + write_int16(rom, snes_to_pc(0x02D944), 0x0480) + write_int16(rom, snes_to_pc(0x02D952), 0x00A5) + write_int16(rom, snes_to_pc(0x02D960), 0x007F) rom.write_byte(snes_to_pc(0x02D96D), 0x14) rom.write_byte(snes_to_pc(0x02D974), 0x00) rom.write_byte(snes_to_pc(0x02D97B), 0xFF) rom.write_byte(snes_to_pc(0x02D982), 0x00) rom.write_byte(snes_to_pc(0x02D989), 0x02) rom.write_byte(snes_to_pc(0x02D990), 0x00) - rom.write_int16(snes_to_pc(0x02D998), 0x0000) - rom.write_int16(snes_to_pc(0x02D9A6), 0x005A) + write_int16(rom, snes_to_pc(0x02D998), 0x0000) + write_int16(rom, snes_to_pc(0x02D9A6), 0x005A) rom.write_byte(snes_to_pc(0x02D9B3), 0x12) # keep the old man spawn point at old man house unless shuffle is vanilla if world.shuffle in ['vanilla', 'dungeonsfull', 'dungeonssimple']: rom.write_bytes(snes_to_pc(0x308350), [0x00, 0x00, 0x01]) - rom.write_int16(snes_to_pc(0x02D8DE), 0x00F1) + write_int16(rom, snes_to_pc(0x02D8DE), 0x00F1) rom.write_bytes(snes_to_pc(0x02D910), [0x1F, 0x1E, 0x1F, 0x1F, 0x03, 0x02, 0x03, 0x03]) - rom.write_int16(snes_to_pc(0x02D924), 0x0300) - rom.write_int16(snes_to_pc(0x02D932), 0x1F10) - rom.write_int16(snes_to_pc(0x02D940), 0x1FC0) - rom.write_int16(snes_to_pc(0x02D94E), 0x0378) - rom.write_int16(snes_to_pc(0x02D95C), 0x0187) - rom.write_int16(snes_to_pc(0x02D96A), 0x017F) + write_int16(rom, snes_to_pc(0x02D924), 0x0300) + write_int16(rom, snes_to_pc(0x02D932), 0x1F10) + write_int16(rom, snes_to_pc(0x02D940), 0x1FC0) + write_int16(rom, snes_to_pc(0x02D94E), 0x0378) + write_int16(rom, snes_to_pc(0x02D95C), 0x0187) + write_int16(rom, snes_to_pc(0x02D96A), 0x017F) rom.write_byte(snes_to_pc(0x02D972), 0x06) rom.write_byte(snes_to_pc(0x02D979), 0x00) rom.write_byte(snes_to_pc(0x02D980), 0xFF) rom.write_byte(snes_to_pc(0x02D987), 0x00) rom.write_byte(snes_to_pc(0x02D98E), 0x22) rom.write_byte(snes_to_pc(0x02D995), 0x12) - rom.write_int16(snes_to_pc(0x02D9A2), 0x0000) - rom.write_int16(snes_to_pc(0x02D9B0), 0x0007) + write_int16(rom, snes_to_pc(0x02D9A2), 0x0000) + write_int16(rom, snes_to_pc(0x02D9B0), 0x0007) rom.write_byte(snes_to_pc(0x02D9B8), 0x12) rom.write_bytes(0x180247, [0x00, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00]) - rom.write_int16(0x15AEE + 2 * 0x06, 0x0020) # post aga hyrule castle spawn + write_int16(rom, 0x15AEE + 2 * 0x06, 0x0020) # post aga hyrule castle spawn rom.write_byte(0x15B8C + 0x06, 0x1B) - rom.write_int16(0x15BDB + 2 * 0x06, 0x00AE) - rom.write_int16(0x15C79 + 2 * 0x06, 0x0610) - rom.write_int16(0x15D17 + 2 * 0x06, 0x077E) - rom.write_int16(0x15DB5 + 2 * 0x06, 0x0672) - rom.write_int16(0x15E53 + 2 * 0x06, 0x07F8) - rom.write_int16(0x15EF1 + 2 * 0x06, 0x067D) - rom.write_int16(0x15F8F + 2 * 0x06, 0x0803) + write_int16(rom, 0x15BDB + 2 * 0x06, 0x00AE) + write_int16(rom, 0x15C79 + 2 * 0x06, 0x0610) + write_int16(rom, 0x15D17 + 2 * 0x06, 0x077E) + write_int16(rom, 0x15DB5 + 2 * 0x06, 0x0672) + write_int16(rom, 0x15E53 + 2 * 0x06, 0x07F8) + write_int16(rom, 0x15EF1 + 2 * 0x06, 0x067D) + write_int16(rom, 0x15F8F + 2 * 0x06, 0x0803) rom.write_byte(0x1602D + 0x06, 0x00) rom.write_byte(0x1607C + 0x06, 0xF2) - rom.write_int16(0x160CB + 2 * 0x06, 0x0000) - rom.write_int16(0x16169 + 2 * 0x06, 0x0000) - rom.write_int16(snes_to_pc(0x02E87B), 0x00AE) # move flute splot 9 - rom.write_int16(snes_to_pc(0x02E89D), 0x0610) - rom.write_int16(snes_to_pc(0x02E8BF), 0x077E) - rom.write_int16(snes_to_pc(0x02E8E1), 0x0672) - rom.write_int16(snes_to_pc(0x02E903), 0x07F8) - rom.write_int16(snes_to_pc(0x02E925), 0x067D) - rom.write_int16(snes_to_pc(0x02E947), 0x0803) - rom.write_int16(snes_to_pc(0x02E969), 0x0000) - rom.write_int16(snes_to_pc(0x02E98B), 0xFFF2) + write_int16(rom, 0x160CB + 2 * 0x06, 0x0000) + write_int16(rom, 0x16169 + 2 * 0x06, 0x0000) + write_int16(rom, snes_to_pc(0x02E87B), 0x00AE) # move flute splot 9 + write_int16(rom, snes_to_pc(0x02E89D), 0x0610) + write_int16(rom, snes_to_pc(0x02E8BF), 0x077E) + write_int16(rom, snes_to_pc(0x02E8E1), 0x0672) + write_int16(rom, snes_to_pc(0x02E903), 0x07F8) + write_int16(rom, snes_to_pc(0x02E925), 0x067D) + write_int16(rom, snes_to_pc(0x02E947), 0x0803) + write_int16(rom, snes_to_pc(0x02E969), 0x0000) + write_int16(rom, snes_to_pc(0x02E98B), 0xFFF2) rom.write_byte(snes_to_pc(0x1AF696), 0xF0) # bat sprite retreat rom.write_byte(snes_to_pc(0x1AF6B2), 0x33) rom.write_bytes(snes_to_pc(0x1AF730), [0x6A, 0x9E, 0x0C, 0x00, 0x7A, 0x9E, 0x0C, @@ -1570,7 +1604,7 @@ def set_inverted_mode(world, rom): 0x0C, 0x00, 0x7A, 0xAE, 0x0C, 0x00, 0x8A, 0xAE, 0x0C, 0x00, 0x67, 0x97, 0x0C, 0x00, 0x8D, 0x97, 0x0C, 0x00]) - rom.write_int16s(snes_to_pc(0x0FF1C8), [0x190F, 0x190F, 0x190F, 0x194C, 0x190F, + write_int16s(rom, snes_to_pc(0x0FF1C8), [0x190F, 0x190F, 0x190F, 0x194C, 0x190F, 0x194B, 0x190F, 0x195C, 0x594B, 0x194C, 0x19EE, 0x19EE, 0x194B, 0x19EE, 0x19EE, 0x19EE, 0x594B, 0x190F, 0x595C, 0x190F, @@ -1578,38 +1612,38 @@ def set_inverted_mode(world, rom): 0x19EE, 0x195C, 0x19EE, 0x19EE, 0x19EE, 0x19EE, 0x595C, 0x595B, 0x190F, 0x190F, 0x190F]) - rom.write_int16s(snes_to_pc(0x0FA480), [0x190F, 0x196B, 0x9D04, 0x9D04, 0x196B, + write_int16s(rom, snes_to_pc(0x0FA480), [0x190F, 0x196B, 0x9D04, 0x9D04, 0x196B, 0x190F, 0x9D04, 0x9D04]) - rom.write_int16s(snes_to_pc(0x1bb810), [0x00BE, 0x00C0, 0x013E]) - rom.write_int16s(snes_to_pc(0x1bb836), [0x001B, 0x001B, 0x001B]) - rom.write_int16(snes_to_pc(0x308300), 0x0140) # new pyramid hole entrance - rom.write_int16(snes_to_pc(0x308320), 0x001B) + write_int16s(rom, snes_to_pc(0x1bb810), [0x00BE, 0x00C0, 0x013E]) + write_int16s(rom, snes_to_pc(0x1bb836), [0x001B, 0x001B, 0x001B]) + write_int16(rom, snes_to_pc(0x308300), 0x0140) # new pyramid hole entrance + write_int16(rom, snes_to_pc(0x308320), 0x001B) if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(snes_to_pc(0x308340), 0x7B) - rom.write_int16(snes_to_pc(0x1af504), 0x148B) - rom.write_int16(snes_to_pc(0x1af50c), 0x149B) - rom.write_int16(snes_to_pc(0x1af514), 0x14A4) - rom.write_int16(snes_to_pc(0x1af51c), 0x1489) - rom.write_int16(snes_to_pc(0x1af524), 0x14AC) - rom.write_int16(snes_to_pc(0x1af52c), 0x54AC) - rom.write_int16(snes_to_pc(0x1af534), 0x148C) - rom.write_int16(snes_to_pc(0x1af53c), 0x548C) - rom.write_int16(snes_to_pc(0x1af544), 0x1484) - rom.write_int16(snes_to_pc(0x1af54c), 0x5484) - rom.write_int16(snes_to_pc(0x1af554), 0x14A2) - rom.write_int16(snes_to_pc(0x1af55c), 0x54A2) - rom.write_int16(snes_to_pc(0x1af564), 0x14A0) - rom.write_int16(snes_to_pc(0x1af56c), 0x54A0) - rom.write_int16(snes_to_pc(0x1af574), 0x148E) - rom.write_int16(snes_to_pc(0x1af57c), 0x548E) - rom.write_int16(snes_to_pc(0x1af584), 0x14AE) - rom.write_int16(snes_to_pc(0x1af58c), 0x54AE) + write_int16(rom, snes_to_pc(0x1af504), 0x148B) + write_int16(rom, snes_to_pc(0x1af50c), 0x149B) + write_int16(rom, snes_to_pc(0x1af514), 0x14A4) + write_int16(rom, snes_to_pc(0x1af51c), 0x1489) + write_int16(rom, snes_to_pc(0x1af524), 0x14AC) + write_int16(rom, snes_to_pc(0x1af52c), 0x54AC) + write_int16(rom, snes_to_pc(0x1af534), 0x148C) + write_int16(rom, snes_to_pc(0x1af53c), 0x548C) + write_int16(rom, snes_to_pc(0x1af544), 0x1484) + write_int16(rom, snes_to_pc(0x1af54c), 0x5484) + write_int16(rom, snes_to_pc(0x1af554), 0x14A2) + write_int16(rom, snes_to_pc(0x1af55c), 0x54A2) + write_int16(rom, snes_to_pc(0x1af564), 0x14A0) + write_int16(rom, snes_to_pc(0x1af56c), 0x54A0) + write_int16(rom, snes_to_pc(0x1af574), 0x148E) + write_int16(rom, snes_to_pc(0x1af57c), 0x548E) + write_int16(rom, snes_to_pc(0x1af584), 0x14AE) + write_int16(rom, snes_to_pc(0x1af58c), 0x54AE) rom.write_byte(snes_to_pc(0x00DB9D), 0x1A) # castle hole graphics rom.write_byte(snes_to_pc(0x00DC09), 0x1A) rom.write_byte(snes_to_pc(0x00D009), 0x31) rom.write_byte(snes_to_pc(0x00D0e8), 0xE0) rom.write_byte(snes_to_pc(0x00D1c7), 0x00) - rom.write_int16(snes_to_pc(0x1BE8DA), 0x39AD) + write_int16(rom, snes_to_pc(0x1BE8DA), 0x39AD) rom.write_byte(0xF6E58, 0x80) # no whirlpool under castle gate rom.write_bytes(0x0086E, [0x5C, 0x00, 0xA0, 0xA1]) # TR tail rom.write_bytes(snes_to_pc(0x1BC67A), [0x2E, 0x0B, 0x82]) # add warps under rocks @@ -1619,25 +1653,25 @@ def set_inverted_mode(world, rom): rom.write_bytes(snes_to_pc(0x1BC3DF), [0xD8, 0xD1]) rom.write_bytes(snes_to_pc(0x1BD1D8), [0xA8, 0x02, 0x82, 0xFF, 0xFF]) rom.write_bytes(snes_to_pc(0x1BC85A), [0x50, 0x0F, 0x82]) - rom.write_int16(0xDB96F + 2 * 0x35, 0x001B) # move pyramid exit door - rom.write_int16(0xDBA71 + 2 * 0x35, 0x06A4) + write_int16(rom, 0xDB96F + 2 * 0x35, 0x001B) # move pyramid exit door + write_int16(rom, 0xDBA71 + 2 * 0x35, 0x06A4) if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(0xDBB73 + 0x35, 0x36) rom.write_byte(snes_to_pc(0x09D436), 0xF3) # remove castle gate warp if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: - rom.write_int16(0x15AEE + 2 * 0x37, 0x0010) # pyramid exit to new hc area + write_int16(rom, 0x15AEE + 2 * 0x37, 0x0010) # pyramid exit to new hc area rom.write_byte(0x15B8C + 0x37, 0x1B) - rom.write_int16(0x15BDB + 2 * 0x37, 0x0418) - rom.write_int16(0x15C79 + 2 * 0x37, 0x0679) - rom.write_int16(0x15D17 + 2 * 0x37, 0x06B4) - rom.write_int16(0x15DB5 + 2 * 0x37, 0x06C6) - rom.write_int16(0x15E53 + 2 * 0x37, 0x0738) - rom.write_int16(0x15EF1 + 2 * 0x37, 0x06E6) - rom.write_int16(0x15F8F + 2 * 0x37, 0x0733) + write_int16(rom, 0x15BDB + 2 * 0x37, 0x0418) + write_int16(rom, 0x15C79 + 2 * 0x37, 0x0679) + write_int16(rom, 0x15D17 + 2 * 0x37, 0x06B4) + write_int16(rom, 0x15DB5 + 2 * 0x37, 0x06C6) + write_int16(rom, 0x15E53 + 2 * 0x37, 0x0738) + write_int16(rom, 0x15EF1 + 2 * 0x37, 0x06E6) + write_int16(rom, 0x15F8F + 2 * 0x37, 0x0733) rom.write_byte(0x1602D + 0x37, 0x07) rom.write_byte(0x1607C + 0x37, 0xF9) - rom.write_int16(0x160CB + 2 * 0x37, 0x0000) - rom.write_int16(0x16169 + 2 * 0x37, 0x0000) + write_int16(rom, 0x160CB + 2 * 0x37, 0x0000) + write_int16(rom, 0x16169 + 2 * 0x37, 0x0000) rom.write_bytes(snes_to_pc(0x1BC387), [0xDD, 0xD1]) rom.write_bytes(snes_to_pc(0x1BD1DD), [0xA4, 0x06, 0x82, 0x9E, 0x06, 0x82, 0xFF, 0xFF]) rom.write_byte(0x180089, 0x01) # open TR after exit @@ -1652,9 +1686,9 @@ def patch_shuffled_dark_sanc(world, rom, player): rom.write_byte(0x180241, 0x01) rom.write_byte(0x180248, door_index + 1) - rom.write_int16(0x180250, room_id) + write_int16(rom, 0x180250, room_id) rom.write_byte(0x180252, ow_area) - rom.write_int16s(0x180253, [vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x]) + write_int16s(rom, 0x180253, [vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x]) rom.write_bytes(0x180262, [unknown_1, unknown_2, 0x00]) InconvenientDungeonEntrances = {'Turtle Rock': 'Turtle Rock Main', diff --git a/Utils.py b/Utils.py index de9fd0c5..243066b9 100644 --- a/Utils.py +++ b/Utils.py @@ -1,7 +1,11 @@ import os +import re import subprocess import sys +def parse_names_string(names): + return {player: name for player, name in enumerate([n for n in re.split(r'[, ]', names) if n], 1)} + def int16_as_bytes(value): value = value & 0xFFFF return [value & 0xFF, (value >> 8) & 0xFF] diff --git a/data/base2current.json b/data/base2current.json index 61309197..56ce1e33 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[193]},{"127":[176]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,109,223,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,194,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,69,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[3]},{"5002":[181]},{"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,118,196,160]},{"21847":[34,78,197,160,234]},{"21854":[34,219,148]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,151,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,42,253,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[14,161,160]},{"30994":[144,161,160]},{"31001":[14,161,160]},{"31011":[144,161,160]},{"31046":[227,218,160]},{"31102":[34,90,151,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[202,218,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,29,196,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,103,219,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60790":[230,219,160]},{"61077":[170,178,160]},{"61133":[34,156,193,160,234]},{"62723":[34,32,132,160]},{"65511":[34,121,237,160]},{"65607":[133,236,160]},{"65778":[34,53,141,160,234,234]},{"65879":[34,169,191,160,234]},{"65894":[34,215,191,160]},{"66284":[34,250,191,160]},{"66292":[92,137,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,111,239,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,119,220,160,234,234]},{"67934":[55,249,160]},{"68495":[34,150,152,160,208,6,234]},{"68584":[59,249,160]},{"69776":[34,150,152,160,208,4,234]},{"70410":[59,249,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,130,247,160,234]},{"72216":[156,218,160]},{"72241":[34,215,191,160]},{"72246":[117,151,160]},{"73041":[34,113,152,160]},{"73263":[124,236,160]},{"73340":[34,241,128,160,234]},{"73937":[34,231,191,160]},{"74833":[34,213,130,164]},{"76423":[34,126,237,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]},{"78138":[28,248,160]},{"78172":[34,18,220,160,34,90,151,160,234,234]},{"79603":[34,208,218,160]},{"79767":[34,134,220,160]},{"82676":[59,249,160]},{"87892":[34,95,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,172,238,160]},{"90651":[34,230,235,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166331":[34,113,152,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[229,178,160]},{"173058":[229,178,160]},{"173307":[229,178,160]},{"173320":[229,178,160]},{"183384":[34,45,249,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,113,152,160]},{"187902":[34,136,152,160]},{"188153":[0]},{"188234":[16,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,95,149,160]},{"188959":[34,17,235,160,128,13]},{"189655":[34,60,193,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191439":[34]},{"191441":[194,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,109,194,160,234,234]},{"192037":[34,136,152,160]},{"192083":[34,126,141,160,234,234]},{"192095":[34,147,192,160,234]},{"192121":[227,192,160]},{"192140":[34,43,142,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,61,133,160]},{"192350":[141,133,160]},{"192378":[235,132,160]},{"192463":[164,132,160]},{"192506":[34,80,133,160,234,234,234,234,234,234]},{"192561":[182,132,160]},{"192650":[34,106,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,112,141,160]},{"192893":[34,136,152,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,113,152,160]},{"193025":[252,141,160]},{"193033":[34,113,152,160]},{"193140":[34,156,176,160]},{"193157":[34,149,176,160]},{"193440":[34,191,216,160]},{"193472":[166,234,160]},{"193546":[34,191,216,160]},{"193578":[110,234,160]},{"193854":[34,135,141,160]},{"193859":[32]},{"193888":[35,192,160]},{"194141":[34,251,192,160,234,234,234,234,234]},{"194177":[34,113,192,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,17,235,160]},{"195327":[34,46,141,160,240,2,96,234]},{"195539":[34,45,196,160]},{"195589":[7,174,160]},{"195710":[34,29,174,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[224,173,160]},{"195909":[234,173,160]},{"196477":[34,136,152,160]},{"196497":[34,113,152,160]},{"197750":[250,189,160]},{"198721":[34,161,215,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,39,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,83,141,160]},{"199659":[34,168,163,160,96,234]},{"199950":[34,119,141,160]},{"199964":[169,173,160]},{"199993":[34,244,173,160]},{"200070":[34,69,141,160]},{"200470":[34,62,141,160]},{"200845":[34,76,141,160,201]},{"200851":[240]},{"200853":[34]},{"200855":[141,160]},{"200858":[8]},{"200893":[34,83,141,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,179,195,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[92,141,160]},{"208994":[34,83,141,160,234,234]},{"209010":[139]},{"209098":[235,141,160]},{"209199":[41,247]},{"210057":[92,243,216,160,234,234,234,234]},{"210164":[162,141,160]},{"211413":[218,141,160]},{"213139":[189,185,164]},{"213169":[103,133,160]},{"214205":[34,54,178,160]},{"214972":[200,177,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,51,219,160]},{"217579":[34,156,190,160]},{"224597":[34,191,215,160]},{"224693":[34,211,215,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,225,216,160,234]},{"226304":[34,20,216,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,92,237,160]},{"230816":[186,176,160]},{"230955":[186,176,160]},{"233256":[160,150,160]},{"233266":[34,165,128,160]},{"233297":[34,101,237,160,234]},{"233987":[57,218,160]},{"234731":[34,150,218,160]},{"234747":[34,112,237,160]},{"235953":[34,5,133,160,144,3]},{"236024":[152,201,160]},{"236047":[124,190,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[7,195,160]},{"238498":[34,178,193,160,128,3]},{"238562":[34,203,195,160,240,4,234]},{"238751":[34,77,217,160]},{"238964":[34,77,217,160]},{"239190":[34,77,217,160]},{"239964":[44,220,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,53,216,160]},{"241165":[34,53,216,160]},{"241175":[34,235,128,164]},{"241294":[34,53,216,160]},{"241304":[34,235,128,164]},{"241814":[34,53,216,160,24,125,139,176]},{"241869":[11,235,160]},{"241877":[34,53,216,160,24,125,139,176]},{"242942":[34,127,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,171,219,160,234]},{"243067":[234,234,34,141,213,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,83,216,160,234]},{"250478":[34,137,216,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,86,243,160,234]},{"273608":[34,42,180,160,76,230,172]},{"275716":[34,14,180,160,234]},{"276202":[34,75,180,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,239,224,160,234]},{"279601":[34,156,128,160,234]},{"279644":[177,133,160,34,191,237,160,234,234]},{"280037":[34,159,233,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[11,235,160]},{"280106":[92,70,225,160,234]},{"280265":[128,207,160]},{"280287":[128,206,160]},{"280314":[128,207,160]},{"280335":[34,82,177,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,150,191,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,53,216,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,197,197,160,234]},{"296466":[128,208]},{"296471":[129,208]},{"296480":[128,210]},{"296488":[128,208]},{"296493":[129,208]},{"296502":[128,210,34,0,128,160]},{"296583":[34,113,152,160]},{"296619":[128,211]},{"296810":[144,205]},{"297038":[176,203]},{"297052":[160,204]},{"297087":[34,33,133,160,234,176]},{"297144":[128,206]},{"297200":[176,203]},{"297225":[160,204]},{"297263":[129,212]},{"297292":[34,94,192,160]},{"297309":[136,212]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"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]},{"324619":[34,138,150,160]},{"324675":[34,149,219,160]},{"324780":[8,8,16]},{"324896":[34,215,235,160,34,125,219,160,234,234,234,234,234,234]},{"324996":[34,231,191,160]},{"325098":[169,2,0,234]},{"325131":[34,7,236,160]},{"325203":[34,156,175,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":[149,237,160]},{"342245":[34,39,132,160,34,254,218,160,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,196,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,136,152,160]},{"344119":[34,136,152,160]},{"344185":[34,136,152,160]},{"344248":[34,136,152,160]},{"344312":[34,136,152,160]},{"344375":[34,136,152,160]},{"344441":[34,136,152,160]},{"344499":[34,136,152,160]},{"344565":[34,136,152,160]},{"344623":[34,136,152,160]},{"344689":[34,136,152,160]},{"344747":[34,136,152,160]},{"344813":[34,136,152,160]},{"344871":[34,136,152,160]},{"344937":[34,136,152,160]},{"345406":[34,166,151,160]},{"345531":[34,185,151,160,96]},{"345560":[34,185,151,160,96]},{"393133":[202,218,160]},{"410028":[94,255,161]},{"410347":[34,156,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[82,237,160]},{"412876":[92,106,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,179,235,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,205,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,107,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,107,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[138,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,136,152,160]},{"449502":[34,77,220,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,175]},{"449578":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,205]},{"449612":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,154,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,183,152,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,10,153,160]},{"450360":[34,102,180,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,210,181,160,234]},{"450492":[34]},{"450494":[152,160,234,234,234]},{"450861":[34,232,181,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,125,153,160,234]},{"452559":[34,107,153,160,234]},{"452581":[34,143,153,160,234]},{"452634":[96]},{"453064":[34,170,157,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,180,190,160,234,234,76,230,236]},{"453867":[34,161,153,160,234]},{"453892":[34,179,153,160]},{"454092":[34,28,153,160,234,234,234,234,234]},{"454233":[34,28,153,160,234,234,234,234,234]},{"454256":[34,28,192,160,234]},{"454282":[34,28,153,160,234,234,234,234,234]},{"454459":[34,28,153,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,223,131,160]},{"457344":[34,140,151,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,160,213,160]},{"457513":[34,198,213,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,88,193,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,199,235,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,157,225,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[151,233,160]},{"487403":[169,2,0,234]},{"487935":[34,197,225,160]},{"488156":[34,197,225,160]},{"488213":[34,197,225,160]},{"488242":[34,197,225,160]},{"488309":[34,197,225,160]},{"488340":[34,197,225,160]},{"488721":[34,197,225,160]},{"489560":[34,197,225,160]},{"490022":[34,197,225,160]},{"490060":[34,197,225,160]},{"490164":[34,197,225,160]},{"490184":[34,197,225,160]},{"490209":[34,197,225,160]},{"490257":[34,197,225,160]},{"490438":[34,213,225,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,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,16,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,173,239,160]},{"900244":[34,1,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,248,239,160,234]},{"900437":[92,146,238,160,234]},{"900447":[34,81,247,160,234,234,234]},{"900458":[34,208,218,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,58,240,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,253,233,160,96]},{"954852":[65,179,160]},{"955117":[220,233,160]},{"955529":[61,179,160]},{"962925":[26,179,160]},{"962951":[26,179,160]},{"963167":[26,179,160]},{"963214":[26,179,160]},{"965041":[26,179,160]},{"965069":[26,179,160]},{"965214":[26,179,160]},{"965298":[26,179,160]},{"965316":[26,179,160]},{"967797":[34,138,177,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,164,177,160]},{"972824":[233,178,160]},{"972834":[233,178,160]},{"972851":[233,178,160]},{"974665":[92,189,194,160,234]},{"974706":[242,194,160]},{"974722":[215,194,160]},{"975106":[34,142,141,160]},{"975132":[34,142,141,160]},{"975265":[34,206,194,160,234,234]},{"975332":[34,180,194,160,234,234]},{"975401":[255]},{"976357":[22,179,160]},{"976423":[22,179,160]},{"978658":[6,179,160]},{"979078":[34,211,216,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":[146,178,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,144,193,160]},{"983466":[6,179,160]},{"983651":[6,179,160]},{"988539":[18,179,160]},{"988657":[18,179,160]},{"988668":[18,179,160]},{"988874":[18,179,160]},{"988902":[18,179,160]},{"989142":[18,179,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[10,179,160]},{"999246":[14,179,160]},{"999265":[14,179,160]},{"999359":[14,179,160]},{"999574":[14,179,160]},{"1002731":[92,57,205,30]},{"1003079":[92,138,194,160]},{"1003229":[34,113,152,160]},{"1003277":[34,113,152,160]},{"1004410":[200,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[237,178,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[237,178,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,235]},{"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,53,141,160,234,234]},{"1010175":[188,141,160]},{"1011427":[34,48,167,160,96,234]},{"1011808":[34,125,142]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,19,182,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[232,232,136,16,241,107,169,112,72,171,34,184,130,160,34,104,218,160,107,175,74,128,48,240,3,76,66,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049072":[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,115,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,207,129,175,162,128,48,208,23,76,228,129,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,175,83,243,126,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]},{"1049198":[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,207,129,175,162,128,48,208,23,76,78,130,169]},{"1049238":[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]},{"1049283":[143,204,243,126,107,169]},{"1049290":[143,204,243,126,34,69,249]},{"1049298":[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]},{"1049512":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049526":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049540":[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,223,131,160,133,29,107,34,184,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,161,133,160,168,34,190,133,160,156,233,2,192,38,208,15,175,107,243,126,26,41,3,143,107,243,126,208,14,128]},{"1049744":[34,179,145,7,34,157,153,7,24,130,1]},{"1049756":[56,34,254,176,160,122,250,107,218,90,34,250,189,160,188,128,14,208,5,34,139,138,160,168,128,196,8,34,247,148,160,144,44,72,90,175]},{"1049793":[80,127,240,7,34,103,133,160,130,27]},{"1049804":[189,128,14,72,34,238,146,160,144,8,189,96,14,9,32,157,96,14,104,34,58,148,160,34,92,220,6,122,104,40,107,8,34,247,148,160,144,247,72,90,175]},{"1049846":[80,127,240,6,34,141,133,160,128,231,189,128,14,128,202,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,190,140,160,144,4,169,46,56,107,24,107,189,94,12,192,32,240,19,192,55,240,15,192,56,240,11,192,57,240,7,72,34,190,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049930":[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]},{"1049966":[169,1,143]},{"1049970":[80,127,165,93,201,20,240,17,169]},{"1049980":[143]},{"1049982":[80,127,34,161,133,160,157,128,14,34,212,147,160,104,107,72,169]},{"1050000":[143]},{"1050002":[80,127,34,139,138,160,157,128,14,34,212,147,160,104,107,165,27,240,7,34,219,133,160,130,4]},{"1050028":[34,120,135,160,107,34,88,173,9,72,169,1,143]},{"1050042":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050059":[208,11,175,22,244,126,9,1]},{"1050068":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050083":[208,50,175,135,128,48,208,6,175]},{"1050093":[128,48,128,35,218,8,194,48,165]},{"1050103":[72,165,2,72,169]},{"1050109":[128,133]},{"1050112":[169,48]},{"1050115":[133,2,169]},{"1050120":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050138":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050158":[72,165,2,72,169]},{"1050164":[128,133]},{"1050167":[169,48]},{"1050170":[133,2,169,1]},{"1050175":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050193":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050213":[72,165,2,72,169]},{"1050219":[128,133]},{"1050222":[169,48]},{"1050225":[133,2,169,2]},{"1050230":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050245":[201,27,1,208,108,165,34,235,41,1]},{"1050256":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,3]},{"1050293":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050308":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050326":[72,165,2,72,169]},{"1050332":[128,133]},{"1050335":[169,48]},{"1050338":[133,2,169,4]},{"1050343":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050358":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050381":[72,165,2,72,169]},{"1050387":[128,133]},{"1050390":[169,48]},{"1050393":[133,2,169,5]},{"1050398":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050413":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050436":[72,165,2,72,169]},{"1050442":[128,133]},{"1050445":[169,48]},{"1050448":[133,2,169,6]},{"1050453":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050468":[201,135]},{"1050471":[208,7,175,98,129,48,130,3]},{"1050480":[169,23]},{"1050483":[41,255]},{"1050486":[40,107,8,194,32,165,138,201,3]},{"1050496":[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]},{"1050523":[72,165,2,72,169,64,129,133]},{"1050532":[169,48]},{"1050535":[133,2,169]},{"1050540":[34,67,147,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]},{"1050573":[72,165,2,72,169,16,128,133]},{"1050582":[169,48]},{"1050585":[133,2,169,6]},{"1050590":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050608":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050628":[72,165,2,72,169,64,129,133]},{"1050637":[169,48]},{"1050640":[133,2,169,1]},{"1050645":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050663":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050683":[72,165,2,72,169,64,129,133]},{"1050692":[169,48]},{"1050695":[133,2,169,2]},{"1050700":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050718":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050738":[72,165,2,72,169,64,129,133]},{"1050747":[169,48]},{"1050750":[133,2,169,10]},{"1050755":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050773":[208,107,165,34,201]},{"1050779":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050800":[72,165,2,72,169,64,129,133]},{"1050809":[169,48]},{"1050812":[133,2,169,3]},{"1050817":[34,67,147,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]},{"1050850":[72,165,2,72,169,16,128,133]},{"1050859":[169,48]},{"1050862":[133,2,169,7]},{"1050867":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050885":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050905":[72,165,2,72,169,64,129,133]},{"1050914":[169,48]},{"1050917":[133,2,169,4]},{"1050922":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050940":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1050960":[72,165,2,72,169,64,129,133]},{"1050969":[169,48]},{"1050972":[133,2,169,5]},{"1050977":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1050995":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051015":[72,165,2,72,169,64,129,133]},{"1051024":[169,48]},{"1051027":[133,2,169,6]},{"1051032":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051047":[201,74]},{"1051050":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051070":[72,165,2,72,169,64,129,133]},{"1051079":[169,48]},{"1051082":[133,2,169,6]},{"1051087":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051102":[201,91]},{"1051105":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051125":[72,165,2,72,169,64,129,133]},{"1051134":[169,48]},{"1051137":[133,2,169,7]},{"1051142":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051157":[201,104]},{"1051160":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051180":[72,165,2,72,169,64,129,133]},{"1051189":[169,48]},{"1051192":[133,2,169,8]},{"1051197":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051212":[201,129]},{"1051215":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051235":[72,165,2,72,169,64,129,133]},{"1051244":[169,48]},{"1051247":[133,2,169,9]},{"1051252":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051267":[169,23]},{"1051270":[41,255]},{"1051273":[40,107,8,194,32,165,160,201,200]},{"1051283":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051303":[72,165,2,72,169,80,129,133]},{"1051312":[169,48]},{"1051315":[133,2,169]},{"1051320":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051338":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051358":[72,165,2,72,169,80,129,133]},{"1051367":[169,48]},{"1051370":[133,2,169,1]},{"1051375":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051393":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051413":[72,165,2,72,169,80,129,133]},{"1051422":[169,48]},{"1051425":[133,2,169,2]},{"1051430":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051448":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051468":[72,165,2,72,169,80,129,133]},{"1051477":[169,48]},{"1051480":[133,2,169,3]},{"1051485":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051503":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051523":[72,165,2,72,169,80,129,133]},{"1051532":[169,48]},{"1051535":[133,2,169,4]},{"1051540":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051558":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051578":[72,165,2,72,169,80,129,133]},{"1051587":[169,48]},{"1051590":[133,2,169,5]},{"1051595":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051610":[201,172]},{"1051613":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051633":[72,165,2,72,169,80,129,133]},{"1051642":[169,48]},{"1051645":[133,2,169,6]},{"1051650":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051665":[201,222]},{"1051668":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051688":[72,165,2,72,169,80,129,133]},{"1051697":[169,48]},{"1051700":[133,2,169,7]},{"1051705":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051720":[201,144]},{"1051723":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051743":[72,165,2,72,169,80,129,133]},{"1051752":[169,48]},{"1051755":[133,2,169,8]},{"1051760":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051775":[201,164]},{"1051778":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051798":[72,165,2,72,169,80,129,133]},{"1051807":[169,48]},{"1051810":[133,2,169,9]},{"1051815":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051830":[169,62]},{"1051833":[41,255]},{"1051836":[40,107,194,32,165,160,201,200]},{"1051845":[208,4,56,130,82]},{"1051851":[201,51]},{"1051854":[208,4,56,130,73]},{"1051860":[201,7]},{"1051863":[208,4,56,130,64]},{"1051869":[201,90]},{"1051872":[208,4,56,130,55]},{"1051878":[201,6]},{"1051881":[208,4,56,130,46]},{"1051887":[201,41]},{"1051890":[208,4,56,130,37]},{"1051896":[201,172]},{"1051899":[208,4,56,130,28]},{"1051905":[201,222]},{"1051908":[208,4,56,130,19]},{"1051914":[201,144]},{"1051917":[208,4,56,130,10]},{"1051923":[201,164]},{"1051926":[208,4,56,130,1]},{"1051932":[24,226,32,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,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,34,157,153,7,72,175,16,244,126,9,4,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,8,143,16,244,126,104,107,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,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]},{"1052237":[72,165,2,72,169,16,128,133]},{"1052246":[169,48]},{"1052249":[133,2,169,3]},{"1052254":[34,67,147,164,250,134,2,250,134,1,40,250,168,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,50,175,135,128,48,208,6,175,16,128,48,128,35,218,8,194,48,165]},{"1052317":[72,165,2,72,169,16,128,133]},{"1052326":[169,48]},{"1052329":[133,2,169]},{"1052334":[34,67,147,164,250,134,2,250,134,1,40,250,168,128,57,201,30,1,208,50,175,135,128,48,208,6,175,17,128,48,128,35,218,8,194,48,165]},{"1052372":[72,165,2,72,169,16,128,133]},{"1052381":[169,48]},{"1052384":[133,2,169,1]},{"1052389":[34,67,147,164,250,134,2,250,134,1,40,250,168,128,2,160,70,40,104,107,32,72,215,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,121,215,207,150,128,48,144,10,104,175,151,128,48,34,249,142,160,107,104,218,139,75,171,170,191,241,143,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,49,214,160,76,249,142,201,251,208,7,34,237,214,160,76,249,142,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,249,142,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,249,142,160,107,201]},{"1052568":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,249,142,160,107,201]},{"1052623":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,14,175,64,243,126,201]},{"1052648":[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]},{"1052706":[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]},{"1052745":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,73,32,72,215,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,121,215,207,150,128,48,144,10,104,175,151,128,48,34,241,144,160,107,104,218,139,75,171,170,191,238,145,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,241,144,160,107,201]},{"1053008":[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,241,144,160,107,201]},{"1053063":[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,241,144,160,107,201]},{"1053103":[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,49,214,160,76,241,144,201,251,208,7,34,237,214,160,76,241,144,107]},{"1053167":[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]},{"1053205":[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]},{"1053254":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053272":[8,8,8]},{"1053278":[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,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,8,72,218,139,75,171,32,72,215,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,121,215,207,150,128,48,144,11,175,151,128,48,34,238,146,160,130,128]},{"1053480":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,238,146,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,238,146,160,128,63,128,60,201,96,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,34,238,146,160,128,37,201,98,208,6,34,49,214,160,128,8,201,99,208,4,34,237,214,160,162]},{"1053591":[224,36,176,12,223,172,147,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,32,230,147,34,249,142,160,34,45,213]},{"1053666":[122,250,104,107,72,8,72,194,32,169]},{"1053678":[143,37,192,126,143,39,192,126,169]},{"1053688":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,241,144,160,143,42,192,126,143,50,192,126,104,34,238,146,160,176,2,128,27,194,32,169]},{"1053729":[143,44,192,126,143,51,192,126,169]},{"1053739":[8,143,46,192,126,169]},{"1053746":[52,143,48,192,126,40,104,96,34,238,146,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]},{"1053815":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,238,146,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]},{"1053896":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1053926":[169]},{"1053929":[143,66,80,127,128,6,162,64,45,160,2]},{"1053941":[104,107,32,32,149,176,35,194,32,165,226,72,56,233,15]},{"1053957":[133,226,165,232,72,56,233,15]},{"1053966":[133,232,226,32,32,32,149,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1053998":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054018":[13,133]},{"1054021":[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]},{"1054056":[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]},{"1054098":[144,8,230,5,56,233,100]},{"1054106":[128,243,201,10]},{"1054111":[144,8,230,6,56,233,10]},{"1054119":[128,243,201,1]},{"1054124":[144,8,230,7,56,233,1]},{"1054132":[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,218,149,127,218,149,160,171,107]},{"1054171":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054189":[16,41,127]},{"1054193":[157,2,16,232,232,104,10,41,255,127,9]},{"1054205":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054226":[16,169,1,133,20,194,32,107,218,174]},{"1054237":[16,41,127]},{"1054241":[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]},{"1054283":[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]},{"1054330":[143,109,243,126,169]},{"1054336":[143,1,80,127,40,175,109,243,126,107,162]},{"1054348":[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]},{"1054374":[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]},{"1054401":[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,236,150,160,107,72,173]},{"1054447":[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]},{"1054477":[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]},{"1054551":[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]},{"1054612":[143,23,192,126,175,139,243,126,107,169]},{"1054623":[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,92,152,160,170,191,104,243,126,31,20,244,126,250,63,102,152,160,208,3,130,98]},{"1054700":[191,81,152,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,95,152,160,170,191,104,243,126,31,20,244,126,250,63,106,152,160,208,3,130,44]},{"1054754":[191,85,152,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]},{"1054814":[1,1]},{"1054819":[1]},{"1054821":[1,32,32,16]},{"1054826":[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,175,90,128,48,41,255]},{"1054877":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1054890":[107,175,122,243,126,47,165,160,2,41,255]},{"1054902":[107,194,32,175,19,130,48,41,255]},{"1054912":[240,5,169,8]},{"1054917":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1054930":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1054952":[2,107,175,19,130,48,41,255]},{"1054961":[240,5,169,8]},{"1054966":[128,7,175,72,128,48,41,255]},{"1054975":[24,101,234,48,3,169]},{"1054983":[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]},{"1055010":[201,255]},{"1055013":[208,1,107,175,22,244,126,41,32]},{"1055023":[240,4,169]},{"1055028":[107,173,12,4,41,255]},{"1055035":[201,255]},{"1055038":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055062":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,186,237,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055094":[107,169,136,21,133]},{"1055100":[107,175,69,128,48,208,6,169,16,22,133]},{"1055112":[107,169,144,21,133]},{"1055118":[107,175,69,128,48,208,6,169,24,22,133]},{"1055130":[107,169,152,21,133]},{"1055136":[107,175,69,128,48,208,6,169,32,22,133]},{"1055148":[107,169,160,21,133]},{"1055154":[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]},{"1055246":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055260":[144,240,175,22,244,126,41,32]},{"1055269":[240,3,130,200,1,175,69,128,48,41,1]},{"1055281":[208,3,130,231]},{"1055286":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055308":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055325":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055342":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055359":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055376":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055393":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055410":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055427":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055444":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1055461":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1055478":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1055495":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1055512":[141,165,22,194,32,175,69,128,48,41,2]},{"1055524":[208,3,130,201]},{"1055529":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1055542":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1055557":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1055572":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1055587":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1055602":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1055617":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1055632":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1055647":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1055662":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1055677":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1055692":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1055707":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1055722":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1055737":[208,3,130,170,1,175,69,128,48,41,4]},{"1055749":[208,3,130,201]},{"1055754":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1055767":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1055782":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1055797":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1055812":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1055827":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1055842":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1055857":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1055872":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1055887":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1055902":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1055917":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1055932":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1055947":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1055962":[208,3,130,201]},{"1055967":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1055980":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1055995":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056010":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056025":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056040":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056055":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056070":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056085":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056100":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056115":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056130":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056145":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056160":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056179":[191,242,158,160,157,234,18,191,6,159,160,157,42,19,191,26,159,160,157,106,19,191,46,159,160,157,170,19,191,66,159,160,157,234,19,191,86,159,160,157,42,20,191,106,159,160,157,106,20,191,126,159,160,157,170,20,191,146,159,160,157,234,20,232,232,224,20]},{"1056247":[144,186,175,116,243,126,41,4]},{"1056256":[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]},{"1056289":[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]},{"1056322":[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]},{"1056355":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056376":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056397":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056418":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056439":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1056460":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1056481":[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]},{"1057104":[143,114,243,126,173,10,2,208,14,169]},{"1057115":[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]},{"1057149":[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]},{"1057230":[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]},{"1057273":[165,12,201,232,3,144,3,130,24]},{"1057283":[201,100]},{"1057286":[144,3,130,97]},{"1057291":[201,10]},{"1057294":[144,3,130,170]},{"1057299":[201,1]},{"1057302":[144,3,130,243]},{"1057307":[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,160,163,133,14,165,14,159]},{"1057344":[201,126,232,232,169,56]},{"1057351":[159]},{"1057353":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057367":[201,126,232,232,169]},{"1057374":[159]},{"1057376":[201,126,232,232,165,14,24,105,8]},{"1057386":[133,14,100,10,165,12,201,100]},{"1057395":[144,8,56,233,100]},{"1057401":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,160,163,133,14,165,14,159]},{"1057425":[201,126,232,232,169,56]},{"1057432":[159]},{"1057434":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057448":[201,126,232,232,169]},{"1057455":[159]},{"1057457":[201,126,232,232,165,14,24,105,8]},{"1057467":[133,14,100,10,165,12,201,10]},{"1057476":[144,8,56,233,10]},{"1057482":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,160,163,133,14,165,14,159]},{"1057506":[201,126,232,232,169,56]},{"1057513":[159]},{"1057515":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057529":[201,126,232,232,169]},{"1057536":[159]},{"1057538":[201,126,232,232,165,14,24,105,8]},{"1057548":[133,14,100,10,165,12,201,1]},{"1057557":[144,8,56,233,1]},{"1057563":[230,10,128,243,133,12,192,255,208,10,160]},{"1057575":[165,14,24,121,160,163,133,14,165,14,159]},{"1057587":[201,126,232,232,169,56]},{"1057594":[159]},{"1057596":[201,126,232,232,164,10,152,10,168,185,140,163,159]},{"1057610":[201,126,232,232,169]},{"1057617":[159]},{"1057619":[201,126,232,232,165,14,24,105,8]},{"1057629":[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]},{"1057700":[252,255,248,255,218,90,8,194,48,162]},{"1057712":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1057727":[208,13,175,153,80,127,41,255]},{"1057736":[223,3,200,48,208,44,226,32,191]},{"1057746":[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]},{"1057788":[200,48,41,255]},{"1057793":[201,255]},{"1057796":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,222]},{"1057819":[226,32,162]},{"1057824":[160]},{"1057827":[152,207,96,80,127,144,3,130,172]},{"1057837":[191,1,201,48,201,255,208,3,130,161]},{"1057848":[191]},{"1057850":[201,48,207,80,80,127,240,3,130,137]},{"1057861":[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]},{"1057898":[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,106,165,160,170,32,137,165,122,250,200,200,200,200,232,232,232,232,232,232,232,232,130,74,255,165,160,201,255,208,13,173,55,33,173,63,33,173,61,33,201,60,144,243,169,128,141]},{"1058032":[33,32,164,165,169,15,141]},{"1058040":[33,175,81,80,127,137,32,240,14,169]},{"1058051":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058065":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,196,170,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,197,170,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,198,170,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]},{"1058158":[128]},{"1058163":[1]},{"1058166":[169,160,143,68,80,127,169,165,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,249,142,160,34,45,213]},{"1058205":[194,16,96,32,164,165,107,173]},{"1058214":[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]},{"1058244":[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]},{"1058281":[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]},{"1058422":[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]},{"1058587":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1058608":[175,81,80,127,201,255,208,3,76,29,167,139,75,171,34,231,244,30,32,107,167,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]},{"1058659":[32,136,171,32,136,169,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1058682":[201,2,208,3,130,227]},{"1058689":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1058704":[165,26,41,16,240,12,189,255,167,159]},{"1058715":[201,126,232,224,16,144,244,189,15,168,159]},{"1058727":[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]},{"1058786":[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]},{"1058817":[248,255]},{"1058822":[2]},{"1058827":[16]},{"1058830":[2]},{"1058833":[248,255]},{"1058838":[2]},{"1058843":[16,64]},{"1058846":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,84,133,8,169,168,133,9,128,8,169,92,133,8,169,168,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1058904":[70,10]},{"1058907":[2]},{"1058912":[70,74]},{"1058915":[2,218,162]},{"1058919":[165,26,41,64,240,12,189,214,168,159]},{"1058930":[201,126,232,224,16,144,244,189,230,168,159]},{"1058942":[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]},{"1059001":[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]},{"1059032":[248,255,132]},{"1059037":[2]},{"1059042":[16]},{"1059045":[2]},{"1059048":[248,255,132]},{"1059053":[2]},{"1059058":[16,64]},{"1059061":[2,218,162]},{"1059065":[165,26,41,64,240,12,189,104,169,159]},{"1059076":[201,126,232,224,16,144,244,189,120,169,159]},{"1059088":[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]},{"1059147":[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]},{"1059178":[248,255,142]},{"1059183":[2]},{"1059188":[16]},{"1059191":[2]},{"1059194":[248,255,142]},{"1059199":[2]},{"1059204":[16,64]},{"1059207":[2,218,90,8,160]},{"1059213":[90,152,74,74,168,175,95,80,127,57,196,170,240,3,122,128,48,122,173,238]},{"1059234":[221,32,15,208,39,32,91,171,32,199,170,34,230,131,6,144,3,32,123,171,32,49,171,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,221,169,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]},{"1059362":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059378":[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,196,170,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,196,170,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]},{"1059531":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1059552":[58,10,168,185,125,172,133]},{"1059560":[122,104,24,113]},{"1059565":[24,105,2]},{"1059569":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1059582":[13,194,32,90,200,200,24,113]},{"1059591":[122,72,175,81,80,127,41,128]},{"1059600":[240,7,104,24,105,4]},{"1059607":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1059630":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1059647":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1059660":[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]},{"1059688":[165,35,105]},{"1059692":[133,8,165,32,105,8,133,1,165,33,105]},{"1059704":[133,9,96,218,34]},{"1059710":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1059732":[160]},{"1059734":[175,81,80,127,41,3,201,3,208,5,32,185,171,128,4,201,2,208,5,32,185,171,128,4,201,1,208,3,32,185,171,122,250,171,96,175,95,80,127,57,196,170,240,3,130,178]},{"1059781":[90,175,81,80,127,41,3,58,10,168,194,32,185,125,172,133]},{"1059798":[163,1,10,10,168,177]},{"1059805":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1059818":[208,8,177]},{"1059822":[143,39,192,126,128,10,177]},{"1059830":[24,105,4]},{"1059834":[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,155,172,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,241,144,160,143,42,192,126,169]},{"1059901":[143,43,192,126,191,82,80,127,34,238,146,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1059927":[143,44,192,126,32,112,173,169,2,218,72,175,97,80,127,170,104,32,39,173,250,175,81,80,127,41,128,208,3,32,158,172,200,232,232,232,232,96,131,172,135,172,143,172,8]},{"1059973":[40]},{"1059975":[240,255,40]},{"1059979":[32]},{"1059981":[40]},{"1059983":[216,255,40]},{"1059987":[8]},{"1059989":[40]},{"1059991":[56]},{"1059993":[40]},{"1059995":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060014":[58,10,168,185,125,172,133]},{"1060022":[185,21,173,133,2,122,90,152,10,10,168,177]},{"1060035":[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,242,161,226,32,133,6,100,7,72,169]},{"1060074":[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,27,173,29,173,33,173]},{"1060124":[255]},{"1060126":[128,128,255]},{"1060130":[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]},{"1060211":[194,32,191,37,192,126,24,105,4]},{"1060221":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060237":[159,47,192,126,191,41,192,126,24,105,16]},{"1060249":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060283":[72,165,2,72,169,16,128,133]},{"1060292":[169,48]},{"1060295":[133,2,169,2]},{"1060300":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,212,147,160,107,72,189,128,14,34,58,148,160,104,107,72,188,128,14,104,34,26,142,160,107,169,8,157,80,15,169]},{"1060347":[143]},{"1060349":[80,127,32,68,174,34,212,147,160,107,72,175]},{"1060362":[80,127,240,6,34,249,173,160,128,7,32,68,174,34,139,148,160,104,107,32,68,174,201,36,208,24,90,160,36,34,19,182,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,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]},{"1060713":[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]},{"1060780":[191,117,176,160,197,4,144,3,232,128,245,191,118,176,160,133,6,100,7,194,32,138,10,10,170,191,119,176,160,141,232,80,191,121,176,160,141,234,80,173]},{"1060821":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1060839":[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,97,174,173,236,80,10,10,170,189]},{"1060876":[81,56,229,8,157]},{"1060882":[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]},{"1060914":[81,141,228,80,189,2,81,141,230,80,32,97,174,173]},{"1060929":[81,56,229,8,141]},{"1060935":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,93,174,160,141,232,80,173,234,80,239,95,174,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,34,249,142,160,72,165,138,201,3,240,6,34,136,176,160,128,4,34,123,176,160,104,107,34,120,135,160,72,34,212,147,160,169,1,143,51,80,127,143,52,80,127,34,163,176,160,169,235,143]},{"1061077":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061101":[13,165,33,153,32,13,169]},{"1061109":[153,32,15,169,127,153,112,15,107,72,8,34,40,177,160,144,31,156,18,1,156,239,3,169]},{"1061134":[133,93,194,32,165,138,201,48]},{"1061143":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061167":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061180":[128,16,201,48]},{"1061185":[208,11,165,34,201]},{"1061191":[2,144,4,56,130,1]},{"1061198":[24,226,32,107,191,128,206,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061219":[226,32,34,16,247,8,169,52,145,144,200,191,128,207,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061254":[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]},{"1061316":[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,48,178,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]},{"1061463":[13,173,219,15,233]},{"1061469":[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]},{"1061508":[13,173,219,15,233]},{"1061514":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1061539":[254,127,208,245,169,4,107,34,194,219,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,19,34,212,219,160,107,169,51,133,200,173,3,4,41,64,208,3,169,7,107,34,212,219,160,34,113,186,13,41,7,201,7,208,2,169]},{"1061604":[107,169]},{"1061607":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,89,179,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,89,179,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,89,179,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,89,179,160,107,218,8,194,32,41,127]},{"1061728":[10,170,191]},{"1061732":[82,127,26,41,255,3,159]},{"1061740":[82,127,170,10,191]},{"1061746":[128,175,40,250,107,218,8,194,48,162]},{"1061758":[191,174,179,160,159]},{"1061764":[82,127,232,232,191,174,179,160,159]},{"1061774":[82,127,232,232,191,174,179,160,159]},{"1061784":[82,127,232,232,191,174,179,160,159]},{"1061794":[82,127,232,232,224,127]},{"1061801":[144,211,40,250,107]},{"1061808":[64]},{"1061810":[128]},{"1061812":[192]},{"1061815":[1,64,1,128,1,192,1]},{"1061823":[2,64,2,128,2,192,2]},{"1061831":[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,206,179,160,175,35,128,48,208,4,34,238,179,160,104,107,72,169]},{"1061933":[143,65,80,127,175,34,128,48,201,1,208,4,34,206,179,160,175,35,128,48,201,1,208,4,34,238,179,160,104,107,72,175,34,128,48,201,2,208,4,34,206,179,160,175,35,128,48,201,2,208,4,34,238,179,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]},{"1062099":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062116":[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]},{"1062187":[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]},{"1062223":[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,162,181,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]},{"1062348":[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]},{"1062374":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062394":[2,156,5,2,169]},{"1062400":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,251,182,72,218,8,192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1062439":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1062456":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1062473":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1062490":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1062507":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1062524":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1062541":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1062564":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1062581":[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]},{"1062614":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1062637":[192,88,208,10,175,142,243,126,9,64,143,142,243,126,175,67,244,126,240,3,130,202,4,192,32,208,3,130,118,2,192,38,208,3,130,111,2,192,46,208,3,130,104,2,192,47,208,3,130,97,2,192,48,208,3,130,90,2,192,55,208,3,130,83,2,192,56,208,3,130,76,2,192,57,208,3,130,69,2,192]},{"1062718":[208,3,130,62,2,192,4,144,14,192,73,240,10,192,80,240,6,192,94,240,2,128,3,130,103]},{"1062744":[192,59,208,3,130,96]},{"1062751":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1062776":[201,15,1,208,3,130,59]},{"1062784":[201,16,1,208,3,130,51]},{"1062792":[201,28,1,208,3,130,43]},{"1062800":[201,31,1,208,3,130,35]},{"1062808":[201,255]},{"1062811":[208,3,130,27]},{"1062816":[201,20,1,208,3,130,19]},{"1062824":[201,21,1,208,3,130,11]},{"1062832":[201,22,1,208,3,130,3]},{"1062840":[40,128,4,40,130,15,4,165,27,208,3,130,134,1,226,32,173,12,4,201]},{"1062861":[208,2,128,4,201,2,208,21,192,50,208,3,130,165,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]},{"1063014":[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]},{"1063052":[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]},{"1063090":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063108":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063126":[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]},{"1063162":[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]},{"1063200":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063218":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,188,189,192,59,208,10,175,42,244,126,137,32,240,2,128,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,192]},{"1063299":[208,9,32,86,188,32,135,188,130,64,2,192,1,208,6,32,86,188,130,54,2,192,2,208,6,32,86,188,130,44,2,192,3,208,6,32,86,188,130,34,2,192,4,208,6,32,135,188,130,24,2,192,5,208,6,32,135,188,130,14,2,192,6,208,6,32,135,188,130,4,2,192,7,144,10,192,14,176,6,32,184,188,130,246,1,192,20,208,9,32,20,188,32,184,188,130,233,1,192,15,144,10,192,23,176,6,32,184,188,130,219,1,192,23,208,6,32,28,189,130,209,1,192,24,144,10,192,26,176,6,32,184,188,130,195,1,192,26,208,9,32,53,188,32,184,188,130,182,1,192,29,208,6,32,184,188,130,172,1,192,27,144,10,192,32,176,6,32,196,188,130,158,1,192,32,208,6,32,68,189,130,148,1,192,33,208,6,32,184,188,130,138,1,192,34,144,10,192,36,176,6,32,96,189,130,124,1,192,36,208,6,32,112,189,130,114,1,192,37,208,6,32,144,189,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,216,189,130,87,1,192,40,208,6,32,216,189,130,77,1,192,41,208,6,32,184,188,130,67,1,192,42,144,10,192,46,176,6,32,184,188,130,53,1,192,49,208,6,32,216,189,130,43,1,192,50,208,6,32,176,189,130,33,1,192,51,208,6,32,238,189,130,23,1,192,55,144,10,192,58,176,6,32,224,188,130,9,1,192,58,144,10,192,60,176,6,32,165,188,130,251]},{"1063635":[192,60,208,6,32,184,188,130,241]},{"1063645":[192,61,208,6,32,184,188,130,231]},{"1063655":[192,62,144,10,192,64,176,6,32,56,189,130,217]},{"1063669":[192,72,208,6,32,184,188,130,207]},{"1063679":[192,73,208,6,32,86,188,130,197]},{"1063689":[192,74,208,9,32,20,188,32,184,188,130,184]},{"1063702":[192,75,208,9,32,243,187,32,196,188,130,171]},{"1063715":[192,76,208,9,32,252,188,32,216,189,130,158]},{"1063728":[192,77,144,10,192,80,176,6,32,252,188,130,144]},{"1063742":[192,80,208,6,32,86,188,130,134]},{"1063752":[192,81,144,10,192,85,176,6,32,252,188,130,120]},{"1063766":[192,88,208,6,32,165,188,130,110]},{"1063776":[192,94,208,6,32,86,188,130,100]},{"1063786":[192,95,208,6,32,135,188,130,90]},{"1063796":[192,96,208,6,32,96,189,130,80]},{"1063806":[192,97,208,6,32,196,188,130,70]},{"1063816":[192,100,144,10,192,102,176,6,32,165,188,130,56]},{"1063830":[192,112,144,10,192,128,176,6,32,238,189,130,42]},{"1063844":[192,128,144,10,192,144,176,6,32,144,189,130,28]},{"1063858":[192,144,144,10,192,160,176,6,32,176,189,130,14]},{"1063872":[192,160,144,10,192,176,176,6,32,112,189,130]},{"1063886":[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,210,187,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064038":[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,112,189,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,184,188,96,175,40,244,126,24,105,16,143,40,244,126,96,32,254,189,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,186,237,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]},{"1064634":[201,2]},{"1064637":[208,14,175,140,243,126,41,192]},{"1064646":[201,192]},{"1064649":[240,79,128,64,201,1]},{"1064656":[208,14,175,142,243,126,41,192]},{"1064665":[201,192]},{"1064668":[240,60,128,45,201,5]},{"1064675":[208,14,175,140,243,126,41,48]},{"1064684":[201,48]},{"1064687":[240,41,128,26,201,13]},{"1064694":[208,16,175,140,243,126,137,4]},{"1064703":[240,12,41,3]},{"1064708":[208,20,128,5,201,16]},{"1064715":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1064728":[208,5,169,79,61,128,6,32,41,191,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]},{"1064775":[41,255,239,153,4]},{"1064781":[185,62]},{"1064784":[41,255,239,153,62]},{"1064790":[185,68]},{"1064793":[41,255,239,153,68]},{"1064799":[185,128]},{"1064802":[41,255,239,153,128]},{"1064808":[185,130]},{"1064811":[41,255,239,153,130]},{"1064817":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1064838":[41,255,239,153,132]},{"1064844":[185,126]},{"1064847":[41,255,239,153,126]},{"1064853":[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]},{"1064891":[201,144]},{"1064894":[208,3,169,127]},{"1064899":[9]},{"1064901":[36,143,100,199,126,165,5,41,255]},{"1064911":[9]},{"1064913":[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,35,240,160,34,169,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065017":[72,165,2,72,169,16,128,133]},{"1065026":[169,48]},{"1065029":[133,2,169,4]},{"1065034":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,212,147,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,28,175]},{"1065080":[80,127,240,15,189,160,13,34,212,147,160,169]},{"1065093":[143]},{"1065095":[80,127,128,7,189,160,13,34,58,148,160,107,169]},{"1065109":[157,192,13,72,169,1,143]},{"1065117":[80,127,165,93,201,20,240,60,169]},{"1065127":[143]},{"1065129":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065149":[72,165,2,72,169,16,128,133]},{"1065158":[169,48]},{"1065161":[133,2,169,3]},{"1065166":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,212,147,160,104,107,72,90,175]},{"1065191":[80,127,240,6,34,152,192,160,128,7,189,128,14,34,58,148,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]},{"1065234":[72,165,2,72,169,16,128,133]},{"1065243":[169,48]},{"1065246":[133,2,169,4]},{"1065251":[34,67,147,164,250,134,2,250,134,1,40,250,168,156,233,2,34,157,153,7,34,112,142,160,107,175,140,243,126,41,223,143,140,243,126,41,16,240,7,169,2,143,68,243,126,107,169]},{"1065299":[143,68,243,126,107,175,123,243,126,41,255]},{"1065311":[201,2]},{"1065314":[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]},{"1065347":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065362":[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]},{"1065398":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1065412":[173,91,3,41,1,208,3,130,134]},{"1065422":[90,8,139,75,171,226,48,165,27,240,3,76,81,194,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1065459":[129,48,143]},{"1065463":[254,127,34,93,246,29,162]},{"1065471":[165,47,201,4,240,1,232,191,85,194,160,153,80,13,169]},{"1065487":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,87,194,160,41,240,153,16,13,165,35,105]},{"1065521":[153,48,13,165,32,24,105,22,41,240,153]},{"1065533":[13,165,33,105]},{"1065538":[153,32,13,169]},{"1065543":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1065560":[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]},{"1065591":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1065612":[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,221,150,160,92,53,207,30,175,195,225,29,34,212,147,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1065674":[92,82,223,29,175,133,225,29,34,212,147,160,107,165,138,201,129,208,12,169,1,143]},{"1065697":[80,127,175,195,225,29,128,4,175,133,225,29,34,58,148,160,107,34,157,153,7,165,138,201,129,208,6,34,205,141,160,128,4,34,13,142,160,107,165,138,201,42,240,1,107,165,27,240,1,107,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1065765":[72,165,2,72,169,64,129,133]},{"1065774":[169,48]},{"1065777":[133,2,169,10]},{"1065782":[34,67,147,164,250,134,2,250,134,1,40,250,34,212,147,160,169,235,143]},{"1065802":[254,127,34,93,246,29,162]},{"1065810":[165,47,201,4,240,1,232,191,175,195,160,153,80,13,169]},{"1065826":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,177,195,160,41,240,153,16,13,165,35,105]},{"1065860":[153,48,13,165,32,24,105,22,41,240,153]},{"1065872":[13,165,33,105]},{"1065877":[153,32,13,169]},{"1065882":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1065906":[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]},{"1065985":[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]},{"1066012":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,175,141,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066051":[72,165,2,72,169,16,128,133]},{"1066060":[169,48]},{"1066063":[133,2,169,5]},{"1066068":[34,67,147,164,250,134,2,250,134,1,40,250,201,255,240,9,168,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]},{"1066112":[201,35,208,6,160,93,92,71,213]},{"1066122":[201,72,208,6,160,96,92,71,213]},{"1066132":[201,36,176,6,160,91,92,71,213]},{"1066142":[201,55,176,6,160,92,92,71,213]},{"1066152":[201,57,176,6,160,93,92,71,213]},{"1066162":[160,50,92,71,213]},{"1066168":[192,9,48]},{"1066172":[96]},{"1066174":[144]},{"1066176":[192]},{"1066179":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066203":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066221":[9,48,9,96,9,144,9,240,9]},{"1066232":[240]},{"1066234":[32,10,80,10,96,6]},{"1066241":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1066263":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1066279":[6,48,6]},{"1066283":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1066299":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066320":[127,184,196,160,107,165]},{"1066327":[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]},{"1066358":[132,175,24,105]},{"1066363":[136,133]},{"1066366":[226,32,169,175,133,2,34,231,225,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,153,215,160,162,1,128,2,162]},{"1066424":[171,40,122,104,133,2,104,133,1,104,133]},{"1066436":[96,218,173,216,2,34,29,226,160,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1066907":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,153,215,160,130,84,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,153,215,160,130,40,1,201,109,208,7,34,131,185,164,130,29,1,201,110,208,7,34,131,185,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067154":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067171":[56,233,8,170,169,1,224]},{"1067179":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067202":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067221":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1067238":[56,233,8,170,169,1,224]},{"1067246":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1067269":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067288":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1067305":[56,233,8,170,169,1,224]},{"1067313":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1067336":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1067358":[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,19]},{"1067390":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1067409":[250,173,233,2,201,1,107,72,218,34,179,237,160,173,216,2,32,72,215,141,216,2,32,30,215,201,22,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,231,1,201,43,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,208,1,201,44,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,185,1,201,45,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,162,1,201,60,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,139,1,201,61,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,116,1,201,72,208,19,32,121,215,207,150,128,48,144,7,175,151,128,48,141,216,2,130,93,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,75,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,51,1,201]},{"1067639":[208,8,169,73,141,216,2,130,39,1,201,1,208,8,169,80,141,216,2,130,27,1,201,2,208,8,169,2,141,216,2,130,15,1,169,3,141,216,2,130,7,1,201,95,208,95,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,233]},{"1067711":[175,22,244,126,41,192,208,19,169,4,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,206]},{"1067738":[201,64,208,19,169,5,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,183]},{"1067761":[169,6,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,164]},{"1067780":[201,96,208,39,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,140]},{"1067804":[201]},{"1067806":[208,8,169,34,141,216,2,130,128]},{"1067816":[169,35,141,216,2,128,121,201,97,208,20,175,84,243,126,208,7,169,27,141,216,2,128,104,169,28,141,216,2,128,97,201,100,208,40,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,71]},{"1067873":[201]},{"1067875":[208,7,169,58,141,216,2,128,60,169,59,141,216,2,128,53,201,101,208,7,169,32,12,142,243,128,205,201,98,208,19,34,49,214,160,141,216,2,235,32,188,214,169,255,143,144,80,127,128,19,201,99,208,15,34,237,214,160,141,216,2,169,255,143,144,80,127,128]},{"1067944":[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]},{"1068199":[4,4,4,4,4,5]},{"1068211":[4]},{"1068213":[4]},{"1068216":[4]},{"1068228":[4]},{"1068234":[5]},{"1068244":[4,4,4]},{"1068258":[4,4]},{"1068261":[4]},{"1068265":[4]},{"1068272":[4]},{"1068281":[4]},{"1068352":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1068432":[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]},{"1068481":[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]},{"1068520":[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,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]},{"1068677":[2,2]},{"1068685":[2,2,2,2,2,2]},{"1068692":[2]},{"1068694":[2,2]},{"1068697":[2,2,2,2,2,2,2,2,2,2,2]},{"1068709":[2,2,2,2,2]},{"1068715":[2,2,2,2,2,2,2,2,2]},{"1068727":[2,2,2,2,2,2,2,2,2,2,2]},{"1068740":[2]},{"1068742":[2,2,2]},{"1068746":[2,2,2,2,2,2]},{"1068753":[2,2,2,2,2,2,2,2]},{"1068762":[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]},{"1068848":[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]},{"1069034":[4,4,4]},{"1069040":[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,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,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]},{"1069953":[128]},{"1069955":[64]},{"1069957":[32]},{"1069959":[16]},{"1069961":[8]},{"1069963":[4]},{"1069965":[2]},{"1069967":[1,128]},{"1069970":[64]},{"1069972":[32]},{"1069974":[16]},{"1069976":[8]},{"1069978":[4]},{"1070209":[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,152,32,72,215,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,198,213,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,198,213,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]},{"1070654":[160,48,107,162]},{"1070659":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1070672":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1070686":[168,152,32,152,214,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1070706":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1070730":[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]},{"1070770":[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]},{"1070807":[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]},{"1070846":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1070859":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1070882":[191]},{"1070884":[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]},{"1070924":[191]},{"1070926":[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,162]},{"1070971":[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,96,100,17,100,176,92,134,220,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071034":[13,24,105,3,107,189,32,14,201,136,208,9,32,247,215,201,4,144,1,58,107,32,247,215,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071080":[200,49,74,74,74,74,107,40,191]},{"1071090":[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]},{"1071140":[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]},{"1071174":[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,39,141,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]},{"1071376":[226,32,176,19,194,16,169,122,160,1,34,25,226,5,169,60,141,46,1,226,16,128,34,175,42,128,48,168,156,233,2,218,34,157,153,7,250,194,32,175,96,243,126,56,233,10]},{"1071423":[143,96,243,126,226,32,34,162,141,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1071449":[165,27,240,121,194,32,165,160,201,14]},{"1071460":[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]},{"1071495":[201,126]},{"1071498":[208,33,165,34,41,255,1,201,104]},{"1071508":[144,60,201,136]},{"1071513":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1071533":[201,222]},{"1071536":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1071561":[144,7,201,154]},{"1071566":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,54,218,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,54,218,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,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]},{"1071776":[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]},{"1071836":[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,227,218,160,107,143,111,243,126,218,175,67,244,126,208,4,34,108,189,160,34,63,153,160,90,160,24,34,6,182,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,108,189,160,34,63,153,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1071955":[208,11,40,90,160,24,34,6,182,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,63,153,160,107,72,175,67,244,126,208,4,34,250,189,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,227,218,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,227,218,160,104,34,168,160,2,107,58,16,8,169]},{"1072211":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1072225":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,227,218,169,1,143]},{"1072251":[80,127,156,70,6,156,66,6,76,227,218,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,250,189,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,194,16,72,218,90,173,44,1,240,7,48,5,205,51,1,208,11,141,43,1,156,44,1,122,250,104,40,107,156]},{"1072473":[66,175,26,130,48,240,3,130,195]},{"1072483":[174,2,32,224,83,45,240,3,130,6,1,174,4,32,224,77,83,208,245,174,6,32,224,85,49,208,237,226,16,173,44,1,201,2,240,33,201,9,240,46,201,13,240,56,201,16,240,70,201,17,240,73,201,22,240,69,201,21,208,100,173,12,4,74,24,105,45,128,88,72,175]},{"1072555":[243,126,41,64,240,5,104,169,60,128,74,104,128,71,72,175,113,243,126,201,127,208,244,104,169,61,128,57,72,175,202,243,126,240,232,165,138,201,64,208,226,104,169,15,128,39,173,12,4,201,8,208,35,173,12,4,74,24,105,33,141,44,1,201,46,208,21,175,102,243,126,41,4,240,13,175,167,80,127,41,4,240,5,169,59,141,44,1,173,44,1,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,33,201,255,240,12,192]},{"1072668":[240,4,74,136,128,248,41,1,240,17,169,255,141,64,33,169,160,133]},{"1072687":[169,208,133,1,169,48,128,76,174,44,1,191,63,208,48,205,44,1,240,49,224,35,144,4,224,47,144,5,141,44,1,128,179,139,194,16,174,12,4,169,2,72,171,164]},{"1072732":[90,194,32,191,128,208,48,133]},{"1072741":[226,32,178]},{"1072745":[122,132]},{"1072748":[226,16,171,141,44,1,128,143,169,255,141,64,33,169,192,133]},{"1072765":[169,208,133,1,169,48,194,16,34,29,137]},{"1072777":[169,1,143,173,80,127,169,129,141]},{"1072787":[66,173,44,1,201,8,240,50,165,16,201,7,240,55,201,14,240,51,201,9,208,33,226,16,162,5,165,138,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,92,150,130,2,8,194,32,169]},{"1072879":[141,6,32,143,170,80,127,173,2,32,201,83,45,208,103,173,4,32,201,77,83,208,95,173,6,32,201,85,49,208,87,169]},{"1072913":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1072929":[232,226,32,168,173]},{"1072935":[32,137,64,208,249,173]},{"1072942":[32,137,8,240,228,138,143,170,80,127,169,64,162,7,160,7,141,4,32,156,5,32,72,24,173]},{"1072968":[32,137,64,208,249,173]},{"1072975":[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]},{"1073026":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,208,98,175,169,80,127,240,50,173]},{"1073057":[32,137,64,240,4,92,220,128]},{"1073066":[173]},{"1073068":[32,137,8,240,4,92,220,128]},{"1073077":[169,255,141,41,1,141,39,1,141,6,32,175,169,80,127,141,7,32,169]},{"1073097":[143,169,80,127,92,220,128]},{"1073105":[173,39,1,205,41,1,208,4,92,220,128]},{"1073117":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073147":[224,255,208,4,92,220,128]},{"1073155":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073171":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073187":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073204":[236,11,1,208,8,224,27,240,4,92,220,128]},{"1073217":[236,51,1,240,243,169]},{"1073224":[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]},{"1073256":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,191]},{"1073273":[208,48,143,169,80,127,191,63,208,48,201,35,144,35,201,47,176,31,139,194,16,174,12,4,169,2,72,171,164]},{"1073303":[90,194,32,191,128,208,48,133]},{"1073312":[226,32,178]},{"1073316":[122,132]},{"1073319":[226,16,171,170,223,63,208,48,240,6,191,63,208,48,128,243,141,43,1,92,220,128]},{"1073342":[141,11,1,170,169]},{"1073348":[235,175,171,80,127,240,13,207,170,80,127,144,7,56,239,170,80,127,128,243,72,138,250,194,32,240,7,24,105,100]},{"1073379":[202,208,249,141,4,32,226,32,92,220,128]},{"1073391":[175,19,130,48,208,64,175,27,130,48,208,71,194,32,173,2,32,201,83,45,208,48,173,4,32,201,77,83,208,40,173,6,32,201,85,49,208,32,226,32,173]},{"1073433":[32,137,8,208,23,175,169,80,127,208,13,173]},{"1073446":[32,137,16,240,23,169]},{"1073453":[143,173,80,127,92,38,196,8,226,32,173,64,33,208,239,175,173,80,127,208,239,92,43,196,8,175,19,130,48,208,64,175,27,130,48,208,71,194,32,173,2,32,201,83,45,208,48,173,4,32,201,77,83,208,40,173,6,32,201,85,49,208,32,226,32,173]},{"1073520":[32,137,8,208,23,175,169,80,127,208,13,173]},{"1073533":[32,137,16,240,23,169]},{"1073540":[143,173,80,127,92,55,198,8,226,32,173,64,33,208,239,175,173,80,127,208,239,92,47,198,8,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]},{"1073595":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073613":[87,127,107,191]},{"1073618":[18,127,107,156,240,28,156,241,28,169]},{"1073629":[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]},{"1073661":[226,32,183]},{"1073665":[159]},{"1073667":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073686":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073710":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073728":[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]},{"1073754":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073772":[226,32,183]},{"1073776":[159]},{"1073778":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073797":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073817":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073835":[226,32,183]},{"1073839":[159]},{"1073841":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073860":[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]},{"1073891":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073909":[226,32,183]},{"1073913":[159]},{"1073915":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073934":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073954":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073972":[226,32,183]},{"1073976":[159]},{"1073978":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073997":[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]},{"1074026":[133]},{"1074028":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074046":[226,32,183]},{"1074050":[159]},{"1074052":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074071":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074091":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074109":[226,32,183]},{"1074113":[159]},{"1074115":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074134":[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]},{"1074165":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074183":[226,32,183]},{"1074187":[159]},{"1074189":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074208":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074228":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074246":[226,32,183]},{"1074250":[159]},{"1074252":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074271":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074292":[133]},{"1074294":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074312":[226,32,183]},{"1074316":[159]},{"1074318":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074337":[143,148,80,127,226,32,130,213]},{"1074346":[201,128,208,56,169,52,133]},{"1074354":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074372":[226,32,183]},{"1074376":[159]},{"1074378":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074397":[143,148,80,127,226,32,130,153]},{"1074406":[201,144,208,55,169,112,133]},{"1074414":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074432":[226,32,183]},{"1074436":[159]},{"1074438":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074457":[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]},{"1074484":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074502":[226,32,183]},{"1074506":[159]},{"1074508":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074527":[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]},{"1074606":[208,56,169,216,133]},{"1074612":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074630":[226,32,183]},{"1074634":[159]},{"1074636":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074655":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074672":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074690":[226,32,183]},{"1074694":[159]},{"1074696":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074715":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074732":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074750":[226,32,183]},{"1074754":[159]},{"1074756":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074775":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074792":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074810":[226,32,183]},{"1074814":[159]},{"1074816":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074835":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074852":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074870":[226,32,183]},{"1074874":[159]},{"1074876":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074895":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074912":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074930":[226,32,183]},{"1074934":[159]},{"1074936":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074955":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1074972":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074990":[226,32,183]},{"1074994":[159]},{"1074996":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075015":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075032":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075050":[226,32,183]},{"1075054":[159]},{"1075056":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075075":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075092":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075110":[226,32,183]},{"1075114":[159]},{"1075116":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075135":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075152":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075170":[226,32,183]},{"1075174":[159]},{"1075176":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075195":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075212":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075230":[226,32,183]},{"1075234":[159]},{"1075236":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075255":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075272":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075290":[226,32,183]},{"1075294":[159]},{"1075296":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075315":[143,148,80,127,226,32,130,235]},{"1075324":[201,12,208,56,169,12,133]},{"1075332":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075350":[226,32,183]},{"1075354":[159]},{"1075356":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075375":[143,148,80,127,226,32,130,175]},{"1075384":[201,13,208,55,169,41,133]},{"1075392":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075410":[226,32,183]},{"1075414":[159]},{"1075416":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075435":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075451":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075469":[226,32,183]},{"1075473":[159]},{"1075475":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075494":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075510":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075528":[226,32,183]},{"1075532":[159]},{"1075534":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075553":[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]},{"1075586":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075601":[171,40,122,250,104,107,34,78,216]},{"1075611":[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]},{"1075675":[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,17,235,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,17,235,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]},{"1075946":[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]},{"1075991":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076015":[226,48,160]},{"1076019":[183]},{"1076021":[201,254,208,39,200,183]},{"1076028":[201,110,208,32,200,183]},{"1076035":[208,27,200,183]},{"1076040":[201,254,208,20,200,183]},{"1076047":[201,107,208,13,200,183]},{"1076054":[201,4,208,6,156,232,28,130,19]},{"1076064":[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]},{"1076092":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076109":[10,10,69,138,41,8]},{"1076116":[240,6,152,24,105,16]},{"1076123":[168,165,35,41,2]},{"1076129":[74,69,138,41,1]},{"1076135":[240,4,152,26,26,168,152,41,255]},{"1076145":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,43,246,160,34,159,170,164,34]},{"1076177":[128,191,92,21,253,13,72,34,3,130,160,34,201,131,160,34,211,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,89,132,160,34,201,131,160,40,104,107,34,74,129,160,169,16,133,28,107,34,157,153,7,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,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,112,219,160,107,194,16,34,61,137]},{"1076363":[169,7,141,12,33,175,240,244,126,208,10,34,236,236,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,207,129,160,34,184,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076415":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,201,131,160,34,211,130,160,34,120,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076495":[191]},{"1076497":[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]},{"1076571":[107,34,83,150,160,34,48,247,160,107,34,198,150,160,34,207,150,160,162,4,107,34,48,247,160,169,20,133,17,107,34,48,247,160,107,34,43,132,160,34,171,150,160,34,227,218,160,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]},{"1076646":[2,107,169]},{"1076650":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,221,150,160,107,169]},{"1076673":[143,145,80,127,173,216,2,201,50,208,24,165,27,240,20,173,12,4,201,26,208,13,175,167,80,127,41,4,240,5,169,59,141,44,1,175,159,80,127,240,16,156,240,28,156,241,28,34,11,235,160,169]},{"1076726":[143,159,80,127,156,233,2,189,94,12,107,175,105,129,48,41,255]},{"1076744":[208,4,169]},{"1076749":[107,201,1]},{"1076753":[208,16,175,197,243,126,41,15]},{"1076762":[201,2]},{"1076765":[176,84,32,119,238,107,201,2]},{"1076774":[208,75,32,119,238,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076798":[107,175,74,128,48,41,255]},{"1076806":[240,43,175,195,242,126,41,32]},{"1076815":[208,34,173,8,3,41,128]},{"1076823":[240,4,169,1]},{"1076828":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076850":[107,169]},{"1076854":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076877":[96,169]},{"1076881":[96,175,76,128,48,41,255]},{"1076889":[240,4,92,90,189,27,224,118]},{"1076898":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1076915":[72,170,191,64,130,48,208,3,130,175]},{"1076926":[58,133]},{"1076929":[10,10,24,101]},{"1076934":[10,10,170,169,22]},{"1076940":[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]},{"1076968":[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]},{"1077011":[137,128]},{"1077014":[240,3,9]},{"1077018":[255,143,106,193,126,191,98,130,48,41,255]},{"1077030":[137,128]},{"1077033":[240,3,9]},{"1077037":[255,143,110,193,126,169]},{"1077045":[56,239,106,193,126,143,108,193,126,169]},{"1077057":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077073":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077091":[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]},{"1077168":[165]},{"1077170":[223]},{"1077172":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077192":[165]},{"1077194":[223]},{"1077196":[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]},{"1077242":[175,74,128,48,41,255]},{"1077249":[240,25,175,93]},{"1077255":[41,255]},{"1077258":[201,20]},{"1077261":[208,13,165,138,41,64]},{"1077268":[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]},{"1077325":[107,104,141,228,2,141,193,15,141,16,7,107,34,98,240,160,34,207,240,160,107,169,14,143,1,40]},{"1077352":[169,4,143,1,40]},{"1077358":[169,13,143,1,40]},{"1077364":[169,14,143,1,40]},{"1077370":[169]},{"1077372":[143,1,40]},{"1077376":[169]},{"1077378":[143,1,40]},{"1077382":[169]},{"1077384":[143,1,40]},{"1077388":[169]},{"1077390":[143,1,40]},{"1077394":[169]},{"1077396":[143,1,40]},{"1077400":[169]},{"1077402":[143,1,40]},{"1077406":[169]},{"1077408":[143,1,40]},{"1077412":[169,1,143,1,40]},{"1077418":[169]},{"1077420":[143,1,40]},{"1077424":[169,1,143,1,40]},{"1077430":[169]},{"1077432":[143,1,40]},{"1077436":[169]},{"1077438":[143,1,40]},{"1077442":[169,10,143,1,40]},{"1077448":[169,13,143,1,40]},{"1077454":[107,72,218,162]},{"1077459":[175]},{"1077461":[40]},{"1077463":[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]},{"1077490":[175]},{"1077492":[40]},{"1077494":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077508":[232,128,235,56,175]},{"1077514":[40]},{"1077516":[72,175]},{"1077519":[40]},{"1077521":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077539":[175]},{"1077541":[40]},{"1077543":[72,175]},{"1077546":[40]},{"1077548":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077568":[40]},{"1077570":[72,175]},{"1077573":[40]},{"1077575":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077595":[40]},{"1077597":[72,175]},{"1077600":[40]},{"1077602":[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]},{"1077687":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077705":[133]},{"1077707":[165,3,41,255]},{"1077712":[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,2,242,160,132,2,100,3,24,101]},{"1077754":[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]},{"1077809":[175]},{"1077811":[40]},{"1077813":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077827":[232,128,235,56,175]},{"1077833":[40]},{"1077835":[72,175]},{"1077838":[40]},{"1077840":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077858":[175]},{"1077860":[40]},{"1077862":[72,175]},{"1077865":[40]},{"1077867":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077887":[40]},{"1077889":[72,175]},{"1077892":[40]},{"1077894":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077914":[40]},{"1077916":[72,175]},{"1077919":[40]},{"1077921":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1077941":[40]},{"1077943":[133,4,175]},{"1077947":[40]},{"1077949":[72,175]},{"1077952":[40]},{"1077954":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1077974":[40]},{"1077976":[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]},{"1078045":[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,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]},{"1078135":[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]},{"1078169":[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]},{"1078268":[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]},{"1078299":[201,2]},{"1078302":[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]},{"1078334":[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,41,246,160,144,10,208,8,175,140,80,127,207,39,246,160,144,114,175,145,129,48,41,255]},{"1078390":[208,24,169,2]},{"1078395":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078419":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078432":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078446":[143,142,80,127,169,1]},{"1078453":[143,126,80,127,128,54,201,2]},{"1078462":[208,24,169,2]},{"1078467":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,153,215,160,194,48,96,175,146,129,48,41,255]},{"1078504":[240,7,169]},{"1078509":[143,126,80,127,175,142,80,127,207,29,246,160,144,10,208,8,175,140,80,127,207,27,246,160,144,53,175,128,80,127,26,201,10]},{"1078543":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078557":[143,128,80,127,175,140,80,127,56,239,27,246,160,143,140,80,127,175,142,80,127,239,29,246,160,143,142,80,127,128,181,175,142,80,127,207,33,246,160,144,10,208,8,175,140,80,127,207,31,246,160,144,53,175,132,80,127,26,201,10]},{"1078618":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078632":[143,132,80,127,175,140,80,127,56,239,31,246,160,143,140,80,127,175,142,80,127,239,33,246,160,143,142,80,127,128,181,175,142,80,127,207,37,246,160,144,10,208,8,175,140,80,127,207,35,246,160,144,53,175,136,80,127,26,201,10]},{"1078693":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078707":[143,136,80,127,175,140,80,127,56,239,35,246,160,143,140,80,127,175,142,80,127,239,37,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]},{"1078815":[16,14]},{"1078819":[60]},{"1078823":[255,255,255,127,175,204,80,127,41,255]},{"1078834":[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]},{"1078905":[240,93,175,145,129,48,41,255]},{"1078914":[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]},{"1079007":[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]},{"1079082":[208,3,32,249,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]},{"1079112":[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]},{"1079146":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079230":[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]},{"1079336":[255,157]},{"1079339":[27,157,64,27,157,128,27,157,192,27,157]},{"1079351":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079365":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079379":[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,24,162,9,165,138,201,64,176,16,162,2,201,24,208,10,175,197,243,126,201,3,176,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]},{"1079487":[2,156,16,7,107,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079520":[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,107,173,10,4,201,24,208,2,165,27,107,34,116,220,160,34,58,135,1,194,16,166,160,191,219,251,160,226,16,34,156,135]},{"1079629":[95,249,160,96,249,160,237,249,160,122,250,160,7,251,160,113,251,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079665":[32,126,232,232,159]},{"1079671":[32,126,232,232,159]},{"1079677":[32,126,232,232,159]},{"1079683":[32,126,232,232,162,220,25,159]},{"1079692":[32,126,232,232,169,202,12,159]},{"1079701":[32,126,232,232,169,203,12,159]},{"1079710":[32,126,232,232,169,208,8,159]},{"1079719":[32,126,232,232,162,92,26,159]},{"1079728":[32,126,232,232,169,218,12,159]},{"1079737":[32,126,232,232,169,219,12,159]},{"1079746":[32,126,232,232,169,208,8,159]},{"1079755":[32,126,232,232,162,220,26,159]},{"1079764":[32,126,232,232,159]},{"1079770":[32,126,232,232,159]},{"1079776":[32,126,232,232,159]},{"1079782":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079806":[32,126,232,232,159]},{"1079812":[32,126,232,232,159]},{"1079818":[32,126,232,232,159]},{"1079824":[32,126,232,232,162,156,25,159]},{"1079833":[32,126,232,232,169,202,12,159]},{"1079842":[32,126,232,232,169,203,12,159]},{"1079851":[32,126,232,232,169,208,8,159]},{"1079860":[32,126,232,232,162,28,26,159]},{"1079869":[32,126,232,232,169,218,12,159]},{"1079878":[32,126,232,232,169,219,12,159]},{"1079887":[32,126,232,232,169,208,8,159]},{"1079896":[32,126,232,232,162,156,26,159]},{"1079905":[32,126,232,232,159]},{"1079911":[32,126,232,232,159]},{"1079917":[32,126,232,232,159]},{"1079923":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079947":[32,126,232,232,159]},{"1079953":[32,126,232,232,159]},{"1079959":[32,126,232,232,159]},{"1079965":[32,126,232,232,162,220,9,159]},{"1079974":[32,126,232,232,169,202,12,159]},{"1079983":[32,126,232,232,169,203,12,159]},{"1079992":[32,126,232,232,169,208,8,159]},{"1080001":[32,126,232,232,162,92,10,159]},{"1080010":[32,126,232,232,169,218,12,159]},{"1080019":[32,126,232,232,169,219,12,159]},{"1080028":[32,126,232,232,169,208,8,159]},{"1080037":[32,126,232,232,162,220,10,159]},{"1080046":[32,126,232,232,159]},{"1080052":[32,126,232,232,159]},{"1080058":[32,126,232,232,159]},{"1080064":[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]},{"1080297":[1]},{"1080379":[5]},{"1080381":[4]},{"1080409":[2]},{"1080505":[3]},{"1080603":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080620":[134,1,133,2,32,27,253,176,4,92,83,230]},{"1080633":[169,49,133,2,194,32,169]},{"1080641":[192,133]},{"1080644":[162,128,167]},{"1080648":[141,24,33,230]},{"1080653":[230]},{"1080655":[167]},{"1080657":[141,24,33,230]},{"1080662":[230]},{"1080664":[167]},{"1080666":[141,24,33,230]},{"1080671":[230]},{"1080673":[167]},{"1080675":[141,24,33,230]},{"1080680":[230]},{"1080682":[167]},{"1080684":[141,24,33,230]},{"1080689":[230]},{"1080691":[167]},{"1080693":[141,24,33,230]},{"1080698":[230]},{"1080700":[167]},{"1080702":[141,24,33,230]},{"1080707":[230]},{"1080709":[167]},{"1080711":[141,24,33,230]},{"1080716":[230]},{"1080718":[202,208,181,226,32,92,81,230]},{"1080727":[226,48,175,248,194,126,168,32,27,253,194,48,176,10,162]},{"1080744":[160,64]},{"1080747":[92,104,223]},{"1080751":[162]},{"1080753":[192,160]},{"1080757":[169]},{"1080759":[8,139,84,127,177,171,162]},{"1080767":[8,169]},{"1080770":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,58,221,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,67,244,126,41,255]},{"1081425":[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,85,151,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,233,222,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,222,234,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,239,234,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,196,149,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,196,149,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,71,131,165,242,137,32,208,13,128,36,32,129,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,171,180,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,120,149,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,120,149,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,120,149,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,120,149,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,54,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,54,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,160,175,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,152,45,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,18,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[208,7,169,1,1,143,46,39,126,226,48,175,74,128,48,240,20,139,169,126,72,171,194,48,165,138,201,128]},{"1186642":[176,5,10,170,252,99,155,171,194,48,162,30]},{"1186655":[169,190,13,107,99,156,99,156,99,156,100,156,99,156,143,156,99,156,137,157,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,216,157,99,156,99,156,99,156,223,157,99,156,99,156,99,156,99,156,99,156,99,156,254,157,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,152,160,99,156,99,156,99,156,99,156,99,156,99,156,180,160,99,156,118,164,249,166,99,156]},{"1186766":[167,99,156,99,156,99,156,99,156,55,167,99,156,12,164,99,156,99,156,99,156,99,156,99,156,99,156,173,167,99,156,36,168,99,156,2,168,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,43,168,99,156,99,156,99,156,50,168,99,156,99,156,99,156,99,156,99,156,99,156,78,168,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,32,170,46,170,99,156,99,156,39,170,99,156,53,170,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,99,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186931":[141,186,41,169,4,1,141,188,41,169,198]},{"1186943":[141,52,42,141,56,42,141,58,42,169,52]},{"1186955":[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]},{"1187058":[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]},{"1187205":[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]},{"1187284":[141,38,40,96,169,52]},{"1187291":[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]},{"1187404":[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]},{"1187440":[141,40,44,141,174,47,169,52]},{"1187449":[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]},{"1187488":[141,54,44,141,168,47,169,174]},{"1187497":[141,172,44,169,175]},{"1187503":[141,174,44,169,126]},{"1187509":[141,176,44,169,127]},{"1187515":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187533":[141,44,45,169,20]},{"1187539":[141,46,45,169,21]},{"1187545":[141,48,45,169,168]},{"1187551":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187569":[141,172,45,169,28]},{"1187575":[141,174,45,169,29]},{"1187581":[141,176,45,169,118]},{"1187587":[141,178,45,169,241]},{"1187593":[141,44,46,169,78]},{"1187599":[141,46,46,169,79]},{"1187605":[141,48,46,169,217]},{"1187611":[141,50,46,169,154]},{"1187617":[141,172,46,169,155]},{"1187623":[141,174,46,169,156]},{"1187629":[141,176,46,169,149]},{"1187635":[141,178,46,169,52]},{"1187641":[141,40,48,141,44,48,169,53]},{"1187650":[141,42,48,141,50,48,169,218]},{"1187659":[141,46,48,169,226]},{"1187665":[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]},{"1187746":[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]},{"1187830":[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]},{"1187887":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187903":[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]},{"1187995":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188016":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188032":[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]},{"1188074":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188095":[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]},{"1188161":[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]},{"1188191":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188209":[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]},{"1188236":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188257":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188275":[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]},{"1188344":[141,226,34,169,2,3,141,228,34,169,204]},{"1188356":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188380":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188401":[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]},{"1188443":[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]},{"1188476":[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]},{"1188571":[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]},{"1188704":[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]},{"1188797":[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]},{"1188872":[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]},{"1189006":[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]},{"1189051":[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]},{"1189369":[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]},{"1189414":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189432":[141,134,41,169,229]},{"1189438":[141,136,41,169]},{"1189443":[1,141,162,41,169,113]},{"1189450":[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]},{"1189495":[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]},{"1189531":[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]},{"1189558":[141,26,44,169,206]},{"1189564":[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]},{"1189628":[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]},{"1189683":[141,86,47,96,169,116,7,141]},{"1189692":[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]},{"1189734":[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]},{"1189950":[141,162,36,141,164,36,169,227]},{"1189959":[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]},{"1190086":[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]},{"1190116":[141,30,50,169,218]},{"1190122":[141,32,50,141,154,50,169,225]},{"1190131":[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]},{"1190176":[141,26,50,169,242]},{"1190182":[141,184,59,169,8,1,141,56,60,169,52]},{"1190194":[141,190,59,175,197,243,126,41,255]},{"1190204":[201,3]},{"1190207":[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]},{"1190350":[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,132,173,194,32,166,6,138,9]},{"1190581":[36,143,90,199,126,166,7,138,9]},{"1190591":[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,34,173,166,4,138,9]},{"1190624":[36,143,80,199,126,166,5,138,9]},{"1190634":[36,143,82,199,126,166,6,138,9]},{"1190644":[36,143,84,199,126,166,7,138,9]},{"1190654":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,132,173,194,32,166,6,138,9]},{"1190687":[36,143,96,199,126,166,7,138,9]},{"1190697":[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]},{"1190729":[175,24,244,126,32,93,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190751":[36,143,44,199,126,166,6,138,9]},{"1190761":[36,143,46,199,126,166,7,138,9]},{"1190771":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,93,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190807":[36,143,52,199,126,166,6,138,9]},{"1190817":[36,143,54,199,126,166,7,138,9]},{"1190827":[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]},{"1190860":[240,4,34,158,173,164,226,32,175,111,243,126,201,255,240,34,32,132,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190891":[9]},{"1190893":[36,143,100,199,126,166,7,138,9]},{"1190903":[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]},{"1190934":[24,105,7]},{"1190938":[41,248,255,170,175,202,80,127,41,255]},{"1190949":[208,3,130,215]},{"1190954":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190967":[165,26,41,12]},{"1190972":[74,74,240,58,201,1]},{"1190979":[240,98,201,2]},{"1190984":[208,3,130,180]},{"1190989":[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]},{"1191222":[144,6,200,233,100]},{"1191228":[128,245,132,5,160,144,201,10]},{"1191237":[144,6,200,233,10]},{"1191243":[128,245,132,6,160,144,201,1]},{"1191252":[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]},{"1191342":[240,11,175,100,243,126,63,223,173,164,208,1,107,124,251,173,32,132,173,194,32,166,6,138,9]},{"1191368":[36,143,148,199,126,166,7,138,9]},{"1191378":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191392":[128]},{"1191394":[64]},{"1191396":[32]},{"1191398":[16]},{"1191400":[8]},{"1191402":[4]},{"1191404":[2]},{"1191406":[1,128]},{"1191409":[64]},{"1191411":[32]},{"1191413":[16]},{"1191415":[8]},{"1191417":[4]},{"1191419":[23,174,23,174,50,174,75,174,103,174,128,174,153,174,178,174,203,174,230,174,1,175,28,175,53,175,80,175,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,190,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,190,173,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,190,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,190,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,190,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,190,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,190,173,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,190,173,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,190,173,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,190,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,190,173,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,190,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,190,173,107,159]},{"1191789":[4,112,159]},{"1191793":[5,112,159]},{"1191797":[6,112,159]},{"1191801":[7,112,159]},{"1191805":[8,112,159]},{"1191809":[9,112,159]},{"1191813":[10,112,159]},{"1191817":[11,112,159]},{"1191821":[12,112,159]},{"1191825":[13,112,159]},{"1191829":[14,112,159]},{"1191833":[15,112,107,159]},{"1191838":[244,126,159]},{"1191842":[101,127,159]},{"1191846":[102,127,159]},{"1191850":[103,127,159]},{"1191854":[104,127,159]},{"1191858":[105,127,159]},{"1191862":[106,127,159]},{"1191866":[107,127,159]},{"1191870":[108,127,159]},{"1191874":[109,127,159]},{"1191878":[110,127,159]},{"1191882":[111,127,107,72,226,48,173]},{"1191890":[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]},{"1191918":[141]},{"1191920":[67,169,128,141,1,67,169]},{"1191928":[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]},{"1191956":[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]},{"1191996":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192011":[72,171,173]},{"1192015":[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]},{"1192045":[67,141,1,67,169]},{"1192051":[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]},{"1192079":[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]},{"1192119":[67,194,48,171,104,162]},{"1192127":[138,107,165,17,34,156,135]},{"1192135":[214,176,164,238,176,164,13,177,164,14,178,164,36,178,164,169,128,141,16,7,34,61,137]},{"1192159":[34,51,131]},{"1192163":[34,159,145,164,169,7,133,20,230,17,107,32,45,179,100,200,100,201,34,54,178,164,208,11,162,15,169]},{"1192191":[159]},{"1192193":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,157,179,165,246,41,16,240,3,32,233,180,165,246,41,32,240,3,32,246,180,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,234,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,246,180,128,52,201,242,208,5,32,233,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192384":[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,155,180,32,80,180,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,54,178,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]},{"1192508":[16,112,208,3,130,161]},{"1192515":[202,16,244,194,32,162,14,169]},{"1192525":[159,208,80,127,202,202,16,248,32,233,178,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]},{"1192566":[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]},{"1192595":[133,4,34,160,175,160,226,32,175]},{"1192605":[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]},{"1192680":[107,169]},{"1192684":[133]},{"1192686":[133,2,169,11]},{"1192691":[133,4,166]},{"1192695":[191]},{"1192697":[16,112,58,41,31]},{"1192703":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192728":[16,6,24,105,8]},{"1192734":[230,2,133,4,165]},{"1192740":[26,133]},{"1192743":[201,16]},{"1192746":[144,201,96,173]},{"1192751":[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]},{"1192779":[141]},{"1192781":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,197,141,2,67,169,182,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]},{"1192859":[67,96,194,32,165,200,41,255]},{"1192868":[10,170,191,232,179,164,24,105,132,96,235,143,2,17]},{"1192883":[165,201,41,255]},{"1192888":[10,170,191,8,180,164,24,105,163,97,235,143,18,17]},{"1192903":[235,24,105,32]},{"1192908":[235,143,30,17]},{"1192913":[235,24,105,3]},{"1192918":[235,143,38,17]},{"1192923":[235,24,105,61]},{"1192928":[235,143,46,17]},{"1192933":[226,32,96,64]},{"1192938":[67]},{"1192940":[70]},{"1192942":[73]},{"1192944":[76]},{"1192946":[79]},{"1192948":[82]},{"1192950":[85]},{"1192952":[160]},{"1192954":[163]},{"1192956":[166]},{"1192958":[169]},{"1192960":[172]},{"1192962":[175]},{"1192964":[178]},{"1192966":[181]},{"1192968":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192988":[66]},{"1192990":[69]},{"1192992":[72]},{"1192994":[75]},{"1192996":[78]},{"1192998":[81]},{"1193000":[84]},{"1193002":[87]},{"1193004":[159]},{"1193006":[162]},{"1193008":[165]},{"1193010":[168]},{"1193012":[171]},{"1193014":[174]},{"1193016":[177]},{"1193018":[180]},{"1193020":[183]},{"1193022":[255]},{"1193024":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193047":[10,170,191,232,179,164,24,105,132,96,235,143,10,17]},{"1193062":[165,201,41,255]},{"1193067":[10,170,191,8,180,164,24,105,163,97,235,143,58,17]},{"1193082":[235,24,105,32]},{"1193087":[235,143,70,17]},{"1193092":[235,24,105,3]},{"1193097":[235,143,78,17]},{"1193102":[235,24,105,61]},{"1193107":[235,143,86,17]},{"1193112":[226,32,96,194,48,162,15]},{"1193120":[191]},{"1193122":[16,112,41,255]},{"1193127":[155,10,10,10,133]},{"1193133":[152,10,10,10,10,133,3,166]},{"1193142":[191,238,148,164,166,3,157,6,16,166]},{"1193153":[191,240,148,164,166,3,157,8,16,166]},{"1193164":[191,242,148,164,166,3,157,14,16,166]},{"1193175":[191,244,148,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]},{"1193222":[51,1,10,2,10]},{"1193228":[2,5,14,6,14]},{"1193234":[2]},{"1193236":[6,21,6]},{"1193240":[2,12,14,13,14]},{"1193246":[2,98,6,99,6]},{"1193252":[2,10,2,11,2]},{"1193258":[2,32,14,33,14]},{"1193264":[2,133,26,134,26]},{"1193270":[2,171,30,171,30,97,195]},{"1193278":[51,17,10,18,10]},{"1193284":[2]},{"1193286":[30,22,14]},{"1193290":[2,48,6]},{"1193294":[30]},{"1193296":[2,28,14,28,78]},{"1193302":[2,114,6,115,6]},{"1193308":[2,26,2,27,2]},{"1193314":[2,48,14,49,14]},{"1193320":[2,149,26,150,26]},{"1193326":[2,171,30,171,30,98,3]},{"1193334":[51,7,10,23,202]},{"1193340":[2,8,10,24,202]},{"1193346":[2,9,10,25,202]},{"1193352":[2,44,6,44,70]},{"1193358":[2,34,2,35,2]},{"1193364":[2,36,2,37,2]},{"1193370":[2,38,14,39,14]},{"1193376":[2,40,10,41,10]},{"1193382":[2,138,29]},{"1193386":[2,98,35]},{"1193390":[51,23,10,7,202]},{"1193396":[2,24,10,8,202]},{"1193402":[2,25,10,9,202]},{"1193408":[2,60,6,61,6]},{"1193414":[2,50,2,51,2]},{"1193420":[2,52,2,53,2]},{"1193426":[2,54,14,55,14]},{"1193432":[2,56,10,57,10]},{"1193438":[2,154,29]},{"1193442":[2,98,99]},{"1193446":[51,42,26,43,26]},{"1193452":[2,64,30,65,30]},{"1193458":[2,66,26,66,90]},{"1193464":[2,29,6,30,6]},{"1193470":[2,72,6,73,6]},{"1193476":[2,74,14,75,14]},{"1193482":[2,76,22,77,22]},{"1193488":[2,78,2,79,2]},{"1193494":[2]},{"1193496":[2,139,29,98,131]},{"1193502":[51,58,26,59,26]},{"1193508":[2,80,30,81,30]},{"1193514":[2,82,26,83,26]},{"1193520":[2,45,6,46,6]},{"1193526":[2,88,6,89,6]},{"1193532":[2,90,14,91,14]},{"1193538":[2,92,22,93,22]},{"1193544":[2,94,2,95,2]},{"1193550":[2]},{"1193552":[2,155,29,98,195]},{"1193558":[51,14,14,15,14]},{"1193564":[2,100,6,101,6]},{"1193570":[2,109,10,110,10]},{"1193576":[2,111,26,111,90]},{"1193582":[2,129,6,129,70]},{"1193588":[2,130,10,131,10]},{"1193594":[2,132,6,132,70]},{"1193600":[2,47,74,47,10]},{"1193606":[2,103,94,103,30,98,227]},{"1193614":[51,31,78,31,14]},{"1193620":[2,116,6,117,6]},{"1193626":[2,125,10,126,10]},{"1193632":[2,127,26,127,90]},{"1193638":[2,145,6,145,70]},{"1193644":[2,146,10,147,10]},{"1193650":[2,148,6,148,70]},{"1193656":[2,62,10,63,10]},{"1193662":[2,103,222,103,158,255,255,96,132]},{"1193672":[3,134,29,134,29,96,164]},{"1193680":[3,150,29,150,29,96,135]},{"1193688":[3,134,29,134,29,96,167]},{"1193696":[3,150,29,150,29,96,138]},{"1193704":[3,134,29,134,29,96,170]},{"1193712":[3,150,29,150,29,96,141]},{"1193720":[3,134,29,134,29,96,173]},{"1193728":[3,150,29,150,29,96,144]},{"1193736":[3,134,29,134,29,96,176]},{"1193744":[3,150,29,150,29,96,147]},{"1193752":[3,134,29,134,29,96,179]},{"1193760":[3,150,29,150,29,96,150]},{"1193768":[3,134,29,134,29,96,182]},{"1193776":[3,150,29,150,29,96,153]},{"1193784":[3,134,29,134,29,96,185]},{"1193792":[3,150,29,150,29,96,228]},{"1193800":[3,134,29,134,29,97,4]},{"1193808":[3,150,29,150,29,96,231]},{"1193816":[3,134,29,134,29,97,7]},{"1193824":[3,150,29,150,29,96,234]},{"1193832":[3,134,29,134,29,97,10]},{"1193840":[3,150,29,150,29,96,237]},{"1193848":[3,134,29,134,29,97,13]},{"1193856":[3,150,29,150,29,96,240]},{"1193864":[3,134,29,134,29,97,16]},{"1193872":[3,150,29,150,29,96,243]},{"1193880":[3,134,29,134,29,97,19]},{"1193888":[3,150,29,150,29,96,246]},{"1193896":[3,134,29,134,29,97,22]},{"1193904":[3,150,29,150,29,96,249]},{"1193912":[3,134,29,134,29,97,25]},{"1193920":[3,150,29,150,29,96,196]},{"1193928":[3]},{"1193930":[2]},{"1193932":[2,96,196]},{"1193936":[3,103,222,103,158,97,130]},{"1193944":[7]},{"1193946":[2]},{"1193948":[2]},{"1193950":[2]},{"1193952":[2,97,162,128,3]},{"1193958":[2]},{"1193960":[2,97,165,128,3]},{"1193966":[2]},{"1193968":[2,97,226]},{"1193972":[7]},{"1193974":[2]},{"1193976":[2]},{"1193978":[2]},{"1193980":[2,97,130]},{"1193984":[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]},{"1194012":[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]},{"1194051":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,127]},{"1194077":[127]},{"1194079":[127]},{"1194081":[127]},{"1194083":[127]},{"1194085":[127]},{"1194087":[127]},{"1194089":[127]},{"1194091":[127]},{"1194093":[127]},{"1194095":[127]},{"1194097":[127]},{"1194099":[127]},{"1194101":[127]},{"1194103":[127]},{"1194105":[127]},{"1194107":[127]},{"1194109":[127]},{"1194111":[127]},{"1194113":[127]},{"1194115":[127]},{"1194117":[127]},{"1194119":[127]},{"1194121":[127]},{"1194123":[127]},{"1194125":[127]},{"1194127":[127]},{"1194129":[127]},{"1194131":[127]},{"1194133":[127]},{"1194135":[127]},{"1194137":[127]},{"1194139":[8,162,128,142]},{"1194144":[33,194,32,169,64,99,141,22,33,169,39,192,141,66,67,162,126,142,68,67,169,64]},{"1194167":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,162,15,142]},{"1194185":[33,40,107,8,162,128,142]},{"1194193":[33,194,32,169,64,99,141,22,33,169,91,184,141,66,67,162,164,142,68,67,169,64]},{"1194216":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,162,15,142]},{"1194234":[33,40,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194269":[83,127,201,3,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,186,164,226,48,169]},{"1194307":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194365":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194423":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,219,185,34,231,244,30,32,27,186,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,251,133,8,169,185,105]},{"1194480":[133,9,34,117,223,5,34,92,220,6,96]},{"1194493":[247,255,198]},{"1194498":[2]},{"1194503":[200]},{"1194506":[2]},{"1194509":[248,255,198]},{"1194514":[2]},{"1194519":[202,64]},{"1194522":[2,175,103,129,48,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,153,215,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194580":[84,34,26,150,160,40,122,107]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,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]},{"1593408":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,13,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]},{"1593476":[154,213,155,213]},{"1593482":[183,213,184,213,185,213,186,213,191,213,197,213,198,213,199,213,201,213]},{"1593504":[1]},{"1593506":[74,10]},{"1593509":[1]},{"1593511":[243,10]},{"1593514":[2]},{"1593516":[50,12]},{"1593520":[1]},{"1593522":[25,13,52]},{"1593527":[255,255,255,255,255,255,255,255,255,1]},{"1593538":[74,10,112,1]},{"1593543":[243,10,192,2]},{"1593548":[50,12,218,88,1]},{"1593554":[25,13,52]},{"1593559":[255,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]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,26,224,160,234]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,5,199,160]},{"21847":[34,221,199,160,234]},{"21854":[34,0,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,142,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,33,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[51,163,160]},{"30994":[181,163,160]},{"31001":[51,163,160]},{"31011":[181,163,160]},{"31046":[195,221,160]},{"31102":[34,127,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[170,221,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,162]},{"51009":[160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,71,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,40,188,164]},{"60790":[198,222,160]},{"61077":[215,180,160]},{"61133":[34,15,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,133,237,160]},{"65607":[145,236,160]},{"65778":[34,24,143,160,234,234]},{"65879":[34,18,194,160,234]},{"65894":[34,64,194,160]},{"66284":[34,99,194,160]},{"66292":[92,161,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,135,239,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,87,223,160,234,234]},{"67934":[46,248,160]},{"68495":[34,187,154,160,208,6,234]},{"68584":[50,248,160]},{"69776":[34,187,154,160,208,4,234]},{"70410":[50,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,154,247,160,234]},{"72216":[124,221,160]},{"72241":[34,64,194,160]},{"72246":[154,153,160]},{"73041":[34,150,154,160]},{"73263":[136,236,160]},{"73340":[34,241,128,160,234]},{"73937":[34,80,194,160]},{"74833":[34,213,130,164]},{"76423":[34,138,237,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]},{"78172":[34,242,222,160,34,127,153,160,234,234]},{"79603":[34,176,221,160]},{"79767":[34,102,223,160]},{"82676":[50,248,160]},{"87892":[34,119,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,196,238,160]},{"90651":[34,232,235,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[114,188,164]},{"166331":[34,150,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[26,181,160]},{"173058":[26,181,160]},{"173307":[26,181,160]},{"173320":[26,181,160]},{"183384":[34,36,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,150,154,160]},{"187902":[34,173,154,160]},{"188153":[0]},{"188234":[18,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,132,151,160]},{"188959":[34,19,235,160,128,13]},{"189655":[34,175,195,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[57,188,164]},{"191439":[34,204,196,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,224,196,160,234,234]},{"192037":[34,173,154,160]},{"192083":[34,97,143,160,234,234]},{"192095":[34,252,194,160,234]},{"192121":[76,195,160]},{"192140":[34,64,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[185,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,83,143,160]},{"192893":[34,173,154,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,150,154,160]},{"193025":[253,143,160]},{"193033":[34,150,154,160]},{"193140":[34,201,178,160]},{"193157":[34,194,178,160]},{"193440":[34,151,219,160]},{"193472":[168,234,160]},{"193546":[34,151,219,160]},{"193578":[112,234,160]},{"193854":[34,106,143,160]},{"193859":[32]},{"193888":[140,194,160]},{"194141":[34,100,195,160,234,234,234,234,234]},{"194177":[34,218,194,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,19,235,160]},{"195327":[34,17,143,160,240,2,96,234]},{"195539":[34,178,198,160]},{"195589":[22,176,160]},{"195710":[34,44,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[239,175,160]},{"195909":[249,175,160]},{"196477":[34,173,154,160]},{"196497":[34,150,154,160]},{"197750":[99,192,160]},{"198721":[34,121,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,54,143,160]},{"199659":[34,205,165,160,96,234]},{"199950":[34,90,143,160]},{"199964":[184,175,160]},{"199993":[34,3,176,160]},{"200070":[34,40,143,160]},{"200470":[34,33,143,160]},{"200845":[34,47,143,160,201]},{"200851":[240]},{"200853":[34,47,143,160]},{"200858":[8]},{"200893":[34,54,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,56,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[63,143,160]},{"208994":[34,54,143,160,234,234]},{"209010":[139]},{"209098":[226,143,160]},{"209199":[41,247]},{"210057":[92,203,219,160,234,234,234,234]},{"210164":[133,143,160]},{"211413":[199,143,160]},{"212333":[76,188,164]},{"212610":[95,188,164]},{"213139":[34,185,164]},{"213169":[147,133,160]},{"214205":[34,99,180,160]},{"214972":[245,179,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,19,222,160]},{"217579":[34,5,193,160]},{"224597":[34,151,218,160]},{"224693":[34,171,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,185,219,160,234]},{"226304":[34,236,218,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,104,237,160]},{"229634":[34,124,186,164]},{"230816":[231,178,160]},{"230955":[231,178,160]},{"233256":[197]},{"233258":[160]},{"233266":[34,165,128,160]},{"233297":[34,113,237,160,234]},{"233987":[25,221,160]},{"234731":[34,118,221,160]},{"234747":[34,124,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[51,204,160]},{"236047":[229,192,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[140,197,160]},{"238498":[34,37,196,160,128,3]},{"238562":[34,80,198,160,240,4,234]},{"238751":[34,45,220,160]},{"238964":[34,45,220,160]},{"239190":[34,45,220,160]},{"239964":[12,223,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,13,219,160]},{"241165":[34,13,219,160]},{"241175":[34,235,128,164]},{"241294":[34,13,219,160]},{"241304":[34,235,128,164]},{"241814":[34,13,219,160,24,125,139,176]},{"241869":[13,235,160]},{"241877":[34,13,219,160,24,125,139,176]},{"242942":[34,129,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,139,222,160,234]},{"243067":[234,234,34,92,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,43,219,160,234]},{"250478":[34,97,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,110,243,160,234]},{"273608":[34,95,182,160,76,230,172]},{"275716":[34,67,182,160,234]},{"276202":[34,128,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,21,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[221,133,160,92,203,237,160,234,234]},{"279880":[92,17,189,164]},{"280037":[34,161,233,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[13,235,160]},{"280106":[92,90,225,160,234]},{"280265":[79,210,160]},{"280287":[79,209,160]},{"280314":[79,210,160]},{"280335":[34,127,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,255,193,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,13,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,84,200,160,234]},{"296453":[92,133,188,164,234]},{"296466":[79,211]},{"296471":[80,211]},{"296480":[79,213]},{"296488":[79,211]},{"296493":[80,211]},{"296502":[79,213,34,0,128,160]},{"296583":[34,150,154,160]},{"296619":[79,214]},{"296810":[95,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[127,206]},{"297052":[111,207]},{"297087":[34,69,133,160,234,176]},{"297144":[79,209]},{"297200":[127,206]},{"297225":[111,207]},{"297263":[80,215]},{"297292":[34,199,194,160]},{"297309":[87,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,35,189,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]},{"324619":[34,175,152,160]},{"324675":[34,117,222,160]},{"324780":[8,8,16]},{"324896":[34,217,235,160,34,93,222,160,234,234,234,234,234,234]},{"324996":[34,80,194,160]},{"325098":[169,2,0,234]},{"325131":[34,9,236,160]},{"325203":[34,163,175,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":[161,237,160]},{"342245":[34,59,132,160,34,222,221,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,173,154,160]},{"344119":[34,173,154,160]},{"344185":[34,173,154,160]},{"344248":[34,173,154,160]},{"344312":[34,173,154,160]},{"344375":[34,173,154,160]},{"344441":[34,173,154,160]},{"344499":[34,173,154,160]},{"344565":[34,173,154,160]},{"344623":[34,173,154,160]},{"344689":[34,173,154,160]},{"344747":[34,173,154,160]},{"344813":[34,173,154,160]},{"344871":[34,173,154,160]},{"344937":[34,173,154,160]},{"345406":[34,203,153,160]},{"345531":[34,222,153,160,96]},{"345560":[34,222,153,160,96]},{"393133":[170,221,160]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[94,237,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,181,235,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[162,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,173,154,160]},{"449502":[34,45,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,199]},{"449578":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,229]},{"449612":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,178,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,220,154,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,47,155,160]},{"450360":[34,155,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34]},{"450460":[184,160,234]},{"450492":[34,15,155,160,234,234,234]},{"450861":[34,29,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,162,155,160,234]},{"452559":[34,144,155,160,234]},{"452581":[34,180,155,160,234]},{"452634":[96]},{"453064":[34,207,159,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,29,193,160,234,234,76,230,236]},{"453867":[34,198,155,160,234]},{"453892":[34,216,155,160]},{"454092":[34,65,155,160,234,234,234,234,234]},{"454233":[34,65,155,160,234,234,234,234,234]},{"454256":[34,133,194,160,234]},{"454282":[34,65,155,160,234,234,234,234,234]},{"454459":[34,65,155,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,243,131,160]},{"457344":[34,177,153,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,120,216,160]},{"457513":[34,158,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,203,195,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,201,235,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,159,225,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[153,233,160]},{"487403":[169,2,0,234]},{"487935":[34,199,225,160]},{"488156":[34,199,225,160]},{"488213":[34,199,225,160]},{"488242":[34,199,225,160]},{"488309":[34,199,225,160]},{"488340":[34,199,225,160]},{"488721":[34,199,225,160]},{"489560":[34,199,225,160]},{"490022":[34,199,225,160]},{"490060":[34,199,225,160]},{"490164":[34,199,225,160]},{"490184":[34,199,225,160]},{"490209":[34,199,225,160]},{"490257":[34,199,225,160]},{"490438":[34,215,225,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]},{"882113":[34,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,197,239,160]},{"900244":[34,25,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,16,240,160,234]},{"900437":[92,170,238,160,234]},{"900447":[34,105,247,160,234,234,234]},{"900458":[34,176,221,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,82,240,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,255,233,160,96]},{"954852":[118,181,160]},{"955117":[222,233,160]},{"955529":[114,181,160]},{"962925":[79,181,160]},{"962951":[79,181,160]},{"963167":[79,181,160]},{"963214":[79,181,160]},{"965041":[79,181,160]},{"965069":[79,181,160]},{"965214":[79,181,160]},{"965298":[79,181,160]},{"965316":[79,181,160]},{"967797":[34,183,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,209,179,160]},{"972824":[30,181,160]},{"972834":[30,181,160]},{"972851":[30,181,160]},{"974665":[92,48,197,160,234]},{"974706":[101,197,160]},{"974722":[74,197,160]},{"975106":[34,113,143,160]},{"975132":[34,113,143,160]},{"975265":[34,65,197,160,234,234]},{"975332":[34,39,197,160,234,234]},{"975401":[255]},{"976357":[75,181,160]},{"976423":[75,181,160]},{"978658":[59,181,160]},{"979078":[34,171,219,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":[191,180,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,3,196,160]},{"983466":[59,181,160]},{"983651":[59,181,160]},{"988539":[71,181,160]},{"988657":[71,181,160]},{"988668":[71,181,160]},{"988874":[71,181,160]},{"988902":[71,181,160]},{"989142":[71,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[63,181,160]},{"999246":[67,181,160]},{"999265":[67,181,160]},{"999359":[67,181,160]},{"999574":[67,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,253,196,160]},{"1003229":[34,150,154,160]},{"1003277":[34,150,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[34,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[34,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,3,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,24,143,160,234,234]},{"1010175":[159,143,160]},{"1011427":[34,63,169,160,96,234]},{"1011808":[34,154,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,72,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,72,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,205,133,160,168,34,245,133,160,34,87,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,43,179,160,122,250,107,218,90,34,99,192,160,188,128,14,208,5,34,194,138,160,168,128,186,8,34,28,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,22,149,160,144,8,189,96,14,9,32,157,96,14,104,34,95,150,160,34,92,220,6,122,104,40,107,8,34,28,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,185,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,245,140,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,245,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,17,169]},{"1050024":[143]},{"1050026":[80,127,34,205,133,160,157,128,14,34,249,149,160,104,107,72,169]},{"1050044":[143]},{"1050046":[80,127,34,194,138,160,157,128,14,34,249,149,160,104,107,165,27,240,7,34,18,134,160,130,4]},{"1050072":[34,175,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050097":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050114":[208,11,175,22,244,126,9,1]},{"1050123":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050138":[208,50,175,135,128,48,208,6,175]},{"1050148":[128,48,128,35,218,8,194,48,165]},{"1050158":[72,165,2,72,169]},{"1050164":[128,133]},{"1050167":[169,48]},{"1050170":[133,2,169]},{"1050175":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050193":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050213":[72,165,2,72,169]},{"1050219":[128,133]},{"1050222":[169,48]},{"1050225":[133,2,169,1]},{"1050230":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050248":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050268":[72,165,2,72,169]},{"1050274":[128,133]},{"1050277":[169,48]},{"1050280":[133,2,169,2]},{"1050285":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050300":[201,27,1,208,108,165,34,235,41,1]},{"1050311":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050331":[72,165,2,72,169]},{"1050337":[128,133]},{"1050340":[169,48]},{"1050343":[133,2,169,3]},{"1050348":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050363":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050381":[72,165,2,72,169]},{"1050387":[128,133]},{"1050390":[169,48]},{"1050393":[133,2,169,4]},{"1050398":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050413":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050436":[72,165,2,72,169]},{"1050442":[128,133]},{"1050445":[169,48]},{"1050448":[133,2,169,5]},{"1050453":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050468":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050491":[72,165,2,72,169]},{"1050497":[128,133]},{"1050500":[169,48]},{"1050503":[133,2,169,6]},{"1050508":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050523":[201,135]},{"1050526":[208,7,175,98,129,48,130,3]},{"1050535":[169,23]},{"1050538":[41,255]},{"1050541":[40,107,8,194,32,165,138,201,3]},{"1050551":[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]},{"1050578":[72,165,2,72,169,64,129,133]},{"1050587":[169,48]},{"1050590":[133,2,169]},{"1050595":[34,67,147,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]},{"1050628":[72,165,2,72,169,16,128,133]},{"1050637":[169,48]},{"1050640":[133,2,169,6]},{"1050645":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050663":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050683":[72,165,2,72,169,64,129,133]},{"1050692":[169,48]},{"1050695":[133,2,169,1]},{"1050700":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050718":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050738":[72,165,2,72,169,64,129,133]},{"1050747":[169,48]},{"1050750":[133,2,169,2]},{"1050755":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050773":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050793":[72,165,2,72,169,64,129,133]},{"1050802":[169,48]},{"1050805":[133,2,169,10]},{"1050810":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050828":[208,107,165,34,201]},{"1050834":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050855":[72,165,2,72,169,64,129,133]},{"1050864":[169,48]},{"1050867":[133,2,169,3]},{"1050872":[34,67,147,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]},{"1050905":[72,165,2,72,169,16,128,133]},{"1050914":[169,48]},{"1050917":[133,2,169,7]},{"1050922":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050940":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050960":[72,165,2,72,169,64,129,133]},{"1050969":[169,48]},{"1050972":[133,2,169,4]},{"1050977":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050995":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051015":[72,165,2,72,169,64,129,133]},{"1051024":[169,48]},{"1051027":[133,2,169,5]},{"1051032":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051050":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051070":[72,165,2,72,169,64,129,133]},{"1051079":[169,48]},{"1051082":[133,2,169,6]},{"1051087":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051102":[201,74]},{"1051105":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051125":[72,165,2,72,169,64,129,133]},{"1051134":[169,48]},{"1051137":[133,2,169,6]},{"1051142":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051157":[201,91]},{"1051160":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051180":[72,165,2,72,169,64,129,133]},{"1051189":[169,48]},{"1051192":[133,2,169,7]},{"1051197":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051212":[201,104]},{"1051215":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051235":[72,165,2,72,169,64,129,133]},{"1051244":[169,48]},{"1051247":[133,2,169,8]},{"1051252":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051267":[201,129]},{"1051270":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051290":[72,165,2,72,169,64,129,133]},{"1051299":[169,48]},{"1051302":[133,2,169,9]},{"1051307":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051322":[169,23]},{"1051325":[41,255]},{"1051328":[40,107,8,194,32,165,160,201,200]},{"1051338":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051358":[72,165,2,72,169,80,129,133]},{"1051367":[169,48]},{"1051370":[133,2,169]},{"1051375":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051393":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051413":[72,165,2,72,169,80,129,133]},{"1051422":[169,48]},{"1051425":[133,2,169,1]},{"1051430":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051448":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051468":[72,165,2,72,169,80,129,133]},{"1051477":[169,48]},{"1051480":[133,2,169,2]},{"1051485":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051503":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051523":[72,165,2,72,169,80,129,133]},{"1051532":[169,48]},{"1051535":[133,2,169,3]},{"1051540":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051558":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051578":[72,165,2,72,169,80,129,133]},{"1051587":[169,48]},{"1051590":[133,2,169,4]},{"1051595":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051613":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051633":[72,165,2,72,169,80,129,133]},{"1051642":[169,48]},{"1051645":[133,2,169,5]},{"1051650":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051665":[201,172]},{"1051668":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051688":[72,165,2,72,169,80,129,133]},{"1051697":[169,48]},{"1051700":[133,2,169,6]},{"1051705":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051720":[201,222]},{"1051723":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051743":[72,165,2,72,169,80,129,133]},{"1051752":[169,48]},{"1051755":[133,2,169,7]},{"1051760":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051775":[201,144]},{"1051778":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051798":[72,165,2,72,169,80,129,133]},{"1051807":[169,48]},{"1051810":[133,2,169,8]},{"1051815":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051830":[201,164]},{"1051833":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051853":[72,165,2,72,169,80,129,133]},{"1051862":[169,48]},{"1051865":[133,2,169,9]},{"1051870":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051885":[169,62]},{"1051888":[41,255]},{"1051891":[40,107,194,32,165,160,201,200]},{"1051900":[208,4,56,130,82]},{"1051906":[201,51]},{"1051909":[208,4,56,130,73]},{"1051915":[201,7]},{"1051918":[208,4,56,130,64]},{"1051924":[201,90]},{"1051927":[208,4,56,130,55]},{"1051933":[201,6]},{"1051936":[208,4,56,130,46]},{"1051942":[201,41]},{"1051945":[208,4,56,130,37]},{"1051951":[201,172]},{"1051954":[208,4,56,130,28]},{"1051960":[201,222]},{"1051963":[208,4,56,130,19]},{"1051969":[201,144]},{"1051972":[208,4,56,130,10]},{"1051978":[201,164]},{"1051981":[208,4,56,130,1]},{"1051987":[24,226,32,107,90,165,27,208,3,130,230]},{"1051999":[8,194,32,165,160,201,135]},{"1052007":[208,7,175,58,227,48,130,137,1,201,200]},{"1052019":[208,7,175,62,227,48,130,125,1,201,51]},{"1052031":[208,7,175,63,227,48,130,113,1,201,7]},{"1052043":[208,7,175,64,227,48,130,101,1,201,90]},{"1052055":[208,7,175,65,227,48,130,89,1,201,6]},{"1052067":[208,7,175,66,227,48,130,77,1,201,41]},{"1052079":[208,7,175,67,227,48,130,65,1,201,172]},{"1052091":[208,7,175,68,227,48,130,53,1,201,222]},{"1052103":[208,7,175,69,227,48,130,41,1,201,144]},{"1052115":[208,7,175,70,227,48,130,29,1,201,164]},{"1052127":[208,7,175,71,227,48,130,17,1,201,225]},{"1052139":[208,7,175,72,227,48,130,5,1,201,226]},{"1052151":[208,7,175,73,227,48,130,249]},{"1052160":[201,234]},{"1052163":[208,7,175,74,227,48,130,237]},{"1052172":[201,27,1,208,22,165,34,235,41,1]},{"1052183":[208,7,175,75,227,48,130,217]},{"1052192":[175,76,227,48,130,210]},{"1052199":[201,38,1,208,7,175,77,227,48,130,198]},{"1052211":[201,39,1,208,44,175,78,227,48,130,186]},{"1052223":[169]},{"1052226":[130,180]},{"1052229":[8,194,32,165,138,201,3]},{"1052237":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052253":[175,59,227,48,130,149]},{"1052260":[201,5]},{"1052263":[208,7,175,80,227,48,130,137]},{"1052272":[201,40]},{"1052275":[208,7,175,81,227,48,130,125]},{"1052284":[201,42]},{"1052287":[208,7,175,61,227,48,130,113]},{"1052296":[201,48]},{"1052299":[208,21,165,34,201]},{"1052305":[2,176,7,175,82,227,48,130,94]},{"1052315":[175,60,227,48,130,87]},{"1052322":[201,53]},{"1052325":[208,7,175,83,227,48,130,75]},{"1052334":[201,59]},{"1052337":[208,7,175,84,227,48,130,63]},{"1052346":[201,66]},{"1052349":[208,7,175,85,227,48,130,51]},{"1052358":[201,74]},{"1052361":[208,7,175,85,227,48,130,39]},{"1052370":[201,91]},{"1052373":[208,7,175,86,227,48,130,27]},{"1052382":[201,104]},{"1052385":[208,7,175,87,227,48,130,15]},{"1052394":[201,129]},{"1052397":[208,7,175,88,227,48,130,3]},{"1052406":[169]},{"1052409":[41,255]},{"1052412":[40,143,152,192,126,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]},{"1052770":[72,165,2,72,169,16,128,133]},{"1052779":[169,48]},{"1052782":[133,2,169,3]},{"1052787":[34,67,147,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]},{"1052858":[72,165,2,72,169,16,128,133]},{"1052867":[169,48]},{"1052870":[133,2,169]},{"1052875":[34,67,147,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]},{"1052917":[72,165,2,72,169,16,128,133]},{"1052926":[169,48]},{"1052929":[133,2,169,1]},{"1052934":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052956":[160,70,226,32,143,152,192,126,40,104,107,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,81,218,207,150,128,48,144,10,104,175,151,128,48,34,39,145,160,107,104,218,139,75,171,170,191,28,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,9,217,160,76,39,145,201,251,208,7,34,197,217,160,76,39,145,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,39,145,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,39,145,160,107,201]},{"1053123":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,39,145,160,107,201]},{"1053178":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,14,175,64,243,126,201]},{"1053203":[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]},{"1053261":[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]},{"1053300":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,81,218,207,150,128,48,144,10,104,175,151,128,48,34,28,147,160,107,104,218,139,75,171,170,191,22,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,28,147,160,107,201]},{"1053560":[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,28,147,160,107,201]},{"1053615":[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,28,147,160,107,201]},{"1053655":[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,9,217,160,76,28,147,201,251,208,7,34,197,217,160,76,28,147,107]},{"1053719":[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]},{"1053757":[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]},{"1053806":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053824":[8,8,8]},{"1053830":[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,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,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,81,218,207,150,128,48,144,11,175,151,128,48,34,22,149,160,130,128]},{"1054029":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,22,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,22,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,22,149,160,128,37,201,98,208,6,34,9,217,160,128,8,201,99,208,4,34,197,217,160,162]},{"1054140":[224,36,176,12,223,209,149,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,32,11,150,34,39,145,160,34,45,213]},{"1054215":[122,250,104,107,72,8,72,194,32,169]},{"1054227":[143,37,192,126,143,39,192,126,169]},{"1054237":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,28,147,160,143,42,192,126,143,50,192,126,104,34,22,149,160,176,2,128,27,194,32,169]},{"1054278":[143,44,192,126,143,51,192,126,169]},{"1054288":[8,143,46,192,126,169]},{"1054295":[52,143,48,192,126,40,104,96,34,22,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]},{"1054364":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,22,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]},{"1054445":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054475":[169]},{"1054478":[143,66,80,127,128,6,162,64,45,160,2]},{"1054490":[104,107,32,69,151,176,35,194,32,165,226,72,56,233,15]},{"1054506":[133,226,165,232,72,56,233,15]},{"1054515":[133,232,226,32,32,69,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054547":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054567":[13,133]},{"1054570":[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]},{"1054605":[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]},{"1054647":[144,8,230,5,56,233,100]},{"1054655":[128,243,201,10]},{"1054660":[144,8,230,6,56,233,10]},{"1054668":[128,243,201,1]},{"1054673":[144,8,230,7,56,233,1]},{"1054681":[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,255,151,127,255,151,160,171,107]},{"1054720":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054738":[16,41,127]},{"1054742":[157,2,16,232,232,104,10,41,255,127,9]},{"1054754":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054775":[16,169,1,133,20,194,32,107,218,174]},{"1054786":[16,41,127]},{"1054790":[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]},{"1054832":[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]},{"1054879":[143,109,243,126,169]},{"1054885":[143,1,80,127,40,175,109,243,126,107,162]},{"1054897":[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]},{"1054923":[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]},{"1054950":[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,17,153,160,107,72,173]},{"1054996":[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]},{"1055026":[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]},{"1055100":[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]},{"1055161":[143,23,192,126,175,139,243,126,107,169]},{"1055172":[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,129,154,160,170,191,104,243,126,31,20,244,126,250,63,139,154,160,208,3,130,98]},{"1055249":[191,118,154,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,132,154,160,170,191,104,243,126,31,20,244,126,250,63,143,154,160,208,3,130,44]},{"1055303":[191,122,154,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]},{"1055363":[1,1]},{"1055368":[1]},{"1055370":[1,32,32,16]},{"1055375":[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,175,90,128,48,41,255]},{"1055426":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055439":[107,175,122,243,126,47,165,160,2,41,255]},{"1055451":[107,194,32,175,19,130,48,41,255]},{"1055461":[240,5,169,8]},{"1055466":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055479":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055501":[2,107,175,19,130,48,41,255]},{"1055510":[240,5,169,8]},{"1055515":[128,7,175,72,128,48,41,255]},{"1055524":[24,101,234,48,3,169]},{"1055532":[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]},{"1055559":[201,255]},{"1055562":[208,1,107,175,22,244,126,41,32]},{"1055572":[240,4,169]},{"1055577":[107,173,12,4,41,255]},{"1055584":[201,255]},{"1055587":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055611":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,198,237,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055643":[107,169,136,21,133]},{"1055649":[107,175,69,128,48,208,6,169,16,22,133]},{"1055661":[107,169,144,21,133]},{"1055667":[107,175,69,128,48,208,6,169,24,22,133]},{"1055679":[107,169,152,21,133]},{"1055685":[107,175,69,128,48,208,6,169,32,22,133]},{"1055697":[107,169,160,21,133]},{"1055703":[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]},{"1055795":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055809":[144,240,175,22,244,126,41,32]},{"1055818":[240,3,130,200,1,175,69,128,48,41,1]},{"1055830":[208,3,130,231]},{"1055835":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055857":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055874":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055891":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055908":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055925":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055942":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055959":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055976":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055993":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056010":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056027":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056044":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056061":[141,165,22,194,32,175,69,128,48,41,2]},{"1056073":[208,3,130,201]},{"1056078":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056091":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056106":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056121":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056136":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056151":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056166":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056181":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056196":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056211":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056226":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056241":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056256":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056271":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056286":[208,3,130,170,1,175,69,128,48,41,4]},{"1056298":[208,3,130,201]},{"1056303":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056316":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056331":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056346":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056361":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056376":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056391":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056406":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056421":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056436":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056451":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056466":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056481":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056496":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056511":[208,3,130,201]},{"1056516":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056529":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056544":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056559":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056574":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056589":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056604":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056619":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056634":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056649":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056664":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056679":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056694":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056709":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056728":[191,23,161,160,157,234,18,191,43,161,160,157,42,19,191,63,161,160,157,106,19,191,83,161,160,157,170,19,191,103,161,160,157,234,19,191,123,161,160,157,42,20,191,143,161,160,157,106,20,191,163,161,160,157,170,20,191,183,161,160,157,234,20,232,232,224,20]},{"1056796":[144,186,175,116,243,126,41,4]},{"1056805":[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]},{"1056838":[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]},{"1056871":[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]},{"1056904":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056925":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056946":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056967":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056988":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057009":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057030":[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]},{"1057653":[143,114,243,126,173,10,2,208,14,169]},{"1057664":[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]},{"1057698":[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]},{"1057779":[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]},{"1057822":[165,12,201,232,3,144,3,130,24]},{"1057832":[201,100]},{"1057835":[144,3,130,97]},{"1057840":[201,10]},{"1057843":[144,3,130,170]},{"1057848":[201,1]},{"1057851":[144,3,130,243]},{"1057856":[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,197,165,133,14,165,14,159]},{"1057893":[201,126,232,232,169,56]},{"1057900":[159]},{"1057902":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1057916":[201,126,232,232,169]},{"1057923":[159]},{"1057925":[201,126,232,232,165,14,24,105,8]},{"1057935":[133,14,100,10,165,12,201,100]},{"1057944":[144,8,56,233,100]},{"1057950":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,197,165,133,14,165,14,159]},{"1057974":[201,126,232,232,169,56]},{"1057981":[159]},{"1057983":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1057997":[201,126,232,232,169]},{"1058004":[159]},{"1058006":[201,126,232,232,165,14,24,105,8]},{"1058016":[133,14,100,10,165,12,201,10]},{"1058025":[144,8,56,233,10]},{"1058031":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,197,165,133,14,165,14,159]},{"1058055":[201,126,232,232,169,56]},{"1058062":[159]},{"1058064":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1058078":[201,126,232,232,169]},{"1058085":[159]},{"1058087":[201,126,232,232,165,14,24,105,8]},{"1058097":[133,14,100,10,165,12,201,1]},{"1058106":[144,8,56,233,1]},{"1058112":[230,10,128,243,133,12,192,255,208,10,160]},{"1058124":[165,14,24,121,197,165,133,14,165,14,159]},{"1058136":[201,126,232,232,169,56]},{"1058143":[159]},{"1058145":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1058159":[201,126,232,232,169]},{"1058166":[159]},{"1058168":[201,126,232,232,165,14,24,105,8]},{"1058178":[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]},{"1058249":[252,255,248,255,218,90,8,194,48,162]},{"1058261":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058276":[208,13,175,153,80,127,41,255]},{"1058285":[223,3,200,48,208,44,226,32,191]},{"1058295":[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]},{"1058337":[200,48,41,255]},{"1058342":[201,255]},{"1058345":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058368":[226,32,162]},{"1058373":[160]},{"1058376":[152,207,96,80,127,144,3,130,172]},{"1058386":[191,1,201,48,201,255,208,3,130,161]},{"1058397":[191]},{"1058399":[201,48,207,80,80,127,240,3,130,137]},{"1058410":[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]},{"1058447":[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,121,167,160,170,32,152,167,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]},{"1058578":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058592":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,211,172,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,212,172,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,213,172,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]},{"1058685":[128]},{"1058690":[1]},{"1058693":[169,175,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,39,145,160,34,45,213]},{"1058732":[194,16,96,32,179,167,107,173]},{"1058741":[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]},{"1058771":[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]},{"1058808":[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]},{"1058949":[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]},{"1059114":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059135":[175,81,80,127,201,255,208,3,76,44,169,139,75,171,34,231,244,30,32,122,169,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]},{"1059186":[32,151,173,32,151,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059209":[201,2,208,3,130,227]},{"1059216":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059231":[165,26,41,16,240,12,189,14,170,159]},{"1059242":[201,126,232,224,16,144,244,189,30,170,159]},{"1059254":[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]},{"1059313":[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]},{"1059344":[248,255]},{"1059349":[2]},{"1059354":[16]},{"1059357":[2]},{"1059360":[248,255]},{"1059365":[2]},{"1059370":[16,64]},{"1059373":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,99,133,8,169,170,133,9,128,8,169,107,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059431":[70,10]},{"1059434":[2]},{"1059439":[70,74]},{"1059442":[2,218,162]},{"1059446":[165,26,41,64,240,12,189,229,170,159]},{"1059457":[201,126,232,224,16,144,244,189,245,170,159]},{"1059469":[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]},{"1059528":[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]},{"1059559":[248,255,132]},{"1059564":[2]},{"1059569":[16]},{"1059572":[2]},{"1059575":[248,255,132]},{"1059580":[2]},{"1059585":[16,64]},{"1059588":[2,218,162]},{"1059592":[165,26,41,64,240,12,189,119,171,159]},{"1059603":[201,126,232,224,16,144,244,189,135,171,159]},{"1059615":[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]},{"1059674":[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]},{"1059705":[248,255,142]},{"1059710":[2]},{"1059715":[16]},{"1059718":[2]},{"1059721":[248,255,142]},{"1059726":[2]},{"1059731":[16,64]},{"1059734":[2,218,90,8,160]},{"1059740":[90,152,74,74,168,175,95,80,127,57,211,172,240,3,122,128,48,122,173,238]},{"1059761":[221,32,15,208,39,32,106,173,32,214,172,34,230,131,6,144,3,32,138,173,32,64,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,236,171,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]},{"1059889":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059905":[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,211,172,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,211,172,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]},{"1060058":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060079":[58,10,168,185,140,174,133]},{"1060087":[122,104,24,113]},{"1060092":[24,105,2]},{"1060096":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060109":[13,194,32,90,200,200,24,113]},{"1060118":[122,72,175,81,80,127,41,128]},{"1060127":[240,7,104,24,105,4]},{"1060134":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060157":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060174":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060187":[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]},{"1060215":[165,35,105]},{"1060219":[133,8,165,32,105,8,133,1,165,33,105]},{"1060231":[133,9,96,218,34]},{"1060237":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060259":[160]},{"1060261":[175,81,80,127,41,3,201,3,208,5,32,200,173,128,4,201,2,208,5,32,200,173,128,4,201,1,208,3,32,200,173,122,250,171,96,175,95,80,127,57,211,172,240,3,130,178]},{"1060308":[90,175,81,80,127,41,3,58,10,168,194,32,185,140,174,133]},{"1060325":[163,1,10,10,168,177]},{"1060332":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060345":[208,8,177]},{"1060349":[143,39,192,126,128,10,177]},{"1060357":[24,105,4]},{"1060361":[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,170,174,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,28,147,160,143,42,192,126,169]},{"1060428":[143,43,192,126,191,82,80,127,34,22,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060454":[143,44,192,126,32,127,175,169,2,218,72,175,97,80,127,170,104,32,54,175,250,175,81,80,127,41,128,208,3,32,173,174,200,232,232,232,232,96,146,174,150,174,158,174,8]},{"1060500":[40]},{"1060502":[240,255,40]},{"1060506":[32]},{"1060508":[40]},{"1060510":[216,255,40]},{"1060514":[8]},{"1060516":[40]},{"1060518":[56]},{"1060520":[40]},{"1060522":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060541":[58,10,168,185,140,174,133]},{"1060549":[185,36,175,133,2,122,90,152,10,10,168,177]},{"1060562":[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,23,164,226,32,133,6,100,7,72,169]},{"1060601":[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,42,175,44,175,48,175]},{"1060651":[255]},{"1060653":[128,128,255]},{"1060657":[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]},{"1060738":[194,32,191,37,192,126,24,105,4]},{"1060748":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060764":[159,47,192,126,191,41,192,126,24,105,16]},{"1060776":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060810":[72,165,2,72,169,16,128,133]},{"1060819":[169,48]},{"1060822":[133,2,169,2]},{"1060827":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,107,72,189,128,14,34,95,150,160,104,107,72,188,128,14,104,34,37,144,160,107,169,8,157,80,15,169]},{"1060874":[143]},{"1060876":[80,127,32,113,176,34,249,149,160,107,72,175]},{"1060889":[80,127,240,6,34,8,176,160,128,7,32,113,176,34,176,150,160,104,107,32,113,176,201,36,208,24,90,160,36,34,72,184,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,72,165,160,201,115,208,6,175,98,227,48,128,12,201,140,208,6,175,99,227,48,128,2,169]},{"1060964":[143,152,192,126,104,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,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]},{"1061270":[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]},{"1061337":[191,162,178,160,197,4,144,3,232,128,245,191,163,178,160,133,6,100,7,194,32,138,10,10,170,191,164,178,160,141,232,80,191,166,178,160,141,234,80,173]},{"1061378":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061396":[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,142,176,173,236,80,10,10,170,189]},{"1061433":[81,56,229,8,157]},{"1061439":[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]},{"1061471":[81,141,228,80,189,2,81,141,230,80,32,142,176,173]},{"1061486":[81,56,229,8,141]},{"1061492":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,138,176,160,141,232,80,173,234,80,239,140,176,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,34,39,145,160,72,165,138,201,3,240,6,34,181,178,160,128,4,34,168,178,160,104,107,34,175,135,160,72,34,249,149,160,169,1,143,51,80,127,143,52,80,127,34,208,178,160,169,235,143]},{"1061634":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061658":[13,165,33,153,32,13,169]},{"1061666":[153,32,15,169,127,153,112,15,107,72,8,34,85,179,160,144,31,156,18,1,156,239,3,169]},{"1061691":[133,93,194,32,165,138,201,48]},{"1061700":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061724":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061737":[128,16,201,48]},{"1061742":[208,11,165,34,201]},{"1061748":[2,144,4,56,130,1]},{"1061755":[24,226,32,107,191,79,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061776":[226,32,34,16,247,8,169,52,145,144,200,191,79,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061811":[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]},{"1061873":[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,93,180,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]},{"1062020":[13,173,219,15,233]},{"1062026":[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]},{"1062065":[13,173,219,15,233]},{"1062071":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062096":[254,127,208,245,169,4,107,34,162,222,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,180,222,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,180,222,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062169":[107,169]},{"1062172":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,142,181,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,142,181,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,142,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,142,181,160,107,218,8,194,32,41,127]},{"1062293":[10,170,191]},{"1062297":[82,127,26,41,255,3,159]},{"1062305":[82,127,170,10,191]},{"1062311":[128,175,40,250,107,218,8,194,48,162]},{"1062323":[191,227,181,160,159]},{"1062329":[82,127,232,232,191,227,181,160,159]},{"1062339":[82,127,232,232,191,227,181,160,159]},{"1062349":[82,127,232,232,191,227,181,160,159]},{"1062359":[82,127,232,232,224,127]},{"1062366":[144,211,40,250,107]},{"1062373":[64]},{"1062375":[128]},{"1062377":[192]},{"1062380":[1,64,1,128,1,192,1]},{"1062388":[2,64,2,128,2,192,2]},{"1062396":[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,3,182,160,175,35,128,48,208,4,34,35,182,160,104,107,72,169]},{"1062498":[143,65,80,127,175,34,128,48,201,1,208,4,34,3,182,160,175,35,128,48,201,1,208,4,34,35,182,160,104,107,72,175,34,128,48,201,2,208,4,34,3,182,160,175,35,128,48,201,2,208,4,34,35,182,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]},{"1062664":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062681":[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]},{"1062752":[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]},{"1062788":[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,215,183,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]},{"1062913":[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]},{"1062939":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062959":[2,156,5,2,169]},{"1062965":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,57,185,72,218,8,175,152,192,126,240,3,130,229]},{"1062996":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063013":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063030":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063047":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063064":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063081":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063098":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063115":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063138":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063155":[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]},{"1063188":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063211":[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]},{"1063243":[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]},{"1063301":[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]},{"1063327":[192,59,208,3,130,96]},{"1063334":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063359":[201,15,1,208,3,130,59]},{"1063367":[201,16,1,208,3,130,51]},{"1063375":[201,28,1,208,3,130,43]},{"1063383":[201,31,1,208,3,130,35]},{"1063391":[201,255]},{"1063394":[208,3,130,27]},{"1063399":[201,20,1,208,3,130,19]},{"1063407":[201,21,1,208,3,130,11]},{"1063415":[201,22,1,208,3,130,3]},{"1063423":[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]},{"1063455":[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]},{"1063608":[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]},{"1063646":[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]},{"1063684":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063702":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063720":[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]},{"1063756":[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]},{"1063794":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063812":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,37,192,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]},{"1063916":[208,9,32,191,190,32,240,190,130,64,2,192,1,208,6,32,191,190,130,54,2,192,2,208,6,32,191,190,130,44,2,192,3,208,6,32,191,190,130,34,2,192,4,208,6,32,240,190,130,24,2,192,5,208,6,32,240,190,130,14,2,192,6,208,6,32,240,190,130,4,2,192,7,144,10,192,14,176,6,32,33,191,130,246,1,192,20,208,9,32,125,190,32,33,191,130,233,1,192,15,144,10,192,23,176,6,32,33,191,130,219,1,192,23,208,6,32,133,191,130,209,1,192,24,144,10,192,26,176,6,32,33,191,130,195,1,192,26,208,9,32,158,190,32,33,191,130,182,1,192,29,208,6,32,33,191,130,172,1,192,27,144,10,192,32,176,6,32,45,191,130,158,1,192,32,208,6,32,173,191,130,148,1,192,33,208,6,32,33,191,130,138,1,192,34,144,10,192,36,176,6,32,201,191,130,124,1,192,36,208,6,32,217,191,130,114,1,192,37,208,6,32,249,191,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,65,192,130,87,1,192,40,208,6,32,65,192,130,77,1,192,41,208,6,32,33,191,130,67,1,192,42,144,10,192,46,176,6,32,33,191,130,53,1,192,49,208,6,32,65,192,130,43,1,192,50,208,6,32,25,192,130,33,1,192,51,208,6,32,87,192,130,23,1,192,55,144,10,192,58,176,6,32,73,191,130,9,1,192,58,144,10,192,60,176,6,32,14,191,130,251]},{"1064252":[192,60,208,6,32,33,191,130,241]},{"1064262":[192,61,208,6,32,33,191,130,231]},{"1064272":[192,62,144,10,192,64,176,6,32,161,191,130,217]},{"1064286":[192,72,208,6,32,33,191,130,207]},{"1064296":[192,73,208,6,32,191,190,130,197]},{"1064306":[192,74,208,9,32,125,190,32,33,191,130,184]},{"1064319":[192,75,208,9,32,92,190,32,45,191,130,171]},{"1064332":[192,76,208,9,32,101,191,32,65,192,130,158]},{"1064345":[192,77,144,10,192,80,176,6,32,101,191,130,144]},{"1064359":[192,80,208,6,32,191,190,130,134]},{"1064369":[192,81,144,10,192,85,176,6,32,101,191,130,120]},{"1064383":[192,88,208,6,32,14,191,130,110]},{"1064393":[192,94,208,6,32,191,190,130,100]},{"1064403":[192,95,208,6,32,240,190,130,90]},{"1064413":[192,96,208,6,32,201,191,130,80]},{"1064423":[192,97,208,6,32,45,191,130,70]},{"1064433":[192,100,144,10,192,102,176,6,32,14,191,130,56]},{"1064447":[192,112,144,10,192,128,176,6,32,87,192,130,42]},{"1064461":[192,128,144,10,192,144,176,6,32,249,191,130,28]},{"1064475":[192,144,144,10,192,160,176,6,32,25,192,130,14]},{"1064489":[192,160,144,10,192,176,176,6,32,217,191,130]},{"1064503":[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,59,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064655":[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,217,191,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,33,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,103,192,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,198,237,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]},{"1065251":[201,2]},{"1065254":[208,14,175,140,243,126,41,192]},{"1065263":[201,192]},{"1065266":[240,79,128,64,201,1]},{"1065273":[208,14,175,142,243,126,41,192]},{"1065282":[201,192]},{"1065285":[240,60,128,45,201,5]},{"1065292":[208,14,175,140,243,126,41,48]},{"1065301":[201,48]},{"1065304":[240,41,128,26,201,13]},{"1065311":[208,16,175,140,243,126,137,4]},{"1065320":[240,12,41,3]},{"1065325":[208,20,128,5,201,16]},{"1065332":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065345":[208,5,169,79,61,128,6,32,146,193,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]},{"1065392":[41,255,239,153,4]},{"1065398":[185,62]},{"1065401":[41,255,239,153,62]},{"1065407":[185,68]},{"1065410":[41,255,239,153,68]},{"1065416":[185,128]},{"1065419":[41,255,239,153,128]},{"1065425":[185,130]},{"1065428":[41,255,239,153,130]},{"1065434":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065455":[41,255,239,153,132]},{"1065461":[185,126]},{"1065464":[41,255,239,153,126]},{"1065470":[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]},{"1065508":[201,144]},{"1065511":[208,3,169,127]},{"1065516":[9]},{"1065518":[36,143,100,199,126,165,5,41,255]},{"1065528":[9]},{"1065530":[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,59,240,160,34,189,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065634":[72,165,2,72,169,16,128,133]},{"1065643":[169,48]},{"1065646":[133,2,169,4]},{"1065651":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,249,149,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,28,175]},{"1065697":[80,127,240,15,189,160,13,34,249,149,160,169]},{"1065710":[143]},{"1065712":[80,127,128,7,189,160,13,34,95,150,160,107,169]},{"1065726":[157,192,13,72,169,1,143]},{"1065734":[80,127,165,93,201,20,240,60,169]},{"1065744":[143]},{"1065746":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065766":[72,165,2,72,169,16,128,133]},{"1065775":[169,48]},{"1065778":[133,2,169,3]},{"1065783":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,104,107,72,90,175]},{"1065808":[80,127,240,6,34,1,195,160,128,7,189,128,14,34,95,150,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]},{"1065851":[72,165,2,72,169,16,128,133]},{"1065860":[169,48]},{"1065863":[133,2,169,4]},{"1065868":[34,67,147,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,141,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]},{"1065926":[143,68,243,126,107,175,123,243,126,41,255]},{"1065938":[201,2]},{"1065941":[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]},{"1065974":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065989":[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]},{"1066025":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066039":[173,91,3,41,1,208,3,130,134]},{"1066049":[90,8,139,75,171,226,48,165,27,240,3,76,196,196,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066086":[129,48,143]},{"1066090":[254,127,34,93,246,29,162]},{"1066098":[165,47,201,4,240,1,232,191,200,196,160,153,80,13,169]},{"1066114":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,202,196,160,41,240,153,16,13,165,35,105]},{"1066148":[153,48,13,165,32,24,105,22,41,240,153]},{"1066160":[13,165,33,105]},{"1066165":[153,32,13,169]},{"1066170":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066187":[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]},{"1066218":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066239":[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,2,153,160,92,53,207,30,175,195,225,29,34,249,149,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066301":[92,82,223,29,175,133,225,29,34,249,149,160,107,165,138,201,129,208,12,169,1,143]},{"1066324":[80,127,175,195,225,29,128,4,175,133,225,29,34,95,150,160,107,72,165,138,201,129,208,14,34,186,143,160,175,96,227,48,143,152,192,126,128,12,34,24,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,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066410":[72,165,2,72,169,64,129,133]},{"1066419":[169,48]},{"1066422":[133,2,169,10]},{"1066427":[34,67,147,164,250,134,2,250,134,1,40,250,34,249,149,160,169,235,143]},{"1066447":[254,127,34,93,246,29,162]},{"1066455":[165,47,201,4,240,1,232,191,52,198,160,153,80,13,169]},{"1066471":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,54,198,160,41,240,153,16,13,165,35,105]},{"1066505":[153,48,13,165,32,24,105,22,41,240,153]},{"1066517":[13,165,33,105]},{"1066522":[153,32,13,169]},{"1066527":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066551":[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]},{"1066630":[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]},{"1066657":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,146,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066696":[72,165,2,72,169,16,128,133]},{"1066705":[169,48]},{"1066708":[133,2,169,5]},{"1066713":[34,67,147,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]},{"1066767":[201,35,208,6,160,93,92,71,213]},{"1066777":[201,72,208,6,160,96,92,71,213]},{"1066787":[201,36,176,6,160,91,92,71,213]},{"1066797":[201,55,176,6,160,92,92,71,213]},{"1066807":[201,57,176,6,160,93,92,71,213]},{"1066817":[160,50,92,71,213]},{"1066823":[192,9,48]},{"1066827":[96]},{"1066829":[144]},{"1066831":[192]},{"1066834":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066858":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066876":[9,48,9,96,9,144,9,240,9]},{"1066887":[240]},{"1066889":[32,10,80,10,96,6]},{"1066896":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1066918":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1066934":[6,48,6]},{"1066938":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1066954":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066975":[127,71,199,160,107,165]},{"1066982":[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]},{"1067013":[132,175,24,105]},{"1067018":[136,133]},{"1067021":[226,32,169,175,133,2,34,233,225,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,113,218,160,162,1,128,2,162]},{"1067079":[171,40,122,104,133,2,104,133,1,104,133]},{"1067091":[96,218,173,216,2,34,31,226,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067574":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,113,218,160,130,84,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,113,218,160,130,40,1,201,109,208,7,34,232,184,164,130,29,1,201,110,208,7,34,232,184,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067821":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067838":[56,233,8,170,169,1,224]},{"1067846":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067869":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067888":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1067905":[56,233,8,170,169,1,224]},{"1067913":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1067936":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067955":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1067972":[56,233,8,170,169,1,224]},{"1067980":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1068003":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068025":[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,19]},{"1068057":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068076":[250,173,233,2,201,1,107,72,218,34,191,237,160,173,216,2,72,175,152,192,126,208,12,104,32,32,218,141,216,2,32,246,217,128,1,104,201,22,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,16,2,201,43,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,249,1,201,44,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,226,1,201,45,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,203,1,201,60,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,180,1,201,61,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,157,1,201,72,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,134,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,116,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,92,1,201]},{"1068317":[208,8,169,73,141,216,2,130,80,1,201,1,208,8,169,80,141,216,2,130,68,1,201,2,208,8,169,2,141,216,2,130,56,1,169,3,141,216,2,130,48,1,201,95,208,122,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,18,1,175,22,244,126,41,192,208,28,169,4,141,216,2,175,152,192,126,240,3,130,252]},{"1068411":[175,22,244,126,24,105,64,143,22,244,126,130,238]},{"1068425":[201,64,208,28,169,5,141,216,2,175,152,192,126,240,3,130,220]},{"1068443":[175,22,244,126,24,105,64,143,22,244,126,130,206]},{"1068457":[169,6,141,216,2,175,152,192,126,240,3,130,192]},{"1068471":[175,22,244,126,24,105,64,143,22,244,126,130,178]},{"1068485":[201,96,208,40,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,154]},{"1068509":[201]},{"1068511":[208,8,169,34,141,216,2,130,142]},{"1068521":[169,35,141,216,2,130,134]},{"1068529":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,116]},{"1068547":[169,28,141,216,2,130,108]},{"1068555":[201,100,208,40,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,82]},{"1068581":[201]},{"1068583":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,201,101,208,18,175,152,192,126,208,10,175,142,243,126,9,32,143,142,243,126,128,194,201,98,208,19,34,9,217,160,141,216,2,235,32,148,217,169,255,143,144,80,127,128,19,201,99,208,15,34,197,217,160,141,216,2,169,255,143,144,80,127,128]},{"1068663":[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]},{"1068918":[4,4,4,4,4,5]},{"1068930":[4]},{"1068932":[4]},{"1068935":[4]},{"1068947":[4]},{"1068953":[5]},{"1068963":[4,4,4]},{"1068977":[4,4]},{"1068980":[4]},{"1068984":[4]},{"1068991":[4]},{"1069000":[4]},{"1069071":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069151":[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]},{"1069200":[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]},{"1069239":[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,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]},{"1069396":[2,2]},{"1069404":[2,2,2,2,2,2]},{"1069411":[2]},{"1069413":[2,2]},{"1069416":[2,2,2,2,2,2,2,2,2,2,2]},{"1069428":[2,2,2,2,2]},{"1069434":[2,2,2,2,2,2,2,2,2]},{"1069446":[2,2,2,2,2,2,2,2,2,2,2]},{"1069459":[2]},{"1069461":[2,2,2]},{"1069465":[2,2,2,2,2,2]},{"1069472":[2,2,2,2,2,2,2,2]},{"1069481":[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]},{"1069567":[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]},{"1069753":[4,4,4]},{"1069759":[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,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,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]},{"1070672":[128]},{"1070674":[64]},{"1070676":[32]},{"1070678":[16]},{"1070680":[8]},{"1070682":[4]},{"1070684":[2]},{"1070686":[1,128]},{"1070689":[64]},{"1070691":[32]},{"1070693":[16]},{"1070695":[8]},{"1070697":[4]},{"1070928":[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,32,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,158,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,158,216,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]},{"1071382":[160,48,107,162]},{"1071387":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071400":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071414":[168,152,32,112,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071434":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071458":[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]},{"1071498":[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]},{"1071535":[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]},{"1071574":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071587":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071610":[191]},{"1071612":[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]},{"1071652":[191]},{"1071654":[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,162]},{"1071699":[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,96,100,17,100,176,92,102,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071762":[13,24,105,3,107,189,32,14,201,136,208,9,32,207,218,201,4,144,1,58,107,32,207,218,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071808":[200,49,74,74,74,74,107,40,191]},{"1071818":[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]},{"1071868":[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]},{"1071902":[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,10,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]},{"1072104":[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]},{"1072159":[143,96,243,126,226,32,34,133,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072185":[165,27,240,121,194,32,165,160,201,14]},{"1072196":[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]},{"1072231":[201,126]},{"1072234":[208,33,165,34,41,255,1,201,104]},{"1072244":[144,60,201,136]},{"1072249":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072269":[201,222]},{"1072272":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072297":[144,7,201,154]},{"1072302":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,22,221,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,22,221,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,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]},{"1072512":[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]},{"1072572":[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,195,221,160,107,143,111,243,126,218,175,67,244,126,208,4,34,213,191,160,34,100,155,160,90,160,24,34,59,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,213,191,160,34,100,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072691":[208,11,40,90,160,24,34,59,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,100,155,160,107,72,175,67,244,126,208,4,34,99,192,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,195,221,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,195,221,160,104,34,168,160,2,107,58,16,8,169]},{"1072947":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1072961":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,195,221,169,1,143]},{"1072987":[80,127,156,70,6,156,66,6,76,195,221,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,99,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073199":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073230":[32,137,64,240,4,92,220,128]},{"1073239":[173]},{"1073241":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073266":[143,155,80,127,92,220,128]},{"1073274":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073293":[173,39,1,205,41,1,208,4,92,220,128]},{"1073305":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073335":[224,255,208,4,92,220,128]},{"1073343":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073359":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073375":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073392":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073405":[142,4,32,156,5,32,156,7,32,191]},{"1073416":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073429":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073465":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073478":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073534":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073547":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073597":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073615":[87,127,107,191]},{"1073620":[18,127,107,156,240,28,156,241,28,169]},{"1073631":[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]},{"1073663":[226,32,183]},{"1073667":[159]},{"1073669":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073688":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073712":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073730":[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]},{"1073756":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073774":[226,32,183]},{"1073778":[159]},{"1073780":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073799":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073819":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073837":[226,32,183]},{"1073841":[159]},{"1073843":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073862":[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]},{"1073893":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073911":[226,32,183]},{"1073915":[159]},{"1073917":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073936":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073956":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073974":[226,32,183]},{"1073978":[159]},{"1073980":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073999":[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]},{"1074028":[133]},{"1074030":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074048":[226,32,183]},{"1074052":[159]},{"1074054":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074073":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074093":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074111":[226,32,183]},{"1074115":[159]},{"1074117":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074136":[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]},{"1074167":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074185":[226,32,183]},{"1074189":[159]},{"1074191":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074210":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074230":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074248":[226,32,183]},{"1074252":[159]},{"1074254":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074273":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074294":[133]},{"1074296":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074314":[226,32,183]},{"1074318":[159]},{"1074320":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074339":[143,148,80,127,226,32,130,213]},{"1074348":[201,128,208,56,169,52,133]},{"1074356":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074374":[226,32,183]},{"1074378":[159]},{"1074380":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074399":[143,148,80,127,226,32,130,153]},{"1074408":[201,144,208,55,169,112,133]},{"1074416":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074434":[226,32,183]},{"1074438":[159]},{"1074440":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074459":[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]},{"1074486":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074504":[226,32,183]},{"1074508":[159]},{"1074510":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074529":[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]},{"1074608":[208,56,169,216,133]},{"1074614":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074632":[226,32,183]},{"1074636":[159]},{"1074638":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074657":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074674":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074692":[226,32,183]},{"1074696":[159]},{"1074698":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074717":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074734":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074752":[226,32,183]},{"1074756":[159]},{"1074758":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074777":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074794":[169,129,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,203,2,201,4,208,56,169,60,133]},{"1074854":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074872":[226,32,183]},{"1074876":[159]},{"1074878":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074897":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074914":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074932":[226,32,183]},{"1074936":[159]},{"1074938":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074957":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1074974":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074992":[226,32,183]},{"1074996":[159]},{"1074998":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075017":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075034":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075052":[226,32,183]},{"1075056":[159]},{"1075058":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075077":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075094":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075112":[226,32,183]},{"1075116":[159]},{"1075118":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075137":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075154":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075172":[226,32,183]},{"1075176":[159]},{"1075178":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075197":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075214":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075232":[226,32,183]},{"1075236":[159]},{"1075238":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075257":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075274":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075292":[226,32,183]},{"1075296":[159]},{"1075298":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075317":[143,148,80,127,226,32,130,235]},{"1075326":[201,12,208,56,169,12,133]},{"1075334":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075352":[226,32,183]},{"1075356":[159]},{"1075358":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075377":[143,148,80,127,226,32,130,175]},{"1075386":[201,13,208,55,169,41,133]},{"1075394":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075412":[226,32,183]},{"1075416":[159]},{"1075418":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075437":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075453":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075471":[226,32,183]},{"1075475":[159]},{"1075477":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075496":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075512":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075530":[226,32,183]},{"1075534":[159]},{"1075536":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075555":[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]},{"1075588":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075603":[171,40,122,250,104,107,34,78,216]},{"1075613":[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]},{"1075677":[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,19,235,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,19,235,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]},{"1075948":[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]},{"1075993":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076017":[226,48,160]},{"1076021":[183]},{"1076023":[201,254,208,39,200,183]},{"1076030":[201,110,208,32,200,183]},{"1076037":[208,27,200,183]},{"1076042":[201,254,208,20,200,183]},{"1076049":[201,107,208,13,200,183]},{"1076056":[201,4,208,6,156,232,28,130,19]},{"1076066":[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]},{"1076094":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076111":[10,10,69,138,41,8]},{"1076118":[240,6,152,24,105,16]},{"1076125":[168,165,35,41,2]},{"1076131":[74,69,138,41,1]},{"1076137":[240,4,152,26,26,168,152,41,255]},{"1076147":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,67,246,160,34,166,170,164,34]},{"1076179":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,80,222,160,107,194,16,34,61,137]},{"1076375":[169,7,141,12,33,175,240,244,126,208,10,34,248,236,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076427":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076507":[191]},{"1076509":[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]},{"1076583":[107,34,120,152,160,34,72,247,160,107,34,235,152,160,34,244,152,160,162,4,107,34,72,247,160,169,20,133,17,107,34,72,247,160,107,34,63,132,160,34,208,152,160,34,195,221,160,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]},{"1076658":[2,107,169]},{"1076662":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,2,153,160,107,169]},{"1076685":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,13,235,160,169]},{"1076707":[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]},{"1076743":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076768":[208,4,169]},{"1076773":[107,201,1]},{"1076777":[208,16,175,197,243,126,41,15]},{"1076786":[201,2]},{"1076789":[176,84,32,143,238,107,201,2]},{"1076798":[208,75,32,143,238,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076822":[107,175,74,128,48,41,255]},{"1076830":[240,43,175,195,242,126,41,32]},{"1076839":[208,34,173,8,3,41,128]},{"1076847":[240,4,169,1]},{"1076852":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076874":[107,169]},{"1076878":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076901":[96,169]},{"1076905":[96,175,76,128,48,41,255]},{"1076913":[240,4,92,90,189,27,224,118]},{"1076922":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1076939":[72,170,191,64,130,48,208,3,130,175]},{"1076950":[58,133]},{"1076953":[10,10,24,101]},{"1076958":[10,10,170,169,22]},{"1076964":[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]},{"1076992":[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]},{"1077035":[137,128]},{"1077038":[240,3,9]},{"1077042":[255,143,106,193,126,191,98,130,48,41,255]},{"1077054":[137,128]},{"1077057":[240,3,9]},{"1077061":[255,143,110,193,126,169]},{"1077069":[56,239,106,193,126,143,108,193,126,169]},{"1077081":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077097":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077115":[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]},{"1077192":[165]},{"1077194":[223]},{"1077196":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077216":[165]},{"1077218":[223]},{"1077220":[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]},{"1077266":[175,74,128,48,41,255]},{"1077273":[240,25,175,93]},{"1077279":[41,255]},{"1077282":[201,20]},{"1077285":[208,13,165,138,41,64]},{"1077292":[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]},{"1077349":[107,104,141,228,2,141,193,15,141,16,7,107,34,122,240,160,34,231,240,160,107,169,14,143,1,40]},{"1077376":[169,4,143,1,40]},{"1077382":[169,13,143,1,40]},{"1077388":[169,14,143,1,40]},{"1077394":[169]},{"1077396":[143,1,40]},{"1077400":[169]},{"1077402":[143,1,40]},{"1077406":[169]},{"1077408":[143,1,40]},{"1077412":[169]},{"1077414":[143,1,40]},{"1077418":[169]},{"1077420":[143,1,40]},{"1077424":[169]},{"1077426":[143,1,40]},{"1077430":[169]},{"1077432":[143,1,40]},{"1077436":[169,1,143,1,40]},{"1077442":[169]},{"1077444":[143,1,40]},{"1077448":[169,1,143,1,40]},{"1077454":[169]},{"1077456":[143,1,40]},{"1077460":[169]},{"1077462":[143,1,40]},{"1077466":[169,10,143,1,40]},{"1077472":[169,13,143,1,40]},{"1077478":[107,72,218,162]},{"1077483":[175]},{"1077485":[40]},{"1077487":[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]},{"1077514":[175]},{"1077516":[40]},{"1077518":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077532":[232,128,235,56,175]},{"1077538":[40]},{"1077540":[72,175]},{"1077543":[40]},{"1077545":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077563":[175]},{"1077565":[40]},{"1077567":[72,175]},{"1077570":[40]},{"1077572":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077592":[40]},{"1077594":[72,175]},{"1077597":[40]},{"1077599":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077619":[40]},{"1077621":[72,175]},{"1077624":[40]},{"1077626":[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]},{"1077711":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077729":[133]},{"1077731":[165,3,41,255]},{"1077736":[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,26,242,160,132,2,100,3,24,101]},{"1077778":[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]},{"1077833":[175]},{"1077835":[40]},{"1077837":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077851":[232,128,235,56,175]},{"1077857":[40]},{"1077859":[72,175]},{"1077862":[40]},{"1077864":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077882":[175]},{"1077884":[40]},{"1077886":[72,175]},{"1077889":[40]},{"1077891":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077911":[40]},{"1077913":[72,175]},{"1077916":[40]},{"1077918":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077938":[40]},{"1077940":[72,175]},{"1077943":[40]},{"1077945":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1077965":[40]},{"1077967":[133,4,175]},{"1077971":[40]},{"1077973":[72,175]},{"1077976":[40]},{"1077978":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1077998":[40]},{"1078000":[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]},{"1078069":[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,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]},{"1078159":[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]},{"1078193":[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]},{"1078292":[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]},{"1078323":[201,2]},{"1078326":[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]},{"1078358":[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,65,246,160,144,10,208,8,175,140,80,127,207,63,246,160,144,114,175,145,129,48,41,255]},{"1078414":[208,24,169,2]},{"1078419":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078443":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078456":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078470":[143,142,80,127,169,1]},{"1078477":[143,126,80,127,128,54,201,2]},{"1078486":[208,24,169,2]},{"1078491":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,113,218,160,194,48,96,175,146,129,48,41,255]},{"1078528":[240,7,169]},{"1078533":[143,126,80,127,175,142,80,127,207,53,246,160,144,10,208,8,175,140,80,127,207,51,246,160,144,53,175,128,80,127,26,201,10]},{"1078567":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078581":[143,128,80,127,175,140,80,127,56,239,51,246,160,143,140,80,127,175,142,80,127,239,53,246,160,143,142,80,127,128,181,175,142,80,127,207,57,246,160,144,10,208,8,175,140,80,127,207,55,246,160,144,53,175,132,80,127,26,201,10]},{"1078642":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078656":[143,132,80,127,175,140,80,127,56,239,55,246,160,143,140,80,127,175,142,80,127,239,57,246,160,143,142,80,127,128,181,175,142,80,127,207,61,246,160,144,10,208,8,175,140,80,127,207,59,246,160,144,53,175,136,80,127,26,201,10]},{"1078717":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078731":[143,136,80,127,175,140,80,127,56,239,59,246,160,143,140,80,127,175,142,80,127,239,61,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]},{"1078839":[16,14]},{"1078843":[60]},{"1078847":[255,255,255,127,175,204,80,127,41,255]},{"1078858":[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]},{"1078929":[240,93,175,145,129,48,41,255]},{"1078938":[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]},{"1079031":[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]},{"1079106":[208,3,32,17,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079136":[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]},{"1079170":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079254":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,84,223,160,34,58,135,1,194,16,166,160,191,210,250,160,226,16,34,156,135]},{"1079364":[86,248,160,87,248,160,228,248,160,113,249,160,254,249,160,104,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079400":[32,126,232,232,159]},{"1079406":[32,126,232,232,159]},{"1079412":[32,126,232,232,159]},{"1079418":[32,126,232,232,162,220,25,159]},{"1079427":[32,126,232,232,169,202,12,159]},{"1079436":[32,126,232,232,169,203,12,159]},{"1079445":[32,126,232,232,169,208,8,159]},{"1079454":[32,126,232,232,162,92,26,159]},{"1079463":[32,126,232,232,169,218,12,159]},{"1079472":[32,126,232,232,169,219,12,159]},{"1079481":[32,126,232,232,169,208,8,159]},{"1079490":[32,126,232,232,162,220,26,159]},{"1079499":[32,126,232,232,159]},{"1079505":[32,126,232,232,159]},{"1079511":[32,126,232,232,159]},{"1079517":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079541":[32,126,232,232,159]},{"1079547":[32,126,232,232,159]},{"1079553":[32,126,232,232,159]},{"1079559":[32,126,232,232,162,156,25,159]},{"1079568":[32,126,232,232,169,202,12,159]},{"1079577":[32,126,232,232,169,203,12,159]},{"1079586":[32,126,232,232,169,208,8,159]},{"1079595":[32,126,232,232,162,28,26,159]},{"1079604":[32,126,232,232,169,218,12,159]},{"1079613":[32,126,232,232,169,219,12,159]},{"1079622":[32,126,232,232,169,208,8,159]},{"1079631":[32,126,232,232,162,156,26,159]},{"1079640":[32,126,232,232,159]},{"1079646":[32,126,232,232,159]},{"1079652":[32,126,232,232,159]},{"1079658":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079682":[32,126,232,232,159]},{"1079688":[32,126,232,232,159]},{"1079694":[32,126,232,232,159]},{"1079700":[32,126,232,232,162,220,9,159]},{"1079709":[32,126,232,232,169,202,12,159]},{"1079718":[32,126,232,232,169,203,12,159]},{"1079727":[32,126,232,232,169,208,8,159]},{"1079736":[32,126,232,232,162,92,10,159]},{"1079745":[32,126,232,232,169,218,12,159]},{"1079754":[32,126,232,232,169,219,12,159]},{"1079763":[32,126,232,232,169,208,8,159]},{"1079772":[32,126,232,232,162,220,10,159]},{"1079781":[32,126,232,232,159]},{"1079787":[32,126,232,232,159]},{"1079793":[32,126,232,232,159]},{"1079799":[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]},{"1080032":[1]},{"1080114":[5]},{"1080116":[4]},{"1080144":[2]},{"1080240":[3]},{"1080338":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080355":[134,1,133,2,32,18,252,176,4,92,83,230]},{"1080368":[169,49,133,2,194,32,169]},{"1080376":[192,133]},{"1080379":[162,128,167]},{"1080383":[141,24,33,230]},{"1080388":[230]},{"1080390":[167]},{"1080392":[141,24,33,230]},{"1080397":[230]},{"1080399":[167]},{"1080401":[141,24,33,230]},{"1080406":[230]},{"1080408":[167]},{"1080410":[141,24,33,230]},{"1080415":[230]},{"1080417":[167]},{"1080419":[141,24,33,230]},{"1080424":[230]},{"1080426":[167]},{"1080428":[141,24,33,230]},{"1080433":[230]},{"1080435":[167]},{"1080437":[141,24,33,230]},{"1080442":[230]},{"1080444":[167]},{"1080446":[141,24,33,230]},{"1080451":[230]},{"1080453":[202,208,181,226,32,92,81,230]},{"1080462":[226,48,175,248,194,126,168,32,18,252,194,48,176,10,162]},{"1080479":[160,64]},{"1080482":[92,104,223]},{"1080486":[162]},{"1080488":[192,160]},{"1080492":[169]},{"1080494":[8,139,84,127,177,171,162]},{"1080502":[8,169]},{"1080505":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,237,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,175,167,160,40,175,67,244,126,41,255]},{"1081469":[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,85,151,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]},{"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,224,234,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,241,234,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,233,151,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,233,151,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,71,131,165,242,137,32,208,13,128,36,32,129,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,224,182,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,157,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,157,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,157,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,157,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,205,177,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,205,177,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194114":[83,127,201,3,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,181,185,164,226,48,169]},{"1194152":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194210":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194268":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,64,185,34,231,244,30,32,128,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,96,133,8,169,185,105]},{"1194325":[133,9,34,117,223,5,34,92,220,6,96]},{"1194338":[247,255,198]},{"1194343":[2]},{"1194348":[200]},{"1194351":[2]},{"1194354":[248,255,198]},{"1194359":[2]},{"1194364":[202,64]},{"1194367":[2,175,103,129,48,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,113,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194425":[84,34,63,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194451":[98,41,110,41,107,41,105,41,127]},{"1194461":[111,41,97,41,106,41,112,41,127]},{"1194471":[112,41,107,41,127]},{"1194477":[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]},{"1194524":[33,218,162,128,142]},{"1194530":[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]},{"1194558":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194575":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194666":[208,33,8,194,48,162]},{"1194674":[224,64]},{"1194677":[176,11,169,127]},{"1194682":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194705":[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]},{"1194752":[240,7,224,2,240,3,130,137]},{"1194761":[130,132]},{"1194764":[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]},{"1194910":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194927":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194943":[224,28]},{"1194946":[176,12,191,193,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194963":[175,211,244,126,41,255]},{"1194970":[58,201,64]},{"1194974":[176,63,10,10,10,10,10,170,192,60]},{"1194985":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195008":[176,11,169,127]},{"1195013":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,72,184,160,122,218,90,8,194,48,162]},{"1195169":[224,16]},{"1195172":[176,12,191,221,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195189":[175,152,192,126,41,255]},{"1195196":[58,201,64]},{"1195200":[176,63,10,10,10,10,10,170,192,48]},{"1195211":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195234":[176,11,169,127]},{"1195239":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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/base2current_extendedmsu.json b/data/base2current_extendedmsu.json new file mode 100644 index 00000000..37053922 --- /dev/null +++ b/data/base2current_extendedmsu.json @@ -0,0 +1 @@ +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,71,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,228,198,160]},{"21847":[34,188,199,160,234]},{"21854":[34,0,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,89,255]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,236,254,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[18,163,160]},{"30994":[148,163,160]},{"31001":[18,163,160]},{"31011":[148,163,160]},{"31046":[12,185,164]},{"31102":[34,127,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[243]},{"50090":[164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,129]},{"51009":[160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,144,185,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,41,191,164]},{"60790":[15,186,164]},{"61077":[182,180,160]},{"61133":[34,238,195,160,234]},{"62723":[34,52,132,160]},{"65511":[34,150,238,160]},{"65607":[162,237,160]},{"65778":[34,24,143,160,234,234]},{"65879":[34,241,193,160,234]},{"65894":[34,31,194,160]},{"66284":[34,66,194,160]},{"66292":[92,178,248,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,152,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,160,186,164,234,234]},{"67934":[249,250,160]},{"68474":[34,13,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[253,250,160]},{"69737":[34,99,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[253,250,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,171,248,160,234]},{"72216":[197,184,164]},{"72241":[34,31,194,160]},{"72246":[154,153,160]},{"73041":[34,150,154,160]},{"73263":[153,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,47,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,155,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]},{"77216":[34,114,250,160,234]},{"78138":[59,249,160]},{"78172":[34,59,186,164,34,127,153,160,234,234]},{"79603":[34,249,184,164]},{"79767":[34,175,186,164]},{"82376":[234,234]},{"82676":[253,250,160]},{"87784":[234,234,234]},{"87892":[34]},{"87894":[248,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,213,239,160]},{"90651":[34,249,236,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[115,191,164]},{"166331":[34,150,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[249,180,160]},{"173058":[249,180,160]},{"173307":[249,180,160]},{"173320":[249,180,160]},{"183384":[34,104,250,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,150,154,160]},{"187902":[34,173,154,160]},{"188153":[0]},{"188234":[35,237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,132,151,160]},{"188959":[34,36,236,160,128,13]},{"189655":[34,142,195,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[58,191,164]},{"191439":[34,171,196,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,191,196,160,234,234]},{"192037":[34,173,154,160]},{"192083":[34,97,143,160,234,234]},{"192095":[34,219,194,160,234]},{"192121":[43,195,160]},{"192140":[34,64,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[185,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,83,143,160]},{"192893":[34,173,154,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,150,154,160]},{"193025":[253,143,160]},{"193033":[34,150,154,160]},{"193140":[34,168,178,160]},{"193157":[34,161,178,160]},{"193440":[34,118,219,160]},{"193472":[185,235,160]},{"193546":[34,118,219,160]},{"193578":[129,235,160]},{"193854":[34,106,143,160]},{"193859":[32]},{"193888":[107,194,160]},{"194141":[34,67,195,160,234,234,234,234,234]},{"194177":[34,185,194,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,36,236,160]},{"195327":[34,17,143,160,240,2,96,234]},{"195539":[34,145,198,160]},{"195589":[245,175,160]},{"195710":[34,11,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[206,175,160]},{"195909":[216,175,160]},{"196477":[34,173,154,160]},{"196497":[34,150,154,160]},{"197750":[66,192,160]},{"198721":[34,88,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,54,143,160]},{"199659":[34,172,165,160,96,234]},{"199950":[34,90,143,160]},{"199964":[151,175,160]},{"199993":[34,226,175,160]},{"200070":[34,40,143,160]},{"200470":[34,33,143,160]},{"200845":[34,47,143,160,201]},{"200851":[240]},{"200853":[34,47,143,160]},{"200858":[8]},{"200893":[34,54,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,23,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[63,143,160]},{"208994":[34,54,143,160,234,234]},{"209010":[139]},{"209098":[226,143,160]},{"209199":[41,247]},{"210057":[92,170,219,160,234,234,234,234]},{"210164":[133,143,160]},{"211413":[199,143,160]},{"212333":[77,191,164]},{"212610":[96,191,164]},{"213139":[35,188,164]},{"213169":[147,133,160]},{"214205":[34,66,180,160]},{"214972":[212,179,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,92,185,164]},{"217579":[34,228,192,160]},{"224597":[34,118,218,160]},{"224693":[34,138,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,152,219,160,234]},{"226304":[34,203,218,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,121,238,160]},{"229634":[34,125,189,164]},{"230816":[198,178,160]},{"230955":[198,178,160]},{"233256":[197]},{"233258":[160]},{"233266":[34,165,128,160]},{"233297":[34,130,238,160,234]},{"233987":[98,184,164]},{"234731":[34,191,184,164]},{"234747":[34,141,238,160]},{"235953":[34,35,133,160,144,3]},{"236024":[18,204,160]},{"236047":[196,192,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[107,197,160]},{"238498":[34,4,196,160,128,3]},{"238562":[34,47,198,160,240,4,234]},{"238751":[34,12,220,160]},{"238964":[34,12,220,160]},{"239190":[34,12,220,160]},{"239964":[85,186,164]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,236,218,160]},{"241165":[34,236,218,160]},{"241175":[34,235,128,164]},{"241294":[34,236,218,160]},{"241304":[34,235,128,164]},{"241814":[34,236,218,160,24,125,139,176]},{"241869":[30,236,160]},{"241877":[34,236,218,160,24,125,139,176]},{"242942":[34,146,236,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,212,185,164,234]},{"243067":[234,234,34,59,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,10,219,160,234]},{"250478":[34,64,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,127,244,160,234]},{"273608":[34,62,182,160,76,230,172]},{"275716":[34,34,182,160,234]},{"276202":[34,95,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,249,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[221,133,160,92,220,238,160,234,234]},{"279880":[92,18,192,164]},{"280037":[34,178,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[30,236,160]},{"280106":[92,76,226,160,234]},{"280265":[46,210,160]},{"280287":[46,209,160]},{"280314":[46,210,160]},{"280335":[34,94,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,222,193,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,236,218,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,51,200,160,234]},{"296453":[92,134,191,164,234]},{"296466":[46,211]},{"296471":[47,211]},{"296480":[46,213]},{"296488":[46,211]},{"296493":[47,211]},{"296502":[46,213,34,0,128,160]},{"296583":[34,150,154,160]},{"296619":[46,214]},{"296810":[62,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[94,206]},{"297052":[78,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,230,225,160,234]},{"297144":[46,209]},{"297200":[94,206]},{"297225":[78,207]},{"297263":[47,215]},{"297292":[34,166,194,160]},{"297309":[54,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,36,192,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,142,223,160]},{"324619":[34,175,152,160]},{"324675":[34,190,185,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,234,236,160,34,166,185,164,234,234,234,234,234,234]},{"324996":[34,47,194,160]},{"325098":[169,2,0,234]},{"325131":[34,26,237,160]},{"325203":[34,163,175,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":[178,238,160]},{"342245":[34,59,132,160,34,39,185,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,235,249,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,173,154,160]},{"344119":[34,173,154,160]},{"344185":[34,173,154,160]},{"344248":[34,173,154,160]},{"344312":[34,173,154,160]},{"344375":[34,173,154,160]},{"344441":[34,173,154,160]},{"344499":[34,173,154,160]},{"344565":[34,173,154,160]},{"344623":[34,173,154,160]},{"344689":[34,173,154,160]},{"344747":[34,173,154,160]},{"344813":[34,173,154,160]},{"344871":[34,173,154,160]},{"344937":[34,173,154,160]},{"345406":[34,203,153,160]},{"345531":[34,222,153,160,96]},{"345560":[34,222,153,160,96]},{"393133":[243]},{"393135":[164]},{"409856":[34,159,226,160]},{"410028":[94,255,161]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[111,238,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,198,236,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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":[179,244,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,173,154,160]},{"449502":[34,118,186,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,216,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,246,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,195,244,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,187,154,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,14,155,160]},{"450360":[34,122,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,230,183,160,234]},{"450492":[34,238,154,160,234,234,234]},{"450861":[34,252,183,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,129,155,160,234]},{"452559":[34,111,155,160,234]},{"452581":[34,147,155,160,234]},{"452634":[96]},{"453064":[34,174,159,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,252,192,160,234,234,76,230,236]},{"453867":[34,165,155,160,234]},{"453892":[34,183,155,160]},{"454092":[34,32,155,160,234,234,234,234,234]},{"454233":[34,32,155,160,234,234,234,234,234]},{"454256":[34,100,194,160,234]},{"454282":[34,32,155,160,234,234,234,234,234]},{"454459":[34,32,155,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,243,131,160]},{"457344":[34,177,153,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,87,216,160]},{"457513":[34,125,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,170,195,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,218,236,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,176,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[170,234,160]},{"487403":[169,2,0,234]},{"487935":[34,216,226,160]},{"488156":[34,216,226,160]},{"488213":[34,216,226,160]},{"488242":[34,216,226,160]},{"488309":[34,216,226,160]},{"488340":[34,216,226,160]},{"488721":[34,216,226,160]},{"489560":[34,216,226,160]},{"490022":[34,216,226,160]},{"490060":[34,216,226,160]},{"490164":[34,216,226,160]},{"490184":[34,216,226,160]},{"490209":[34,216,226,160]},{"490257":[34,216,226,160]},{"490438":[34,232,226,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,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,214,240,160]},{"900244":[34,42,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,33,241,160,234]},{"900437":[92,187,239,160,234]},{"900447":[34,122,248,160,234,234,234]},{"900458":[34,249,184,164]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,99,241,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,16,235,160,96]},{"954852":[85,181,160]},{"955117":[239,234,160]},{"955529":[81,181,160]},{"962925":[46,181,160]},{"962951":[46,181,160]},{"963167":[46,181,160]},{"963214":[46,181,160]},{"965041":[46,181,160]},{"965069":[46,181,160]},{"965214":[46,181,160]},{"965298":[46,181,160]},{"965316":[46,181,160]},{"967797":[34,150,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,176,179,160]},{"972824":[253,180,160]},{"972834":[253,180,160]},{"972851":[253,180,160]},{"974665":[92,15,197,160,234]},{"974706":[68,197,160]},{"974722":[41,197,160]},{"975106":[34,113,143,160]},{"975132":[34,113,143,160]},{"975265":[34,32,197,160,234,234]},{"975332":[34,6,197,160,234,234]},{"975401":[255]},{"976357":[42,181,160]},{"976423":[42,181,160]},{"978658":[26,181,160]},{"979078":[34,138,219,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":[158,180,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,226,195,160]},{"983466":[26,181,160]},{"983651":[26,181,160]},{"988539":[38,181,160]},{"988657":[38,181,160]},{"988668":[38,181,160]},{"988874":[38,181,160]},{"988902":[38,181,160]},{"989142":[38,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[30,181,160]},{"999246":[34,181,160]},{"999265":[34,181,160]},{"999359":[34,181,160]},{"999574":[34,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,220,196,160]},{"1003229":[34,150,154,160]},{"1003277":[34,150,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[1,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[1,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,20,245,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,24,143,160,234,234]},{"1010175":[159,143,160]},{"1011427":[34,30,169,160,96,234]},{"1011808":[34,154,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,39,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,145,184,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,205,133,160,168,34,245,133,160,34,87,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,10,179,160,122,250,107,218,90,34,66,192,160,188,128,14,208,5,34,194,138,160,168,128,186,8,34,28,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,22,149,160,144,8,189,96,14,9,32,157,96,14,104,34,95,150,160,34,92,220,6,122,104,40,107,8,34,28,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,185,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,245,140,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,245,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,17,169]},{"1050024":[143]},{"1050026":[80,127,34,205,133,160,157,128,14,34,249,149,160,104,107,72,169]},{"1050044":[143]},{"1050046":[80,127,34,194,138,160,157,128,14,34,249,149,160,104,107,165,27,240,7,34,18,134,160,130,4]},{"1050072":[34,175,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050097":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050114":[208,11,175,22,244,126,9,1]},{"1050123":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050138":[208,50,175,135,128,48,208,6,175]},{"1050148":[128,48,128,35,218,8,194,48,165]},{"1050158":[72,165,2,72,169]},{"1050164":[128,133]},{"1050167":[169,48]},{"1050170":[133,2,169]},{"1050175":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050193":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050213":[72,165,2,72,169]},{"1050219":[128,133]},{"1050222":[169,48]},{"1050225":[133,2,169,1]},{"1050230":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050248":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050268":[72,165,2,72,169]},{"1050274":[128,133]},{"1050277":[169,48]},{"1050280":[133,2,169,2]},{"1050285":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050300":[201,27,1,208,108,165,34,235,41,1]},{"1050311":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050331":[72,165,2,72,169]},{"1050337":[128,133]},{"1050340":[169,48]},{"1050343":[133,2,169,3]},{"1050348":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050363":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050381":[72,165,2,72,169]},{"1050387":[128,133]},{"1050390":[169,48]},{"1050393":[133,2,169,4]},{"1050398":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050413":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050436":[72,165,2,72,169]},{"1050442":[128,133]},{"1050445":[169,48]},{"1050448":[133,2,169,5]},{"1050453":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050468":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050491":[72,165,2,72,169]},{"1050497":[128,133]},{"1050500":[169,48]},{"1050503":[133,2,169,6]},{"1050508":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050523":[201,135]},{"1050526":[208,7,175,98,129,48,130,3]},{"1050535":[169,23]},{"1050538":[41,255]},{"1050541":[40,107,8,194,32,165,138,201,3]},{"1050551":[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]},{"1050578":[72,165,2,72,169,64,129,133]},{"1050587":[169,48]},{"1050590":[133,2,169]},{"1050595":[34,67,147,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]},{"1050628":[72,165,2,72,169,16,128,133]},{"1050637":[169,48]},{"1050640":[133,2,169,6]},{"1050645":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050663":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050683":[72,165,2,72,169,64,129,133]},{"1050692":[169,48]},{"1050695":[133,2,169,1]},{"1050700":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050718":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050738":[72,165,2,72,169,64,129,133]},{"1050747":[169,48]},{"1050750":[133,2,169,2]},{"1050755":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050773":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050793":[72,165,2,72,169,64,129,133]},{"1050802":[169,48]},{"1050805":[133,2,169,10]},{"1050810":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050828":[208,107,165,34,201]},{"1050834":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050855":[72,165,2,72,169,64,129,133]},{"1050864":[169,48]},{"1050867":[133,2,169,3]},{"1050872":[34,67,147,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]},{"1050905":[72,165,2,72,169,16,128,133]},{"1050914":[169,48]},{"1050917":[133,2,169,7]},{"1050922":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050940":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050960":[72,165,2,72,169,64,129,133]},{"1050969":[169,48]},{"1050972":[133,2,169,4]},{"1050977":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050995":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051015":[72,165,2,72,169,64,129,133]},{"1051024":[169,48]},{"1051027":[133,2,169,5]},{"1051032":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051050":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051070":[72,165,2,72,169,64,129,133]},{"1051079":[169,48]},{"1051082":[133,2,169,6]},{"1051087":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051102":[201,74]},{"1051105":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051125":[72,165,2,72,169,64,129,133]},{"1051134":[169,48]},{"1051137":[133,2,169,6]},{"1051142":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051157":[201,91]},{"1051160":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051180":[72,165,2,72,169,64,129,133]},{"1051189":[169,48]},{"1051192":[133,2,169,7]},{"1051197":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051212":[201,104]},{"1051215":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051235":[72,165,2,72,169,64,129,133]},{"1051244":[169,48]},{"1051247":[133,2,169,8]},{"1051252":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051267":[201,129]},{"1051270":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051290":[72,165,2,72,169,64,129,133]},{"1051299":[169,48]},{"1051302":[133,2,169,9]},{"1051307":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051322":[169,23]},{"1051325":[41,255]},{"1051328":[40,107,8,194,32,165,160,201,200]},{"1051338":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051358":[72,165,2,72,169,80,129,133]},{"1051367":[169,48]},{"1051370":[133,2,169]},{"1051375":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051393":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051413":[72,165,2,72,169,80,129,133]},{"1051422":[169,48]},{"1051425":[133,2,169,1]},{"1051430":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051448":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051468":[72,165,2,72,169,80,129,133]},{"1051477":[169,48]},{"1051480":[133,2,169,2]},{"1051485":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051503":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051523":[72,165,2,72,169,80,129,133]},{"1051532":[169,48]},{"1051535":[133,2,169,3]},{"1051540":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051558":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051578":[72,165,2,72,169,80,129,133]},{"1051587":[169,48]},{"1051590":[133,2,169,4]},{"1051595":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051613":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051633":[72,165,2,72,169,80,129,133]},{"1051642":[169,48]},{"1051645":[133,2,169,5]},{"1051650":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051665":[201,172]},{"1051668":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051688":[72,165,2,72,169,80,129,133]},{"1051697":[169,48]},{"1051700":[133,2,169,6]},{"1051705":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051720":[201,222]},{"1051723":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051743":[72,165,2,72,169,80,129,133]},{"1051752":[169,48]},{"1051755":[133,2,169,7]},{"1051760":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051775":[201,144]},{"1051778":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051798":[72,165,2,72,169,80,129,133]},{"1051807":[169,48]},{"1051810":[133,2,169,8]},{"1051815":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051830":[201,164]},{"1051833":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051853":[72,165,2,72,169,80,129,133]},{"1051862":[169,48]},{"1051865":[133,2,169,9]},{"1051870":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051885":[169,62]},{"1051888":[41,255]},{"1051891":[40,107,194,32,165,160,201,200]},{"1051900":[208,4,56,130,82]},{"1051906":[201,51]},{"1051909":[208,4,56,130,73]},{"1051915":[201,7]},{"1051918":[208,4,56,130,64]},{"1051924":[201,90]},{"1051927":[208,4,56,130,55]},{"1051933":[201,6]},{"1051936":[208,4,56,130,46]},{"1051942":[201,41]},{"1051945":[208,4,56,130,37]},{"1051951":[201,172]},{"1051954":[208,4,56,130,28]},{"1051960":[201,222]},{"1051963":[208,4,56,130,19]},{"1051969":[201,144]},{"1051972":[208,4,56,130,10]},{"1051978":[201,164]},{"1051981":[208,4,56,130,1]},{"1051987":[24,226,32,107,90,165,27,208,3,130,230]},{"1051999":[8,194,32,165,160,201,135]},{"1052007":[208,7,175,58,227,48,130,137,1,201,200]},{"1052019":[208,7,175,62,227,48,130,125,1,201,51]},{"1052031":[208,7,175,63,227,48,130,113,1,201,7]},{"1052043":[208,7,175,64,227,48,130,101,1,201,90]},{"1052055":[208,7,175,65,227,48,130,89,1,201,6]},{"1052067":[208,7,175,66,227,48,130,77,1,201,41]},{"1052079":[208,7,175,67,227,48,130,65,1,201,172]},{"1052091":[208,7,175,68,227,48,130,53,1,201,222]},{"1052103":[208,7,175,69,227,48,130,41,1,201,144]},{"1052115":[208,7,175,70,227,48,130,29,1,201,164]},{"1052127":[208,7,175,71,227,48,130,17,1,201,225]},{"1052139":[208,7,175,72,227,48,130,5,1,201,226]},{"1052151":[208,7,175,73,227,48,130,249]},{"1052160":[201,234]},{"1052163":[208,7,175,74,227,48,130,237]},{"1052172":[201,27,1,208,22,165,34,235,41,1]},{"1052183":[208,7,175,75,227,48,130,217]},{"1052192":[175,76,227,48,130,210]},{"1052199":[201,38,1,208,7,175,77,227,48,130,198]},{"1052211":[201,39,1,208,44,175,78,227,48,130,186]},{"1052223":[169]},{"1052226":[130,180]},{"1052229":[8,194,32,165,138,201,3]},{"1052237":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052253":[175,59,227,48,130,149]},{"1052260":[201,5]},{"1052263":[208,7,175,80,227,48,130,137]},{"1052272":[201,40]},{"1052275":[208,7,175,81,227,48,130,125]},{"1052284":[201,42]},{"1052287":[208,7,175,61,227,48,130,113]},{"1052296":[201,48]},{"1052299":[208,21,165,34,201]},{"1052305":[2,176,7,175,82,227,48,130,94]},{"1052315":[175,60,227,48,130,87]},{"1052322":[201,53]},{"1052325":[208,7,175,83,227,48,130,75]},{"1052334":[201,59]},{"1052337":[208,7,175,84,227,48,130,63]},{"1052346":[201,66]},{"1052349":[208,7,175,85,227,48,130,51]},{"1052358":[201,74]},{"1052361":[208,7,175,85,227,48,130,39]},{"1052370":[201,91]},{"1052373":[208,7,175,86,227,48,130,27]},{"1052382":[201,104]},{"1052385":[208,7,175,87,227,48,130,15]},{"1052394":[201,129]},{"1052397":[208,7,175,88,227,48,130,3]},{"1052406":[169]},{"1052409":[41,255]},{"1052412":[40,143,152,192,126,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]},{"1052770":[72,165,2,72,169,16,128,133]},{"1052779":[169,48]},{"1052782":[133,2,169,3]},{"1052787":[34,67,147,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]},{"1052858":[72,165,2,72,169,16,128,133]},{"1052867":[169,48]},{"1052870":[133,2,169]},{"1052875":[34,67,147,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]},{"1052917":[72,165,2,72,169,16,128,133]},{"1052926":[169,48]},{"1052929":[133,2,169,1]},{"1052934":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052956":[160,70,226,32,143,152,192,126,40,104,107,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,48,218,207,150,128,48,144,10,104,175,151,128,48,34,39,145,160,107,104,218,139,75,171,170,191,28,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,232,216,160,76,39,145,201,251,208,7,34,164,217,160,76,39,145,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,39,145,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,39,145,160,107,201]},{"1053123":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,39,145,160,107,201]},{"1053178":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,14,175,64,243,126,201]},{"1053203":[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]},{"1053261":[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]},{"1053300":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,48,218,207,150,128,48,144,10,104,175,151,128,48,34,28,147,160,107,104,218,139,75,171,170,191,22,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,28,147,160,107,201]},{"1053560":[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,28,147,160,107,201]},{"1053615":[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,28,147,160,107,201]},{"1053655":[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,232,216,160,76,28,147,201,251,208,7,34,164,217,160,76,28,147,107]},{"1053719":[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]},{"1053757":[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]},{"1053806":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053824":[8,8,8]},{"1053830":[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,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,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,48,218,207,150,128,48,144,11,175,151,128,48,34,22,149,160,130,128]},{"1054029":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,22,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,22,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,22,149,160,128,37,201,98,208,6,34,232,216,160,128,8,201,99,208,4,34,164,217,160,162]},{"1054140":[224,36,176,12,223,209,149,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,32,11,150,34,39,145,160,34,45,213]},{"1054215":[122,250,104,107,72,8,72,194,32,169]},{"1054227":[143,37,192,126,143,39,192,126,169]},{"1054237":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,28,147,160,143,42,192,126,143,50,192,126,104,34,22,149,160,176,2,128,27,194,32,169]},{"1054278":[143,44,192,126,143,51,192,126,169]},{"1054288":[8,143,46,192,126,169]},{"1054295":[52,143,48,192,126,40,104,96,34,22,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]},{"1054364":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,22,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]},{"1054445":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054475":[169]},{"1054478":[143,66,80,127,128,6,162,64,45,160,2]},{"1054490":[104,107,32,69,151,176,35,194,32,165,226,72,56,233,15]},{"1054506":[133,226,165,232,72,56,233,15]},{"1054515":[133,232,226,32,32,69,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054547":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054567":[13,133]},{"1054570":[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]},{"1054605":[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]},{"1054647":[144,8,230,5,56,233,100]},{"1054655":[128,243,201,10]},{"1054660":[144,8,230,6,56,233,10]},{"1054668":[128,243,201,1]},{"1054673":[144,8,230,7,56,233,1]},{"1054681":[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,255,151,127,255,151,160,171,107]},{"1054720":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054738":[16,41,127]},{"1054742":[157,2,16,232,232,104,10,41,255,127,9]},{"1054754":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054775":[16,169,1,133,20,194,32,107,218,174]},{"1054786":[16,41,127]},{"1054790":[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]},{"1054832":[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]},{"1054879":[143,109,243,126,169]},{"1054885":[143,1,80,127,40,175,109,243,126,107,162]},{"1054897":[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]},{"1054923":[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]},{"1054950":[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,17,153,160,107,72,173]},{"1054996":[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]},{"1055026":[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]},{"1055100":[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]},{"1055161":[143,23,192,126,175,139,243,126,107,169]},{"1055172":[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,129,154,160,170,191,104,243,126,31,20,244,126,250,63,139,154,160,208,3,130,98]},{"1055249":[191,118,154,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,132,154,160,170,191,104,243,126,31,20,244,126,250,63,143,154,160,208,3,130,44]},{"1055303":[191,122,154,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]},{"1055363":[1,1]},{"1055368":[1]},{"1055370":[1,32,32,16]},{"1055375":[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]},{"1055428":[240,5,169,8]},{"1055433":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055446":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055468":[2,107,175,19,130,48,41,255]},{"1055477":[240,5,169,8]},{"1055482":[128,7,175,72,128,48,41,255]},{"1055491":[24,101,234,48,3,169]},{"1055499":[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]},{"1055526":[201,255]},{"1055529":[208,1,107,175,22,244,126,41,32]},{"1055539":[240,4,169]},{"1055544":[107,173,12,4,41,255]},{"1055551":[201,255]},{"1055554":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055578":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,215,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055610":[107,169,136,21,133]},{"1055616":[107,175,69,128,48,208,6,169,16,22,133]},{"1055628":[107,169,144,21,133]},{"1055634":[107,175,69,128,48,208,6,169,24,22,133]},{"1055646":[107,169,152,21,133]},{"1055652":[107,175,69,128,48,208,6,169,32,22,133]},{"1055664":[107,169,160,21,133]},{"1055670":[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]},{"1055762":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055776":[144,240,175,22,244,126,41,32]},{"1055785":[240,3,130,200,1,175,69,128,48,41,1]},{"1055797":[208,3,130,231]},{"1055802":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055824":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055841":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055858":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055875":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055892":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055909":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055926":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055943":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055960":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1055977":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1055994":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056011":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056028":[141,165,22,194,32,175,69,128,48,41,2]},{"1056040":[208,3,130,201]},{"1056045":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056058":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056073":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056088":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056103":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056118":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056133":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056148":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056163":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056178":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056193":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056208":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056223":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056238":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056253":[208,3,130,170,1,175,69,128,48,41,4]},{"1056265":[208,3,130,201]},{"1056270":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056283":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056298":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056313":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056328":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056343":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056358":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056373":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056388":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056403":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056418":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056433":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056448":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056463":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056478":[208,3,130,201]},{"1056483":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056496":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056511":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056526":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056541":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056556":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056571":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056586":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056601":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056616":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056631":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056646":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056661":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056676":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056695":[191,246,160,160,157,234,18,191,10,161,160,157,42,19,191,30,161,160,157,106,19,191,50,161,160,157,170,19,191,70,161,160,157,234,19,191,90,161,160,157,42,20,191,110,161,160,157,106,20,191,130,161,160,157,170,20,191,150,161,160,157,234,20,232,232,224,20]},{"1056763":[144,186,175,116,243,126,41,4]},{"1056772":[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]},{"1056805":[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]},{"1056838":[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]},{"1056871":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056892":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056913":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056934":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056955":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1056976":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1056997":[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]},{"1057620":[143,114,243,126,173,10,2,208,14,169]},{"1057631":[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]},{"1057665":[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]},{"1057746":[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]},{"1057789":[165,12,201,232,3,144,3,130,24]},{"1057799":[201,100]},{"1057802":[144,3,130,97]},{"1057807":[201,10]},{"1057810":[144,3,130,170]},{"1057815":[201,1]},{"1057818":[144,3,130,243]},{"1057823":[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,164,165,133,14,165,14,159]},{"1057860":[201,126,232,232,169,56]},{"1057867":[159]},{"1057869":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1057883":[201,126,232,232,169]},{"1057890":[159]},{"1057892":[201,126,232,232,165,14,24,105,8]},{"1057902":[133,14,100,10,165,12,201,100]},{"1057911":[144,8,56,233,100]},{"1057917":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,164,165,133,14,165,14,159]},{"1057941":[201,126,232,232,169,56]},{"1057948":[159]},{"1057950":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1057964":[201,126,232,232,169]},{"1057971":[159]},{"1057973":[201,126,232,232,165,14,24,105,8]},{"1057983":[133,14,100,10,165,12,201,10]},{"1057992":[144,8,56,233,10]},{"1057998":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,164,165,133,14,165,14,159]},{"1058022":[201,126,232,232,169,56]},{"1058029":[159]},{"1058031":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1058045":[201,126,232,232,169]},{"1058052":[159]},{"1058054":[201,126,232,232,165,14,24,105,8]},{"1058064":[133,14,100,10,165,12,201,1]},{"1058073":[144,8,56,233,1]},{"1058079":[230,10,128,243,133,12,192,255,208,10,160]},{"1058091":[165,14,24,121,164,165,133,14,165,14,159]},{"1058103":[201,126,232,232,169,56]},{"1058110":[159]},{"1058112":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1058126":[201,126,232,232,169]},{"1058133":[159]},{"1058135":[201,126,232,232,165,14,24,105,8]},{"1058145":[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]},{"1058216":[252,255,248,255,218,90,8,194,48,162]},{"1058228":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058243":[208,13,175,153,80,127,41,255]},{"1058252":[223,3,200,48,208,44,226,32,191]},{"1058262":[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]},{"1058304":[200,48,41,255]},{"1058309":[201,255]},{"1058312":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058335":[226,32,162]},{"1058340":[160]},{"1058343":[152,207,96,80,127,144,3,130,172]},{"1058353":[191,1,201,48,201,255,208,3,130,161]},{"1058364":[191]},{"1058366":[201,48,207,80,80,127,240,3,130,137]},{"1058377":[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]},{"1058414":[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,88,167,160,170,32,119,167,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]},{"1058545":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058559":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,178,172,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,179,172,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,180,172,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]},{"1058652":[128]},{"1058657":[1]},{"1058660":[169,142,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,39,145,160,34,45,213]},{"1058699":[194,16,96,32,146,167,107,173]},{"1058708":[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]},{"1058738":[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]},{"1058775":[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]},{"1058916":[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]},{"1059081":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059102":[175,81,80,127,201,255,208,3,76,11,169,139,75,171,34,231,244,30,32,89,169,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]},{"1059153":[32,118,173,32,118,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059176":[201,2,208,3,130,227]},{"1059183":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059198":[165,26,41,16,240,12,189,237,169,159]},{"1059209":[201,126,232,224,16,144,244,189,253,169,159]},{"1059221":[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]},{"1059280":[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]},{"1059311":[248,255]},{"1059316":[2]},{"1059321":[16]},{"1059324":[2]},{"1059327":[248,255]},{"1059332":[2]},{"1059337":[16,64]},{"1059340":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,66,133,8,169,170,133,9,128,8,169,74,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059398":[70,10]},{"1059401":[2]},{"1059406":[70,74]},{"1059409":[2,218,162]},{"1059413":[165,26,41,64,240,12,189,196,170,159]},{"1059424":[201,126,232,224,16,144,244,189,212,170,159]},{"1059436":[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]},{"1059495":[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]},{"1059526":[248,255,132]},{"1059531":[2]},{"1059536":[16]},{"1059539":[2]},{"1059542":[248,255,132]},{"1059547":[2]},{"1059552":[16,64]},{"1059555":[2,218,162]},{"1059559":[165,26,41,64,240,12,189,86,171,159]},{"1059570":[201,126,232,224,16,144,244,189,102,171,159]},{"1059582":[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]},{"1059641":[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]},{"1059672":[248,255,142]},{"1059677":[2]},{"1059682":[16]},{"1059685":[2]},{"1059688":[248,255,142]},{"1059693":[2]},{"1059698":[16,64]},{"1059701":[2,218,90,8,160]},{"1059707":[90,152,74,74,168,175,95,80,127,57,178,172,240,3,122,128,48,122,173,238]},{"1059728":[221,32,15,208,39,32,73,173,32,181,172,34,230,131,6,144,3,32,105,173,32,31,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,203,171,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]},{"1059856":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059872":[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,178,172,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,178,172,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]},{"1060025":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060046":[58,10,168,185,107,174,133]},{"1060054":[122,104,24,113]},{"1060059":[24,105,2]},{"1060063":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060076":[13,194,32,90,200,200,24,113]},{"1060085":[122,72,175,81,80,127,41,128]},{"1060094":[240,7,104,24,105,4]},{"1060101":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060124":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060141":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060154":[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]},{"1060182":[165,35,105]},{"1060186":[133,8,165,32,105,8,133,1,165,33,105]},{"1060198":[133,9,96,218,34]},{"1060204":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060226":[160]},{"1060228":[175,81,80,127,41,3,201,3,208,5,32,167,173,128,4,201,2,208,5,32,167,173,128,4,201,1,208,3,32,167,173,122,250,171,96,175,95,80,127,57,178,172,240,3,130,178]},{"1060275":[90,175,81,80,127,41,3,58,10,168,194,32,185,107,174,133]},{"1060292":[163,1,10,10,168,177]},{"1060299":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060312":[208,8,177]},{"1060316":[143,39,192,126,128,10,177]},{"1060324":[24,105,4]},{"1060328":[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,137,174,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,28,147,160,143,42,192,126,169]},{"1060395":[143,43,192,126,191,82,80,127,34,22,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060421":[143,44,192,126,32,94,175,169,2,218,72,175,97,80,127,170,104,32,21,175,250,175,81,80,127,41,128,208,3,32,140,174,200,232,232,232,232,96,113,174,117,174,125,174,8]},{"1060467":[40]},{"1060469":[240,255,40]},{"1060473":[32]},{"1060475":[40]},{"1060477":[216,255,40]},{"1060481":[8]},{"1060483":[40]},{"1060485":[56]},{"1060487":[40]},{"1060489":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060508":[58,10,168,185,107,174,133]},{"1060516":[185,3,175,133,2,122,90,152,10,10,168,177]},{"1060529":[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,246,163,226,32,133,6,100,7,72,169]},{"1060568":[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,9,175,11,175,15,175]},{"1060618":[255]},{"1060620":[128,128,255]},{"1060624":[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]},{"1060705":[194,32,191,37,192,126,24,105,4]},{"1060715":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060731":[159,47,192,126,191,41,192,126,24,105,16]},{"1060743":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060777":[72,165,2,72,169,16,128,133]},{"1060786":[169,48]},{"1060789":[133,2,169,2]},{"1060794":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,107,72,189,128,14,34,95,150,160,104,107,72,188,128,14,104,34,37,144,160,107,169,8,157,80,15,169]},{"1060841":[143]},{"1060843":[80,127,32,80,176,34,249,149,160,107,72,175]},{"1060856":[80,127,240,6,34,231,175,160,128,7,32,80,176,34,176,150,160,104,107,32,80,176,201,36,208,24,90,160,36,34,39,184,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,72,165,160,201,115,208,6,175,98,227,48,128,12,201,140,208,6,175,99,227,48,128,2,169]},{"1060931":[143,152,192,126,104,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,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]},{"1061237":[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]},{"1061304":[191,129,178,160,197,4,144,3,232,128,245,191,130,178,160,133,6,100,7,194,32,138,10,10,170,191,131,178,160,141,232,80,191,133,178,160,141,234,80,173]},{"1061345":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061363":[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,109,176,173,236,80,10,10,170,189]},{"1061400":[81,56,229,8,157]},{"1061406":[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]},{"1061438":[81,141,228,80,189,2,81,141,230,80,32,109,176,173]},{"1061453":[81,56,229,8,141]},{"1061459":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,105,176,160,141,232,80,173,234,80,239,107,176,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,34,39,145,160,72,165,138,201,3,240,6,34,148,178,160,128,4,34,135,178,160,104,107,34,175,135,160,72,34,249,149,160,169,1,143,51,80,127,143,52,80,127,34,175,178,160,169,235,143]},{"1061601":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061625":[13,165,33,153,32,13,169]},{"1061633":[153,32,15,169,127,153,112,15,107,72,8,34,52,179,160,144,31,156,18,1,156,239,3,169]},{"1061658":[133,93,194,32,165,138,201,48]},{"1061667":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061691":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061704":[128,16,201,48]},{"1061709":[208,11,165,34,201]},{"1061715":[2,144,4,56,130,1]},{"1061722":[24,226,32,107,191,46,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061743":[226,32,34,16,247,8,169,52,145,144,200,191,46,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061778":[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]},{"1061840":[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,60,180,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]},{"1061987":[13,173,219,15,233]},{"1061993":[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]},{"1062032":[13,173,219,15,233]},{"1062038":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062063":[254,127,208,245,169,4,107,34,235,185,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,253,185,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,253,185,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062136":[107,169]},{"1062139":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,109,181,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,109,181,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,109,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,109,181,160,107,218,8,194,32,41,127]},{"1062260":[10,170,191]},{"1062264":[82,127,26,41,255,3,159]},{"1062272":[82,127,170,10,191]},{"1062278":[128,175,40,250,107,218,8,194,48,162]},{"1062290":[191,194,181,160,159]},{"1062296":[82,127,232,232,191,194,181,160,159]},{"1062306":[82,127,232,232,191,194,181,160,159]},{"1062316":[82,127,232,232,191,194,181,160,159]},{"1062326":[82,127,232,232,224,127]},{"1062333":[144,211,40,250,107]},{"1062340":[64]},{"1062342":[128]},{"1062344":[192]},{"1062347":[1,64,1,128,1,192,1]},{"1062355":[2,64,2,128,2,192,2]},{"1062363":[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,226,181,160,175,35,128,48,208,4,34,2,182,160,104,107,72,169]},{"1062465":[143,65,80,127,175,34,128,48,201,1,208,4,34,226,181,160,175,35,128,48,201,1,208,4,34,2,182,160,104,107,72,175,34,128,48,201,2,208,4,34,226,181,160,175,35,128,48,201,2,208,4,34,2,182,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]},{"1062631":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062648":[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]},{"1062719":[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]},{"1062755":[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,182,183,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]},{"1062880":[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]},{"1062906":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062926":[2,156,5,2,169]},{"1062932":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,24,185,72,218,8,175,152,192,126,240,3,130,229]},{"1062963":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1062980":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1062997":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063014":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063031":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063048":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063065":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063082":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063105":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063122":[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]},{"1063155":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063178":[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]},{"1063210":[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]},{"1063268":[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]},{"1063294":[192,59,208,3,130,96]},{"1063301":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063326":[201,15,1,208,3,130,59]},{"1063334":[201,16,1,208,3,130,51]},{"1063342":[201,28,1,208,3,130,43]},{"1063350":[201,31,1,208,3,130,35]},{"1063358":[201,255]},{"1063361":[208,3,130,27]},{"1063366":[201,20,1,208,3,130,19]},{"1063374":[201,21,1,208,3,130,11]},{"1063382":[201,22,1,208,3,130,3]},{"1063390":[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]},{"1063422":[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]},{"1063575":[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]},{"1063613":[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]},{"1063651":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063669":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063687":[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]},{"1063723":[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]},{"1063761":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063779":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,4,192,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]},{"1063883":[208,9,32,158,190,32,207,190,130,64,2,192,1,208,6,32,158,190,130,54,2,192,2,208,6,32,158,190,130,44,2,192,3,208,6,32,158,190,130,34,2,192,4,208,6,32,207,190,130,24,2,192,5,208,6,32,207,190,130,14,2,192,6,208,6,32,207,190,130,4,2,192,7,144,10,192,14,176,6,32]},{"1063964":[191,130,246,1,192,20,208,9,32,92,190,32]},{"1063977":[191,130,233,1,192,15,144,10,192,23,176,6,32]},{"1063991":[191,130,219,1,192,23,208,6,32,100,191,130,209,1,192,24,144,10,192,26,176,6,32]},{"1064015":[191,130,195,1,192,26,208,9,32,125,190,32]},{"1064028":[191,130,182,1,192,29,208,6,32]},{"1064038":[191,130,172,1,192,27,144,10,192,32,176,6,32,12,191,130,158,1,192,32,208,6,32,140,191,130,148,1,192,33,208,6,32]},{"1064072":[191,130,138,1,192,34,144,10,192,36,176,6,32,168,191,130,124,1,192,36,208,6,32,184,191,130,114,1,192,37,208,6,32,216,191,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,32,192,130,87,1,192,40,208,6,32,32,192,130,77,1,192,41,208,6,32]},{"1064143":[191,130,67,1,192,42,144,10,192,46,176,6,32]},{"1064157":[191,130,53,1,192,49,208,6,32,32,192,130,43,1,192,50,208,6,32,248,191,130,33,1,192,51,208,6,32,54,192,130,23,1,192,55,144,10,192,58,176,6,32,40,191,130,9,1,192,58,144,10,192,60,176,6,32,237,190,130,251]},{"1064219":[192,60,208,6,32]},{"1064225":[191,130,241]},{"1064229":[192,61,208,6,32]},{"1064235":[191,130,231]},{"1064239":[192,62,144,10,192,64,176,6,32,128,191,130,217]},{"1064253":[192,72,208,6,32]},{"1064259":[191,130,207]},{"1064263":[192,73,208,6,32,158,190,130,197]},{"1064273":[192,74,208,9,32,92,190,32]},{"1064282":[191,130,184]},{"1064286":[192,75,208,9,32,59,190,32,12,191,130,171]},{"1064299":[192,76,208,9,32,68,191,32,32,192,130,158]},{"1064312":[192,77,144,10,192,80,176,6,32,68,191,130,144]},{"1064326":[192,80,208,6,32,158,190,130,134]},{"1064336":[192,81,144,10,192,85,176,6,32,68,191,130,120]},{"1064350":[192,88,208,6,32,237,190,130,110]},{"1064360":[192,94,208,6,32,158,190,130,100]},{"1064370":[192,95,208,6,32,207,190,130,90]},{"1064380":[192,96,208,6,32,168,191,130,80]},{"1064390":[192,97,208,6,32,12,191,130,70]},{"1064400":[192,100,144,10,192,102,176,6,32,237,190,130,56]},{"1064414":[192,112,144,10,192,128,176,6,32,54,192,130,42]},{"1064428":[192,128,144,10,192,144,176,6,32,216,191,130,28]},{"1064442":[192,144,144,10,192,160,176,6,32,248,191,130,14]},{"1064456":[192,160,144,10,192,176,176,6,32,184,191,130]},{"1064470":[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,26,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064622":[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,184,191,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]},{"1065012":[191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,70,192,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,215,238,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]},{"1065218":[201,2]},{"1065221":[208,14,175,140,243,126,41,192]},{"1065230":[201,192]},{"1065233":[240,79,128,64,201,1]},{"1065240":[208,14,175,142,243,126,41,192]},{"1065249":[201,192]},{"1065252":[240,60,128,45,201,5]},{"1065259":[208,14,175,140,243,126,41,48]},{"1065268":[201,48]},{"1065271":[240,41,128,26,201,13]},{"1065278":[208,16,175,140,243,126,137,4]},{"1065287":[240,12,41,3]},{"1065292":[208,20,128,5,201,16]},{"1065299":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065312":[208,5,169,79,61,128,6,32,113,193,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]},{"1065359":[41,255,239,153,4]},{"1065365":[185,62]},{"1065368":[41,255,239,153,62]},{"1065374":[185,68]},{"1065377":[41,255,239,153,68]},{"1065383":[185,128]},{"1065386":[41,255,239,153,128]},{"1065392":[185,130]},{"1065395":[41,255,239,153,130]},{"1065401":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065422":[41,255,239,153,132]},{"1065428":[185,126]},{"1065431":[41,255,239,153,126]},{"1065437":[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]},{"1065475":[201,144]},{"1065478":[208,3,169,127]},{"1065483":[9]},{"1065485":[36,143,100,199,126,165,5,41,255]},{"1065495":[9]},{"1065497":[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,76,241,160,34,189,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065601":[72,165,2,72,169,16,128,133]},{"1065610":[169,48]},{"1065613":[133,2,169,4]},{"1065618":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,249,149,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,28,175]},{"1065664":[80,127,240,15,189,160,13,34,249,149,160,169]},{"1065677":[143]},{"1065679":[80,127,128,7,189,160,13,34,95,150,160,107,169]},{"1065693":[157,192,13,72,169,1,143]},{"1065701":[80,127,165,93,201,20,240,60,169]},{"1065711":[143]},{"1065713":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065733":[72,165,2,72,169,16,128,133]},{"1065742":[169,48]},{"1065745":[133,2,169,3]},{"1065750":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,104,107,72,90,175]},{"1065775":[80,127,240,6,34,224,194,160,128,7,189,128,14,34,95,150,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]},{"1065818":[72,165,2,72,169,16,128,133]},{"1065827":[169,48]},{"1065830":[133,2,169,4]},{"1065835":[34,67,147,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,141,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]},{"1065893":[143,68,243,126,107,175,123,243,126,41,255]},{"1065905":[201,2]},{"1065908":[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]},{"1065941":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065956":[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]},{"1065992":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066006":[173,91,3,41,1,208,3,130,134]},{"1066016":[90,8,139,75,171,226,48,165,27,240,3,76,163,196,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066053":[129,48,143]},{"1066057":[254,127,34,93,246,29,162]},{"1066065":[165,47,201,4,240,1,232,191,167,196,160,153,80,13,169]},{"1066081":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,169,196,160,41,240,153,16,13,165,35,105]},{"1066115":[153,48,13,165,32,24,105,22,41,240,153]},{"1066127":[13,165,33,105]},{"1066132":[153,32,13,169]},{"1066137":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066154":[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]},{"1066185":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066206":[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,2,153,160,92,53,207,30,175,195,225,29,34,249,149,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066268":[92,82,223,29,175,133,225,29,34,249,149,160,107,165,138,201,129,208,12,169,1,143]},{"1066291":[80,127,175,195,225,29,128,4,175,133,225,29,34,95,150,160,107,72,165,138,201,129,208,14,34,186,143,160,175,96,227,48,143,152,192,126,128,12,34,24,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,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066377":[72,165,2,72,169,64,129,133]},{"1066386":[169,48]},{"1066389":[133,2,169,10]},{"1066394":[34,67,147,164,250,134,2,250,134,1,40,250,34,249,149,160,169,235,143]},{"1066414":[254,127,34,93,246,29,162]},{"1066422":[165,47,201,4,240,1,232,191,19,198,160,153,80,13,169]},{"1066438":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,21,198,160,41,240,153,16,13,165,35,105]},{"1066472":[153,48,13,165,32,24,105,22,41,240,153]},{"1066484":[13,165,33,105]},{"1066489":[153,32,13,169]},{"1066494":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066518":[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]},{"1066597":[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]},{"1066624":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,146,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066663":[72,165,2,72,169,16,128,133]},{"1066672":[169,48]},{"1066675":[133,2,169,5]},{"1066680":[34,67,147,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]},{"1066734":[201,35,208,6,160,93,92,71,213]},{"1066744":[201,72,208,6,160,96,92,71,213]},{"1066754":[201,36,176,6,160,91,92,71,213]},{"1066764":[201,55,176,6,160,92,92,71,213]},{"1066774":[201,57,176,6,160,93,92,71,213]},{"1066784":[160,50,92,71,213]},{"1066790":[192,9,48]},{"1066794":[96]},{"1066796":[144]},{"1066798":[192]},{"1066801":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066825":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066843":[9,48,9,96,9,144,9,240,9]},{"1066854":[240]},{"1066856":[32,10,80,10,96,6]},{"1066863":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1066885":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1066901":[6,48,6]},{"1066905":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1066921":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066942":[127,38,199,160,107,165]},{"1066949":[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]},{"1066980":[132,175,24,105]},{"1066985":[136,133]},{"1066988":[226,32,169,175,133,2,34,250,226,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,80,218,160,162,1,128,2,162]},{"1067046":[171,40,122,104,133,2,104,133,1,104,133]},{"1067058":[96,218,173,216,2,34,48,227,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067541":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,80,218,160,130,84,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,80,218,160,130,40,1,201,109,208,7,34,233,187,164,130,29,1,201,110,208,7,34,233,187,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067788":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067805":[56,233,8,170,169,1,224]},{"1067813":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067836":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067855":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1067872":[56,233,8,170,169,1,224]},{"1067880":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1067903":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067922":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1067939":[56,233,8,170,169,1,224]},{"1067947":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1067970":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1067992":[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,19]},{"1068024":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068043":[250,173,233,2,201,1,107,72,218,34,208,238,160,173,216,2,72,175,152,192,126,208,12,104,32,255,217,141,216,2,32,213,217,128,1,104,201,22,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,16,2,201,43,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,249,1,201,44,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,226,1,201,45,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,203,1,201,60,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,180,1,201,61,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,157,1,201,72,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,134,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,116,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,92,1,201]},{"1068284":[208,8,169,73,141,216,2,130,80,1,201,1,208,8,169,80,141,216,2,130,68,1,201,2,208,8,169,2,141,216,2,130,56,1,169,3,141,216,2,130,48,1,201,95,208,122,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,18,1,175,22,244,126,41,192,208,28,169,4,141,216,2,175,152,192,126,240,3,130,252]},{"1068378":[175,22,244,126,24,105,64,143,22,244,126,130,238]},{"1068392":[201,64,208,28,169,5,141,216,2,175,152,192,126,240,3,130,220]},{"1068410":[175,22,244,126,24,105,64,143,22,244,126,130,206]},{"1068424":[169,6,141,216,2,175,152,192,126,240,3,130,192]},{"1068438":[175,22,244,126,24,105,64,143,22,244,126,130,178]},{"1068452":[201,96,208,40,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,154]},{"1068476":[201]},{"1068478":[208,8,169,34,141,216,2,130,142]},{"1068488":[169,35,141,216,2,130,134]},{"1068496":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,116]},{"1068514":[169,28,141,216,2,130,108]},{"1068522":[201,100,208,40,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,82]},{"1068548":[201]},{"1068550":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,201,101,208,18,175,152,192,126,208,10,175,142,243,126,9,32,143,142,243,126,128,194,201,98,208,19,34,232,216,160,141,216,2,235,32,115,217,169,255,143,144,80,127,128,19,201,99,208,15,34,164,217,160,141,216,2,169,255,143,144,80,127,128]},{"1068630":[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]},{"1068885":[4,4,4,4,4,5]},{"1068897":[4]},{"1068899":[4]},{"1068902":[4]},{"1068914":[4]},{"1068920":[5]},{"1068930":[4,4,4]},{"1068944":[4,4]},{"1068947":[4]},{"1068951":[4]},{"1068958":[4]},{"1068967":[4]},{"1069038":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069118":[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]},{"1069167":[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]},{"1069206":[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,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]},{"1069363":[2,2]},{"1069371":[2,2,2,2,2,2]},{"1069378":[2]},{"1069380":[2,2]},{"1069383":[2,2,2,2,2,2,2,2,2,2,2]},{"1069395":[2,2,2,2,2]},{"1069401":[2,2,2,2,2,2,2,2,2]},{"1069413":[2,2,2,2,2,2,2,2,2,2,2]},{"1069426":[2]},{"1069428":[2,2,2]},{"1069432":[2,2,2,2,2,2]},{"1069439":[2,2,2,2,2,2,2,2]},{"1069448":[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]},{"1069534":[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]},{"1069720":[4,4,4]},{"1069726":[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,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,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]},{"1070639":[128]},{"1070641":[64]},{"1070643":[32]},{"1070645":[16]},{"1070647":[8]},{"1070649":[4]},{"1070651":[2]},{"1070653":[1,128]},{"1070656":[64]},{"1070658":[32]},{"1070660":[16]},{"1070662":[8]},{"1070664":[4]},{"1070895":[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,255,217,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,125,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,125,216,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]},{"1071349":[160,48,107,162]},{"1071354":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071367":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071381":[168,152,32,79,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071401":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071425":[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]},{"1071465":[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]},{"1071502":[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]},{"1071541":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071554":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071577":[191]},{"1071579":[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]},{"1071619":[191]},{"1071621":[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,162]},{"1071666":[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,96,100,17,100,176,92,175,186,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071729":[13,24,105,3,107,189,32,14,201,136,208,9,32,174,218,201,4,144,1,58,107,32,174,218,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071775":[200,49,74,74,74,74,107,40,191]},{"1071785":[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]},{"1071835":[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]},{"1071869":[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,10,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]},{"1072071":[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]},{"1072126":[143,96,243,126,226,32,34,133,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072152":[165,27,240,121,194,32,165,160,201,14]},{"1072163":[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]},{"1072198":[201,126]},{"1072201":[208,33,165,34,41,255,1,201,104]},{"1072211":[144,60,201,136]},{"1072216":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072236":[201,222]},{"1072239":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072264":[144,7,201,154]},{"1072269":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,245,220,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,245,220,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]},{"1072407":[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]},{"1072460":[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,9,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072513":[174,2,32,224,83,45,240,3,130,253]},{"1072524":[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]},{"1072589":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072689":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072747":[90,194,32,191]},{"1072752":[217,48,133]},{"1072756":[226,32,178]},{"1072760":[122,132]},{"1072763":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072783":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072804":[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]},{"1072916":[208,13,173,11,1,41,255]},{"1072924":[201,59]},{"1072927":[208,63,128,56,201,107]},{"1072934":[208,58,175,19,130,48,201,1]},{"1072943":[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]},{"1072976":[240,14,175,167,80,127,41,4]},{"1072985":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073000":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073019":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073044":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073060":[66,169,255,141,64,33,169,144,133]},{"1073070":[169,250,133,1,169,160,34,29,137]},{"1073080":[169,129,141]},{"1073084":[66,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]},{"1073120":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073136":[232,226,32,168,173]},{"1073142":[32,137,64,208,249,173]},{"1073149":[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]},{"1073186":[32,137,64,208,249,173]},{"1073193":[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]},{"1073244":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073270":[175,169,80,127,240,85,173]},{"1073278":[32,137,64,240,4,92,220,128]},{"1073287":[173]},{"1073289":[32,137,8,240,4,92,220,128]},{"1073298":[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]},{"1073334":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073353":[143,169,80,127,92,220,128]},{"1073361":[173,39,1,205,41,1,208,4,92,220,128]},{"1073373":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073403":[224,255,208,4,92,220,128]},{"1073411":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073427":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073443":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073460":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073474":[141,43,1,92,220,128]},{"1073481":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073500":[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]},{"1073532":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073557":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073599":[90,194,32,191]},{"1073604":[217,48,133]},{"1073608":[226,32,178]},{"1073612":[122,132]},{"1073615":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073638":[141,44,1,72,34,248,220,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]},{"1073707":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073720":[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]},{"1073790":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073803":[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]},{"1073870":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073888":[87,127,107,191]},{"1073893":[18,127,107,156,240,28,156,241,28,169]},{"1073904":[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]},{"1073936":[226,32,183]},{"1073940":[159]},{"1073942":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073961":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073985":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074003":[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]},{"1074029":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074047":[226,32,183]},{"1074051":[159]},{"1074053":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074072":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074092":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074110":[226,32,183]},{"1074114":[159]},{"1074116":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074135":[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]},{"1074166":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074184":[226,32,183]},{"1074188":[159]},{"1074190":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074209":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074229":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074247":[226,32,183]},{"1074251":[159]},{"1074253":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074272":[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]},{"1074301":[133]},{"1074303":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074321":[226,32,183]},{"1074325":[159]},{"1074327":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074346":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074366":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074384":[226,32,183]},{"1074388":[159]},{"1074390":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074409":[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]},{"1074440":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074458":[226,32,183]},{"1074462":[159]},{"1074464":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074483":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074503":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074521":[226,32,183]},{"1074525":[159]},{"1074527":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074546":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074567":[133]},{"1074569":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074587":[226,32,183]},{"1074591":[159]},{"1074593":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074612":[143,148,80,127,226,32,130,213]},{"1074621":[201,128,208,56,169,52,133]},{"1074629":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074647":[226,32,183]},{"1074651":[159]},{"1074653":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074672":[143,148,80,127,226,32,130,153]},{"1074681":[201,144,208,55,169,112,133]},{"1074689":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074707":[226,32,183]},{"1074711":[159]},{"1074713":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074732":[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]},{"1074759":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074777":[226,32,183]},{"1074781":[159]},{"1074783":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074802":[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]},{"1074881":[208,56,169,216,133]},{"1074887":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074905":[226,32,183]},{"1074909":[159]},{"1074911":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074930":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074947":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074965":[226,32,183]},{"1074969":[159]},{"1074971":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074990":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075007":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075025":[226,32,183]},{"1075029":[159]},{"1075031":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075050":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075067":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075085":[226,32,183]},{"1075089":[159]},{"1075091":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075110":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075127":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075145":[226,32,183]},{"1075149":[159]},{"1075151":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075170":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075187":[169,129,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,130,83,2,201,6,208,56,169,116,133]},{"1075247":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075265":[226,32,183]},{"1075269":[159]},{"1075271":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075290":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075307":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075325":[226,32,183]},{"1075329":[159]},{"1075331":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075350":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075367":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075385":[226,32,183]},{"1075389":[159]},{"1075391":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075410":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075427":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075445":[226,32,183]},{"1075449":[159]},{"1075451":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075470":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075487":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075505":[226,32,183]},{"1075509":[159]},{"1075511":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075530":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075547":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075565":[226,32,183]},{"1075569":[159]},{"1075571":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075590":[143,148,80,127,226,32,130,235]},{"1075599":[201,12,208,56,169,12,133]},{"1075607":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075625":[226,32,183]},{"1075629":[159]},{"1075631":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075650":[143,148,80,127,226,32,130,175]},{"1075659":[201,13,208,55,169,41,133]},{"1075667":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075685":[226,32,183]},{"1075689":[159]},{"1075691":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075710":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075726":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075744":[226,32,183]},{"1075748":[159]},{"1075750":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075769":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075785":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075803":[226,32,183]},{"1075807":[159]},{"1075809":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075828":[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]},{"1075861":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075876":[171,40,122,250,104,107,34,78,216]},{"1075886":[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]},{"1075950":[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,36,236,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,36,236,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]},{"1076221":[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]},{"1076266":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076290":[226,48,160]},{"1076294":[183]},{"1076296":[201,254,208,39,200,183]},{"1076303":[201,110,208,32,200,183]},{"1076310":[208,27,200,183]},{"1076315":[201,254,208,20,200,183]},{"1076322":[201,107,208,13,200,183]},{"1076329":[201,4,208,6,156,232,28,130,19]},{"1076339":[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]},{"1076367":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076384":[10,10,69,138,41,8]},{"1076391":[240,6,152,24,105,16]},{"1076398":[168,165,35,41,2]},{"1076404":[74,69,138,41,1]},{"1076410":[240,4,152,26,26,168,152,41,255]},{"1076420":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,84,247,160,34,166,170,164,34]},{"1076452":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,153,185,164,107,194,16,34,61,137]},{"1076648":[169,7,141,12,33,175,240,244,126,208,10,34,9,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076700":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076780":[191]},{"1076782":[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]},{"1076856":[107,34,120,152,160,34,89,248,160,107,34,235,152,160,34,244,152,160,162,4,107,34,89,248,160,169,20,133,17,107,34,89,248,160,107,34,63,132,160,34,208,152,160,34,12,185,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]},{"1076931":[2,107,169]},{"1076935":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,2,153,160,107,169]},{"1076958":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,30,236,160,169]},{"1076980":[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]},{"1077016":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077041":[208,4,169]},{"1077046":[107,201,1]},{"1077050":[208,16,175,197,243,126,41,15]},{"1077059":[201,2]},{"1077062":[176,84,32,160,239,107,201,2]},{"1077071":[208,75,32,160,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077095":[107,175,74,128,48,41,255]},{"1077103":[240,43,175,195,242,126,41,32]},{"1077112":[208,34,173,8,3,41,128]},{"1077120":[240,4,169,1]},{"1077125":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077147":[107,169]},{"1077151":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077174":[96,169]},{"1077178":[96,175,76,128,48,41,255]},{"1077186":[240,4,92,90,189,27,224,118]},{"1077195":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077212":[72,170,191,64,130,48,208,3,130,175]},{"1077223":[58,133]},{"1077226":[10,10,24,101]},{"1077231":[10,10,170,169,22]},{"1077237":[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]},{"1077265":[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]},{"1077308":[137,128]},{"1077311":[240,3,9]},{"1077315":[255,143,106,193,126,191,98,130,48,41,255]},{"1077327":[137,128]},{"1077330":[240,3,9]},{"1077334":[255,143,110,193,126,169]},{"1077342":[56,239,106,193,126,143,108,193,126,169]},{"1077354":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077370":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077388":[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]},{"1077465":[165]},{"1077467":[223]},{"1077469":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077489":[165]},{"1077491":[223]},{"1077493":[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]},{"1077539":[175,74,128,48,41,255]},{"1077546":[240,25,175,93]},{"1077552":[41,255]},{"1077555":[201,20]},{"1077558":[208,13,165,138,41,64]},{"1077565":[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]},{"1077622":[107,104,141,228,2,141,193,15,141,16,7,107,34,139,241,160,34,248,241,160,107,169,14,143,1,40]},{"1077649":[169,4,143,1,40]},{"1077655":[169,13,143,1,40]},{"1077661":[169,14,143,1,40]},{"1077667":[169]},{"1077669":[143,1,40]},{"1077673":[169]},{"1077675":[143,1,40]},{"1077679":[169]},{"1077681":[143,1,40]},{"1077685":[169]},{"1077687":[143,1,40]},{"1077691":[169]},{"1077693":[143,1,40]},{"1077697":[169]},{"1077699":[143,1,40]},{"1077703":[169]},{"1077705":[143,1,40]},{"1077709":[169,1,143,1,40]},{"1077715":[169]},{"1077717":[143,1,40]},{"1077721":[169,1,143,1,40]},{"1077727":[169]},{"1077729":[143,1,40]},{"1077733":[169]},{"1077735":[143,1,40]},{"1077739":[169,10,143,1,40]},{"1077745":[169,13,143,1,40]},{"1077751":[107,72,218,162]},{"1077756":[175]},{"1077758":[40]},{"1077760":[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]},{"1077787":[175]},{"1077789":[40]},{"1077791":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077805":[232,128,235,56,175]},{"1077811":[40]},{"1077813":[72,175]},{"1077816":[40]},{"1077818":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077836":[175]},{"1077838":[40]},{"1077840":[72,175]},{"1077843":[40]},{"1077845":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077865":[40]},{"1077867":[72,175]},{"1077870":[40]},{"1077872":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077892":[40]},{"1077894":[72,175]},{"1077897":[40]},{"1077899":[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]},{"1077984":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1078002":[133]},{"1078004":[165,3,41,255]},{"1078009":[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,43,243,160,132,2,100,3,24,101]},{"1078051":[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]},{"1078106":[175]},{"1078108":[40]},{"1078110":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1078124":[232,128,235,56,175]},{"1078130":[40]},{"1078132":[72,175]},{"1078135":[40]},{"1078137":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1078155":[175]},{"1078157":[40]},{"1078159":[72,175]},{"1078162":[40]},{"1078164":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1078184":[40]},{"1078186":[72,175]},{"1078189":[40]},{"1078191":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078211":[40]},{"1078213":[72,175]},{"1078216":[40]},{"1078218":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078238":[40]},{"1078240":[133,4,175]},{"1078244":[40]},{"1078246":[72,175]},{"1078249":[40]},{"1078251":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078271":[40]},{"1078273":[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]},{"1078342":[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,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]},{"1078432":[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]},{"1078466":[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]},{"1078565":[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]},{"1078596":[201,2]},{"1078599":[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]},{"1078631":[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,82,247,160,144,10,208,8,175,140,80,127,207,80,247,160,144,114,175,145,129,48,41,255]},{"1078687":[208,24,169,2]},{"1078692":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078716":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078729":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078743":[143,142,80,127,169,1]},{"1078750":[143,126,80,127,128,54,201,2]},{"1078759":[208,24,169,2]},{"1078764":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,80,218,160,194,48,96,175,146,129,48,41,255]},{"1078801":[240,7,169]},{"1078806":[143,126,80,127,175,142,80,127,207,70,247,160,144,10,208,8,175,140,80,127,207,68,247,160,144,53,175,128,80,127,26,201,10]},{"1078840":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078854":[143,128,80,127,175,140,80,127,56,239,68,247,160,143,140,80,127,175,142,80,127,239,70,247,160,143,142,80,127,128,181,175,142,80,127,207,74,247,160,144,10,208,8,175,140,80,127,207,72,247,160,144,53,175,132,80,127,26,201,10]},{"1078915":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078929":[143,132,80,127,175,140,80,127,56,239,72,247,160,143,140,80,127,175,142,80,127,239,74,247,160,143,142,80,127,128,181,175,142,80,127,207,78,247,160,144,10,208,8,175,140,80,127,207,76,247,160,144,53,175,136,80,127,26,201,10]},{"1078990":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1079004":[143,136,80,127,175,140,80,127,56,239,76,247,160,143,140,80,127,175,142,80,127,239,78,247,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]},{"1079112":[16,14]},{"1079116":[60]},{"1079120":[255,255,255,127,175,204,80,127,41,255]},{"1079131":[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]},{"1079202":[240,93,175,145,129,48,41,255]},{"1079211":[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]},{"1079304":[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]},{"1079379":[208,3,32,34,245,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079409":[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]},{"1079443":[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,33,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]},{"1079517":[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]},{"1079623":[255,157]},{"1079626":[27,157,64,27,157,128,27,157,192,27,157]},{"1079638":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079652":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079666":[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]},{"1079704":[208,12,175]},{"1079708":[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]},{"1079782":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079805":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079955":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079971":[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]},{"1080043":[244,111,4]},{"1080047":[115,10,95]},{"1080051":[7]},{"1080057":[34,157,186,164,34,58,135,1,194,16,166,160,191,157,253,160,226,16,34,156,135]},{"1080079":[33,251,160,34,251,160,175,251,160,60,252,160,201,252,160,51,253,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1080115":[32,126,232,232,159]},{"1080121":[32,126,232,232,159]},{"1080127":[32,126,232,232,159]},{"1080133":[32,126,232,232,162,220,25,159]},{"1080142":[32,126,232,232,169,202,12,159]},{"1080151":[32,126,232,232,169,203,12,159]},{"1080160":[32,126,232,232,169,208,8,159]},{"1080169":[32,126,232,232,162,92,26,159]},{"1080178":[32,126,232,232,169,218,12,159]},{"1080187":[32,126,232,232,169,219,12,159]},{"1080196":[32,126,232,232,169,208,8,159]},{"1080205":[32,126,232,232,162,220,26,159]},{"1080214":[32,126,232,232,159]},{"1080220":[32,126,232,232,159]},{"1080226":[32,126,232,232,159]},{"1080232":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1080256":[32,126,232,232,159]},{"1080262":[32,126,232,232,159]},{"1080268":[32,126,232,232,159]},{"1080274":[32,126,232,232,162,156,25,159]},{"1080283":[32,126,232,232,169,202,12,159]},{"1080292":[32,126,232,232,169,203,12,159]},{"1080301":[32,126,232,232,169,208,8,159]},{"1080310":[32,126,232,232,162,28,26,159]},{"1080319":[32,126,232,232,169,218,12,159]},{"1080328":[32,126,232,232,169,219,12,159]},{"1080337":[32,126,232,232,169,208,8,159]},{"1080346":[32,126,232,232,162,156,26,159]},{"1080355":[32,126,232,232,159]},{"1080361":[32,126,232,232,159]},{"1080367":[32,126,232,232,159]},{"1080373":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1080397":[32,126,232,232,159]},{"1080403":[32,126,232,232,159]},{"1080409":[32,126,232,232,159]},{"1080415":[32,126,232,232,162,220,9,159]},{"1080424":[32,126,232,232,169,202,12,159]},{"1080433":[32,126,232,232,169,203,12,159]},{"1080442":[32,126,232,232,169,208,8,159]},{"1080451":[32,126,232,232,162,92,10,159]},{"1080460":[32,126,232,232,169,218,12,159]},{"1080469":[32,126,232,232,169,219,12,159]},{"1080478":[32,126,232,232,169,208,8,159]},{"1080487":[32,126,232,232,162,220,10,159]},{"1080496":[32,126,232,232,159]},{"1080502":[32,126,232,232,159]},{"1080508":[32,126,232,232,159]},{"1080514":[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]},{"1080747":[1]},{"1080829":[5]},{"1080831":[4]},{"1080859":[2]},{"1080955":[3]},{"1081053":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1081070":[134,1,133,2,32,221,254,176,4,92,83,230]},{"1081083":[169,49,133,2,194,32,169]},{"1081091":[192,133]},{"1081094":[162,128,167]},{"1081098":[141,24,33,230]},{"1081103":[230]},{"1081105":[167]},{"1081107":[141,24,33,230]},{"1081112":[230]},{"1081114":[167]},{"1081116":[141,24,33,230]},{"1081121":[230]},{"1081123":[167]},{"1081125":[141,24,33,230]},{"1081130":[230]},{"1081132":[167]},{"1081134":[141,24,33,230]},{"1081139":[230]},{"1081141":[167]},{"1081143":[141,24,33,230]},{"1081148":[230]},{"1081150":[167]},{"1081152":[141,24,33,230]},{"1081157":[230]},{"1081159":[167]},{"1081161":[141,24,33,230]},{"1081166":[230]},{"1081168":[202,208,181,226,32,92,81,230]},{"1081177":[226,48,175,248,194,126,168,32,221,254,194,48,176,10,162]},{"1081194":[160,64]},{"1081197":[92,104,223]},{"1081201":[162]},{"1081203":[192,160]},{"1081207":[169]},{"1081209":[8,139,84,127,177,171,162]},{"1081217":[8,169]},{"1081220":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,248,220,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,238,188,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,142,167,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,85,151,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,161,223,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,241,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,2,236,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,233,151,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,233,151,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,71,131,165,242,137,32,208,13,128,36,32,129,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,191,182,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,157,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,157,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,157,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,157,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,172,177,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,172,177,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[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]},{"1194185":[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]},{"1194245":[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,12,185,164,107,143,111,243,126,218,175,67,244,126,208,4,34,180,191,160,34,67,155,160,90,160,24,34,26,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,180,191,160,34,67,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1194364":[208,11,40,90,160,24,34,26,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,67,155,160,107,72,175,67,244,126,208,4,34,66,192,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,12,185,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,12,185,164,104,34,168,160,2,107,58,16,8,169]},{"1194620":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1194634":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,12,185,169,1,143]},{"1194660":[80,127,156,70,6,156,66,6,76,12,185,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,66,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194883":[83,127,201,3,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,182,188,164,226,48,169]},{"1194921":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194979":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195037":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,65,188,34,231,244,30,32,129,188,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,97,133,8,169,188,105]},{"1195094":[133,9,34,117,223,5,34,92,220,6,96]},{"1195107":[247,255,198]},{"1195112":[2]},{"1195117":[200]},{"1195120":[2]},{"1195123":[248,255,198]},{"1195128":[2]},{"1195133":[202,64]},{"1195136":[2,175,103,129,48,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,80,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195194":[84,34,63,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195220":[98,41,110,41,107,41,105,41,127]},{"1195230":[111,41,97,41,106,41,112,41,127]},{"1195240":[112,41,107,41,127]},{"1195246":[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]},{"1195293":[33,218,162,128,142]},{"1195299":[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]},{"1195327":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1195344":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1195435":[208,33,8,194,48,162]},{"1195443":[224,64]},{"1195446":[176,11,169,127]},{"1195451":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1195474":[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]},{"1195521":[240,7,224,2,240,3,130,137]},{"1195530":[130,132]},{"1195533":[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]},{"1195679":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1195696":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1195712":[224,28]},{"1195715":[176,12,191,194,188,164,159,88,192,126,232,232,128,239,160,28]},{"1195732":[175,211,244,126,41,255]},{"1195739":[58,201,64]},{"1195743":[176,63,10,10,10,10,10,170,192,60]},{"1195754":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195777":[176,11,169,127]},{"1195782":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,39,184,160,122,218,90,8,194,48,162]},{"1195938":[224,16]},{"1195941":[176,12,191,222,188,164,159,88,192,126,232,232,128,239,160,16]},{"1195958":[175,152,192,126,41,255]},{"1195965":[58,201,64]},{"1195969":[176,63,10,10,10,10,10,170,192,48]},{"1195980":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196003":[176,11,169,127]},{"1196008":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 From 60b3c83e1a211d60246a2a46417a72b03f81bbba Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 02:13:42 +0100 Subject: [PATCH 065/185] update sprites --- data/sprites/official/birdo.1.zspr | Bin 0 -> 28873 bytes data/sprites/official/cadence.1.zspr | Bin 0 -> 28883 bytes .../official/{cat.2.zspr => cat.3.zspr} | Bin 28897 -> 28897 bytes data/sprites/official/chibity.1.zspr | Bin 0 -> 28859 bytes data/sprites/official/corona.1.zspr | Bin 0 -> 28867 bytes data/sprites/official/d_owls.1.zspr | Bin 0 -> 28860 bytes .../{dragonite.1.zspr => dragonite.2.zspr} | Bin 28887 -> 28887 bytes data/sprites/official/finn.1.zspr | Bin 0 -> 28875 bytes data/sprites/official/flavor_guy.1.zspr | Bin 0 -> 28880 bytes .../{froglink.2.zspr => froglink.3.zspr} | Bin 28890 -> 28890 bytes data/sprites/official/fujin.1.zspr | Bin 0 -> 28870 bytes data/sprites/official/future_trunks.1.zspr | Bin 0 -> 28880 bytes data/sprites/official/king_graham.1.zspr | Bin 0 -> 28892 bytes data/sprites/official/lest.1.zspr | Bin 0 -> 28874 bytes data/sprites/official/matthias.1.zspr | Bin 0 -> 28881 bytes data/sprites/official/mew.1.zspr | Bin 0 -> 28853 bytes data/sprites/official/mikejones.1.zspr | Bin 28881 -> 0 bytes data/sprites/official/piranha_plant.1.zspr | Bin 0 -> 28883 bytes data/sprites/official/rydia.1.zspr | Bin 0 -> 28849 bytes data/sprites/official/sighn_waive.1.zspr | Bin 0 -> 28868 bytes data/sprites/official/tgh.1.zspr | Bin 0 -> 28900 bytes data/sprites/official/ty.1.zspr | Bin 0 -> 28913 bytes data/sprites/official/vaporeon.1.zspr | Bin 0 -> 28864 bytes data/sprites/official/vegeta.1.zspr | Bin 0 -> 28866 bytes data/sprites/official/wolf_link.1.zspr | Bin 0 -> 28910 bytes data/sprites/official/wolf_link_tp.1.zspr | Bin 0 -> 28877 bytes 26 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 data/sprites/official/birdo.1.zspr create mode 100644 data/sprites/official/cadence.1.zspr rename data/sprites/official/{cat.2.zspr => cat.3.zspr} (54%) create mode 100644 data/sprites/official/chibity.1.zspr create mode 100644 data/sprites/official/corona.1.zspr create mode 100644 data/sprites/official/d_owls.1.zspr rename data/sprites/official/{dragonite.1.zspr => dragonite.2.zspr} (57%) create mode 100644 data/sprites/official/finn.1.zspr create mode 100644 data/sprites/official/flavor_guy.1.zspr rename data/sprites/official/{froglink.2.zspr => froglink.3.zspr} (96%) create mode 100644 data/sprites/official/fujin.1.zspr create mode 100644 data/sprites/official/future_trunks.1.zspr create mode 100644 data/sprites/official/king_graham.1.zspr create mode 100644 data/sprites/official/lest.1.zspr create mode 100644 data/sprites/official/matthias.1.zspr create mode 100644 data/sprites/official/mew.1.zspr delete mode 100644 data/sprites/official/mikejones.1.zspr create mode 100644 data/sprites/official/piranha_plant.1.zspr create mode 100644 data/sprites/official/rydia.1.zspr create mode 100644 data/sprites/official/sighn_waive.1.zspr create mode 100644 data/sprites/official/tgh.1.zspr create mode 100644 data/sprites/official/ty.1.zspr create mode 100644 data/sprites/official/vaporeon.1.zspr create mode 100644 data/sprites/official/vegeta.1.zspr create mode 100644 data/sprites/official/wolf_link.1.zspr create mode 100644 data/sprites/official/wolf_link_tp.1.zspr diff --git a/data/sprites/official/birdo.1.zspr b/data/sprites/official/birdo.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..54c49747ca5c5ee9fc5a97177325aad507966a0b GIT binary patch literal 28873 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

u#h?Io+@8P)6ze8c{)*)eEen5LQ* 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 bduHpW3oy;l=1j{B&sL~&FPzzWX6t_eKM(*& delta 3576 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/corona.1.zspr b/data/sprites/official/corona.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..2ed39a78eb682de0177532132ee679ad02d97653 GIT binary patch literal 28867 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/d_owls.1.zspr b/data/sprites/official/d_owls.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..147283ea84f30dfb0613a0eb2b575c122e49e970 GIT binary patch literal 28860 zcmdtL0eBSGl_q++yVPA0rS6iDQAujL3xPpSWYh>58fd!94r7xH&k!d&VI~Y}+lEO1y;$t>pL8gAz7&8j$JM_dI@jxbJ4bH4B zMT>m}ijfS`=s@)-cN1`7_xPa;{WG2O%{T6T*+&Ygr2DvcQ#Dm!pBmZ_zJJGot)oXr zj-IE7sWSHf00p=;cR?dq0Qq zBz|X-O)1^2-q5SKFqt_qx_#<<3Q>sSq|;^HG|n29YU6+&Ed>gxnYG-1aoPAWc8{O) z{&;qb{-xUZmp{g%Us>ZG|24{6x_kWZ{N8ti2CbzH-gaNeBbdfWtqtFPCZxE3JKJIb0>vQVkc!MrHKjZ&GzbKqib6Qrn3I)cI z&B{N=8(gL|zAMow`4N3<%eIbaC}g)kNuQ-2+CVMfYi|EL>JfQ<_{{L=NYQTpGwF3| zqXmpW%x;h8?@ekY`8*91<}UI0Z2$)?QOU+PjBkzSvr?T=pFmr)WvF+2GFz2nJ3S)PmW?1FT?d0$g7mMDnX#qEzZ zC(u5ngzfs`-eY}q z=hT0q_j$rH=D#g}^U@zSZB*N#v4s4MNR_th>!xT%D_ItrbXr%b6W`_#v_4}laoQ96 z`k|S%IbWa3I3{NYzE?c-DVtj@Ze|y0Qi;V2RuvI_Q~ta^;)znUI{(Jn(;aFs zT$_IblT*0AM5XHdlZw)$Y+n(NuJ~3pLV~nJWy}F^upDUfu>=uw!h;dZnzLHivSpBE zQM@1*B}>vY3o;4gruf3Xq$j0vdoF0-7z@S&+@8xM<_fnj(_;8oB0<^lfk|#3wkkA4 z3AB%R?Eb4WQ1P{`5d90*`H41U&Z+hGsUJox+10+;+YSkc{;Ta9{kM5H;YzqVgX4t- zd0s6;`-%SNrf1dp!tCW4UGyKNK2>}JA?jB)uWeq_%HKfX$=HG{o_}6D5sy=8e8D`O z=I1Zl61Htchd&5u?XyRZNDZisvfmGD%4gd@ulI0k9=&Od9udahHF`WkqF6MNzO0uW zh>UGNWX8K|wy{f+y>Q}zIvEy3Q67{eM zdZX7vHv=Vu#*C5lo*1_d`?fS1WEsVDc7R)}A-$dNS7^KRgZ0ffg2lEufrA5RyXY@D z@`okRK7BG)e||iHUWyg>i2m^2umDynDF*@vrKl3>cP_95JDVPTw2p-YbFh$L+b8N+ zNHE5DW{mG)bx%yp-|9Q4*@0M9{_*T=_HOh4sJq@i&;%RcXN*lqfH7mt*r#XhYQ~mf z85uoY8*c^kzdL-*g~M_(?AQ) zgokvVt$4FZDIT%suE5y1B*cDA3P^ypuh>(d`VBg zClyY4`F`+xDB71FI865lY>-Xgz z2-c2n4@7{@(IGiXo~j3e@sW|J)eQN=9*7XErMvZqJ@@GU#yFtAye~wFz~hmJ!Viak zqCH9f6_0Du9=c*4+P@C=@ez!lNmF!Cc}Xj4b1ILA2eLu)>Dnjt&v^zRKRp!ibV>2R z{448sLBUzS$A4x0uG@3M zRF``oMvgA`K=|N$a(f_r<>elTd{-(MqLs>KWheL-@`E-}&=U@&!aG&Q7cV?_?9H}U zq#-J)C5+)ci7#eD#n5;poi$4s!=uen{|X5@9QSg`PzMDYqCp2=9y@y&qlfiZ+OFRn zJDUz$i9!)QaoN{1MPvI+JwvP`OU?UHJAxyH!$|%N7Chenl3yj-g0Ys;Bt1X zRB${f0elHV8`Ea=w6tGmD>fd;ZYbSX_T{>=;2+prresipDX}=f+%wp6^p^QY@Ehi? zNB8RJ$i^Nuv@*D1^~SE=_6W_wa>utAW)GfUj?g@8H>LF437$W}BGcOk8_3W{j5LiH zj5B(Q($Q(GKc@T8AqrNorks{kFX#&l8(}0o*JQ81dCrE>zY#WcyBav^O|H(ZO+$V_ z_tE#HyI|XU<(73qH(rsqekV{0E^Pgdb3emUI^*>u5JlJc@Z$ zF|HX|9U8GK75FlhN8+)PHK(@Cg{`dlq&^!J@>cHBE z;X!*`Kcz0E-+HV`+D?`D{O~F1=5QWfuV8We#6@_}o|O*DOaAAcFz8;|D1Fqs)06V; zjeV-uNZq^bBQ1BTNvsz4#s+&ETX%Zldoqt1XNF5up|06f;UeDu9G!qnO%`<7kPR|0 zn~F5E=6pKQzJDuAfONFD_r3049PvotdPo4j8nSjs{}E&6wI#r+xi?!=6R&MqAt^rL zJrNR2_Q{eYuGnAmd>WoQs{-m{W&tC=bU6RDs6SYA{BP_xQ+(}MKMDOU`I*4>QKIM5Q>^VF!RIpU=@Rx2>j3tlXn_IWW>~^*Q9S_D^!3tgC_OKUN14OR}i{2?I4xM0YfE@K{`9w-ujXEw_DMfj_nS+zGpj8rO z{eq~bh+f85ER%zeD|!3=Xm#!l-nn=4eLL2MwSbt5@A+Tx{(B{PAg5inDV$HA*I%Zj zkuU_#6TDY?UQelFs;6OpWkQ)y!Y6RBs1zf!6{#$X`?2OI1rh&96a!9l(`#a_X^;2{2&eF)2OxQYWb>a{$kUeHB-fX+AkIART2RkpJ5g@dP0 z(y2Q{y+voO?_~1keP3|s@%({KGF>=bOk2QCghE7!7`r1x#Bbz!LmRsyM68cKOnl01 z-KEtc=49QvgChRG_>y=Zm3nM#?z~<7UtPU}B63&>`i1{37TUI|omRsCUh}_cmrk#v zT-NcwU87Urk(V%gEReBS(yE=Zh#nA)MfV5#V8x5*0p8wwPAZ%GRS`WPYAAgzovTF; zh)RJAfg>xA-FaZMSg#eI8;hnx$KV?fcvd?!3QvKVEL5cJV*PfRS8z$lV_v`M^jG?y zs{dK~s;{ph0DYrJe;i)ib%oB#AHm4`Jd1a~+q2ZRBv(4hKQ0BHdityIHC*z{V5J`q zSkb~OdciPFyh)<)#F?Sdii#)$aM}#RPD>V&g@P&~G>h`tLvO5kS1R_22+`a0Zu;h* zy!Gte^tQ1yl2?Cw)wcCF&U~-;?w7wQhy1V6oBlWaL&~`$2I3hTyj$VTVJX|}HB#NH zZ`TIk?U8&9-bVi^sUk06EJxF$>3AVtc+9++E~nvdN|(}e)9_T=^8y}*O}{z7{t5P} zvuFLO{wJ|I*Q3I^Q>;$u9sla95ldKi^J--F%~h-)U!+e+Uu%0M{$$&^bl%%ZFVg)3 z&mQ`tdw$=4yIfSiuqG1wpn|0spemh z1FJk8lvGoi5Jhr;JzR0WSRI4^!P~QF@A%gyV_2cP{BwP@8QSO9>&JltYqyG02@C&( z&~A1A1Uzc^A@yRMAOY;*wcpeE>(|9ko2oZ({PZsRs9q_21(MGTT`1zGgm{~Vd+P1Q zdZiwJ6$H5b7E0=WX_o0P@SdW50T#>|dj)3bYcNCBdRnR;m`rp{WNo-R+=5jJmmRGy zhp)fz+SF3|Chq?^-Cp=(;~-}K85$QI*tXApeVv9CpDze|(*TcT^@OIuo2>Z6O%nXa z{mQJCGaU^7vBJI}f!Y4t4If@gKuDF0o{i-`nh;9VzFLGYb~IhR0sq7b+3`{hYqVb5 zplz+`CykP9f39%uPtv2>-^AAand?|82Y zTuhh8%1CEe`l7(;%-Bm5@`k=x#YC(1=zod6we;6cdy0A9YI*Cg*}+gP(Qq#P&eIMe z3Ww8a^Pkr7-~U@v1H4DX-gEo4N%pb-js1B7mwClsggm85*sMf*#xX;X0m4@pr(pNT zLVUll_~HRrpsE^Tslv=7yiXQcg><0+oErsaS-|*V9HlPFZNEn03vt`8^XiNqhyP$c zJ__p-zF?~j@dLIVMFcO}l2{j)V>+tr($cbSoh<8m6;eq{tP5+33?*^#i$~Th!6zq918bsgthTmTc&VgutU+VT~B-9x23%=R+ z$=h#_L>e36g14KLUoUCJ82_;qCB6Q-rp03X$1u3Z{PFyQc_V)~6%Q#sug7!z_=67` z#^J;9xT1K0E6-HCm2Pm}^H!Sgf94slx4ZlF>F1xv*9Fe~W-2!LKuFoKLkR8Ndtx1t9&|1RxzyTv`n3HK>IW{!z8PZ=`3;m{LEZ3+wcFqI91Xomu-Ncof#DDOp~%TYgLb1K@Gw?ks5A z=aa90S2+j1_ymnmKm1th>1i6RJ)iT70+}6`VoIyh>{a3E1(p+S2?hQ(5pckY8+ zA=B`e>X;yRDpl;kN^hsUQ#(~AtD3$Pe#e&Q0`_h*V9byXA1(;c&x3Jn=^1S>Fjk&?3LIF?Z z@qEL^@BOQ#%+X+gHf*qK>3{!MnG8F>9K7^LOAVF&@)Tx1)>cG+^w$jy{ryul%+}?Q zHbh;XDBVZ!u-f@YJS;85gDdinK29&23-l^^tNBMIXgP_=(Ia$x(<{+bDC*k_&l}N` z(96P;BZm4B>0aqS6_$$MGJgQ8o9KtgJSpP03s_A#MS-<`59tnE_V01!9skg#6lijE zlPKL@Y|J9M;Kb*i%T(~?uy(3uSS>v@+Df{%{&zwve&q*(M!IPFWZpw z4tY|Lu!u=Z|4;w_`iE!JuY7C?-jOBR{_0cXi3vbK6 zgvH^hcq(5Q`dDH^=Mudq^9OO4`a6lMw_??OGk#a`UJ^z^g$=bgc0T>`-N1<2t5`p0 zx5CyQ9HlgB5v!*gO2@V48^ES&Y4Bi1<~fGPb`X3;l-HjO^Gd#kX;2^3_r};GT7nj- zNLQf!S^rltGSe2N8{moex4)CfUkqY3=Ckt`Hz`SYGJ?g%o1x-r%U?=CAHRS51bsW! zfbZ+A=0CEn*ieG+uPE{#ZGR_^K$9-TntC8F;m`NTfk?x~u2ciZPtMWfh>bTOpAEib zlX3p(U@=hgmH(>zbPgPWNb3c94Zf?plWW6_NASi=v7tNj$)w{30Wb6WhAj+$T{t6( z^CwEQOWR>*FPe10Fkp@6kVU}Ri-mj%S&V#hRfZM3`qTCY2ZjurjUSu&)}eOH6Ak*` z$zN-iTY_4kT~?uvcoxkeFHK|Lby2K9=hWeh25+DYg;qfQkf)EfV%~8M0ml&FKMBPG z9KB-i6!OGi&(E`c4*wCy5IAP5SPI7k>=;6Vwm0nA{9NW2;CJ?E#}E(8ZY>`NhW{W9 zzBxG7KlN7dHE=txQ4$BLvt^oBJFV|~AN8K}ZbZyzR+CCi&?KU;_iILX^5+P$6a4c+ z@j0iS^J>?IH$!hYB}A#!(Vq*%Ym>0`267M_TpBOV7yERv=*0K^b^h}YYkz!@{8^rV zee9O}>!H(b|CV)&f2(whe=C47aOY14N}-!oyX&_1zQKBUTU^*(>TP4+U_Bg%8x<}Vzm<}XC8wz)&2VTye4gMN)4q22%!$35HsJ~8KlO|BkLm67yP2UFW81r>{r0L& z8*iLB1N_aVkpFMkyA>Q#7=N(*VQ=?ndc^)oQzczVW9V3w9279kOl)jg2k+ z&9(=i$_+h%Zk6+QqNwLGWF8z#7Qk^fH*x&^pc3ijj1rh;C^NqP<^*Tpg+;`FTEw5c zxB{(3wCPfff_;DVdYuAaV4mC90t$_N;gml@%yW9Er!8Sqh!FFfL!p5Cqu@D*0%K?X zI{An2KG^w3PX6zS;rGu!!cn0C`V4f4tAnd2kSwSH;jC>hAPT)CEP(~64Q;0+Fi~K!!w{4r@Hm}Iv zV{bQqyn#vf-ow{Y&A(nKlw&#MPx8Dkpq_K~nMSfDrESB)iFt-;#O(~GAb6%{dduXJ zH~&ny@>t}dD#92hUAS0;!>_N*F|{7T)eC$3So== z`8EdCuoc#m`sbf+dBpPxGrKji2uDcf0q6G?)nnN3vN88&Q<3FU&WlR z+C1VOU|5Lm`-_w{-FPHDIqt?El>f_72KW8&f!R2XX!zxIf)lttO{INBk^gARPxhX6 z*!hcLi|ZlD+C=nSDlz6F#_wIRD7Epe_KSk=QulvyR%E0%GH*Aw|59vES{-BCOvsUc zd^LtWMvnYrtm??5Ee+~tG9&3UU$D!Q>&h9nyPdKqZ3@Dfk?icMto|V$__MCsq*|MVjl2UtIL{*~~a);_EK3v-bB3UiPfGY7db zbC4S|PcAR=GJ4E|%ZsWzSm?iccdY-M{B?1U2K#@ec0Z!os)Tj8)1Lq3TnaZ{zJGvs z5X`CWdKs%&H)aaUi(7wkjkdfR&mb3Aoc+9?C1P-NB_0?mg~O- zdD7N)j{a-2=`zXF#d?;l_aK|8J)pc%b7|FH*$9qv4Tq&c3y{5&S> zOUaQytUsCO+I*VF(VuhRxtsEvtnLk%&7TkQ|XzpDL#_OL&~X_kmt^dCmnyxaa@t`pB7><`UaZhy%9{x18Ym%c9j zrT1=Z5#B-1LUSn;m6DwxTrDxmAu^Z5cjg$67c+Pd;*H%{p|?;ouqavL+~6UP6EDnC zd4K8C+3Nlik$JLCTaX?7EwdL~3(q<84^(4kGBax{RsM}pcA#{k_~+Ieg1*q89oHOt zL1@s>O@CE?a{Q6^|NXlCdkV5hHwFLmx>P~XgYHzK8$-VgyhGpuUj0nQID4PxFL0qa zR*G@)k^C8$AS1jcr#b(I)51iu+*$(iS;ILdUWVxC=3l+mWT!wn7WA?djC;?BluP z;H+8QJ!5NcNKlJ+&nQK)`-QOoP3#|V?04%H`~Ah;?{B}qsXF`rgzmBSUfq|m?RkOk znsoGE%zl-In)DL5u0O^7b^R%D9_t_YDzSf1+#j7ksBi|fv;N`TJ7WDL#un0Z+4|#y z_CGoD&xsGP_2b^ZQ^Cw~@83xlF#i#}V{fU2H#(sI=D?oK2iK(FC5hnsW_q(*vv=jX zVbLR^AB4^Qz25$*Q>WoYFtXr}-~cSJ7m~Xw$UkRXFEQje-Rt777{%2g7v?$CF9yYK z#B(U=!rcBo*Ztf+@4^ZV$P>$O0zP5Uzd>UL``~uD@VHTm<*L{V|2bz_ce6@DVchJE zD#mwsm_1) z{$Vfk`eZ@qZ_FbJYl|&G=rV3EC?E!7ED2~+oX@r-1Buro>(`7ik`sn%848I`KqryO&^PLnieadR0OKlS34-Dk50*d9hZgxs zEPq6~t7(VSyVCJq*!!H zUp%snyFt8(#Q7J;^eV2NfAPQ>xBnV}K^53_{zozNLFa!kJuV;4|M1`L{};XU-yiIM z;JvK%`;mi`ar_S~Ay|Sr<~qwa?7^>MNLq|{1-UmDHAbsE zXRieU(Z;Ah>KFAAqK9S7|8r>vSEMr;>;;)$D&VWzkzjj7 zMinpenQ2K{3NI;3c!rCJ8wC)ROVE#S=T-XiUEkXMh<ng&t$?_JK86fgnG#=E3gX ztf(QM*Vn{*2!d7zPC!_cJmp6F1d!`0d$EHH?0@KQjtBDkqwxdCFdxC{11n%T8(^&Q(0|7Yug_b=m30^J(V)>hap z$IkE!%$dTz#?IZTp%-)GC#ne+S?uh8!#+Vo(9g(N{q*q(A_9l8fBGH!1d(e0YNQvD z9GoCxAnJcM{n>SFJ3wc646^o%m4_aUVJ9l@pc7|@@aYY#|J|oINR!=&KOgoMBm?^w z?xqbM9bY$j+r2w7eZ|4Mlk4&PQ?%WXhP}JJs+XQY_Y-ve^i<}`i=FdSemeVMix0h;l^zH6hv3{ z-|Rbad$O$;-(D;W0=4@6b{*@4u?c|E<3K=6r8W{tuVc8_IVE>hgcysO+f>?6>2*DbH$H zt1L73Z`kQgVO*_l=2?T*c|DKS zATJKE_ndSs8yK_^_}P4!jt7^titW8-|6OD(W#mm~{;UlrJ@$H`YX2u!Cwwgb9s6}6 zK4iM(f9}He3Ag;`>=)im5UB0|zSaNN_w6_QN#eDxZu2cXZ_^Q-_pVwtU-vg}gT90Q zlvsP<`62bnnK}=SQi2K#?5-mUfr+75&+C9hl)-M_G_0?#w&)ZGoP4%RV zIj=ez-`aaiL1o?f-xL`G3y1;>%+dzlT}4T7({U z5c}+!u!q5ogHoiojyXEfqb|qsWth+4aMyD#Zyo!=#g6}hulixbyZsM*t-yb|O2PFz ztomi~7X{DTvfN>Zd9b|Hu}+`S&!^8m?9}UYQZKpk4i+rvqxH-5AhEAk^0oBK#w*4U)(--k*!``;25|<`%+>B-9**i z--B~69&5?Na!T0}E<2Fhkz0B2&Llh_tX2D!tKlbx+4d998|h8XBqvY3n2QPAfiv#x zGtgjz@H?v^EdU)3A85oLlOk4mr?Z!^;$EU_sLzkbk=EgB1S%h!wVk4^_wjKjg=) zG60W(RXjXk>8!-Rb3y(~x_CHUGc5RYsYb+ioFby@e$B!B@2|$+>hXKAhAr1_cQRON z7wlggu5qrq<8Q)-cWT5c`2H6i%+Eig*W>5*^WzLYr(SsQ-|^S6ID^l@_%e_m2lP5l zs~PN}uVX*vr(1sTseX0;C))uB^p`&7+|PCZ&hV@C@0@_<)MNbY6VM#Y@@v0-VV4_c zdWw7MSWs|drr==SKlNbb@tVBg{ZskK;6_o;`&aLczlnTs2eWT?Y1PujonFq~+1S#K z9Y8)*f_tL)38}Eg7~7d1h#}1(x3B;V?!gXdsVG~*juhD^_WIW!#6B63eNvCV^-i<4 zga)g|-)1l4)JJ5n2)kIs-<$~k-xq)5Qy;JBOWxE)k-t(lDo2K1NEP@LKz^RwE%D1V zuOD6U%bnj|Zb9>zi*5^=&mVHfFJpY_lq>&eQ95;+*L{v1KlI|zivyD!0TuJF3~S$= zKUD0?ZjE6FljDKo?8EoVAHpdcShsNuL5zQCE84r}Z|AI_@ayu2ez5*0u-5XFk8QM9 z5YPSA7t?9`ijaR5#I|Aut7iXPpPokMhrM+OqvtMygX&iV2RYc`pgI;D-ppj_CxBnS>;EL^V{;nXCFFyVwj&F*q{1NY9=`o zo^#&Ep-{(yg1~~pL!eN@pa4xW0>JZexDi#ndofkVx5B+v&{Jq_r4Yz@}&Y%XnmGB&u#f4 zwxRXGCJi9ICn#i03-ZGxmN`seS{Io6w>cQzXAkJv{o5QYFt@%8U5B&W(iZBu^<`M! zY|}I5{+U7vb07e0_m4SXVGb}B{g<^97sMG7+<%275@gZ^)c3S+3PwEqrlLT4wD9?b z4(6p2%)Avfm7^{r{JP;m^VI&por)TNe5ewSh7+4S|h8+qe+>LlW z&f^di1lEwF!4!tp_NDcmtLmJbq|v zzX3~c#_s-$mR0MY_jHO8eGPQ^d8*uv(=Vch z)L+3CBz*HUtT%a|q$~T{#%v5ne|GG|W$bx1xMvX|YxZ{G93%&G^sXgX&tEaY2chC~ z8Bxzv;FG+$^n`=igU%G{SWs}VXc4L#%vB2YdO^XBZ_OX#KHcS344v<;CjB1}e|I;) z{cec%hVH(Ac)c5vgp-ArT|n$`dASwC9k{G`A@ew6XPX~$6?@V=g8$m}jxNk)#>{`> z{K`^+XQ0i0mQY$zxXY{yL_> zPiul6_Se}I*dx!Fd5$UM*5+f!p+TAFdIB+D1}7lqF@KroD#&_FPL=Ie!j?8SI0`kH$H#h(IL6z;=Dc zrtpco4y_bIy<| zuX2u2urKpoT6aMNQgyHgKBq9wB&p*T?6-CFIrdE!Uhg?HdT7+CkJC&K&M&y^V4}PA zUr^as#}Ddn-BY*UnZknX=uf_jDY*4FOVH}^$5kR8YH_^}Q4w6|F7pz?zjm{#?5l=*kG;=OB zV?MtV`VZE-X+H|io|+Wda{_m-J}Ey5e;e+$J$N{E?W5VvF`Q<_{t#F+MW#@~x>qmo zoJGz8C=6#<_b}F=`|fN#ZqL6IdWZ&af?(6bD$hU0v&bvs6F8F-6~urLeTdIqo}HeM zgRuV@#{--AwBg$M1wHLCAD@3&KfeI;2ID>#W9`TJjET$P9w84HX9I!)o*%0hA7!9V zIfIAap79gIOUPdcLt3QGF}y)!E_yA9{dXg2etzgv@Eo7t`II-W=CM1Ad9Ek0ruA`K ze#GhU$Z+Pe&N<9wmA`&=q?9S?^V4NKJ>&Dg|H>!7kDcRY%tT_;c=tQ$zcaqy^Yl~W zdq+>scYUS#ov*z2Nw+ZCm&a@+2pj+9C~f5021>utHQxY)*H#^r6uj$i z$uBnkk?{q?AOq31s50nz@1DQj{%VrXaU<|p+AO9^*#B70ma~j4yl)BrtHlC-L6wAD%H>parO;KOt|b`2!Gzlt1r%t0vze zL8PN?|MDStdGv1@yQ|r4g!uV%=W@ZN`*{rUKX=69;7}E|nF)Nz+->q1;;JQL030pbD)WiMd^f>< zj>CVa%5wD!ly4@+rL-8SJ%~8&^b(f0w>Zg1D-7ZWn+C|rQ z<$B_3uIIXqJN&&Xw>KPGaZfX!!pHtcJ+vLCGCj5lb`|iK4)giLEWZjsu$Qg{?F`7} zQNS2Z4}I1+Z~TjU?VIpES^Zl4yBnSJH<^1Lm)`OIi-$x#bI+rl|I3LL3pW3gC6D}G z+G}(h>zM!b=v@0Rn;u^M@ajjqZ2l)CHU6>R@b2=iWB!*)?Q?&=@8X4v7p`3v^w{@x zp1!{B!hH_T(l-x}@3o==BmbA)k$#}BzUttJ^k(Y{oF6VQz8h08o^#k1I7@H$IP`eU z-ht=;k?!2@#|fc-*VeGe@rNz+asRz{eBrRsZ*+40(U!)&v7_owR~>6Ub-M|^k=4oA zq0#3LA68G`8)i(+DuEA>e{Hte{s8BhmhV5}9SwE=C%z0g#=ZYQ1scvc&%^&p(7Eoy z6x^68xC>Koun&9vkP+!X$RT78d0T7t8w3{C^3HhjZ6=*hr{4IpPxAkN(WkDpxrfNY z>EC?*&gN=7`mV|Q;rlvaPGA;sX}EDO?;n{gL)URJ+6)CJAK*V|632yn=A(NzZ|K_G z+=$udLA|%f8^g*E=>>w{fA;!~soBd@tPqByp1ZHnP;S62U?D^g{ zEScVdwY*0vOAVVE|prafG6S; zu}O1seB3}p1vo@e`lxh!Yo}+W(t=EcMt@5%zH*?k6WXY~DFnZ5+wSLkex@EfBQjum zrceCIi^d|No#dRXhJ1IiC#)_;ekQMlqB(uVb&myVA9280(|xo1tRUtY3>- zOXztyzs=FvG#;r|EV+231|Z?uhb?$GNTU^_~ic34L$_|yD+BPbcepP1G$d>d+s0RUU~OZSTK?O5WM@T?tg%% z$JPYS^I<;gtbgkG|C_(ftbJR4*FM8myn5;1F8tHt3O>VDU|uuv8Iu26dx^?Mj?e$U zoEyz)FEQ3~NHAtDub1kvSG5b*=!!HH#_9b!$NY%a7p~Ay^@s5cyzgQMn~+`8&|l6D zHYUQme>sAOv*KY%@%~>}VZF&ctbrNx{^2c++Z&kU`HAiQ!|naD_=u&;Nsb~P7ba8!|g+#`ZsO2wPw|f=e{k6cYLC0wEw_I9=}aHb!)Bp`(Juubp5ZZ{fs*F T8^8FUe_icz$~PZ)!uS6I1R9Zm literal 0 HcmV?d00001 diff --git a/data/sprites/official/dragonite.1.zspr b/data/sprites/official/dragonite.2.zspr similarity index 57% rename from data/sprites/official/dragonite.1.zspr rename to data/sprites/official/dragonite.2.zspr index ee127257ed077b63fa7dfc7d4dcba9c99c960a96..37d95ad0a504525f3ee532514cc825245c8a709b 100644 GIT binary patch delta 6434 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 diff --git a/data/sprites/official/finn.1.zspr b/data/sprites/official/finn.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..6272246f17f5617ae4443cf1c33afc101066032f GIT binary patch literal 28875 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/froglink.2.zspr b/data/sprites/official/froglink.3.zspr similarity index 96% rename from data/sprites/official/froglink.2.zspr rename to data/sprites/official/froglink.3.zspr index 1932df067a58de543673ea55b9090822aaacc9b4..f5c46d8294d8c0ede7ed0b5274e8a6c6d3944e3d 100644 GIT binary patch delta 129 zcmcchknz?-M$V|Bk_FuxIdAGtOwtx$0D%V#7akZqxM6VS$G^?8dcBN-hCsom z!JFfMuzybYQBY@KIC;0e^5i%s1(RDI|8o8?%t)93h6xPYawg?`Vfc~o0SpruzNY-+ ao1H#4$=|@kzyN5n~e-sH~;|2$~L|L delta 197 zcmcchknz?-M$V|ZF>mw_2%A{dDAbFlC+A^3MZek6Qgn2-R02@G2@W&rsg5+E>v;cLn}x!LJ+ Wll%=l3=DuK%*y*HzuCxOg#!Swv^;PC diff --git a/data/sprites/official/fujin.1.zspr b/data/sprites/official/fujin.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..23ae8234312807be52609e66df801d7e5156bdf4 GIT binary patch literal 28870 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/lest.1.zspr b/data/sprites/official/lest.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..997649247820f3a5914a92836fa8fba2a1ac3bb2 GIT binary patch literal 28874 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/matthias.1.zspr b/data/sprites/official/matthias.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..062dae6d8cf6d7f037585a5866a282ac24909d53 GIT binary patch literal 28881 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 WaLa9=Q+uwFxr;Y*%jXB*cKvV6UP~hY diff --git a/data/sprites/official/piranha_plant.1.zspr b/data/sprites/official/piranha_plant.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..59bf4d0d487cd5b308538471181ec8534fe806a1 GIT binary patch literal 28883 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 a^OZ{%iriO9HGj2KbN45y=J8FtT>l>uhE^&7 literal 0 HcmV?d00001 diff --git a/data/sprites/official/ty.1.zspr b/data/sprites/official/ty.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..1091b298d3c2ea8d069637ed6257e3f3980db1fc GIT binary patch literal 28913 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 CLvo)0 literal 0 HcmV?d00001 diff --git a/data/sprites/official/vaporeon.1.zspr b/data/sprites/official/vaporeon.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..55372722711c3fe5649246cff0b58ce93505ef35 GIT binary patch literal 28864 zcmeHweRy1Fb?3Psnz^#anrn$zV@uYIVmAup!{a!_N~~BnA0-aNwFrHR6Wn@20`^lv ztdNihVyxT56fc{CmhwN;Sai~Ddq7~yvfCwM1?eHw`|dZ8()amQNbGzj_XVk zq1oT>eeb<=c8) z0ly8>VI&0Ok$e)!(a;a?a zL-AxA+m8mwp#O*r;z9mUCgeeBH?m^NQG^jum09DbGK+_BM)m)@;s5LL@^dFX)ZG8Y zA={_>|0mDoj&FLnx&M2z&8;6UHjiGh5@YMpYpXSnUM<7&&!qont!P`3cXO`c7`9j< zg<_%Tc9TV_Qe@+G@2&xE)j1u*R`s{YkoOKqF!QT?A7`c4+_Z>hv| zjQ9@w9p&GO+h447$OWafm&EPIh@UEbFZaH<{k6=beAzyBYux_ZT4jf^wbB31O3_%= z+vxvYV{*!Wq0#@DOwB*JyU~By(RM?5le5jLNgezuozka9Z(9}t!l~g0awpuQK@sU~ zA~SMCjo#4^0YEhVuetxKkXQIH1=64aIlIl)l}2$c38DeF%Bb8O2Q3iOd2(4Cv=uHV zFM=v?Ycd%J1+!B#eh;|@V!Q|oz3Tq*4jn{e-#?RQdq6l zf@6({dFdK|)hnjI8h)WTm>q?rO+mk;n&XDGa8{b?FUVe;LKSlPBliIV+IA{uSQeUjNsJR?M1s#D3KIu^gAD2D6s+=#R+#a;F@Ter6WT z`mpRt&&wdFrYfI7*$ONawIdENW=`&t56RbLmrmb_CGK8Sn7~>L@;d1N<8*m}rc?`23I)z`V=2&<;mHwyp=1))q^gLW_yN$$ zaRYXs!Fi*IHeAAPtwrq?u)E_v&PvU%PR+V=^NF}qlk>rc*1J@NwRNC7c9t+gmw zeHkdlY>GfBQ8?p&9Ax>ySpJOor{p#tQR>^0j&B%*mEFu-K1dg2Uc~wdh>YlscA0HzK_y^~!lt1QS`71dalbVQVk_= zxXXA{{VV}R;S>Dw4f)T&59P4^U*rk)e;)pvDxn{udJAOXNPwdF45KssKMOwVr~Iq| z8~77ZM>qn+$6&WuStD;3b3Gh(vzdei6km{;;BmBVP|lbB8k*_?vme8%X8&vUQTJr# zBTFAKUX-t6KFn)mtwSl}v2-qh1?hKp7AQDF%3t= z;M$2%oRKdl$*QDj9n8t1)}qrx8Ndjx{Z=GLRE82p|Cs!<{CBV{Aiy()h+}M!K$(1( zu@)4xP!`}1nCl>eV=07mVjq|90_8CNBJAUcA{|7Kvx?b4S?AspM?kZrE)@sM0axEA zohRc65+-yh6@>h{%y^IdzHuHZ22g&jl}n6HP=kUd`NtNpWPYUjr{Umr>+U$HLFBvAi1nXkC7;@t%C}SmNs=)PcT2USe3zVZ~%~@{t zfLz`vgIqhXfA|G3uunFF{wFbyK1YqrNcvZ>z{ux{knOBEBiRf%m?{iPMg(9A znK%27%dIE@%tQRLzfTH&02;?EzXRm5P?lTk>_O*z8R$cYxc+xzeqE$H-viB|1;L@x ztb4Hx905LC(2rCH>A-D;WTXUK1lF^NP5DO&$X57Ow|}hW_Ip%UA;$v9KOcV{N|_-3 zFBsexmmRie^F@d91KPP^Z`b1%w`&%o?*!AOntLba4{i3)`*Pg-IM*-i`xkD1;50`T z2(WX2fxxtD3j}Qt0AEctED#`VlB6$+f@TfcAOP87v3u+4UFWaKJ?q~DqUZaS}3TM-@KleYg;bd_6l|}`|k9@gU z`AmiQq&8GIMd>@V&zpeoQ4ua?&;zi3tKjsNH)P%_+lD(4mTb0ASX*9IS}t7`1jC@< z9?7*=J}O7sW|$s^g~GAiNqe76E1qZED?pO~K^}izzWL#K$*&%KHTy#V`vZ0eDf`1N z=x+ah_6OP4Y=Ib58-i604d`gI1!8ud1;Y5fOs`RdC|oB+r(5#9y*)jopKf$r5z7Xz z>VFEF>kq|7uIdCvtb%oix@U+y#;&&2M&9gz(xmJ!hS3Htrt~4U$oR1Lg#Qo(^^`wF z1m7=XA*c3HVzN|6FRlOh_@YHEZ#0$eT?_|<9b=15v@9@NP=t}6d$9i9=O!k`zvvAy ze=R#}oob!fG(O~wla`D{_x|ylzxCoht4801omgqqxYzv0H~-zbgM%I($WaOXyJX6r0s6n;fCGVCg?|APn zq!q>C&R|u^bq&J>6=y{bIInY7mM4SdsO-hhd9^=Dp$$xx>Z5e9`Pd z-8rL$+i3-=4VJj=ZjbxAU^=LR`g8JbYJD?OLKZHl55j(>>~Gi7{#F=WINGW0Z>zQa ztql8}vcG+T_P4^^)Z9!)+28Kh_P3n$oD)fqDWhi0+J{}(FSP~p?b)|kL#3b|Nsvdi z1#=Fn%q|}mOj}zpW9~Nw%cJf(DKzYl9EogVe{^SabIyM0Z`dC>ih)RwduG8i3qEbm znMbkz0QFrfz3%O>pIo7a0Xp?6xm4x~v)Df%``^p=(1H+YKK?LQ@3im4&IQZ^%wJxp~MTo))uy(jE!fK$BGc7h%`pDy4BVln*F!0eU}y-jx-4b`w;w4r`U1hxHX= zuZ#xeu?_ByBye~FKWBoIXu$@ew`zjCxM2#_oDWbSVNTlm&2ar?7|0MKiWb1$N0CvP|y-#<7*fQd&>LIogJ&8 zVvN3rD6f(J%kyghHnOj$o3lPGE|}nA*-3#5DF9IFwryK$tQF1ijhJ+TTh=4 zkwTL5p{IkTg%`pj@%hlQ!qJclQ?q_(TCsH3=ToKx-DB6^0 zVaQ{;V4vjrsCyULCt;r`Z67~Yx)qZ;fUObmU4O6o3seQ%X^A|FKmAKZCLfn?Jnx$B zYkEqBUP~Dide^UBUmjfC)6+ve9%DZ@KIfb&9F^Vo7JecoIO1`|86!~%34Y0TIid}G zM=eh=zOh@Jd$APG$LE>-Z(8dup5byq|D3tLZ=&xwt|wZHanCRC(4l%>WSCsA!Qt`@B1)T36!&2vsNK}?d^I-(@Y+u75 ziV!V`lR;qts5AjAc4E;G9)qTlIE2iw;(E1s)`1x@A7xduRbyw2faur`rgJQkw#vt<%RC+8XBt0_t;9cm_U}o1)}6BM zlSeYgwf;)`G41c3E~AW&mcgNTI9&lgLX}$4=_?hhtuEbO-X$LpL!Z9o!ERAk_Q_Ux zy7XfCC-Nf9u}=+yY95f?@-cAK0hUlyX4+C|M|p(QVE~iHIP#o=G5KQz*FoU?8R+94 z*8W3q&@&*&i;yALAjt@!`D^@D(o;t+&4^Lxq*A_LHc3TZ2=&pB40}t(HC8*3rsd0a zw3lNR#6y=97Ep%KzxYAAa-3htmE>pZ)8H{x;=*^x4l||Io(B|422gp`jw!$W6yo-@WyXzglDajEgL_2 z?O(N?nuC<(iC?@b#^tBJeG4l_4ZYJ4f9ud3^q?-35Y-$vAj+$w4V;tCfjR(woDhBc zTg;DRubfSy=M&&%-V0bU%SpPI{L(+DUwTVNpxWiJ=}p?)b3w7NZE z6^FN`@;~~dJ)_oEmQWoXDgMQxa%;iZXe>pz7U%Y>E57P;pν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 n*eA!zu`|V+Vb{v$?w{+|1JLq{Y}xZ literal 0 HcmV?d00001 diff --git a/data/sprites/official/vegeta.1.zspr b/data/sprites/official/vegeta.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..b4f46019354451faf74b21e2eff63446af9590a8 GIT binary patch literal 28866 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 Bi}e5i literal 0 HcmV?d00001 diff --git a/data/sprites/official/wolf_link.1.zspr b/data/sprites/official/wolf_link.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..5ee07dcb195eb9dfeabf9ff6ea3938a10bada726 GIT binary patch literal 28910 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 literal 0 HcmV?d00001 diff --git a/data/sprites/official/wolf_link_tp.1.zspr b/data/sprites/official/wolf_link_tp.1.zspr new file mode 100644 index 0000000000000000000000000000000000000000..9627cd73d471fcc66e0c92cd6db4d7be5ad72e9d GIT binary patch literal 28877 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 G8~+=P#EF>z literal 0 HcmV?d00001 From f479c8dc233990dc73bba3a4cb5195e4a468d869 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 02:14:22 +0100 Subject: [PATCH 066/185] dont throw on __len__ attribute --- BaseClasses.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BaseClasses.py b/BaseClasses.py index a782aa08..dd555d1a 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -626,6 +626,8 @@ class CollectionState(object): return self.can_reach(item[10]) #elif item.startswith('has_'): # return self.has(item[4]) + if item == '__len__': + return raise RuntimeError('Cannot parse %s.' % item) From 0dcb5ba73bab768538bb02b405667f14b03bb620 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 02:15:03 +0100 Subject: [PATCH 067/185] gui: print exception when gen fails --- Gui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gui.py b/Gui.py index 0eae8dee..8f7ec87f 100755 --- a/Gui.py +++ b/Gui.py @@ -2,6 +2,7 @@ from argparse import Namespace from glob import glob import json +import logging import random import os import shutil @@ -418,6 +419,7 @@ def guiMain(args=None): else: main(seed=guiargs.seed, args=guiargs) except Exception as e: + logging.exception(e) messagebox.showerror(title="Error while creating seed", message=str(e)) else: msgtxt = "Rom patched successfully" @@ -540,6 +542,7 @@ def guiMain(args=None): try: adjust(args=guiargs) except Exception as e: + logging.exception(e) messagebox.showerror(title="Error while creating seed", message=str(e)) else: msgtxt = "Rom patched successfully" From 1a60d263ff6fcc5f496a49e85945fc947620b0f7 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 03:01:13 +0100 Subject: [PATCH 068/185] client: accept rom names smaller than 21b --- MultiClient.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/MultiClient.py b/MultiClient.py index a112715c..cd9c997b 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -621,12 +621,13 @@ async def process_server_cmd(ctx : Context, cmd, args): if cmd == 'Connected': ctx.expected_rom = args - if ctx.last_rom == ctx.expected_rom: - rom_confirmed(ctx) - if ctx.locations_checked: - await send_msgs(ctx.socket, [['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]]) - elif ctx.last_rom is not None: - raise Exception('Different ROM expected from server') + if ctx.last_rom is not None: + if ctx.last_rom[:len(args)] == ctx.expected_rom: + rom_confirmed(ctx) + if ctx.locations_checked: + await send_msgs(ctx.socket, [['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]]) + else: + raise Exception('Different ROM expected from server') if cmd == 'ReceivedItems': start_index, items = args @@ -829,7 +830,7 @@ async def game_watcher(ctx : Context): ctx.last_rom = list(rom) ctx.locations_checked = set() if ctx.expected_rom is not None: - if ctx.last_rom != ctx.expected_rom: + if ctx.last_rom[:len(ctx.expected_rom)] != ctx.expected_rom: print("Wrong ROM detected") await ctx.snes_socket.close() continue From c773b62dfed9e4125388ed7caff626b9253fb46d Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 03:21:49 +0100 Subject: [PATCH 069/185] adjuster: disable_music for the old msu code --- Rom.py | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) diff --git a/Rom.py b/Rom.py index 160ef4b5..dc1c7286 100644 --- a/Rom.py +++ b/Rom.py @@ -1128,6 +1128,108 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr rom.write_byte(0x18004B, 0x01 if quickswap else 0x00) + music_volumes = [ + (0x00, [0xD373B, 0xD375B, 0xD90F8]), + (0x14, [0xDA710, 0xDA7A4, 0xDA7BB, 0xDA7D2]), + (0x3C, [0xD5954, 0xD653B, 0xDA736, 0xDA752, 0xDA772, 0xDA792]), + (0x50, [0xD5B47, 0xD5B5E]), + (0x54, [0xD4306]), + (0x64, + [0xD6878, 0xD6883, 0xD6E48, 0xD6E76, 0xD6EFB, 0xD6F2D, 0xDA211, 0xDA35B, 0xDA37B, 0xDA38E, 0xDA39F, 0xDA5C3, + 0xDA691, 0xDA6A8, 0xDA6DF]), + (0x78, + [0xD2349, 0xD3F45, 0xD42EB, 0xD48B9, 0xD48FF, 0xD543F, 0xD5817, 0xD5957, 0xD5ACB, 0xD5AE8, 0xD5B4A, 0xDA5DE, + 0xDA608, 0xDA635, + 0xDA662, 0xDA71F, 0xDA7AF, 0xDA7C6, 0xDA7DD]), + (0x82, [0xD2F00, 0xDA3D5]), + (0xA0, + [0xD249C, 0xD24CD, 0xD2C09, 0xD2C53, 0xD2CAF, 0xD2CEB, 0xD2D91, 0xD2EE6, 0xD38ED, 0xD3C91, 0xD3CD3, 0xD3CE8, + 0xD3F0C, + 0xD3F82, 0xD405F, 0xD4139, 0xD4198, 0xD41D5, 0xD41F6, 0xD422B, 0xD4270, 0xD42B1, 0xD4334, 0xD4371, 0xD43A6, + 0xD43DB, + 0xD441E, 0xD4597, 0xD4B3C, 0xD4BAB, 0xD4C03, 0xD4C53, 0xD4C7F, 0xD4D9C, 0xD5424, 0xD65D2, 0xD664F, 0xD6698, + 0xD66FF, + 0xD6985, 0xD6C5C, 0xD6C6F, 0xD6C8E, 0xD6CB4, 0xD6D7D, 0xD827D, 0xD960C, 0xD9828, 0xDA233, 0xDA3A2, 0xDA49E, + 0xDA72B, + 0xDA745, 0xDA765, 0xDA785, 0xDABF6, 0xDAC0D, 0xDAEBE, 0xDAFAC]), + (0xAA, [0xD9A02, 0xD9BD6]), + (0xB4, + [0xD21CD, 0xD2279, 0xD2E66, 0xD2E70, 0xD2EAB, 0xD3B97, 0xD3BAC, 0xD3BE8, 0xD3C0D, 0xD3C39, 0xD3C68, 0xD3C9F, + 0xD3CBC, + 0xD401E, 0xD4290, 0xD443E, 0xD456F, 0xD47D3, 0xD4D43, 0xD4DCC, 0xD4EBA, 0xD4F0B, 0xD4FE5, 0xD5012, 0xD54BC, + 0xD54D5, + 0xD54F0, 0xD5509, 0xD57D8, 0xD59B9, 0xD5A2F, 0xD5AEB, 0xD5E5E, 0xD5FE9, 0xD658F, 0xD674A, 0xD6827, 0xD69D6, + 0xD69F5, + 0xD6A05, 0xD6AE9, 0xD6DCF, 0xD6E20, 0xD6ECB, 0xD71D4, 0xD71E6, 0xD7203, 0xD721E, 0xD8724, 0xD8732, 0xD9652, + 0xD9698, + 0xD9CBC, 0xD9DC0, 0xD9E49, 0xDAA68, 0xDAA77, 0xDAA88, 0xDAA99, 0xDAF04]), + (0x8c, + [0xD1D28, 0xD1D41, 0xD1D5C, 0xD1D77, 0xD1EEE, 0xD311D, 0xD31D1, 0xD4148, 0xD5543, 0xD5B6F, 0xD65B3, 0xD6760, + 0xD6B6B, + 0xD6DF6, 0xD6E0D, 0xD73A1, 0xD814C, 0xD825D, 0xD82BE, 0xD8340, 0xD8394, 0xD842C, 0xD8796, 0xD8903, 0xD892A, + 0xD91E8, + 0xD922B, 0xD92E0, 0xD937E, 0xD93C1, 0xDA958, 0xDA971, 0xDA98C, 0xDA9A7]), + (0xC8, + [0xD1D92, 0xD1DBD, 0xD1DEB, 0xD1F5D, 0xD1F9F, 0xD1FBD, 0xD1FDC, 0xD1FEA, 0xD20CA, 0xD21BB, 0xD22C9, 0xD2754, + 0xD284C, + 0xD2866, 0xD2887, 0xD28A0, 0xD28BA, 0xD28DB, 0xD28F4, 0xD293E, 0xD2BF3, 0xD2C1F, 0xD2C69, 0xD2CA1, 0xD2CC5, + 0xD2D05, + 0xD2D73, 0xD2DAF, 0xD2E3D, 0xD2F36, 0xD2F46, 0xD2F6F, 0xD2FCF, 0xD2FDF, 0xD302B, 0xD3086, 0xD3099, 0xD30A5, + 0xD30CD, + 0xD30F6, 0xD3154, 0xD3184, 0xD333A, 0xD33D9, 0xD349F, 0xD354A, 0xD35E5, 0xD3624, 0xD363C, 0xD3672, 0xD3691, + 0xD36B4, + 0xD36C6, 0xD3724, 0xD3767, 0xD38CB, 0xD3B1D, 0xD3B2F, 0xD3B55, 0xD3B70, 0xD3B81, 0xD3BBF, 0xD3F65, 0xD3FA6, + 0xD404F, + 0xD4087, 0xD417A, 0xD41A0, 0xD425C, 0xD4319, 0xD433C, 0xD43EF, 0xD440C, 0xD4452, 0xD4494, 0xD44B5, 0xD4512, + 0xD45D1, + 0xD45EF, 0xD4682, 0xD46C3, 0xD483C, 0xD4848, 0xD4855, 0xD4862, 0xD486F, 0xD487C, 0xD4A1C, 0xD4A3B, 0xD4A60, + 0xD4B27, + 0xD4C7A, 0xD4D12, 0xD4D81, 0xD4E90, 0xD4ED6, 0xD4EE2, 0xD5005, 0xD502E, 0xD503C, 0xD5081, 0xD51B1, 0xD51C7, + 0xD51CF, + 0xD51EF, 0xD520C, 0xD5214, 0xD5231, 0xD5257, 0xD526D, 0xD5275, 0xD52AF, 0xD52BD, 0xD52CD, 0xD52DB, 0xD549C, + 0xD5801, + 0xD58A4, 0xD5A68, 0xD5A7F, 0xD5C12, 0xD5D71, 0xD5E10, 0xD5E9A, 0xD5F8B, 0xD5FA4, 0xD651A, 0xD6542, 0xD65ED, + 0xD661D, + 0xD66D7, 0xD6776, 0xD68BD, 0xD68E5, 0xD6956, 0xD6973, 0xD69A8, 0xD6A51, 0xD6A86, 0xD6B96, 0xD6C3E, 0xD6D4A, + 0xD6E9C, + 0xD6F80, 0xD717E, 0xD7190, 0xD71B9, 0xD811D, 0xD8139, 0xD816B, 0xD818A, 0xD819E, 0xD81BE, 0xD829C, 0xD82E1, + 0xD8306, + 0xD830E, 0xD835E, 0xD83AB, 0xD83CA, 0xD83F0, 0xD83F8, 0xD844B, 0xD8479, 0xD849E, 0xD84CB, 0xD84EB, 0xD84F3, + 0xD854A, + 0xD8573, 0xD859D, 0xD85B4, 0xD85CE, 0xD862A, 0xD8681, 0xD87E3, 0xD87FF, 0xD887B, 0xD88C6, 0xD88E3, 0xD8944, + 0xD897B, + 0xD8C97, 0xD8CA4, 0xD8CB3, 0xD8CC2, 0xD8CD1, 0xD8D01, 0xD917B, 0xD918C, 0xD919A, 0xD91B5, 0xD91D0, 0xD91DD, + 0xD9220, + 0xD9273, 0xD9284, 0xD9292, 0xD92AD, 0xD92C8, 0xD92D5, 0xD9311, 0xD9322, 0xD9330, 0xD934B, 0xD9366, 0xD9373, + 0xD93B6, + 0xD97A6, 0xD97C2, 0xD97DC, 0xD97FB, 0xD9811, 0xD98FF, 0xD996F, 0xD99A8, 0xD99D5, 0xD9A30, 0xD9A4E, 0xD9A6B, + 0xD9A88, + 0xD9AF7, 0xD9B1D, 0xD9B43, 0xD9B7C, 0xD9BA9, 0xD9C84, 0xD9C8D, 0xD9CAC, 0xD9CE8, 0xD9CF3, 0xD9CFD, 0xD9D46, + 0xDA35E, + 0xDA37E, 0xDA391, 0xDA478, 0xDA4C3, 0xDA4D7, 0xDA4F6, 0xDA515, 0xDA6E2, 0xDA9C2, 0xDA9ED, 0xDAA1B, 0xDAA57, + 0xDABAF, + 0xDABC9, 0xDABE2, 0xDAC28, 0xDAC46, 0xDAC63, 0xDACB8, 0xDACEC, 0xDAD08, 0xDAD25, 0xDAD42, 0xDAD5F, 0xDAE17, + 0xDAE34, + 0xDAE51, 0xDAF2E, 0xDAF55, 0xDAF6B, 0xDAF81, 0xDB14F, 0xDB16B, 0xDB180, 0xDB195, 0xDB1AA]), + (0xD2, [0xD2B88, 0xD364A, 0xD369F, 0xD3747]), + (0xDC, + [0xD213F, 0xD2174, 0xD229E, 0xD2426, 0xD4731, 0xD4753, 0xD4774, 0xD4795, 0xD47B6, 0xD4AA5, 0xD4AE4, 0xD4B96, + 0xD4CA5, + 0xD5477, 0xD5A3D, 0xD6566, 0xD672C, 0xD67C0, 0xD69B8, 0xD6AB1, 0xD6C05, 0xD6DB3, 0xD71AB, 0xD8E2D, 0xD8F0D, + 0xD94E0, + 0xD9544, 0xD95A8, 0xD9982, 0xD9B56, 0xDA694, 0xDA6AB, 0xDAE88, 0xDAEC8, 0xDAEE6, 0xDB1BF]), + (0xE6, [0xD210A, 0xD22DC, 0xD2447, 0xD5A4D, 0xD5DDC, 0xDA251, 0xDA26C]), + (0xF0, [0xD945E, 0xD967D, 0xD96C2, 0xD9C95, 0xD9EE6, 0xDA5C6]), + (0xFA, + [0xD2047, 0xD24C2, 0xD24EC, 0xD25A4, 0xD51A8, 0xD51E6, 0xD524E, 0xD529E, 0xD6045, 0xD81DE, 0xD821E, 0xD94AA, + 0xD9A9E, + 0xD9AE4, 0xDA289]), + (0xFF, [0xD2085, 0xD21C5, 0xD5F28]) + ] + for volume, addresses in music_volumes: + for address in addresses: + rom.write_byte(address, volume if not disable_music else 0x00) + rom.write_byte(0x18021A, 1 if disable_music else 0x00) # restore Mirror sound effect volumes (for existing seeds that lack it) From d87cb2c380bb3eca65348f2766846d67c09f81df Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 19:21:05 +0100 Subject: [PATCH 070/185] BaseClasses: do not tag every location as locked by default --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index dd555d1a..ff266bab 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -795,7 +795,7 @@ class Location(object): self.recursion_count = 0 self.staleness_count = 0 self.event = False - self.locked = True + self.locked = False self.always_allow = lambda item, state: False self.access_rule = lambda state: True self.item_rule = lambda item: True From d6ec10d9caa5349f98a5d353ba383807c679f848 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 19:23:12 +0100 Subject: [PATCH 071/185] Fill: MW balance: optimize lock check and do a sanity check to make sure the replacement location can receive the item --- Fill.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Fill.py b/Fill.py index 8944402a..57680cbb 100644 --- a/Fill.py +++ b/Fill.py @@ -351,7 +351,7 @@ def balance_multiworld_progression(world): for location in balancing_sphere: if location.event: balancing_state.collect(location.item, True, location) - if location.item.player in balancing_players: + if location.item.player in balancing_players and not location.locked: candidate_items.append(location) balancing_sphere = get_sphere_locations(balancing_state, balancing_unchecked_locations) for location in balancing_sphere: @@ -373,9 +373,6 @@ def balance_multiworld_progression(world): reducing_state.sweep_for_events(locations=locations_to_test) - if testing.locked: - continue - if world.has_beaten_game(balancing_state): if not world.has_beaten_game(reducing_state): items_to_replace.append(testing) @@ -389,6 +386,11 @@ def balance_multiworld_progression(world): while replacement_locations and items_to_replace: new_location = replacement_locations.pop() old_location = items_to_replace.pop() + + while not new_location.can_fill(state, old_location.item): + replacement_locations.insert(0, new_location) + new_location = replacement_locations.pop() + new_location.item, old_location.item = old_location.item, new_location.item new_location.event, old_location.event = True, False state.collect(new_location.item, True, new_location) From 4cf7412b51827ec84ad7121dc5bed6c36c036d5e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 20:00:56 +0100 Subject: [PATCH 072/185] EntranceShuffle: remove default castle connections to light world --- EntranceShuffle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 79204d88..1cebd6f9 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -3237,7 +3237,7 @@ default_connections = [('Waterfall of Wishing', 'Waterfall of Wishing'), ('Lumberjack House', 'Lumberjack House'), ("Hyrule Castle Secret Entrance Drop", "Hyrule Castle Secret Entrance"), ("Hyrule Castle Secret Entrance Stairs", "Hyrule Castle Secret Entrance"), - ("Hyrule Castle Secret Entrance Exit", "Light World"), + ("Hyrule Castle Secret Entrance Exit", "Hyrule Castle Courtyard"), ('Bonk Fairy (Light)', 'Bonk Fairy (Light)'), ('Lake Hylia Fairy', 'Lake Hylia Healer Fairy'), ('Lake Hylia Fortune Teller', 'Lake Hylia Fortune Teller'), @@ -3548,7 +3548,7 @@ default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace ('Hyrule Castle Entrance (South)', 'Hyrule Castle'), ('Hyrule Castle Entrance (West)', 'Hyrule Castle'), ('Hyrule Castle Entrance (East)', 'Hyrule Castle'), - ('Hyrule Castle Exit (South)', 'Light World'), + ('Hyrule Castle Exit (South)', 'Hyrule Castle Courtyard'), ('Hyrule Castle Exit (West)', 'Hyrule Castle Ledge'), ('Hyrule Castle Exit (East)', 'Hyrule Castle Ledge'), ('Agahnims Tower', 'Agahnims Tower'), From abfb57af23f7d06d86bccb05fa4e18c7d54b9d0e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 10 Dec 2019 21:21:38 +0100 Subject: [PATCH 073/185] ItemList: use a dict for placed_items --- ItemList.py | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/ItemList.py b/ItemList.py index aeb7e106..15c99a50 100644 --- a/ItemList.py +++ b/ItemList.py @@ -184,7 +184,7 @@ def generate_itempool(world, player): world.itempool += ItemFactory(pool, player) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) - for (location, item) in placed_items: + for (location, item) in placed_items.items(): world.push_item(world.get_location(location, player), ItemFactory(item, player), False) world.get_location(location, player).event = True world.get_location(location, player).locked = True @@ -347,7 +347,7 @@ def set_up_shops(world, player): def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, retro): pool = [] - placed_items = [] + placed_items = {} precollected_items = [] clock_mode = None treasure_hunt_count = None @@ -355,6 +355,10 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r pool.extend(alwaysitems) + def place_item(loc, item): + assert loc not in placed_items + placed_items[loc] = item + def want_progressives(): return random.choice([True, False]) if progressive == 'random' else progressive == 'on' @@ -367,8 +371,8 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r # insanity shuffle doesn't have fake LW/DW logic so for now guaranteed Mirror and Moon Pearl at the start if shuffle == 'insanity_legacy': - placed_items.append(('Link\'s House', 'Magic Mirror')) - placed_items.append(('Sanctuary', 'Moon Pearl')) + place_item('Link\'s House', 'Magic Mirror') + place_item('Sanctuary', 'Moon Pearl') else: pool.extend(['Magic Mirror', 'Moon Pearl']) @@ -429,13 +433,13 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r swords_to_use.extend(['Fighter Sword']) random.shuffle(swords_to_use) - placed_items.append(('Link\'s Uncle', swords_to_use.pop())) - placed_items.append(('Blacksmith', swords_to_use.pop())) - placed_items.append(('Pyramid Fairy - Left', swords_to_use.pop())) + place_item('Link\'s Uncle', swords_to_use.pop()) + place_item('Blacksmith', swords_to_use.pop()) + place_item('Pyramid Fairy - Left', swords_to_use.pop()) if goal != 'pedestal': - placed_items.append(('Master Sword Pedestal', swords_to_use.pop())) + place_item('Master Sword Pedestal', swords_to_use.pop()) else: - placed_items.append(('Master Sword Pedestal', 'Triforce')) + place_item('Master Sword Pedestal', 'Triforce') else: if want_progressives(): pool.extend(diff.progressivesword) @@ -466,7 +470,7 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r extraitems -= len(extra) if goal == 'pedestal' and swords != 'vanilla': - placed_items.append(('Master Sword Pedestal', 'Triforce')) + place_item('Master Sword Pedestal', 'Triforce') if retro: pool = [item.replace('Single Arrow','Rupees (5)') for item in pool] pool = [item.replace('Arrows (10)','Rupees (5)') for item in pool] @@ -475,19 +479,23 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r pool.extend(diff.retro) if mode == 'standard': key_location = random.choice(['Secret Passage', 'Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest', 'Sewers - Dark Cross']) - placed_items.append((key_location, 'Small Key (Universal)')) + place_item(key_location, 'Small Key (Universal)') else: pool.extend(['Small Key (Universal)']) return (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, swords, retro, customitemarray): pool = [] - placed_items = [] + placed_items = {} precollected_items = [] clock_mode = None treasure_hunt_count = None treasure_hunt_icon = None + def place_item(loc, item): + assert loc not in placed_items + placed_items[loc] = item + # Correct for insanely oversized item counts and take initial steps to handle undersized pools. for x in range(0, 66): if customitemarray[x] > total_items_to_place: @@ -594,13 +602,13 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s clock_mode = 'ohko' if goal == 'pedestal': - placed_items.append(('Master Sword Pedestal', 'Triforce')) + place_item('Master Sword Pedestal', 'Triforce') itemtotal = itemtotal + 1 if mode == 'standard': if retro: key_location = random.choice(['Secret Passage', 'Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest', 'Sewers - Dark Cross']) - placed_items.append((key_location, 'Small Key (Universal)')) + place_item(key_location, 'Small Key (Universal)') pool.extend(['Small Key (Universal)'] * max((customitemarray[70] - 1), 0)) else: pool.extend(['Small Key (Universal)'] * customitemarray[70]) @@ -611,8 +619,8 @@ def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, s pool.extend(['Progressive Sword'] * customitemarray[36]) if shuffle == 'insanity_legacy': - placed_items.append(('Link\'s House', 'Magic Mirror')) - placed_items.append(('Sanctuary', 'Moon Pearl')) + place_item('Link\'s House', 'Magic Mirror') + place_item('Sanctuary', 'Moon Pearl') pool.extend(['Magic Mirror'] * max((customitemarray[22] -1 ), 0)) pool.extend(['Moon Pearl'] * max((customitemarray[28] - 1), 0)) else: From 6d50e905e12b7c3e83c1c429750903b8227af697 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 11 Dec 2019 11:37:05 +0100 Subject: [PATCH 074/185] Fix beatable-only prizes and dungeon items in multiworld --- Dungeons.py | 2 +- Fill.py | 9 +++++++-- ItemList.py | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Dungeons.py b/Dungeons.py index 3e412f70..8872e521 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -150,7 +150,7 @@ def fill_dungeons_restrictive(world, shuffled_locations): sort_order = {"BigKey": 3, "SmallKey": 2} dungeon_items.sort(key=lambda item: sort_order.get(item.type, 1)) - fill_restrictive(world, all_state_base, shuffled_locations, dungeon_items) + fill_restrictive(world, all_state_base, shuffled_locations, dungeon_items, True) diff --git a/Fill.py b/Fill.py index 57680cbb..70eddca9 100644 --- a/Fill.py +++ b/Fill.py @@ -161,7 +161,7 @@ def distribute_items_staleness(world): logging.getLogger('').debug('Unplaced items: %s - Unfilled Locations: %s', [item.name for item in itempool], [location.name for location in fill_locations]) -def fill_restrictive(world, base_state, locations, itempool): +def fill_restrictive(world, base_state, locations, itempool, single_player = False): def sweep_from_pool(): new_state = base_state.copy() for item in itempool: @@ -184,12 +184,17 @@ def fill_restrictive(world, base_state, locations, itempool): maximum_exploration_state = sweep_from_pool() perform_access_check = True - if world.accessibility == 'none': + if world.accessibility == 'none' and not single_player: perform_access_check = not world.has_beaten_game(maximum_exploration_state) for item_to_place in items_to_place: spot_to_fill = None for location in locations: + if single_player: + if location.player != item_to_place.player: + continue + if world.accessibility == 'none': + perform_access_check = not world.has_beaten_game(maximum_exploration_state, location.player) if location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): spot_to_fill = location break diff --git a/ItemList.py b/ItemList.py index 15c99a50..ffe775df 100644 --- a/ItemList.py +++ b/ItemList.py @@ -312,7 +312,7 @@ def fill_prizes(world, attempts=15): prize_locs = list(empty_crystal_locations) random.shuffle(prizepool) random.shuffle(prize_locs) - fill_restrictive(world, all_state, prize_locs, prizepool) + fill_restrictive(world, all_state, prize_locs, prizepool, True) except FillError as e: logging.getLogger('').info("Failed to place dungeon prizes (%s). Will retry %s more times", e, attempts) for location in empty_crystal_locations: From 4ca063be54414afce9624a9646079e20fdd64f96 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 11 Dec 2019 11:41:05 +0100 Subject: [PATCH 075/185] Reimplement random weapon standard start, the previous one did not make sense in a multiworld context and rework castle chests logic, bombs start is now possible --- ItemList.py | 35 ++++++++++++++++++++++++++++++----- Rom.py | 5 +++++ Rules.py | 28 ++-------------------------- 3 files changed, 37 insertions(+), 31 deletions(-) diff --git a/ItemList.py b/ItemList.py index ffe775df..69d5a327 100644 --- a/ItemList.py +++ b/ItemList.py @@ -35,7 +35,7 @@ Difficulty = namedtuple('Difficulty', 'progressivesword', 'basicsword', 'basicbow', 'timedohko', 'timedother', 'triforcehunt', 'triforce_pieces_required', 'retro', 'extras', 'progressive_sword_limit', 'progressive_shield_limit', - 'progressive_armor_limit', 'progressive_bottle_limit', + 'progressive_armor_limit', 'progressive_bottle_limit', 'progressive_bow_limit', 'heart_piece_limit', 'boss_heart_container_limit']) total_items_to_place = 153 @@ -136,7 +136,7 @@ def generate_itempool(world, player): world.push_item(world.get_location('Ganon', player), ItemFactory('Nothing', player), False) else: world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) - + if world.goal in ['triforcehunt']: if world.mode == 'inverted': region = world.get_region('Light World',player) @@ -153,7 +153,7 @@ def generate_itempool(world, player): world.push_item(loc, ItemFactory('Triforce', player), False) loc.event = True loc.locked = True - + world.get_location('Ganon', player).event = True world.get_location('Ganon', player).locked = True world.push_item(world.get_location('Agahnim 1', player), ItemFactory('Beat Agahnim 1', player), False) @@ -181,16 +181,41 @@ def generate_itempool(world, player): world.rupoor_cost = min(world.customitemarray[69], 9999) else: (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro) - world.itempool += ItemFactory(pool, player) + for item in precollected_items: world.push_precollected(ItemFactory(item, player)) + + if world.mode == 'standard' and not world.state.has_blunt_weapon(player) and "Link's Uncle" not in placed_items: + found_sword = False + found_bow = False + possible_weapons = [] + for item in pool: + if item in ['Progressive Sword', 'Fighter Sword', 'Master Sword', 'Tempered Sword', 'Golden Sword']: + if not found_sword and world.swords != 'swordless': + found_sword = True + possible_weapons.append(item) + if item in ['Progressive Bow', 'Bow'] and not found_bow: + found_bow = True + possible_weapons.append(item) + if item in ['Hammer', 'Bombs (10)', 'Fire Rod', 'Cane of Somaria', 'Cane of Byrna']: + if item not in possible_weapons: + possible_weapons.append(item) + starting_weapon = random.choice(possible_weapons) + placed_items["Link's Uncle"] = starting_weapon + pool.remove(starting_weapon) + for (location, item) in placed_items.items(): world.push_item(world.get_location(location, player), ItemFactory(item, player), False) world.get_location(location, player).event = True world.get_location(location, player).locked = True + + world.itempool += ItemFactory(pool, player) + world.lamps_needed_for_dark_rooms = lamps_needed_for_dark_rooms + if clock_mode is not None: world.clock_mode = clock_mode + if treasure_hunt_count is not None: world.treasure_hunt_count = treasure_hunt_count if treasure_hunt_icon is not None: @@ -235,7 +260,7 @@ take_any_locations = [ def set_up_take_anys(world, player): if world.mode == 'inverted' and 'Dark Sanctuary Hint' in take_any_locations: take_any_locations.remove('Dark Sanctuary Hint') - + regions = random.sample(take_any_locations, 5) old_man_take_any = Region("Old Man Sword Cave", RegionType.Cave, 'the sword cave', player) diff --git a/Rom.py b/Rom.py index dc1c7286..c8dcec01 100644 --- a/Rom.py +++ b/Rom.py @@ -998,6 +998,11 @@ def patch_rom(world, player, rom): 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) + 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) 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) diff --git a/Rules.py b/Rules.py index 0a3acfed..3c2bc18c 100644 --- a/Rules.py +++ b/Rules.py @@ -696,9 +696,6 @@ 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 - forbid_item(world.get_location('Hyrule Castle - Boomerang Chest', player), 'Small Key (Escape)', player) - forbid_item(world.get_location('Hyrule Castle - Zelda\'s Chest', player), 'Small Key (Escape)', player) - 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)) @@ -723,32 +720,11 @@ def swordless_rules(world, player): set_rule(world.get_entrance('Misery Mire', player), lambda state: 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)) -def standard_rules(world, player): - add_rule(world.get_entrance('Sewers Door', player), lambda state: state.can_kill_most_things(player)) +def standard_rules(world, player): set_rule(world.get_entrance('Hyrule Castle Exit (East)', player), lambda state: state.can_reach('Sanctuary', 'Region', player)) set_rule(world.get_entrance('Hyrule Castle Exit (West)', player), lambda state: state.can_reach('Sanctuary', 'Region', player)) - # ensures the required weapon for escape lands on uncle (unless player has it pre-equipped) - add_rule(world.get_location('Secret Passage', player), lambda state: state.can_kill_most_things(player)) - add_rule(world.get_location('Hyrule Castle - Map Chest', player), lambda state: state.can_kill_most_things(player)) - - def uncle_item_rule(item): - copy_state = CollectionState(world) - copy_state.collect(item) - copy_state.sweep_for_events() - return copy_state.can_reach('Sanctuary', 'Region', player) - - add_item_rule(world.get_location('Link\'s Uncle', player), uncle_item_rule) - - # easiest way to enforce key placement not relevant for open - set_rule(world.get_location('Sewers - Dark Cross', player), lambda state: state.can_kill_most_things(player)) - - set_rule(world.get_location('Hyrule Castle - Boomerang Chest', player), lambda state: state.can_kill_most_things(player)) - set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest', player), lambda state: state.can_kill_most_things(player)) - - - def set_trock_key_rules(world, player): @@ -1191,7 +1167,7 @@ def set_inverted_big_bomb_rules(world, player): 'Dark Desert Hint', 'Dark Desert Fairy', 'Misery Mire'] - LW_bush_entrances = ['Bush Covered House', + LW_bush_entrances = ['Bush Covered House', 'Light World Bomb Hut', 'Graveyard Cave'] From 25068bcfdd0c39ee92a1675752fcff2c7eee2cc7 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 12 Dec 2019 09:20:32 +0100 Subject: [PATCH 076/185] Added an option to pre-open the pyramid hole (aka "fast ganon") --- BaseClasses.py | 1 + EntranceRandomizer.py | 4 +++- Gui.py | 4 ++++ Main.py | 1 + Rom.py | 4 ++-- Rules.py | 4 ++-- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index ff266bab..fc1dd304 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -76,6 +76,7 @@ class World(object): self.hints = hints self.crystals_needed_for_ganon = 7 self.crystals_needed_for_gt = 7 + self.open_pyramid = False self.dynamic_regions = [] self.dynamic_locations = [] self.spoiler = Spoiler(self) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 6e8af120..13155bd0 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -178,7 +178,9 @@ def start(): Random: Picks a random value between 0 and 7 (inclusive). 0-7: Number of crystals needed ''') - + parser.add_argument('--openpyramid', help='''\ + Pre-opens the pyramid hole, this removes the Agahnim 2 requirement for it + ''', action='store_true') parser.add_argument('--rom', default='Zelda no Densetsu - Kamigami no Triforce (Japan).sfc', help='Path to an ALttP JAP(1.0) rom to use as a base.') parser.add_argument('--loglevel', default='info', const='info', nargs='?', choices=['error', 'info', 'warning', 'debug'], help='Select level of logging for output.') parser.add_argument('--seed', help='Define seed number to generate.', type=int) diff --git a/Gui.py b/Gui.py index 8f7ec87f..f03d8377 100755 --- a/Gui.py +++ b/Gui.py @@ -61,6 +61,8 @@ def guiMain(args=None): suppressRomCheckbutton = Checkbutton(checkBoxFrame, text="Do not create patched Rom", variable=suppressRomVar) quickSwapVar = IntVar() quickSwapCheckbutton = Checkbutton(checkBoxFrame, text="Enabled L/R Item quickswapping", variable=quickSwapVar) + openpyramidVar = IntVar() + openpyramidCheckbutton = Checkbutton(checkBoxFrame, text="Pre-open Pyramid Hole", variable=openpyramidVar) keysanityVar = IntVar() keysanityCheckbutton = Checkbutton(checkBoxFrame, text="Keysanity (keys anywhere)", variable=keysanityVar) retroVar = IntVar() @@ -81,6 +83,7 @@ def guiMain(args=None): createSpoilerCheckbutton.pack(expand=True, anchor=W) suppressRomCheckbutton.pack(expand=True, anchor=W) quickSwapCheckbutton.pack(expand=True, anchor=W) + openpyramidCheckbutton.pack(expand=True, anchor=W) keysanityCheckbutton.pack(expand=True, anchor=W) retroCheckbutton.pack(expand=True, anchor=W) dungeonItemsCheckbutton.pack(expand=True, anchor=W) @@ -381,6 +384,7 @@ def guiMain(args=None): guiargs.fastmenu = fastMenuVar.get() guiargs.create_spoiler = bool(createSpoilerVar.get()) guiargs.suppress_rom = bool(suppressRomVar.get()) + guiargs.openpyramid = bool(openpyramidVar.get()) guiargs.keysanity = bool(keysanityVar.get()) guiargs.retro = bool(retroVar.get()) guiargs.nodungeonitems = bool(dungeonItemsVar.get()) diff --git a/Main.py b/Main.py index 851a8cfc..2c8c4ef0 100644 --- a/Main.py +++ b/Main.py @@ -36,6 +36,7 @@ def main(args, seed=None): world.crystals_needed_for_ganon = random.randint(0, 7) if args.crystals_ganon == 'random' else int(args.crystals_ganon) world.crystals_needed_for_gt = random.randint(0, 7) if args.crystals_gt == 'random' else int(args.crystals_gt) + world.open_pyramid = args.openpyramid world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} diff --git a/Rom.py b/Rom.py index c8dcec01..73ce31d7 100644 --- a/Rom.py +++ b/Rom.py @@ -870,8 +870,8 @@ def patch_rom(world, player, rom): rom.write_bytes(0x50563, [0x3F, 0x14]) # disable below ganon chest rom.write_byte(0x50599, 0x00) # disable below ganon chest rom.write_bytes(0xE9A5, [0x7E, 0x00, 0x24]) # disable below ganon chest - rom.write_byte(0x18008B, 0x00) # Pyramid Hole not pre-opened - rom.write_byte(0x18008C, 0x01 if world.crystals_needed_for_gt == 0 else 0x00) # Pyramid Hole pre-opened if crystal requirement is 0 + rom.write_byte(0x18008B, 0x01 if world.open_pyramid else 0x00) # pre-open Pyramid Hole + rom.write_byte(0x18008C, 0x01 if world.crystals_needed_for_gt == 0 else 0x00) # GT pre-opened if crystal requirement is 0 rom.write_byte(0xF5D73, 0xF0) # bees are catchable rom.write_byte(0xF5F10, 0xF0) # bees are catchable rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness diff --git a/Rules.py b/Rules.py index 3c2bc18c..cfd43c63 100644 --- a/Rules.py +++ b/Rules.py @@ -455,7 +455,7 @@ def default_rules(world, player): 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_Pearl(player) and 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 (!) - set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player)) + set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid) set_rule(world.get_entrance('Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. if world.swords == 'swordless': @@ -610,7 +610,7 @@ def inverted_rules(world, 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)) + set_rule(world.get_entrance('Inverted Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid) 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. if world.swords == 'swordless': From 6ca08a0fa46c3c49a4577993878025de87e2b997 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 12 Dec 2019 10:22:54 +0100 Subject: [PATCH 077/185] Output rom: put seed and player id/name first in filename --- Main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Main.py b/Main.py index 2c8c4ef0..07cb0803 100644 --- a/Main.py +++ b/Main.py @@ -123,7 +123,9 @@ def main(args, seed=None): sprite = None player_names = parse_names_string(args.names) - outfilebase = 'ER_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s_%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "", world.seed) + outfileprefix = 'ER_%s_' % world.seed + outfilesuffix = '%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "") + outfilebase = outfileprefix + outfilesuffix use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) @@ -166,7 +168,8 @@ def main(args, seed=None): rom = local_rom apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) - rom.write_to_file(output_path(f'{outfilebase}{f"_P{player}" if world.players > 1 else ""}{f"_{player_names[player]}" if player in player_names else ""}.sfc')) + outfilepname = f'P{player}_' if world.players > 1 else '' + f'{player_names[player]}_' if player in player_names else '' + rom.write_to_file(output_path(f'{outfileprefix}{outfilepname}{outfilesuffix}.sfc')) with open(output_path('%s_multidata' % outfilebase), 'wb') as f: pickle.dump(multidata, f, pickle.HIGHEST_PROTOCOL) From fc9d1b501bd31097a956754f7fab4f55e6caf775 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 13 Dec 2019 22:37:52 +0100 Subject: [PATCH 078/185] Replace keysanity with map/compass/key/bk shuffle --- BaseClasses.py | 48 +++++++++++++++-------- Dungeons.py | 29 +++++++------- ER_hint_reference.txt | 2 +- EntranceRandomizer.py | 12 ++---- Fill.py | 20 ++++++---- Gui.py | 35 +++++++++++------ ItemList.py | 7 +++- Main.py | 31 +++++++++++---- Plando.py | 2 +- README.md | 23 ++++------- Rom.py | 90 ++++++++++++++++++++++++------------------- Rules.py | 4 +- 12 files changed, 177 insertions(+), 126 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index fc1dd304..83a14058 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -8,7 +8,7 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, place_dungeon_items, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, retro, custom, customitemarray, boss_shuffle, hints): + def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, retro, custom, customitemarray, boss_shuffle, hints): self.players = players self.shuffle = shuffle self.logic = logic @@ -35,7 +35,6 @@ class World(object): self._entrance_cache = {} self._location_cache = {} self.required_locations = [] - self.place_dungeon_items = place_dungeon_items # configurable in future self.shuffle_bonk_prizes = False self.swamp_patch_required = {player: False for player in range(1, players + 1)} self.powder_patch_required = {player: False for player in range(1, players + 1)} @@ -65,7 +64,10 @@ class World(object): self.quickswap = quickswap self.fastmenu = fastmenu self.disable_music = disable_music - self.keysanity = keysanity + self.mapshuffle = False + self.compassshuffle = False + self.keyshuffle = False + self.bigkeyshuffle = False self.retro = retro self.custom = custom self.customitemarray = customitemarray @@ -175,7 +177,7 @@ class World(object): elif item.name.startswith('Bottle'): if ret.bottle_count(item.player) < self.difficulty_requirements.progressive_bottle_limit: ret.prog_items.add((item.name, item.player)) - elif item.advancement or item.key: + elif item.advancement or item.smallkey or item.bigkey: ret.prog_items.add((item.name, item.player)) for item in self.itempool: @@ -352,12 +354,14 @@ class CollectionState(object): def sweep_for_events(self, key_only=False, locations=None): # this may need improvement + if locations is None: + locations = self.world.get_filled_locations() new_locations = True checked_locations = 0 while new_locations: - if locations is None: - locations = self.world.get_filled_locations() - reachable_events = [location for location in locations if location.event and (not key_only or location.item.key) and location.can_reach(self)] + reachable_events = [location for location in locations if location.event and + (not key_only or (not self.world.keyshuffle and location.item.smallkey) or (not self.world.bigkeyshuffle and location.item.bigkey)) + and location.can_reach(self)] for event in reachable_events: if (event.name, event.player) not in self.events: self.events.append((event.name, event.player)) @@ -677,9 +681,12 @@ class Region(object): return False def can_fill(self, item): - is_dungeon_item = item.key or item.map or item.compass + inside_dungeon_item = ((item.smallkey and not self.world.keyshuffle) + or (item.bigkey and not self.world.bigkeyshuffle) + or (item.map and not self.world.mapshuffle) + or (item.compass and not self.world.compassshuffle)) sewer_hack = self.world.mode == 'standard' and item.name == 'Small Key (Escape)' - if sewer_hack or (is_dungeon_item and not self.world.keysanity): + if sewer_hack or inside_dungeon_item: return self.dungeon and self.dungeon.is_dungeon_item(item) and item.player == self.player return True @@ -838,14 +845,18 @@ class Item(object): self.location = None self.player = player - @property - def key(self): - return self.type == 'SmallKey' or self.type == 'BigKey' - @property def crystal(self): return self.type == 'Crystal' + @property + def smallkey(self): + return self.type == 'SmallKey' + + @property + def bigkey(self): + return self.type == 'BigKey' + @property def map(self): return self.type == 'Map' @@ -1036,7 +1047,10 @@ class Spoiler(object): 'item_functionality': self.world.difficulty_adjustments, 'accessibility': self.world.accessibility, 'hints': self.world.hints, - 'keysanity': self.world.keysanity, + 'mapshuffle': self.world.mapshuffle, + 'compassshuffle': self.world.compassshuffle, + 'keyshuffle': self.world.keyshuffle, + 'bigkeyshuffle': self.world.bigkeyshuffle, 'players': self.world.players } @@ -1068,10 +1082,12 @@ class Spoiler(object): outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle']) outfile.write('Filling Algorithm: %s\n' % self.world.algorithm) outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) - outfile.write('Maps and Compasses in Dungeons: %s\n' % ('Yes' if self.world.place_dungeon_items else 'No')) outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) outfile.write('Menu speed: %s\n' % self.world.fastmenu) - outfile.write('Keysanity enabled: %s\n' % ('Yes' if self.metadata['keysanity'] else 'No')) + outfile.write('Map shuffle: %s\n' % ('Yes' if self.metadata['mapshuffle'] else 'No')) + outfile.write('Compass shuffle: %s\n' % ('Yes' if self.metadata['compassshuffle'] else 'No')) + outfile.write('Small Key shuffle: %s\n' % ('Yes' if self.metadata['keyshuffle'] else 'No')) + outfile.write('Big Key shuffle: %s\n' % ('Yes' if self.metadata['bigkeyshuffle'] else 'No')) outfile.write('Players: %d' % self.world.players) if self.entrances: outfile.write('\n\nEntrances:\n\n') diff --git a/Dungeons.py b/Dungeons.py index 8872e521..65a585a7 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -113,14 +113,13 @@ def fill_dungeons(world): continue # next place dungeon items - if world.place_dungeon_items: - for dungeon_item in dungeon_items: - di_location = dungeon_locations.pop() - world.push_item(di_location, dungeon_item, False) + for dungeon_item in dungeon_items: + di_location = dungeon_locations.pop() + world.push_item(di_location, dungeon_item, False) def get_dungeon_item_pool(world): - return [item for dungeon in world.dungeons for item in dungeon.all_items if item.key or world.place_dungeon_items] + return [item for dungeon in world.dungeons for item in dungeon.all_items] def fill_dungeons_restrictive(world, shuffled_locations): all_state_base = world.get_all_state() @@ -135,16 +134,18 @@ def fill_dungeons_restrictive(world, shuffled_locations): pinball_room.locked = True shuffled_locations.remove(pinball_room) - if world.keysanity: - #in keysanity dungeon items are distributed as part of the normal item pool - for item in world.get_items(): - if item.key: - item.advancement = True - elif item.map or item.compass: - item.priority = True - return + # with shuffled dungeon items they are distributed as part of the normal item pool + for item in world.get_items(): + if (item.smallkey and world.keyshuffle) or (item.bigkey and world.bigkeyshuffle): + all_state_base.collect(item, True) + item.advancement = True + elif (item.map and world.mapshuffle) or (item.compass and world.compassshuffle): + item.priority = True - dungeon_items = get_dungeon_item_pool(world) + dungeon_items = [item for item in get_dungeon_item_pool(world) if ((item.smallkey and not world.keyshuffle) + or (item.bigkey and not world.bigkeyshuffle) + or (item.map and not world.mapshuffle) + or (item.compass and not world.compassshuffle))] # sort in the order Big Key, Small Key, Other before placing dungeon items sort_order = {"BigKey": 3, "SmallKey": 2} diff --git a/ER_hint_reference.txt b/ER_hint_reference.txt index 1e163126..999fb436 100644 --- a/ER_hint_reference.txt +++ b/ER_hint_reference.txt @@ -85,7 +85,7 @@ In the vanilla, dungeonssimple, and dungeonsfull shuffles, the following two loc Graveyard Cave Mimic Cave -Valuable Items are simply all items that are shown on the pause subscreen (Y, B, or A sections) minus Silver Arrows and plus Triforce Pieces, Magic Upgrades (1/2 or 1/4), and the Single Arrow. If keysanity is being used, you can additionally get hints for Small Keys or Big Keys but not hints for Maps or Compasses. +Valuable Items are simply all items that are shown on the pause subscreen (Y, B, or A sections) minus Silver Arrows and plus Triforce Pieces, Magic Upgrades (1/2 or 1/4), and the Single Arrow. If key shuffle is being used, you can additionally get hints for Small Keys or Big Keys but not hints for Maps or Compasses. While the exact verbage of location names and item names can be found in the source code, here's a copy for reference: diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 13155bd0..547514bb 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -198,20 +198,16 @@ def start(): ''') parser.add_argument('--quickswap', help='Enable quick item swapping with L and R.', action='store_true') parser.add_argument('--disablemusic', help='Disables game music.', action='store_true') - parser.add_argument('--keysanity', help='''\ - Keys (and other dungeon items) are no longer restricted to - their dungeons, but can be anywhere - ''', action='store_true') + parser.add_argument('--mapshuffle', help='Maps are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--compassshuffle', help='Compasses are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--keyshuffle', help='Small Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--bigkeyshuffle', help='Big Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') parser.add_argument('--retro', help='''\ Keys are universal, shooting arrows costs rupees, and a few other little things make this more like Zelda-1. ''', action='store_true') parser.add_argument('--custom', default=False, help='Not supported.') parser.add_argument('--customitemarray', default=False, help='Not supported.') - parser.add_argument('--nodungeonitems', help='''\ - Remove Maps and Compasses from Itempool, replacing them by - empty slots. - ''', action='store_true') parser.add_argument('--accessibility', default='items', const='items', nargs='?', choices=['items', 'locations', 'none'], help='''\ Select Item/Location Accessibility. (default: %(default)s) Items: You can reach all unique inventory items. No guarantees about diff --git a/Fill.py b/Fill.py index 70eddca9..de81a69d 100644 --- a/Fill.py +++ b/Fill.py @@ -240,8 +240,8 @@ def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=No random.shuffle(fill_locations) fill_locations.reverse() - # Make sure the escape small key is placed first in standard keysanity to prevent running out of spots - if world.keysanity and world.mode == 'standard': + # Make sure the escape small key is placed first in standard with key shuffle to prevent running out of spots + if world.keyshuffle and world.mode == 'standard': progitempool.sort(key=lambda item: 1 if item.name == 'Small Key (Escape)' else 0) fill_restrictive(world, world.state, fill_locations, progitempool) @@ -312,7 +312,7 @@ def flood_items(world): location_list = world.get_reachable_locations() random.shuffle(location_list) for location in location_list: - if location.item is not None and not location.item.advancement and not location.item.priority and not location.item.key: + if location.item is not None and not location.item.advancement and not location.item.priority and not location.item.smallkey and not location.item.bigkey: # safe to replace replace_item = location.item replace_item.location = None @@ -332,8 +332,7 @@ def balance_multiworld_progression(world): reachable_locations_count[player] = 0 def get_sphere_locations(sphere_state, locations): - if not world.keysanity: - sphere_state.sweep_for_events(key_only=True, locations=locations) + sphere_state.sweep_for_events(key_only=True, locations=locations) return [loc for loc in locations if sphere_state.can_reach(loc)] while True: @@ -354,7 +353,7 @@ def balance_multiworld_progression(world): candidate_items = [] while True: for location in balancing_sphere: - if location.event: + if location.event and (world.keyshuffle or not location.item.smallkey) and (world.bigkeyshuffle or not location.item.bigkey): balancing_state.collect(location.item, True, location) if location.item.player in balancing_players and not location.locked: candidate_items.append(location) @@ -364,11 +363,14 @@ def balance_multiworld_progression(world): balancing_reachables[location.player] += 1 if world.has_beaten_game(balancing_state) or all([reachables >= threshold for reachables in balancing_reachables.values()]): break + elif not balancing_sphere: + raise RuntimeError('Not all required items reachable. Something went terribly wrong here.') unlocked_locations = [l for l in unchecked_locations if l not in balancing_unchecked_locations] items_to_replace = [] for player in balancing_players: locations_to_test = [l for l in unlocked_locations if l.player == player] + # only replace items that end up in another player's world items_to_test = [l for l in candidate_items if l.item.player == player and l.player != player] while items_to_test: testing = items_to_test.pop() @@ -392,7 +394,7 @@ def balance_multiworld_progression(world): new_location = replacement_locations.pop() old_location = items_to_replace.pop() - while not new_location.can_fill(state, old_location.item): + while not new_location.can_fill(state, old_location.item, False) or (new_location.item and not old_location.can_fill(state, new_location.item, False)): replacement_locations.insert(0, new_location) new_location = replacement_locations.pop() @@ -407,9 +409,11 @@ def balance_multiworld_progression(world): sphere_locations.append(location) for location in sphere_locations: - if location.event and (world.keysanity or not location.item.key): + if location.event and (world.keyshuffle or not location.item.smallkey) and (world.bigkeyshuffle or not location.item.bigkey): state.collect(location.item, True, location) checked_locations.extend(sphere_locations) if world.has_beaten_game(state): break + elif not sphere_locations: + raise RuntimeError('Not all required items reachable. Something went terribly wrong here.') diff --git a/Gui.py b/Gui.py index f03d8377..8ba32ef0 100755 --- a/Gui.py +++ b/Gui.py @@ -63,12 +63,18 @@ def guiMain(args=None): quickSwapCheckbutton = Checkbutton(checkBoxFrame, text="Enabled L/R Item quickswapping", variable=quickSwapVar) openpyramidVar = IntVar() openpyramidCheckbutton = Checkbutton(checkBoxFrame, text="Pre-open Pyramid Hole", variable=openpyramidVar) - keysanityVar = IntVar() - keysanityCheckbutton = Checkbutton(checkBoxFrame, text="Keysanity (keys anywhere)", variable=keysanityVar) + mcsbshuffleFrame = Frame(checkBoxFrame) + mcsbLabel = Label(mcsbshuffleFrame, text="Shuffle: ") + mapshuffleVar = IntVar() + mapshuffleCheckbutton = Checkbutton(mcsbshuffleFrame, text="Maps", variable=mapshuffleVar) + compassshuffleVar = IntVar() + compassshuffleCheckbutton = Checkbutton(mcsbshuffleFrame, text="Compasses", variable=compassshuffleVar) + keyshuffleVar = IntVar() + keyshuffleCheckbutton = Checkbutton(mcsbshuffleFrame, text="Keys", variable=keyshuffleVar) + bigkeyshuffleVar = IntVar() + bigkeyshuffleCheckbutton = Checkbutton(mcsbshuffleFrame, text="BigKeys", variable=bigkeyshuffleVar) retroVar = IntVar() retroCheckbutton = Checkbutton(checkBoxFrame, text="Retro mode (universal keys)", variable=retroVar) - dungeonItemsVar = IntVar() - dungeonItemsCheckbutton = Checkbutton(checkBoxFrame, text="Place Dungeon Items (Compasses/Maps)", onvalue=0, offvalue=1, variable=dungeonItemsVar) disableMusicVar = IntVar() disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar) shuffleGanonVar = IntVar() @@ -84,9 +90,13 @@ def guiMain(args=None): suppressRomCheckbutton.pack(expand=True, anchor=W) quickSwapCheckbutton.pack(expand=True, anchor=W) openpyramidCheckbutton.pack(expand=True, anchor=W) - keysanityCheckbutton.pack(expand=True, anchor=W) + mcsbshuffleFrame.pack(expand=True, anchor=W) + mcsbLabel.grid(row=0, column=0) + mapshuffleCheckbutton.grid(row=0, column=1) + compassshuffleCheckbutton.grid(row=0, column=2) + keyshuffleCheckbutton.grid(row=0, column=3) + bigkeyshuffleCheckbutton.grid(row=0, column=4) retroCheckbutton.pack(expand=True, anchor=W) - dungeonItemsCheckbutton.pack(expand=True, anchor=W) disableMusicCheckbutton.pack(expand=True, anchor=W) shuffleGanonCheckbutton.pack(expand=True, anchor=W) hintsCheckbutton.pack(expand=True, anchor=W) @@ -385,9 +395,11 @@ def guiMain(args=None): guiargs.create_spoiler = bool(createSpoilerVar.get()) guiargs.suppress_rom = bool(suppressRomVar.get()) guiargs.openpyramid = bool(openpyramidVar.get()) - guiargs.keysanity = bool(keysanityVar.get()) + guiargs.mapshuffle = bool(mapshuffleVar.get()) + guiargs.compassshuffle = bool(compassshuffleVar.get()) + guiargs.keyshuffle = bool(keyshuffleVar.get()) + guiargs.bigkeyshuffle = bool(bigkeyshuffleVar.get()) guiargs.retro = bool(retroVar.get()) - guiargs.nodungeonitems = bool(dungeonItemsVar.get()) guiargs.quickswap = bool(quickSwapVar.get()) guiargs.disablemusic = bool(disableMusicVar.get()) guiargs.shuffleganon = bool(shuffleGanonVar.get()) @@ -1160,10 +1172,11 @@ def guiMain(args=None): # load values from commandline args createSpoilerVar.set(int(args.create_spoiler)) suppressRomVar.set(int(args.suppress_rom)) - keysanityVar.set(args.keysanity) + mapshuffleVar.set(args.mapshuffle) + compassshuffleVar.set(args.compassshuffle) + keyshuffleVar.set(args.keyshuffle) + bigkeyshuffleVar.set(args.bigkeyshuffle) retroVar.set(args.retro) - if args.nodungeonitems: - dungeonItemsVar.set(int(not args.nodungeonitems)) quickSwapVar.set(int(args.quickswap)) disableMusicVar.set(int(args.disablemusic)) if args.count: diff --git a/ItemList.py b/ItemList.py index 69d5a327..55eaf730 100644 --- a/ItemList.py +++ b/ItemList.py @@ -221,8 +221,11 @@ def generate_itempool(world, player): if treasure_hunt_icon is not None: world.treasure_hunt_icon = treasure_hunt_icon - if world.keysanity: - world.itempool.extend([item for item in get_dungeon_item_pool(world) if item.player == player]) + world.itempool.extend([item for item in get_dungeon_item_pool(world) if item.player == player + and ((item.smallkey and world.keyshuffle) + or (item.bigkey and world.bigkeyshuffle) + or (item.map and world.mapshuffle) + or (item.compass and world.compassshuffle))]) # logic has some branches where having 4 hearts is one possible requirement (of several alternatives) # rather than making all hearts/heart pieces progression items (which slows down generation considerably) diff --git a/Main.py b/Main.py index 07cb0803..b2eb57b3 100644 --- a/Main.py +++ b/Main.py @@ -25,7 +25,7 @@ def main(args, seed=None): start = time.process_time() # initialize the world - world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -34,6 +34,19 @@ def main(args, seed=None): world.seed = int(seed) random.seed(world.seed) + world.mapshuffle = args.mapshuffle + world.compassshuffle = args.compassshuffle + world.keyshuffle = args.keyshuffle + world.bigkeyshuffle = args.bigkeyshuffle + + mcsb_name = '' + if all([world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle]): + mcsb_name = '-keysanity' + elif [world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle].count(True) == 1: + mcsb_name = '-mapshuffle' if world.mapshuffle else '-compassshuffle' if world.compassshuffle else '-keyshuffle' if world.keyshuffle else '-bigkeyshuffle' + elif any([world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle]): + mcsb_name = '-%s%s%s%sshuffle' % ('M' if world.mapshuffle else '', 'C' if world.compassshuffle else '', 'S' if world.keyshuffle else '', 'B' if world.bigkeyshuffle else '') + world.crystals_needed_for_ganon = random.randint(0, 7) if args.crystals_ganon == 'random' else int(args.crystals_ganon) world.crystals_needed_for_gt = random.randint(0, 7) if args.crystals_gt == 'random' else int(args.crystals_gt) world.open_pyramid = args.openpyramid @@ -83,7 +96,7 @@ def main(args, seed=None): logger.info('Placing Dungeon Items.') shuffled_locations = None - if args.algorithm in ['balanced', 'vt26'] or args.keysanity: + if args.algorithm in ['balanced', 'vt26'] or args.mapshuffle or args.compassshuffle or args.keyshuffle or args.bigkeyshuffle: shuffled_locations = world.get_unfilled_locations() random.shuffle(shuffled_locations) fill_dungeons_restrictive(world, shuffled_locations) @@ -124,7 +137,7 @@ def main(args, seed=None): player_names = parse_names_string(args.names) outfileprefix = 'ER_%s_' % world.seed - outfilesuffix = '%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, "-keysanity" if world.keysanity else "", "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "") + outfilesuffix = '%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, mcsb_name, "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "") outfilebase = outfileprefix + outfilesuffix use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) @@ -198,7 +211,7 @@ def gt_filler(world): def copy_world(world): # ToDo: Not good yet - ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) + ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() @@ -218,6 +231,10 @@ def copy_world(world): ret.difficulty_requirements = world.difficulty_requirements ret.fix_fake_world = world.fix_fake_world ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms + ret.mapshuffle = world.mapshuffle + ret.compassshuffle = world.compassshuffle + ret.keyshuffle = world.keyshuffle + ret.bigkeyshuffle = world.bigkeyshuffle ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon ret.crystals_needed_for_gt = world.crystals_needed_for_gt @@ -318,8 +335,7 @@ def create_playthrough(world): sphere_candidates = list(prog_locations) logging.getLogger('').debug('Building up collection spheres.') while sphere_candidates: - if not world.keysanity: - state.sweep_for_events(key_only=True) + state.sweep_for_events(key_only=True) sphere = [] # build up spheres of collection radius. Everything in each sphere is independent from each other in dependencies and only depends on lower spheres @@ -372,8 +388,7 @@ def create_playthrough(world): state = CollectionState(world) collection_spheres = [] while required_locations: - if not world.keysanity: - state.sweep_for_events(key_only=True) + state.sweep_for_events(key_only=True) sphere = list(filter(state.can_reach, required_locations)) diff --git a/Plando.py b/Plando.py index 527ae799..6e0c8a48 100755 --- a/Plando.py +++ b/Plando.py @@ -174,7 +174,7 @@ def fill_world(world, plando, text_patches): item = ItemFactory(itemstr.strip(), 1) if item is not None: world.push_item(location, item) - if item.key: + if item.smallkey or item.bigkey: location.event = True elif '<=>' in line: entrance, exit = line.split('<=>', 1) diff --git a/README.md b/README.md index b0628d14..4ca56424 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Does not invoke a timer. ### Display Displays a timer on-screen but does not alter the item pool. -This will prevent the dungeon item count feature in Easy and Keysanity from working. +This will prevent the dungeon item count feature in Easy and Compass shuffle from working. ### Timed @@ -264,12 +264,12 @@ generate spoilers for statistical analysis. Use to enable quick item swap with L/R buttons. Press L and R together to switch the state of items like the Mushroom/Powder pair. -## Keysanity +## Map/Compass/Small Key/Big Key shuffle (aka Keysanity) -This setting allows dungeon specific items (Small Key, Big Key, Map, Compass) to be distributed anywhere in the world and not just -in their native dungeon. Small Keys dropped by enemies or found in pots are not affected. The chest in southeast Skull Woods that -is traditionally a guaranteed Small Key still is. These items will be distributed according to the v26/balanced algorithm, but -the rest of the itempool will respect the algorithm setting. Music for dungeons is randomized so it cannot be used as a tell +These settings allow dungeon specific items to be distributed anywhere in the world and not just in their native dungeon. +Small Keys dropped by enemies or found in pots are not affected. The chest in southeast Skull Woods that is traditionally +a guaranteed Small Key still is. These items will be distributed according to the v26/balanced algorithm, but the rest +of the itempool will respect the algorithm setting. Music for dungeons is randomized so it cannot be used as a tell for which dungeons contain pendants and crystals; finding a Map for a dungeon will allow the overworld map to display its prize. ## Retro @@ -422,10 +422,10 @@ Alters the rate at which the menu opens and closes. (default: normal) Disables game music, resulting in the game sound being just the SFX. (default: False) ``` ---keysanity +--mapshuffle --compassshuffle --keyshuffle --bigkeyshuffle ``` -Enable Keysanity (default: False) +Respectively enable Map/Compass/SmallKey/BigKey shuffle (default: False) ``` --retro @@ -433,13 +433,6 @@ Enable Keysanity (default: False) Enable Retro mode (default: False) -``` ---nodungeonitems -``` - -If set, Compasses and Maps are removed from the dungeon item pools and replaced by empty chests that may end up anywhere in the world. -This may lead to different amount of itempool items being placed in a dungeon than you are used to. (default: False) - ``` --heartbeep [{normal,half,quarter,off}] ``` diff --git a/Rom.py b/Rom.py index 73ce31d7..76cc1cce 100644 --- a/Rom.py +++ b/Rom.py @@ -444,10 +444,10 @@ def patch_rom(world, player, rom): # Keys in their native dungeon should use the orignal item code for keys if location.parent_region.dungeon: dungeon = location.parent_region.dungeon - if location.item is not None and location.item.key and dungeon.is_dungeon_item(location.item): - if location.item.type == "BigKey": + if location.item is not None and dungeon.is_dungeon_item(location.item): + if location.item.bigkey: itemid = 0x32 - if location.item.type == "SmallKey": + if location.item.smallkey: itemid = 0x24 if location.item and location.item.player != player: if location.player_address is not None: @@ -462,15 +462,15 @@ def patch_rom(world, player, rom): # patch music music_addresses = dungeon_music_addresses[location.name] - if world.keysanity: + if world.mapshuffle: music = random.choice([0x11, 0x16]) else: music = 0x11 if 'Pendant' in location.item.name else 0x16 for music_address in music_addresses: rom.write_byte(music_address, music) - if world.keysanity: - rom.write_byte(0x155C9, random.choice([0x11, 0x16])) # Randomize GT music too in keysanity mode + if world.mapshuffle: + rom.write_byte(0x155C9, random.choice([0x11, 0x16])) # Randomize GT music too with map shuffle # patch entrance/exits/holes for region in world.regions: @@ -811,7 +811,7 @@ def patch_rom(world, player, rom): ERtimeincrease = 10 else: ERtimeincrease = 20 - if world.keysanity: + if world.keyshuffle or world.bigkeyshuffle or world.mapshuffle: ERtimeincrease = ERtimeincrease + 15 if world.clock_mode == 'off': rom.write_bytes(0x180190, [0x00, 0x00, 0x00]) # turn off clock mode @@ -922,18 +922,24 @@ def patch_rom(world, player, rom): rom.write_byte(0x18005F, world.crystals_needed_for_ganon) rom.write_byte(0x18008A, 0x01 if world.mode == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode - rom.write_byte(0x18016A, 0x01 if world.keysanity else 0x00) # free roaming item text boxes - rom.write_byte(0x18003B, 0x01 if world.keysanity else 0x00) # maps showing crystals on overworld + rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle else 0x00) + | (0x02 if world.compassshuffle else 0x00) + | (0x04 if world.mapshuffle else 0x00) + | (0x08 if world.bigkeyshuffle else 0x00))) # free roaming item text boxes + rom.write_byte(0x18003B, 0x01 if world.mapshuffle else 0x00) # maps showing crystals on overworld # compasses showing dungeon count if world.clock_mode != 'off': rom.write_byte(0x18003C, 0x00) # Currently must be off if timer is on, because they use same HUD location - elif world.keysanity: + elif world.compassshuffle: rom.write_byte(0x18003C, 0x01) # show on pickup else: rom.write_byte(0x18003C, 0x00) - rom.write_byte(0x180045, 0xFF if world.keysanity else 0x00) # free roaming items in menu + rom.write_byte(0x180045, ((0x01 if world.keyshuffle else 0x00) + | (0x02 if world.bigkeyshuffle else 0x00) + | (0x04 if world.compassshuffle else 0x00) + | (0x08 if world.mapshuffle else 0x00))) # free roaming items in menu # Map reveals reveal_bytes = { @@ -958,8 +964,8 @@ def patch_rom(world, player, rom): return reveal_bytes.get(location.parent_region.dungeon.name, 0x0000) return 0x0000 - write_int16(rom, 0x18017A, get_reveal_bytes('Green Pendant') if world.keysanity else 0x0000) # Sahasrahla reveal - write_int16(rom, 0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.keysanity else 0x0000) # Bomb Shop Reveal + write_int16(rom, 0x18017A, get_reveal_bytes('Green Pendant') if world.mapshuffle else 0x0000) # Sahasrahla reveal + write_int16(rom, 0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.mapshuffle else 0x0000) # Bomb Shop Reveal rom.write_byte(0x180172, 0x01 if world.retro else 0x00) # universal keys rom.write_byte(0x180175, 0x01 if world.retro else 0x00) # rupee bow @@ -1440,8 +1446,10 @@ def write_strings(rom, world, player): # Lastly we write hints to show where certain interesting items are. It is done the way it is to re-use the silver code and also to give one hint per each type of item regardless of how many exist. This supports many settings well. items_to_hint = RelevantItems.copy() - if world.keysanity: - items_to_hint.extend(KeysanityItems) + if world.keyshuffle: + items_to_hint.extend(SmallKeys) + if world.bigkeyshuffle: + items_to_hint.extend(BigKeys) random.shuffle(items_to_hint) hint_count = 5 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 8 while hint_count > 0: @@ -2022,28 +2030,30 @@ RelevantItems = ['Bow', 'Magic Upgrade (1/4)' ] -KeysanityItems = ['Small Key (Eastern Palace)', - 'Big Key (Eastern Palace)', - 'Small Key (Escape)', - 'Small Key (Desert Palace)', - 'Big Key (Desert Palace)', - 'Small Key (Tower of Hera)', - 'Big Key (Tower of Hera)', - 'Small Key (Agahnims Tower)', - 'Small Key (Palace of Darkness)', - 'Big Key (Palace of Darkness)', - 'Small Key (Thieves Town)', - 'Big Key (Thieves Town)', - 'Small Key (Swamp Palace)', - 'Big Key (Swamp Palace)', - 'Small Key (Skull Woods)', - 'Big Key (Skull Woods)', - 'Small Key (Ice Palace)', - 'Big Key (Ice Palace)', - 'Small Key (Misery Mire)', - 'Big Key (Misery Mire)', - 'Small Key (Turtle Rock)', - 'Big Key (Turtle Rock)', - 'Small Key (Ganons Tower)', - 'Big Key (Ganons Tower)' - ] +SmallKeys = ['Small Key (Eastern Palace)', + 'Small Key (Escape)', + 'Small Key (Desert Palace)', + 'Small Key (Tower of Hera)', + 'Small Key (Agahnims Tower)', + 'Small Key (Palace of Darkness)', + 'Small Key (Thieves Town)', + 'Small Key (Swamp Palace)', + 'Small Key (Skull Woods)', + 'Small Key (Ice Palace)', + 'Small Key (Misery Mire)', + 'Small Key (Turtle Rock)', + 'Small Key (Ganons Tower)', + ] + +BigKeys = ['Big Key (Eastern Palace)', + 'Big Key (Desert Palace)', + 'Big Key (Tower of Hera)', + 'Big Key (Palace of Darkness)', + 'Big Key (Thieves Town)', + 'Big Key (Swamp Palace)', + 'Big Key (Skull Woods)', + 'Big Key (Ice Palace)', + 'Big Key (Misery Mire)', + 'Big Key (Turtle Rock)', + 'Big Key (Ganons Tower)' + ] diff --git a/Rules.py b/Rules.py index cfd43c63..7d5e381c 100644 --- a/Rules.py +++ b/Rules.py @@ -804,7 +804,7 @@ def set_trock_key_rules(world, player): non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] - if not world.keysanity: + if not world.keyshuffle: non_big_key_locations += ['Turtle Rock - Big Key Chest'] else: set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) @@ -814,7 +814,7 @@ def set_trock_key_rules(world, player): non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] - if not world.keysanity: + if not world.keyshuffle: non_big_key_locations += ['Turtle Rock - Big Key Chest', 'Turtle Rock - Chain Chomps'] # set big key restrictions From bf7a2d79fba73c32fa14b9004de7771fd037df91 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 14 Dec 2019 17:47:36 +0100 Subject: [PATCH 079/185] fill_restrictive: optimize itempool iteration, also fix output itempool for logging --- Fill.py | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/Fill.py b/Fill.py index de81a69d..c369da20 100644 --- a/Fill.py +++ b/Fill.py @@ -161,7 +161,7 @@ def distribute_items_staleness(world): logging.getLogger('').debug('Unplaced items: %s - Unfilled Locations: %s', [item.name for item in itempool], [location.name for location in fill_locations]) -def fill_restrictive(world, base_state, locations, itempool, single_player = False): +def fill_restrictive(world, base_state, locations, itempool, single_player_placement = False): def sweep_from_pool(): new_state = base_state.copy() for item in itempool: @@ -169,38 +169,35 @@ def fill_restrictive(world, base_state, locations, itempool, single_player = Fal new_state.sweep_for_events() return new_state - while itempool and locations: - items_to_place = [] - nextpool = [] - placing_players = set() - for item in reversed(itempool): - if item.player not in placing_players: - placing_players.add(item.player) - items_to_place.append(item) - else: - nextpool.insert(0, item) - itempool = nextpool + unplaced_items = [] + + player_items = {} + for item in itempool: + player_items.setdefault(item.player, []).append(item) + + while any(player_items.values()) and locations: + items_to_place = [[itempool.remove(items[-1]), items.pop()][-1] for items in player_items.values() if items] maximum_exploration_state = sweep_from_pool() perform_access_check = True - if world.accessibility == 'none' and not single_player: + if world.accessibility == 'none' and not single_player_placement: perform_access_check = not world.has_beaten_game(maximum_exploration_state) for item_to_place in items_to_place: + if single_player_placement and world.accessibility == 'none': + perform_access_check = not world.has_beaten_game(maximum_exploration_state, item_to_place.player) + spot_to_fill = None for location in locations: - if single_player: - if location.player != item_to_place.player: - continue - if world.accessibility == 'none': - perform_access_check = not world.has_beaten_game(maximum_exploration_state, location.player) - if location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): + if (not single_player_placement or location.player == item_to_place.player)\ + and location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): spot_to_fill = location break if spot_to_fill is None: # we filled all reachable spots. Maybe the game can be beaten anyway? + unplaced_items.insert(0, item_to_place) if world.can_beat_game(): if world.accessibility != 'none': logging.getLogger('').warning('Not all items placed. Game beatable anyway. (Could not place %s)' % item_to_place) @@ -211,6 +208,7 @@ def fill_restrictive(world, base_state, locations, itempool, single_player = Fal locations.remove(spot_to_fill) spot_to_fill.event = True + itempool.extend(unplaced_items) def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=None): # If not passed in, then get a shuffled list of locations to fill in From e4fef05d533876ba7c8ca2723dbc8e22c00066aa Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 14 Dec 2019 19:19:08 +0100 Subject: [PATCH 080/185] Initialize region cache in initialize_regions() and make it a 2d map for more efficient player filtering --- BaseClasses.py | 15 +++++++++------ InvertedRegions.py | 2 +- ItemList.py | 2 +- Main.py | 2 +- Regions.py | 2 +- 5 files changed, 13 insertions(+), 10 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 83a14058..b9d65297 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -30,8 +30,7 @@ class World(object): self.required_medallions = dict([(player, ['Ether', 'Quake']) for player in range(1, players + 1)]) self._cached_entrances = None self._cached_locations = None - self._entrance_cache = {} - self._region_cache = {} + self._region_cache = {player: {} for player in range(1, players + 1)} self._entrance_cache = {} self._location_cache = {} self.required_locations = [] @@ -84,19 +83,23 @@ class World(object): self.spoiler = Spoiler(self) self.lamps_needed_for_dark_rooms = 1 - def intialize_regions(self): - for region in self.regions: + def initialize_regions(self, regions=None): + for region in regions if regions else self.regions: region.world = self + self._region_cache[region.player][region.name] = region + + def get_regions(self, player=None): + return self.regions if player is None else self._region_cache[player].values() def get_region(self, regionname, player): if isinstance(regionname, Region): return regionname try: - return self._region_cache[(regionname, player)] + return self._region_cache[player][regionname] except KeyError: for region in self.regions: if region.name == regionname and region.player == player: - self._region_cache[(regionname, player)] = region + assert not region.world # this should only happen before initialization return region raise RuntimeError('No such region %s for player %d' % (regionname, player)) diff --git a/InvertedRegions.py b/InvertedRegions.py index c03e979f..61c257ff 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -316,7 +316,7 @@ def create_inverted_regions(world, player): world.shops.append(shop) shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) shop.add_inventory(1, 'Arrow Upgrade (+5)', 100, 7) - world.intialize_regions() + world.initialize_regions() def create_lw_region(player, name, locations=None, exits=None): return _create_region(player, name, RegionType.LightWorld, 'Light World', locations, exits) diff --git a/ItemList.py b/ItemList.py index 55eaf730..dba4a38f 100644 --- a/ItemList.py +++ b/ItemList.py @@ -303,7 +303,7 @@ def set_up_take_anys(world, player): take_any.shop.add_inventory(0, 'Blue Potion', 0, 0) take_any.shop.add_inventory(1, 'Boss Heart Container', 0, 0) - world.intialize_regions() + world.initialize_regions() def create_dynamic_shop_locations(world, player): for shop in world.shops: diff --git a/Main.py b/Main.py index b2eb57b3..32a43246 100644 --- a/Main.py +++ b/Main.py @@ -295,8 +295,8 @@ def copy_world(world): def copy_dynamic_regions_and_locations(world, ret): for region in world.dynamic_regions: new_reg = Region(region.name, region.type, region.hint_text, region.player) - new_reg.world = ret ret.regions.append(new_reg) + ret.initialize_regions([new_reg]) ret.dynamic_regions.append(new_reg) # Note: ideally exits should be copied here, but the current use case (Take anys) do not require this diff --git a/Regions.py b/Regions.py index fed6abab..b74d399b 100644 --- a/Regions.py +++ b/Regions.py @@ -307,7 +307,7 @@ def create_regions(world, player): world.shops.append(shop) shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) shop.add_inventory(1, 'Arrow Upgrade (+5)', 100, 7) - world.intialize_regions() + world.initialize_regions() def create_lw_region(player, name, locations=None, exits=None): return _create_region(player, name, RegionType.LightWorld, 'Light World', locations, exits) From d608d5ca309fa2382a305e07b1fde0f15ab409a0 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 14 Dec 2019 19:53:19 +0100 Subject: [PATCH 081/185] Optimize update_reachable_regions using the new region cache, it is almost twice as fast now --- BaseClasses.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index b9d65297..f18ba018 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -318,14 +318,14 @@ class CollectionState(object): self.collect(item, True) def update_reachable_regions(self, player): - player_regions = [region for region in self.world.regions if region.player == player] + player_regions = self.world.get_regions(player) self.stale[player] = False rrp = self.reachable_regions[player] new_regions = True reachable_regions_count = len(rrp) while new_regions: - possible = [region for region in player_regions if region not in rrp] - for candidate in possible: + player_regions = [region for region in player_regions if region not in rrp] + for candidate in player_regions: if candidate.can_reach_private(self): rrp.add(candidate) new_regions = len(rrp) > reachable_regions_count From 842f6bf1ac7d5b0c978687db4f85acf28048f48f Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 10:54:49 +0100 Subject: [PATCH 082/185] rom: correct gametype flag --- Main.py | 3 +-- Rom.py | 9 +++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Main.py b/Main.py index 32a43246..fb9f122f 100644 --- a/Main.py +++ b/Main.py @@ -159,8 +159,7 @@ def main(args, seed=None): rom = JsonRom() else: rom = LocalRom(args.rom) - - patch_rom(world, player, rom) + patch_rom(world, player, rom, use_enemizer) enemizer_patch = [] if use_enemizer: diff --git a/Rom.py b/Rom.py index 76cc1cce..da5574df 100644 --- a/Rom.py +++ b/Rom.py @@ -420,7 +420,7 @@ class Sprite(object): # split into palettes of 15 colors return array_chunk(palette_as_colors, 15) -def patch_rom(world, player, rom): +def patch_rom(world, player, rom, enemized): random.seed(world.rom_seeds[player]) # progressive bow silver arrow hint hack @@ -855,7 +855,12 @@ def patch_rom(world, player, rom): # TODO: a proper race rom mode should be implemented, that changes the following flag, and rummages the table (or uses the future encryption feature, etc) rom.write_bytes(0x180213, [0x00, 0x01]) # Not a Tournament Seed - rom.write_byte(0x180211, 0x06) #Game type, we set the Entrance and item randomization flags + gametype = 0x04 # item + if world.shuffle != 'vanilla': + gametype |= 0x02 # entrance + if enemized: + gametype |= 0x01 # enemizer + rom.write_byte(0x180211, gametype) # Game type # assorted fixes rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark world dungeon before killing aga1 From e56ea410c6093e48f7cf0ece32b7de9a0e01cdf8 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 11:15:00 +0100 Subject: [PATCH 083/185] Gui: set default base rom name --- Gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gui.py b/Gui.py index 8ba32ef0..90014c82 100755 --- a/Gui.py +++ b/Gui.py @@ -134,7 +134,7 @@ def guiMain(args=None): romDialogFrame = Frame(fileDialogFrame) baseRomLabel = Label(romDialogFrame, text='Base Rom') - romVar = StringVar() + romVar = StringVar(value="Zelda no Densetsu - Kamigami no Triforce (Japan).sfc") romEntry = Entry(romDialogFrame, textvariable=romVar) def RomSelect(): From 955dce081267eccea34b51944098e64418d41903 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 16:16:39 +0100 Subject: [PATCH 084/185] Race rom support (partial) --- .gitignore | 3 ++- EntranceRandomizer.py | 1 + Main.py | 8 +++++++- Rom.py | 15 ++++++++++++++- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c4ce894b..2c13bec1 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ README.html *multidata *multisave EnemizerCLI/ -.mypy_cache/ \ No newline at end of file +.mypy_cache/ +RaceRom.py \ No newline at end of file diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 547514bb..76aed357 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -255,6 +255,7 @@ def start(): parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--names', default='') parser.add_argument('--outputpath') + parser.add_argument('--race', default=False, action='store_true') args = parser.parse_args() if args.outputpath and os.path.isdir(args.outputpath): diff --git a/Main.py b/Main.py index fb9f122f..20a7548c 100644 --- a/Main.py +++ b/Main.py @@ -12,7 +12,7 @@ from BaseClasses import World, CollectionState, Item, Region, Location, Shop from Regions import create_regions, mark_light_world_regions from InvertedRegions import create_inverted_regions, mark_dark_world_regions from EntranceShuffle import link_entrances, link_inverted_entrances -from Rom import patch_rom, get_enemizer_patch, apply_rom_settings, Sprite, LocalRom, JsonRom +from Rom import patch_rom, get_race_rom_patches, get_enemizer_patch, apply_rom_settings, Sprite, LocalRom, JsonRom 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 @@ -174,11 +174,17 @@ def main(args, seed=None): jsonout[f'patch{player}'] = rom.patches if use_enemizer: jsonout[f'enemizer{player}'] = enemizer_patch + if args.race: + jsonout[f'race{player}'] = get_race_rom_patches(rom) else: if use_enemizer: local_rom.patch_enemizer(rom.patches, os.path.join(os.path.dirname(args.enemizercli), "enemizerBasePatch.json"), enemizer_patch) rom = local_rom + if args.race: + for addr, values in get_race_rom_patches(rom).items(): + rom.write_bytes(int(addr), values) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) outfilepname = f'P{player}_' if world.players > 1 else '' + f'{player_names[player]}_' if player in player_names else '' rom.write_to_file(output_path(f'{outfileprefix}{outfilepname}{outfilesuffix}.sfc')) diff --git a/Rom.py b/Rom.py index da5574df..8f1f59fa 100644 --- a/Rom.py +++ b/Rom.py @@ -5,6 +5,7 @@ import logging import os import random import struct +import sys import subprocess from BaseClasses import ShopType, Region, Location, Item @@ -852,7 +853,6 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x180167, world.treasure_hunt_count % 256) rom.write_byte(0x180194, 1) # Must turn in triforced pieces (instant win not enabled) - # TODO: a proper race rom mode should be implemented, that changes the following flag, and rummages the table (or uses the future encryption feature, etc) rom.write_bytes(0x180213, [0x00, 0x01]) # Not a Tournament Seed gametype = 0x04 # item @@ -1069,6 +1069,19 @@ def patch_rom(world, player, rom, enemized): return rom +try: + import RaceRom +except ImportError: + RaceRom = None + +def get_race_rom_patches(rom): + patches = {str(0x180213): [0x01, 0x00]} # Tournament Seed + + if 'RaceRom' in sys.modules: + RaceRom.encrypt(rom, patches) + + return patches + def write_custom_shops(rom, world, player): shops = [shop for shop in world.shops if shop.replaceable and shop.active and shop.region.player == player] From 7e9ab6ce27d2b7b03ee5894452b9eb3bcb86fef1 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 16:16:49 +0100 Subject: [PATCH 085/185] JsonRom: will behave like an interval map and merge/overwrite segments when appropriate --- Rom.py | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index 8f1f59fa..dface499 100644 --- a/Rom.py +++ b/Rom.py @@ -1,3 +1,4 @@ +import bisect import io import json import hashlib @@ -27,14 +28,36 @@ class JsonRom(object): def __init__(self): self.name = None self.patches = {} + self.addresses = [] def write_byte(self, address, value): - self.patches[str(address)] = [value] + self.write_bytes(address, [value]) def write_bytes(self, startaddress, values): if not values: return - self.patches[str(startaddress)] = list(values) + if type(values) is not list: + values = list(values) + + pos = bisect.bisect_right(self.addresses, startaddress) + intervalstart = self.addresses[pos-1] if pos else None + intervalpatch = self.patches[str(intervalstart)] if pos else None + + if pos and startaddress <= intervalstart + len(intervalpatch): # merge with previous segment + offset = startaddress - intervalstart + intervalpatch[offset:offset+len(values)] = values + startaddress = intervalstart + values = intervalpatch + else: # new segment + self.addresses.insert(pos, startaddress) + self.patches[str(startaddress)] = values + pos = pos + 1 + + while pos < len(self.addresses) and self.addresses[pos] <= startaddress + len(values): # merge the next segment into this one + intervalstart = self.addresses[pos] + values.extend(self.patches[str(intervalstart)][startaddress+len(values)-intervalstart:]) + del self.patches[str(intervalstart)] + del self.addresses[pos] def write_to_file(self, file): with open(file, 'w') as stream: From 5bdc01e48f337afe842ea367018fd1bc4627f4cf Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 17:29:17 +0100 Subject: [PATCH 086/185] Add an option to specify a custom output filename --- EntranceRandomizer.py | 1 + Main.py | 12 +++++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 76aed357..13e53e03 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -256,6 +256,7 @@ def start(): parser.add_argument('--names', default='') parser.add_argument('--outputpath') parser.add_argument('--race', default=False, action='store_true') + parser.add_argument('--outputname') args = parser.parse_args() if args.outputpath and os.path.isdir(args.outputpath): diff --git a/Main.py b/Main.py index 20a7548c..25d96641 100644 --- a/Main.py +++ b/Main.py @@ -136,8 +136,14 @@ def main(args, seed=None): sprite = None player_names = parse_names_string(args.names) - outfileprefix = 'ER_%s_' % world.seed - outfilesuffix = '%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic, world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, mcsb_name, "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "") + outfileprefix = 'ER_%s' % (args.outputname if args.outputname else world.seed) + outfilesuffix = ('_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic, world.difficulty, world.difficulty_adjustments, + world.mode, world.goal, + "" if world.timer in ['none', 'display'] else "-" + world.timer, + world.shuffle, world.algorithm, mcsb_name, + "-retro" if world.retro else "", + "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", + "-nohints" if not world.hints else "")) if not args.outputname else '' outfilebase = outfileprefix + outfilesuffix use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) @@ -186,7 +192,7 @@ def main(args, seed=None): rom.write_bytes(int(addr), values) apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) - outfilepname = f'P{player}_' if world.players > 1 else '' + f'{player_names[player]}_' if player in player_names else '' + outfilepname = f"{f'_P{player}' if world.players > 1 else ''}{f'_{player_names[player]}' if player in player_names else ''}" rom.write_to_file(output_path(f'{outfileprefix}{outfilepname}{outfilesuffix}.sfc')) with open(output_path('%s_multidata' % outfilebase), 'wb') as f: From c9d181508039d34c27cb9ee1f1d9b5c79ce9a832 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 18:10:01 +0100 Subject: [PATCH 087/185] Moved argument parsing into its own function and allow disabling default values --- EntranceRandomizer.py | 73 +++++++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 34 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 13e53e03..1d147b5f 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -15,11 +15,13 @@ class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter): def _get_help_string(self, action): return textwrap.dedent(action.help) +def parse_arguments(argv, no_defaults=False): + def defval(value): + return value if not no_defaults else None -def start(): parser = argparse.ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter) parser.add_argument('--create_spoiler', help='Output a Spoiler File', action='store_true') - parser.add_argument('--logic', default='noglitches', const='noglitches', nargs='?', choices=['noglitches', 'minorglitches', 'nologic'], + parser.add_argument('--logic', default=defval('noglitches'), const='noglitches', nargs='?', choices=['noglitches', 'minorglitches', 'nologic'], help='''\ Select Enforcement of Item Requirements. (default: %(default)s) No Glitches: @@ -28,7 +30,7 @@ def start(): No Logic: Distribute items without regard for item requirements. ''') - parser.add_argument('--mode', default='open', const='open', nargs='?', choices=['standard', 'open', 'inverted'], + parser.add_argument('--mode', default=defval('open'), const='open', nargs='?', choices=['standard', 'open', 'inverted'], help='''\ Select game mode. (default: %(default)s) Open: World starts with Zelda rescued. @@ -41,7 +43,7 @@ def start(): Requires the moon pearl to be Link in the Light World instead of a bunny. ''') - parser.add_argument('--swords', default='random', const='random', nargs='?', choices= ['random', 'assured', 'swordless', 'vanilla'], + parser.add_argument('--swords', default=defval('random'), const='random', nargs='?', choices= ['random', 'assured', 'swordless', 'vanilla'], help='''\ Select sword placement. (default: %(default)s) Random: All swords placed randomly. @@ -55,7 +57,7 @@ def start(): Palace, to allow for an alternative to firerod. Vanilla: Swords are in vanilla locations. ''') - parser.add_argument('--goal', default='ganon', const='ganon', nargs='?', choices=['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'], + parser.add_argument('--goal', default=defval('ganon'), const='ganon', nargs='?', choices=['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'], help='''\ Select completion goal. (default: %(default)s) Ganon: Collect all crystals, beat Agahnim 2 then @@ -67,21 +69,21 @@ def start(): Triforce Hunt: Places 30 Triforce Pieces in the world, collect 20 of them to beat the game. ''') - parser.add_argument('--difficulty', default='normal', const='normal', nargs='?', choices=['normal', 'hard', 'expert'], + parser.add_argument('--difficulty', default=defval('normal'), const='normal', nargs='?', choices=['normal', 'hard', 'expert'], help='''\ Select game difficulty. Affects available itempool. (default: %(default)s) Normal: Normal difficulty. Hard: A harder setting with less equipment and reduced health. Expert: A harder yet setting with minimum equipment and health. ''') - parser.add_argument('--item_functionality', default='normal', const='normal', nargs='?', choices=['normal', 'hard', 'expert'], + parser.add_argument('--item_functionality', default=defval('normal'), const='normal', nargs='?', choices=['normal', 'hard', 'expert'], help='''\ Select limits on item functionality to increase difficulty. (default: %(default)s) Normal: Normal functionality. Hard: Reduced functionality. Expert: Greatly reduced functionality. ''') - parser.add_argument('--timer', default='none', const='normal', nargs='?', choices=['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'], + parser.add_argument('--timer', default=defval('none'), const='normal', nargs='?', choices=['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'], help='''\ Select game timer setting. Affects available itempool. (default: %(default)s) None: No timer. @@ -101,7 +103,7 @@ def start(): Timed mode. If time runs out, you lose (but can still keep playing). ''') - parser.add_argument('--progressive', default='on', const='normal', nargs='?', choices=['on', 'off', 'random'], + parser.add_argument('--progressive', default=defval('on'), const='normal', nargs='?', choices=['on', 'off', 'random'], help='''\ Select progressive equipment setting. Affects available itempool. (default: %(default)s) On: Swords, Shields, Armor, and Gloves will @@ -115,7 +117,7 @@ def start(): category, be randomly progressive or not. Link will die in one hit. ''') - parser.add_argument('--algorithm', default='balanced', const='balanced', nargs='?', choices=['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26', 'balanced'], + parser.add_argument('--algorithm', default=defval('balanced'), const='balanced', nargs='?', choices=['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26', 'balanced'], help='''\ Select item filling algorithm. (default: %(default)s balanced: vt26 derivitive that aims to strike a balance between @@ -138,7 +140,7 @@ def start(): slightly biased to placing progression items with less restrictions. ''') - parser.add_argument('--shuffle', default='full', const='full', nargs='?', choices=['vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple'], + parser.add_argument('--shuffle', default=defval('full'), const='full', nargs='?', choices=['vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple'], help='''\ Select Entrance Shuffling Algorithm. (default: %(default)s) Full: Mix cave and dungeon entrances freely while limiting @@ -162,7 +164,7 @@ def start(): The dungeon variants only mix up dungeons and keep the rest of the overworld vanilla. ''') - parser.add_argument('--crystals_ganon', default='7', const='7', nargs='?', choices=['random', '0', '1', '2', '3', '4', '5', '6', '7'], + parser.add_argument('--crystals_ganon', default=defval('7'), const='7', nargs='?', choices=['random', '0', '1', '2', '3', '4', '5', '6', '7'], help='''\ How many crystals are needed to defeat ganon. Any other requirements for ganon for the selected goal still apply. @@ -171,7 +173,7 @@ def start(): Random: Picks a random value between 0 and 7 (inclusive). 0-7: Number of crystals needed ''') - parser.add_argument('--crystals_gt', default='7', const='7', nargs='?', choices=['random', '0', '1', '2', '3', '4', '5', '6', '7'], + parser.add_argument('--crystals_gt', default=defval('7'), const='7', nargs='?', choices=['random', '0', '1', '2', '3', '4', '5', '6', '7'], help='''\ How many crystals are needed to open GT. For inverted mode this applies to the castle tower door instead. (default: %(default)s) @@ -181,8 +183,8 @@ def start(): parser.add_argument('--openpyramid', help='''\ Pre-opens the pyramid hole, this removes the Agahnim 2 requirement for it ''', action='store_true') - parser.add_argument('--rom', default='Zelda no Densetsu - Kamigami no Triforce (Japan).sfc', help='Path to an ALttP JAP(1.0) rom to use as a base.') - parser.add_argument('--loglevel', default='info', const='info', nargs='?', choices=['error', 'info', 'warning', 'debug'], help='Select level of logging for output.') + parser.add_argument('--rom', default=defval('Zelda no Densetsu - Kamigami no Triforce (Japan).sfc'), help='Path to an ALttP JAP(1.0) rom to use as a base.') + parser.add_argument('--loglevel', default=defval('info'), const='info', nargs='?', choices=['error', 'info', 'warning', 'debug'], help='Select level of logging for output.') parser.add_argument('--seed', help='Define seed number to generate.', type=int) parser.add_argument('--count', help='''\ Use to batch generate multiple seeds with same settings. @@ -191,7 +193,7 @@ def start(): --seed given will produce the same 10 (different) roms each time). ''', type=int) - parser.add_argument('--fastmenu', default='normal', const='normal', nargs='?', choices=['normal', 'instant', 'double', 'triple', 'quadruple', 'half'], + parser.add_argument('--fastmenu', default=defval('normal'), const='normal', nargs='?', choices=['normal', 'instant', 'double', 'triple', 'quadruple', 'half'], help='''\ Select the rate at which the menu opens and closes. (default: %(default)s) @@ -206,9 +208,9 @@ def start(): Keys are universal, shooting arrows costs rupees, and a few other little things make this more like Zelda-1. ''', action='store_true') - parser.add_argument('--custom', default=False, help='Not supported.') - parser.add_argument('--customitemarray', default=False, help='Not supported.') - parser.add_argument('--accessibility', default='items', const='items', nargs='?', choices=['items', 'locations', 'none'], help='''\ + parser.add_argument('--custom', default=defval(False), help='Not supported.') + parser.add_argument('--customitemarray', default=defval(False), help='Not supported.') + parser.add_argument('--accessibility', default=defval('items'), const='items', nargs='?', choices=['items', 'locations', 'none'], help='''\ Select Item/Location Accessibility. (default: %(default)s) Items: You can reach all unique inventory items. No guarantees about reaching all locations or all keys. @@ -219,17 +221,17 @@ def start(): Make telepathic tiles and storytellers give helpful hints. ''', action='store_true') # included for backwards compatibility - parser.add_argument('--shuffleganon', help=argparse.SUPPRESS, action='store_true', default=True) + parser.add_argument('--shuffleganon', help=argparse.SUPPRESS, action='store_true', default=defval(True)) parser.add_argument('--no-shuffleganon', help='''\ If set, the Pyramid Hole and Ganon's Tower are not included entrance shuffle pool. ''', action='store_false', dest='shuffleganon') - parser.add_argument('--heartbeep', default='normal', const='normal', nargs='?', choices=['double', 'normal', 'half', 'quarter', 'off'], + parser.add_argument('--heartbeep', default=defval('normal'), const='normal', nargs='?', choices=['double', 'normal', 'half', 'quarter', 'off'], help='''\ Select the rate at which the heart beep sound is played at low health. (default: %(default)s) ''') - parser.add_argument('--heartcolor', default='red', const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow', 'random'], + parser.add_argument('--heartcolor', default=defval('red'), const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow', 'random'], help='Select the color of Link\'s heart meter. (default: %(default)s)') parser.add_argument('--sprite', help='''\ Path to a sprite sheet to use for Link. Needs to be in @@ -244,20 +246,23 @@ def start(): Output .json patch to stdout instead of a patched rom. Used for VT site integration, do not use otherwise. ''') - parser.add_argument('--skip_playthrough', action='store_true', default=False) - parser.add_argument('--enemizercli', default='') - parser.add_argument('--shufflebosses', default='none', choices=['none', 'basic', 'normal', 'chaos']) - parser.add_argument('--shuffleenemies', default=False, action='store_true') - parser.add_argument('--enemy_health', default='default', choices=['default', 'easy', 'normal', 'hard', 'expert']) - parser.add_argument('--enemy_damage', default='default', choices=['default', 'shuffled', 'chaos']) - parser.add_argument('--shufflepalette', default=False, action='store_true') - parser.add_argument('--shufflepots', default=False, action='store_true') - parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) - parser.add_argument('--names', default='') + parser.add_argument('--skip_playthrough', action='store_true', default=defval(False)) + parser.add_argument('--enemizercli', default=defval('')) + parser.add_argument('--shufflebosses', default=defval('none'), choices=['none', 'basic', 'normal', 'chaos']) + parser.add_argument('--shuffleenemies', default=defval(False), action='store_true') + parser.add_argument('--enemy_health', default=defval('default'), choices=['default', 'easy', 'normal', 'hard', 'expert']) + parser.add_argument('--enemy_damage', default=defval('default'), choices=['default', 'shuffled', 'chaos']) + parser.add_argument('--shufflepalette', default=defval(False), action='store_true') + parser.add_argument('--shufflepots', default=defval(False), action='store_true') + parser.add_argument('--multi', default=defval(1), type=lambda value: min(max(int(value), 1), 255)) + parser.add_argument('--names', default=defval('')) parser.add_argument('--outputpath') - parser.add_argument('--race', default=False, action='store_true') + parser.add_argument('--race', default=defval(False), action='store_true') parser.add_argument('--outputname') - args = parser.parse_args() + return parser.parse_args(argv) + +def start(): + args = parse_arguments(None) if args.outputpath and os.path.isdir(args.outputpath): output_path.cached_path = args.outputpath From feb8bfeceda91bf0e6fb424c61f9d05236c94dcd Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 15 Dec 2019 18:10:12 +0100 Subject: [PATCH 088/185] Gui: get default values for missing parameters --- Gui.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Gui.py b/Gui.py index 90014c82..2dcdbd85 100755 --- a/Gui.py +++ b/Gui.py @@ -11,6 +11,7 @@ from urllib.parse import urlparse from urllib.request import urlopen from AdjusterMain import adjust +from EntranceRandomizer import parse_arguments from GuiUtils import ToolTips, set_icon, BackgroundTaskProgress from Main import main, __version__ as ESVersion from Rom import Sprite @@ -422,10 +423,11 @@ def guiMain(args=None): int(rupee300Var.get()), int(rupoorVar.get()), int(blueclockVar.get()), int(greenclockVar.get()), int(redclockVar.get()), int(progbowVar.get()), int(bomb10Var.get()), int(triforcepieceVar.get()), int(triforcecountVar.get()), int(triforceVar.get()), int(rupoorcostVar.get()), int(universalkeyVar.get())] guiargs.rom = romVar.get() - guiargs.jsonout = None guiargs.sprite = sprite - guiargs.skip_playthrough = False - guiargs.outputpath = None + # get default values for missing parameters + for k,v in vars(parse_arguments([])).items(): + if k not in vars(guiargs): + setattr(guiargs, k, v) try: if guiargs.count is not None: seed = guiargs.seed From fcde1e9cdcde05f8d560966f5022af6ab288a90d Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 01:35:10 +0100 Subject: [PATCH 089/185] Added more enemy shuffle options to be consistent with what's on the website --- EntranceRandomizer.py | 2 +- Gui.py | 2 +- Main.py | 2 +- Rom.py | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 1d147b5f..c6a5d15a 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -249,7 +249,7 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument('--skip_playthrough', action='store_true', default=defval(False)) parser.add_argument('--enemizercli', default=defval('')) parser.add_argument('--shufflebosses', default=defval('none'), choices=['none', 'basic', 'normal', 'chaos']) - parser.add_argument('--shuffleenemies', default=defval(False), action='store_true') + parser.add_argument('--shuffleenemies', default=defval('none'), choices=['none', 'shuffled', 'chaos']) parser.add_argument('--enemy_health', default=defval('default'), choices=['default', 'easy', 'normal', 'hard', 'expert']) parser.add_argument('--enemy_damage', default=defval('default'), choices=['default', 'shuffled', 'chaos']) parser.add_argument('--shufflepalette', default=defval(False), action='store_true') diff --git a/Gui.py b/Gui.py index 2dcdbd85..749f072b 100755 --- a/Gui.py +++ b/Gui.py @@ -407,7 +407,7 @@ def guiMain(args=None): guiargs.hints = bool(hintsVar.get()) guiargs.enemizercli = enemizerCLIpathVar.get() guiargs.shufflebosses = enemizerBossVar.get() - guiargs.shuffleenemies = bool(enemyShuffleVar.get()) + guiargs.shuffleenemies = 'chaos' if bool(enemyShuffleVar.get()) else 'none' guiargs.enemy_health = enemizerHealthVar.get() guiargs.enemy_damage = enemizerDamageVar.get() guiargs.shufflepalette = bool(paletteShuffleVar.get()) diff --git a/Main.py b/Main.py index 25d96641..8468740d 100644 --- a/Main.py +++ b/Main.py @@ -146,7 +146,7 @@ def main(args, seed=None): "-nohints" if not world.hints else "")) if not args.outputname else '' outfilebase = outfileprefix + outfilesuffix - use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) + use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies != 'none' or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) jsonout = {} if not args.suppress_rom: diff --git a/Rom.py b/Rom.py index dface499..c66fa741 100644 --- a/Rom.py +++ b/Rom.py @@ -170,9 +170,9 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleene # write options file for enemizer options = { - 'RandomizeEnemies': shuffleenemies, + 'RandomizeEnemies': shuffleenemies != 'none', 'RandomizeEnemiesType': 3, - 'RandomizeBushEnemyChance': True, + 'RandomizeBushEnemyChance': shuffleenemies == 'chaos', 'RandomizeEnemyHealthRange': enemy_health != 'default', 'RandomizeEnemyHealthType': {'default': 0, 'easy': 0, 'normal': 1, 'hard': 2, 'expert': 3}[enemy_health], 'OHKO': False, @@ -218,9 +218,9 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleene 'SwordGraphics': "sword_gfx/normal.gfx", 'BeeMizer': False, 'BeesLevel': 0, - 'RandomizeTileTrapPattern': True, + 'RandomizeTileTrapPattern': shuffleenemies == 'chaos', 'RandomizeTileTrapFloorTile': False, - 'AllowKillableThief': shuffleenemies, + 'AllowKillableThief': bool(random.randint(0,1)) if shuffleenemies == 'chaos' else shuffleenemies != 'none', 'RandomizeSpriteOnHit': False, 'DebugMode': False, 'DebugForceEnemy': False, From 261e9c40f945345ae391597d9b841fb57bbb8483 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 02:05:33 +0100 Subject: [PATCH 090/185] Mystery: added a script to randomly generate game settings, uses same weights as Sahasrahbot --- Mystery.py | 185 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 Mystery.py diff --git a/Mystery.py b/Mystery.py new file mode 100644 index 00000000..b48d11b2 --- /dev/null +++ b/Mystery.py @@ -0,0 +1,185 @@ +import argparse +import os +import logging +import random +import urllib.request +import urllib.parse + +from EntranceRandomizer import parse_arguments +from Main import main as ERmain + +def parse_yaml(txt): + ret = {} + indents = {0: ret} + for line in txt.splitlines(): + if not line: + continue + name, val = line.split(':', 1) + val = val.strip() + spaces = len(name) - len(name.lstrip(' ')) + name = name.strip() + if val: + indents[spaces][name] = val + else: + newdict = {} + indents[spaces][name] = newdict + indents[spaces+2] = newdict + return ret + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('--weights', help='Path to the weights file to use for rolling game settings, urls are also valid', required=True) + parser.add_argument('--seed', help='Define seed number to generate.', type=int) + parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) + parser.add_argument('--names', default='') + parser.add_argument('--create_spoiler', action='store_true') + parser.add_argument('--rom') + parser.add_argument('--enemizercli') + parser.add_argument('--outputpath') + args = parser.parse_args() + + try: + if urllib.parse.urlparse(args.weights).scheme: + yaml = str(urllib.request.urlopen(args.weights).read(), "utf-8") + else: + with open(args.weights, 'rb') as f: + yaml = str(f.read(), "utf-8") + except Exception as e: + print('Failed to read weights (%s)' % e) + return + + random.seed(args.seed) + weights = parse_yaml(yaml) + print(f"Weights: {args.weights} >> {weights['description']}") + + while not gen_mystery(args, weights): + pass + +def gen_mystery(args, weights): + seed = random.randint(0, 999999999) + seedname = f'M{random.randint(0, 999999999)}_{os.path.splitext(os.path.basename(args.weights))[0]}' + + print(f"Generating mystery for {args.multi} player{'s' if args.multi > 1 else ''}, {seedname} Seed {seed}") + + choices = {} + def get_choice(option): + ret = random.choices(list(map(lambda s: s.strip('\''),weights[option].keys())), weights=list(map(int,weights[option].values())))[0] + choices[option] = ret + return ret + + erargs = argparse.Namespace + erargs.seed = seed + erargs.multi = args.multi + erargs.names = args.names + erargs.create_spoiler = args.create_spoiler + erargs.race = True + erargs.outputname = seedname + erargs.outputpath = args.outputpath + + if args.rom: + erargs.rom = args.rom + erargs.enemizercli = args.enemizercli + + logic = get_choice('glitches_required') + if logic not in ['none', 'no_logic']: + print("Only NMG and No Logic supported") + return False + erargs.logic = {'none': 'noglitches', 'no_logic': 'nologic'}[logic] + + item_placement = get_choice('item_placement') + # not supported in ER + + dungeon_items = get_choice('dungeon_items') + if dungeon_items in ['mc', 'mcs', 'full']: + erargs.mapshuffle = True + erargs.compassshuffle = True + if dungeon_items in ['mcs', 'full']: + erargs.keyshuffle = True + if dungeon_items in ['full']: + erargs.bigkeyshuffle = True + + accessibility = get_choice('accessibility') + erargs.accessibility = accessibility + + entrance_shuffle = get_choice('entrance_shuffle') + erargs.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' + + goals = get_choice('goals') + erargs.goal = {'ganon': 'ganon', + 'fast_ganon': 'crystals', + 'dungeons': 'dungeons', + 'pedestal': 'pedestal', + 'triforce-hunt': 'triforce-hunt' + }[goals] + if goals == 'fast_ganon' and entrance_shuffle == 'none': + erargs.openpyramid = True + + tower_open = get_choice('tower_open') + erargs.crystals_gt = tower_open + + ganon_open = get_choice('ganon_open') + erargs.crystals_ganon = ganon_open + + world_state = get_choice('world_state') + erargs.mode = world_state + if world_state == 'retro': + erargs.mode = 'open' + erargs.retro = True + + hints = get_choice('hints') + if hints == 'on': + erargs.hints = True + + weapons = get_choice('weapons') + erargs.swords = {'randomized': 'random', + 'assured': 'assured', + 'vanilla': 'vanilla', + 'swordless': 'swordless' + }[weapons] + + item_pool = get_choice('item_pool') + erargs.difficulty = item_pool + + item_functionality = get_choice('item_functionality') + erargs.item_functionality = item_functionality + + boss_shuffle = get_choice('boss_shuffle') + erargs.shufflebosses = {'none': 'none', + 'simple': 'basic', + 'full': 'normal', + 'random': 'chaos' + }[boss_shuffle] + + enemy_shuffle = get_choice('enemy_shuffle') + erargs.shuffleenemies = {'none': 'none', + 'shuffled': 'shuffled', + 'random': 'chaos' + }[enemy_shuffle] + + enemy_damage = get_choice('enemy_damage') + erargs.enemy_damage = {'default': 'default', + 'shuffled': 'shuffled', + 'random': 'chaos' + }[enemy_damage] + + enemy_health = get_choice('enemy_health') + erargs.enemy_health = enemy_health + + for k, v in vars(parse_arguments([])).items(): + if k not in vars(erargs): + setattr(erargs, k, v) + + # set up logger + loglevel = {'error': logging.ERROR, 'info': logging.INFO, 'warning': logging.WARNING, 'debug': logging.DEBUG}[args.loglevel] + logging.basicConfig(format='%(message)s', level=loglevel) + + try: + ERmain(erargs, seed) + except Exception as e: + logging.exception(e) + return False + + return True + +if __name__ == '__main__': + main() From d33582a3a21fec13aeeeb84add58d5c5dd73ffbf Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 09:59:16 +0100 Subject: [PATCH 091/185] Enable bombs in escape assist with an enemized standard start so you can beat the game --- BaseClasses.py | 1 + Main.py | 2 ++ Rom.py | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index f18ba018..92862ecd 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -74,6 +74,7 @@ class World(object): self.difficulty_requirements = None self.fix_fake_world = True self.boss_shuffle = boss_shuffle + self.escape_assist = [] self.hints = hints self.crystals_needed_for_ganon = 7 self.crystals_needed_for_gt = 7 diff --git a/Main.py b/Main.py index 8468740d..925d94ab 100644 --- a/Main.py +++ b/Main.py @@ -56,6 +56,8 @@ def main(args, seed=None): logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed) world.difficulty_requirements = difficulties[world.difficulty] + if world.mode == 'standard' and (args.shuffleenemies != 'none' or args.enemy_health not in ['default', 'easy']): + world.escape_assist.append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it if world.mode != 'inverted': for player in range(1, world.players + 1): diff --git a/Rom.py b/Rom.py index c66fa741..17d0434d 100644 --- a/Rom.py +++ b/Rom.py @@ -935,7 +935,9 @@ def patch_rom(world, player, rom, enemized): rom.write_bytes(0x180080, [50, 50, 70, 70]) # values to fill for Capacity Upgrades (Bomb5, Bomb10, Arrow5, Arrow10) - rom.write_byte(0x18004D, 0x00) # Escape assist (off) + rom.write_byte(0x18004D, ((0x01 if 'arrows' in world.escape_assist else 0x00) | + (0x02 if 'bombs' in world.escape_assist else 0x00) | + (0x04 if 'magic' in world.escape_assist else 0x00))) # Escape assist if world.goal in ['pedestal', 'triforcehunt']: rom.write_byte(0x18003E, 0x01) # make ganon invincible From 930dcfb90f02f3317c9192c4da7272daebfb5b40 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 10:58:25 +0100 Subject: [PATCH 092/185] Use original item code for maps and compasses in their dungeons --- Rom.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rom.py b/Rom.py index 17d0434d..02c5abc9 100644 --- a/Rom.py +++ b/Rom.py @@ -473,6 +473,10 @@ def patch_rom(world, player, rom, enemized): itemid = 0x32 if location.item.smallkey: itemid = 0x24 + if location.item.map: + itemid = 0x33 + if location.item.compass: + itemid = 0x25 if location.item and location.item.player != player: if location.player_address is not None: rom.write_byte(location.player_address, location.item.player) From a6e7157e17f64969855f4237e177e45cb8cbc1d4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 12:52:30 +0100 Subject: [PATCH 093/185] parse_arguments: players can now override specific settings --- EntranceRandomizer.py | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index c6a5d15a..8d050d14 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -1,9 +1,11 @@ #!/usr/bin/env python3 import argparse +import copy import os import logging import random import textwrap +import shlex import sys from Main import main @@ -19,6 +21,11 @@ def parse_arguments(argv, no_defaults=False): def defval(value): return value if not no_defaults else None + # we need to know how many players we have first + parser = argparse.ArgumentParser() + parser.add_argument('--multi', default=defval(1), type=lambda value: min(max(int(value), 1), 255)) + multiargs, _ = parser.parse_known_args(argv) + parser = argparse.ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter) parser.add_argument('--create_spoiler', help='Output a Spoiler File', action='store_true') parser.add_argument('--logic', default=defval('noglitches'), const='noglitches', nargs='?', choices=['noglitches', 'minorglitches', 'nologic'], @@ -259,7 +266,26 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument('--outputpath') parser.add_argument('--race', default=defval(False), action='store_true') parser.add_argument('--outputname') - return parser.parse_args(argv) + + if multiargs.multi: + for player in range(1, multiargs.multi + 1): + parser.add_argument(f'--p{player}', default=defval(''), help=argparse.SUPPRESS) + + ret = parser.parse_args(argv) + + if multiargs.multi: + defaults = copy.deepcopy(ret) + for player in range(1, multiargs.multi + 1): + playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) + + def set_player_arg(name): + value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) + if player == 1: + setattr(ret, name, {1: value}) + else: + getattr(ret, name)[player] = value + + return ret def start(): args = parse_arguments(None) From b695d3573ed254d8dacdd111e88c116aa052b7b6 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 13:09:43 +0100 Subject: [PATCH 094/185] Main: change output name to support individual player settings --- Main.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Main.py b/Main.py index 925d94ab..0830d95d 100644 --- a/Main.py +++ b/Main.py @@ -138,15 +138,7 @@ def main(args, seed=None): sprite = None player_names = parse_names_string(args.names) - outfileprefix = 'ER_%s' % (args.outputname if args.outputname else world.seed) - outfilesuffix = ('_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic, world.difficulty, world.difficulty_adjustments, - world.mode, world.goal, - "" if world.timer in ['none', 'display'] else "-" + world.timer, - world.shuffle, world.algorithm, mcsb_name, - "-retro" if world.retro else "", - "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", - "-nohints" if not world.hints else "")) if not args.outputname else '' - outfilebase = outfileprefix + outfilesuffix + outfilebase = 'ER_%s' % (args.outputname if args.outputname else world.seed) use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies != 'none' or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) @@ -194,8 +186,16 @@ def main(args, seed=None): rom.write_bytes(int(addr), values) apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) - outfilepname = f"{f'_P{player}' if world.players > 1 else ''}{f'_{player_names[player]}' if player in player_names else ''}" - rom.write_to_file(output_path(f'{outfileprefix}{outfilepname}{outfilesuffix}.sfc')) + outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', + f'_{player_names[player]}' if player in player_names else '', + world.logic, world.difficulty, world.difficulty_adjustments, + world.mode, world.goal, + "" if world.timer in ['none', 'display'] else "-" + world.timer, + world.shuffle, world.algorithm, mcsb_name, + "-retro" if world.retro else "", + "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", + "-nohints" if not world.hints else "")) if not args.outputname else '' + rom.write_to_file(output_path(f'{outfilebase}{outfilesuffix}.sfc')) with open(output_path('%s_multidata' % outfilebase), 'wb') as f: pickle.dump(multidata, f, pickle.HIGHEST_PROTOCOL) From 79786c7c9e459b97874982db1fab68aeb429f6fe Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 13:26:07 +0100 Subject: [PATCH 095/185] Individual settings: logic --- BaseClasses.py | 2 +- EntranceRandomizer.py | 2 ++ Main.py | 2 +- Plando.py | 2 +- Rom.py | 2 +- Rules.py | 6 +++--- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 92862ecd..752a3817 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -11,7 +11,7 @@ class World(object): def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, retro, custom, customitemarray, boss_shuffle, hints): self.players = players self.shuffle = shuffle - self.logic = logic + self.logic = logic.copy() self.mode = mode self.swords = swords self.difficulty = difficulty diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 8d050d14..b8584d54 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -285,6 +285,8 @@ def parse_arguments(argv, no_defaults=False): else: getattr(ret, name)[player] = value + set_player_arg("logic") + return ret def start(): diff --git a/Main.py b/Main.py index 0830d95d..4c8d11a1 100644 --- a/Main.py +++ b/Main.py @@ -188,7 +188,7 @@ def main(args, seed=None): apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', f'_{player_names[player]}' if player in player_names else '', - world.logic, world.difficulty, world.difficulty_adjustments, + world.logic[player], world.difficulty, world.difficulty_adjustments, world.mode, world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, mcsb_name, diff --git a/Plando.py b/Plando.py index 6e0c8a48..eb331813 100755 --- a/Plando.py +++ b/Plando.py @@ -119,7 +119,7 @@ def fill_world(world, plando, text_patches): world.mode = modestr.strip() elif line.startswith('!logic'): _, logicstr = line.split(':', 1) - world.logic = logicstr.strip() + world.logic = {1: logicstr.strip()} elif line.startswith('!goal'): _, goalstr = line.split(':', 1) world.goal = goalstr.strip() diff --git a/Rom.py b/Rom.py index 02c5abc9..649666fd 100644 --- a/Rom.py +++ b/Rom.py @@ -1014,7 +1014,7 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x180020, digging_game_rng) rom.write_byte(0xEFD95, digging_game_rng) rom.write_byte(0x1800A3, 0x01) # enable correct world setting behaviour after agahnim kills - rom.write_byte(0x1800A4, 0x01 if world.logic != 'nologic' else 0x00) # enable POD EG fix + rom.write_byte(0x1800A4, 0x01 if world.logic[player] != 'nologic' else 0x00) # enable POD EG fix rom.write_byte(0x180042, 0x01 if world.save_and_quit_from_boss else 0x00) # Allow Save and Quit after boss kill # remove shield from uncle diff --git a/Rules.py b/Rules.py index 7d5e381c..7606872b 100644 --- a/Rules.py +++ b/Rules.py @@ -5,7 +5,7 @@ from BaseClasses import CollectionState def set_rules(world, player): - if world.logic == 'nologic': + if world.logic[player] == 'nologic': logging.getLogger('').info('WARNING! Seeds generated under this logic often require major glitches and may be impossible!') if world.mode != 'inverted': world.get_region('Links House', player).can_reach_private = lambda state: True @@ -35,9 +35,9 @@ def set_rules(world, player): else: raise NotImplementedError('Not implemented yet') - if world.logic == 'noglitches': + if world.logic[player] == 'noglitches': no_glitches_rules(world, player) - elif world.logic == 'minorglitches': + elif world.logic[player] == 'minorglitches': logging.getLogger('').info('Minor Glitches may be buggy still. No guarantee for proper logic checks.') else: raise NotImplementedError('Not implemented yet') From ab28858a8f0d390a53b273f67f26a1ea23e287a4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 16:54:46 +0100 Subject: [PATCH 096/185] Individual settings: mode --- BaseClasses.py | 14 +++++++------- Bosses.py | 2 +- Dungeons.py | 2 +- EntranceRandomizer.py | 1 + EntranceShuffle.py | 42 ++++++++++++++++++++--------------------- Fill.py | 4 ++-- InvertedRegions.py | 6 +++--- ItemList.py | 12 ++++++------ Main.py | 44 +++++++++++++++++++------------------------ Plando.py | 6 +++--- Regions.py | 6 +++--- Rom.py | 44 +++++++++++++++++++++---------------------- Rules.py | 24 +++++++++++------------ 13 files changed, 101 insertions(+), 106 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 752a3817..11a94f2b 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -12,7 +12,7 @@ class World(object): self.players = players self.shuffle = shuffle self.logic = logic.copy() - self.mode = mode + self.mode = mode.copy() self.swords = swords self.difficulty = difficulty self.difficulty_adjustments = difficulty_adjustments @@ -39,7 +39,7 @@ class World(object): self.powder_patch_required = {player: False for player in range(1, players + 1)} self.ganon_at_pyramid = {player: True for player in range(1, players + 1)} self.ganonstower_vanilla = {player: True for player in range(1, players + 1)} - self.sewer_light_cone = mode == 'standard' + self.sewer_light_cone = {player: mode[player] == 'standard' for player in range(1, players + 1)} self.light_world_light_cone = False self.dark_world_light_cone = False self.treasure_hunt_count = 0 @@ -48,7 +48,7 @@ class World(object): self.rupoor_cost = 10 self.aga_randomness = True self.lock_aga_door_in_escape = False - self.fix_trock_doors = self.shuffle != 'vanilla' or self.mode == 'inverted' + self.fix_trock_doors = {player: self.shuffle != 'vanilla' or self.mode[player] == 'inverted' for player in range(1, players + 1)} self.save_and_quit_from_boss = True self.accessibility = accessibility self.fix_skullwoods_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] @@ -74,7 +74,7 @@ class World(object): self.difficulty_requirements = None self.fix_fake_world = True self.boss_shuffle = boss_shuffle - self.escape_assist = [] + self.escape_assist = {player: [] for player in range(1, players + 1)} self.hints = hints self.crystals_needed_for_ganon = 7 self.crystals_needed_for_gt = 7 @@ -499,7 +499,7 @@ class CollectionState(object): if self.has_Pearl(player): return True - return region.is_light_world if self.world.mode != 'inverted' else region.is_dark_world + return region.is_light_world if self.world.mode[player] != 'inverted' else region.is_dark_world def can_reach_light_world(self, player): if True in [i.is_light_world for i in self.reachable_regions[player]]: @@ -689,7 +689,7 @@ class Region(object): or (item.bigkey and not self.world.bigkeyshuffle) or (item.map and not self.world.mapshuffle) or (item.compass and not self.world.compassshuffle)) - sewer_hack = self.world.mode == 'standard' and item.name == 'Small Key (Escape)' + sewer_hack = self.world.mode[item.player] == 'standard' and item.name == 'Small Key (Escape)' if sewer_hack or inside_dungeon_item: return self.dungeon and self.dungeon.is_dungeon_item(item) and item.player == self.player @@ -1025,7 +1025,7 @@ class Spoiler(object): self.bosses[str(player)]["Ice Palace"] = self.world.get_dungeon("Ice Palace", player).boss.name self.bosses[str(player)]["Misery Mire"] = self.world.get_dungeon("Misery Mire", player).boss.name self.bosses[str(player)]["Turtle Rock"] = self.world.get_dungeon("Turtle Rock", player).boss.name - if self.world.mode != 'inverted': + if self.world.mode[player] != 'inverted': self.bosses[str(player)]["Ganons Tower Basement"] = self.world.get_dungeon('Ganons Tower', player).bosses['bottom'].name self.bosses[str(player)]["Ganons Tower Middle"] = self.world.get_dungeon('Ganons Tower', player).bosses['middle'].name self.bosses[str(player)]["Ganons Tower Top"] = self.world.get_dungeon('Ganons Tower', player).bosses['top'].name diff --git a/Bosses.py b/Bosses.py index 2713c92c..a4b9b313 100644 --- a/Bosses.py +++ b/Bosses.py @@ -141,7 +141,7 @@ def place_bosses(world, player): if world.boss_shuffle == 'none': return # Most to least restrictive order - if world.mode != 'inverted': + if world.mode[player] != 'inverted': boss_locations = [ ['Ganons Tower', 'top'], ['Tower of Hera', None], diff --git a/Dungeons.py b/Dungeons.py index 65a585a7..a176af13 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -27,7 +27,7 @@ def create_dungeons(world, player): MM = make_dungeon('Misery Mire', 'Vitreous', ['Misery Mire (Entrance)', 'Misery Mire (Main)', 'Misery Mire (West)', 'Misery Mire (Final Area)', 'Misery Mire (Vitreous)'], 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', ['Turtle Rock (Entrance)', 'Turtle Rock (First Section)', 'Turtle Rock (Chain Chomp Room)', 'Turtle Rock (Second Section)', 'Turtle Rock (Big Chest)', 'Turtle Rock (Crystaroller Room)', 'Turtle Rock (Dark Room)', 'Turtle Rock (Eye Bridge)', 'Turtle Rock (Trinexx)'], ItemFactory('Big Key (Turtle Rock)', player), ItemFactory(['Small Key (Turtle Rock)'] * 4, player), ItemFactory(['Map (Turtle Rock)', 'Compass (Turtle Rock)'], player)) - if world.mode != 'inverted': + if world.mode[player] != 'inverted': AT = make_dungeon('Agahnims Tower', 'Agahnim', ['Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2, player), []) GT = make_dungeon('Ganons Tower', 'Agahnim2', ['Ganons Tower (Entrance)', 'Ganons Tower (Tile Room)', 'Ganons Tower (Compass Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower (Map Room)', 'Ganons Tower (Firesnake Room)', 'Ganons Tower (Teleport Room)', 'Ganons Tower (Bottom)', 'Ganons Tower (Top)', 'Ganons Tower (Before Moldorm)', 'Ganons Tower (Moldorm)', 'Agahnim 2'], ItemFactory('Big Key (Ganons Tower)', player), ItemFactory(['Small Key (Ganons Tower)'] * 4, player), ItemFactory(['Map (Ganons Tower)', 'Compass (Ganons Tower)'], player)) else: diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index b8584d54..bba20536 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -286,6 +286,7 @@ def parse_arguments(argv, no_defaults=False): getattr(ret, name)[player] = value set_player_arg("logic") + set_player_arg("mode") return ret diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 1cebd6f9..f20765a0 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -39,7 +39,7 @@ def link_entrances(world, player): lw_entrances = list(LW_Dungeon_Entrances) dw_entrances = list(DW_Dungeon_Entrances) - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: @@ -52,7 +52,7 @@ def link_entrances(world, player): dw_entrances.append('Ganons Tower') dungeon_exits.append('Ganons Tower Exit') - if world.mode == 'standard': + if world.mode[player] == 'standard': # rest of hyrule castle must be in light world, so it has to be the one connected to east exit of desert connect_mandatory_exits(world, lw_entrances, [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], list(LW_Dungeon_Entrances_Must_Exit), player) else: @@ -273,7 +273,7 @@ def link_entrances(world, player): # tavern back door cannot be shuffled yet connect_doors(world, ['Tavern North'], ['Tavern'], player) - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: @@ -309,7 +309,7 @@ def link_entrances(world, player): pass else: #if the cave wasn't placed we get here connect_caves(world, lw_entrances, [], old_man_house, player) - if world.mode == 'standard': + if world.mode[player] == 'standard': # rest of hyrule castle must be in light world connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], player) @@ -376,7 +376,7 @@ def link_entrances(world, player): # tavern back door cannot be shuffled yet connect_doors(world, ['Tavern North'], ['Tavern'], player) - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: @@ -392,7 +392,7 @@ def link_entrances(world, player): #place must-exit caves connect_mandatory_exits(world, entrances, caves, must_exits, player) - if world.mode == 'standard': + if world.mode[player] == 'standard': # rest of hyrule castle must be dealt with connect_caves(world, entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], player) @@ -451,7 +451,7 @@ def link_entrances(world, player): blacksmith_doors = list(Blacksmith_Single_Cave_Doors) door_targets = list(Single_Cave_Targets) - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) else: @@ -471,7 +471,7 @@ def link_entrances(world, player): else: connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits, player) connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits, player) - if world.mode == 'standard': + if world.mode[player] == 'standard': # rest of hyrule castle must be in light world connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], player) @@ -552,7 +552,7 @@ def link_entrances(world, player): ('Lumberjack Tree Exit', 'Lumberjack Tree (top)'), (('Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)'), 'Skull Woods Second Section (Drop)')] - if world.mode == 'standard': + if world.mode[player] == 'standard': # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) @@ -606,7 +606,7 @@ def link_entrances(world, player): connect_entrance(world, hole, target, player) # hyrule castle handling - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) connect_exit(world, 'Hyrule Castle Exit (South)', 'Hyrule Castle Entrance (South)', player) @@ -792,7 +792,7 @@ def link_entrances(world, player): # tavern back door cannot be shuffled yet connect_doors(world, ['Tavern North'], ['Tavern'], player) - if world.mode == 'standard': + if world.mode[player] == 'standard': # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) @@ -825,7 +825,7 @@ def link_entrances(world, player): connect_entrance(world, hole, hole_targets.pop(), player) # hyrule castle handling - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) connect_exit(world, 'Hyrule Castle Exit (South)', 'Hyrule Castle Entrance (South)', player) @@ -927,7 +927,7 @@ def link_entrances(world, player): hole_targets = ['Kakariko Well (top)', 'Bat Cave (right)', 'North Fairy Cave', 'Lost Woods Hideout (top)', 'Lumberjack Tree (top)', 'Sewer Drop', 'Skull Woods Second Section (Drop)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)'] - if world.mode == 'standard': + if world.mode[player] == 'standard': # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs', player) @@ -960,7 +960,7 @@ def link_entrances(world, player): connect_entrance(world, hole, hole_targets.pop(), player) # hyrule castle handling - if world.mode == 'standard': + if world.mode[player] == 'standard': # must connect front of hyrule castle to do escape connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) connect_exit(world, 'Hyrule Castle Exit (South)', 'Hyrule Castle Entrance (South)', player) @@ -1831,7 +1831,7 @@ def scramble_holes(world, player): else: hole_targets.append(('Pyramid Exit', 'Pyramid')) - if world.mode == 'standard': + if world.mode[player] == 'standard': # cannot move uncle cave connect_two_way(world, 'Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Exit', player) connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance', player) @@ -1931,11 +1931,11 @@ def connect_mandatory_exits(world, entrances, caves, must_be_exits, player, dp_m if len(cave) == 2: entrance = entrances.pop() # ToDo Better solution, this is a hot fix. Do not connect both sides of trock/desert ledge only to each other - if world.mode != 'inverted' and entrance == 'Dark Death Mountain Ledge (West)': + if world.mode[player] != 'inverted' and entrance == 'Dark Death Mountain Ledge (West)': new_entrance = entrances.pop() entrances.append(entrance) entrance = new_entrance - if world.mode == 'inverted' and entrance == dp_must_exit: + if world.mode[player] == 'inverted' and entrance == dp_must_exit: new_entrance = entrances.pop() entrances.append(entrance) entrance = new_entrance @@ -2006,7 +2006,7 @@ def simple_shuffle_dungeons(world, player): dungeon_entrances = ['Eastern Palace', 'Tower of Hera', 'Thieves Town', 'Skull Woods Final Section', 'Palace of Darkness', 'Ice Palace', 'Misery Mire', 'Swamp Palace'] dungeon_exits = ['Eastern Palace Exit', 'Tower of Hera Exit', 'Thieves Town Exit', 'Skull Woods Final Section Exit', 'Palace of Darkness Exit', 'Ice Palace Exit', 'Misery Mire Exit', 'Swamp Palace Exit'] - if world.mode != 'inverted': + if world.mode[player] != 'inverted': if not world.shuffle_ganon: connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit', player) else: @@ -2021,13 +2021,13 @@ def simple_shuffle_dungeons(world, player): # mix up 4 door dungeons multi_dungeons = ['Desert', 'Turtle Rock'] - if world.mode == 'open' or (world.mode == 'inverted' and world.shuffle_ganon): + if world.mode[player] == 'open' or (world.mode[player] == 'inverted' and world.shuffle_ganon): multi_dungeons.append('Hyrule Castle') random.shuffle(multi_dungeons) dp_target = multi_dungeons[0] tr_target = multi_dungeons[1] - if world.mode not in ['open', 'inverted'] or (world.mode == 'inverted' and world.shuffle_ganon is False): + if world.mode[player] not in ['open', 'inverted'] or (world.mode[player] == 'inverted' and world.shuffle_ganon is False): # place hyrule castle as intended hc_target = 'Hyrule Castle' else: @@ -2035,7 +2035,7 @@ def simple_shuffle_dungeons(world, player): # ToDo improve this? - if world.mode != 'inverted': + if world.mode[player] != 'inverted': if hc_target == 'Hyrule Castle': connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)', player) connect_two_way(world, 'Hyrule Castle Entrance (East)', 'Hyrule Castle Exit (East)', player) diff --git a/Fill.py b/Fill.py index c369da20..4594ba65 100644 --- a/Fill.py +++ b/Fill.py @@ -239,8 +239,8 @@ def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=No fill_locations.reverse() # Make sure the escape small key is placed first in standard with key shuffle to prevent running out of spots - if world.keyshuffle and world.mode == 'standard': - progitempool.sort(key=lambda item: 1 if item.name == 'Small Key (Escape)' else 0) + if world.keyshuffle: + progitempool.sort(key=lambda item: 1 if item.name == 'Small Key (Escape)' and world.mode[item.player] == 'standard' else 0) fill_restrictive(world, world.state, fill_locations, progitempool) diff --git a/InvertedRegions.py b/InvertedRegions.py index 61c257ff..48234e02 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -344,10 +344,10 @@ def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None ret.locations.append(Location(player, location, address, crystal, hint_text, ret, player_address)) return ret -def mark_dark_world_regions(world): +def mark_dark_world_regions(world, player): # cross world caves may have some sections marked as both in_light_world, and in_dark_work. # That is ok. the bunny logic will check for this case and incorporate special rules. - queue = collections.deque(region for region in world.regions if region.type == RegionType.DarkWorld) + queue = collections.deque(region for region in world.get_regions(player) if region.type == RegionType.DarkWorld) seen = set(queue) while queue: current = queue.popleft() @@ -360,7 +360,7 @@ def mark_dark_world_regions(world): seen.add(exit.connected_region) queue.append(exit.connected_region) - queue = collections.deque(region for region in world.regions if region.type == RegionType.LightWorld) + queue = collections.deque(region for region in world.get_regions(player) if region.type == RegionType.LightWorld) seen = set(queue) while queue: current = queue.popleft() diff --git a/ItemList.py b/ItemList.py index dba4a38f..706a7c4a 100644 --- a/ItemList.py +++ b/ItemList.py @@ -126,7 +126,7 @@ difficulties = { def generate_itempool(world, player): if (world.difficulty not in ['normal', 'hard', 'expert'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] - or world.mode not in ['open', 'standard', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): + or world.mode[player] not in ['open', 'standard', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') if world.timer in ['ohko', 'timed-ohko']: @@ -138,7 +138,7 @@ def generate_itempool(world, player): world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) if world.goal in ['triforcehunt']: - if world.mode == 'inverted': + if world.mode[player] == 'inverted': region = world.get_region('Light World',player) else: region = world.get_region('Hyrule Castle Courtyard', player) @@ -177,15 +177,15 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords, world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[69], 9999) else: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.swords, world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords, world.retro) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) - if world.mode == 'standard' and not world.state.has_blunt_weapon(player) and "Link's Uncle" not in placed_items: + if world.mode[player] == 'standard' and not world.state.has_blunt_weapon(player) and "Link's Uncle" not in placed_items: found_sword = False found_bow = False possible_weapons = [] @@ -261,7 +261,7 @@ take_any_locations = [ 'Dark Lake Hylia Ledge Spike Cave', 'Fortune Teller (Dark)', 'Dark Sanctuary Hint', 'Dark Desert Hint'] def set_up_take_anys(world, player): - if world.mode == 'inverted' and 'Dark Sanctuary Hint' in take_any_locations: + if world.mode[player] == 'inverted' and 'Dark Sanctuary Hint' in take_any_locations: take_any_locations.remove('Dark Sanctuary Hint') regions = random.sample(take_any_locations, 5) diff --git a/Main.py b/Main.py index 4c8d11a1..307ed889 100644 --- a/Main.py +++ b/Main.py @@ -56,30 +56,26 @@ def main(args, seed=None): logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed) world.difficulty_requirements = difficulties[world.difficulty] - if world.mode == 'standard' and (args.shuffleenemies != 'none' or args.enemy_health not in ['default', 'easy']): - world.escape_assist.append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it - if world.mode != 'inverted': - for player in range(1, world.players + 1): + for player in range(1, world.players + 1): + if world.mode[player] == 'standard' and (args.shuffleenemies != 'none' or args.enemy_health not in ['default', 'easy']): + world.escape_assist[player].append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it + + if world.mode[player] != 'inverted': create_regions(world, player) - create_dungeons(world, player) - else: - for player in range(1, world.players + 1): + else: create_inverted_regions(world, player) - create_dungeons(world, player) + create_dungeons(world, player) logger.info('Shuffling the World about.') - if world.mode != 'inverted': - for player in range(1, world.players + 1): + for player in range(1, world.players + 1): + if world.mode[player] != 'inverted': link_entrances(world, player) - - mark_light_world_regions(world) - else: - for player in range(1, world.players + 1): + mark_light_world_regions(world, player) + else: link_inverted_entrances(world, player) - - mark_dark_world_regions(world) + mark_dark_world_regions(world, player) logger.info('Generating Item Pool.') @@ -189,7 +185,7 @@ def main(args, seed=None): outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', f'_{player_names[player]}' if player in player_names else '', world.logic[player], world.difficulty, world.difficulty_adjustments, - world.mode, world.goal, + world.mode[player], world.goal, "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, mcsb_name, "-retro" if world.retro else "", @@ -232,7 +228,7 @@ def copy_world(world): ret.ganonstower_vanilla = world.ganonstower_vanilla.copy() ret.treasure_hunt_count = world.treasure_hunt_count ret.treasure_hunt_icon = world.treasure_hunt_icon - ret.sewer_light_cone = world.sewer_light_cone + ret.sewer_light_cone = world.sewer_light_cone.copy() ret.light_world_light_cone = world.light_world_light_cone ret.dark_world_light_cone = world.dark_world_light_cone ret.seed = world.seed @@ -251,14 +247,12 @@ def copy_world(world): ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon ret.crystals_needed_for_gt = world.crystals_needed_for_gt - if world.mode != 'inverted': - for player in range(1, world.players + 1): + for player in range(1, world.players + 1): + if world.mode[player] != 'inverted': create_regions(ret, player) - create_dungeons(ret, player) - else: - for player in range(1, world.players + 1): + else: create_inverted_regions(ret, player) - create_dungeons(ret, player) + create_dungeons(ret, player) copy_dynamic_regions_and_locations(world, ret) @@ -436,7 +430,7 @@ def create_playthrough(world): 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}) for _, path in dict(old_world.spoiler.paths).items(): if any(exit == 'Pyramid Fairy' for (_, exit) in path): - if world.mode != 'inverted': + if world.mode[player] != 'inverted': old_world.spoiler.paths[str(world.get_region('Big Bomb Shop', player))] = get_path(state, world.get_region('Big Bomb Shop', player)) else: old_world.spoiler.paths[str(world.get_region('Inverted Big Bomb Shop', player))] = get_path(state, world.get_region('Inverted Big Bomb Shop', player)) diff --git a/Plando.py b/Plando.py index eb331813..490da77d 100755 --- a/Plando.py +++ b/Plando.py @@ -116,7 +116,7 @@ def fill_world(world, plando, text_patches): tr_medallion = medallionstr.strip() elif line.startswith('!mode'): _, modestr = line.split(':', 1) - world.mode = modestr.strip() + world.mode = {1: modestr.strip()} elif line.startswith('!logic'): _, logicstr = line.split(':', 1) world.logic = {1: logicstr.strip()} @@ -125,7 +125,7 @@ def fill_world(world, plando, text_patches): world.goal = goalstr.strip() elif line.startswith('!light_cone_sewers'): _, sewerstr = line.split(':', 1) - world.sewer_light_cone = sewerstr.strip().lower() == 'true' + world.sewer_light_cone = {1: sewerstr.strip().lower() == 'true'} elif line.startswith('!light_cone_lw'): _, lwconestr = line.split(':', 1) world.light_world_light_cone = lwconestr.strip().lower() == 'true' @@ -134,7 +134,7 @@ def fill_world(world, plando, text_patches): world.dark_world_light_cone = dwconestr.strip().lower() == 'true' elif line.startswith('!fix_trock_doors'): _, trdstr = line.split(':', 1) - world.fix_trock_doors = trdstr.strip().lower() == 'true' + world.fix_trock_doors = {1: trdstr.strip().lower() == 'true'} elif line.startswith('!fix_trock_exit'): _, trfstr = line.split(':', 1) world.fix_trock_exit = trfstr.strip().lower() == 'true' diff --git a/Regions.py b/Regions.py index b74d399b..021cf217 100644 --- a/Regions.py +++ b/Regions.py @@ -335,10 +335,10 @@ def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None ret.locations.append(Location(player, location, address, crystal, hint_text, ret, player_address)) return ret -def mark_light_world_regions(world): +def mark_light_world_regions(world, player): # cross world caves may have some sections marked as both in_light_world, and in_dark_work. # That is ok. the bunny logic will check for this case and incorporate special rules. - queue = collections.deque(region for region in world.regions if region.type == RegionType.LightWorld) + queue = collections.deque(region for region in world.get_regions(player) if region.type == RegionType.LightWorld) seen = set(queue) while queue: current = queue.popleft() @@ -351,7 +351,7 @@ def mark_light_world_regions(world): seen.add(exit.connected_region) queue.append(exit.connected_region) - queue = collections.deque(region for region in world.regions if region.type == RegionType.DarkWorld) + queue = collections.deque(region for region in world.get_regions(player) if region.type == RegionType.DarkWorld) seen = set(queue) while queue: current = queue.popleft() diff --git a/Rom.py b/Rom.py index 649666fd..44642afc 100644 --- a/Rom.py +++ b/Rom.py @@ -248,7 +248,7 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleene } } - if world.mode != 'inverted': + if world.mode[player] != 'inverted': options['ManualBosses']['GanonsTower1'] = world.get_dungeon('Ganons Tower', player).bosses['bottom'].enemizer_name options['ManualBosses']['GanonsTower2'] = world.get_dungeon('Ganons Tower', player).bosses['middle'].enemizer_name options['ManualBosses']['GanonsTower3'] = world.get_dungeon('Ganons Tower', player).bosses['top'].enemizer_name @@ -550,7 +550,7 @@ def patch_rom(world, player, rom, enemized): else: # patch door table rom.write_byte(0xDBB73 + exit.addresses, exit.target) - if world.mode == 'inverted': + if world.mode[player] == 'inverted': patch_shuffled_dark_sanc(world, rom, player) write_custom_shops(rom, world, player) @@ -578,11 +578,11 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x51DE, 0x00) # set open mode: - if world.mode in ['open', 'inverted']: + if world.mode[player] in ['open', 'inverted']: rom.write_byte(0x180032, 0x01) # open mode - if world.mode == 'inverted': + if world.mode[player] == 'inverted': set_inverted_mode(world, rom) - elif world.mode == 'standard': + elif world.mode[player] == 'standard': rom.write_byte(0x180032, 0x00) # standard mode uncle_location = world.get_location('Link\'s Uncle', player) @@ -600,7 +600,7 @@ def patch_rom(world, player, rom, enemized): rom.write_bytes(0x6D323, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) # set light cones - rom.write_byte(0x180038, 0x01 if world.sewer_light_cone else 0x00) + rom.write_byte(0x180038, 0x01 if world.sewer_light_cone[player] else 0x00) rom.write_byte(0x180039, 0x01 if world.light_world_light_cone else 0x00) rom.write_byte(0x18003A, 0x01 if world.dark_world_light_cone else 0x00) @@ -892,7 +892,7 @@ def patch_rom(world, player, rom, enemized): # assorted fixes rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark world dungeon before killing aga1 rom.write_byte(0x180169, 0x01 if world.lock_aga_door_in_escape else 0x00) # Lock or unlock aga tower door during escape sequence. - if world.mode == 'inverted': + if world.mode[player] == 'inverted': rom.write_byte(0x180169, 0x02) # lock aga/ganon tower door with crystals in inverted rom.write_byte(0x180171, 0x01 if world.ganon_at_pyramid[player] else 0x00) # Enable respawning on pyramid after ganon death rom.write_byte(0x180173, 0x01) # Bob is enabled @@ -930,18 +930,18 @@ def patch_rom(world, player, rom, enemized): else: raise RuntimeError("Unsupported pre-collected item: {}".format(item)) - rom.write_byte(0x18004A, 0x00 if world.mode != 'inverted' else 0x01) # Inverted mode + rom.write_byte(0x18004A, 0x00 if world.mode[player] != 'inverted' else 0x01) # Inverted mode rom.write_byte(0x18005D, 0x00) # Hammer always breaks barrier - rom.write_byte(0x2AF79, 0xD0 if world.mode != 'inverted' else 0xF0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) - rom.write_byte(0x3A943, 0xD0 if world.mode != 'inverted' else 0xF0) # Mirror: Normal (D0=Dark to Light, F0=light to dark, 42 = both) - rom.write_byte(0x3A96D, 0xF0 if world.mode != 'inverted' else 0xD0) # Residual Portal: Normal (F0= Light Side, D0=Dark Side, 42 = both (Darth Vader)) + rom.write_byte(0x2AF79, 0xD0 if world.mode[player] != 'inverted' else 0xF0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) + rom.write_byte(0x3A943, 0xD0 if world.mode[player] != 'inverted' else 0xF0) # Mirror: Normal (D0=Dark to Light, F0=light to dark, 42 = both) + rom.write_byte(0x3A96D, 0xF0 if world.mode[player] != 'inverted' else 0xD0) # Residual Portal: Normal (F0= Light Side, D0=Dark Side, 42 = both (Darth Vader)) rom.write_byte(0x3A9A7, 0xD0) # Residual Portal: Normal (D0= Light Side, F0=Dark Side, 42 = both (Darth Vader)) rom.write_bytes(0x180080, [50, 50, 70, 70]) # values to fill for Capacity Upgrades (Bomb5, Bomb10, Arrow5, Arrow10) - rom.write_byte(0x18004D, ((0x01 if 'arrows' in world.escape_assist else 0x00) | - (0x02 if 'bombs' in world.escape_assist else 0x00) | - (0x04 if 'magic' in world.escape_assist else 0x00))) # Escape assist + rom.write_byte(0x18004D, ((0x01 if 'arrows' in world.escape_assist[player] else 0x00) | + (0x02 if 'bombs' in world.escape_assist[player] else 0x00) | + (0x04 if 'magic' in world.escape_assist[player] else 0x00))) # Escape assist if world.goal in ['pedestal', 'triforcehunt']: rom.write_byte(0x18003E, 0x01) # make ganon invincible @@ -954,7 +954,7 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x18005E, world.crystals_needed_for_gt) rom.write_byte(0x18005F, world.crystals_needed_for_ganon) - rom.write_byte(0x18008A, 0x01 if world.mode == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode + rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle else 0x00) | (0x02 if world.compassshuffle else 0x00) @@ -1031,7 +1031,7 @@ def patch_rom(world, player, rom, enemized): 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) - if world.mode == 'standard': + 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 @@ -1068,7 +1068,7 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x4E3BB, 0xEB) # fix trock doors for reverse entrances - if world.fix_trock_doors: + if world.fix_trock_doors[player]: rom.write_byte(0xFED31, 0x0E) # preopen bombable exit rom.write_byte(0xFEE41, 0x0E) # preopen bombable exit # included unconditionally in base2current @@ -1375,7 +1375,7 @@ def write_strings(rom, world, player): entrances_to_hint = {} entrances_to_hint.update(InconvenientDungeonEntrances) if world.shuffle_ganon: - if world.mode == 'inverted': + if world.mode[player] == 'inverted': entrances_to_hint.update({'Inverted Ganons Tower': 'The sealed castle door'}) else: entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) @@ -1408,14 +1408,14 @@ def write_strings(rom, world, player): if world.shuffle not in ['simple', 'restricted', 'restricted_legacy']: entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(DungeonEntrances) - if world.mode == 'inverted': + if world.mode[player] == 'inverted': entrances_to_hint.update({'Inverted Agahnims Tower': 'The dark mountain tower'}) else: entrances_to_hint.update({'Agahnims Tower': 'The sealed castle door'}) elif world.shuffle == 'restricted': entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(OtherEntrances) - if world.mode == 'inverted': + if world.mode[player] == 'inverted': entrances_to_hint.update({'Inverted Dark Sanctuary': 'The dark sanctuary cave'}) entrances_to_hint.update({'Inverted Big Bomb Shop': 'The old hero\'s dark home'}) entrances_to_hint.update({'Inverted Links House': 'The old hero\'s light home'}) @@ -1425,7 +1425,7 @@ def write_strings(rom, world, player): if world.shuffle in ['insanity', 'madness_legacy', 'insanity_legacy']: entrances_to_hint.update(InsanityEntrances) if world.shuffle_ganon: - if world.mode == 'inverted': + if world.mode[player] == 'inverted': entrances_to_hint.update({'Inverted Pyramid Entrance': 'The extra castle passage'}) else: entrances_to_hint.update({'Pyramid Ledge': 'The pyramid ledge'}) @@ -1592,7 +1592,7 @@ def write_strings(rom, world, player): tt['tablet_bombos_book'] = bombos_text # inverted spawn menu changes - if world.mode == 'inverted': + if world.mode[player] == 'inverted': tt['menu_start_2'] = "{MENU}\n{SPEED0}\n≥@'s house\n Dark Chapel\n{CHOICE3}" tt['menu_start_3'] = "{MENU}\n{SPEED0}\n≥@'s house\n Dark Chapel\n Mountain Cave\n{CHOICE2}" tt['intro_main'] = CompressedTextMapper.convert( diff --git a/Rules.py b/Rules.py index 7606872b..2e42403d 100644 --- a/Rules.py +++ b/Rules.py @@ -7,7 +7,7 @@ def set_rules(world, player): if world.logic[player] == 'nologic': logging.getLogger('').info('WARNING! Seeds generated under this logic often require major glitches and may be impossible!') - if world.mode != 'inverted': + if world.mode[player] != 'inverted': world.get_region('Links House', player).can_reach_private = lambda state: True world.get_region('Sanctuary', player).can_reach_private = lambda state: True old_rule = world.get_region('Old Man House', player).can_reach @@ -22,14 +22,14 @@ def set_rules(world, player): return global_rules(world, player) - if world.mode != 'inverted': + if world.mode[player] != 'inverted': default_rules(world, player) - if world.mode == 'open': + if world.mode[player] == 'open': open_rules(world, player) - elif world.mode == 'standard': + elif world.mode[player] == 'standard': standard_rules(world, player) - elif world.mode == 'inverted': + elif world.mode[player] == 'inverted': open_rules(world, player) inverted_rules(world, player) else: @@ -49,7 +49,7 @@ def set_rules(world, player): # require aga2 to beat ganon add_rule(world.get_location('Ganon', player), lambda state: state.has('Beat Agahnim 2', player)) - if world.mode != 'inverted': + if world.mode[player] != 'inverted': set_big_bomb_rules(world, player) else: set_inverted_big_bomb_rules(world, player) @@ -58,7 +58,7 @@ def set_rules(world, player): if not world.swamp_patch_required[player]: add_rule(world.get_entrance('Swamp Palace Moat', player), lambda state: state.has_Mirror(player)) - if world.mode != 'inverted': + if world.mode[player] != 'inverted': set_bunny_rules(world, player) else: set_inverted_bunny_rules(world, player) @@ -345,7 +345,7 @@ def global_rules(world, player): def default_rules(world, player): - if world.mode == 'standard': + if world.mode[player] == 'standard': world.get_region('Hyrule Castle Secret Entrance', player).can_reach_private = lambda state: True old_rule = world.get_region('Links House', player).can_reach_private world.get_region('Links House', player).can_reach_private = lambda state: state.can_reach('Sanctuary', 'Region', player) or old_rule(state) @@ -621,7 +621,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) def no_glitches_rules(world, player): - if world.mode != 'inverted': + if world.mode[player] != 'inverted': set_rule(world.get_entrance('Zoras River', player), lambda state: state.has('Flippers', player) or state.can_lift_rocks(player)) set_rule(world.get_entrance('Lake Hylia Central Island Pier', player), lambda state: state.has('Flippers', player)) # can be fake flippered to set_rule(world.get_entrance('Hobo Bridge', player), lambda state: state.has('Flippers', player)) @@ -672,7 +672,7 @@ def no_glitches_rules(world, player): add_conditional_lamp('Palace of Darkness Maze Door', 'Palace of Darkness (Entrance)', 'Entrance') add_conditional_lamp('Palace of Darkness - Dark Basement - Left', 'Palace of Darkness (Entrance)', 'Location') add_conditional_lamp('Palace of Darkness - Dark Basement - Right', 'Palace of Darkness (Entrance)', 'Location') - if world.mode != 'inverted': + if world.mode[player] != 'inverted': add_conditional_lamp('Agahnim 1', 'Agahnims Tower', 'Entrance') add_conditional_lamp('Castle Tower - Dark Maze', 'Agahnims Tower', 'Location') else: @@ -688,7 +688,7 @@ def no_glitches_rules(world, player): add_conditional_lamp('Eastern Palace - Boss', 'Eastern Palace', 'Location') add_conditional_lamp('Eastern Palace - Prize', 'Eastern Palace', 'Location') - if not world.sewer_light_cone: + if not world.sewer_light_cone[player]: add_lamp_requirement(world.get_location('Sewers - Dark Cross', player), player) add_lamp_requirement(world.get_entrance('Sewers Back Door', player), player) add_lamp_requirement(world.get_entrance('Throne Room', player), player) @@ -709,7 +709,7 @@ def swordless_rules(world, player): set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has_crystals(world.crystals_needed_for_ganon, player)) set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has('Hammer', player)) # need to damage ganon to get tiles to drop - if world.mode != 'inverted': + if world.mode[player] != 'inverted': 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 (!) From 9ca755d5b2f5c614c37927bb3c7deeabd4027246 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 14:31:47 +0100 Subject: [PATCH 097/185] Individual settings: swords --- BaseClasses.py | 3 ++- Bosses.py | 14 +++++++------- EntranceRandomizer.py | 5 +---- ItemList.py | 6 +++--- Rom.py | 12 ++++++------ Rules.py | 4 ++-- 6 files changed, 21 insertions(+), 23 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 11a94f2b..9b153e8d 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -13,7 +13,7 @@ class World(object): self.shuffle = shuffle self.logic = logic.copy() self.mode = mode.copy() - self.swords = swords + self.swords = swords.copy() self.difficulty = difficulty self.difficulty_adjustments = difficulty_adjustments self.timer = timer @@ -1080,6 +1080,7 @@ class Spoiler(object): outfile.write('ALttP Entrance Randomizer Version %s - Seed: %s\n\n' % (self.metadata['version'], self.world.seed)) outfile.write('Logic: %s\n' % self.metadata['logic']) outfile.write('Mode: %s\n' % self.metadata['mode']) + outfile.write('Swords: %s\n' % self.metadata['weapons']) outfile.write('Goal: %s\n' % self.metadata['goal']) outfile.write('Difficulty: %s\n' % self.metadata['item_pool']) outfile.write('Item Functionality: %s\n' % self.metadata['item_functionality']) diff --git a/Bosses.py b/Bosses.py index a4b9b313..ff9d0be4 100644 --- a/Bosses.py +++ b/Bosses.py @@ -73,7 +73,7 @@ def KholdstareDefeatRule(state, player): ( state.has('Bombos', player) and # FIXME: the following only actually works for the vanilla location for swordless - (state.has_sword(player) or state.world.swords == 'swordless') + (state.has_sword(player) or state.world.swords[player] == 'swordless') ) ) and ( @@ -83,7 +83,7 @@ def KholdstareDefeatRule(state, player): ( state.has('Fire Rod', player) and state.has('Bombos', player) and - state.world.swords == 'swordless' and + state.world.swords[player] == 'swordless' and state.can_extend_magic(player, 16) ) ) @@ -115,8 +115,8 @@ boss_table = { 'Agahnim2': ('Agahnim2', AgahnimDefeatRule) } -def can_place_boss(world, boss, dungeon_name, level=None): - if world.swords in ['swordless'] and boss == 'Kholdstare' and dungeon_name != 'Ice Palace': +def can_place_boss(world, player, boss, dungeon_name, level=None): + if world.swords[player] in ['swordless'] and boss == 'Kholdstare' and dungeon_name != 'Ice Palace': return False if dungeon_name in ['Ganons Tower', 'Inverted Ganons Tower'] and level == 'top': @@ -179,7 +179,7 @@ def place_bosses(world, player): if world.boss_shuffle in ["basic", "normal"]: # temporary hack for swordless kholdstare: - if world.swords == 'swordless': + if world.swords[player] == 'swordless': world.get_dungeon('Ice Palace', player).boss = BossFactory('Kholdstare', player) logging.getLogger('').debug('Placing boss Kholdstare at Ice Palace') boss_locations.remove(['Ice Palace', None]) @@ -195,7 +195,7 @@ def place_bosses(world, player): random.shuffle(bosses) for [loc, level] in boss_locations: loc_text = loc + (' ('+level+')' if level else '') - boss = next((b for b in bosses if can_place_boss(world, b, loc, level)), None) + boss = next((b for b in bosses if can_place_boss(world, player, b, loc, level)), None) if not boss: raise FillError('Could not place boss for location %s' % loc_text) bosses.remove(boss) @@ -206,7 +206,7 @@ def place_bosses(world, player): for [loc, level] in boss_locations: loc_text = loc + (' ('+level+')' if level else '') try: - boss = random.choice([b for b in placeable_bosses if can_place_boss(world, b, loc, level)]) + boss = random.choice([b for b in placeable_bosses if can_place_boss(world, player, b, loc, level)]) except IndexError: raise FillError('Could not place boss for location %s' % loc_text) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index bba20536..b0134025 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -278,16 +278,13 @@ def parse_arguments(argv, no_defaults=False): for player in range(1, multiargs.multi + 1): playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) - def set_player_arg(name): + for name in ['logic', 'mode', 'swords']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) else: getattr(ret, name)[player] = value - set_player_arg("logic") - set_player_arg("mode") - return ret def start(): diff --git a/ItemList.py b/ItemList.py index 706a7c4a..a9e89d59 100644 --- a/ItemList.py +++ b/ItemList.py @@ -177,10 +177,10 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords, world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords[player], world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[69], 9999) else: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords, world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords[player], world.retro) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) @@ -191,7 +191,7 @@ def generate_itempool(world, player): possible_weapons = [] for item in pool: if item in ['Progressive Sword', 'Fighter Sword', 'Master Sword', 'Tempered Sword', 'Golden Sword']: - if not found_sword and world.swords != 'swordless': + if not found_sword and world.swords[player] != 'swordless': found_sword = True possible_weapons.append(item) if item in ['Progressive Bow', 'Bow'] and not found_bow: diff --git a/Rom.py b/Rom.py index 44642afc..ff77fd5a 100644 --- a/Rom.py +++ b/Rom.py @@ -706,7 +706,7 @@ def patch_rom(world, player, rom, enemized): difficulty.progressive_bottle_limit, mw_bottle_replacements[difficulty.progressive_bottle_limit] if world.players > 1 else overflow_replacement, difficulty.progressive_bow_limit, mw_bow_replacements[difficulty.progressive_bow_limit] if world.players > 1 else overflow_replacement]) - if difficulty.progressive_bow_limit < 2 and world.swords == 'swordless': + if difficulty.progressive_bow_limit < 2 and world.swords[player] == 'swordless': rom.write_bytes(0x180098, [2, mw_bow_replacements[difficulty.progressive_bow_limit] if world.players > 1 else overflow_replacement]) rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon @@ -826,11 +826,11 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x180029, 0x01) # Smithy quick item give # set swordless mode settings - rom.write_byte(0x18003F, 0x01 if world.swords == 'swordless' else 0x00) # hammer can harm ganon - rom.write_byte(0x180040, 0x01 if world.swords == 'swordless' else 0x00) # open curtains - rom.write_byte(0x180041, 0x01 if world.swords == 'swordless' else 0x00) # swordless medallions - rom.write_byte(0x180043, 0xFF if world.swords == 'swordless' else 0x00) # starting sword for link - rom.write_byte(0x180044, 0x01 if world.swords == 'swordless' else 0x00) # hammer activates tablets + rom.write_byte(0x18003F, 0x01 if world.swords[player] == 'swordless' else 0x00) # hammer can harm ganon + rom.write_byte(0x180040, 0x01 if world.swords[player] == 'swordless' else 0x00) # open curtains + rom.write_byte(0x180041, 0x01 if world.swords[player] == 'swordless' else 0x00) # swordless medallions + rom.write_byte(0x180043, 0xFF if world.swords[player] == 'swordless' else 0x00) # starting sword for link + rom.write_byte(0x180044, 0x01 if world.swords[player] == 'swordless' else 0x00) # hammer activates tablets # set up clocks for timed modes if world.shuffle == 'vanilla': diff --git a/Rules.py b/Rules.py index 2e42403d..7027c96c 100644 --- a/Rules.py +++ b/Rules.py @@ -458,7 +458,7 @@ def default_rules(world, player): set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid) set_rule(world.get_entrance('Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. - if world.swords == 'swordless': + if world.swords[player] == 'swordless': swordless_rules(world, player) set_trock_key_rules(world, player) @@ -613,7 +613,7 @@ def inverted_rules(world, player): set_rule(world.get_entrance('Inverted Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid) 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. - if world.swords == 'swordless': + if world.swords[player] == 'swordless': swordless_rules(world, player) set_trock_key_rules(world, player) From c1788c070db32002b18ce39db663d56e1a1a07af Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 15:27:20 +0100 Subject: [PATCH 098/185] Individual settings: goal --- BaseClasses.py | 2 +- EntranceRandomizer.py | 2 +- Fill.py | 26 +++++++++++++++----------- ItemList.py | 10 +++++----- Main.py | 13 ++++--------- Plando.py | 2 +- Rom.py | 12 ++++++------ Rules.py | 6 +++--- 8 files changed, 36 insertions(+), 37 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 9b153e8d..40342687 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -18,7 +18,7 @@ class World(object): self.difficulty_adjustments = difficulty_adjustments self.timer = timer self.progressive = progressive - self.goal = goal + self.goal = goal.copy() self.algorithm = algorithm self.dungeons = [] self.regions = [] diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index b0134025..6e3871cd 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -278,7 +278,7 @@ def parse_arguments(argv, no_defaults=False): for player in range(1, multiargs.multi + 1): playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) - for name in ['logic', 'mode', 'swords']: + for name in ['logic', 'mode', 'swords', 'goal']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Fill.py b/Fill.py index 4594ba65..dbb5fd78 100644 --- a/Fill.py +++ b/Fill.py @@ -210,7 +210,7 @@ def fill_restrictive(world, base_state, locations, itempool, single_player_place itempool.extend(unplaced_items) -def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=None): +def distribute_items_restrictive(world, gftower_trash=False, fill_locations=None): # If not passed in, then get a shuffled list of locations to fill in if not fill_locations: fill_locations = world.get_unfilled_locations() @@ -224,16 +224,20 @@ def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=No # fill in gtower locations with trash first for player in range(1, world.players + 1): - if world.ganonstower_vanilla[player]: - gtower_locations = [location for location in fill_locations if 'Ganons Tower' in location.name and location.player == player] - random.shuffle(gtower_locations) - trashcnt = 0 - while gtower_locations and restitempool and trashcnt < gftower_trash_count: - spot_to_fill = gtower_locations.pop() - item_to_place = restitempool.pop() - world.push_item(spot_to_fill, item_to_place, False) - fill_locations.remove(spot_to_fill) - trashcnt += 1 + if not gftower_trash or not world.ganonstower_vanilla[player]: + continue + + gftower_trash_count = (random.randint(15, 50) if world.goal[player] == 'triforcehunt' else random.randint(0, 15)) + + gtower_locations = [location for location in fill_locations if 'Ganons Tower' in location.name and location.player == player] + random.shuffle(gtower_locations) + trashcnt = 0 + while gtower_locations and restitempool and trashcnt < gftower_trash_count: + spot_to_fill = gtower_locations.pop() + item_to_place = restitempool.pop() + world.push_item(spot_to_fill, item_to_place, False) + fill_locations.remove(spot_to_fill) + trashcnt += 1 random.shuffle(fill_locations) fill_locations.reverse() diff --git a/ItemList.py b/ItemList.py index a9e89d59..e4f9a004 100644 --- a/ItemList.py +++ b/ItemList.py @@ -125,19 +125,19 @@ difficulties = { } def generate_itempool(world, player): - if (world.difficulty not in ['normal', 'hard', 'expert'] or world.goal not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] + if (world.difficulty not in ['normal', 'hard', 'expert'] or world.goal[player] not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] or world.mode[player] not in ['open', 'standard', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') if world.timer in ['ohko', 'timed-ohko']: world.can_take_damage = False - if world.goal in ['pedestal', 'triforcehunt']: + if world.goal[player] in ['pedestal', 'triforcehunt']: world.push_item(world.get_location('Ganon', player), ItemFactory('Nothing', player), False) else: world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) - if world.goal in ['triforcehunt']: + if world.goal[player] in ['triforcehunt']: if world.mode[player] == 'inverted': region = world.get_region('Light World',player) else: @@ -177,10 +177,10 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords[player], world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[69], 9999) else: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode[player], world.swords[player], world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) diff --git a/Main.py b/Main.py index 307ed889..07c37b26 100644 --- a/Main.py +++ b/Main.py @@ -112,12 +112,12 @@ def main(args, seed=None): elif args.algorithm == 'freshness': distribute_items_staleness(world) elif args.algorithm == 'vt25': - distribute_items_restrictive(world, 0) + distribute_items_restrictive(world, False) elif args.algorithm == 'vt26': - distribute_items_restrictive(world, gt_filler(world), shuffled_locations) + distribute_items_restrictive(world, True, shuffled_locations) elif args.algorithm == 'balanced': - distribute_items_restrictive(world, gt_filler(world)) + distribute_items_restrictive(world, True) if world.players > 1: logger.info('Balancing multiworld progression.') @@ -185,7 +185,7 @@ def main(args, seed=None): outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', f'_{player_names[player]}' if player in player_names else '', world.logic[player], world.difficulty, world.difficulty_adjustments, - world.mode[player], world.goal, + world.mode[player], world.goal[player], "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, mcsb_name, "-retro" if world.retro else "", @@ -213,11 +213,6 @@ def main(args, seed=None): return world -def gt_filler(world): - if world.goal == 'triforcehunt': - return random.randint(15, 50) - return random.randint(0, 15) - def copy_world(world): # ToDo: Not good yet ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) diff --git a/Plando.py b/Plando.py index 490da77d..c559c0d9 100755 --- a/Plando.py +++ b/Plando.py @@ -122,7 +122,7 @@ def fill_world(world, plando, text_patches): world.logic = {1: logicstr.strip()} elif line.startswith('!goal'): _, goalstr = line.split(':', 1) - world.goal = goalstr.strip() + world.goal = {1: goalstr.strip()} elif line.startswith('!light_cone_sewers'): _, sewerstr = line.split(':', 1) world.sewer_light_cone = {1: sewerstr.strip().lower() == 'true'} diff --git a/Rom.py b/Rom.py index ff77fd5a..a8a3db22 100644 --- a/Rom.py +++ b/Rom.py @@ -943,11 +943,11 @@ def patch_rom(world, player, rom, enemized): (0x02 if 'bombs' in world.escape_assist[player] else 0x00) | (0x04 if 'magic' in world.escape_assist[player] else 0x00))) # Escape assist - if world.goal in ['pedestal', 'triforcehunt']: + if world.goal[player] in ['pedestal', 'triforcehunt']: rom.write_byte(0x18003E, 0x01) # make ganon invincible - elif world.goal in ['dungeons']: + elif world.goal[player] in ['dungeons']: rom.write_byte(0x18003E, 0x02) # make ganon invincible until all dungeons are beat - elif world.goal in ['crystals']: + elif world.goal[player] in ['crystals']: rom.write_byte(0x18003E, 0x04) # make ganon invincible until all crystals else: rom.write_byte(0x18003E, 0x03) # make ganon invincible until all crystals and aga 2 are collected @@ -1552,7 +1552,7 @@ def write_strings(rom, world, player): tt['sign_ganons_tower'] = ('You need %d crystal to enter.' if world.crystals_needed_for_gt == 1 else 'You need %d crystals to enter.') % world.crystals_needed_for_gt tt['sign_ganon'] = ('You need %d crystal to beat Ganon.' if world.crystals_needed_for_ganon == 1 else 'You need %d crystals to beat Ganon.') % world.crystals_needed_for_ganon - if world.goal in ['dungeons']: + if world.goal[player] in ['dungeons']: tt['sign_ganon'] = 'You need to complete all the dungeons.' tt['uncle_leaving_text'] = Uncle_texts[random.randint(0, len(Uncle_texts) - 1)] @@ -1563,12 +1563,12 @@ def write_strings(rom, world, player): tt['sahasrahla_quest_have_master_sword'] = Sahasrahla2_texts[random.randint(0, len(Sahasrahla2_texts) - 1)] tt['blind_by_the_light'] = Blind_texts[random.randint(0, len(Blind_texts) - 1)] - if world.goal in ['triforcehunt']: + if world.goal[player] in ['triforcehunt']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Get the Triforce Pieces.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invincible!' tt['murahdahla'] = "Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n\n\n\n… … …\n\nWait! you can see me? I knew I should have\nhidden in a hollow tree. If you bring\n%d triforce pieces, I can reassemble it." % world.treasure_hunt_count - elif world.goal in ['pedestal']: + elif world.goal[player] in ['pedestal']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Your goal is at the pedestal.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' tt['sign_ganon'] = 'You need to get to the pedestal... Ganon is invincible!' diff --git a/Rules.py b/Rules.py index 7027c96c..a7bd03f4 100644 --- a/Rules.py +++ b/Rules.py @@ -42,10 +42,10 @@ def set_rules(world, player): else: raise NotImplementedError('Not implemented yet') - if world.goal == 'dungeons': + if world.goal[player] == 'dungeons': # require all dungeons to beat ganon add_rule(world.get_location('Ganon', player), lambda state: state.can_reach('Master Sword Pedestal', 'Location', player) and state.has('Beat Agahnim 1', player) and state.has('Beat Agahnim 2', player) and state.has_crystals(7, player)) - elif world.goal == 'ganon': + 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)) @@ -106,7 +106,7 @@ def item_name(state, location, player): return (location.item.name, location.item.player) def global_rules(world, player): - if world.goal == 'triforcehunt': + if world.goal[player] == 'triforcehunt': for location in world.get_locations(): if location.player != player: forbid_item(location, 'Triforce Piece', player) From 0b999abb8a3267d6b65085b68b8a90493e20c922 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 16:44:48 +0100 Subject: [PATCH 099/185] Murahdahla doesn't spawn in rain state so dont put him in logic --- ItemList.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ItemList.py b/ItemList.py index e4f9a004..85f549a7 100644 --- a/ItemList.py +++ b/ItemList.py @@ -138,10 +138,7 @@ def generate_itempool(world, player): world.push_item(world.get_location('Ganon', player), ItemFactory('Triforce', player), False) if world.goal[player] in ['triforcehunt']: - if world.mode[player] == 'inverted': - region = world.get_region('Light World',player) - else: - region = world.get_region('Hyrule Castle Courtyard', player) + region = world.get_region('Light World',player) loc = Location(player, "Murahdahla", parent=region) loc.access_rule = lambda state: state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > state.world.treasure_hunt_count From 203147dda12c3af1db02707f6fa25b5df11dfb57 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 17:46:21 +0100 Subject: [PATCH 100/185] Individual settings: difficulty and item_functionality --- BaseClasses.py | 48 +++++++++++++++++++++---------------------- EntranceRandomizer.py | 2 +- ItemList.py | 10 ++++----- Main.py | 8 ++++---- Plando.py | 2 +- Rom.py | 12 +++++------ 6 files changed, 41 insertions(+), 41 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 40342687..fb692305 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -14,8 +14,8 @@ class World(object): self.logic = logic.copy() self.mode = mode.copy() self.swords = swords.copy() - self.difficulty = difficulty - self.difficulty_adjustments = difficulty_adjustments + self.difficulty = difficulty.copy() + self.difficulty_adjustments = difficulty_adjustments.copy() self.timer = timer self.progressive = progressive self.goal = goal.copy() @@ -71,7 +71,7 @@ class World(object): self.custom = custom self.customitemarray = customitemarray self.can_take_damage = True - self.difficulty_requirements = None + self.difficulty_requirements = {player: None for player in range(1, players + 1)} self.fix_fake_world = True self.boss_shuffle = boss_shuffle self.escape_assist = {player: [] for player in range(1, players + 1)} @@ -147,13 +147,13 @@ class World(object): if 'Sword' in item.name: if ret.has('Golden Sword', item.player): pass - elif ret.has('Tempered Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 4: + elif ret.has('Tempered Sword', item.player) and self.difficulty_requirements[item.player].progressive_sword_limit >= 4: ret.prog_items.add(('Golden Sword', item.player)) - elif ret.has('Master Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 3: + elif ret.has('Master Sword', item.player) and self.difficulty_requirements[item.player].progressive_sword_limit >= 3: ret.prog_items.add(('Tempered Sword', item.player)) - elif ret.has('Fighter Sword', item.player) and self.difficulty_requirements.progressive_sword_limit >= 2: + elif ret.has('Fighter Sword', item.player) and self.difficulty_requirements[item.player].progressive_sword_limit >= 2: ret.prog_items.add(('Master Sword', item.player)) - elif self.difficulty_requirements.progressive_sword_limit >= 1: + elif self.difficulty_requirements[item.player].progressive_sword_limit >= 1: ret.prog_items.add(('Fighter Sword', item.player)) elif 'Glove' in item.name: if ret.has('Titans Mitts', item.player): @@ -165,21 +165,21 @@ class World(object): elif 'Shield' in item.name: if ret.has('Mirror Shield', item.player): pass - elif ret.has('Red Shield', item.player) and self.difficulty_requirements.progressive_shield_limit >= 3: + elif ret.has('Red Shield', item.player) and self.difficulty_requirements[item.player].progressive_shield_limit >= 3: ret.prog_items.add(('Mirror Shield', item.player)) - elif ret.has('Blue Shield', item.player) and self.difficulty_requirements.progressive_shield_limit >= 2: + elif ret.has('Blue Shield', item.player) and self.difficulty_requirements[item.player].progressive_shield_limit >= 2: ret.prog_items.add(('Red Shield', item.player)) - elif self.difficulty_requirements.progressive_shield_limit >= 1: + elif self.difficulty_requirements[item.player].progressive_shield_limit >= 1: ret.prog_items.add(('Blue Shield', item.player)) elif 'Bow' in item.name: if ret.has('Silver Arrows', item.player): pass - elif ret.has('Bow', item.player) and self.difficulty_requirements.progressive_bow_limit >= 2: + elif ret.has('Bow', item.player) and self.difficulty_requirements[item.player].progressive_bow_limit >= 2: ret.prog_items.add(('Silver Arrows', item.player)) - elif self.difficulty_requirements.progressive_bow_limit >= 1: + elif self.difficulty_requirements[item.player].progressive_bow_limit >= 1: ret.prog_items.add(('Bow', item.player)) elif item.name.startswith('Bottle'): - if ret.bottle_count(item.player) < self.difficulty_requirements.progressive_bottle_limit: + if ret.bottle_count(item.player) < self.difficulty_requirements[item.player].progressive_bottle_limit: ret.prog_items.add((item.name, item.player)) elif item.advancement or item.smallkey or item.bigkey: ret.prog_items.add((item.name, item.player)) @@ -413,7 +413,7 @@ class CollectionState(object): def heart_count(self, player): # Warning: This only considers items that are marked as advancement items - diff = self.world.difficulty_requirements + diff = self.world.difficulty_requirements[player] return ( min(self.item_count('Boss Heart Container', player), diff.boss_heart_container_limit) + self.item_count('Sanctuary Heart Container', player) @@ -431,9 +431,9 @@ class CollectionState(object): elif self.has('Half Magic', player): basemagic = 16 if self.can_buy_unlimited('Green Potion', player) or self.can_buy_unlimited('Blue Potion', player): - if self.world.difficulty_adjustments == 'hard' and not fullrefill: + if self.world.difficulty_adjustments[player] == 'hard' and not fullrefill: basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count(player)) - elif self.world.difficulty_adjustments == 'expert' and not fullrefill: + elif self.world.difficulty_adjustments[player] == 'expert' and not fullrefill: basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count(player)) else: basemagic = basemagic + basemagic * self.bottle_count(player) @@ -525,16 +525,16 @@ class CollectionState(object): if 'Sword' in item.name: if self.has('Golden Sword', item.player): pass - elif self.has('Tempered Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 4: + elif self.has('Tempered Sword', item.player) and self.world.difficulty_requirements[item.player].progressive_sword_limit >= 4: self.prog_items.add(('Golden Sword', item.player)) changed = True - elif self.has('Master Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 3: + elif self.has('Master Sword', item.player) and self.world.difficulty_requirements[item.player].progressive_sword_limit >= 3: self.prog_items.add(('Tempered Sword', item.player)) changed = True - elif self.has('Fighter Sword', item.player) and self.world.difficulty_requirements.progressive_sword_limit >= 2: + elif self.has('Fighter Sword', item.player) and self.world.difficulty_requirements[item.player].progressive_sword_limit >= 2: self.prog_items.add(('Master Sword', item.player)) changed = True - elif self.world.difficulty_requirements.progressive_sword_limit >= 1: + elif self.world.difficulty_requirements[item.player].progressive_sword_limit >= 1: self.prog_items.add(('Fighter Sword', item.player)) changed = True elif 'Glove' in item.name: @@ -549,13 +549,13 @@ class CollectionState(object): elif 'Shield' in item.name: if self.has('Mirror Shield', item.player): pass - elif self.has('Red Shield', item.player) and self.world.difficulty_requirements.progressive_shield_limit >= 3: + elif self.has('Red Shield', item.player) and self.world.difficulty_requirements[item.player].progressive_shield_limit >= 3: self.prog_items.add(('Mirror Shield', item.player)) changed = True - elif self.has('Blue Shield', item.player) and self.world.difficulty_requirements.progressive_shield_limit >= 2: + elif self.has('Blue Shield', item.player) and self.world.difficulty_requirements[item.player].progressive_shield_limit >= 2: self.prog_items.add(('Red Shield', item.player)) changed = True - elif self.world.difficulty_requirements.progressive_shield_limit >= 1: + elif self.world.difficulty_requirements[item.player].progressive_shield_limit >= 1: self.prog_items.add(('Blue Shield', item.player)) changed = True elif 'Bow' in item.name: @@ -568,7 +568,7 @@ class CollectionState(object): self.prog_items.add(('Bow', item.player)) changed = True elif item.name.startswith('Bottle'): - if self.bottle_count(item.player) < self.world.difficulty_requirements.progressive_bottle_limit: + if self.bottle_count(item.player) < self.world.difficulty_requirements[item.player].progressive_bottle_limit: self.prog_items.add((item.name, item.player)) changed = True elif event or item.advancement: diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 6e3871cd..a16f25b5 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -278,7 +278,7 @@ def parse_arguments(argv, no_defaults=False): for player in range(1, multiargs.multi + 1): playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) - for name in ['logic', 'mode', 'swords', 'goal']: + for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/ItemList.py b/ItemList.py index 85f549a7..f947a450 100644 --- a/ItemList.py +++ b/ItemList.py @@ -125,7 +125,7 @@ difficulties = { } def generate_itempool(world, player): - if (world.difficulty not in ['normal', 'hard', 'expert'] or world.goal[player] not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] + if (world.difficulty[player] not in ['normal', 'hard', 'expert'] or world.goal[player] not in ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'] or world.mode[player] not in ['open', 'standard', 'inverted'] or world.timer not in ['none', 'display', 'timed', 'timed-ohko', 'ohko', 'timed-countdown'] or world.progressive not in ['on', 'off', 'random']): raise NotImplementedError('Not supported yet') @@ -174,10 +174,10 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[69], 9999) else: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) @@ -227,9 +227,9 @@ def generate_itempool(world, player): # logic has some branches where having 4 hearts is one possible requirement (of several alternatives) # rather than making all hearts/heart pieces progression items (which slows down generation considerably) # We mark one random heart container as an advancement item (or 4 heart pieces in expert mode) - if world.difficulty in ['normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): + if world.difficulty[player] in ['normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): [item for item in world.itempool if item.name == 'Boss Heart Container' and item.player == player][0].advancement = True - elif world.difficulty in ['expert'] and not (world.custom and world.customitemarray[29] < 4): + elif world.difficulty[player] in ['expert'] and not (world.custom and world.customitemarray[29] < 4): adv_heart_pieces = [item for item in world.itempool if item.name == 'Piece of Heart' and item.player == player][0:4] for hp in adv_heart_pieces: hp.advancement = True diff --git a/Main.py b/Main.py index 07c37b26..86ac1a4c 100644 --- a/Main.py +++ b/Main.py @@ -55,9 +55,9 @@ def main(args, seed=None): logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed) - world.difficulty_requirements = difficulties[world.difficulty] - for player in range(1, world.players + 1): + world.difficulty_requirements[player] = difficulties[world.difficulty[player]] + if world.mode[player] == 'standard' and (args.shuffleenemies != 'none' or args.enemy_health not in ['default', 'easy']): world.escape_assist[player].append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it @@ -184,7 +184,7 @@ def main(args, seed=None): apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', f'_{player_names[player]}' if player in player_names else '', - world.logic[player], world.difficulty, world.difficulty_adjustments, + world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], world.mode[player], world.goal[player], "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle, world.algorithm, mcsb_name, @@ -232,7 +232,7 @@ def copy_world(world): ret.can_access_trock_big_chest = world.can_access_trock_big_chest ret.can_access_trock_middle = world.can_access_trock_middle ret.can_take_damage = world.can_take_damage - ret.difficulty_requirements = world.difficulty_requirements + ret.difficulty_requirements = world.difficulty_requirements.copy() ret.fix_fake_world = world.fix_fake_world ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms ret.mapshuffle = world.mapshuffle diff --git a/Plando.py b/Plando.py index c559c0d9..90b2b891 100755 --- a/Plando.py +++ b/Plando.py @@ -36,7 +36,7 @@ def main(args): logger.info('ALttP Plandomizer Version %s - Seed: %s\n\n', __version__, args.plando) - world.difficulty_requirements = difficulties[world.difficulty] + world.difficulty_requirements[1] = difficulties[world.difficulty[1]] create_regions(world, 1) create_dungeons(world, 1) diff --git a/Rom.py b/Rom.py index a8a3db22..a732b6d7 100644 --- a/Rom.py +++ b/Rom.py @@ -611,7 +611,7 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x18004F, 0x01) # Byrna Invulnerability: on # handle difficulty_adjustments - if world.difficulty_adjustments == 'hard': + if world.difficulty_adjustments[player] == 'hard': # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount @@ -629,7 +629,7 @@ def patch_rom(world, player, rom, enemized): write_int16(rom, 0x180036, world.rupoor_cost) # Set stun items rom.write_byte(0x180180, 0x02) # Hookshot only - elif world.difficulty_adjustments == 'expert': + elif world.difficulty_adjustments[player] == 'expert': # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount @@ -676,7 +676,7 @@ def patch_rom(world, player, rom, enemized): #Byrna residual magic cost rom.write_bytes(0x45C42, [0x04, 0x02, 0x01]) - difficulty = world.difficulty_requirements + difficulty = world.difficulty_requirements[player] #Set overflow items for progressive equipment mw_sword_replacements = {0: overflow_replacement, @@ -737,7 +737,7 @@ def patch_rom(world, player, rom, enemized): random.shuffle(packs) prizes[:56] = [drop for pack in packs for drop in pack] - if world.difficulty_adjustments in ['hard', 'expert']: + if world.difficulty_adjustments[player] in ['hard', 'expert']: prize_replacements = {0xE0: 0xDF, # Fairy -> heart 0xE3: 0xD8} # Big magic -> small magic prizes = [prize_replacements.get(prize, prize) for prize in prizes] @@ -793,7 +793,7 @@ def patch_rom(world, player, rom, enemized): ]) # set Fountain bottle exchange items - if world.difficulty in ['hard', 'expert']: + if world.difficulty[player] in ['hard', 'expert']: rom.write_byte(0x348FF, [0x16, 0x2B, 0x2C, 0x2D, 0x3C, 0x48][random.randint(0, 5)]) rom.write_byte(0x3493B, [0x16, 0x2B, 0x2C, 0x2D, 0x3C, 0x48][random.randint(0, 5)]) else: @@ -858,7 +858,7 @@ def patch_rom(world, player, rom, enemized): write_int32(rom, 0x180200, -100 * 60 * 60 * 60) # red clock adjustment time (in frames, sint32) write_int32(rom, 0x180204, 2 * 60 * 60) # blue clock adjustment time (in frames, sint32) write_int32(rom, 0x180208, 4 * 60 * 60) # green clock adjustment time (in frames, sint32) - if world.difficulty_adjustments == 'normal': + if world.difficulty_adjustments[player] == 'normal': write_int32(rom, 0x18020C, (10 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) else: write_int32(rom, 0x18020C, int((5 + ERtimeincrease / 2) * 60 * 60)) # starting time (in frames, sint32) From ec1b9eca43299939473f60198aeb5174735e046d Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 18:24:34 +0100 Subject: [PATCH 101/185] Individual settings: shuffle --- BaseClasses.py | 10 ++++---- EntranceRandomizer.py | 2 +- EntranceShuffle.py | 48 +++++++++++++++++----------------- ItemList.py | 4 +-- Main.py | 2 +- Plando.py | 6 ++--- Rom.py | 60 +++++++++++++++++++++---------------------- Rules.py | 2 +- 8 files changed, 67 insertions(+), 67 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index fb692305..0490eab8 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -10,7 +10,7 @@ class World(object): def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, retro, custom, customitemarray, boss_shuffle, hints): self.players = players - self.shuffle = shuffle + self.shuffle = shuffle.copy() self.logic = logic.copy() self.mode = mode.copy() self.swords = swords.copy() @@ -48,12 +48,12 @@ class World(object): self.rupoor_cost = 10 self.aga_randomness = True self.lock_aga_door_in_escape = False - self.fix_trock_doors = {player: self.shuffle != 'vanilla' or self.mode[player] == 'inverted' for player in range(1, players + 1)} + self.fix_trock_doors = {player: self.shuffle[player] != 'vanilla' or self.mode[player] == 'inverted' for player in range(1, players + 1)} self.save_and_quit_from_boss = True self.accessibility = accessibility - self.fix_skullwoods_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] - self.fix_palaceofdarkness_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] - self.fix_trock_exit = self.shuffle not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] + self.fix_skullwoods_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} + self.fix_palaceofdarkness_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} + self.fix_trock_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} self.shuffle_ganon = shuffle_ganon self.fix_gtower_exit = self.shuffle_ganon self.can_access_trock_eyebridge = None diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index a16f25b5..c586c4d9 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -278,7 +278,7 @@ def parse_arguments(argv, no_defaults=False): for player in range(1, multiargs.multi + 1): playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) - for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality']: + for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index f20765a0..dc315b8b 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -19,17 +19,17 @@ def link_entrances(world, player): connect_simple(world, exitname, regionname, player) # if we do not shuffle, set default connections - if world.shuffle == 'vanilla': + if world.shuffle[player] == 'vanilla': for exitname, regionname in default_connections: connect_simple(world, exitname, regionname, player) for exitname, regionname in default_dungeon_connections: connect_simple(world, exitname, regionname, player) - elif world.shuffle == 'dungeonssimple': + elif world.shuffle[player] == 'dungeonssimple': for exitname, regionname in default_connections: connect_simple(world, exitname, regionname, player) simple_shuffle_dungeons(world, player) - elif world.shuffle == 'dungeonsfull': + elif world.shuffle[player] == 'dungeonsfull': for exitname, regionname in default_connections: connect_simple(world, exitname, regionname, player) @@ -59,7 +59,7 @@ def link_entrances(world, player): connect_mandatory_exits(world, lw_entrances, dungeon_exits, list(LW_Dungeon_Entrances_Must_Exit), player) connect_mandatory_exits(world, dw_entrances, dungeon_exits, list(DW_Dungeon_Entrances_Must_Exit), player) connect_caves(world, lw_entrances, dw_entrances, dungeon_exits, player) - elif world.shuffle == 'simple': + elif world.shuffle[player] == 'simple': simple_shuffle_dungeons(world, player) old_man_entrances = list(Old_Man_Entrances) @@ -130,7 +130,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, single_doors, door_targets, player) - elif world.shuffle == 'restricted': + elif world.shuffle[player] == 'restricted': simple_shuffle_dungeons(world, player) lw_entrances = list(LW_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances) @@ -201,7 +201,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, doors, door_targets, player) - elif world.shuffle == 'restricted_legacy': + elif world.shuffle[player] == 'restricted_legacy': simple_shuffle_dungeons(world, player) lw_entrances = list(LW_Entrances) @@ -256,7 +256,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, single_doors, door_targets, player) - elif world.shuffle == 'full': + elif world.shuffle[player] == 'full': skull_woods_shuffle(world, player) lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances) @@ -361,7 +361,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, doors, door_targets, player) - elif world.shuffle == 'crossed': + elif world.shuffle[player] == 'crossed': skull_woods_shuffle(world, player) entrances = list(LW_Entrances + LW_Dungeon_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances + DW_Entrances + DW_Dungeon_Entrances + DW_Single_Cave_Doors) @@ -437,7 +437,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, entrances, door_targets, player) - elif world.shuffle == 'full_legacy': + elif world.shuffle[player] == 'full_legacy': skull_woods_shuffle(world, player) lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + Old_Man_Entrances) @@ -513,7 +513,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, single_doors, door_targets, player) - elif world.shuffle == 'madness_legacy': + elif world.shuffle[player] == 'madness_legacy': # here lie dragons, connections are no longer two way lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + Old_Man_Entrances) dw_entrances = list(DW_Entrances + DW_Dungeon_Entrances) @@ -755,7 +755,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, single_doors, door_targets, player) - elif world.shuffle == 'insanity': + elif world.shuffle[player] == 'insanity': # beware ye who enter here entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave'] @@ -902,7 +902,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, doors, door_targets, player) - elif world.shuffle == 'insanity_legacy': + elif world.shuffle[player] == 'insanity_legacy': world.fix_fake_world = False # beware ye who enter here @@ -1079,17 +1079,17 @@ def link_inverted_entrances(world, player): connect_simple(world, exitname, regionname, player) # if we do not shuffle, set default connections - if world.shuffle == 'vanilla': + if world.shuffle[player] == 'vanilla': for exitname, regionname in inverted_default_connections: connect_simple(world, exitname, regionname, player) for exitname, regionname in inverted_default_dungeon_connections: connect_simple(world, exitname, regionname, player) - elif world.shuffle == 'dungeonssimple': + elif world.shuffle[player] == 'dungeonssimple': for exitname, regionname in inverted_default_connections: connect_simple(world, exitname, regionname, player) simple_shuffle_dungeons(world, player) - elif world.shuffle == 'dungeonsfull': + elif world.shuffle[player] == 'dungeonsfull': for exitname, regionname in inverted_default_connections: connect_simple(world, exitname, regionname, player) @@ -1151,7 +1151,7 @@ def link_inverted_entrances(world, player): remaining_lw_entrances = [i for i in all_dungeon_entrances if i in lw_entrances] connect_caves(world, remaining_lw_entrances, remaining_dw_entrances, dungeon_exits, player) - elif world.shuffle == 'simple': + elif world.shuffle[player] == 'simple': simple_shuffle_dungeons(world, player) old_man_entrances = list(Inverted_Old_Man_Entrances) @@ -1243,7 +1243,7 @@ def link_inverted_entrances(world, player): # place remaining doors connect_doors(world, single_doors, door_targets, player) - elif world.shuffle == 'restricted': + elif world.shuffle[player] == 'restricted': simple_shuffle_dungeons(world, player) lw_entrances = list(Inverted_LW_Entrances + Inverted_LW_Single_Cave_Doors) @@ -1326,7 +1326,7 @@ def link_inverted_entrances(world, player): doors = lw_entrances + dw_entrances # place remaining doors connect_doors(world, doors, door_targets, player) - elif world.shuffle == 'full': + elif world.shuffle[player] == 'full': skull_woods_shuffle(world, player) lw_entrances = list(Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_LW_Single_Cave_Doors) @@ -1477,7 +1477,7 @@ def link_inverted_entrances(world, player): # place remaining doors connect_doors(world, doors, door_targets, player) - elif world.shuffle == 'crossed': + elif world.shuffle[player] == 'crossed': skull_woods_shuffle(world, player) entrances = list(Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_LW_Single_Cave_Doors + Inverted_Old_Man_Entrances + Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + Inverted_DW_Single_Cave_Doors) @@ -1587,7 +1587,7 @@ def link_inverted_entrances(world, player): # place remaining doors connect_doors(world, entrances, door_targets, player) - elif world.shuffle == 'insanity': + elif world.shuffle[player] == 'insanity': # beware ye who enter here entrances = Inverted_LW_Entrances + Inverted_LW_Dungeon_Entrances + Inverted_DW_Entrances + Inverted_DW_Dungeon_Entrances + Inverted_Old_Man_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] @@ -1840,14 +1840,14 @@ def scramble_holes(world, player): hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) # do not shuffle sanctuary into pyramid hole unless shuffle is crossed - if world.shuffle == 'crossed': + if world.shuffle[player] == 'crossed': hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) if world.shuffle_ganon: random.shuffle(hole_targets) exit, target = hole_targets.pop() connect_two_way(world, 'Pyramid Entrance', exit, player) connect_entrance(world, 'Pyramid Hole', target, player) - if world.shuffle != 'crossed': + if world.shuffle[player] != 'crossed': hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) random.shuffle(hole_targets) @@ -1882,14 +1882,14 @@ def scramble_inverted_holes(world, player): hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) # do not shuffle sanctuary into pyramid hole unless shuffle is crossed - if world.shuffle == 'crossed': + if world.shuffle[player] == 'crossed': hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) if world.shuffle_ganon: random.shuffle(hole_targets) exit, target = hole_targets.pop() connect_two_way(world, 'Inverted Pyramid Entrance', exit, player) connect_entrance(world, 'Inverted Pyramid Hole', target, player) - if world.shuffle != 'crossed': + if world.shuffle[player] != 'crossed': hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) random.shuffle(hole_targets) diff --git a/ItemList.py b/ItemList.py index f947a450..2ad1fa16 100644 --- a/ItemList.py +++ b/ItemList.py @@ -174,10 +174,10 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle[player], world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro, world.customitemarray) world.rupoor_cost = min(world.customitemarray[69], 9999) else: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle[player], world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) diff --git a/Main.py b/Main.py index 86ac1a4c..d8961050 100644 --- a/Main.py +++ b/Main.py @@ -187,7 +187,7 @@ def main(args, seed=None): world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], world.mode[player], world.goal[player], "" if world.timer in ['none', 'display'] else "-" + world.timer, - world.shuffle, world.algorithm, mcsb_name, + world.shuffle[player], world.algorithm, mcsb_name, "-retro" if world.retro else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "")) if not args.outputname else '' diff --git a/Plando.py b/Plando.py index 90b2b891..0a88cf4a 100755 --- a/Plando.py +++ b/Plando.py @@ -137,16 +137,16 @@ def fill_world(world, plando, text_patches): world.fix_trock_doors = {1: trdstr.strip().lower() == 'true'} elif line.startswith('!fix_trock_exit'): _, trfstr = line.split(':', 1) - world.fix_trock_exit = trfstr.strip().lower() == 'true' + world.fix_trock_exit = {1: trfstr.strip().lower() == 'true'} elif line.startswith('!fix_gtower_exit'): _, gtfstr = line.split(':', 1) world.fix_gtower_exit = gtfstr.strip().lower() == 'true' elif line.startswith('!fix_pod_exit'): _, podestr = line.split(':', 1) - world.fix_palaceofdarkness_exit = podestr.strip().lower() == 'true' + world.fix_palaceofdarkness_exit = {1: podestr.strip().lower() == 'true'} elif line.startswith('!fix_skullwoods_exit'): _, swestr = line.split(':', 1) - world.fix_skullwoods_exit = swestr.strip().lower() == 'true' + world.fix_skullwoods_exit = {1: swestr.strip().lower() == 'true'} elif line.startswith('!check_beatable_only'): _, chkbtstr = line.split(':', 1) world.check_beatable_only = chkbtstr.strip().lower() == 'true' diff --git a/Rom.py b/Rom.py index a732b6d7..aa6d1621 100644 --- a/Rom.py +++ b/Rom.py @@ -519,17 +519,17 @@ def patch_rom(world, player, rom, enemized): # Thanks to Zarby89 for originally finding these values # todo fix screen scrolling - if world.shuffle not in ['insanity', 'insanity_legacy', 'madness_legacy'] and \ - exit.name in ['Eastern Palace Exit', 'Tower of Hera Exit', 'Thieves Town Exit', 'Skull Woods Final Section Exit', 'Ice Palace Exit', 'Misery Mire Exit', - 'Palace of Darkness Exit', 'Swamp Palace Exit', 'Ganons Tower Exit', 'Desert Palace Exit (North)', 'Agahnims Tower Exit', 'Spiral Cave Exit (Top)', - 'Superbunny Cave Exit (Bottom)', 'Turtle Rock Ledge Exit (East)']: + if world.shuffle[player] not in ['insanity', 'insanity_legacy', 'madness_legacy'] and \ + exit.name in ['Eastern Palace Exit', 'Tower of Hera Exit', 'Thieves Town Exit', 'Skull Woods Final Section Exit', 'Ice Palace Exit', 'Misery Mire Exit', + 'Palace of Darkness Exit', 'Swamp Palace Exit', 'Ganons Tower Exit', 'Desert Palace Exit (North)', 'Agahnims Tower Exit', 'Spiral Cave Exit (Top)', + 'Superbunny Cave Exit (Bottom)', 'Turtle Rock Ledge Exit (East)']: # For exits that connot be reached from another, no need to apply offset fixes. write_int16(rom, 0x15DB5 + 2 * offset, link_y) # same as final else - elif room_id == 0x0059 and world.fix_skullwoods_exit: + elif room_id == 0x0059 and world.fix_skullwoods_exit[player]: write_int16(rom, 0x15DB5 + 2 * offset, 0x00F8) - elif room_id == 0x004a and world.fix_palaceofdarkness_exit: + elif room_id == 0x004a and world.fix_palaceofdarkness_exit[player]: write_int16(rom, 0x15DB5 + 2 * offset, 0x0640) - elif room_id == 0x00d6 and world.fix_trock_exit: + elif room_id == 0x00d6 and world.fix_trock_exit[player]: write_int16(rom, 0x15DB5 + 2 * offset, 0x0134) elif room_id == 0x000c and world.fix_gtower_exit: # fix ganons tower exit point write_int16(rom, 0x15DB5 + 2 * offset, 0x00A4) @@ -581,7 +581,7 @@ def patch_rom(world, player, rom, enemized): if world.mode[player] in ['open', 'inverted']: rom.write_byte(0x180032, 0x01) # open mode if world.mode[player] == 'inverted': - set_inverted_mode(world, rom) + set_inverted_mode(world, player, rom) elif world.mode[player] == 'standard': rom.write_byte(0x180032, 0x00) # standard mode @@ -833,9 +833,9 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x180044, 0x01 if world.swords[player] == 'swordless' else 0x00) # hammer activates tablets # set up clocks for timed modes - if world.shuffle == 'vanilla': + if world.shuffle[player] == 'vanilla': ERtimeincrease = 0 - elif world.shuffle in ['dungeonssimple', 'dungeonsfull']: + elif world.shuffle[player] in ['dungeonssimple', 'dungeonsfull']: ERtimeincrease = 10 else: ERtimeincrease = 20 @@ -883,7 +883,7 @@ def patch_rom(world, player, rom, enemized): rom.write_bytes(0x180213, [0x00, 0x01]) # Not a Tournament Seed gametype = 0x04 # item - if world.shuffle != 'vanilla': + if world.shuffle[player] != 'vanilla': gametype |= 0x02 # entrance if enemized: gametype |= 0x01 # enemizer @@ -1057,7 +1057,7 @@ def patch_rom(world, player, rom, enemized): rom.write_bytes(0x02F539, [0xEA, 0xEA, 0xEA, 0xEA, 0xEA] if world.powder_patch_required[player] else [0xAD, 0xBF, 0x0A, 0xF0, 0x4F]) # allow smith into multi-entrance caves in appropriate shuffles - if world.shuffle in ['restricted', 'full', 'crossed', 'insanity']: + if world.shuffle[player] in ['restricted', 'full', 'crossed', 'insanity']: rom.write_byte(0x18004C, 0x01) # set correct flag for hera basement item @@ -1348,7 +1348,7 @@ def write_strings(rom, world, player): tt.removeUnwantedText() # Let's keep this guy's text accurate to the shuffle setting. - if world.shuffle in ['vanilla', 'dungeonsfull', 'dungeonssimple']: + if world.shuffle[player] in ['vanilla', 'dungeonsfull', 'dungeonssimple']: tt['kakariko_flophouse_man_no_flippers'] = 'I really hate mowing my yard.\n{PAGEBREAK}\nI should move.' tt['kakariko_flophouse_man'] = 'I really hate mowing my yard.\n{PAGEBREAK}\nI should move.' @@ -1379,7 +1379,7 @@ def write_strings(rom, world, player): entrances_to_hint.update({'Inverted Ganons Tower': 'The sealed castle door'}) else: entrances_to_hint.update({'Ganons Tower': 'Ganon\'s Tower'}) - if world.shuffle in ['simple', 'restricted', 'restricted_legacy']: + if world.shuffle[player] in ['simple', 'restricted', 'restricted_legacy']: for entrance in all_entrances: if entrance.name in entrances_to_hint: this_hint = entrances_to_hint[entrance.name] + ' leads to ' + hint_text(entrance.connected_region) + '.' @@ -1388,9 +1388,9 @@ def write_strings(rom, world, player): break #Now we write inconvenient locations for most shuffles and finish taking care of the less chaotic ones. entrances_to_hint.update(InconvenientOtherEntrances) - if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + if world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']: hint_count = 0 - elif world.shuffle in ['simple', 'restricted', 'restricted_legacy']: + elif world.shuffle[player] in ['simple', 'restricted', 'restricted_legacy']: hint_count = 2 else: hint_count = 4 @@ -1405,14 +1405,14 @@ def write_strings(rom, world, player): break #Next we handle hints for randomly selected other entrances, curating the selection intelligently based on shuffle. - if world.shuffle not in ['simple', 'restricted', 'restricted_legacy']: + if world.shuffle[player] not in ['simple', 'restricted', 'restricted_legacy']: entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(DungeonEntrances) if world.mode[player] == 'inverted': entrances_to_hint.update({'Inverted Agahnims Tower': 'The dark mountain tower'}) else: entrances_to_hint.update({'Agahnims Tower': 'The sealed castle door'}) - elif world.shuffle == 'restricted': + elif world.shuffle[player] == 'restricted': entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(OtherEntrances) if world.mode[player] == 'inverted': @@ -1422,14 +1422,14 @@ def write_strings(rom, world, player): else: entrances_to_hint.update({'Dark Sanctuary Hint': 'The dark sanctuary cave'}) entrances_to_hint.update({'Big Bomb Shop': 'The old bomb shop'}) - if world.shuffle in ['insanity', 'madness_legacy', 'insanity_legacy']: + if world.shuffle[player] in ['insanity', 'madness_legacy', 'insanity_legacy']: entrances_to_hint.update(InsanityEntrances) if world.shuffle_ganon: if world.mode[player] == 'inverted': entrances_to_hint.update({'Inverted Pyramid Entrance': 'The extra castle passage'}) else: entrances_to_hint.update({'Pyramid Ledge': 'The pyramid ledge'}) - hint_count = 4 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 0 + hint_count = 4 if world.shuffle[player] not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 0 for entrance in all_entrances: if entrance.name in entrances_to_hint: if hint_count > 0: @@ -1442,10 +1442,10 @@ def write_strings(rom, world, player): # Next we write a few hints for specific inconvenient locations. We don't make many because in entrance this is highly unpredictable. locations_to_hint = InconvenientLocations.copy() - if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + if world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']: locations_to_hint.extend(InconvenientVanillaLocations) random.shuffle(locations_to_hint) - hint_count = 3 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 5 + hint_count = 3 if world.shuffle[player] not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 5 del locations_to_hint[hint_count:] for location in locations_to_hint: if location == 'Swamp Left': @@ -1498,7 +1498,7 @@ def write_strings(rom, world, player): if world.bigkeyshuffle: items_to_hint.extend(BigKeys) random.shuffle(items_to_hint) - hint_count = 5 if world.shuffle not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 8 + hint_count = 5 if world.shuffle[player] not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 8 while hint_count > 0: this_item = items_to_hint.pop(0) this_location = world.find_items(this_item, player) @@ -1641,7 +1641,7 @@ def write_strings(rom, world, player): rom.write_bytes(0x181500, data) rom.write_bytes(0x76CC0, [byte for p in pointers for byte in [p & 0xFF, p >> 8 & 0xFF]]) -def set_inverted_mode(world, rom): +def set_inverted_mode(world, player, rom): rom.write_byte(snes_to_pc(0x0283E0), 0xF0) # residual portals rom.write_byte(snes_to_pc(0x02B34D), 0xF0) rom.write_byte(snes_to_pc(0x06DB78), 0x8B) @@ -1654,12 +1654,12 @@ def set_inverted_mode(world, rom): rom.write_byte(snes_to_pc(0x08D40C), 0xD0) # morph proof # the following bytes should only be written in vanilla # or they'll overwrite the randomizer's shuffles - if world.shuffle == 'vanilla': + if world.shuffle[player] == 'vanilla': rom.write_byte(0xDBB73 + 0x23, 0x37) # switch AT and GT rom.write_byte(0xDBB73 + 0x36, 0x24) write_int16(rom, 0x15AEE + 2*0x38, 0x00E0) write_int16(rom, 0x15AEE + 2*0x25, 0x000C) - if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + if world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(0x15B8C, 0x6C) rom.write_byte(0xDBB73 + 0x00, 0x53) # switch bomb shop and links house rom.write_byte(0xDBB73 + 0x52, 0x01) @@ -1717,7 +1717,7 @@ def set_inverted_mode(world, rom): write_int16(rom, snes_to_pc(0x02D9A6), 0x005A) rom.write_byte(snes_to_pc(0x02D9B3), 0x12) # keep the old man spawn point at old man house unless shuffle is vanilla - if world.shuffle in ['vanilla', 'dungeonsfull', 'dungeonssimple']: + if world.shuffle[player] in ['vanilla', 'dungeonsfull', 'dungeonssimple']: rom.write_bytes(snes_to_pc(0x308350), [0x00, 0x00, 0x01]) write_int16(rom, snes_to_pc(0x02D8DE), 0x00F1) rom.write_bytes(snes_to_pc(0x02D910), [0x1F, 0x1E, 0x1F, 0x1F, 0x03, 0x02, 0x03, 0x03]) @@ -1780,7 +1780,7 @@ def set_inverted_mode(world, rom): write_int16s(rom, snes_to_pc(0x1bb836), [0x001B, 0x001B, 0x001B]) write_int16(rom, snes_to_pc(0x308300), 0x0140) # new pyramid hole entrance write_int16(rom, snes_to_pc(0x308320), 0x001B) - if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + if world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(snes_to_pc(0x308340), 0x7B) write_int16(rom, snes_to_pc(0x1af504), 0x148B) write_int16(rom, snes_to_pc(0x1af50c), 0x149B) @@ -1817,10 +1817,10 @@ def set_inverted_mode(world, rom): rom.write_bytes(snes_to_pc(0x1BC85A), [0x50, 0x0F, 0x82]) write_int16(rom, 0xDB96F + 2 * 0x35, 0x001B) # move pyramid exit door write_int16(rom, 0xDBA71 + 2 * 0x35, 0x06A4) - if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + if world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']: rom.write_byte(0xDBB73 + 0x35, 0x36) rom.write_byte(snes_to_pc(0x09D436), 0xF3) # remove castle gate warp - if world.shuffle in ['vanilla', 'dungeonssimple', 'dungeonsfull']: + if world.shuffle[player] in ['vanilla', 'dungeonssimple', 'dungeonsfull']: write_int16(rom, 0x15AEE + 2 * 0x37, 0x0010) # pyramid exit to new hc area rom.write_byte(0x15B8C + 0x37, 0x1B) write_int16(rom, 0x15BDB + 2 * 0x37, 0x0418) diff --git a/Rules.py b/Rules.py index a7bd03f4..576494fb 100644 --- a/Rules.py +++ b/Rules.py @@ -16,7 +16,7 @@ def set_rules(world, player): else: world.get_region('Inverted Links House', player).can_reach_private = lambda state: True world.get_region('Inverted Dark Sanctuary', player).entrances[0].parent_region.can_reach_private = lambda state: True - if world.shuffle != 'vanilla': + if world.shuffle[player] != 'vanilla': old_rule = world.get_region('Old Man House', player).can_reach world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) return From 04f5f2fa8497185838bcd2a09a256a2018940ffe Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 18:39:00 +0100 Subject: [PATCH 102/185] Multi client/server: log fewer exceptions --- MultiClient.py | 4 ++-- MultiServer.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MultiClient.py b/MultiClient.py index cd9c997b..fd7cfa9a 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -410,7 +410,7 @@ async def snes_recv_loop(ctx : Context): print("Snes disconnected, type /snes to reconnect") except Exception as e: print("Lost connection to the snes, type /snes to reconnect") - if type(e) is not websockets.ConnectionClosed: + if not isinstance(e, websockets.WebSocketException): logging.exception(e) finally: socket, ctx.snes_socket = ctx.snes_socket, None @@ -561,7 +561,7 @@ async def server_loop(ctx : Context): print('Failed to connect to the multiworld server') except Exception as e: print('Lost connection to the multiworld server, type /connect to reconnect') - if type(e) is not websockets.ConnectionClosed: + if not isinstance(e, websockets.WebSocketException): logging.exception(e) finally: ctx.name = None diff --git a/MultiServer.py b/MultiServer.py index 9a2a1c92..cb753721 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -102,7 +102,7 @@ async def server(websocket, path, ctx : Context): args = msg[1] await process_client_cmd(ctx, client, cmd, args) except Exception as e: - if type(e) is not websockets.ConnectionClosed: + if not isinstance(e, websockets.WebSocketException): logging.exception(e) finally: await on_client_disconnected(ctx, client) From dc26dfce7704559562de043ec996f31865b4f9e2 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 19:09:15 +0100 Subject: [PATCH 103/185] Individual settings: crystals_ganon crystals_gt openpyramid --- BaseClasses.py | 12 +++++++++--- EntranceRandomizer.py | 2 +- Main.py | 11 ++++++----- Rom.py | 12 ++++++------ Rules.py | 12 ++++++------ 5 files changed, 28 insertions(+), 21 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 0490eab8..d021d18f 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -76,9 +76,9 @@ class World(object): self.boss_shuffle = boss_shuffle self.escape_assist = {player: [] for player in range(1, players + 1)} self.hints = hints - self.crystals_needed_for_ganon = 7 - self.crystals_needed_for_gt = 7 - self.open_pyramid = False + self.crystals_needed_for_ganon = {} + self.crystals_needed_for_gt = {} + self.open_pyramid = {player: False for player in range(1, players + 1)} self.dynamic_regions = [] self.dynamic_locations = [] self.spoiler = Spoiler(self) @@ -1049,6 +1049,9 @@ class Spoiler(object): 'shuffle': self.world.shuffle, 'item_pool': self.world.difficulty, 'item_functionality': self.world.difficulty_adjustments, + 'gt_crystals': self.world.crystals_needed_for_gt, + 'ganon_crystals': self.world.crystals_needed_for_ganon, + 'open_pyramid': self.world.open_pyramid, 'accessibility': self.world.accessibility, 'hints': self.world.hints, 'mapshuffle': self.world.mapshuffle, @@ -1085,6 +1088,9 @@ class Spoiler(object): outfile.write('Difficulty: %s\n' % self.metadata['item_pool']) outfile.write('Item Functionality: %s\n' % self.metadata['item_functionality']) outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle']) + outfile.write('Crystals required for GT: %s\n' % self.metadata['gt_crystals']) + outfile.write('Crystals required for Ganon: %s\n' % self.metadata['ganon_crystals']) + outfile.write('Pyramid hole pre-opened: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['open_pyramid'].items()}) outfile.write('Filling Algorithm: %s\n' % self.world.algorithm) outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index c586c4d9..e97ddb59 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -278,7 +278,7 @@ def parse_arguments(argv, no_defaults=False): for player in range(1, multiargs.multi + 1): playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) - for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle']: + for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Main.py b/Main.py index d8961050..f54ca5f3 100644 --- a/Main.py +++ b/Main.py @@ -47,9 +47,9 @@ def main(args, seed=None): elif any([world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle]): mcsb_name = '-%s%s%s%sshuffle' % ('M' if world.mapshuffle else '', 'C' if world.compassshuffle else '', 'S' if world.keyshuffle else '', 'B' if world.bigkeyshuffle else '') - world.crystals_needed_for_ganon = random.randint(0, 7) if args.crystals_ganon == 'random' else int(args.crystals_ganon) - world.crystals_needed_for_gt = random.randint(0, 7) if args.crystals_gt == 'random' else int(args.crystals_gt) - world.open_pyramid = args.openpyramid + 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.open_pyramid = args.openpyramid.copy() world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} @@ -239,8 +239,9 @@ def copy_world(world): ret.compassshuffle = world.compassshuffle ret.keyshuffle = world.keyshuffle ret.bigkeyshuffle = world.bigkeyshuffle - ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon - ret.crystals_needed_for_gt = world.crystals_needed_for_gt + ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon.copy() + ret.crystals_needed_for_gt = world.crystals_needed_for_gt.copy() + ret.open_pyramid = world.open_pyramid.copy() for player in range(1, world.players + 1): if world.mode[player] != 'inverted': diff --git a/Rom.py b/Rom.py index aa6d1621..e8918aa6 100644 --- a/Rom.py +++ b/Rom.py @@ -902,8 +902,8 @@ def patch_rom(world, player, rom, enemized): rom.write_bytes(0x50563, [0x3F, 0x14]) # disable below ganon chest rom.write_byte(0x50599, 0x00) # disable below ganon chest rom.write_bytes(0xE9A5, [0x7E, 0x00, 0x24]) # disable below ganon chest - rom.write_byte(0x18008B, 0x01 if world.open_pyramid else 0x00) # pre-open Pyramid Hole - rom.write_byte(0x18008C, 0x01 if world.crystals_needed_for_gt == 0 else 0x00) # GT pre-opened if crystal requirement is 0 + rom.write_byte(0x18008B, 0x01 if world.open_pyramid[player] else 0x00) # pre-open Pyramid Hole + rom.write_byte(0x18008C, 0x01 if world.crystals_needed_for_gt[player] == 0 else 0x00) # GT pre-opened if crystal requirement is 0 rom.write_byte(0xF5D73, 0xF0) # bees are catchable rom.write_byte(0xF5F10, 0xF0) # bees are catchable rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness @@ -952,8 +952,8 @@ def patch_rom(world, player, rom, enemized): else: rom.write_byte(0x18003E, 0x03) # make ganon invincible until all crystals and aga 2 are collected - rom.write_byte(0x18005E, world.crystals_needed_for_gt) - rom.write_byte(0x18005F, world.crystals_needed_for_ganon) + rom.write_byte(0x18005E, world.crystals_needed_for_gt[player]) + rom.write_byte(0x18005F, world.crystals_needed_for_ganon[player]) rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle else 0x00) @@ -1549,8 +1549,8 @@ def write_strings(rom, world, player): greenpendant = world.find_items('Green Pendant', player)[0] tt['sahasrahla_bring_courage'] = 'I lost my family heirloom in %s' % greenpendant.hint_text - tt['sign_ganons_tower'] = ('You need %d crystal to enter.' if world.crystals_needed_for_gt == 1 else 'You need %d crystals to enter.') % world.crystals_needed_for_gt - tt['sign_ganon'] = ('You need %d crystal to beat Ganon.' if world.crystals_needed_for_ganon == 1 else 'You need %d crystals to beat Ganon.') % world.crystals_needed_for_ganon + tt['sign_ganons_tower'] = ('You need %d crystal to enter.' if world.crystals_needed_for_gt[player] == 1 else 'You need %d crystals to enter.') % world.crystals_needed_for_gt[player] + tt['sign_ganon'] = ('You need %d crystal to beat Ganon.' if world.crystals_needed_for_ganon[player] == 1 else 'You need %d crystals to beat Ganon.') % world.crystals_needed_for_ganon[player] if world.goal[player] in ['dungeons']: tt['sign_ganon'] = 'You need to complete all the dungeons.' diff --git a/Rules.py b/Rules.py index 576494fb..99810d96 100644 --- a/Rules.py +++ b/Rules.py @@ -339,7 +339,7 @@ def global_rules(world, player): 'Ganons Tower - Pre-Moldorm Chest', 'Ganons Tower - Validation Chest']: forbid_item(world.get_location(location, player), 'Big Key (Ganons Tower)', player) - set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon, player) + set_rule(world.get_location('Ganon', player), lambda state: state.has_beam_sword(player) and state.has_fire_source(player) and state.has_crystals(world.crystals_needed_for_ganon[player], player) and (state.has('Tempered Sword', player) or state.has('Golden Sword', player) or (state.has('Silver Arrows', player) and state.can_shoot_arrows(player)) or state.has('Lamp', player) or state.can_extend_magic(player, 12))) # need to light torch a sufficient amount of times set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has_beam_sword(player)) # need to damage ganon to get tiles to drop @@ -455,7 +455,7 @@ def default_rules(world, player): 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_Pearl(player) and 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 (!) - set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid) + set_rule(world.get_entrance('Pyramid Hole', player), lambda state: state.has('Beat Agahnim 2', player) or world.open_pyramid[player]) set_rule(world.get_entrance('Ganons Tower', player), lambda state: False) # This is a safety for the TR function below to not require GT entrance in its key logic. if world.swords[player] == 'swordless': @@ -463,7 +463,7 @@ def default_rules(world, player): set_trock_key_rules(world, player) - set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) + set_rule(world.get_entrance('Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt[player], player)) def inverted_rules(world, player): # s&q regions. link's house entrance is set to true so the filler knows the chest inside can always be reached @@ -610,7 +610,7 @@ def inverted_rules(world, 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) + 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. if world.swords[player] == 'swordless': @@ -618,7 +618,7 @@ def inverted_rules(world, player): set_trock_key_rules(world, player) - set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt, player)) + set_rule(world.get_entrance('Inverted Ganons Tower', player), lambda state: state.has_crystals(world.crystals_needed_for_gt[player], player)) def no_glitches_rules(world, player): if world.mode[player] != 'inverted': @@ -706,7 +706,7 @@ def swordless_rules(world, player): set_rule(world.get_location('Ether Tablet', player), lambda state: state.has('Book of Mudora', player) and state.has('Hammer', player)) set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player)) # no curtain set_rule(world.get_entrance('Ice Palace Entrance Room', player), lambda state: state.has('Fire Rod', player) or state.has('Bombos', player)) #in swordless mode bombos pads are present in the relevant parts of ice palace - set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has_crystals(world.crystals_needed_for_ganon, player)) + set_rule(world.get_location('Ganon', player), lambda state: state.has('Hammer', player) and state.has_fire_source(player) and state.has('Silver Arrows', player) and state.can_shoot_arrows(player) and state.has_crystals(world.crystals_needed_for_ganon[player], player)) set_rule(world.get_entrance('Ganon Drop', player), lambda state: state.has('Hammer', player)) # need to damage ganon to get tiles to drop if world.mode[player] != 'inverted': From 1315eb55cf2933c153f3602fb659f13877c64088 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 16 Dec 2019 21:46:47 +0100 Subject: [PATCH 104/185] Individual settings: map/compass/key/bk shuffle --- BaseClasses.py | 26 +++++++++++++------------- Dungeons.py | 12 ++++++------ EntranceRandomizer.py | 4 +++- Fill.py | 7 +++---- ItemList.py | 8 ++++---- Main.py | 39 +++++++++++++++++++++------------------ Rom.py | 34 +++++++++++++++++----------------- Rules.py | 4 ++-- 8 files changed, 69 insertions(+), 65 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index d021d18f..d841da36 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -63,10 +63,10 @@ class World(object): self.quickswap = quickswap self.fastmenu = fastmenu self.disable_music = disable_music - self.mapshuffle = False - self.compassshuffle = False - self.keyshuffle = False - self.bigkeyshuffle = False + self.mapshuffle = {player: False for player in range(1, players + 1)} + self.compassshuffle = {player: False for player in range(1, players + 1)} + self.keyshuffle = {player: False for player in range(1, players + 1)} + self.bigkeyshuffle = {player: False for player in range(1, players + 1)} self.retro = retro self.custom = custom self.customitemarray = customitemarray @@ -364,7 +364,7 @@ class CollectionState(object): checked_locations = 0 while new_locations: reachable_events = [location for location in locations if location.event and - (not key_only or (not self.world.keyshuffle and location.item.smallkey) or (not self.world.bigkeyshuffle and location.item.bigkey)) + (not key_only or (not self.world.keyshuffle[location.item.player] and location.item.smallkey) or (not self.world.bigkeyshuffle[location.item.player] and location.item.bigkey)) and location.can_reach(self)] for event in reachable_events: if (event.name, event.player) not in self.events: @@ -685,10 +685,10 @@ class Region(object): return False def can_fill(self, item): - inside_dungeon_item = ((item.smallkey and not self.world.keyshuffle) - or (item.bigkey and not self.world.bigkeyshuffle) - or (item.map and not self.world.mapshuffle) - or (item.compass and not self.world.compassshuffle)) + inside_dungeon_item = ((item.smallkey and not self.world.keyshuffle[item.player]) + or (item.bigkey and not self.world.bigkeyshuffle[item.player]) + or (item.map and not self.world.mapshuffle[item.player]) + or (item.compass and not self.world.compassshuffle[item.player])) sewer_hack = self.world.mode[item.player] == 'standard' and item.name == 'Small Key (Escape)' if sewer_hack or inside_dungeon_item: return self.dungeon and self.dungeon.is_dungeon_item(item) and item.player == self.player @@ -1095,10 +1095,10 @@ class Spoiler(object): outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) outfile.write('Menu speed: %s\n' % self.world.fastmenu) - outfile.write('Map shuffle: %s\n' % ('Yes' if self.metadata['mapshuffle'] else 'No')) - outfile.write('Compass shuffle: %s\n' % ('Yes' if self.metadata['compassshuffle'] else 'No')) - outfile.write('Small Key shuffle: %s\n' % ('Yes' if self.metadata['keyshuffle'] else 'No')) - outfile.write('Big Key shuffle: %s\n' % ('Yes' if self.metadata['bigkeyshuffle'] else 'No')) + outfile.write('Map shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['mapshuffle'].items()}) + outfile.write('Compass shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['compassshuffle'].items()}) + outfile.write('Small Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['keyshuffle'].items()}) + outfile.write('Big Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['bigkeyshuffle'].items()}) outfile.write('Players: %d' % self.world.players) if self.entrances: outfile.write('\n\nEntrances:\n\n') diff --git a/Dungeons.py b/Dungeons.py index a176af13..7237af00 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -136,16 +136,16 @@ def fill_dungeons_restrictive(world, shuffled_locations): # with shuffled dungeon items they are distributed as part of the normal item pool for item in world.get_items(): - if (item.smallkey and world.keyshuffle) or (item.bigkey and world.bigkeyshuffle): + if (item.smallkey and world.keyshuffle[item.player]) or (item.bigkey and world.bigkeyshuffle[item.player]): all_state_base.collect(item, True) item.advancement = True - elif (item.map and world.mapshuffle) or (item.compass and world.compassshuffle): + elif (item.map and world.mapshuffle[item.player]) or (item.compass and world.compassshuffle[item.player]): item.priority = True - dungeon_items = [item for item in get_dungeon_item_pool(world) if ((item.smallkey and not world.keyshuffle) - or (item.bigkey and not world.bigkeyshuffle) - or (item.map and not world.mapshuffle) - or (item.compass and not world.compassshuffle))] + dungeon_items = [item for item in get_dungeon_item_pool(world) if ((item.smallkey and not world.keyshuffle[item.player]) + or (item.bigkey and not world.bigkeyshuffle[item.player]) + or (item.map and not world.mapshuffle[item.player]) + or (item.compass and not world.compassshuffle[item.player]))] # sort in the order Big Key, Small Key, Other before placing dungeon items sort_order = {"BigKey": 3, "SmallKey": 2} diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index e97ddb59..3782a001 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -278,7 +278,9 @@ def parse_arguments(argv, no_defaults=False): for player in range(1, multiargs.multi + 1): playerargs = parse_arguments(shlex.split(getattr(ret,f"p{player}")), True) - for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid']: + for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', + 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', + 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Fill.py b/Fill.py index dbb5fd78..1ee3d859 100644 --- a/Fill.py +++ b/Fill.py @@ -243,8 +243,7 @@ def distribute_items_restrictive(world, gftower_trash=False, fill_locations=None fill_locations.reverse() # Make sure the escape small key is placed first in standard with key shuffle to prevent running out of spots - if world.keyshuffle: - progitempool.sort(key=lambda item: 1 if item.name == 'Small Key (Escape)' and world.mode[item.player] == 'standard' else 0) + progitempool.sort(key=lambda item: 1 if item.name == 'Small Key (Escape)' and world.mode[item.player] == 'standard' and world.keyshuffle[item.player] else 0) fill_restrictive(world, world.state, fill_locations, progitempool) @@ -355,7 +354,7 @@ def balance_multiworld_progression(world): candidate_items = [] while True: for location in balancing_sphere: - if location.event and (world.keyshuffle or not location.item.smallkey) and (world.bigkeyshuffle or not location.item.bigkey): + if location.event and (world.keyshuffle[location.item.player] or not location.item.smallkey) and (world.bigkeyshuffle[location.item.player] or not location.item.bigkey): balancing_state.collect(location.item, True, location) if location.item.player in balancing_players and not location.locked: candidate_items.append(location) @@ -411,7 +410,7 @@ def balance_multiworld_progression(world): sphere_locations.append(location) for location in sphere_locations: - if location.event and (world.keyshuffle or not location.item.smallkey) and (world.bigkeyshuffle or not location.item.bigkey): + if location.event and (world.keyshuffle[location.item.player] or not location.item.smallkey) and (world.bigkeyshuffle[location.item.player] or not location.item.bigkey): state.collect(location.item, True, location) checked_locations.extend(sphere_locations) diff --git a/ItemList.py b/ItemList.py index 2ad1fa16..69114363 100644 --- a/ItemList.py +++ b/ItemList.py @@ -219,10 +219,10 @@ def generate_itempool(world, player): world.treasure_hunt_icon = treasure_hunt_icon world.itempool.extend([item for item in get_dungeon_item_pool(world) if item.player == player - and ((item.smallkey and world.keyshuffle) - or (item.bigkey and world.bigkeyshuffle) - or (item.map and world.mapshuffle) - or (item.compass and world.compassshuffle))]) + and ((item.smallkey and world.keyshuffle[player]) + or (item.bigkey and world.bigkeyshuffle[player]) + or (item.map and world.mapshuffle[player]) + or (item.compass and world.compassshuffle[player]))]) # logic has some branches where having 4 hearts is one possible requirement (of several alternatives) # rather than making all hearts/heart pieces progression items (which slows down generation considerably) diff --git a/Main.py b/Main.py index f54ca5f3..1f45700f 100644 --- a/Main.py +++ b/Main.py @@ -34,19 +34,10 @@ def main(args, seed=None): world.seed = int(seed) random.seed(world.seed) - world.mapshuffle = args.mapshuffle - world.compassshuffle = args.compassshuffle - world.keyshuffle = args.keyshuffle - world.bigkeyshuffle = args.bigkeyshuffle - - mcsb_name = '' - if all([world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle]): - mcsb_name = '-keysanity' - elif [world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle].count(True) == 1: - mcsb_name = '-mapshuffle' if world.mapshuffle else '-compassshuffle' if world.compassshuffle else '-keyshuffle' if world.keyshuffle else '-bigkeyshuffle' - elif any([world.mapshuffle, world.compassshuffle, world.keyshuffle, world.bigkeyshuffle]): - mcsb_name = '-%s%s%s%sshuffle' % ('M' if world.mapshuffle else '', 'C' if world.compassshuffle else '', 'S' if world.keyshuffle else '', 'B' if world.bigkeyshuffle else '') - + world.mapshuffle = args.mapshuffle.copy() + world.compassshuffle = args.compassshuffle.copy() + world.keyshuffle = args.keyshuffle.copy() + 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.open_pyramid = args.openpyramid.copy() @@ -94,7 +85,8 @@ def main(args, seed=None): logger.info('Placing Dungeon Items.') shuffled_locations = None - if args.algorithm in ['balanced', 'vt26'] or args.mapshuffle or args.compassshuffle or args.keyshuffle or args.bigkeyshuffle: + if args.algorithm in ['balanced', 'vt26'] or any(list(args.mapshuffle.values()) + list(args.compassshuffle.values()) + + list(args.keyshuffle.values()) + list(args.bigkeyshuffle.values())): shuffled_locations = world.get_unfilled_locations() random.shuffle(shuffled_locations) fill_dungeons_restrictive(world, shuffled_locations) @@ -182,6 +174,17 @@ def main(args, seed=None): rom.write_bytes(int(addr), values) apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) + + mcsb_name = '' + if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): + mcsb_name = '-keysanity' + elif [world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]].count(True) == 1: + mcsb_name = '-mapshuffle' if world.mapshuffle[player] else '-compassshuffle' if world.compassshuffle[player] else '-keyshuffle' if world.keyshuffle[player] else '-bigkeyshuffle' + elif any([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): + mcsb_name = '-%s%s%s%sshuffle' % ( + 'M' if world.mapshuffle[player] else '', 'C' if world.compassshuffle[player] else '', + 'S' if world.keyshuffle[player] else '', 'B' if world.bigkeyshuffle[player] else '') + outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', f'_{player_names[player]}' if player in player_names else '', world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], @@ -235,10 +238,10 @@ def copy_world(world): ret.difficulty_requirements = world.difficulty_requirements.copy() ret.fix_fake_world = world.fix_fake_world ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms - ret.mapshuffle = world.mapshuffle - ret.compassshuffle = world.compassshuffle - ret.keyshuffle = world.keyshuffle - ret.bigkeyshuffle = world.bigkeyshuffle + ret.mapshuffle = world.mapshuffle.copy() + ret.compassshuffle = world.compassshuffle.copy() + ret.keyshuffle = world.keyshuffle.copy() + 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.open_pyramid = world.open_pyramid.copy() diff --git a/Rom.py b/Rom.py index e8918aa6..12be1b7c 100644 --- a/Rom.py +++ b/Rom.py @@ -490,14 +490,14 @@ def patch_rom(world, player, rom, enemized): # patch music music_addresses = dungeon_music_addresses[location.name] - if world.mapshuffle: + if world.mapshuffle[player]: music = random.choice([0x11, 0x16]) else: music = 0x11 if 'Pendant' in location.item.name else 0x16 for music_address in music_addresses: rom.write_byte(music_address, music) - if world.mapshuffle: + if world.mapshuffle[player]: rom.write_byte(0x155C9, random.choice([0x11, 0x16])) # Randomize GT music too with map shuffle # patch entrance/exits/holes @@ -839,7 +839,7 @@ def patch_rom(world, player, rom, enemized): ERtimeincrease = 10 else: ERtimeincrease = 20 - if world.keyshuffle or world.bigkeyshuffle or world.mapshuffle: + if world.keyshuffle[player] or world.bigkeyshuffle[player] or world.mapshuffle[player]: ERtimeincrease = ERtimeincrease + 15 if world.clock_mode == 'off': rom.write_bytes(0x180190, [0x00, 0x00, 0x00]) # turn off clock mode @@ -956,24 +956,24 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x18005F, world.crystals_needed_for_ganon[player]) rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode - rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle else 0x00) - | (0x02 if world.compassshuffle else 0x00) - | (0x04 if world.mapshuffle else 0x00) - | (0x08 if world.bigkeyshuffle else 0x00))) # free roaming item text boxes - rom.write_byte(0x18003B, 0x01 if world.mapshuffle else 0x00) # maps showing crystals on overworld + rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle[player] else 0x00) + | (0x02 if world.compassshuffle[player] else 0x00) + | (0x04 if world.mapshuffle[player] else 0x00) + | (0x08 if world.bigkeyshuffle[player] else 0x00))) # free roaming item text boxes + rom.write_byte(0x18003B, 0x01 if world.mapshuffle[player] else 0x00) # maps showing crystals on overworld # compasses showing dungeon count if world.clock_mode != 'off': rom.write_byte(0x18003C, 0x00) # Currently must be off if timer is on, because they use same HUD location - elif world.compassshuffle: + elif world.compassshuffle[player]: rom.write_byte(0x18003C, 0x01) # show on pickup else: rom.write_byte(0x18003C, 0x00) - rom.write_byte(0x180045, ((0x01 if world.keyshuffle else 0x00) - | (0x02 if world.bigkeyshuffle else 0x00) - | (0x04 if world.compassshuffle else 0x00) - | (0x08 if world.mapshuffle else 0x00))) # free roaming items in menu + rom.write_byte(0x180045, ((0x01 if world.keyshuffle[player] else 0x00) + | (0x02 if world.bigkeyshuffle[player] else 0x00) + | (0x04 if world.compassshuffle[player] else 0x00) + | (0x08 if world.mapshuffle[player] else 0x00))) # free roaming items in menu # Map reveals reveal_bytes = { @@ -998,8 +998,8 @@ def patch_rom(world, player, rom, enemized): return reveal_bytes.get(location.parent_region.dungeon.name, 0x0000) return 0x0000 - write_int16(rom, 0x18017A, get_reveal_bytes('Green Pendant') if world.mapshuffle else 0x0000) # Sahasrahla reveal - write_int16(rom, 0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.mapshuffle else 0x0000) # Bomb Shop Reveal + write_int16(rom, 0x18017A, get_reveal_bytes('Green Pendant') if world.mapshuffle[player] else 0x0000) # Sahasrahla reveal + write_int16(rom, 0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.mapshuffle[player] else 0x0000) # Bomb Shop Reveal rom.write_byte(0x180172, 0x01 if world.retro else 0x00) # universal keys rom.write_byte(0x180175, 0x01 if world.retro else 0x00) # rupee bow @@ -1493,9 +1493,9 @@ def write_strings(rom, world, player): # Lastly we write hints to show where certain interesting items are. It is done the way it is to re-use the silver code and also to give one hint per each type of item regardless of how many exist. This supports many settings well. items_to_hint = RelevantItems.copy() - if world.keyshuffle: + if world.keyshuffle[player]: items_to_hint.extend(SmallKeys) - if world.bigkeyshuffle: + if world.bigkeyshuffle[player]: items_to_hint.extend(BigKeys) random.shuffle(items_to_hint) hint_count = 5 if world.shuffle[player] not in ['vanilla', 'dungeonssimple', 'dungeonsfull'] else 8 diff --git a/Rules.py b/Rules.py index 99810d96..052865ce 100644 --- a/Rules.py +++ b/Rules.py @@ -804,7 +804,7 @@ def set_trock_key_rules(world, player): non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] - if not world.keyshuffle: + if not world.keyshuffle[player]: non_big_key_locations += ['Turtle Rock - Big Key Chest'] else: set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) @@ -814,7 +814,7 @@ def set_trock_key_rules(world, player): non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'] - if not world.keyshuffle: + if not world.keyshuffle[player]: non_big_key_locations += ['Turtle Rock - Big Key Chest', 'Turtle Rock - Chain Chomps'] # set big key restrictions From e5246d5d5ac02938ea661f0e507f746ced719472 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 00:16:02 +0100 Subject: [PATCH 105/185] Individual settings: retro --- BaseClasses.py | 8 +++++--- Dungeons.py | 6 +++--- EntranceRandomizer.py | 3 ++- ItemList.py | 10 +++++----- Main.py | 2 +- Rom.py | 22 +++++++++++----------- 6 files changed, 27 insertions(+), 24 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index d841da36..205aee99 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -67,7 +67,7 @@ class World(object): self.compassshuffle = {player: False for player in range(1, players + 1)} self.keyshuffle = {player: False for player in range(1, players + 1)} self.bigkeyshuffle = {player: False for player in range(1, players + 1)} - self.retro = retro + self.retro = retro.copy() self.custom = custom self.customitemarray = customitemarray self.can_take_damage = True @@ -379,7 +379,7 @@ class CollectionState(object): return self.prog_items.count((item, player)) >= count def has_key(self, item, player, count=1): - if self.world.retro: + if self.world.retro[player]: return self.can_buy_unlimited('Small Key (Universal)', player) if count == 1: return (item, player) in self.prog_items @@ -448,7 +448,7 @@ class CollectionState(object): ) def can_shoot_arrows(self, player): - if self.world.retro: + if self.world.retro[player]: #TODO: need to decide how we want to handle wooden arrows longer-term (a can-buy-a check, or via dynamic shop location) #FIXME: Should do something about hard+ ganon only silvers. For the moment, i believe they effective grant wooden, so we are safe return self.has('Bow', player) and (self.has('Silver Arrows', player) or self.can_buy_unlimited('Single Arrow', player)) @@ -1044,6 +1044,7 @@ class Spoiler(object): self.metadata = {'version': ERVersion, 'logic': self.world.logic, 'mode': self.world.mode, + 'retro': self.world.retro, 'weapons': self.world.swords, 'goal': self.world.goal, 'shuffle': self.world.shuffle, @@ -1083,6 +1084,7 @@ class Spoiler(object): outfile.write('ALttP Entrance Randomizer Version %s - Seed: %s\n\n' % (self.metadata['version'], self.world.seed)) outfile.write('Logic: %s\n' % self.metadata['logic']) outfile.write('Mode: %s\n' % self.metadata['mode']) + outfile.write('Retro: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['retro'].items()}) outfile.write('Swords: %s\n' % self.metadata['weapons']) outfile.write('Goal: %s\n' % self.metadata['goal']) outfile.write('Difficulty: %s\n' % self.metadata['item_pool']) diff --git a/Dungeons.py b/Dungeons.py index 7237af00..9470d390 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -8,7 +8,7 @@ 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 else small_keys, dungeon_items, player) + dungeon = Dungeon(name, dungeon_regions, big_key, [] if world.retro[player] else small_keys, dungeon_items, player) dungeon.boss = BossFactory(default_boss, player) for region in dungeon.regions: world.get_region(region, player).dungeon = dungeon @@ -47,7 +47,7 @@ def fill_dungeons(world): for player in range(1, world.players + 1): pinball_room = world.get_location('Skull Woods - Pinball Room', player) - if world.retro: + if world.retro[player]: world.push_item(pinball_room, ItemFactory('Small Key (Universal)', player), False) else: world.push_item(pinball_room, ItemFactory('Small Key (Skull Woods)', player), False) @@ -126,7 +126,7 @@ def fill_dungeons_restrictive(world, shuffled_locations): for player in range(1, world.players + 1): pinball_room = world.get_location('Skull Woods - Pinball Room', player) - if world.retro: + if world.retro[player]: world.push_item(pinball_room, ItemFactory('Small Key (Universal)', player), False) else: world.push_item(pinball_room, ItemFactory('Small Key (Skull Woods)', player), False) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 3782a001..a423cae1 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -280,7 +280,8 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', - 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle']: + 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', + 'retro']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/ItemList.py b/ItemList.py index 69114363..991588b4 100644 --- a/ItemList.py +++ b/ItemList.py @@ -174,10 +174,10 @@ def generate_itempool(world, player): # set up item pool if world.custom: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle[player], world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro, world.customitemarray) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle[player], world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro[player], world.customitemarray) world.rupoor_cost = min(world.customitemarray[69], 9999) else: - (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle[player], world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro) + (pool, placed_items, precollected_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle[player], world.difficulty[player], world.timer, world.goal[player], world.mode[player], world.swords[player], world.retro[player]) for item in precollected_items: world.push_precollected(ItemFactory(item, player)) @@ -242,7 +242,7 @@ def generate_itempool(world, player): place_bosses(world, player) set_up_shops(world, player) - if world.retro: + if world.retro[player]: set_up_take_anys(world, player) create_dynamic_shop_locations(world, player) @@ -355,13 +355,13 @@ def set_up_shops(world, player): for shop in world.shops: shop.active = True - if world.retro: + if world.retro[player]: rss = world.get_region('Red Shield Shop', player).shop rss.active = True rss.add_inventory(2, 'Single Arrow', 80) # Randomized changes to Shops - if world.retro: + if world.retro[player]: for shop in random.sample([s for s in world.shops if s.replaceable and s.region.player == player], 5): shop.active = True shop.add_inventory(0, 'Single Arrow', 80) diff --git a/Main.py b/Main.py index 1f45700f..876f6912 100644 --- a/Main.py +++ b/Main.py @@ -191,7 +191,7 @@ def main(args, seed=None): world.mode[player], world.goal[player], "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle[player], world.algorithm, mcsb_name, - "-retro" if world.retro else "", + "-retro" if world.retro[player] else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints else "")) if not args.outputname else '' rom.write_to_file(output_path(f'{outfilebase}{outfilesuffix}.sfc')) diff --git a/Rom.py b/Rom.py index 12be1b7c..d49be486 100644 --- a/Rom.py +++ b/Rom.py @@ -743,7 +743,7 @@ def patch_rom(world, player, rom, enemized): prizes = [prize_replacements.get(prize, prize) for prize in prizes] dig_prizes = [prize_replacements.get(prize, prize) for prize in dig_prizes] - if world.retro: + if world.retro[player]: prize_replacements = {0xE1: 0xDA, #5 Arrows -> Blue Rupee 0xE2: 0xDB} #10 Arrows -> Red Rupee prizes = [prize_replacements.get(prize, prize) for prize in prizes] @@ -786,7 +786,7 @@ def patch_rom(world, player, rom, enemized): 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees 0x51, 0x06, 0x52, 0xFF, # 6 +5 bomb upgrades -> +10 bomb upgrade 0x53, 0x06, 0x54, 0xFF, # 6 +5 arrow upgrades -> +10 arrow upgrade - 0x58, 0x01, 0x36 if world.retro else 0x43, 0xFF, # silver arrows -> single arrow (red 20 in retro mode) + 0x58, 0x01, 0x36 if world.retro[player] else 0x43, 0xFF, # silver arrows -> single arrow (red 20 in retro mode) 0x3E, difficulty.boss_heart_container_limit, 0x47, 0xff, # boss heart -> green 20 0x17, difficulty.heart_piece_limit, 0x47, 0xff, # piece of heart -> green 20 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel @@ -1001,15 +1001,15 @@ def patch_rom(world, player, rom, enemized): write_int16(rom, 0x18017A, get_reveal_bytes('Green Pendant') if world.mapshuffle[player] else 0x0000) # Sahasrahla reveal write_int16(rom, 0x18017C, get_reveal_bytes('Crystal 5')|get_reveal_bytes('Crystal 6') if world.mapshuffle[player] else 0x0000) # Bomb Shop Reveal - rom.write_byte(0x180172, 0x01 if world.retro else 0x00) # universal keys - rom.write_byte(0x180175, 0x01 if world.retro else 0x00) # rupee bow - rom.write_byte(0x180176, 0x0A if world.retro else 0x00) # wood arrow cost - rom.write_byte(0x180178, 0x32 if world.retro else 0x00) # silver arrow cost - rom.write_byte(0x301FC, 0xDA if world.retro else 0xE1) # rupees replace arrows under pots - rom.write_byte(0x30052, 0xDB if world.retro else 0xE2) # replace arrows in fish prize from bottle merchant - rom.write_bytes(0xECB4E, [0xA9, 0x00, 0xEA, 0xEA] if world.retro else [0xAF, 0x77, 0xF3, 0x7E]) # Thief steals rupees instead of arrows - rom.write_bytes(0xF0D96, [0xA9, 0x00, 0xEA, 0xEA] if world.retro else [0xAF, 0x77, 0xF3, 0x7E]) # Pikit steals rupees instead of arrows - rom.write_bytes(0xEDA5, [0x35, 0x41] if world.retro else [0x43, 0x44]) # Chest game gives rupees instead of arrows + rom.write_byte(0x180172, 0x01 if world.retro[player] else 0x00) # universal keys + rom.write_byte(0x180175, 0x01 if world.retro[player] else 0x00) # rupee bow + rom.write_byte(0x180176, 0x0A if world.retro[player] else 0x00) # wood arrow cost + rom.write_byte(0x180178, 0x32 if world.retro[player] else 0x00) # silver arrow cost + rom.write_byte(0x301FC, 0xDA if world.retro[player] else 0xE1) # rupees replace arrows under pots + rom.write_byte(0x30052, 0xDB if world.retro[player] else 0xE2) # replace arrows in fish prize from bottle merchant + rom.write_bytes(0xECB4E, [0xA9, 0x00, 0xEA, 0xEA] if world.retro[player] else [0xAF, 0x77, 0xF3, 0x7E]) # Thief steals rupees instead of arrows + rom.write_bytes(0xF0D96, [0xA9, 0x00, 0xEA, 0xEA] if world.retro[player] else [0xAF, 0x77, 0xF3, 0x7E]) # Pikit steals rupees instead of arrows + rom.write_bytes(0xEDA5, [0x35, 0x41] if world.retro[player] else [0x43, 0x44]) # Chest game gives rupees instead of arrows digging_game_rng = random.randint(1, 30) # set rng for digging game rom.write_byte(0x180020, digging_game_rng) rom.write_byte(0xEFD95, digging_game_rng) From 642bf65843aad48edd6003ad26a134d60322f9aa Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 00:19:47 +0100 Subject: [PATCH 106/185] Skip the sewers door key check in standard retro since we cannot access the shop yet --- Rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rules.py b/Rules.py index 052865ce..a22a81c7 100644 --- a/Rules.py +++ b/Rules.py @@ -146,7 +146,7 @@ def global_rules(world, player): set_rule(world.get_location('Hookshot Cave - Bottom Right', player), lambda state: state.has('Hookshot', player) or state.has('Pegasus Boots', player)) set_rule(world.get_location('Hookshot Cave - Bottom Left', player), lambda state: state.has('Hookshot', player)) - set_rule(world.get_entrance('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player)) + set_rule(world.get_entrance('Sewers Door', player), lambda state: state.has_key('Small Key (Escape)', player) or (world.retro[player] and world.mode[player] == 'standard')) # standard retro cannot access the shop set_rule(world.get_entrance('Sewers Back Door', player), lambda state: state.has_key('Small Key (Escape)', player)) set_rule(world.get_entrance('Agahnim 1', player), lambda state: state.has_sword(player) and state.has_key('Small Key (Agahnims Tower)', player, 2)) set_defeat_dungeon_boss_rule(world.get_location('Agahnim 1', player)) From d9281adc079c0965ad298babec15d5e168b78882 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 12:14:29 +0100 Subject: [PATCH 107/185] Individual settings: accessibility --- BaseClasses.py | 2 +- EntranceRandomizer.py | 2 +- Fill.py | 12 +++++------- Main.py | 4 ++-- Rules.py | 24 ++++++++++++------------ 5 files changed, 21 insertions(+), 23 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 205aee99..5761c9fc 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -50,7 +50,7 @@ class World(object): self.lock_aga_door_in_escape = False self.fix_trock_doors = {player: self.shuffle[player] != 'vanilla' or self.mode[player] == 'inverted' for player in range(1, players + 1)} self.save_and_quit_from_boss = True - self.accessibility = accessibility + self.accessibility = accessibility.copy() self.fix_skullwoods_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} self.fix_palaceofdarkness_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} self.fix_trock_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index a423cae1..883a90cf 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -281,7 +281,7 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', - 'retro']: + 'retro', 'accessibility']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Fill.py b/Fill.py index 1ee3d859..a27aadc4 100644 --- a/Fill.py +++ b/Fill.py @@ -179,14 +179,12 @@ def fill_restrictive(world, base_state, locations, itempool, single_player_place items_to_place = [[itempool.remove(items[-1]), items.pop()][-1] for items in player_items.values() if items] maximum_exploration_state = sweep_from_pool() - - perform_access_check = True - if world.accessibility == 'none' and not single_player_placement: - perform_access_check = not world.has_beaten_game(maximum_exploration_state) + has_beaten_game = world.has_beaten_game(maximum_exploration_state) for item_to_place in items_to_place: - if single_player_placement and world.accessibility == 'none': - perform_access_check = not world.has_beaten_game(maximum_exploration_state, item_to_place.player) + perform_access_check = True + if world.accessibility[item_to_place.player] == 'none': + perform_access_check = not world.has_beaten_game(maximum_exploration_state, item_to_place.player) if single_player_placement else not has_beaten_game spot_to_fill = None for location in locations: @@ -199,7 +197,7 @@ def fill_restrictive(world, base_state, locations, itempool, single_player_place # we filled all reachable spots. Maybe the game can be beaten anyway? unplaced_items.insert(0, item_to_place) if world.can_beat_game(): - if world.accessibility != 'none': + if world.accessibility[item_to_place.player] != 'none': logging.getLogger('').warning('Not all items placed. Game beatable anyway. (Could not place %s)' % item_to_place) continue raise FillError('No more spots to place %s' % item_to_place) diff --git a/Main.py b/Main.py index 876f6912..8157c39c 100644 --- a/Main.py +++ b/Main.py @@ -330,7 +330,7 @@ def create_playthrough(world): world = copy_world(world) # if we only check for beatable, we can do this sanity check first before writing down spheres - if world.accessibility == 'none' and not world.can_beat_game(): + if not world.can_beat_game(): raise RuntimeError('Cannot beat game. Something went terribly wrong here!') # get locations containing progress items @@ -360,7 +360,7 @@ def create_playthrough(world): logging.getLogger('').debug('Calculated sphere %i, containing %i of %i progress items.', len(collection_spheres), len(sphere), len(prog_locations)) if not sphere: logging.getLogger('').debug('The following items could not be reached: %s', ['%s (Player %d) at %s (Player %d)' % (location.item.name, location.item.player, location.name, location.player) for location in sphere_candidates]) - if not world.accessibility == 'none': + if any([world.accessibility[location.item.player] != 'none' for location in sphere_candidates]): raise RuntimeError('Not all progression items reachable. Something went terribly wrong here.') else: break diff --git a/Rules.py b/Rules.py index a22a81c7..0950f393 100644 --- a/Rules.py +++ b/Rules.py @@ -173,7 +173,7 @@ def global_rules(world, player): set_rule(world.get_entrance('Tower of Hera Big Key Door', player), lambda state: state.has('Big Key (Tower of Hera)', player)) set_rule(world.get_location('Tower of Hera - Big Chest', player), lambda state: state.has('Big Key (Tower of Hera)', player)) set_rule(world.get_location('Tower of Hera - Big Key Chest', player), lambda state: state.has_fire_source(player)) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Tower of Hera - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Tower of Hera)' and item.player == player) set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Tower of Hera - Prize', player)) @@ -186,7 +186,7 @@ def global_rules(world, player): set_rule(world.get_entrance('Swamp Palace Small Key Door', player), lambda state: state.has_key('Small Key (Swamp Palace)', player)) set_rule(world.get_entrance('Swamp Palace (Center)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_location('Swamp Palace - Big Chest', player), lambda state: state.has('Big Key (Swamp Palace)', player) or item_name(state, 'Swamp Palace - Big Chest', player) == ('Big Key (Swamp Palace)', player)) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Swamp Palace - Big Chest', player), lambda state, item: item.name == 'Big Key (Swamp Palace)' and item.player == player) set_rule(world.get_entrance('Swamp Palace (North)', player), lambda state: state.has('Hookshot', player)) set_defeat_dungeon_boss_rule(world.get_location('Swamp Palace - Boss', player)) @@ -199,7 +199,7 @@ def global_rules(world, player): set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Boss', player)) set_defeat_dungeon_boss_rule(world.get_location('Thieves\' Town - Prize', player)) set_rule(world.get_location('Thieves\' Town - Big Chest', player), lambda state: (state.has_key('Small Key (Thieves Town)', player) or item_name(state, 'Thieves\' Town - Big Chest', player) == ('Small Key (Thieves Town)', player)) and state.has('Hammer', player)) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Thieves\' Town - Big Chest', player), lambda state, item: item.name == 'Small Key (Thieves Town)' and item.player == player and state.has('Hammer', player)) set_rule(world.get_location('Thieves\' Town - Attic', player), lambda state: state.has_key('Small Key (Thieves Town)', player)) for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves\' Town - Boss']: @@ -212,7 +212,7 @@ def global_rules(world, player): set_rule(world.get_entrance('Skull Woods First Section West Door', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) # ideally would only be one key, but we may have spent thst key already on escaping the right section set_rule(world.get_entrance('Skull Woods First Section (Left) Door to Exit', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 2)) set_rule(world.get_location('Skull Woods - Big Chest', player), lambda state: state.has('Big Key (Skull Woods)', player) or item_name(state, 'Skull Woods - Big Chest', player) == ('Big Key (Skull Woods)', player)) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Skull Woods - Big Chest', player), lambda state, item: item.name == 'Big Key (Skull Woods)' and item.player == player) set_rule(world.get_entrance('Skull Woods Torch Room', player), lambda state: state.has_key('Small Key (Skull Woods)', player, 3) and state.has('Fire Rod', player) and state.has_sword(player)) # sword required for curtain set_defeat_dungeon_boss_rule(world.get_location('Skull Woods - Boss', player)) @@ -277,13 +277,13 @@ def global_rules(world, player): set_rule(world.get_location('Palace of Darkness - Big Chest', player), lambda state: state.has('Big Key (Palace of Darkness)', player)) set_rule(world.get_entrance('Palace of Darkness Big Key Chest Staircase', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Big Key Chest', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 3))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Palace of Darkness - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) else: forbid_item(world.get_location('Palace of Darkness - Big Key Chest', player), 'Small Key (Palace of Darkness)', player) set_rule(world.get_entrance('Palace of Darkness Spike Statue Room Door', player), lambda state: state.has_key('Small Key (Palace of Darkness)', player, 6) or (item_name(state, 'Palace of Darkness - Harmless Hellway', player) in [('Small Key (Palace of Darkness)', player)] and state.has_key('Small Key (Palace of Darkness)', player, 4))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Palace of Darkness - Harmless Hellway', player), lambda state, item: item.name == 'Small Key (Palace of Darkness)' and item.player == player and state.has_key('Small Key (Palace of Darkness)', player, 5)) else: forbid_item(world.get_location('Palace of Darkness - Harmless Hellway', player), 'Small Key (Palace of Darkness)', player) @@ -301,7 +301,7 @@ def global_rules(world, player): set_rule(world.get_entrance('Ganons Tower (Hookshot Room)', player), lambda state: state.has('Hammer', player)) set_rule(world.get_entrance('Ganons Tower (Map Room)', player), lambda state: state.has_key('Small Key (Ganons Tower)', player, 4) or (item_name(state, 'Ganons Tower - Map Chest', player) in [('Big Key (Ganons Tower)', player), ('Small Key (Ganons Tower)', player)] and state.has_key('Small Key (Ganons Tower)', player, 3))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Ganons Tower - Map Chest', player), lambda state, item: item.name == 'Small Key (Ganons Tower)' and item.player == player and state.has_key('Small Key (Ganons Tower)', player, 3)) else: forbid_item(world.get_location('Ganons Tower - Map Chest', player), 'Small Key (Ganons Tower)', player) @@ -770,13 +770,13 @@ def set_trock_key_rules(world, player): # might open all the locked doors in any order so we need maximally restrictive rules. if can_reach_back: set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) elif can_reach_front and can_reach_middle: set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) @@ -787,7 +787,7 @@ def set_trock_key_rules(world, player): set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (North)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2)) set_rule(world.get_entrance('Turtle Rock Pokey Room', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 1)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player and state.has_key('Small Key (Turtle Rock)', player, 2)) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) @@ -797,7 +797,7 @@ def set_trock_key_rules(world, player): elif can_reach_big_chest: set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) @@ -809,7 +809,7 @@ def set_trock_key_rules(world, player): else: set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) - if world.accessibility != 'locations': + if world.accessibility[player] != 'locations': set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', 'Turtle Rock - Eye Bridge - Top Left', From 8a5eef11ce0d64ceb8816e3d0892d45bac1a84bf Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 12:22:55 +0100 Subject: [PATCH 108/185] Individual settings: hints --- BaseClasses.py | 3 ++- EntranceRandomizer.py | 2 +- Main.py | 2 +- Rom.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 5761c9fc..4658a3a7 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -75,7 +75,7 @@ class World(object): self.fix_fake_world = True self.boss_shuffle = boss_shuffle self.escape_assist = {player: [] for player in range(1, players + 1)} - self.hints = hints + self.hints = hints.copy() self.crystals_needed_for_ganon = {} self.crystals_needed_for_gt = {} self.open_pyramid = {player: False for player in range(1, players + 1)} @@ -1101,6 +1101,7 @@ class Spoiler(object): outfile.write('Compass shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['compassshuffle'].items()}) outfile.write('Small Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['keyshuffle'].items()}) outfile.write('Big Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['bigkeyshuffle'].items()}) + outfile.write('Hints: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['hints'].items()}) outfile.write('Players: %d' % self.world.players) if self.entrances: outfile.write('\n\nEntrances:\n\n') diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 883a90cf..5840be89 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -281,7 +281,7 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', - 'retro', 'accessibility']: + 'retro', 'accessibility', 'hints']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Main.py b/Main.py index 8157c39c..6808577e 100644 --- a/Main.py +++ b/Main.py @@ -193,7 +193,7 @@ def main(args, seed=None): world.shuffle[player], world.algorithm, mcsb_name, "-retro" if world.retro[player] else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", - "-nohints" if not world.hints else "")) if not args.outputname else '' + "-nohints" if not world.hints[player] else "")) if not args.outputname else '' rom.write_to_file(output_path(f'{outfilebase}{outfilesuffix}.sfc')) with open(output_path('%s_multidata' % outfilebase), 'wb') as f: diff --git a/Rom.py b/Rom.py index d49be486..99362f96 100644 --- a/Rom.py +++ b/Rom.py @@ -1364,7 +1364,7 @@ def write_strings(rom, world, player): return hint # For hints, first we write hints about entrances, some from the inconvenient list others from all reasonable entrances. - if world.hints: + if world.hints[player]: tt['sign_north_of_links_house'] = '> Randomizer The telepathic tiles can have hints!' hint_locations = HintLocations.copy() random.shuffle(hint_locations) From 1ecb5fe40b0d8ce4b1058dbca84d1710715aa44e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 15:55:53 +0100 Subject: [PATCH 109/185] Individual settings: shufflebosses shuffleenemies enemy_health enemy_damage --- BaseClasses.py | 18 ++++++++++++++---- Bosses.py | 8 ++++---- EntranceRandomizer.py | 3 ++- Main.py | 21 +++++++++++++++------ Plando.py | 2 +- Rom.py | 20 ++++++++++---------- 6 files changed, 46 insertions(+), 26 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 4658a3a7..c66035a3 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -8,7 +8,7 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, retro, custom, customitemarray, boss_shuffle, hints): + def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, retro, custom, customitemarray, hints): self.players = players self.shuffle = shuffle.copy() self.logic = logic.copy() @@ -73,7 +73,10 @@ class World(object): self.can_take_damage = True self.difficulty_requirements = {player: None for player in range(1, players + 1)} self.fix_fake_world = True - self.boss_shuffle = boss_shuffle + self.boss_shuffle = {player: 'none' for player in range(1, players + 1)} + self.enemy_shuffle = {player: 'none' for player in range(1, players + 1)} + self.enemy_health = {player: 'default' for player in range(1, players + 1)} + self.enemy_damage = {player: 'default' for player in range(1, players + 1)} self.escape_assist = {player: [] for player in range(1, players + 1)} self.hints = hints.copy() self.crystals_needed_for_ganon = {} @@ -1059,6 +1062,10 @@ class Spoiler(object): 'compassshuffle': self.world.compassshuffle, 'keyshuffle': self.world.keyshuffle, 'bigkeyshuffle': self.world.bigkeyshuffle, + 'boss_shuffle': self.world.boss_shuffle, + 'enemy_shuffle': self.world.enemy_shuffle, + 'enemy_health': self.world.enemy_health, + 'enemy_damage': self.world.enemy_damage, 'players': self.world.players } @@ -1072,8 +1079,7 @@ class Spoiler(object): out['Shops'] = self.shops out['playthrough'] = self.playthrough out['paths'] = self.paths - if self.world.boss_shuffle != 'none': - out['Bosses'] = self.bosses + out['Bosses'] = self.bosses out['meta'] = self.metadata return json.dumps(out) @@ -1101,6 +1107,10 @@ class Spoiler(object): outfile.write('Compass shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['compassshuffle'].items()}) outfile.write('Small Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['keyshuffle'].items()}) outfile.write('Big Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['bigkeyshuffle'].items()}) + outfile.write('Boss shuffle: %s\n' % self.metadata['boss_shuffle']) + outfile.write('Enemy shuffle: %s\n' % self.metadata['enemy_shuffle']) + outfile.write('Enemy health: %s\n' % self.metadata['enemy_health']) + outfile.write('Enemy damage: %s\n' % self.metadata['enemy_damage']) outfile.write('Hints: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['hints'].items()}) outfile.write('Players: %d' % self.world.players) if self.entrances: diff --git a/Bosses.py b/Bosses.py index ff9d0be4..8d5f6a64 100644 --- a/Bosses.py +++ b/Bosses.py @@ -138,7 +138,7 @@ def can_place_boss(world, player, boss, dungeon_name, level=None): return True def place_bosses(world, player): - if world.boss_shuffle == 'none': + if world.boss_shuffle[player] == 'none': return # Most to least restrictive order if world.mode[player] != 'inverted': @@ -177,7 +177,7 @@ def place_bosses(world, player): all_bosses = sorted(boss_table.keys()) #s orted to be deterministic on older pythons placeable_bosses = [boss for boss in all_bosses if boss not in ['Agahnim', 'Agahnim2', 'Ganon']] - if world.boss_shuffle in ["basic", "normal"]: + if world.boss_shuffle[player] in ["basic", "normal"]: # temporary hack for swordless kholdstare: if world.swords[player] == 'swordless': world.get_dungeon('Ice Palace', player).boss = BossFactory('Kholdstare', player) @@ -185,7 +185,7 @@ def place_bosses(world, player): boss_locations.remove(['Ice Palace', None]) placeable_bosses.remove('Kholdstare') - if world.boss_shuffle == "basic": # vanilla bosses shuffled + if world.boss_shuffle[player] == "basic": # vanilla bosses shuffled bosses = placeable_bosses + ['Armos Knights', 'Lanmolas', 'Moldorm'] else: # all bosses present, the three duplicates chosen at random bosses = all_bosses + [random.choice(placeable_bosses) for _ in range(3)] @@ -202,7 +202,7 @@ def place_bosses(world, player): logging.getLogger('').debug('Placing boss %s at %s', boss, loc_text) world.get_dungeon(loc, player).bosses[level] = BossFactory(boss, player) - elif world.boss_shuffle == "chaos": #all bosses chosen at random + elif world.boss_shuffle[player] == "chaos": #all bosses chosen at random for [loc, level] in boss_locations: loc_text = loc + (' ('+level+')' if level else '') try: diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 5840be89..f7b6ec22 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -281,7 +281,8 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', - 'retro', 'accessibility', 'hints']: + 'retro', 'accessibility', 'hints', + 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Main.py b/Main.py index 6808577e..c512bed4 100644 --- a/Main.py +++ b/Main.py @@ -25,7 +25,7 @@ def main(args, seed=None): start = time.process_time() # initialize the world - world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.retro, args.custom, args.customitemarray, args.shufflebosses, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.retro, args.custom, args.customitemarray, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -41,6 +41,10 @@ def main(args, seed=None): 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.open_pyramid = args.openpyramid.copy() + world.boss_shuffle = args.shufflebosses.copy() + world.enemy_shuffle = args.shuffleenemies.copy() + world.enemy_health = args.enemy_health.copy() + world.enemy_damage = args.enemy_damage.copy() world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} @@ -49,7 +53,7 @@ def main(args, seed=None): for player in range(1, world.players + 1): world.difficulty_requirements[player] = difficulties[world.difficulty[player]] - if world.mode[player] == 'standard' and (args.shuffleenemies != 'none' or args.enemy_health not in ['default', 'easy']): + if world.mode[player] == 'standard' and (world.enemy_shuffle[player] != 'none' or world.enemy_health[player] not in ['default', 'easy']): world.escape_assist[player].append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it if world.mode[player] != 'inverted': @@ -128,8 +132,6 @@ def main(args, seed=None): player_names = parse_names_string(args.names) outfilebase = 'ER_%s' % (args.outputname if args.outputname else world.seed) - use_enemizer = args.enemizercli and (args.shufflebosses != 'none' or args.shuffleenemies != 'none' or args.enemy_health != 'default' or args.enemy_health != 'default' or args.enemy_damage or args.shufflepalette or args.shufflepots) - jsonout = {} if not args.suppress_rom: from MultiServer import MultiWorld @@ -137,6 +139,9 @@ def main(args, seed=None): multidata.players = world.players for player in range(1, world.players + 1): + 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.shufflepalette or args.shufflepots) local_rom = None if args.jsonout: @@ -151,7 +156,7 @@ def main(args, seed=None): enemizer_patch = [] if use_enemizer: - enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shuffleenemies, args.enemy_health, args.enemy_damage, args.shufflepalette, args.shufflepots) + enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepalette, args.shufflepots) multidata.rom_names[player] = list(rom.name) for location in world.get_filled_locations(player): @@ -218,7 +223,7 @@ def main(args, seed=None): def copy_world(world): # ToDo: Not good yet - ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.retro, world.custom, world.customitemarray, world.boss_shuffle, world.hints) + ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.retro, world.custom, world.customitemarray, world.hints) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() @@ -245,6 +250,10 @@ def copy_world(world): ret.crystals_needed_for_ganon = world.crystals_needed_for_ganon.copy() ret.crystals_needed_for_gt = world.crystals_needed_for_gt.copy() ret.open_pyramid = world.open_pyramid.copy() + ret.boss_shuffle = world.boss_shuffle.copy() + ret.enemy_shuffle = world.enemy_shuffle.copy() + ret.enemy_health = world.enemy_health.copy() + ret.enemy_damage = world.enemy_damage.copy() for player in range(1, world.players + 1): if world.mode[player] != 'inverted': diff --git a/Plando.py b/Plando.py index 0a88cf4a..3011a023 100755 --- a/Plando.py +++ b/Plando.py @@ -23,7 +23,7 @@ def main(args): start_time = time.process_time() # initialize the world - world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, False, None, 'none', False) + world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, False, None, False) logger = logging.getLogger('') hasher = hashlib.md5() diff --git a/Rom.py b/Rom.py index 99362f96..5b911a18 100644 --- a/Rom.py +++ b/Rom.py @@ -161,7 +161,7 @@ def read_rom(stream): buffer = buffer[0x200:] return buffer -def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleenemies, enemy_health, enemy_damage, shufflepalette, shufflepots): +def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepalette, shufflepots): baserom_path = os.path.abspath(baserom_path) basepatch_path = os.path.abspath(local_path('data/base2current.json')) randopatch_path = os.path.abspath(output_path('enemizer_randopatch.json')) @@ -170,16 +170,16 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleene # write options file for enemizer options = { - 'RandomizeEnemies': shuffleenemies != 'none', + 'RandomizeEnemies': world.enemy_shuffle[player] != 'none', 'RandomizeEnemiesType': 3, - 'RandomizeBushEnemyChance': shuffleenemies == 'chaos', - 'RandomizeEnemyHealthRange': enemy_health != 'default', - 'RandomizeEnemyHealthType': {'default': 0, 'easy': 0, 'normal': 1, 'hard': 2, 'expert': 3}[enemy_health], + 'RandomizeBushEnemyChance': world.enemy_shuffle[player] == 'chaos', + 'RandomizeEnemyHealthRange': world.enemy_health[player] != 'default', + 'RandomizeEnemyHealthType': {'default': 0, 'easy': 0, 'normal': 1, 'hard': 2, 'expert': 3}[world.enemy_health[player]], 'OHKO': False, - 'RandomizeEnemyDamage': enemy_damage != 'default', + 'RandomizeEnemyDamage': world.enemy_damage[player] != 'default', 'AllowEnemyZeroDamage': True, - 'ShuffleEnemyDamageGroups': enemy_damage != 'default', - 'EnemyDamageChaosMode': enemy_damage == 'chaos', + 'ShuffleEnemyDamageGroups': world.enemy_damage[player] != 'default', + 'EnemyDamageChaosMode': world.enemy_damage[player] == 'chaos', 'EasyModeEscape': False, 'EnemiesAbsorbable': False, 'AbsorbableSpawnRate': 10, @@ -218,9 +218,9 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shuffleene 'SwordGraphics': "sword_gfx/normal.gfx", 'BeeMizer': False, 'BeesLevel': 0, - 'RandomizeTileTrapPattern': shuffleenemies == 'chaos', + 'RandomizeTileTrapPattern': world.enemy_shuffle[player] == 'chaos', 'RandomizeTileTrapFloorTile': False, - 'AllowKillableThief': bool(random.randint(0,1)) if shuffleenemies == 'chaos' else shuffleenemies != 'none', + 'AllowKillableThief': bool(random.randint(0,1)) if world.enemy_shuffle[player] == 'chaos' else world.enemy_shuffle[player] != 'none', 'RandomizeSpriteOnHit': False, 'DebugMode': False, 'DebugForceEnemy': False, From a24fe1f3bfe6404dc51ba29f74b1048fa7cd2358 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 21:09:33 +0100 Subject: [PATCH 110/185] World.__init__: group player attributes to remove some redundancy --- BaseClasses.py | 52 +++++++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index c66035a3..3d9d7b14 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -27,19 +27,12 @@ class World(object): self.seed = None self.precollected_items = [] self.state = CollectionState(self) - self.required_medallions = dict([(player, ['Ether', 'Quake']) for player in range(1, players + 1)]) self._cached_entrances = None self._cached_locations = None - self._region_cache = {player: {} for player in range(1, players + 1)} self._entrance_cache = {} self._location_cache = {} self.required_locations = [] self.shuffle_bonk_prizes = False - self.swamp_patch_required = {player: False for player in range(1, players + 1)} - self.powder_patch_required = {player: False for player in range(1, players + 1)} - self.ganon_at_pyramid = {player: True for player in range(1, players + 1)} - self.ganonstower_vanilla = {player: True for player in range(1, players + 1)} - self.sewer_light_cone = {player: mode[player] == 'standard' for player in range(1, players + 1)} self.light_world_light_cone = False self.dark_world_light_cone = False self.treasure_hunt_count = 0 @@ -48,12 +41,8 @@ class World(object): self.rupoor_cost = 10 self.aga_randomness = True self.lock_aga_door_in_escape = False - self.fix_trock_doors = {player: self.shuffle[player] != 'vanilla' or self.mode[player] == 'inverted' for player in range(1, players + 1)} self.save_and_quit_from_boss = True self.accessibility = accessibility.copy() - self.fix_skullwoods_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} - self.fix_palaceofdarkness_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} - self.fix_trock_exit = {player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'] for player in range(1, players + 1)} self.shuffle_ganon = shuffle_ganon self.fix_gtower_exit = self.shuffle_ganon self.can_access_trock_eyebridge = None @@ -63,30 +52,45 @@ class World(object): self.quickswap = quickswap self.fastmenu = fastmenu self.disable_music = disable_music - self.mapshuffle = {player: False for player in range(1, players + 1)} - self.compassshuffle = {player: False for player in range(1, players + 1)} - self.keyshuffle = {player: False for player in range(1, players + 1)} - self.bigkeyshuffle = {player: False for player in range(1, players + 1)} self.retro = retro.copy() self.custom = custom self.customitemarray = customitemarray self.can_take_damage = True - self.difficulty_requirements = {player: None for player in range(1, players + 1)} self.fix_fake_world = True - self.boss_shuffle = {player: 'none' for player in range(1, players + 1)} - self.enemy_shuffle = {player: 'none' for player in range(1, players + 1)} - self.enemy_health = {player: 'default' for player in range(1, players + 1)} - self.enemy_damage = {player: 'default' for player in range(1, players + 1)} - self.escape_assist = {player: [] for player in range(1, players + 1)} self.hints = hints.copy() - self.crystals_needed_for_ganon = {} - self.crystals_needed_for_gt = {} - self.open_pyramid = {player: False for player in range(1, players + 1)} self.dynamic_regions = [] self.dynamic_locations = [] self.spoiler = Spoiler(self) self.lamps_needed_for_dark_rooms = 1 + for player in range(1, players + 1): + def set_player_attr(attr, val): + self.__dict__.setdefault(attr, {})[player] = val + set_player_attr('_region_cache', {}) + set_player_attr('required_medallions', ['Ether', 'Quake']) + set_player_attr('swamp_patch_required', False) + set_player_attr('powder_patch_required', False) + set_player_attr('ganon_at_pyramid', True) + set_player_attr('ganonstower_vanilla', True) + set_player_attr('sewer_light_cone', self.mode[player] == 'standard') + set_player_attr('fix_trock_doors', self.shuffle[player] != 'vanilla' or self.mode[player] == 'inverted') + set_player_attr('fix_skullwoods_exit', self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple']) + set_player_attr('fix_palaceofdarkness_exit', self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple']) + set_player_attr('fix_trock_exit', self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple']) + set_player_attr('mapshuffle', False) + set_player_attr('compassshuffle', False) + set_player_attr('keyshuffle', False) + set_player_attr('bigkeyshuffle', False) + set_player_attr('difficulty_requirements', None) + set_player_attr('boss_shuffle', 'none') + set_player_attr('enemy_shuffle', 'none') + set_player_attr('enemy_health', 'default') + set_player_attr('enemy_damage', 'default') + set_player_attr('escape_assist', []) + set_player_attr('crystals_needed_for_ganon', 7) + set_player_attr('crystals_needed_for_gt', 7) + set_player_attr('open_pyramid', False) + def initialize_regions(self, regions=None): for region in regions if regions else self.regions: region.world = self From 36bdb5f487bec8a93c30e1f9b6fb4087293de55b Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 21:12:05 +0100 Subject: [PATCH 111/185] Spoiler: reorder some settings for visibility --- BaseClasses.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 3d9d7b14..9416210c 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -1092,6 +1092,8 @@ class Spoiler(object): self.parse_data() with open(filename, 'w') as outfile: outfile.write('ALttP Entrance Randomizer Version %s - Seed: %s\n\n' % (self.metadata['version'], self.world.seed)) + outfile.write('Players: %d\n' % self.world.players) + outfile.write('Filling Algorithm: %s\n' % self.world.algorithm) outfile.write('Logic: %s\n' % self.metadata['logic']) outfile.write('Mode: %s\n' % self.metadata['mode']) outfile.write('Retro: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['retro'].items()}) @@ -1103,10 +1105,7 @@ class Spoiler(object): outfile.write('Crystals required for GT: %s\n' % self.metadata['gt_crystals']) outfile.write('Crystals required for Ganon: %s\n' % self.metadata['ganon_crystals']) outfile.write('Pyramid hole pre-opened: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['open_pyramid'].items()}) - outfile.write('Filling Algorithm: %s\n' % self.world.algorithm) outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) - outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) - outfile.write('Menu speed: %s\n' % self.world.fastmenu) outfile.write('Map shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['mapshuffle'].items()}) outfile.write('Compass shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['compassshuffle'].items()}) outfile.write('Small Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['keyshuffle'].items()}) @@ -1116,7 +1115,8 @@ class Spoiler(object): outfile.write('Enemy health: %s\n' % self.metadata['enemy_health']) outfile.write('Enemy damage: %s\n' % self.metadata['enemy_damage']) outfile.write('Hints: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['hints'].items()}) - outfile.write('Players: %d' % self.world.players) + outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) + outfile.write('Menu speed: %s' % self.world.fastmenu) if self.entrances: outfile.write('\n\nEntrances:\n\n') outfile.write('\n'.join(['%s%s %s %s' % ('Player {0}: '.format(entry['player']) if self.world.players >1 else '', entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) From 3d4142bee4410ab3caa379640de47be7c362fe04 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 21:14:20 +0100 Subject: [PATCH 112/185] Gui: properly instantiate the Namespace object and fix default player settings --- Gui.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gui.py b/Gui.py index 749f072b..f50c41d9 100755 --- a/Gui.py +++ b/Gui.py @@ -372,7 +372,7 @@ def guiMain(args=None): countSpinbox = Spinbox(bottomFrame, from_=1, to=100, width=5, textvariable=countVar) def generateRom(): - guiargs = Namespace + guiargs = Namespace() guiargs.multi = int(worldVar.get()) guiargs.names = namesVar.get() guiargs.seed = int(seedVar.get()) if seedVar.get() else None @@ -428,6 +428,8 @@ def guiMain(args=None): for k,v in vars(parse_arguments([])).items(): if k not in vars(guiargs): setattr(guiargs, k, v) + elif type(v) is dict: # use same settings for every player + setattr(guiargs, k, {player: getattr(guiargs, k) for player in range(1, guiargs.multi + 1)}) try: if guiargs.count is not None: seed = guiargs.seed @@ -548,7 +550,7 @@ def guiMain(args=None): bottomFrame2 = Frame(topFrame2) def adjustRom(): - guiargs = Namespace + guiargs = Namespace() guiargs.heartbeep = heartbeepVar.get() guiargs.heartcolor = heartcolorVar.get() guiargs.fastmenu = fastMenuVar.get() From c2fabc9f8a38a69163e18fb06c523d722d143e81 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 22:36:23 +0100 Subject: [PATCH 113/185] Fix player id/name not showing up in rom name --- Main.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Main.py b/Main.py index c512bed4..1177973b 100644 --- a/Main.py +++ b/Main.py @@ -190,16 +190,15 @@ def main(args, seed=None): 'M' if world.mapshuffle[player] else '', 'C' if world.compassshuffle[player] else '', 'S' if world.keyshuffle[player] else '', 'B' if world.bigkeyshuffle[player] else '') - outfilesuffix = ('%s%s_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (f'_P{player}' if world.players > 1 else '', - f'_{player_names[player]}' if player in player_names else '', - world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], + playername = f"{f'_P{player}' if world.players > 1 else ''}{f'_{player_names[player]}' if player in player_names else ''}" + outfilesuffix = ('_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], world.mode[player], world.goal[player], "" if world.timer in ['none', 'display'] else "-" + world.timer, world.shuffle[player], world.algorithm, mcsb_name, "-retro" if world.retro[player] else "", "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", "-nohints" if not world.hints[player] else "")) if not args.outputname else '' - rom.write_to_file(output_path(f'{outfilebase}{outfilesuffix}.sfc')) + rom.write_to_file(output_path(f'{outfilebase}{playername}{outfilesuffix}.sfc')) with open(output_path('%s_multidata' % outfilebase), 'wb') as f: pickle.dump(multidata, f, pickle.HIGHEST_PROTOCOL) From 8aad6b6055e39e512738e0cef593ef588494b69b Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 17 Dec 2019 22:41:19 +0100 Subject: [PATCH 114/185] Mystery support different weights per player and can now roll different settings for everyone --- Mystery.py | 195 +++++++++++++++++++++++++++++------------------------ 1 file changed, 107 insertions(+), 88 deletions(-) diff --git a/Mystery.py b/Mystery.py index b48d11b2..7d31571e 100644 --- a/Mystery.py +++ b/Mystery.py @@ -1,5 +1,4 @@ import argparse -import os import logging import random import urllib.request @@ -28,7 +27,12 @@ def parse_yaml(txt): def main(): parser = argparse.ArgumentParser() - parser.add_argument('--weights', help='Path to the weights file to use for rolling game settings, urls are also valid', required=True) + parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) + multiargs, _ = parser.parse_known_args() + + parser = argparse.ArgumentParser() + parser.add_argument('--weights', help='Path to the weights file to use for rolling game settings, urls are also valid') + parser.add_argument('--samesettings', help='Rolls settings per weights file rather than per player', action='store_true') parser.add_argument('--seed', help='Define seed number to generate.', type=int) parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--names', default='') @@ -36,40 +40,33 @@ def main(): parser.add_argument('--rom') parser.add_argument('--enemizercli') parser.add_argument('--outputpath') + for player in range(1, multiargs.multi + 1): + parser.add_argument(f'--p{player}', help=argparse.SUPPRESS) args = parser.parse_args() - try: - if urllib.parse.urlparse(args.weights).scheme: - yaml = str(urllib.request.urlopen(args.weights).read(), "utf-8") - else: - with open(args.weights, 'rb') as f: - yaml = str(f.read(), "utf-8") - except Exception as e: - print('Failed to read weights (%s)' % e) - return - - random.seed(args.seed) - weights = parse_yaml(yaml) - print(f"Weights: {args.weights} >> {weights['description']}") - - while not gen_mystery(args, weights): - pass - -def gen_mystery(args, weights): - seed = random.randint(0, 999999999) - seedname = f'M{random.randint(0, 999999999)}_{os.path.splitext(os.path.basename(args.weights))[0]}' + if args.seed is None: + random.seed(None) + seed = random.randint(0, 999999999) + else: + seed = args.seed + random.seed(seed) + seedname = f'M{random.randint(0, 999999999)}' print(f"Generating mystery for {args.multi} player{'s' if args.multi > 1 else ''}, {seedname} Seed {seed}") - choices = {} - def get_choice(option): - ret = random.choices(list(map(lambda s: s.strip('\''),weights[option].keys())), weights=list(map(int,weights[option].values())))[0] - choices[option] = ret - return ret + weights_cache = {} + if args.weights: + weights_cache[args.weights] = get_weights(args.weights) + print(f"Weights: {args.weights} >> {weights_cache[args.weights]['description']}") + for player in range(1, args.multi + 1): + path = getattr(args, f'p{player}') + if path: + if path not in weights_cache: + weights_cache[path] = get_weights(path) + print(f"P{player} Weights: {path} >> {weights_cache[path]['description']}") - erargs = argparse.Namespace + erargs = parse_arguments(['--multi', str(args.multi)]) erargs.seed = seed - erargs.multi = args.multi erargs.names = args.names erargs.create_spoiler = args.create_spoiler erargs.race = True @@ -80,106 +77,128 @@ def gen_mystery(args, weights): erargs.rom = args.rom erargs.enemizercli = args.enemizercli - logic = get_choice('glitches_required') - if logic not in ['none', 'no_logic']: + settings_cache = {k: (roll_settings(v) if args.samesettings else None) for k, v in weights_cache.items()} + + for player in range(1, args.multi + 1): + path = getattr(args, f'p{player}') if getattr(args, f'p{player}') else args.weights + if path: + settings = settings_cache[path] if settings_cache[path] else roll_settings(weights_cache[path]) + for k, v in vars(settings).items(): + getattr(erargs, k)[player] = v + else: + raise RuntimeError(f'No weights specified for player {player}') + + # set up logger + loglevel = {'error': logging.ERROR, 'info': logging.INFO, 'warning': logging.WARNING, 'debug': logging.DEBUG}[erargs.loglevel] + logging.basicConfig(format='%(message)s', level=loglevel) + + ERmain(erargs, seed) + +def get_weights(path): + try: + if urllib.parse.urlparse(path).scheme: + yaml = str(urllib.request.urlopen(path).read(), "utf-8") + else: + with open(path, 'rb') as f: + yaml = str(f.read(), "utf-8") + except Exception as e: + print('Failed to read weights (%s)' % e) + return + + return parse_yaml(yaml) + +def roll_settings(weights): + def get_choice(option): + return random.choices(list(weights[option].keys()), weights=list(map(int,weights[option].values())))[0].replace('"','').replace("'",'') + + ret = argparse.Namespace() + + glitches_required = get_choice('glitches_required') + if glitches_required not in ['none', 'no_logic']: print("Only NMG and No Logic supported") - return False - erargs.logic = {'none': 'noglitches', 'no_logic': 'nologic'}[logic] + glitches_required = 'none' + ret.logic = {'none': 'noglitches', 'no_logic': 'nologic'}[glitches_required] item_placement = get_choice('item_placement') # not supported in ER dungeon_items = get_choice('dungeon_items') if dungeon_items in ['mc', 'mcs', 'full']: - erargs.mapshuffle = True - erargs.compassshuffle = True + ret.mapshuffle = True + ret.compassshuffle = True if dungeon_items in ['mcs', 'full']: - erargs.keyshuffle = True + ret.keyshuffle = True if dungeon_items in ['full']: - erargs.bigkeyshuffle = True + ret.bigkeyshuffle = True accessibility = get_choice('accessibility') - erargs.accessibility = accessibility + ret.accessibility = accessibility entrance_shuffle = get_choice('entrance_shuffle') - erargs.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' + ret.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' goals = get_choice('goals') - erargs.goal = {'ganon': 'ganon', - 'fast_ganon': 'crystals', - 'dungeons': 'dungeons', - 'pedestal': 'pedestal', - 'triforce-hunt': 'triforce-hunt' - }[goals] + ret.goal = {'ganon': 'ganon', + 'fast_ganon': 'crystals', + 'dungeons': 'dungeons', + 'pedestal': 'pedestal', + 'triforce-hunt': 'triforce-hunt' + }[goals] if goals == 'fast_ganon' and entrance_shuffle == 'none': - erargs.openpyramid = True + ret.openpyramid = True tower_open = get_choice('tower_open') - erargs.crystals_gt = tower_open + ret.crystals_gt = tower_open ganon_open = get_choice('ganon_open') - erargs.crystals_ganon = ganon_open + ret.crystals_ganon = ganon_open world_state = get_choice('world_state') - erargs.mode = world_state + ret.mode = world_state if world_state == 'retro': - erargs.mode = 'open' - erargs.retro = True + ret.mode = 'open' + ret.retro = True hints = get_choice('hints') if hints == 'on': - erargs.hints = True + ret.hints = True weapons = get_choice('weapons') - erargs.swords = {'randomized': 'random', - 'assured': 'assured', - 'vanilla': 'vanilla', - 'swordless': 'swordless' - }[weapons] + ret.swords = {'randomized': 'random', + 'assured': 'assured', + 'vanilla': 'vanilla', + 'swordless': 'swordless' + }[weapons] item_pool = get_choice('item_pool') - erargs.difficulty = item_pool + ret.difficulty = item_pool item_functionality = get_choice('item_functionality') - erargs.item_functionality = item_functionality + ret.item_functionality = item_functionality boss_shuffle = get_choice('boss_shuffle') - erargs.shufflebosses = {'none': 'none', - 'simple': 'basic', - 'full': 'normal', - 'random': 'chaos' - }[boss_shuffle] + ret.shufflebosses = {'none': 'none', + 'simple': 'basic', + 'full': 'normal', + 'random': 'chaos' + }[boss_shuffle] enemy_shuffle = get_choice('enemy_shuffle') - erargs.shuffleenemies = {'none': 'none', - 'shuffled': 'shuffled', - 'random': 'chaos' - }[enemy_shuffle] + ret.shuffleenemies = {'none': 'none', + 'shuffled': 'shuffled', + 'random': 'chaos' + }[enemy_shuffle] enemy_damage = get_choice('enemy_damage') - erargs.enemy_damage = {'default': 'default', - 'shuffled': 'shuffled', - 'random': 'chaos' - }[enemy_damage] + ret.enemy_damage = {'default': 'default', + 'shuffled': 'shuffled', + 'random': 'chaos' + }[enemy_damage] enemy_health = get_choice('enemy_health') - erargs.enemy_health = enemy_health + ret.enemy_health = enemy_health - for k, v in vars(parse_arguments([])).items(): - if k not in vars(erargs): - setattr(erargs, k, v) - - # set up logger - loglevel = {'error': logging.ERROR, 'info': logging.INFO, 'warning': logging.WARNING, 'debug': logging.DEBUG}[args.loglevel] - logging.basicConfig(format='%(message)s', level=loglevel) - - try: - ERmain(erargs, seed) - except Exception as e: - logging.exception(e) - return False - - return True + return ret if __name__ == '__main__': main() From fea3888b4550f0ce54c5bdb45e292472529b42dc Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:33:09 +0100 Subject: [PATCH 115/185] Mystery: separate dungeon items shuffling when requested --- Mystery.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Mystery.py b/Mystery.py index 7d31571e..66703f02 100644 --- a/Mystery.py +++ b/Mystery.py @@ -122,14 +122,17 @@ def roll_settings(weights): item_placement = get_choice('item_placement') # not supported in ER - dungeon_items = get_choice('dungeon_items') - if dungeon_items in ['mc', 'mcs', 'full']: - ret.mapshuffle = True - ret.compassshuffle = True - if dungeon_items in ['mcs', 'full']: - ret.keyshuffle = True - if dungeon_items in ['full']: - ret.bigkeyshuffle = True + if {'map_shuffle', 'compass_shuffle', 'smallkey_shuffle', 'bigkey_shuffle'}.issubset(weights.keys()): + ret.mapshuffle = get_choice('map_shuffle') == 'on' + ret.compassshuffle = get_choice('compass_shuffle') == 'on' + ret.keyshuffle = get_choice('smallkey_shuffle') == 'on' + ret.bigkeyshuffle = get_choice('bigkey_shuffle') == 'on' + else: + dungeon_items = get_choice('dungeon_items') + ret.mapshuffle = dungeon_items in ['mc', 'mcs', 'full'] + ret.compassshuffle = dungeon_items in ['mc', 'mcs', 'full'] + ret.keyshuffle = dungeon_items in ['mcs', 'full'] + ret.bigkeyshuffle = dungeon_items in ['full'] accessibility = get_choice('accessibility') ret.accessibility = accessibility From 2ec59404a253aa24345357d3e0dfd1b407d0aff4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:34:08 +0100 Subject: [PATCH 116/185] Mystery: always open the pyramid with fast_ganon --- Mystery.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mystery.py b/Mystery.py index 66703f02..1655c326 100644 --- a/Mystery.py +++ b/Mystery.py @@ -147,8 +147,7 @@ def roll_settings(weights): 'pedestal': 'pedestal', 'triforce-hunt': 'triforce-hunt' }[goals] - if goals == 'fast_ganon' and entrance_shuffle == 'none': - ret.openpyramid = True + ret.openpyramid = goals == 'fast_ganon' tower_open = get_choice('tower_open') ret.crystals_gt = tower_open From 4b9e7d715ce09a820e5603af029338edef957594 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:41:59 +0100 Subject: [PATCH 117/185] Mystery: correctly parse oddly indented yaml files --- Mystery.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mystery.py b/Mystery.py index 1655c326..45025036 100644 --- a/Mystery.py +++ b/Mystery.py @@ -9,7 +9,7 @@ from Main import main as ERmain def parse_yaml(txt): ret = {} - indents = {0: ret} + indents = {len(txt) - len(txt.lstrip(' ')): ret} for line in txt.splitlines(): if not line: continue @@ -162,8 +162,7 @@ def roll_settings(weights): ret.retro = True hints = get_choice('hints') - if hints == 'on': - ret.hints = True + ret.hints = hints == 'on' weapons = get_choice('weapons') ret.swords = {'randomized': 'random', From 8721310cf748501b8e309837112b98e7d9c65ee1 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:45:51 +0100 Subject: [PATCH 118/185] World: include can_access_trock_eyebridge can_access_trock_front can_access_trock_big_chest can_access_trock_middle and fix_fake_world in the player specific attributes --- BaseClasses.py | 10 +++++----- EntranceShuffle.py | 2 +- Main.py | 10 +++++----- Rom.py | 2 +- Rules.py | 16 ++++++++-------- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 9416210c..71ee44f6 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -45,10 +45,6 @@ class World(object): self.accessibility = accessibility.copy() self.shuffle_ganon = shuffle_ganon self.fix_gtower_exit = self.shuffle_ganon - self.can_access_trock_eyebridge = None - self.can_access_trock_front = None - self.can_access_trock_big_chest = None - self.can_access_trock_middle = None self.quickswap = quickswap self.fastmenu = fastmenu self.disable_music = disable_music @@ -56,7 +52,6 @@ class World(object): self.custom = custom self.customitemarray = customitemarray self.can_take_damage = True - self.fix_fake_world = True self.hints = hints.copy() self.dynamic_regions = [] self.dynamic_locations = [] @@ -77,6 +72,11 @@ class World(object): set_player_attr('fix_skullwoods_exit', self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple']) set_player_attr('fix_palaceofdarkness_exit', self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple']) set_player_attr('fix_trock_exit', self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple']) + set_player_attr('can_access_trock_eyebridge', None) + set_player_attr('can_access_trock_front', None) + set_player_attr('can_access_trock_big_chest', None) + set_player_attr('can_access_trock_middle', None) + set_player_attr('fix_fake_world', True) set_player_attr('mapshuffle', False) set_player_attr('compassshuffle', False) set_player_attr('keyshuffle', False) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index dc315b8b..92442654 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -903,7 +903,7 @@ def link_entrances(world, player): # place remaining doors connect_doors(world, doors, door_targets, player) elif world.shuffle[player] == 'insanity_legacy': - world.fix_fake_world = False + world.fix_fake_world[player] = False # beware ye who enter here entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave'] diff --git a/Main.py b/Main.py index 1177973b..20645b08 100644 --- a/Main.py +++ b/Main.py @@ -234,13 +234,13 @@ def copy_world(world): ret.light_world_light_cone = world.light_world_light_cone ret.dark_world_light_cone = world.dark_world_light_cone ret.seed = world.seed - ret.can_access_trock_eyebridge = world.can_access_trock_eyebridge - ret.can_access_trock_front = world.can_access_trock_front - ret.can_access_trock_big_chest = world.can_access_trock_big_chest - ret.can_access_trock_middle = world.can_access_trock_middle + ret.can_access_trock_eyebridge = world.can_access_trock_eyebridge.copy() + ret.can_access_trock_front = world.can_access_trock_front.copy() + ret.can_access_trock_big_chest = world.can_access_trock_big_chest.copy() + ret.can_access_trock_middle = world.can_access_trock_middle.copy() ret.can_take_damage = world.can_take_damage ret.difficulty_requirements = world.difficulty_requirements.copy() - ret.fix_fake_world = world.fix_fake_world + ret.fix_fake_world = world.fix_fake_world.copy() ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms ret.mapshuffle = world.mapshuffle.copy() ret.compassshuffle = world.compassshuffle.copy() diff --git a/Rom.py b/Rom.py index 5b911a18..8a3c648a 100644 --- a/Rom.py +++ b/Rom.py @@ -909,7 +909,7 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness rom.write_byte(0x1800A0, 0x01) # return to light world on s+q without mirror rom.write_byte(0x1800A1, 0x01) # enable overworld screen transition draining for water level inside swamp - rom.write_byte(0x180174, 0x01 if world.fix_fake_world else 0x00) + rom.write_byte(0x180174, 0x01 if world.fix_fake_world[player] else 0x00) rom.write_byte(0x18017E, 0x01) # Fairy fountains only trade in bottles rom.write_byte(0x180034, 0x0A) # starting max bombs rom.write_byte(0x180035, 30) # starting max arrows diff --git a/Rules.py b/Rules.py index 0950f393..5ef01fc9 100644 --- a/Rules.py +++ b/Rules.py @@ -736,14 +736,14 @@ def set_trock_key_rules(world, player): all_state = world.get_all_state(True) # Check if each of the four main regions of the dungoen can be reached. The previous code section prevents key-costing moves within the dungeon. - can_reach_back = all_state.can_reach(world.get_region('Turtle Rock (Eye Bridge)', player)) if world.can_access_trock_eyebridge is None else world.can_access_trock_eyebridge - world.can_access_trock_eyebridge = can_reach_back - can_reach_front = all_state.can_reach(world.get_region('Turtle Rock (Entrance)', player)) if world.can_access_trock_front is None else world.can_access_trock_front - world.can_access_trock_front = can_reach_front - can_reach_big_chest = all_state.can_reach(world.get_region('Turtle Rock (Big Chest)', player)) if world.can_access_trock_big_chest is None else world.can_access_trock_big_chest - world.can_access_trock_big_chest = can_reach_big_chest - can_reach_middle = all_state.can_reach(world.get_region('Turtle Rock (Second Section)', player)) if world.can_access_trock_middle is None else world.can_access_trock_middle - world.can_access_trock_middle = can_reach_middle + can_reach_back = all_state.can_reach(world.get_region('Turtle Rock (Eye Bridge)', player)) if world.can_access_trock_eyebridge[player] is None else world.can_access_trock_eyebridge[player] + world.can_access_trock_eyebridge[player] = can_reach_back + can_reach_front = all_state.can_reach(world.get_region('Turtle Rock (Entrance)', player)) if world.can_access_trock_front[player] is None else world.can_access_trock_front[player] + world.can_access_trock_front[player] = can_reach_front + can_reach_big_chest = all_state.can_reach(world.get_region('Turtle Rock (Big Chest)', player)) if world.can_access_trock_big_chest[player] is None else world.can_access_trock_big_chest[player] + world.can_access_trock_big_chest[player] = can_reach_big_chest + can_reach_middle = all_state.can_reach(world.get_region('Turtle Rock (Second Section)', player)) if world.can_access_trock_middle[player] is None else world.can_access_trock_middle[player] + world.can_access_trock_middle[player] = can_reach_middle # No matter what, the key requirement for going from the middle to the bottom should be three keys. set_rule(world.get_entrance('Turtle Rock Dark Room Staircase', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 3)) From c2530dce7d4dc21eb904ca913104a13e02df6ccc Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:46:16 +0100 Subject: [PATCH 119/185] Mystery: fix triforcehunt argument --- Mystery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mystery.py b/Mystery.py index 45025036..31e2f44b 100644 --- a/Mystery.py +++ b/Mystery.py @@ -145,7 +145,7 @@ def roll_settings(weights): 'fast_ganon': 'crystals', 'dungeons': 'dungeons', 'pedestal': 'pedestal', - 'triforce-hunt': 'triforce-hunt' + 'triforce-hunt': 'triforcehunt' }[goals] ret.openpyramid = goals == 'fast_ganon' From 9175c22895e161768eb8c7aa6f6228aea39c484d Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:47:35 +0100 Subject: [PATCH 120/185] Fill: place items for players with no accessibility requirements first --- Fill.py | 59 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 27 deletions(-) diff --git a/Fill.py b/Fill.py index a27aadc4..811df900 100644 --- a/Fill.py +++ b/Fill.py @@ -171,40 +171,45 @@ def fill_restrictive(world, base_state, locations, itempool, single_player_place unplaced_items = [] - player_items = {} + no_access_checks = {} + reachable_items = {} for item in itempool: - player_items.setdefault(item.player, []).append(item) + if world.accessibility[item.player] == 'none': + no_access_checks.setdefault(item.player, []).append(item) + else: + reachable_items.setdefault(item.player, []).append(item) - while any(player_items.values()) and locations: - items_to_place = [[itempool.remove(items[-1]), items.pop()][-1] for items in player_items.values() if items] + for player_items in [no_access_checks, reachable_items]: + while any(player_items.values()) and locations: + items_to_place = [[itempool.remove(items[-1]), items.pop()][-1] for items in player_items.values() if items] - maximum_exploration_state = sweep_from_pool() - has_beaten_game = world.has_beaten_game(maximum_exploration_state) + maximum_exploration_state = sweep_from_pool() + has_beaten_game = world.has_beaten_game(maximum_exploration_state) - for item_to_place in items_to_place: - perform_access_check = True - if world.accessibility[item_to_place.player] == 'none': - perform_access_check = not world.has_beaten_game(maximum_exploration_state, item_to_place.player) if single_player_placement else not has_beaten_game + for item_to_place in items_to_place: + perform_access_check = True + if world.accessibility[item_to_place.player] == 'none': + perform_access_check = not world.has_beaten_game(maximum_exploration_state, item_to_place.player) if single_player_placement else not has_beaten_game - spot_to_fill = None - for location in locations: - if (not single_player_placement or location.player == item_to_place.player)\ - and location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): - spot_to_fill = location - break + spot_to_fill = None + for location in locations: + if (not single_player_placement or location.player == item_to_place.player)\ + and location.can_fill(maximum_exploration_state, item_to_place, perform_access_check): + spot_to_fill = location + break - if spot_to_fill is None: - # we filled all reachable spots. Maybe the game can be beaten anyway? - unplaced_items.insert(0, item_to_place) - if world.can_beat_game(): - if world.accessibility[item_to_place.player] != 'none': - logging.getLogger('').warning('Not all items placed. Game beatable anyway. (Could not place %s)' % item_to_place) - continue - raise FillError('No more spots to place %s' % item_to_place) + if spot_to_fill is None: + # we filled all reachable spots. Maybe the game can be beaten anyway? + unplaced_items.insert(0, item_to_place) + if world.can_beat_game(): + if world.accessibility[item_to_place.player] != 'none': + logging.getLogger('').warning('Not all items placed. Game beatable anyway. (Could not place %s)' % item_to_place) + continue + raise FillError('No more spots to place %s' % item_to_place) - world.push_item(spot_to_fill, item_to_place, False) - locations.remove(spot_to_fill) - spot_to_fill.event = True + world.push_item(spot_to_fill, item_to_place, False) + locations.remove(spot_to_fill) + spot_to_fill.event = True itempool.extend(unplaced_items) From 2b184d072b66905116f2164a36353c69628ec228 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:51:38 +0100 Subject: [PATCH 121/185] Rules: fix trock key logic for the big key chest "always allow" rule --- Rules.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Rules.py b/Rules.py index 5ef01fc9..9d861761 100644 --- a/Rules.py +++ b/Rules.py @@ -771,13 +771,15 @@ def set_trock_key_rules(world, player): if can_reach_back: set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) if world.accessibility[player] != 'locations': - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player + and state.can_reach(world.get_region('Turtle Rock (Eye Bridge)', player))) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) elif can_reach_front and can_reach_middle: set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) if world.accessibility[player] != 'locations': - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player + and state.can_reach(world.get_region('Turtle Rock (Entrance)', player)) and state.can_reach(world.get_region('Turtle Rock (Second Section)', player))) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', @@ -788,7 +790,8 @@ def set_trock_key_rules(world, player): set_rule(world.get_entrance('Turtle Rock Pokey Room', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 1)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, tr_big_key_chest_keys_needed(state))) if world.accessibility[player] != 'locations': - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player and state.has_key('Small Key (Turtle Rock)', player, 2)) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player and state.has_key('Small Key (Turtle Rock)', player, 2) + and state.can_reach(world.get_region('Turtle Rock (Entrance)', player))) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', @@ -798,7 +801,8 @@ def set_trock_key_rules(world, player): set_rule(world.get_entrance('Turtle Rock (Chain Chomp Room) (South)', player), lambda state: state.has_key('Small Key (Turtle Rock)', player, 2) if item_in_locations(state, 'Big Key (Turtle Rock)', player, [('Turtle Rock - Compass Chest', player), ('Turtle Rock - Roller Room - Left', player), ('Turtle Rock - Roller Room - Right', player)]) else state.has_key('Small Key (Turtle Rock)', player, 4)) set_rule(world.get_location('Turtle Rock - Big Key Chest', player), lambda state: (state.has_key('Small Key (Turtle Rock)', player, 4) or item_name(state, 'Turtle Rock - Big Key Chest', player) == ('Small Key (Turtle Rock)', player))) if world.accessibility[player] != 'locations': - set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player) + set_always_allow(world.get_location('Turtle Rock - Big Key Chest', player), lambda state, item: item.name == 'Small Key (Turtle Rock)' and item.player == player + and state.can_reach(world.get_region('Turtle Rock (Big Chest)', player))) else: forbid_item(world.get_location('Turtle Rock - Big Key Chest', player), 'Small Key (Turtle Rock)', player) non_big_key_locations += ['Turtle Rock - Crystaroller Room', 'Turtle Rock - Eye Bridge - Bottom Left', From 80d9fda10f6332f0a5900e5d8ae5dc58daa77df9 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 20:56:58 +0100 Subject: [PATCH 122/185] Rules: allow triforce pieces to be in other players world --- Rules.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Rules.py b/Rules.py index 9d861761..644dc895 100644 --- a/Rules.py +++ b/Rules.py @@ -106,11 +106,6 @@ def item_name(state, location, player): return (location.item.name, location.item.player) def global_rules(world, player): - if world.goal[player] == 'triforcehunt': - for location in world.get_locations(): - if location.player != player: - forbid_item(location, 'Triforce Piece', player) - # ganon can only carry triforce add_item_rule(world.get_location('Ganon', player), lambda item: item.name == 'Triforce' and item.player == player) From 5f77aaba06f3e375d209f6513545939ec24360f2 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 21:20:55 +0100 Subject: [PATCH 123/185] Individual settings: shufflepots and shufflepalette --- EntranceRandomizer.py | 2 +- Main.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index f7b6ec22..be702203 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -281,7 +281,7 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', - 'retro', 'accessibility', 'hints', + 'retro', 'accessibility', 'hints', 'shufflepalette', 'shufflepots', 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: diff --git a/Main.py b/Main.py index 20645b08..b761e6e3 100644 --- a/Main.py +++ b/Main.py @@ -141,7 +141,7 @@ def main(args, seed=None): for player in range(1, world.players + 1): 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.shufflepalette or args.shufflepots) + or args.shufflepalette[player] or args.shufflepots[player]) local_rom = None if args.jsonout: @@ -156,7 +156,7 @@ def main(args, seed=None): enemizer_patch = [] if use_enemizer: - enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepalette, args.shufflepots) + enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepalette[player], args.shufflepots[player]) multidata.rom_names[player] = list(rom.name) for location in world.get_filled_locations(player): From 1dfc7500209d75047e9bbd316cdfaca48db75ff1 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 18 Dec 2019 21:34:57 +0100 Subject: [PATCH 124/185] Gui: only take arguments for p1 when opening --- Gui.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gui.py b/Gui.py index f50c41d9..88bb9df4 100755 --- a/Gui.py +++ b/Gui.py @@ -1173,6 +1173,9 @@ def guiMain(args=None): topFrame3.pack(side=TOP, pady=(17,0)) if args is not None: + for k,v in vars(args).items(): + if type(v) is dict: + setattr(args, k, v[1]) # only get values for player 1 for now # load values from commandline args createSpoilerVar.set(int(args.create_spoiler)) suppressRomVar.set(int(args.suppress_rom)) From 0d9983bae000f3365fb741752b8de66bfd69f857 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 19 Dec 2019 10:04:12 +0100 Subject: [PATCH 125/185] Rom: fix player names not applying --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 8a3c648a..98e6682e 100644 --- a/Rom.py +++ b/Rom.py @@ -1324,7 +1324,7 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr # set player names for player, name in names.items(): if 0 < player <= 64: - rom.write_bytes(0x185380 + ((player - 1) * 32), hud_format_text(name)) + rom.write_bytes(0x186380 + ((player - 1) * 32), hud_format_text(name)) if isinstance(rom, LocalRom): rom.write_crc() From 4a16ba74e8dfc4c821109aa78363816ac197400a Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 21 Dec 2019 10:42:59 +0100 Subject: [PATCH 126/185] Fix triforce hunt icon showing for every player --- BaseClasses.py | 4 ++-- ItemList.py | 6 +++--- Main.py | 4 ++-- Rom.py | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 71ee44f6..217ac5d8 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -35,8 +35,6 @@ class World(object): self.shuffle_bonk_prizes = False self.light_world_light_cone = False self.dark_world_light_cone = False - self.treasure_hunt_count = 0 - self.treasure_hunt_icon = 'Triforce Piece' self.clock_mode = 'off' self.rupoor_cost = 10 self.aga_randomness = True @@ -90,6 +88,8 @@ class World(object): set_player_attr('crystals_needed_for_ganon', 7) set_player_attr('crystals_needed_for_gt', 7) set_player_attr('open_pyramid', False) + set_player_attr('treasure_hunt_icon', 'Triforce Piece') + set_player_attr('treasure_hunt_count', 0) def initialize_regions(self, regions=None): for region in regions if regions else self.regions: diff --git a/ItemList.py b/ItemList.py index 991588b4..18035e12 100644 --- a/ItemList.py +++ b/ItemList.py @@ -141,7 +141,7 @@ def generate_itempool(world, player): region = world.get_region('Light World',player) loc = Location(player, "Murahdahla", parent=region) - loc.access_rule = lambda state: state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > state.world.treasure_hunt_count + loc.access_rule = lambda state: state.item_count('Triforce Piece', player) + state.item_count('Power Star', player) > state.world.treasure_hunt_count[player] region.locations.append(loc) world.dynamic_locations.append(loc) @@ -214,9 +214,9 @@ def generate_itempool(world, player): world.clock_mode = clock_mode if treasure_hunt_count is not None: - world.treasure_hunt_count = treasure_hunt_count + world.treasure_hunt_count[player] = treasure_hunt_count if treasure_hunt_icon is not None: - world.treasure_hunt_icon = treasure_hunt_icon + world.treasure_hunt_icon[player] = treasure_hunt_icon world.itempool.extend([item for item in get_dungeon_item_pool(world) if item.player == player and ((item.smallkey and world.keyshuffle[player]) diff --git a/Main.py b/Main.py index b761e6e3..03b17a40 100644 --- a/Main.py +++ b/Main.py @@ -228,8 +228,8 @@ def copy_world(world): ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() ret.powder_patch_required = world.powder_patch_required.copy() ret.ganonstower_vanilla = world.ganonstower_vanilla.copy() - ret.treasure_hunt_count = world.treasure_hunt_count - ret.treasure_hunt_icon = world.treasure_hunt_icon + ret.treasure_hunt_count = world.treasure_hunt_count.copy() + ret.treasure_hunt_icon = world.treasure_hunt_icon.copy() ret.sewer_light_cone = world.sewer_light_cone.copy() ret.light_world_light_cone = world.light_world_light_cone ret.dark_world_light_cone = world.dark_world_light_cone diff --git a/Rom.py b/Rom.py index 98e6682e..8a56f7e9 100644 --- a/Rom.py +++ b/Rom.py @@ -876,8 +876,8 @@ def patch_rom(world, player, rom, enemized): write_int32(rom, 0x18020C, (40 + ERtimeincrease) * 60 * 60) # starting time (in frames, sint32) # set up goals for treasure hunt - rom.write_bytes(0x180165, [0x0E, 0x28] if world.treasure_hunt_icon == 'Triforce Piece' else [0x0D, 0x28]) - rom.write_byte(0x180167, world.treasure_hunt_count % 256) + rom.write_bytes(0x180165, [0x0E, 0x28] if world.treasure_hunt_icon[player] == 'Triforce Piece' else [0x0D, 0x28]) + rom.write_byte(0x180167, world.treasure_hunt_count[player] % 256) rom.write_byte(0x180194, 1) # Must turn in triforced pieces (instant win not enabled) rom.write_bytes(0x180213, [0x00, 0x01]) # Not a Tournament Seed @@ -1567,7 +1567,7 @@ def write_strings(rom, world, player): tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Get the Triforce Pieces.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' tt['sign_ganon'] = 'Go find the Triforce pieces... Ganon is invincible!' - tt['murahdahla'] = "Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n\n\n\n… … …\n\nWait! you can see me? I knew I should have\nhidden in a hollow tree. If you bring\n%d triforce pieces, I can reassemble it." % world.treasure_hunt_count + tt['murahdahla'] = "Hello @. I\nam Murahdahla, brother of\nSahasrahla and Aginah. Behold the power of\ninvisibility.\n\n\n\n… … …\n\nWait! you can see me? I knew I should have\nhidden in a hollow tree. If you bring\n%d triforce pieces, I can reassemble it." % world.treasure_hunt_count[player] elif world.goal[player] in ['pedestal']: tt['ganon_fall_in_alt'] = 'Why are you even here?\n You can\'t even hurt me! Your goal is at the pedestal.' tt['ganon_phase_3_alt'] = 'Seriously? Go Away, I will not Die.' From aa080eb455ef6ad06cd396cd90b1e2d3fd63acaa Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 21 Dec 2019 13:33:07 +0100 Subject: [PATCH 127/185] Include unreachable items in the spoiler log --- BaseClasses.py | 4 ++++ Main.py | 1 + 2 files changed, 5 insertions(+) diff --git a/BaseClasses.py b/BaseClasses.py index 217ac5d8..1401b5ab 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -959,6 +959,7 @@ class Spoiler(object): self.entrances = OrderedDict() self.medallions = {} self.playthrough = {} + self.unreachables = [] self.locations = {} self.paths = {} self.metadata = {} @@ -1134,6 +1135,9 @@ class Spoiler(object): outfile.write('\n'.join("{} [{}]\n {}".format(shop['location'], shop['type'], "\n ".join(item for item in [shop.get('item_0', None), shop.get('item_1', None), shop.get('item_2', None)] if item)) for shop in self.shops)) outfile.write('\n\nPlaythrough:\n\n') outfile.write('\n'.join(['%s: {\n%s\n}' % (sphere_nr, '\n'.join([' %s: %s' % (location, item) for (location, item) in sphere.items()])) for (sphere_nr, sphere) in self.playthrough.items()])) + if self.unreachables: + outfile.write('\n\nUnreachable Items:\n\n') + outfile.write('\n'.join(['%s: %s' % (unreachable.item, unreachable) for unreachable in self.unreachables])) outfile.write('\n\nPaths:\n\n') path_listings = [] diff --git a/Main.py b/Main.py index 03b17a40..5e609ed8 100644 --- a/Main.py +++ b/Main.py @@ -371,6 +371,7 @@ def create_playthrough(world): if any([world.accessibility[location.item.player] != 'none' for location in sphere_candidates]): raise RuntimeError('Not all progression items reachable. Something went terribly wrong here.') else: + old_world.spoiler.unreachables = sphere_candidates.copy() break # in the second phase, we cull each sphere such that the game is still beatable, reducing each range of influence to the bare minimum required inside it From 6ca9cddc9a69ed866ac283bb15b6a762408fdf10 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 27 Dec 2019 01:04:34 +0100 Subject: [PATCH 128/185] Rom: revert multiworld overflow replacement settings, baserom patch will skip limit checks for multiworld items --- Rom.py | 32 ++++++------------------------ data/base2current.json | 2 +- data/base2current_extendedmsu.json | 2 +- 3 files changed, 8 insertions(+), 28 deletions(-) diff --git a/Rom.py b/Rom.py index 8a56f7e9..60aaa9ef 100644 --- a/Rom.py +++ b/Rom.py @@ -679,35 +679,15 @@ def patch_rom(world, player, rom, enemized): difficulty = world.difficulty_requirements[player] #Set overflow items for progressive equipment - mw_sword_replacements = {0: overflow_replacement, - 1: item_table['Fighter Sword'][3], - 2: item_table['Master Sword'][3], - 3: item_table['Tempered Sword'][3], - 4: item_table['Golden Sword'][3]} - mw_shield_replacements = {0: overflow_replacement, - 1: item_table['Blue Shield'][3], - 2: item_table['Red Shield'][3], - 3: item_table['Mirror Shield'][3]} - mw_armor_replacements = {0: overflow_replacement, - 1: item_table['Blue Mail'][3], - 2: item_table['Red Mail'][3]} - mw_bottle_replacements = {0: overflow_replacement, - 1: item_table['Blue Potion'][3], - 2: item_table['Blue Potion'][3], - 3: item_table['Blue Potion'][3], - 4: item_table['Blue Potion'][3]} - mw_bow_replacements = {0: overflow_replacement, - 1: item_table['Bow'][3], - 2: item_table['Bow'][3]} rom.write_bytes(0x180090, - [difficulty.progressive_sword_limit, mw_sword_replacements[difficulty.progressive_sword_limit] if world.players > 1 else overflow_replacement, - difficulty.progressive_shield_limit, mw_shield_replacements[difficulty.progressive_shield_limit] if world.players > 1 else overflow_replacement, - difficulty.progressive_armor_limit, mw_armor_replacements[difficulty.progressive_armor_limit] if world.players > 1 else overflow_replacement, - difficulty.progressive_bottle_limit, mw_bottle_replacements[difficulty.progressive_bottle_limit] if world.players > 1 else overflow_replacement, - difficulty.progressive_bow_limit, mw_bow_replacements[difficulty.progressive_bow_limit] if world.players > 1 else overflow_replacement]) + [difficulty.progressive_sword_limit, overflow_replacement, + difficulty.progressive_shield_limit, overflow_replacement, + difficulty.progressive_armor_limit, overflow_replacement, + difficulty.progressive_bottle_limit, overflow_replacement, + difficulty.progressive_bow_limit, overflow_replacement]) if difficulty.progressive_bow_limit < 2 and world.swords[player] == 'swordless': - rom.write_bytes(0x180098, [2, mw_bow_replacements[difficulty.progressive_bow_limit] if world.players > 1 else overflow_replacement]) + rom.write_bytes(0x180098, [2, overflow_replacement]) rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon # set up game internal RNG seed diff --git a/data/base2current.json b/data/base2current.json index 56ce1e33..055fec58 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,26,224,160,234]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,5,199,160]},{"21847":[34,221,199,160,234]},{"21854":[34,0,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,142,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,33,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[51,163,160]},{"30994":[181,163,160]},{"31001":[51,163,160]},{"31011":[181,163,160]},{"31046":[195,221,160]},{"31102":[34,127,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[170,221,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,162]},{"51009":[160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,71,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,40,188,164]},{"60790":[198,222,160]},{"61077":[215,180,160]},{"61133":[34,15,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,133,237,160]},{"65607":[145,236,160]},{"65778":[34,24,143,160,234,234]},{"65879":[34,18,194,160,234]},{"65894":[34,64,194,160]},{"66284":[34,99,194,160]},{"66292":[92,161,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,135,239,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,87,223,160,234,234]},{"67934":[46,248,160]},{"68495":[34,187,154,160,208,6,234]},{"68584":[50,248,160]},{"69776":[34,187,154,160,208,4,234]},{"70410":[50,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,154,247,160,234]},{"72216":[124,221,160]},{"72241":[34,64,194,160]},{"72246":[154,153,160]},{"73041":[34,150,154,160]},{"73263":[136,236,160]},{"73340":[34,241,128,160,234]},{"73937":[34,80,194,160]},{"74833":[34,213,130,164]},{"76423":[34,138,237,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]},{"78172":[34,242,222,160,34,127,153,160,234,234]},{"79603":[34,176,221,160]},{"79767":[34,102,223,160]},{"82676":[50,248,160]},{"87892":[34,119,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,196,238,160]},{"90651":[34,232,235,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[114,188,164]},{"166331":[34,150,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[26,181,160]},{"173058":[26,181,160]},{"173307":[26,181,160]},{"173320":[26,181,160]},{"183384":[34,36,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,150,154,160]},{"187902":[34,173,154,160]},{"188153":[0]},{"188234":[18,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,132,151,160]},{"188959":[34,19,235,160,128,13]},{"189655":[34,175,195,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[57,188,164]},{"191439":[34,204,196,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,224,196,160,234,234]},{"192037":[34,173,154,160]},{"192083":[34,97,143,160,234,234]},{"192095":[34,252,194,160,234]},{"192121":[76,195,160]},{"192140":[34,64,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[185,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,83,143,160]},{"192893":[34,173,154,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,150,154,160]},{"193025":[253,143,160]},{"193033":[34,150,154,160]},{"193140":[34,201,178,160]},{"193157":[34,194,178,160]},{"193440":[34,151,219,160]},{"193472":[168,234,160]},{"193546":[34,151,219,160]},{"193578":[112,234,160]},{"193854":[34,106,143,160]},{"193859":[32]},{"193888":[140,194,160]},{"194141":[34,100,195,160,234,234,234,234,234]},{"194177":[34,218,194,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,19,235,160]},{"195327":[34,17,143,160,240,2,96,234]},{"195539":[34,178,198,160]},{"195589":[22,176,160]},{"195710":[34,44,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[239,175,160]},{"195909":[249,175,160]},{"196477":[34,173,154,160]},{"196497":[34,150,154,160]},{"197750":[99,192,160]},{"198721":[34,121,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,54,143,160]},{"199659":[34,205,165,160,96,234]},{"199950":[34,90,143,160]},{"199964":[184,175,160]},{"199993":[34,3,176,160]},{"200070":[34,40,143,160]},{"200470":[34,33,143,160]},{"200845":[34,47,143,160,201]},{"200851":[240]},{"200853":[34,47,143,160]},{"200858":[8]},{"200893":[34,54,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,56,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[63,143,160]},{"208994":[34,54,143,160,234,234]},{"209010":[139]},{"209098":[226,143,160]},{"209199":[41,247]},{"210057":[92,203,219,160,234,234,234,234]},{"210164":[133,143,160]},{"211413":[199,143,160]},{"212333":[76,188,164]},{"212610":[95,188,164]},{"213139":[34,185,164]},{"213169":[147,133,160]},{"214205":[34,99,180,160]},{"214972":[245,179,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,19,222,160]},{"217579":[34,5,193,160]},{"224597":[34,151,218,160]},{"224693":[34,171,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,185,219,160,234]},{"226304":[34,236,218,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,104,237,160]},{"229634":[34,124,186,164]},{"230816":[231,178,160]},{"230955":[231,178,160]},{"233256":[197]},{"233258":[160]},{"233266":[34,165,128,160]},{"233297":[34,113,237,160,234]},{"233987":[25,221,160]},{"234731":[34,118,221,160]},{"234747":[34,124,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[51,204,160]},{"236047":[229,192,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[140,197,160]},{"238498":[34,37,196,160,128,3]},{"238562":[34,80,198,160,240,4,234]},{"238751":[34,45,220,160]},{"238964":[34,45,220,160]},{"239190":[34,45,220,160]},{"239964":[12,223,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,13,219,160]},{"241165":[34,13,219,160]},{"241175":[34,235,128,164]},{"241294":[34,13,219,160]},{"241304":[34,235,128,164]},{"241814":[34,13,219,160,24,125,139,176]},{"241869":[13,235,160]},{"241877":[34,13,219,160,24,125,139,176]},{"242942":[34,129,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,139,222,160,234]},{"243067":[234,234,34,92,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,43,219,160,234]},{"250478":[34,97,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,110,243,160,234]},{"273608":[34,95,182,160,76,230,172]},{"275716":[34,67,182,160,234]},{"276202":[34,128,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,21,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[221,133,160,92,203,237,160,234,234]},{"279880":[92,17,189,164]},{"280037":[34,161,233,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[13,235,160]},{"280106":[92,90,225,160,234]},{"280265":[79,210,160]},{"280287":[79,209,160]},{"280314":[79,210,160]},{"280335":[34,127,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,255,193,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,13,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,84,200,160,234]},{"296453":[92,133,188,164,234]},{"296466":[79,211]},{"296471":[80,211]},{"296480":[79,213]},{"296488":[79,211]},{"296493":[80,211]},{"296502":[79,213,34,0,128,160]},{"296583":[34,150,154,160]},{"296619":[79,214]},{"296810":[95,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[127,206]},{"297052":[111,207]},{"297087":[34,69,133,160,234,176]},{"297144":[79,209]},{"297200":[127,206]},{"297225":[111,207]},{"297263":[80,215]},{"297292":[34,199,194,160]},{"297309":[87,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,35,189,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]},{"324619":[34,175,152,160]},{"324675":[34,117,222,160]},{"324780":[8,8,16]},{"324896":[34,217,235,160,34,93,222,160,234,234,234,234,234,234]},{"324996":[34,80,194,160]},{"325098":[169,2,0,234]},{"325131":[34,9,236,160]},{"325203":[34,163,175,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":[161,237,160]},{"342245":[34,59,132,160,34,222,221,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,173,154,160]},{"344119":[34,173,154,160]},{"344185":[34,173,154,160]},{"344248":[34,173,154,160]},{"344312":[34,173,154,160]},{"344375":[34,173,154,160]},{"344441":[34,173,154,160]},{"344499":[34,173,154,160]},{"344565":[34,173,154,160]},{"344623":[34,173,154,160]},{"344689":[34,173,154,160]},{"344747":[34,173,154,160]},{"344813":[34,173,154,160]},{"344871":[34,173,154,160]},{"344937":[34,173,154,160]},{"345406":[34,203,153,160]},{"345531":[34,222,153,160,96]},{"345560":[34,222,153,160,96]},{"393133":[170,221,160]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[94,237,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,181,235,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[162,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,173,154,160]},{"449502":[34,45,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,199]},{"449578":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,229]},{"449612":[160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,178,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,220,154,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,47,155,160]},{"450360":[34,155,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34]},{"450460":[184,160,234]},{"450492":[34,15,155,160,234,234,234]},{"450861":[34,29,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,162,155,160,234]},{"452559":[34,144,155,160,234]},{"452581":[34,180,155,160,234]},{"452634":[96]},{"453064":[34,207,159,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,29,193,160,234,234,76,230,236]},{"453867":[34,198,155,160,234]},{"453892":[34,216,155,160]},{"454092":[34,65,155,160,234,234,234,234,234]},{"454233":[34,65,155,160,234,234,234,234,234]},{"454256":[34,133,194,160,234]},{"454282":[34,65,155,160,234,234,234,234,234]},{"454459":[34,65,155,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,243,131,160]},{"457344":[34,177,153,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,120,216,160]},{"457513":[34,158,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,203,195,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,201,235,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,159,225,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[153,233,160]},{"487403":[169,2,0,234]},{"487935":[34,199,225,160]},{"488156":[34,199,225,160]},{"488213":[34,199,225,160]},{"488242":[34,199,225,160]},{"488309":[34,199,225,160]},{"488340":[34,199,225,160]},{"488721":[34,199,225,160]},{"489560":[34,199,225,160]},{"490022":[34,199,225,160]},{"490060":[34,199,225,160]},{"490164":[34,199,225,160]},{"490184":[34,199,225,160]},{"490209":[34,199,225,160]},{"490257":[34,199,225,160]},{"490438":[34,215,225,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]},{"882113":[34,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,197,239,160]},{"900244":[34,25,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,16,240,160,234]},{"900437":[92,170,238,160,234]},{"900447":[34,105,247,160,234,234,234]},{"900458":[34,176,221,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,82,240,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,255,233,160,96]},{"954852":[118,181,160]},{"955117":[222,233,160]},{"955529":[114,181,160]},{"962925":[79,181,160]},{"962951":[79,181,160]},{"963167":[79,181,160]},{"963214":[79,181,160]},{"965041":[79,181,160]},{"965069":[79,181,160]},{"965214":[79,181,160]},{"965298":[79,181,160]},{"965316":[79,181,160]},{"967797":[34,183,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,209,179,160]},{"972824":[30,181,160]},{"972834":[30,181,160]},{"972851":[30,181,160]},{"974665":[92,48,197,160,234]},{"974706":[101,197,160]},{"974722":[74,197,160]},{"975106":[34,113,143,160]},{"975132":[34,113,143,160]},{"975265":[34,65,197,160,234,234]},{"975332":[34,39,197,160,234,234]},{"975401":[255]},{"976357":[75,181,160]},{"976423":[75,181,160]},{"978658":[59,181,160]},{"979078":[34,171,219,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":[191,180,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,3,196,160]},{"983466":[59,181,160]},{"983651":[59,181,160]},{"988539":[71,181,160]},{"988657":[71,181,160]},{"988668":[71,181,160]},{"988874":[71,181,160]},{"988902":[71,181,160]},{"989142":[71,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[63,181,160]},{"999246":[67,181,160]},{"999265":[67,181,160]},{"999359":[67,181,160]},{"999574":[67,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,253,196,160]},{"1003229":[34,150,154,160]},{"1003277":[34,150,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[34,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[34,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,3,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,24,143,160,234,234]},{"1010175":[159,143,160]},{"1011427":[34,63,169,160,96,234]},{"1011808":[34,154,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,72,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,72,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,205,133,160,168,34,245,133,160,34,87,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,43,179,160,122,250,107,218,90,34,99,192,160,188,128,14,208,5,34,194,138,160,168,128,186,8,34,28,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,22,149,160,144,8,189,96,14,9,32,157,96,14,104,34,95,150,160,34,92,220,6,122,104,40,107,8,34,28,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,185,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,245,140,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,245,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,17,169]},{"1050024":[143]},{"1050026":[80,127,34,205,133,160,157,128,14,34,249,149,160,104,107,72,169]},{"1050044":[143]},{"1050046":[80,127,34,194,138,160,157,128,14,34,249,149,160,104,107,165,27,240,7,34,18,134,160,130,4]},{"1050072":[34,175,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050097":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050114":[208,11,175,22,244,126,9,1]},{"1050123":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050138":[208,50,175,135,128,48,208,6,175]},{"1050148":[128,48,128,35,218,8,194,48,165]},{"1050158":[72,165,2,72,169]},{"1050164":[128,133]},{"1050167":[169,48]},{"1050170":[133,2,169]},{"1050175":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050193":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050213":[72,165,2,72,169]},{"1050219":[128,133]},{"1050222":[169,48]},{"1050225":[133,2,169,1]},{"1050230":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050248":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050268":[72,165,2,72,169]},{"1050274":[128,133]},{"1050277":[169,48]},{"1050280":[133,2,169,2]},{"1050285":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050300":[201,27,1,208,108,165,34,235,41,1]},{"1050311":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050331":[72,165,2,72,169]},{"1050337":[128,133]},{"1050340":[169,48]},{"1050343":[133,2,169,3]},{"1050348":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050363":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050381":[72,165,2,72,169]},{"1050387":[128,133]},{"1050390":[169,48]},{"1050393":[133,2,169,4]},{"1050398":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050413":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050436":[72,165,2,72,169]},{"1050442":[128,133]},{"1050445":[169,48]},{"1050448":[133,2,169,5]},{"1050453":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050468":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050491":[72,165,2,72,169]},{"1050497":[128,133]},{"1050500":[169,48]},{"1050503":[133,2,169,6]},{"1050508":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050523":[201,135]},{"1050526":[208,7,175,98,129,48,130,3]},{"1050535":[169,23]},{"1050538":[41,255]},{"1050541":[40,107,8,194,32,165,138,201,3]},{"1050551":[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]},{"1050578":[72,165,2,72,169,64,129,133]},{"1050587":[169,48]},{"1050590":[133,2,169]},{"1050595":[34,67,147,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]},{"1050628":[72,165,2,72,169,16,128,133]},{"1050637":[169,48]},{"1050640":[133,2,169,6]},{"1050645":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050663":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050683":[72,165,2,72,169,64,129,133]},{"1050692":[169,48]},{"1050695":[133,2,169,1]},{"1050700":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050718":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050738":[72,165,2,72,169,64,129,133]},{"1050747":[169,48]},{"1050750":[133,2,169,2]},{"1050755":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050773":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050793":[72,165,2,72,169,64,129,133]},{"1050802":[169,48]},{"1050805":[133,2,169,10]},{"1050810":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050828":[208,107,165,34,201]},{"1050834":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050855":[72,165,2,72,169,64,129,133]},{"1050864":[169,48]},{"1050867":[133,2,169,3]},{"1050872":[34,67,147,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]},{"1050905":[72,165,2,72,169,16,128,133]},{"1050914":[169,48]},{"1050917":[133,2,169,7]},{"1050922":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050940":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050960":[72,165,2,72,169,64,129,133]},{"1050969":[169,48]},{"1050972":[133,2,169,4]},{"1050977":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050995":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051015":[72,165,2,72,169,64,129,133]},{"1051024":[169,48]},{"1051027":[133,2,169,5]},{"1051032":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051050":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051070":[72,165,2,72,169,64,129,133]},{"1051079":[169,48]},{"1051082":[133,2,169,6]},{"1051087":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051102":[201,74]},{"1051105":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051125":[72,165,2,72,169,64,129,133]},{"1051134":[169,48]},{"1051137":[133,2,169,6]},{"1051142":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051157":[201,91]},{"1051160":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051180":[72,165,2,72,169,64,129,133]},{"1051189":[169,48]},{"1051192":[133,2,169,7]},{"1051197":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051212":[201,104]},{"1051215":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051235":[72,165,2,72,169,64,129,133]},{"1051244":[169,48]},{"1051247":[133,2,169,8]},{"1051252":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051267":[201,129]},{"1051270":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051290":[72,165,2,72,169,64,129,133]},{"1051299":[169,48]},{"1051302":[133,2,169,9]},{"1051307":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051322":[169,23]},{"1051325":[41,255]},{"1051328":[40,107,8,194,32,165,160,201,200]},{"1051338":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051358":[72,165,2,72,169,80,129,133]},{"1051367":[169,48]},{"1051370":[133,2,169]},{"1051375":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051393":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051413":[72,165,2,72,169,80,129,133]},{"1051422":[169,48]},{"1051425":[133,2,169,1]},{"1051430":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051448":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051468":[72,165,2,72,169,80,129,133]},{"1051477":[169,48]},{"1051480":[133,2,169,2]},{"1051485":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051503":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051523":[72,165,2,72,169,80,129,133]},{"1051532":[169,48]},{"1051535":[133,2,169,3]},{"1051540":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051558":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051578":[72,165,2,72,169,80,129,133]},{"1051587":[169,48]},{"1051590":[133,2,169,4]},{"1051595":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051613":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051633":[72,165,2,72,169,80,129,133]},{"1051642":[169,48]},{"1051645":[133,2,169,5]},{"1051650":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051665":[201,172]},{"1051668":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051688":[72,165,2,72,169,80,129,133]},{"1051697":[169,48]},{"1051700":[133,2,169,6]},{"1051705":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051720":[201,222]},{"1051723":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051743":[72,165,2,72,169,80,129,133]},{"1051752":[169,48]},{"1051755":[133,2,169,7]},{"1051760":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051775":[201,144]},{"1051778":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051798":[72,165,2,72,169,80,129,133]},{"1051807":[169,48]},{"1051810":[133,2,169,8]},{"1051815":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051830":[201,164]},{"1051833":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051853":[72,165,2,72,169,80,129,133]},{"1051862":[169,48]},{"1051865":[133,2,169,9]},{"1051870":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051885":[169,62]},{"1051888":[41,255]},{"1051891":[40,107,194,32,165,160,201,200]},{"1051900":[208,4,56,130,82]},{"1051906":[201,51]},{"1051909":[208,4,56,130,73]},{"1051915":[201,7]},{"1051918":[208,4,56,130,64]},{"1051924":[201,90]},{"1051927":[208,4,56,130,55]},{"1051933":[201,6]},{"1051936":[208,4,56,130,46]},{"1051942":[201,41]},{"1051945":[208,4,56,130,37]},{"1051951":[201,172]},{"1051954":[208,4,56,130,28]},{"1051960":[201,222]},{"1051963":[208,4,56,130,19]},{"1051969":[201,144]},{"1051972":[208,4,56,130,10]},{"1051978":[201,164]},{"1051981":[208,4,56,130,1]},{"1051987":[24,226,32,107,90,165,27,208,3,130,230]},{"1051999":[8,194,32,165,160,201,135]},{"1052007":[208,7,175,58,227,48,130,137,1,201,200]},{"1052019":[208,7,175,62,227,48,130,125,1,201,51]},{"1052031":[208,7,175,63,227,48,130,113,1,201,7]},{"1052043":[208,7,175,64,227,48,130,101,1,201,90]},{"1052055":[208,7,175,65,227,48,130,89,1,201,6]},{"1052067":[208,7,175,66,227,48,130,77,1,201,41]},{"1052079":[208,7,175,67,227,48,130,65,1,201,172]},{"1052091":[208,7,175,68,227,48,130,53,1,201,222]},{"1052103":[208,7,175,69,227,48,130,41,1,201,144]},{"1052115":[208,7,175,70,227,48,130,29,1,201,164]},{"1052127":[208,7,175,71,227,48,130,17,1,201,225]},{"1052139":[208,7,175,72,227,48,130,5,1,201,226]},{"1052151":[208,7,175,73,227,48,130,249]},{"1052160":[201,234]},{"1052163":[208,7,175,74,227,48,130,237]},{"1052172":[201,27,1,208,22,165,34,235,41,1]},{"1052183":[208,7,175,75,227,48,130,217]},{"1052192":[175,76,227,48,130,210]},{"1052199":[201,38,1,208,7,175,77,227,48,130,198]},{"1052211":[201,39,1,208,44,175,78,227,48,130,186]},{"1052223":[169]},{"1052226":[130,180]},{"1052229":[8,194,32,165,138,201,3]},{"1052237":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052253":[175,59,227,48,130,149]},{"1052260":[201,5]},{"1052263":[208,7,175,80,227,48,130,137]},{"1052272":[201,40]},{"1052275":[208,7,175,81,227,48,130,125]},{"1052284":[201,42]},{"1052287":[208,7,175,61,227,48,130,113]},{"1052296":[201,48]},{"1052299":[208,21,165,34,201]},{"1052305":[2,176,7,175,82,227,48,130,94]},{"1052315":[175,60,227,48,130,87]},{"1052322":[201,53]},{"1052325":[208,7,175,83,227,48,130,75]},{"1052334":[201,59]},{"1052337":[208,7,175,84,227,48,130,63]},{"1052346":[201,66]},{"1052349":[208,7,175,85,227,48,130,51]},{"1052358":[201,74]},{"1052361":[208,7,175,85,227,48,130,39]},{"1052370":[201,91]},{"1052373":[208,7,175,86,227,48,130,27]},{"1052382":[201,104]},{"1052385":[208,7,175,87,227,48,130,15]},{"1052394":[201,129]},{"1052397":[208,7,175,88,227,48,130,3]},{"1052406":[169]},{"1052409":[41,255]},{"1052412":[40,143,152,192,126,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]},{"1052770":[72,165,2,72,169,16,128,133]},{"1052779":[169,48]},{"1052782":[133,2,169,3]},{"1052787":[34,67,147,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]},{"1052858":[72,165,2,72,169,16,128,133]},{"1052867":[169,48]},{"1052870":[133,2,169]},{"1052875":[34,67,147,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]},{"1052917":[72,165,2,72,169,16,128,133]},{"1052926":[169,48]},{"1052929":[133,2,169,1]},{"1052934":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052956":[160,70,226,32,143,152,192,126,40,104,107,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,81,218,207,150,128,48,144,10,104,175,151,128,48,34,39,145,160,107,104,218,139,75,171,170,191,28,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,9,217,160,76,39,145,201,251,208,7,34,197,217,160,76,39,145,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,39,145,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,39,145,160,107,201]},{"1053123":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,39,145,160,107,201]},{"1053178":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,14,175,64,243,126,201]},{"1053203":[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]},{"1053261":[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]},{"1053300":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,81,218,207,150,128,48,144,10,104,175,151,128,48,34,28,147,160,107,104,218,139,75,171,170,191,22,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,28,147,160,107,201]},{"1053560":[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,28,147,160,107,201]},{"1053615":[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,28,147,160,107,201]},{"1053655":[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,9,217,160,76,28,147,201,251,208,7,34,197,217,160,76,28,147,107]},{"1053719":[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]},{"1053757":[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]},{"1053806":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053824":[8,8,8]},{"1053830":[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,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,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,81,218,207,150,128,48,144,11,175,151,128,48,34,22,149,160,130,128]},{"1054029":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,22,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,22,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,22,149,160,128,37,201,98,208,6,34,9,217,160,128,8,201,99,208,4,34,197,217,160,162]},{"1054140":[224,36,176,12,223,209,149,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,32,11,150,34,39,145,160,34,45,213]},{"1054215":[122,250,104,107,72,8,72,194,32,169]},{"1054227":[143,37,192,126,143,39,192,126,169]},{"1054237":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,28,147,160,143,42,192,126,143,50,192,126,104,34,22,149,160,176,2,128,27,194,32,169]},{"1054278":[143,44,192,126,143,51,192,126,169]},{"1054288":[8,143,46,192,126,169]},{"1054295":[52,143,48,192,126,40,104,96,34,22,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]},{"1054364":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,22,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]},{"1054445":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054475":[169]},{"1054478":[143,66,80,127,128,6,162,64,45,160,2]},{"1054490":[104,107,32,69,151,176,35,194,32,165,226,72,56,233,15]},{"1054506":[133,226,165,232,72,56,233,15]},{"1054515":[133,232,226,32,32,69,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054547":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054567":[13,133]},{"1054570":[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]},{"1054605":[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]},{"1054647":[144,8,230,5,56,233,100]},{"1054655":[128,243,201,10]},{"1054660":[144,8,230,6,56,233,10]},{"1054668":[128,243,201,1]},{"1054673":[144,8,230,7,56,233,1]},{"1054681":[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,255,151,127,255,151,160,171,107]},{"1054720":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054738":[16,41,127]},{"1054742":[157,2,16,232,232,104,10,41,255,127,9]},{"1054754":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054775":[16,169,1,133,20,194,32,107,218,174]},{"1054786":[16,41,127]},{"1054790":[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]},{"1054832":[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]},{"1054879":[143,109,243,126,169]},{"1054885":[143,1,80,127,40,175,109,243,126,107,162]},{"1054897":[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]},{"1054923":[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]},{"1054950":[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,17,153,160,107,72,173]},{"1054996":[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]},{"1055026":[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]},{"1055100":[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]},{"1055161":[143,23,192,126,175,139,243,126,107,169]},{"1055172":[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,129,154,160,170,191,104,243,126,31,20,244,126,250,63,139,154,160,208,3,130,98]},{"1055249":[191,118,154,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,132,154,160,170,191,104,243,126,31,20,244,126,250,63,143,154,160,208,3,130,44]},{"1055303":[191,122,154,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]},{"1055363":[1,1]},{"1055368":[1]},{"1055370":[1,32,32,16]},{"1055375":[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,175,90,128,48,41,255]},{"1055426":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055439":[107,175,122,243,126,47,165,160,2,41,255]},{"1055451":[107,194,32,175,19,130,48,41,255]},{"1055461":[240,5,169,8]},{"1055466":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055479":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055501":[2,107,175,19,130,48,41,255]},{"1055510":[240,5,169,8]},{"1055515":[128,7,175,72,128,48,41,255]},{"1055524":[24,101,234,48,3,169]},{"1055532":[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]},{"1055559":[201,255]},{"1055562":[208,1,107,175,22,244,126,41,32]},{"1055572":[240,4,169]},{"1055577":[107,173,12,4,41,255]},{"1055584":[201,255]},{"1055587":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055611":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,198,237,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055643":[107,169,136,21,133]},{"1055649":[107,175,69,128,48,208,6,169,16,22,133]},{"1055661":[107,169,144,21,133]},{"1055667":[107,175,69,128,48,208,6,169,24,22,133]},{"1055679":[107,169,152,21,133]},{"1055685":[107,175,69,128,48,208,6,169,32,22,133]},{"1055697":[107,169,160,21,133]},{"1055703":[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]},{"1055795":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055809":[144,240,175,22,244,126,41,32]},{"1055818":[240,3,130,200,1,175,69,128,48,41,1]},{"1055830":[208,3,130,231]},{"1055835":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055857":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055874":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055891":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055908":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055925":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055942":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055959":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055976":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055993":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056010":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056027":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056044":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056061":[141,165,22,194,32,175,69,128,48,41,2]},{"1056073":[208,3,130,201]},{"1056078":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056091":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056106":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056121":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056136":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056151":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056166":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056181":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056196":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056211":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056226":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056241":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056256":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056271":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056286":[208,3,130,170,1,175,69,128,48,41,4]},{"1056298":[208,3,130,201]},{"1056303":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056316":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056331":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056346":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056361":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056376":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056391":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056406":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056421":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056436":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056451":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056466":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056481":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056496":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056511":[208,3,130,201]},{"1056516":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056529":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056544":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056559":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056574":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056589":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056604":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056619":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056634":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056649":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056664":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056679":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056694":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056709":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056728":[191,23,161,160,157,234,18,191,43,161,160,157,42,19,191,63,161,160,157,106,19,191,83,161,160,157,170,19,191,103,161,160,157,234,19,191,123,161,160,157,42,20,191,143,161,160,157,106,20,191,163,161,160,157,170,20,191,183,161,160,157,234,20,232,232,224,20]},{"1056796":[144,186,175,116,243,126,41,4]},{"1056805":[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]},{"1056838":[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]},{"1056871":[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]},{"1056904":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056925":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056946":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056967":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056988":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057009":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057030":[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]},{"1057653":[143,114,243,126,173,10,2,208,14,169]},{"1057664":[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]},{"1057698":[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]},{"1057779":[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]},{"1057822":[165,12,201,232,3,144,3,130,24]},{"1057832":[201,100]},{"1057835":[144,3,130,97]},{"1057840":[201,10]},{"1057843":[144,3,130,170]},{"1057848":[201,1]},{"1057851":[144,3,130,243]},{"1057856":[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,197,165,133,14,165,14,159]},{"1057893":[201,126,232,232,169,56]},{"1057900":[159]},{"1057902":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1057916":[201,126,232,232,169]},{"1057923":[159]},{"1057925":[201,126,232,232,165,14,24,105,8]},{"1057935":[133,14,100,10,165,12,201,100]},{"1057944":[144,8,56,233,100]},{"1057950":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,197,165,133,14,165,14,159]},{"1057974":[201,126,232,232,169,56]},{"1057981":[159]},{"1057983":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1057997":[201,126,232,232,169]},{"1058004":[159]},{"1058006":[201,126,232,232,165,14,24,105,8]},{"1058016":[133,14,100,10,165,12,201,10]},{"1058025":[144,8,56,233,10]},{"1058031":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,197,165,133,14,165,14,159]},{"1058055":[201,126,232,232,169,56]},{"1058062":[159]},{"1058064":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1058078":[201,126,232,232,169]},{"1058085":[159]},{"1058087":[201,126,232,232,165,14,24,105,8]},{"1058097":[133,14,100,10,165,12,201,1]},{"1058106":[144,8,56,233,1]},{"1058112":[230,10,128,243,133,12,192,255,208,10,160]},{"1058124":[165,14,24,121,197,165,133,14,165,14,159]},{"1058136":[201,126,232,232,169,56]},{"1058143":[159]},{"1058145":[201,126,232,232,164,10,152,10,168,185,177,165,159]},{"1058159":[201,126,232,232,169]},{"1058166":[159]},{"1058168":[201,126,232,232,165,14,24,105,8]},{"1058178":[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]},{"1058249":[252,255,248,255,218,90,8,194,48,162]},{"1058261":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058276":[208,13,175,153,80,127,41,255]},{"1058285":[223,3,200,48,208,44,226,32,191]},{"1058295":[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]},{"1058337":[200,48,41,255]},{"1058342":[201,255]},{"1058345":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058368":[226,32,162]},{"1058373":[160]},{"1058376":[152,207,96,80,127,144,3,130,172]},{"1058386":[191,1,201,48,201,255,208,3,130,161]},{"1058397":[191]},{"1058399":[201,48,207,80,80,127,240,3,130,137]},{"1058410":[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]},{"1058447":[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,121,167,160,170,32,152,167,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]},{"1058578":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058592":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,211,172,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,212,172,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,213,172,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]},{"1058685":[128]},{"1058690":[1]},{"1058693":[169,175,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,39,145,160,34,45,213]},{"1058732":[194,16,96,32,179,167,107,173]},{"1058741":[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]},{"1058771":[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]},{"1058808":[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]},{"1058949":[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]},{"1059114":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059135":[175,81,80,127,201,255,208,3,76,44,169,139,75,171,34,231,244,30,32,122,169,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]},{"1059186":[32,151,173,32,151,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059209":[201,2,208,3,130,227]},{"1059216":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059231":[165,26,41,16,240,12,189,14,170,159]},{"1059242":[201,126,232,224,16,144,244,189,30,170,159]},{"1059254":[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]},{"1059313":[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]},{"1059344":[248,255]},{"1059349":[2]},{"1059354":[16]},{"1059357":[2]},{"1059360":[248,255]},{"1059365":[2]},{"1059370":[16,64]},{"1059373":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,99,133,8,169,170,133,9,128,8,169,107,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059431":[70,10]},{"1059434":[2]},{"1059439":[70,74]},{"1059442":[2,218,162]},{"1059446":[165,26,41,64,240,12,189,229,170,159]},{"1059457":[201,126,232,224,16,144,244,189,245,170,159]},{"1059469":[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]},{"1059528":[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]},{"1059559":[248,255,132]},{"1059564":[2]},{"1059569":[16]},{"1059572":[2]},{"1059575":[248,255,132]},{"1059580":[2]},{"1059585":[16,64]},{"1059588":[2,218,162]},{"1059592":[165,26,41,64,240,12,189,119,171,159]},{"1059603":[201,126,232,224,16,144,244,189,135,171,159]},{"1059615":[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]},{"1059674":[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]},{"1059705":[248,255,142]},{"1059710":[2]},{"1059715":[16]},{"1059718":[2]},{"1059721":[248,255,142]},{"1059726":[2]},{"1059731":[16,64]},{"1059734":[2,218,90,8,160]},{"1059740":[90,152,74,74,168,175,95,80,127,57,211,172,240,3,122,128,48,122,173,238]},{"1059761":[221,32,15,208,39,32,106,173,32,214,172,34,230,131,6,144,3,32,138,173,32,64,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,236,171,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]},{"1059889":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059905":[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,211,172,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,211,172,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]},{"1060058":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060079":[58,10,168,185,140,174,133]},{"1060087":[122,104,24,113]},{"1060092":[24,105,2]},{"1060096":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060109":[13,194,32,90,200,200,24,113]},{"1060118":[122,72,175,81,80,127,41,128]},{"1060127":[240,7,104,24,105,4]},{"1060134":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060157":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060174":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060187":[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]},{"1060215":[165,35,105]},{"1060219":[133,8,165,32,105,8,133,1,165,33,105]},{"1060231":[133,9,96,218,34]},{"1060237":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060259":[160]},{"1060261":[175,81,80,127,41,3,201,3,208,5,32,200,173,128,4,201,2,208,5,32,200,173,128,4,201,1,208,3,32,200,173,122,250,171,96,175,95,80,127,57,211,172,240,3,130,178]},{"1060308":[90,175,81,80,127,41,3,58,10,168,194,32,185,140,174,133]},{"1060325":[163,1,10,10,168,177]},{"1060332":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060345":[208,8,177]},{"1060349":[143,39,192,126,128,10,177]},{"1060357":[24,105,4]},{"1060361":[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,170,174,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,28,147,160,143,42,192,126,169]},{"1060428":[143,43,192,126,191,82,80,127,34,22,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060454":[143,44,192,126,32,127,175,169,2,218,72,175,97,80,127,170,104,32,54,175,250,175,81,80,127,41,128,208,3,32,173,174,200,232,232,232,232,96,146,174,150,174,158,174,8]},{"1060500":[40]},{"1060502":[240,255,40]},{"1060506":[32]},{"1060508":[40]},{"1060510":[216,255,40]},{"1060514":[8]},{"1060516":[40]},{"1060518":[56]},{"1060520":[40]},{"1060522":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060541":[58,10,168,185,140,174,133]},{"1060549":[185,36,175,133,2,122,90,152,10,10,168,177]},{"1060562":[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,23,164,226,32,133,6,100,7,72,169]},{"1060601":[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,42,175,44,175,48,175]},{"1060651":[255]},{"1060653":[128,128,255]},{"1060657":[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]},{"1060738":[194,32,191,37,192,126,24,105,4]},{"1060748":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060764":[159,47,192,126,191,41,192,126,24,105,16]},{"1060776":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060810":[72,165,2,72,169,16,128,133]},{"1060819":[169,48]},{"1060822":[133,2,169,2]},{"1060827":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,107,72,189,128,14,34,95,150,160,104,107,72,188,128,14,104,34,37,144,160,107,169,8,157,80,15,169]},{"1060874":[143]},{"1060876":[80,127,32,113,176,34,249,149,160,107,72,175]},{"1060889":[80,127,240,6,34,8,176,160,128,7,32,113,176,34,176,150,160,104,107,32,113,176,201,36,208,24,90,160,36,34,72,184,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,72,165,160,201,115,208,6,175,98,227,48,128,12,201,140,208,6,175,99,227,48,128,2,169]},{"1060964":[143,152,192,126,104,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,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]},{"1061270":[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]},{"1061337":[191,162,178,160,197,4,144,3,232,128,245,191,163,178,160,133,6,100,7,194,32,138,10,10,170,191,164,178,160,141,232,80,191,166,178,160,141,234,80,173]},{"1061378":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061396":[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,142,176,173,236,80,10,10,170,189]},{"1061433":[81,56,229,8,157]},{"1061439":[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]},{"1061471":[81,141,228,80,189,2,81,141,230,80,32,142,176,173]},{"1061486":[81,56,229,8,141]},{"1061492":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,138,176,160,141,232,80,173,234,80,239,140,176,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,34,39,145,160,72,165,138,201,3,240,6,34,181,178,160,128,4,34,168,178,160,104,107,34,175,135,160,72,34,249,149,160,169,1,143,51,80,127,143,52,80,127,34,208,178,160,169,235,143]},{"1061634":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061658":[13,165,33,153,32,13,169]},{"1061666":[153,32,15,169,127,153,112,15,107,72,8,34,85,179,160,144,31,156,18,1,156,239,3,169]},{"1061691":[133,93,194,32,165,138,201,48]},{"1061700":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061724":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061737":[128,16,201,48]},{"1061742":[208,11,165,34,201]},{"1061748":[2,144,4,56,130,1]},{"1061755":[24,226,32,107,191,79,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061776":[226,32,34,16,247,8,169,52,145,144,200,191,79,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061811":[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]},{"1061873":[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,93,180,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]},{"1062020":[13,173,219,15,233]},{"1062026":[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]},{"1062065":[13,173,219,15,233]},{"1062071":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062096":[254,127,208,245,169,4,107,34,162,222,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,180,222,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,180,222,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062169":[107,169]},{"1062172":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,142,181,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,142,181,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,142,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,142,181,160,107,218,8,194,32,41,127]},{"1062293":[10,170,191]},{"1062297":[82,127,26,41,255,3,159]},{"1062305":[82,127,170,10,191]},{"1062311":[128,175,40,250,107,218,8,194,48,162]},{"1062323":[191,227,181,160,159]},{"1062329":[82,127,232,232,191,227,181,160,159]},{"1062339":[82,127,232,232,191,227,181,160,159]},{"1062349":[82,127,232,232,191,227,181,160,159]},{"1062359":[82,127,232,232,224,127]},{"1062366":[144,211,40,250,107]},{"1062373":[64]},{"1062375":[128]},{"1062377":[192]},{"1062380":[1,64,1,128,1,192,1]},{"1062388":[2,64,2,128,2,192,2]},{"1062396":[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,3,182,160,175,35,128,48,208,4,34,35,182,160,104,107,72,169]},{"1062498":[143,65,80,127,175,34,128,48,201,1,208,4,34,3,182,160,175,35,128,48,201,1,208,4,34,35,182,160,104,107,72,175,34,128,48,201,2,208,4,34,3,182,160,175,35,128,48,201,2,208,4,34,35,182,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]},{"1062664":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062681":[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]},{"1062752":[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]},{"1062788":[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,215,183,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]},{"1062913":[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]},{"1062939":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062959":[2,156,5,2,169]},{"1062965":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,57,185,72,218,8,175,152,192,126,240,3,130,229]},{"1062996":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063013":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063030":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063047":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063064":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063081":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063098":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063115":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063138":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063155":[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]},{"1063188":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063211":[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]},{"1063243":[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]},{"1063301":[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]},{"1063327":[192,59,208,3,130,96]},{"1063334":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063359":[201,15,1,208,3,130,59]},{"1063367":[201,16,1,208,3,130,51]},{"1063375":[201,28,1,208,3,130,43]},{"1063383":[201,31,1,208,3,130,35]},{"1063391":[201,255]},{"1063394":[208,3,130,27]},{"1063399":[201,20,1,208,3,130,19]},{"1063407":[201,21,1,208,3,130,11]},{"1063415":[201,22,1,208,3,130,3]},{"1063423":[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]},{"1063455":[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]},{"1063608":[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]},{"1063646":[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]},{"1063684":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063702":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063720":[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]},{"1063756":[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]},{"1063794":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063812":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,37,192,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]},{"1063916":[208,9,32,191,190,32,240,190,130,64,2,192,1,208,6,32,191,190,130,54,2,192,2,208,6,32,191,190,130,44,2,192,3,208,6,32,191,190,130,34,2,192,4,208,6,32,240,190,130,24,2,192,5,208,6,32,240,190,130,14,2,192,6,208,6,32,240,190,130,4,2,192,7,144,10,192,14,176,6,32,33,191,130,246,1,192,20,208,9,32,125,190,32,33,191,130,233,1,192,15,144,10,192,23,176,6,32,33,191,130,219,1,192,23,208,6,32,133,191,130,209,1,192,24,144,10,192,26,176,6,32,33,191,130,195,1,192,26,208,9,32,158,190,32,33,191,130,182,1,192,29,208,6,32,33,191,130,172,1,192,27,144,10,192,32,176,6,32,45,191,130,158,1,192,32,208,6,32,173,191,130,148,1,192,33,208,6,32,33,191,130,138,1,192,34,144,10,192,36,176,6,32,201,191,130,124,1,192,36,208,6,32,217,191,130,114,1,192,37,208,6,32,249,191,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,65,192,130,87,1,192,40,208,6,32,65,192,130,77,1,192,41,208,6,32,33,191,130,67,1,192,42,144,10,192,46,176,6,32,33,191,130,53,1,192,49,208,6,32,65,192,130,43,1,192,50,208,6,32,25,192,130,33,1,192,51,208,6,32,87,192,130,23,1,192,55,144,10,192,58,176,6,32,73,191,130,9,1,192,58,144,10,192,60,176,6,32,14,191,130,251]},{"1064252":[192,60,208,6,32,33,191,130,241]},{"1064262":[192,61,208,6,32,33,191,130,231]},{"1064272":[192,62,144,10,192,64,176,6,32,161,191,130,217]},{"1064286":[192,72,208,6,32,33,191,130,207]},{"1064296":[192,73,208,6,32,191,190,130,197]},{"1064306":[192,74,208,9,32,125,190,32,33,191,130,184]},{"1064319":[192,75,208,9,32,92,190,32,45,191,130,171]},{"1064332":[192,76,208,9,32,101,191,32,65,192,130,158]},{"1064345":[192,77,144,10,192,80,176,6,32,101,191,130,144]},{"1064359":[192,80,208,6,32,191,190,130,134]},{"1064369":[192,81,144,10,192,85,176,6,32,101,191,130,120]},{"1064383":[192,88,208,6,32,14,191,130,110]},{"1064393":[192,94,208,6,32,191,190,130,100]},{"1064403":[192,95,208,6,32,240,190,130,90]},{"1064413":[192,96,208,6,32,201,191,130,80]},{"1064423":[192,97,208,6,32,45,191,130,70]},{"1064433":[192,100,144,10,192,102,176,6,32,14,191,130,56]},{"1064447":[192,112,144,10,192,128,176,6,32,87,192,130,42]},{"1064461":[192,128,144,10,192,144,176,6,32,249,191,130,28]},{"1064475":[192,144,144,10,192,160,176,6,32,25,192,130,14]},{"1064489":[192,160,144,10,192,176,176,6,32,217,191,130]},{"1064503":[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,59,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064655":[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,217,191,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,33,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,103,192,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,198,237,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]},{"1065251":[201,2]},{"1065254":[208,14,175,140,243,126,41,192]},{"1065263":[201,192]},{"1065266":[240,79,128,64,201,1]},{"1065273":[208,14,175,142,243,126,41,192]},{"1065282":[201,192]},{"1065285":[240,60,128,45,201,5]},{"1065292":[208,14,175,140,243,126,41,48]},{"1065301":[201,48]},{"1065304":[240,41,128,26,201,13]},{"1065311":[208,16,175,140,243,126,137,4]},{"1065320":[240,12,41,3]},{"1065325":[208,20,128,5,201,16]},{"1065332":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065345":[208,5,169,79,61,128,6,32,146,193,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]},{"1065392":[41,255,239,153,4]},{"1065398":[185,62]},{"1065401":[41,255,239,153,62]},{"1065407":[185,68]},{"1065410":[41,255,239,153,68]},{"1065416":[185,128]},{"1065419":[41,255,239,153,128]},{"1065425":[185,130]},{"1065428":[41,255,239,153,130]},{"1065434":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065455":[41,255,239,153,132]},{"1065461":[185,126]},{"1065464":[41,255,239,153,126]},{"1065470":[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]},{"1065508":[201,144]},{"1065511":[208,3,169,127]},{"1065516":[9]},{"1065518":[36,143,100,199,126,165,5,41,255]},{"1065528":[9]},{"1065530":[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,59,240,160,34,189,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065634":[72,165,2,72,169,16,128,133]},{"1065643":[169,48]},{"1065646":[133,2,169,4]},{"1065651":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,249,149,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,28,175]},{"1065697":[80,127,240,15,189,160,13,34,249,149,160,169]},{"1065710":[143]},{"1065712":[80,127,128,7,189,160,13,34,95,150,160,107,169]},{"1065726":[157,192,13,72,169,1,143]},{"1065734":[80,127,165,93,201,20,240,60,169]},{"1065744":[143]},{"1065746":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065766":[72,165,2,72,169,16,128,133]},{"1065775":[169,48]},{"1065778":[133,2,169,3]},{"1065783":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,104,107,72,90,175]},{"1065808":[80,127,240,6,34,1,195,160,128,7,189,128,14,34,95,150,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]},{"1065851":[72,165,2,72,169,16,128,133]},{"1065860":[169,48]},{"1065863":[133,2,169,4]},{"1065868":[34,67,147,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,141,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]},{"1065926":[143,68,243,126,107,175,123,243,126,41,255]},{"1065938":[201,2]},{"1065941":[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]},{"1065974":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065989":[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]},{"1066025":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066039":[173,91,3,41,1,208,3,130,134]},{"1066049":[90,8,139,75,171,226,48,165,27,240,3,76,196,196,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066086":[129,48,143]},{"1066090":[254,127,34,93,246,29,162]},{"1066098":[165,47,201,4,240,1,232,191,200,196,160,153,80,13,169]},{"1066114":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,202,196,160,41,240,153,16,13,165,35,105]},{"1066148":[153,48,13,165,32,24,105,22,41,240,153]},{"1066160":[13,165,33,105]},{"1066165":[153,32,13,169]},{"1066170":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066187":[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]},{"1066218":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066239":[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,2,153,160,92,53,207,30,175,195,225,29,34,249,149,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066301":[92,82,223,29,175,133,225,29,34,249,149,160,107,165,138,201,129,208,12,169,1,143]},{"1066324":[80,127,175,195,225,29,128,4,175,133,225,29,34,95,150,160,107,72,165,138,201,129,208,14,34,186,143,160,175,96,227,48,143,152,192,126,128,12,34,24,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,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066410":[72,165,2,72,169,64,129,133]},{"1066419":[169,48]},{"1066422":[133,2,169,10]},{"1066427":[34,67,147,164,250,134,2,250,134,1,40,250,34,249,149,160,169,235,143]},{"1066447":[254,127,34,93,246,29,162]},{"1066455":[165,47,201,4,240,1,232,191,52,198,160,153,80,13,169]},{"1066471":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,54,198,160,41,240,153,16,13,165,35,105]},{"1066505":[153,48,13,165,32,24,105,22,41,240,153]},{"1066517":[13,165,33,105]},{"1066522":[153,32,13,169]},{"1066527":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066551":[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]},{"1066630":[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]},{"1066657":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,146,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066696":[72,165,2,72,169,16,128,133]},{"1066705":[169,48]},{"1066708":[133,2,169,5]},{"1066713":[34,67,147,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]},{"1066767":[201,35,208,6,160,93,92,71,213]},{"1066777":[201,72,208,6,160,96,92,71,213]},{"1066787":[201,36,176,6,160,91,92,71,213]},{"1066797":[201,55,176,6,160,92,92,71,213]},{"1066807":[201,57,176,6,160,93,92,71,213]},{"1066817":[160,50,92,71,213]},{"1066823":[192,9,48]},{"1066827":[96]},{"1066829":[144]},{"1066831":[192]},{"1066834":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066858":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066876":[9,48,9,96,9,144,9,240,9]},{"1066887":[240]},{"1066889":[32,10,80,10,96,6]},{"1066896":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1066918":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1066934":[6,48,6]},{"1066938":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1066954":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066975":[127,71,199,160,107,165]},{"1066982":[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]},{"1067013":[132,175,24,105]},{"1067018":[136,133]},{"1067021":[226,32,169,175,133,2,34,233,225,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,113,218,160,162,1,128,2,162]},{"1067079":[171,40,122,104,133,2,104,133,1,104,133]},{"1067091":[96,218,173,216,2,34,31,226,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067574":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,113,218,160,130,84,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,113,218,160,130,40,1,201,109,208,7,34,232,184,164,130,29,1,201,110,208,7,34,232,184,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067821":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067838":[56,233,8,170,169,1,224]},{"1067846":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067869":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067888":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1067905":[56,233,8,170,169,1,224]},{"1067913":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1067936":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067955":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1067972":[56,233,8,170,169,1,224]},{"1067980":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1068003":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068025":[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,19]},{"1068057":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068076":[250,173,233,2,201,1,107,72,218,34,191,237,160,173,216,2,72,175,152,192,126,208,12,104,32,32,218,141,216,2,32,246,217,128,1,104,201,22,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,16,2,201,43,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,249,1,201,44,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,226,1,201,45,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,203,1,201,60,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,180,1,201,61,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,157,1,201,72,208,19,32,81,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,134,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,116,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,92,1,201]},{"1068317":[208,8,169,73,141,216,2,130,80,1,201,1,208,8,169,80,141,216,2,130,68,1,201,2,208,8,169,2,141,216,2,130,56,1,169,3,141,216,2,130,48,1,201,95,208,122,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,18,1,175,22,244,126,41,192,208,28,169,4,141,216,2,175,152,192,126,240,3,130,252]},{"1068411":[175,22,244,126,24,105,64,143,22,244,126,130,238]},{"1068425":[201,64,208,28,169,5,141,216,2,175,152,192,126,240,3,130,220]},{"1068443":[175,22,244,126,24,105,64,143,22,244,126,130,206]},{"1068457":[169,6,141,216,2,175,152,192,126,240,3,130,192]},{"1068471":[175,22,244,126,24,105,64,143,22,244,126,130,178]},{"1068485":[201,96,208,40,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,154]},{"1068509":[201]},{"1068511":[208,8,169,34,141,216,2,130,142]},{"1068521":[169,35,141,216,2,130,134]},{"1068529":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,116]},{"1068547":[169,28,141,216,2,130,108]},{"1068555":[201,100,208,40,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,82]},{"1068581":[201]},{"1068583":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,201,101,208,18,175,152,192,126,208,10,175,142,243,126,9,32,143,142,243,126,128,194,201,98,208,19,34,9,217,160,141,216,2,235,32,148,217,169,255,143,144,80,127,128,19,201,99,208,15,34,197,217,160,141,216,2,169,255,143,144,80,127,128]},{"1068663":[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]},{"1068918":[4,4,4,4,4,5]},{"1068930":[4]},{"1068932":[4]},{"1068935":[4]},{"1068947":[4]},{"1068953":[5]},{"1068963":[4,4,4]},{"1068977":[4,4]},{"1068980":[4]},{"1068984":[4]},{"1068991":[4]},{"1069000":[4]},{"1069071":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069151":[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]},{"1069200":[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]},{"1069239":[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,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]},{"1069396":[2,2]},{"1069404":[2,2,2,2,2,2]},{"1069411":[2]},{"1069413":[2,2]},{"1069416":[2,2,2,2,2,2,2,2,2,2,2]},{"1069428":[2,2,2,2,2]},{"1069434":[2,2,2,2,2,2,2,2,2]},{"1069446":[2,2,2,2,2,2,2,2,2,2,2]},{"1069459":[2]},{"1069461":[2,2,2]},{"1069465":[2,2,2,2,2,2]},{"1069472":[2,2,2,2,2,2,2,2]},{"1069481":[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]},{"1069567":[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]},{"1069753":[4,4,4]},{"1069759":[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,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,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]},{"1070672":[128]},{"1070674":[64]},{"1070676":[32]},{"1070678":[16]},{"1070680":[8]},{"1070682":[4]},{"1070684":[2]},{"1070686":[1,128]},{"1070689":[64]},{"1070691":[32]},{"1070693":[16]},{"1070695":[8]},{"1070697":[4]},{"1070928":[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,32,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,158,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,158,216,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]},{"1071382":[160,48,107,162]},{"1071387":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071400":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071414":[168,152,32,112,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071434":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071458":[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]},{"1071498":[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]},{"1071535":[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]},{"1071574":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071587":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071610":[191]},{"1071612":[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]},{"1071652":[191]},{"1071654":[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,162]},{"1071699":[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,96,100,17,100,176,92,102,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071762":[13,24,105,3,107,189,32,14,201,136,208,9,32,207,218,201,4,144,1,58,107,32,207,218,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071808":[200,49,74,74,74,74,107,40,191]},{"1071818":[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]},{"1071868":[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]},{"1071902":[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,10,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]},{"1072104":[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]},{"1072159":[143,96,243,126,226,32,34,133,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072185":[165,27,240,121,194,32,165,160,201,14]},{"1072196":[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]},{"1072231":[201,126]},{"1072234":[208,33,165,34,41,255,1,201,104]},{"1072244":[144,60,201,136]},{"1072249":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072269":[201,222]},{"1072272":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072297":[144,7,201,154]},{"1072302":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,22,221,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,22,221,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,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]},{"1072512":[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]},{"1072572":[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,195,221,160,107,143,111,243,126,218,175,67,244,126,208,4,34,213,191,160,34,100,155,160,90,160,24,34,59,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,213,191,160,34,100,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072691":[208,11,40,90,160,24,34,59,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,100,155,160,107,72,175,67,244,126,208,4,34,99,192,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,195,221,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,195,221,160,104,34,168,160,2,107,58,16,8,169]},{"1072947":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1072961":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,195,221,169,1,143]},{"1072987":[80,127,156,70,6,156,66,6,76,195,221,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,99,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073199":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073230":[32,137,64,240,4,92,220,128]},{"1073239":[173]},{"1073241":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073266":[143,155,80,127,92,220,128]},{"1073274":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073293":[173,39,1,205,41,1,208,4,92,220,128]},{"1073305":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073335":[224,255,208,4,92,220,128]},{"1073343":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073359":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073375":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073392":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073405":[142,4,32,156,5,32,156,7,32,191]},{"1073416":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073429":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073465":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073478":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073534":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073547":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073597":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073615":[87,127,107,191]},{"1073620":[18,127,107,156,240,28,156,241,28,169]},{"1073631":[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]},{"1073663":[226,32,183]},{"1073667":[159]},{"1073669":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073688":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073712":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073730":[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]},{"1073756":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073774":[226,32,183]},{"1073778":[159]},{"1073780":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073799":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073819":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073837":[226,32,183]},{"1073841":[159]},{"1073843":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073862":[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]},{"1073893":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073911":[226,32,183]},{"1073915":[159]},{"1073917":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073936":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073956":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073974":[226,32,183]},{"1073978":[159]},{"1073980":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073999":[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]},{"1074028":[133]},{"1074030":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074048":[226,32,183]},{"1074052":[159]},{"1074054":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074073":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074093":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074111":[226,32,183]},{"1074115":[159]},{"1074117":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074136":[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]},{"1074167":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074185":[226,32,183]},{"1074189":[159]},{"1074191":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074210":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074230":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074248":[226,32,183]},{"1074252":[159]},{"1074254":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074273":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074294":[133]},{"1074296":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074314":[226,32,183]},{"1074318":[159]},{"1074320":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074339":[143,148,80,127,226,32,130,213]},{"1074348":[201,128,208,56,169,52,133]},{"1074356":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074374":[226,32,183]},{"1074378":[159]},{"1074380":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074399":[143,148,80,127,226,32,130,153]},{"1074408":[201,144,208,55,169,112,133]},{"1074416":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074434":[226,32,183]},{"1074438":[159]},{"1074440":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074459":[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]},{"1074486":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074504":[226,32,183]},{"1074508":[159]},{"1074510":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074529":[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]},{"1074608":[208,56,169,216,133]},{"1074614":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074632":[226,32,183]},{"1074636":[159]},{"1074638":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074657":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074674":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074692":[226,32,183]},{"1074696":[159]},{"1074698":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074717":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074734":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074752":[226,32,183]},{"1074756":[159]},{"1074758":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074777":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074794":[169,129,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,203,2,201,4,208,56,169,60,133]},{"1074854":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074872":[226,32,183]},{"1074876":[159]},{"1074878":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074897":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074914":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074932":[226,32,183]},{"1074936":[159]},{"1074938":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074957":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1074974":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074992":[226,32,183]},{"1074996":[159]},{"1074998":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075017":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075034":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075052":[226,32,183]},{"1075056":[159]},{"1075058":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075077":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075094":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075112":[226,32,183]},{"1075116":[159]},{"1075118":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075137":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075154":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075172":[226,32,183]},{"1075176":[159]},{"1075178":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075197":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075214":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075232":[226,32,183]},{"1075236":[159]},{"1075238":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075257":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075274":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075292":[226,32,183]},{"1075296":[159]},{"1075298":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075317":[143,148,80,127,226,32,130,235]},{"1075326":[201,12,208,56,169,12,133]},{"1075334":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075352":[226,32,183]},{"1075356":[159]},{"1075358":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075377":[143,148,80,127,226,32,130,175]},{"1075386":[201,13,208,55,169,41,133]},{"1075394":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075412":[226,32,183]},{"1075416":[159]},{"1075418":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075437":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075453":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075471":[226,32,183]},{"1075475":[159]},{"1075477":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075496":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075512":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075530":[226,32,183]},{"1075534":[159]},{"1075536":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075555":[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]},{"1075588":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075603":[171,40,122,250,104,107,34,78,216]},{"1075613":[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]},{"1075677":[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,19,235,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,19,235,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]},{"1075948":[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]},{"1075993":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076017":[226,48,160]},{"1076021":[183]},{"1076023":[201,254,208,39,200,183]},{"1076030":[201,110,208,32,200,183]},{"1076037":[208,27,200,183]},{"1076042":[201,254,208,20,200,183]},{"1076049":[201,107,208,13,200,183]},{"1076056":[201,4,208,6,156,232,28,130,19]},{"1076066":[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]},{"1076094":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076111":[10,10,69,138,41,8]},{"1076118":[240,6,152,24,105,16]},{"1076125":[168,165,35,41,2]},{"1076131":[74,69,138,41,1]},{"1076137":[240,4,152,26,26,168,152,41,255]},{"1076147":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,67,246,160,34,166,170,164,34]},{"1076179":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,80,222,160,107,194,16,34,61,137]},{"1076375":[169,7,141,12,33,175,240,244,126,208,10,34,248,236,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076427":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076507":[191]},{"1076509":[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]},{"1076583":[107,34,120,152,160,34,72,247,160,107,34,235,152,160,34,244,152,160,162,4,107,34,72,247,160,169,20,133,17,107,34,72,247,160,107,34,63,132,160,34,208,152,160,34,195,221,160,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]},{"1076658":[2,107,169]},{"1076662":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,2,153,160,107,169]},{"1076685":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,13,235,160,169]},{"1076707":[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]},{"1076743":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076768":[208,4,169]},{"1076773":[107,201,1]},{"1076777":[208,16,175,197,243,126,41,15]},{"1076786":[201,2]},{"1076789":[176,84,32,143,238,107,201,2]},{"1076798":[208,75,32,143,238,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076822":[107,175,74,128,48,41,255]},{"1076830":[240,43,175,195,242,126,41,32]},{"1076839":[208,34,173,8,3,41,128]},{"1076847":[240,4,169,1]},{"1076852":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076874":[107,169]},{"1076878":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076901":[96,169]},{"1076905":[96,175,76,128,48,41,255]},{"1076913":[240,4,92,90,189,27,224,118]},{"1076922":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1076939":[72,170,191,64,130,48,208,3,130,175]},{"1076950":[58,133]},{"1076953":[10,10,24,101]},{"1076958":[10,10,170,169,22]},{"1076964":[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]},{"1076992":[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]},{"1077035":[137,128]},{"1077038":[240,3,9]},{"1077042":[255,143,106,193,126,191,98,130,48,41,255]},{"1077054":[137,128]},{"1077057":[240,3,9]},{"1077061":[255,143,110,193,126,169]},{"1077069":[56,239,106,193,126,143,108,193,126,169]},{"1077081":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077097":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077115":[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]},{"1077192":[165]},{"1077194":[223]},{"1077196":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077216":[165]},{"1077218":[223]},{"1077220":[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]},{"1077266":[175,74,128,48,41,255]},{"1077273":[240,25,175,93]},{"1077279":[41,255]},{"1077282":[201,20]},{"1077285":[208,13,165,138,41,64]},{"1077292":[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]},{"1077349":[107,104,141,228,2,141,193,15,141,16,7,107,34,122,240,160,34,231,240,160,107,169,14,143,1,40]},{"1077376":[169,4,143,1,40]},{"1077382":[169,13,143,1,40]},{"1077388":[169,14,143,1,40]},{"1077394":[169]},{"1077396":[143,1,40]},{"1077400":[169]},{"1077402":[143,1,40]},{"1077406":[169]},{"1077408":[143,1,40]},{"1077412":[169]},{"1077414":[143,1,40]},{"1077418":[169]},{"1077420":[143,1,40]},{"1077424":[169]},{"1077426":[143,1,40]},{"1077430":[169]},{"1077432":[143,1,40]},{"1077436":[169,1,143,1,40]},{"1077442":[169]},{"1077444":[143,1,40]},{"1077448":[169,1,143,1,40]},{"1077454":[169]},{"1077456":[143,1,40]},{"1077460":[169]},{"1077462":[143,1,40]},{"1077466":[169,10,143,1,40]},{"1077472":[169,13,143,1,40]},{"1077478":[107,72,218,162]},{"1077483":[175]},{"1077485":[40]},{"1077487":[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]},{"1077514":[175]},{"1077516":[40]},{"1077518":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077532":[232,128,235,56,175]},{"1077538":[40]},{"1077540":[72,175]},{"1077543":[40]},{"1077545":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077563":[175]},{"1077565":[40]},{"1077567":[72,175]},{"1077570":[40]},{"1077572":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077592":[40]},{"1077594":[72,175]},{"1077597":[40]},{"1077599":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077619":[40]},{"1077621":[72,175]},{"1077624":[40]},{"1077626":[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]},{"1077711":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077729":[133]},{"1077731":[165,3,41,255]},{"1077736":[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,26,242,160,132,2,100,3,24,101]},{"1077778":[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]},{"1077833":[175]},{"1077835":[40]},{"1077837":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077851":[232,128,235,56,175]},{"1077857":[40]},{"1077859":[72,175]},{"1077862":[40]},{"1077864":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077882":[175]},{"1077884":[40]},{"1077886":[72,175]},{"1077889":[40]},{"1077891":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077911":[40]},{"1077913":[72,175]},{"1077916":[40]},{"1077918":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077938":[40]},{"1077940":[72,175]},{"1077943":[40]},{"1077945":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1077965":[40]},{"1077967":[133,4,175]},{"1077971":[40]},{"1077973":[72,175]},{"1077976":[40]},{"1077978":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1077998":[40]},{"1078000":[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]},{"1078069":[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,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]},{"1078159":[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]},{"1078193":[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]},{"1078292":[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]},{"1078323":[201,2]},{"1078326":[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]},{"1078358":[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,65,246,160,144,10,208,8,175,140,80,127,207,63,246,160,144,114,175,145,129,48,41,255]},{"1078414":[208,24,169,2]},{"1078419":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078443":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078456":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078470":[143,142,80,127,169,1]},{"1078477":[143,126,80,127,128,54,201,2]},{"1078486":[208,24,169,2]},{"1078491":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,113,218,160,194,48,96,175,146,129,48,41,255]},{"1078528":[240,7,169]},{"1078533":[143,126,80,127,175,142,80,127,207,53,246,160,144,10,208,8,175,140,80,127,207,51,246,160,144,53,175,128,80,127,26,201,10]},{"1078567":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078581":[143,128,80,127,175,140,80,127,56,239,51,246,160,143,140,80,127,175,142,80,127,239,53,246,160,143,142,80,127,128,181,175,142,80,127,207,57,246,160,144,10,208,8,175,140,80,127,207,55,246,160,144,53,175,132,80,127,26,201,10]},{"1078642":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078656":[143,132,80,127,175,140,80,127,56,239,55,246,160,143,140,80,127,175,142,80,127,239,57,246,160,143,142,80,127,128,181,175,142,80,127,207,61,246,160,144,10,208,8,175,140,80,127,207,59,246,160,144,53,175,136,80,127,26,201,10]},{"1078717":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078731":[143,136,80,127,175,140,80,127,56,239,59,246,160,143,140,80,127,175,142,80,127,239,61,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]},{"1078839":[16,14]},{"1078843":[60]},{"1078847":[255,255,255,127,175,204,80,127,41,255]},{"1078858":[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]},{"1078929":[240,93,175,145,129,48,41,255]},{"1078938":[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]},{"1079031":[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]},{"1079106":[208,3,32,17,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079136":[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]},{"1079170":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079254":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,84,223,160,34,58,135,1,194,16,166,160,191,210,250,160,226,16,34,156,135]},{"1079364":[86,248,160,87,248,160,228,248,160,113,249,160,254,249,160,104,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079400":[32,126,232,232,159]},{"1079406":[32,126,232,232,159]},{"1079412":[32,126,232,232,159]},{"1079418":[32,126,232,232,162,220,25,159]},{"1079427":[32,126,232,232,169,202,12,159]},{"1079436":[32,126,232,232,169,203,12,159]},{"1079445":[32,126,232,232,169,208,8,159]},{"1079454":[32,126,232,232,162,92,26,159]},{"1079463":[32,126,232,232,169,218,12,159]},{"1079472":[32,126,232,232,169,219,12,159]},{"1079481":[32,126,232,232,169,208,8,159]},{"1079490":[32,126,232,232,162,220,26,159]},{"1079499":[32,126,232,232,159]},{"1079505":[32,126,232,232,159]},{"1079511":[32,126,232,232,159]},{"1079517":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079541":[32,126,232,232,159]},{"1079547":[32,126,232,232,159]},{"1079553":[32,126,232,232,159]},{"1079559":[32,126,232,232,162,156,25,159]},{"1079568":[32,126,232,232,169,202,12,159]},{"1079577":[32,126,232,232,169,203,12,159]},{"1079586":[32,126,232,232,169,208,8,159]},{"1079595":[32,126,232,232,162,28,26,159]},{"1079604":[32,126,232,232,169,218,12,159]},{"1079613":[32,126,232,232,169,219,12,159]},{"1079622":[32,126,232,232,169,208,8,159]},{"1079631":[32,126,232,232,162,156,26,159]},{"1079640":[32,126,232,232,159]},{"1079646":[32,126,232,232,159]},{"1079652":[32,126,232,232,159]},{"1079658":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079682":[32,126,232,232,159]},{"1079688":[32,126,232,232,159]},{"1079694":[32,126,232,232,159]},{"1079700":[32,126,232,232,162,220,9,159]},{"1079709":[32,126,232,232,169,202,12,159]},{"1079718":[32,126,232,232,169,203,12,159]},{"1079727":[32,126,232,232,169,208,8,159]},{"1079736":[32,126,232,232,162,92,10,159]},{"1079745":[32,126,232,232,169,218,12,159]},{"1079754":[32,126,232,232,169,219,12,159]},{"1079763":[32,126,232,232,169,208,8,159]},{"1079772":[32,126,232,232,162,220,10,159]},{"1079781":[32,126,232,232,159]},{"1079787":[32,126,232,232,159]},{"1079793":[32,126,232,232,159]},{"1079799":[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]},{"1080032":[1]},{"1080114":[5]},{"1080116":[4]},{"1080144":[2]},{"1080240":[3]},{"1080338":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080355":[134,1,133,2,32,18,252,176,4,92,83,230]},{"1080368":[169,49,133,2,194,32,169]},{"1080376":[192,133]},{"1080379":[162,128,167]},{"1080383":[141,24,33,230]},{"1080388":[230]},{"1080390":[167]},{"1080392":[141,24,33,230]},{"1080397":[230]},{"1080399":[167]},{"1080401":[141,24,33,230]},{"1080406":[230]},{"1080408":[167]},{"1080410":[141,24,33,230]},{"1080415":[230]},{"1080417":[167]},{"1080419":[141,24,33,230]},{"1080424":[230]},{"1080426":[167]},{"1080428":[141,24,33,230]},{"1080433":[230]},{"1080435":[167]},{"1080437":[141,24,33,230]},{"1080442":[230]},{"1080444":[167]},{"1080446":[141,24,33,230]},{"1080451":[230]},{"1080453":[202,208,181,226,32,92,81,230]},{"1080462":[226,48,175,248,194,126,168,32,18,252,194,48,176,10,162]},{"1080479":[160,64]},{"1080482":[92,104,223]},{"1080486":[162]},{"1080488":[192,160]},{"1080492":[169]},{"1080494":[8,139,84,127,177,171,162]},{"1080502":[8,169]},{"1080505":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,237,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,175,167,160,40,175,67,244,126,41,255]},{"1081469":[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,85,151,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]},{"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,224,234,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,241,234,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,233,151,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,233,151,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,71,131,165,242,137,32,208,13,128,36,32,129,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,224,182,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,157,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,157,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,157,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,157,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,205,177,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,205,177,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194114":[83,127,201,3,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,181,185,164,226,48,169]},{"1194152":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194210":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194268":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,64,185,34,231,244,30,32,128,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,96,133,8,169,185,105]},{"1194325":[133,9,34,117,223,5,34,92,220,6,96]},{"1194338":[247,255,198]},{"1194343":[2]},{"1194348":[200]},{"1194351":[2]},{"1194354":[248,255,198]},{"1194359":[2]},{"1194364":[202,64]},{"1194367":[2,175,103,129,48,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,113,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194425":[84,34,63,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194451":[98,41,110,41,107,41,105,41,127]},{"1194461":[111,41,97,41,106,41,112,41,127]},{"1194471":[112,41,107,41,127]},{"1194477":[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]},{"1194524":[33,218,162,128,142]},{"1194530":[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]},{"1194558":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194575":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194666":[208,33,8,194,48,162]},{"1194674":[224,64]},{"1194677":[176,11,169,127]},{"1194682":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194705":[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]},{"1194752":[240,7,224,2,240,3,130,137]},{"1194761":[130,132]},{"1194764":[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]},{"1194910":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194927":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194943":[224,28]},{"1194946":[176,12,191,193,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194963":[175,211,244,126,41,255]},{"1194970":[58,201,64]},{"1194974":[176,63,10,10,10,10,10,170,192,60]},{"1194985":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195008":[176,11,169,127]},{"1195013":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,72,184,160,122,218,90,8,194,48,162]},{"1195169":[224,16]},{"1195172":[176,12,191,221,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195189":[175,152,192,126,41,255]},{"1195196":[58,201,64]},{"1195200":[176,63,10,10,10,10,10,170,192,48]},{"1195211":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195234":[176,11,169,127]},{"1195239":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,99,224,160,234]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,155,199,160]},{"21847":[34,115,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,215,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,106,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[143,163,160]},{"30994":[17,164,160]},{"31001":[143,163,160]},{"31011":[17,164,160]},{"31046":[12,222,160]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[243,221,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,56,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,144,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,40,188,164]},{"60790":[15,223,160]},{"61077":[61,181,160]},{"61133":[34,141,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,206,237,160]},{"65607":[218,236,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,120,194,160,234]},{"65894":[34,166,194,160]},{"66284":[34,201,194,160]},{"66292":[92,234,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,208,239,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,160,223,160,234,234]},{"67934":[119,248,160]},{"68495":[34,23,155,160,208,6,234]},{"68584":[123,248,160]},{"69776":[34,23,155,160,208,4,234]},{"70410":[123,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,227,247,160,234]},{"72216":[197,221,160]},{"72241":[34,166,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[209,236,160]},{"73340":[34,241,128,160,234]},{"73937":[34,182,194,160]},{"74833":[34,213,130,164]},{"76423":[34,211,237,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]},{"78172":[34,59,223,160,34,219,153,160,234,234]},{"79603":[34,249,221,160]},{"79767":[34,175,223,160]},{"82676":[123,248,160]},{"87892":[34,192,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,13,239,160]},{"90651":[34,49,236,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[114,188,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[128,181,160]},{"173058":[128,181,160]},{"173307":[128,181,160]},{"173320":[128,181,160]},{"183384":[34,109,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[91,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,92,235,160,128,13]},{"189655":[34,45,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[57,188,164]},{"191439":[34,74,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,94,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,114,195,160,234]},{"192121":[202,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,43,179,160]},{"193157":[34,36,179,160]},{"193440":[34,224,219,160]},{"193472":[241,234,160]},{"193546":[34,224,219,160]},{"193578":[185,234,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[242,194,160]},{"194141":[34,226,195,160,234,234,234,234,234]},{"194177":[34,72,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,92,235,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,72,199,160]},{"195589":[122,176,160]},{"195710":[34,150,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[83,176,160]},{"195909":[93,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[201,192,160]},{"198721":[34,194,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,41,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[20,176,160]},{"199993":[34,103,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,206,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,20,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[76,188,164]},{"212610":[95,188,164]},{"213139":[34,185,164]},{"213169":[147,133,160]},{"214205":[34,201,180,160]},{"214972":[91,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,92,222,160]},{"217579":[34,107,193,160]},{"224597":[34,224,218,160]},{"224693":[34,244,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,2,220,160,234]},{"226304":[34,53,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,177,237,160]},{"229634":[34,124,186,164]},{"230816":[73,179,160]},{"230955":[73,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,186,237,160,234]},{"233987":[98,221,160]},{"234731":[34,191,221,160]},{"234747":[34,197,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[201,204,160]},{"236047":[75,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[26,198,160]},{"238498":[34,163,196,160,128,3]},{"238562":[34,230,198,160,240,4,234]},{"238751":[34,118,220,160]},{"238964":[34,118,220,160]},{"239190":[34,118,220,160]},{"239964":[85,223,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,86,219,160]},{"241165":[34,86,219,160]},{"241175":[34,235,128,164]},{"241294":[34,86,219,160]},{"241304":[34,235,128,164]},{"241814":[34,86,219,160,24,125,139,176]},{"241869":[86,235,160]},{"241877":[34,86,219,160,24,125,139,176]},{"242942":[34,202,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,212,222,160,234]},{"243067":[234,234,34,165,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,116,219,160,234]},{"250478":[34,170,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,183,243,160,234]},{"273608":[34,197,182,160,76,230,172]},{"275716":[34,169,182,160,234]},{"276202":[34,230,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,94,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,20,238,160,234,234]},{"279880":[92,17,189,164]},{"280037":[34,234,233,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[86,235,160]},{"280106":[92,163,225,160,234]},{"280265":[152,210,160]},{"280287":[152,209,160]},{"280314":[152,210,160]},{"280335":[34,229,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,101,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,86,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,234,200,160,234]},{"296453":[92,133,188,164,234]},{"296466":[152,211]},{"296471":[153,211]},{"296480":[152,213]},{"296488":[152,211]},{"296493":[153,211]},{"296502":[152,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[152,214]},{"296810":[168,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[200,206]},{"297052":[184,207]},{"297087":[34,69,133,160,234,176]},{"297144":[152,209]},{"297200":[200,206]},{"297225":[184,207]},{"297263":[153,215]},{"297292":[34,53,195,160]},{"297309":[160,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,35,189,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]},{"324619":[34,11,153,160]},{"324675":[34,190,222,160]},{"324780":[8,8,16]},{"324896":[34,34,236,160,34,166,222,160,234,234,234,234,234,234]},{"324996":[34,182,194,160]},{"325098":[169,2,0,234]},{"325131":[34,82,236,160]},{"325203":[34,163,175,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":[234,237,160]},{"342245":[34,59,132,160,34,39,222,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[243,221,160]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[167,237,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,254,235,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[235,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,118,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,16,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,46,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,251,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,56,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,139,155,160]},{"450360":[34,1,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,109,184,160,234]},{"450492":[34,107,155,160,234,234,234]},{"450861":[34,131,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,254,155,160,234]},{"452559":[34,236,155,160,234]},{"452581":[34,16,156,160,234]},{"452634":[96]},{"453064":[34,43,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,131,193,160,234,234,76,230,236]},{"453867":[34,34,156,160,234]},{"453892":[34,52,156,160]},{"454092":[34,157,155,160,234,234,234,234,234]},{"454233":[34,157,155,160,234,234,234,234,234]},{"454256":[34,235,194,160,234]},{"454282":[34,157,155,160,234,234,234,234,234]},{"454459":[34,157,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,193,216,160]},{"457513":[34,231,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,73,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,18,236,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,232,225,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[226,233,160]},{"487403":[169,2,0,234]},{"487935":[34,16,226,160]},{"488156":[34,16,226,160]},{"488213":[34,16,226,160]},{"488242":[34,16,226,160]},{"488309":[34,16,226,160]},{"488340":[34,16,226,160]},{"488721":[34,16,226,160]},{"489560":[34,16,226,160]},{"490022":[34,16,226,160]},{"490060":[34,16,226,160]},{"490164":[34,16,226,160]},{"490184":[34,16,226,160]},{"490209":[34,16,226,160]},{"490257":[34,16,226,160]},{"490438":[34,32,226,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]},{"882113":[34,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,14,240,160]},{"900244":[34,98,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,89,240,160,234]},{"900437":[92,243,238,160,234]},{"900447":[34,178,247,160,234,234,234]},{"900458":[34,249,221,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,155,240,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,72,234,160,96]},{"954852":[220,181,160]},{"955117":[39,234,160]},{"955529":[216,181,160]},{"962925":[181,181,160]},{"962951":[181,181,160]},{"963167":[181,181,160]},{"963214":[181,181,160]},{"965041":[181,181,160]},{"965069":[181,181,160]},{"965214":[181,181,160]},{"965298":[181,181,160]},{"965316":[181,181,160]},{"967797":[34,29,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,55,180,160]},{"972824":[132,181,160]},{"972834":[132,181,160]},{"972851":[132,181,160]},{"974665":[92,182,197,160,234]},{"974706":[243,197,160]},{"974722":[216,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,199,197,160,234,234]},{"975332":[34,165,197,160,234,234]},{"975401":[255]},{"976357":[177,181,160]},{"976423":[177,181,160]},{"978658":[161,181,160]},{"979078":[34,244,219,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":[37,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,129,196,160]},{"983466":[161,181,160]},{"983651":[161,181,160]},{"988539":[173,181,160]},{"988657":[173,181,160]},{"988668":[173,181,160]},{"988874":[173,181,160]},{"988902":[173,181,160]},{"989142":[173,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[165,181,160]},{"999246":[169,181,160]},{"999265":[169,181,160]},{"999359":[169,181,160]},{"999574":[169,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,123,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[136,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[136,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,76,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,155,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,174,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,145,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,145,179,160,122,250,107,218,90,34,201,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,67,147,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,67,147,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,67,147,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,67,147,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,154,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,82,217,160,76,49,145,201,251,208,7,34,14,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,154,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,82,217,160,76,114,147,201,251,208,7,34,14,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,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,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,154,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,82,217,160,128,8,201,99,208,4,34,14,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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,175,90,128,48,41,255]},{"1055518":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055531":[107,175,122,243,126,47,165,160,2,41,255]},{"1055543":[107,194,32,175,19,130,48,41,255]},{"1055553":[240,5,169,8]},{"1055558":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055571":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055593":[2,107,175,19,130,48,41,255]},{"1055602":[240,5,169,8]},{"1055607":[128,7,175,72,128,48,41,255]},{"1055616":[24,101,234,48,3,169]},{"1055624":[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]},{"1055651":[201,255]},{"1055654":[208,1,107,175,22,244,126,41,32]},{"1055664":[240,4,169]},{"1055669":[107,173,12,4,41,255]},{"1055676":[201,255]},{"1055679":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055703":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,15,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055735":[107,169,136,21,133]},{"1055741":[107,175,69,128,48,208,6,169,16,22,133]},{"1055753":[107,169,144,21,133]},{"1055759":[107,175,69,128,48,208,6,169,24,22,133]},{"1055771":[107,169,152,21,133]},{"1055777":[107,175,69,128,48,208,6,169,32,22,133]},{"1055789":[107,169,160,21,133]},{"1055795":[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]},{"1055887":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055901":[144,240,175,22,244,126,41,32]},{"1055910":[240,3,130,200,1,175,69,128,48,41,1]},{"1055922":[208,3,130,231]},{"1055927":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055949":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055966":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055983":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056000":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056017":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056034":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056051":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056068":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056085":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056102":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056119":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056136":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056153":[141,165,22,194,32,175,69,128,48,41,2]},{"1056165":[208,3,130,201]},{"1056170":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056183":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056198":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056213":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056228":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056243":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056258":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056273":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056288":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056303":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056318":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056333":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056348":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056363":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056378":[208,3,130,170,1,175,69,128,48,41,4]},{"1056390":[208,3,130,201]},{"1056395":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056408":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056423":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056438":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056453":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056468":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056483":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056498":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056513":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056528":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056543":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056558":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056573":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056588":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056603":[208,3,130,201]},{"1056608":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056621":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056636":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056651":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056666":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056681":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056696":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056711":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056726":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056741":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056756":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056771":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056786":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056801":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056820":[191,115,161,160,157,234,18,191,135,161,160,157,42,19,191,155,161,160,157,106,19,191,175,161,160,157,170,19,191,195,161,160,157,234,19,191,215,161,160,157,42,20,191,235,161,160,157,106,20,191,255,161,160,157,170,20,191,19,162,160,157,234,20,232,232,224,20]},{"1056888":[144,186,175,116,243,126,41,4]},{"1056897":[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]},{"1056930":[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]},{"1056963":[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]},{"1056996":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057017":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057038":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057059":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057080":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057101":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057122":[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]},{"1057745":[143,114,243,126,173,10,2,208,14,169]},{"1057756":[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]},{"1057790":[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]},{"1057871":[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]},{"1057914":[165,12,201,232,3,144,3,130,24]},{"1057924":[201,100]},{"1057927":[144,3,130,97]},{"1057932":[201,10]},{"1057935":[144,3,130,170]},{"1057940":[201,1]},{"1057943":[144,3,130,243]},{"1057948":[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,33,166,133,14,165,14,159]},{"1057985":[201,126,232,232,169,56]},{"1057992":[159]},{"1057994":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058008":[201,126,232,232,169]},{"1058015":[159]},{"1058017":[201,126,232,232,165,14,24,105,8]},{"1058027":[133,14,100,10,165,12,201,100]},{"1058036":[144,8,56,233,100]},{"1058042":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,33,166,133,14,165,14,159]},{"1058066":[201,126,232,232,169,56]},{"1058073":[159]},{"1058075":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058089":[201,126,232,232,169]},{"1058096":[159]},{"1058098":[201,126,232,232,165,14,24,105,8]},{"1058108":[133,14,100,10,165,12,201,10]},{"1058117":[144,8,56,233,10]},{"1058123":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,33,166,133,14,165,14,159]},{"1058147":[201,126,232,232,169,56]},{"1058154":[159]},{"1058156":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058170":[201,126,232,232,169]},{"1058177":[159]},{"1058179":[201,126,232,232,165,14,24,105,8]},{"1058189":[133,14,100,10,165,12,201,1]},{"1058198":[144,8,56,233,1]},{"1058204":[230,10,128,243,133,12,192,255,208,10,160]},{"1058216":[165,14,24,121,33,166,133,14,165,14,159]},{"1058228":[201,126,232,232,169,56]},{"1058235":[159]},{"1058237":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058251":[201,126,232,232,169]},{"1058258":[159]},{"1058260":[201,126,232,232,165,14,24,105,8]},{"1058270":[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]},{"1058341":[252,255,248,255,218,90,8,194,48,162]},{"1058353":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058368":[208,13,175,153,80,127,41,255]},{"1058377":[223,3,200,48,208,44,226,32,191]},{"1058387":[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]},{"1058429":[200,48,41,255]},{"1058434":[201,255]},{"1058437":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058460":[226,32,162]},{"1058465":[160]},{"1058468":[152,207,96,80,127,144,3,130,172]},{"1058478":[191,1,201,48,201,255,208,3,130,161]},{"1058489":[191]},{"1058491":[201,48,207,80,80,127,240,3,130,137]},{"1058502":[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]},{"1058539":[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,213,167,160,170,32,244,167,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]},{"1058670":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058684":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,47,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,48,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,49,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]},{"1058777":[128]},{"1058782":[1]},{"1058785":[169,11,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,49,145,160,34,45,213]},{"1058824":[194,16,96,32,15,168,107,173]},{"1058833":[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]},{"1058863":[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]},{"1058900":[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]},{"1059041":[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]},{"1059206":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059227":[175,81,80,127,201,255,208,3,76,136,169,139,75,171,34,231,244,30,32,214,169,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]},{"1059278":[32,243,173,32,243,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059301":[201,2,208,3,130,227]},{"1059308":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059323":[165,26,41,16,240,12,189,106,170,159]},{"1059334":[201,126,232,224,16,144,244,189,122,170,159]},{"1059346":[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]},{"1059405":[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]},{"1059436":[248,255]},{"1059441":[2]},{"1059446":[16]},{"1059449":[2]},{"1059452":[248,255]},{"1059457":[2]},{"1059462":[16,64]},{"1059465":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,191,133,8,169,170,133,9,128,8,169,199,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059523":[70,10]},{"1059526":[2]},{"1059531":[70,74]},{"1059534":[2,218,162]},{"1059538":[165,26,41,64,240,12,189,65,171,159]},{"1059549":[201,126,232,224,16,144,244,189,81,171,159]},{"1059561":[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]},{"1059620":[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]},{"1059651":[248,255,132]},{"1059656":[2]},{"1059661":[16]},{"1059664":[2]},{"1059667":[248,255,132]},{"1059672":[2]},{"1059677":[16,64]},{"1059680":[2,218,162]},{"1059684":[165,26,41,64,240,12,189,211,171,159]},{"1059695":[201,126,232,224,16,144,244,189,227,171,159]},{"1059707":[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]},{"1059766":[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]},{"1059797":[248,255,142]},{"1059802":[2]},{"1059807":[16]},{"1059810":[2]},{"1059813":[248,255,142]},{"1059818":[2]},{"1059823":[16,64]},{"1059826":[2,218,90,8,160]},{"1059832":[90,152,74,74,168,175,95,80,127,57,47,173,240,3,122,128,48,122,173,238]},{"1059853":[221,32,15,208,39,32,198,173,32,50,173,34,230,131,6,144,3,32,230,173,32,156,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,72,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]},{"1059981":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059997":[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,47,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,47,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]},{"1060150":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060171":[58,10,168,185,232,174,133]},{"1060179":[122,104,24,113]},{"1060184":[24,105,2]},{"1060188":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060201":[13,194,32,90,200,200,24,113]},{"1060210":[122,72,175,81,80,127,41,128]},{"1060219":[240,7,104,24,105,4]},{"1060226":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060249":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060266":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060279":[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]},{"1060307":[165,35,105]},{"1060311":[133,8,165,32,105,8,133,1,165,33,105]},{"1060323":[133,9,96,218,34]},{"1060329":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060351":[160]},{"1060353":[175,81,80,127,41,3,201,3,208,5,32,36,174,128,4,201,2,208,5,32,36,174,128,4,201,1,208,3,32,36,174,122,250,171,96,175,95,80,127,57,47,173,240,3,130,178]},{"1060400":[90,175,81,80,127,41,3,58,10,168,194,32,185,232,174,133]},{"1060417":[163,1,10,10,168,177]},{"1060424":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060437":[208,8,177]},{"1060441":[143,39,192,126,128,10,177]},{"1060449":[24,105,4]},{"1060453":[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,6,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,114,147,160,143,42,192,126,169]},{"1060520":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060546":[143,44,192,126,32,219,175,169,2,218,72,175,97,80,127,170,104,32,146,175,250,175,81,80,127,41,128,208,3,32,9,175,200,232,232,232,232,96,238,174,242,174,250,174,8]},{"1060592":[40]},{"1060594":[240,255,40]},{"1060598":[32]},{"1060600":[40]},{"1060602":[216,255,40]},{"1060606":[8]},{"1060608":[40]},{"1060610":[56]},{"1060612":[40]},{"1060614":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060633":[58,10,168,185,232,174,133]},{"1060641":[185,128,175,133,2,122,90,152,10,10,168,177]},{"1060654":[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,115,164,226,32,133,6,100,7,72,169]},{"1060693":[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,134,175,136,175,140,175]},{"1060743":[255]},{"1060745":[128,128,255]},{"1060749":[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]},{"1060830":[194,32,191,37,192,126,24,105,4]},{"1060840":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060856":[159,47,192,126,191,41,192,126,24,105,16]},{"1060868":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060910":[72,165,2,72,169,16,128,133]},{"1060919":[169,48]},{"1060922":[133,2,169,2]},{"1060927":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060974":[143]},{"1060976":[80,127,32,189,176,34,79,150,160,107,72,175]},{"1060989":[80,127,240,6,34,108,176,160,128,13,32,189,176,34,12,151,160,169]},{"1061008":[143,152,192,126,104,107,32,189,176,201,36,208,24,90,160,36,34,174,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061093":[143,152,192,126,169,36,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]},{"1061368":[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]},{"1061435":[191,4,179,160,197,4,144,3,232,128,245,191,5,179,160,133,6,100,7,194,32,138,10,10,170,191,6,179,160,141,232,80,191,8,179,160,141,234,80,173]},{"1061476":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061494":[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,240,176,173,236,80,10,10,170,189]},{"1061531":[81,56,229,8,157]},{"1061537":[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]},{"1061569":[81,141,228,80,189,2,81,141,230,80,32,240,176,173]},{"1061584":[81,56,229,8,141]},{"1061590":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,236,176,160,141,232,80,173,234,80,239,238,176,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,34,49,145,160,72,165,138,201,3,240,6,34,23,179,160,128,4,34,10,179,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,50,179,160,169,235,143]},{"1061736":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061760":[13,165,33,153,32,13,169]},{"1061768":[153,32,15,169,127,153,112,15,107,72,8,34,187,179,160,144,31,156,18,1,156,239,3,169]},{"1061793":[133,93,194,32,165,138,201,48]},{"1061802":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061826":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061839":[128,16,201,48]},{"1061844":[208,11,165,34,201]},{"1061850":[2,144,4,56,130,1]},{"1061857":[24,226,32,107,191,152,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061878":[226,32,34,16,247,8,169,52,145,144,200,191,152,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061913":[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]},{"1061975":[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,195,180,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]},{"1062122":[13,173,219,15,233]},{"1062128":[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]},{"1062167":[13,173,219,15,233]},{"1062173":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062198":[254,127,208,245,169,4,107,34,235,222,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,253,222,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,253,222,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062271":[107,169]},{"1062274":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,244,181,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,244,181,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,244,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,244,181,160,107,218,8,194,32,41,127]},{"1062395":[10,170,191]},{"1062399":[82,127,26,41,255,3,159]},{"1062407":[82,127,170,10,191]},{"1062413":[128,175,40,250,107,218,8,194,48,162]},{"1062425":[191,73,182,160,159]},{"1062431":[82,127,232,232,191,73,182,160,159]},{"1062441":[82,127,232,232,191,73,182,160,159]},{"1062451":[82,127,232,232,191,73,182,160,159]},{"1062461":[82,127,232,232,224,127]},{"1062468":[144,211,40,250,107]},{"1062475":[64]},{"1062477":[128]},{"1062479":[192]},{"1062482":[1,64,1,128,1,192,1]},{"1062490":[2,64,2,128,2,192,2]},{"1062498":[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,105,182,160,175,35,128,48,208,4,34,137,182,160,104,107,72,169]},{"1062600":[143,65,80,127,175,34,128,48,201,1,208,4,34,105,182,160,175,35,128,48,201,1,208,4,34,137,182,160,104,107,72,175,34,128,48,201,2,208,4,34,105,182,160,175,35,128,48,201,2,208,4,34,137,182,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]},{"1062766":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062783":[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]},{"1062854":[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]},{"1062890":[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,61,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]},{"1063015":[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]},{"1063041":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063061":[2,156,5,2,169]},{"1063067":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,159,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063098":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063115":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063132":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063149":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063166":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063183":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063200":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063217":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063240":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063257":[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]},{"1063290":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063313":[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]},{"1063345":[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]},{"1063403":[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]},{"1063429":[192,59,208,3,130,96]},{"1063436":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063461":[201,15,1,208,3,130,59]},{"1063469":[201,16,1,208,3,130,51]},{"1063477":[201,28,1,208,3,130,43]},{"1063485":[201,31,1,208,3,130,35]},{"1063493":[201,255]},{"1063496":[208,3,130,27]},{"1063501":[201,20,1,208,3,130,19]},{"1063509":[201,21,1,208,3,130,11]},{"1063517":[201,22,1,208,3,130,3]},{"1063525":[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]},{"1063557":[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]},{"1063710":[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]},{"1063748":[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]},{"1063786":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063804":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063822":[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]},{"1063858":[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]},{"1063896":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063914":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,139,192,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]},{"1064018":[208,9,32,37,191,32,86,191,130,64,2,192,1,208,6,32,37,191,130,54,2,192,2,208,6,32,37,191,130,44,2,192,3,208,6,32,37,191,130,34,2,192,4,208,6,32,86,191,130,24,2,192,5,208,6,32,86,191,130,14,2,192,6,208,6,32,86,191,130,4,2,192,7,144,10,192,14,176,6,32,135,191,130,246,1,192,20,208,9,32,227,190,32,135,191,130,233,1,192,15,144,10,192,23,176,6,32,135,191,130,219,1,192,23,208,6,32,235,191,130,209,1,192,24,144,10,192,26,176,6,32,135,191,130,195,1,192,26,208,9,32,4,191,32,135,191,130,182,1,192,29,208,6,32,135,191,130,172,1,192,27,144,10,192,32,176,6,32,147,191,130,158,1,192,32,208,6,32,19,192,130,148,1,192,33,208,6,32,135,191,130,138,1,192,34,144,10,192,36,176,6,32,47,192,130,124,1,192,36,208,6,32,63,192,130,114,1,192,37,208,6,32,95,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,167,192,130,87,1,192,40,208,6,32,167,192,130,77,1,192,41,208,6,32,135,191,130,67,1,192,42,144,10,192,46,176,6,32,135,191,130,53,1,192,49,208,6,32,167,192,130,43,1,192,50,208,6,32,127,192,130,33,1,192,51,208,6,32,189,192,130,23,1,192,55,144,10,192,58,176,6,32,175,191,130,9,1,192,58,144,10,192,60,176,6,32,116,191,130,251]},{"1064354":[192,60,208,6,32,135,191,130,241]},{"1064364":[192,61,208,6,32,135,191,130,231]},{"1064374":[192,62,144,10,192,64,176,6,32,7,192,130,217]},{"1064388":[192,72,208,6,32,135,191,130,207]},{"1064398":[192,73,208,6,32,37,191,130,197]},{"1064408":[192,74,208,9,32,227,190,32,135,191,130,184]},{"1064421":[192,75,208,9,32,194,190,32,147,191,130,171]},{"1064434":[192,76,208,9,32,203,191,32,167,192,130,158]},{"1064447":[192,77,144,10,192,80,176,6,32,203,191,130,144]},{"1064461":[192,80,208,6,32,37,191,130,134]},{"1064471":[192,81,144,10,192,85,176,6,32,203,191,130,120]},{"1064485":[192,88,208,6,32,116,191,130,110]},{"1064495":[192,94,208,6,32,37,191,130,100]},{"1064505":[192,95,208,6,32,86,191,130,90]},{"1064515":[192,96,208,6,32,47,192,130,80]},{"1064525":[192,97,208,6,32,147,191,130,70]},{"1064535":[192,100,144,10,192,102,176,6,32,116,191,130,56]},{"1064549":[192,112,144,10,192,128,176,6,32,189,192,130,42]},{"1064563":[192,128,144,10,192,144,176,6,32,95,192,130,28]},{"1064577":[192,144,144,10,192,160,176,6,32,127,192,130,14]},{"1064591":[192,160,144,10,192,176,176,6,32,63,192,130]},{"1064605":[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,161,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064757":[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,63,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,135,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,205,192,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,15,238,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]},{"1065353":[201,2]},{"1065356":[208,14,175,140,243,126,41,192]},{"1065365":[201,192]},{"1065368":[240,79,128,64,201,1]},{"1065375":[208,14,175,142,243,126,41,192]},{"1065384":[201,192]},{"1065387":[240,60,128,45,201,5]},{"1065394":[208,14,175,140,243,126,41,48]},{"1065403":[201,48]},{"1065406":[240,41,128,26,201,13]},{"1065413":[208,16,175,140,243,126,137,4]},{"1065422":[240,12,41,3]},{"1065427":[208,20,128,5,201,16]},{"1065434":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065447":[208,5,169,79,61,128,6,32,248,193,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]},{"1065494":[41,255,239,153,4]},{"1065500":[185,62]},{"1065503":[41,255,239,153,62]},{"1065509":[185,68]},{"1065512":[41,255,239,153,68]},{"1065518":[185,128]},{"1065521":[41,255,239,153,128]},{"1065527":[185,130]},{"1065530":[41,255,239,153,130]},{"1065536":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065557":[41,255,239,153,132]},{"1065563":[185,126]},{"1065566":[41,255,239,153,126]},{"1065572":[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]},{"1065610":[201,144]},{"1065613":[208,3,169,127]},{"1065618":[9]},{"1065620":[36,143,100,199,126,165,5,41,255]},{"1065630":[9]},{"1065632":[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,132,240,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065744":[72,165,2,72,169,16,128,133]},{"1065753":[169,48]},{"1065756":[133,2,169,4]},{"1065761":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065807":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065828":[143]},{"1065830":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065844":[157,192,13,72,169,1,143]},{"1065852":[80,127,165,93,201,20,240,68,169]},{"1065862":[143]},{"1065864":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065892":[72,165,2,72,169,16,128,133]},{"1065901":[169,48]},{"1065904":[133,2,169,3]},{"1065909":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065934":[80,127,240,6,34,119,195,160,128,7,189,128,14,34,187,150,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]},{"1065977":[72,165,2,72,169,16,128,133]},{"1065986":[169,48]},{"1065989":[133,2,169,4]},{"1065994":[34,67,147,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,151,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]},{"1066052":[143,68,243,126,107,175,123,243,126,41,255]},{"1066064":[201,2]},{"1066067":[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]},{"1066100":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066115":[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]},{"1066151":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066165":[173,91,3,41,1,208,3,130,134]},{"1066175":[90,8,139,75,171,226,48,165,27,240,3,76,66,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066212":[129,48,143]},{"1066216":[254,127,34,93,246,29,162]},{"1066224":[165,47,201,4,240,1,232,191,70,197,160,153,80,13,169]},{"1066240":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,72,197,160,41,240,153,16,13,165,35,105]},{"1066274":[153,48,13,165,32,24,105,22,41,240,153]},{"1066286":[13,165,33,105]},{"1066291":[153,32,13,169]},{"1066296":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066313":[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]},{"1066344":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066365":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066435":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066466":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066560":[72,165,2,72,169,64,129,133]},{"1066569":[169,48]},{"1066572":[133,2,169,10]},{"1066577":[34,67,147,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066597":[254,127,34,93,246,29,162]},{"1066605":[165,47,201,4,240,1,232,191,202,198,160,153,80,13,169]},{"1066621":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,204,198,160,41,240,153,16,13,165,35,105]},{"1066655":[153,48,13,165,32,24,105,22,41,240,153]},{"1066667":[13,165,33,105]},{"1066672":[153,32,13,169]},{"1066677":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066701":[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]},{"1066780":[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]},{"1066807":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066846":[72,165,2,72,169,16,128,133]},{"1066855":[169,48]},{"1066858":[133,2,169,5]},{"1066863":[34,67,147,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]},{"1066917":[201,35,208,6,160,93,92,71,213]},{"1066927":[201,72,208,6,160,96,92,71,213]},{"1066937":[201,36,176,6,160,91,92,71,213]},{"1066947":[201,55,176,6,160,92,92,71,213]},{"1066957":[201,57,176,6,160,93,92,71,213]},{"1066967":[160,50,92,71,213]},{"1066973":[192,9,48]},{"1066977":[96]},{"1066979":[144]},{"1066981":[192]},{"1066984":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067008":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067026":[9,48,9,96,9,144,9,240,9]},{"1067037":[240]},{"1067039":[32,10,80,10,96,6]},{"1067046":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067068":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067084":[6,48,6]},{"1067088":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067104":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067125":[127,221,199,160,107,165]},{"1067132":[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]},{"1067163":[132,175,24,105]},{"1067168":[136,133]},{"1067171":[226,32,169,175,133,2,34,50,226,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,186,218,160,162,1,128,2,162]},{"1067229":[171,40,122,104,133,2,104,133,1,104,133]},{"1067241":[96,218,173,216,2,34,104,226,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067724":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,186,218,160,130,84,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,186,218,160,130,40,1,201,109,208,7,34,232,184,164,130,29,1,201,110,208,7,34,232,184,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067971":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067988":[56,233,8,170,169,1,224]},{"1067996":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1068019":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068038":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1068055":[56,233,8,170,169,1,224]},{"1068063":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1068086":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068105":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1068122":[56,233,8,170,169,1,224]},{"1068130":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1068153":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068175":[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,19]},{"1068207":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068226":[250,173,233,2,201,1,107,72,218,34,8,238,160,173,216,2,72,175,152,192,126,208,12,104,32,105,218,141,216,2,32,63,218,128,1,104,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,154,218,207,150,128,48,144,13,175,152,192,126,208,7,175,151,128,48,141,216,2,130,163,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,145,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,115,1,175,89,243,126,201,255,208,8,169,73,141,216,2,130,99,1,201]},{"1068383":[208,8,169,73,141,216,2,130,87,1,201,1,208,8,169,80,141,216,2,130,75,1,201,2,208,8,169,2,141,216,2,130,63,1,169,3,141,216,2,130,55,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,29,1,201,64,208,8,169,5,141,216,2,130,17,1,169,6,141,216,2,130,9,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,239]},{"1068497":[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,200]},{"1068536":[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,170]},{"1068566":[175,91,243,126,201]},{"1068572":[208,8,169,34,141,216,2,130,154]},{"1068582":[169,35,141,216,2,130,146]},{"1068590":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,128]},{"1068608":[169,28,141,216,2,130,120]},{"1068616":[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,88]},{"1068648":[175,64,243,126,26,74,201]},{"1068656":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,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,82,217,160,141,216,2,235,32,221,217,169,255,143,144,80,127,128,19,201,99,208,15,34,14,218,160,141,216,2,169,255,143,144,80,127,128]},{"1068736":[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]},{"1068991":[4,4,4,4,4,5]},{"1069003":[4]},{"1069005":[4]},{"1069008":[4]},{"1069020":[4]},{"1069026":[5]},{"1069036":[4,4,4]},{"1069050":[4,4]},{"1069053":[4]},{"1069057":[4]},{"1069064":[4]},{"1069073":[4]},{"1069144":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069224":[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]},{"1069273":[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]},{"1069312":[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,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]},{"1069469":[2,2]},{"1069477":[2,2,2,2,2,2]},{"1069484":[2]},{"1069486":[2,2]},{"1069489":[2,2,2,2,2,2,2,2,2,2,2]},{"1069501":[2,2,2,2,2]},{"1069507":[2,2,2,2,2,2,2,2,2]},{"1069519":[2,2,2,2,2,2,2,2,2,2,2]},{"1069532":[2]},{"1069534":[2,2,2]},{"1069538":[2,2,2,2,2,2]},{"1069545":[2,2,2,2,2,2,2,2]},{"1069554":[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]},{"1069640":[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]},{"1069826":[4,4,4]},{"1069832":[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,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,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]},{"1070745":[128]},{"1070747":[64]},{"1070749":[32]},{"1070751":[16]},{"1070753":[8]},{"1070755":[4]},{"1070757":[2]},{"1070759":[1,128]},{"1070762":[64]},{"1070764":[32]},{"1070766":[16]},{"1070768":[8]},{"1070770":[4]},{"1071001":[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,105,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,231,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,231,216,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]},{"1071455":[160,48,107,162]},{"1071460":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071473":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071487":[168,152,32,185,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071507":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071531":[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]},{"1071571":[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]},{"1071608":[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]},{"1071647":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071660":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071683":[191]},{"1071685":[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]},{"1071725":[191]},{"1071727":[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,162]},{"1071772":[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,96,100,17,100,176,92,175,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071835":[13,24,105,3,107,189,32,14,201,136,208,9,32,24,219,201,4,144,1,58,107,32,24,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071881":[200,49,74,74,74,74,107,40,191]},{"1071891":[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]},{"1071941":[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]},{"1071975":[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,20,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]},{"1072177":[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]},{"1072232":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072258":[165,27,240,121,194,32,165,160,201,14]},{"1072269":[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]},{"1072304":[201,126]},{"1072307":[208,33,165,34,41,255,1,201,104]},{"1072317":[144,60,201,136]},{"1072322":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072342":[201,222]},{"1072345":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072370":[144,7,201,154]},{"1072375":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,95,221,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,95,221,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,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]},{"1072585":[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]},{"1072645":[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,12,222,160,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,90,160,24,34,161,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072764":[208,11,40,90,160,24,34,161,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,192,155,160,107,72,175,67,244,126,208,4,34,201,192,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,12,222,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,12,222,160,104,34,168,160,2,107,58,16,8,169]},{"1073020":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1073034":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,12,222,169,1,143]},{"1073060":[80,127,156,70,6,156,66,6,76,12,222,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,201,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073272":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073303":[32,137,64,240,4,92,220,128]},{"1073312":[173]},{"1073314":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073339":[143,155,80,127,92,220,128]},{"1073347":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073366":[173,39,1,205,41,1,208,4,92,220,128]},{"1073378":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073408":[224,255,208,4,92,220,128]},{"1073416":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073432":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073448":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073465":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073478":[142,4,32,156,5,32,156,7,32,191]},{"1073489":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073502":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073538":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073551":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073607":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073620":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073670":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073688":[87,127,107,191]},{"1073693":[18,127,107,156,240,28,156,241,28,169]},{"1073704":[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]},{"1073736":[226,32,183]},{"1073740":[159]},{"1073742":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073761":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073785":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073803":[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]},{"1073829":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073847":[226,32,183]},{"1073851":[159]},{"1073853":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073872":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073892":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073910":[226,32,183]},{"1073914":[159]},{"1073916":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073935":[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]},{"1073966":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073984":[226,32,183]},{"1073988":[159]},{"1073990":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074009":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074029":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074047":[226,32,183]},{"1074051":[159]},{"1074053":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074072":[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]},{"1074101":[133]},{"1074103":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074121":[226,32,183]},{"1074125":[159]},{"1074127":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074146":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074166":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074184":[226,32,183]},{"1074188":[159]},{"1074190":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074209":[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]},{"1074240":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074258":[226,32,183]},{"1074262":[159]},{"1074264":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074283":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074303":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074321":[226,32,183]},{"1074325":[159]},{"1074327":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074346":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074367":[133]},{"1074369":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074387":[226,32,183]},{"1074391":[159]},{"1074393":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074412":[143,148,80,127,226,32,130,213]},{"1074421":[201,128,208,56,169,52,133]},{"1074429":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074447":[226,32,183]},{"1074451":[159]},{"1074453":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074472":[143,148,80,127,226,32,130,153]},{"1074481":[201,144,208,55,169,112,133]},{"1074489":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074507":[226,32,183]},{"1074511":[159]},{"1074513":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074532":[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]},{"1074559":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074577":[226,32,183]},{"1074581":[159]},{"1074583":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074602":[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]},{"1074681":[208,56,169,216,133]},{"1074687":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074705":[226,32,183]},{"1074709":[159]},{"1074711":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074730":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074747":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074765":[226,32,183]},{"1074769":[159]},{"1074771":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074790":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074807":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074825":[226,32,183]},{"1074829":[159]},{"1074831":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074850":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074867":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074885":[226,32,183]},{"1074889":[159]},{"1074891":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074910":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074927":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074945":[226,32,183]},{"1074949":[159]},{"1074951":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074970":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074987":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075005":[226,32,183]},{"1075009":[159]},{"1075011":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075030":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075047":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075065":[226,32,183]},{"1075069":[159]},{"1075071":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075090":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075107":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075125":[226,32,183]},{"1075129":[159]},{"1075131":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075150":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075167":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075185":[226,32,183]},{"1075189":[159]},{"1075191":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075210":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075227":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075245":[226,32,183]},{"1075249":[159]},{"1075251":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075270":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075287":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075305":[226,32,183]},{"1075309":[159]},{"1075311":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075330":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075347":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075365":[226,32,183]},{"1075369":[159]},{"1075371":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075390":[143,148,80,127,226,32,130,235]},{"1075399":[201,12,208,56,169,12,133]},{"1075407":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075425":[226,32,183]},{"1075429":[159]},{"1075431":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075450":[143,148,80,127,226,32,130,175]},{"1075459":[201,13,208,55,169,41,133]},{"1075467":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075485":[226,32,183]},{"1075489":[159]},{"1075491":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075510":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075526":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075544":[226,32,183]},{"1075548":[159]},{"1075550":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075569":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075585":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075603":[226,32,183]},{"1075607":[159]},{"1075609":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075628":[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]},{"1075661":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075676":[171,40,122,250,104,107,34,78,216]},{"1075686":[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]},{"1075750":[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,92,235,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,92,235,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]},{"1076021":[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]},{"1076066":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076090":[226,48,160]},{"1076094":[183]},{"1076096":[201,254,208,39,200,183]},{"1076103":[201,110,208,32,200,183]},{"1076110":[208,27,200,183]},{"1076115":[201,254,208,20,200,183]},{"1076122":[201,107,208,13,200,183]},{"1076129":[201,4,208,6,156,232,28,130,19]},{"1076139":[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]},{"1076167":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076184":[10,10,69,138,41,8]},{"1076191":[240,6,152,24,105,16]},{"1076198":[168,165,35,41,2]},{"1076204":[74,69,138,41,1]},{"1076210":[240,4,152,26,26,168,152,41,255]},{"1076220":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,140,246,160,34,166,170,164,34]},{"1076252":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,153,222,160,107,194,16,34,61,137]},{"1076448":[169,7,141,12,33,175,240,244,126,208,10,34,65,237,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076500":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076580":[191]},{"1076582":[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]},{"1076656":[107,34,212,152,160,34,145,247,160,107,34,71,153,160,34,80,153,160,162,4,107,34,145,247,160,169,20,133,17,107,34,145,247,160,107,34,63,132,160,34,44,153,160,34,12,222,160,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]},{"1076731":[2,107,169]},{"1076735":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1076758":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,86,235,160,169]},{"1076780":[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]},{"1076816":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076841":[208,4,169]},{"1076846":[107,201,1]},{"1076850":[208,16,175,197,243,126,41,15]},{"1076859":[201,2]},{"1076862":[176,84,32,216,238,107,201,2]},{"1076871":[208,75,32,216,238,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076895":[107,175,74,128,48,41,255]},{"1076903":[240,43,175,195,242,126,41,32]},{"1076912":[208,34,173,8,3,41,128]},{"1076920":[240,4,169,1]},{"1076925":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076947":[107,169]},{"1076951":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076974":[96,169]},{"1076978":[96,175,76,128,48,41,255]},{"1076986":[240,4,92,90,189,27,224,118]},{"1076995":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077012":[72,170,191,64,130,48,208,3,130,175]},{"1077023":[58,133]},{"1077026":[10,10,24,101]},{"1077031":[10,10,170,169,22]},{"1077037":[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]},{"1077065":[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]},{"1077108":[137,128]},{"1077111":[240,3,9]},{"1077115":[255,143,106,193,126,191,98,130,48,41,255]},{"1077127":[137,128]},{"1077130":[240,3,9]},{"1077134":[255,143,110,193,126,169]},{"1077142":[56,239,106,193,126,143,108,193,126,169]},{"1077154":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077170":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077188":[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]},{"1077265":[165]},{"1077267":[223]},{"1077269":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077289":[165]},{"1077291":[223]},{"1077293":[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]},{"1077339":[175,74,128,48,41,255]},{"1077346":[240,25,175,93]},{"1077352":[41,255]},{"1077355":[201,20]},{"1077358":[208,13,165,138,41,64]},{"1077365":[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]},{"1077422":[107,104,141,228,2,141,193,15,141,16,7,107,34,195,240,160,34,48,241,160,107,169,14,143,1,40]},{"1077449":[169,4,143,1,40]},{"1077455":[169,13,143,1,40]},{"1077461":[169,14,143,1,40]},{"1077467":[169]},{"1077469":[143,1,40]},{"1077473":[169]},{"1077475":[143,1,40]},{"1077479":[169]},{"1077481":[143,1,40]},{"1077485":[169]},{"1077487":[143,1,40]},{"1077491":[169]},{"1077493":[143,1,40]},{"1077497":[169]},{"1077499":[143,1,40]},{"1077503":[169]},{"1077505":[143,1,40]},{"1077509":[169,1,143,1,40]},{"1077515":[169]},{"1077517":[143,1,40]},{"1077521":[169,1,143,1,40]},{"1077527":[169]},{"1077529":[143,1,40]},{"1077533":[169]},{"1077535":[143,1,40]},{"1077539":[169,10,143,1,40]},{"1077545":[169,13,143,1,40]},{"1077551":[107,72,218,162]},{"1077556":[175]},{"1077558":[40]},{"1077560":[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]},{"1077587":[175]},{"1077589":[40]},{"1077591":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077605":[232,128,235,56,175]},{"1077611":[40]},{"1077613":[72,175]},{"1077616":[40]},{"1077618":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077636":[175]},{"1077638":[40]},{"1077640":[72,175]},{"1077643":[40]},{"1077645":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077665":[40]},{"1077667":[72,175]},{"1077670":[40]},{"1077672":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077692":[40]},{"1077694":[72,175]},{"1077697":[40]},{"1077699":[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]},{"1077784":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077802":[133]},{"1077804":[165,3,41,255]},{"1077809":[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,99,242,160,132,2,100,3,24,101]},{"1077851":[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]},{"1077906":[175]},{"1077908":[40]},{"1077910":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077924":[232,128,235,56,175]},{"1077930":[40]},{"1077932":[72,175]},{"1077935":[40]},{"1077937":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077955":[175]},{"1077957":[40]},{"1077959":[72,175]},{"1077962":[40]},{"1077964":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077984":[40]},{"1077986":[72,175]},{"1077989":[40]},{"1077991":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078011":[40]},{"1078013":[72,175]},{"1078016":[40]},{"1078018":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078038":[40]},{"1078040":[133,4,175]},{"1078044":[40]},{"1078046":[72,175]},{"1078049":[40]},{"1078051":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078071":[40]},{"1078073":[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]},{"1078142":[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,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]},{"1078232":[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]},{"1078266":[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]},{"1078365":[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]},{"1078396":[201,2]},{"1078399":[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]},{"1078431":[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,138,246,160,144,10,208,8,175,140,80,127,207,136,246,160,144,114,175,145,129,48,41,255]},{"1078487":[208,24,169,2]},{"1078492":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078516":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078529":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078543":[143,142,80,127,169,1]},{"1078550":[143,126,80,127,128,54,201,2]},{"1078559":[208,24,169,2]},{"1078564":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,186,218,160,194,48,96,175,146,129,48,41,255]},{"1078601":[240,7,169]},{"1078606":[143,126,80,127,175,142,80,127,207,126,246,160,144,10,208,8,175,140,80,127,207,124,246,160,144,53,175,128,80,127,26,201,10]},{"1078640":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078654":[143,128,80,127,175,140,80,127,56,239,124,246,160,143,140,80,127,175,142,80,127,239,126,246,160,143,142,80,127,128,181,175,142,80,127,207,130,246,160,144,10,208,8,175,140,80,127,207,128,246,160,144,53,175,132,80,127,26,201,10]},{"1078715":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078729":[143,132,80,127,175,140,80,127,56,239,128,246,160,143,140,80,127,175,142,80,127,239,130,246,160,143,142,80,127,128,181,175,142,80,127,207,134,246,160,144,10,208,8,175,140,80,127,207,132,246,160,144,53,175,136,80,127,26,201,10]},{"1078790":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078804":[143,136,80,127,175,140,80,127,56,239,132,246,160,143,140,80,127,175,142,80,127,239,134,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]},{"1078912":[16,14]},{"1078916":[60]},{"1078920":[255,255,255,127,175,204,80,127,41,255]},{"1078931":[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]},{"1079002":[240,93,175,145,129,48,41,255]},{"1079011":[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]},{"1079104":[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]},{"1079179":[208,3,32,90,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079209":[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]},{"1079243":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079327":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,157,223,160,34,58,135,1,194,16,166,160,191,27,251,160,226,16,34,156,135]},{"1079437":[159,248,160,160,248,160,45,249,160,186,249,160,71,250,160,177,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079473":[32,126,232,232,159]},{"1079479":[32,126,232,232,159]},{"1079485":[32,126,232,232,159]},{"1079491":[32,126,232,232,162,220,25,159]},{"1079500":[32,126,232,232,169,202,12,159]},{"1079509":[32,126,232,232,169,203,12,159]},{"1079518":[32,126,232,232,169,208,8,159]},{"1079527":[32,126,232,232,162,92,26,159]},{"1079536":[32,126,232,232,169,218,12,159]},{"1079545":[32,126,232,232,169,219,12,159]},{"1079554":[32,126,232,232,169,208,8,159]},{"1079563":[32,126,232,232,162,220,26,159]},{"1079572":[32,126,232,232,159]},{"1079578":[32,126,232,232,159]},{"1079584":[32,126,232,232,159]},{"1079590":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079614":[32,126,232,232,159]},{"1079620":[32,126,232,232,159]},{"1079626":[32,126,232,232,159]},{"1079632":[32,126,232,232,162,156,25,159]},{"1079641":[32,126,232,232,169,202,12,159]},{"1079650":[32,126,232,232,169,203,12,159]},{"1079659":[32,126,232,232,169,208,8,159]},{"1079668":[32,126,232,232,162,28,26,159]},{"1079677":[32,126,232,232,169,218,12,159]},{"1079686":[32,126,232,232,169,219,12,159]},{"1079695":[32,126,232,232,169,208,8,159]},{"1079704":[32,126,232,232,162,156,26,159]},{"1079713":[32,126,232,232,159]},{"1079719":[32,126,232,232,159]},{"1079725":[32,126,232,232,159]},{"1079731":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079755":[32,126,232,232,159]},{"1079761":[32,126,232,232,159]},{"1079767":[32,126,232,232,159]},{"1079773":[32,126,232,232,162,220,9,159]},{"1079782":[32,126,232,232,169,202,12,159]},{"1079791":[32,126,232,232,169,203,12,159]},{"1079800":[32,126,232,232,169,208,8,159]},{"1079809":[32,126,232,232,162,92,10,159]},{"1079818":[32,126,232,232,169,218,12,159]},{"1079827":[32,126,232,232,169,219,12,159]},{"1079836":[32,126,232,232,169,208,8,159]},{"1079845":[32,126,232,232,162,220,10,159]},{"1079854":[32,126,232,232,159]},{"1079860":[32,126,232,232,159]},{"1079866":[32,126,232,232,159]},{"1079872":[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]},{"1080105":[1]},{"1080187":[5]},{"1080189":[4]},{"1080217":[2]},{"1080313":[3]},{"1080411":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080428":[134,1,133,2,32,91,252,176,4,92,83,230]},{"1080441":[169,49,133,2,194,32,169]},{"1080449":[192,133]},{"1080452":[162,128,167]},{"1080456":[141,24,33,230]},{"1080461":[230]},{"1080463":[167]},{"1080465":[141,24,33,230]},{"1080470":[230]},{"1080472":[167]},{"1080474":[141,24,33,230]},{"1080479":[230]},{"1080481":[167]},{"1080483":[141,24,33,230]},{"1080488":[230]},{"1080490":[167]},{"1080492":[141,24,33,230]},{"1080497":[230]},{"1080499":[167]},{"1080501":[141,24,33,230]},{"1080506":[230]},{"1080508":[167]},{"1080510":[141,24,33,230]},{"1080515":[230]},{"1080517":[167]},{"1080519":[141,24,33,230]},{"1080524":[230]},{"1080526":[202,208,181,226,32,92,81,230]},{"1080535":[226,48,175,248,194,126,168,32,91,252,194,48,176,10,162]},{"1080552":[160,64]},{"1080555":[92,104,223]},{"1080559":[162]},{"1080561":[192,160]},{"1080565":[169]},{"1080567":[8,139,84,127,177,171,162]},{"1080575":[8,169]},{"1080578":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,237,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,11,168,160,40,175,67,244,126,41,255]},{"1081469":[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,85,151,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]},{"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,41,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,58,235,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,70,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,249,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,249,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,249,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,249,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,47,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,47,178,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194114":[83,127,201,3,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,181,185,164,226,48,169]},{"1194152":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194210":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194268":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,64,185,34,231,244,30,32,128,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,96,133,8,169,185,105]},{"1194325":[133,9,34,117,223,5,34,92,220,6,96]},{"1194338":[247,255,198]},{"1194343":[2]},{"1194348":[200]},{"1194351":[2]},{"1194354":[248,255,198]},{"1194359":[2]},{"1194364":[202,64]},{"1194367":[2,175,103,129,48,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,186,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194425":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194451":[98,41,110,41,107,41,105,41,127]},{"1194461":[111,41,97,41,106,41,112,41,127]},{"1194471":[112,41,107,41,127]},{"1194477":[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]},{"1194524":[33,218,162,128,142]},{"1194530":[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]},{"1194558":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194575":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194666":[208,33,8,194,48,162]},{"1194674":[224,64]},{"1194677":[176,11,169,127]},{"1194682":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194705":[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]},{"1194752":[240,7,224,2,240,3,130,137]},{"1194761":[130,132]},{"1194764":[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]},{"1194910":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194927":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194943":[224,28]},{"1194946":[176,12,191,193,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194963":[175,211,244,126,41,255]},{"1194970":[58,201,64]},{"1194974":[176,63,10,10,10,10,10,170,192,60]},{"1194985":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195008":[176,11,169,127]},{"1195013":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,174,184,160,122,218,90,8,194,48,162]},{"1195169":[224,16]},{"1195172":[176,12,191,221,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195189":[175,152,192,126,41,255]},{"1195196":[58,201,64]},{"1195200":[176,63,10,10,10,10,10,170,192,48]},{"1195211":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195234":[176,11,169,127]},{"1195239":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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/base2current_extendedmsu.json b/data/base2current_extendedmsu.json index 37053922..16ad63ce 100644 --- a/data/base2current_extendedmsu.json +++ b/data/base2current_extendedmsu.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,71,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,228,198,160]},{"21847":[34,188,199,160,234]},{"21854":[34,0,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,89,255]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,236,254,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[18,163,160]},{"30994":[148,163,160]},{"31001":[18,163,160]},{"31011":[148,163,160]},{"31046":[12,185,164]},{"31102":[34,127,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[243]},{"50090":[164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,129]},{"51009":[160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,144,185,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,41,191,164]},{"60790":[15,186,164]},{"61077":[182,180,160]},{"61133":[34,238,195,160,234]},{"62723":[34,52,132,160]},{"65511":[34,150,238,160]},{"65607":[162,237,160]},{"65778":[34,24,143,160,234,234]},{"65879":[34,241,193,160,234]},{"65894":[34,31,194,160]},{"66284":[34,66,194,160]},{"66292":[92,178,248,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,152,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,160,186,164,234,234]},{"67934":[249,250,160]},{"68474":[34,13,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[253,250,160]},{"69737":[34,99,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[253,250,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,171,248,160,234]},{"72216":[197,184,164]},{"72241":[34,31,194,160]},{"72246":[154,153,160]},{"73041":[34,150,154,160]},{"73263":[153,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,47,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,155,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]},{"77216":[34,114,250,160,234]},{"78138":[59,249,160]},{"78172":[34,59,186,164,34,127,153,160,234,234]},{"79603":[34,249,184,164]},{"79767":[34,175,186,164]},{"82376":[234,234]},{"82676":[253,250,160]},{"87784":[234,234,234]},{"87892":[34]},{"87894":[248,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,213,239,160]},{"90651":[34,249,236,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[115,191,164]},{"166331":[34,150,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[249,180,160]},{"173058":[249,180,160]},{"173307":[249,180,160]},{"173320":[249,180,160]},{"183384":[34,104,250,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,150,154,160]},{"187902":[34,173,154,160]},{"188153":[0]},{"188234":[35,237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,132,151,160]},{"188959":[34,36,236,160,128,13]},{"189655":[34,142,195,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[58,191,164]},{"191439":[34,171,196,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,191,196,160,234,234]},{"192037":[34,173,154,160]},{"192083":[34,97,143,160,234,234]},{"192095":[34,219,194,160,234]},{"192121":[43,195,160]},{"192140":[34,64,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[185,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,83,143,160]},{"192893":[34,173,154,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,150,154,160]},{"193025":[253,143,160]},{"193033":[34,150,154,160]},{"193140":[34,168,178,160]},{"193157":[34,161,178,160]},{"193440":[34,118,219,160]},{"193472":[185,235,160]},{"193546":[34,118,219,160]},{"193578":[129,235,160]},{"193854":[34,106,143,160]},{"193859":[32]},{"193888":[107,194,160]},{"194141":[34,67,195,160,234,234,234,234,234]},{"194177":[34,185,194,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,36,236,160]},{"195327":[34,17,143,160,240,2,96,234]},{"195539":[34,145,198,160]},{"195589":[245,175,160]},{"195710":[34,11,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[206,175,160]},{"195909":[216,175,160]},{"196477":[34,173,154,160]},{"196497":[34,150,154,160]},{"197750":[66,192,160]},{"198721":[34,88,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,54,143,160]},{"199659":[34,172,165,160,96,234]},{"199950":[34,90,143,160]},{"199964":[151,175,160]},{"199993":[34,226,175,160]},{"200070":[34,40,143,160]},{"200470":[34,33,143,160]},{"200845":[34,47,143,160,201]},{"200851":[240]},{"200853":[34,47,143,160]},{"200858":[8]},{"200893":[34,54,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,23,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[63,143,160]},{"208994":[34,54,143,160,234,234]},{"209010":[139]},{"209098":[226,143,160]},{"209199":[41,247]},{"210057":[92,170,219,160,234,234,234,234]},{"210164":[133,143,160]},{"211413":[199,143,160]},{"212333":[77,191,164]},{"212610":[96,191,164]},{"213139":[35,188,164]},{"213169":[147,133,160]},{"214205":[34,66,180,160]},{"214972":[212,179,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,92,185,164]},{"217579":[34,228,192,160]},{"224597":[34,118,218,160]},{"224693":[34,138,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,152,219,160,234]},{"226304":[34,203,218,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,121,238,160]},{"229634":[34,125,189,164]},{"230816":[198,178,160]},{"230955":[198,178,160]},{"233256":[197]},{"233258":[160]},{"233266":[34,165,128,160]},{"233297":[34,130,238,160,234]},{"233987":[98,184,164]},{"234731":[34,191,184,164]},{"234747":[34,141,238,160]},{"235953":[34,35,133,160,144,3]},{"236024":[18,204,160]},{"236047":[196,192,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[107,197,160]},{"238498":[34,4,196,160,128,3]},{"238562":[34,47,198,160,240,4,234]},{"238751":[34,12,220,160]},{"238964":[34,12,220,160]},{"239190":[34,12,220,160]},{"239964":[85,186,164]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,236,218,160]},{"241165":[34,236,218,160]},{"241175":[34,235,128,164]},{"241294":[34,236,218,160]},{"241304":[34,235,128,164]},{"241814":[34,236,218,160,24,125,139,176]},{"241869":[30,236,160]},{"241877":[34,236,218,160,24,125,139,176]},{"242942":[34,146,236,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,212,185,164,234]},{"243067":[234,234,34,59,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,10,219,160,234]},{"250478":[34,64,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,127,244,160,234]},{"273608":[34,62,182,160,76,230,172]},{"275716":[34,34,182,160,234]},{"276202":[34,95,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,249,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[221,133,160,92,220,238,160,234,234]},{"279880":[92,18,192,164]},{"280037":[34,178,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[30,236,160]},{"280106":[92,76,226,160,234]},{"280265":[46,210,160]},{"280287":[46,209,160]},{"280314":[46,210,160]},{"280335":[34,94,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,222,193,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,236,218,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,51,200,160,234]},{"296453":[92,134,191,164,234]},{"296466":[46,211]},{"296471":[47,211]},{"296480":[46,213]},{"296488":[46,211]},{"296493":[47,211]},{"296502":[46,213,34,0,128,160]},{"296583":[34,150,154,160]},{"296619":[46,214]},{"296810":[62,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[94,206]},{"297052":[78,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,230,225,160,234]},{"297144":[46,209]},{"297200":[94,206]},{"297225":[78,207]},{"297263":[47,215]},{"297292":[34,166,194,160]},{"297309":[54,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,36,192,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,142,223,160]},{"324619":[34,175,152,160]},{"324675":[34,190,185,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,234,236,160,34,166,185,164,234,234,234,234,234,234]},{"324996":[34,47,194,160]},{"325098":[169,2,0,234]},{"325131":[34,26,237,160]},{"325203":[34,163,175,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":[178,238,160]},{"342245":[34,59,132,160,34,39,185,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,235,249,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,173,154,160]},{"344119":[34,173,154,160]},{"344185":[34,173,154,160]},{"344248":[34,173,154,160]},{"344312":[34,173,154,160]},{"344375":[34,173,154,160]},{"344441":[34,173,154,160]},{"344499":[34,173,154,160]},{"344565":[34,173,154,160]},{"344623":[34,173,154,160]},{"344689":[34,173,154,160]},{"344747":[34,173,154,160]},{"344813":[34,173,154,160]},{"344871":[34,173,154,160]},{"344937":[34,173,154,160]},{"345406":[34,203,153,160]},{"345531":[34,222,153,160,96]},{"345560":[34,222,153,160,96]},{"393133":[243]},{"393135":[164]},{"409856":[34,159,226,160]},{"410028":[94,255,161]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[111,238,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,198,236,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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":[179,244,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,173,154,160]},{"449502":[34,118,186,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,216,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,246,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,195,244,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,187,154,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,14,155,160]},{"450360":[34,122,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,230,183,160,234]},{"450492":[34,238,154,160,234,234,234]},{"450861":[34,252,183,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,129,155,160,234]},{"452559":[34,111,155,160,234]},{"452581":[34,147,155,160,234]},{"452634":[96]},{"453064":[34,174,159,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,252,192,160,234,234,76,230,236]},{"453867":[34,165,155,160,234]},{"453892":[34,183,155,160]},{"454092":[34,32,155,160,234,234,234,234,234]},{"454233":[34,32,155,160,234,234,234,234,234]},{"454256":[34,100,194,160,234]},{"454282":[34,32,155,160,234,234,234,234,234]},{"454459":[34,32,155,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,243,131,160]},{"457344":[34,177,153,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,87,216,160]},{"457513":[34,125,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,170,195,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,218,236,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,176,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[170,234,160]},{"487403":[169,2,0,234]},{"487935":[34,216,226,160]},{"488156":[34,216,226,160]},{"488213":[34,216,226,160]},{"488242":[34,216,226,160]},{"488309":[34,216,226,160]},{"488340":[34,216,226,160]},{"488721":[34,216,226,160]},{"489560":[34,216,226,160]},{"490022":[34,216,226,160]},{"490060":[34,216,226,160]},{"490164":[34,216,226,160]},{"490184":[34,216,226,160]},{"490209":[34,216,226,160]},{"490257":[34,216,226,160]},{"490438":[34,232,226,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,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,214,240,160]},{"900244":[34,42,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,33,241,160,234]},{"900437":[92,187,239,160,234]},{"900447":[34,122,248,160,234,234,234]},{"900458":[34,249,184,164]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,99,241,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,16,235,160,96]},{"954852":[85,181,160]},{"955117":[239,234,160]},{"955529":[81,181,160]},{"962925":[46,181,160]},{"962951":[46,181,160]},{"963167":[46,181,160]},{"963214":[46,181,160]},{"965041":[46,181,160]},{"965069":[46,181,160]},{"965214":[46,181,160]},{"965298":[46,181,160]},{"965316":[46,181,160]},{"967797":[34,150,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,176,179,160]},{"972824":[253,180,160]},{"972834":[253,180,160]},{"972851":[253,180,160]},{"974665":[92,15,197,160,234]},{"974706":[68,197,160]},{"974722":[41,197,160]},{"975106":[34,113,143,160]},{"975132":[34,113,143,160]},{"975265":[34,32,197,160,234,234]},{"975332":[34,6,197,160,234,234]},{"975401":[255]},{"976357":[42,181,160]},{"976423":[42,181,160]},{"978658":[26,181,160]},{"979078":[34,138,219,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":[158,180,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,226,195,160]},{"983466":[26,181,160]},{"983651":[26,181,160]},{"988539":[38,181,160]},{"988657":[38,181,160]},{"988668":[38,181,160]},{"988874":[38,181,160]},{"988902":[38,181,160]},{"989142":[38,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[30,181,160]},{"999246":[34,181,160]},{"999265":[34,181,160]},{"999359":[34,181,160]},{"999574":[34,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,220,196,160]},{"1003229":[34,150,154,160]},{"1003277":[34,150,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[1,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[1,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,20,245,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,24,143,160,234,234]},{"1010175":[159,143,160]},{"1011427":[34,30,169,160,96,234]},{"1011808":[34,154,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,39,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,145,184,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,205,133,160,168,34,245,133,160,34,87,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,10,179,160,122,250,107,218,90,34,66,192,160,188,128,14,208,5,34,194,138,160,168,128,186,8,34,28,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,22,149,160,144,8,189,96,14,9,32,157,96,14,104,34,95,150,160,34,92,220,6,122,104,40,107,8,34,28,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,185,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,245,140,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,245,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,17,169]},{"1050024":[143]},{"1050026":[80,127,34,205,133,160,157,128,14,34,249,149,160,104,107,72,169]},{"1050044":[143]},{"1050046":[80,127,34,194,138,160,157,128,14,34,249,149,160,104,107,165,27,240,7,34,18,134,160,130,4]},{"1050072":[34,175,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050097":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050114":[208,11,175,22,244,126,9,1]},{"1050123":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050138":[208,50,175,135,128,48,208,6,175]},{"1050148":[128,48,128,35,218,8,194,48,165]},{"1050158":[72,165,2,72,169]},{"1050164":[128,133]},{"1050167":[169,48]},{"1050170":[133,2,169]},{"1050175":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050193":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050213":[72,165,2,72,169]},{"1050219":[128,133]},{"1050222":[169,48]},{"1050225":[133,2,169,1]},{"1050230":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050248":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050268":[72,165,2,72,169]},{"1050274":[128,133]},{"1050277":[169,48]},{"1050280":[133,2,169,2]},{"1050285":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050300":[201,27,1,208,108,165,34,235,41,1]},{"1050311":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050331":[72,165,2,72,169]},{"1050337":[128,133]},{"1050340":[169,48]},{"1050343":[133,2,169,3]},{"1050348":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050363":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050381":[72,165,2,72,169]},{"1050387":[128,133]},{"1050390":[169,48]},{"1050393":[133,2,169,4]},{"1050398":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050413":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050436":[72,165,2,72,169]},{"1050442":[128,133]},{"1050445":[169,48]},{"1050448":[133,2,169,5]},{"1050453":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050468":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050491":[72,165,2,72,169]},{"1050497":[128,133]},{"1050500":[169,48]},{"1050503":[133,2,169,6]},{"1050508":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050523":[201,135]},{"1050526":[208,7,175,98,129,48,130,3]},{"1050535":[169,23]},{"1050538":[41,255]},{"1050541":[40,107,8,194,32,165,138,201,3]},{"1050551":[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]},{"1050578":[72,165,2,72,169,64,129,133]},{"1050587":[169,48]},{"1050590":[133,2,169]},{"1050595":[34,67,147,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]},{"1050628":[72,165,2,72,169,16,128,133]},{"1050637":[169,48]},{"1050640":[133,2,169,6]},{"1050645":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050663":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050683":[72,165,2,72,169,64,129,133]},{"1050692":[169,48]},{"1050695":[133,2,169,1]},{"1050700":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050718":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050738":[72,165,2,72,169,64,129,133]},{"1050747":[169,48]},{"1050750":[133,2,169,2]},{"1050755":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050773":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050793":[72,165,2,72,169,64,129,133]},{"1050802":[169,48]},{"1050805":[133,2,169,10]},{"1050810":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050828":[208,107,165,34,201]},{"1050834":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050855":[72,165,2,72,169,64,129,133]},{"1050864":[169,48]},{"1050867":[133,2,169,3]},{"1050872":[34,67,147,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]},{"1050905":[72,165,2,72,169,16,128,133]},{"1050914":[169,48]},{"1050917":[133,2,169,7]},{"1050922":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050940":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050960":[72,165,2,72,169,64,129,133]},{"1050969":[169,48]},{"1050972":[133,2,169,4]},{"1050977":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1050995":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051015":[72,165,2,72,169,64,129,133]},{"1051024":[169,48]},{"1051027":[133,2,169,5]},{"1051032":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051050":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051070":[72,165,2,72,169,64,129,133]},{"1051079":[169,48]},{"1051082":[133,2,169,6]},{"1051087":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051102":[201,74]},{"1051105":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051125":[72,165,2,72,169,64,129,133]},{"1051134":[169,48]},{"1051137":[133,2,169,6]},{"1051142":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051157":[201,91]},{"1051160":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051180":[72,165,2,72,169,64,129,133]},{"1051189":[169,48]},{"1051192":[133,2,169,7]},{"1051197":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051212":[201,104]},{"1051215":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051235":[72,165,2,72,169,64,129,133]},{"1051244":[169,48]},{"1051247":[133,2,169,8]},{"1051252":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051267":[201,129]},{"1051270":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051290":[72,165,2,72,169,64,129,133]},{"1051299":[169,48]},{"1051302":[133,2,169,9]},{"1051307":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051322":[169,23]},{"1051325":[41,255]},{"1051328":[40,107,8,194,32,165,160,201,200]},{"1051338":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051358":[72,165,2,72,169,80,129,133]},{"1051367":[169,48]},{"1051370":[133,2,169]},{"1051375":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051393":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051413":[72,165,2,72,169,80,129,133]},{"1051422":[169,48]},{"1051425":[133,2,169,1]},{"1051430":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051448":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051468":[72,165,2,72,169,80,129,133]},{"1051477":[169,48]},{"1051480":[133,2,169,2]},{"1051485":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051503":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051523":[72,165,2,72,169,80,129,133]},{"1051532":[169,48]},{"1051535":[133,2,169,3]},{"1051540":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051558":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051578":[72,165,2,72,169,80,129,133]},{"1051587":[169,48]},{"1051590":[133,2,169,4]},{"1051595":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051613":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051633":[72,165,2,72,169,80,129,133]},{"1051642":[169,48]},{"1051645":[133,2,169,5]},{"1051650":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051665":[201,172]},{"1051668":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051688":[72,165,2,72,169,80,129,133]},{"1051697":[169,48]},{"1051700":[133,2,169,6]},{"1051705":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051720":[201,222]},{"1051723":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051743":[72,165,2,72,169,80,129,133]},{"1051752":[169,48]},{"1051755":[133,2,169,7]},{"1051760":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051775":[201,144]},{"1051778":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051798":[72,165,2,72,169,80,129,133]},{"1051807":[169,48]},{"1051810":[133,2,169,8]},{"1051815":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051830":[201,164]},{"1051833":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051853":[72,165,2,72,169,80,129,133]},{"1051862":[169,48]},{"1051865":[133,2,169,9]},{"1051870":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051885":[169,62]},{"1051888":[41,255]},{"1051891":[40,107,194,32,165,160,201,200]},{"1051900":[208,4,56,130,82]},{"1051906":[201,51]},{"1051909":[208,4,56,130,73]},{"1051915":[201,7]},{"1051918":[208,4,56,130,64]},{"1051924":[201,90]},{"1051927":[208,4,56,130,55]},{"1051933":[201,6]},{"1051936":[208,4,56,130,46]},{"1051942":[201,41]},{"1051945":[208,4,56,130,37]},{"1051951":[201,172]},{"1051954":[208,4,56,130,28]},{"1051960":[201,222]},{"1051963":[208,4,56,130,19]},{"1051969":[201,144]},{"1051972":[208,4,56,130,10]},{"1051978":[201,164]},{"1051981":[208,4,56,130,1]},{"1051987":[24,226,32,107,90,165,27,208,3,130,230]},{"1051999":[8,194,32,165,160,201,135]},{"1052007":[208,7,175,58,227,48,130,137,1,201,200]},{"1052019":[208,7,175,62,227,48,130,125,1,201,51]},{"1052031":[208,7,175,63,227,48,130,113,1,201,7]},{"1052043":[208,7,175,64,227,48,130,101,1,201,90]},{"1052055":[208,7,175,65,227,48,130,89,1,201,6]},{"1052067":[208,7,175,66,227,48,130,77,1,201,41]},{"1052079":[208,7,175,67,227,48,130,65,1,201,172]},{"1052091":[208,7,175,68,227,48,130,53,1,201,222]},{"1052103":[208,7,175,69,227,48,130,41,1,201,144]},{"1052115":[208,7,175,70,227,48,130,29,1,201,164]},{"1052127":[208,7,175,71,227,48,130,17,1,201,225]},{"1052139":[208,7,175,72,227,48,130,5,1,201,226]},{"1052151":[208,7,175,73,227,48,130,249]},{"1052160":[201,234]},{"1052163":[208,7,175,74,227,48,130,237]},{"1052172":[201,27,1,208,22,165,34,235,41,1]},{"1052183":[208,7,175,75,227,48,130,217]},{"1052192":[175,76,227,48,130,210]},{"1052199":[201,38,1,208,7,175,77,227,48,130,198]},{"1052211":[201,39,1,208,44,175,78,227,48,130,186]},{"1052223":[169]},{"1052226":[130,180]},{"1052229":[8,194,32,165,138,201,3]},{"1052237":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052253":[175,59,227,48,130,149]},{"1052260":[201,5]},{"1052263":[208,7,175,80,227,48,130,137]},{"1052272":[201,40]},{"1052275":[208,7,175,81,227,48,130,125]},{"1052284":[201,42]},{"1052287":[208,7,175,61,227,48,130,113]},{"1052296":[201,48]},{"1052299":[208,21,165,34,201]},{"1052305":[2,176,7,175,82,227,48,130,94]},{"1052315":[175,60,227,48,130,87]},{"1052322":[201,53]},{"1052325":[208,7,175,83,227,48,130,75]},{"1052334":[201,59]},{"1052337":[208,7,175,84,227,48,130,63]},{"1052346":[201,66]},{"1052349":[208,7,175,85,227,48,130,51]},{"1052358":[201,74]},{"1052361":[208,7,175,85,227,48,130,39]},{"1052370":[201,91]},{"1052373":[208,7,175,86,227,48,130,27]},{"1052382":[201,104]},{"1052385":[208,7,175,87,227,48,130,15]},{"1052394":[201,129]},{"1052397":[208,7,175,88,227,48,130,3]},{"1052406":[169]},{"1052409":[41,255]},{"1052412":[40,143,152,192,126,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]},{"1052770":[72,165,2,72,169,16,128,133]},{"1052779":[169,48]},{"1052782":[133,2,169,3]},{"1052787":[34,67,147,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]},{"1052858":[72,165,2,72,169,16,128,133]},{"1052867":[169,48]},{"1052870":[133,2,169]},{"1052875":[34,67,147,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]},{"1052917":[72,165,2,72,169,16,128,133]},{"1052926":[169,48]},{"1052929":[133,2,169,1]},{"1052934":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052956":[160,70,226,32,143,152,192,126,40,104,107,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,48,218,207,150,128,48,144,10,104,175,151,128,48,34,39,145,160,107,104,218,139,75,171,170,191,28,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,232,216,160,76,39,145,201,251,208,7,34,164,217,160,76,39,145,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,39,145,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,39,145,160,107,201]},{"1053123":[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,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,39,145,160,107,201]},{"1053178":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,14,175,64,243,126,201]},{"1053203":[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]},{"1053261":[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]},{"1053300":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,48,218,207,150,128,48,144,10,104,175,151,128,48,34,28,147,160,107,104,218,139,75,171,170,191,22,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,28,147,160,107,201]},{"1053560":[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,28,147,160,107,201]},{"1053615":[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,28,147,160,107,201]},{"1053655":[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,232,216,160,76,28,147,201,251,208,7,34,164,217,160,76,28,147,107]},{"1053719":[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]},{"1053757":[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]},{"1053806":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053824":[8,8,8]},{"1053830":[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,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,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,48,218,207,150,128,48,144,11,175,151,128,48,34,22,149,160,130,128]},{"1054029":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,22,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,22,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,22,149,160,128,37,201,98,208,6,34,232,216,160,128,8,201,99,208,4,34,164,217,160,162]},{"1054140":[224,36,176,12,223,209,149,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,32,11,150,34,39,145,160,34,45,213]},{"1054215":[122,250,104,107,72,8,72,194,32,169]},{"1054227":[143,37,192,126,143,39,192,126,169]},{"1054237":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,28,147,160,143,42,192,126,143,50,192,126,104,34,22,149,160,176,2,128,27,194,32,169]},{"1054278":[143,44,192,126,143,51,192,126,169]},{"1054288":[8,143,46,192,126,169]},{"1054295":[52,143,48,192,126,40,104,96,34,22,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]},{"1054364":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,22,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]},{"1054445":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054475":[169]},{"1054478":[143,66,80,127,128,6,162,64,45,160,2]},{"1054490":[104,107,32,69,151,176,35,194,32,165,226,72,56,233,15]},{"1054506":[133,226,165,232,72,56,233,15]},{"1054515":[133,232,226,32,32,69,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054547":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054567":[13,133]},{"1054570":[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]},{"1054605":[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]},{"1054647":[144,8,230,5,56,233,100]},{"1054655":[128,243,201,10]},{"1054660":[144,8,230,6,56,233,10]},{"1054668":[128,243,201,1]},{"1054673":[144,8,230,7,56,233,1]},{"1054681":[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,255,151,127,255,151,160,171,107]},{"1054720":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054738":[16,41,127]},{"1054742":[157,2,16,232,232,104,10,41,255,127,9]},{"1054754":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054775":[16,169,1,133,20,194,32,107,218,174]},{"1054786":[16,41,127]},{"1054790":[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]},{"1054832":[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]},{"1054879":[143,109,243,126,169]},{"1054885":[143,1,80,127,40,175,109,243,126,107,162]},{"1054897":[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]},{"1054923":[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]},{"1054950":[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,17,153,160,107,72,173]},{"1054996":[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]},{"1055026":[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]},{"1055100":[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]},{"1055161":[143,23,192,126,175,139,243,126,107,169]},{"1055172":[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,129,154,160,170,191,104,243,126,31,20,244,126,250,63,139,154,160,208,3,130,98]},{"1055249":[191,118,154,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,132,154,160,170,191,104,243,126,31,20,244,126,250,63,143,154,160,208,3,130,44]},{"1055303":[191,122,154,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]},{"1055363":[1,1]},{"1055368":[1]},{"1055370":[1,32,32,16]},{"1055375":[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]},{"1055428":[240,5,169,8]},{"1055433":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055446":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055468":[2,107,175,19,130,48,41,255]},{"1055477":[240,5,169,8]},{"1055482":[128,7,175,72,128,48,41,255]},{"1055491":[24,101,234,48,3,169]},{"1055499":[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]},{"1055526":[201,255]},{"1055529":[208,1,107,175,22,244,126,41,32]},{"1055539":[240,4,169]},{"1055544":[107,173,12,4,41,255]},{"1055551":[201,255]},{"1055554":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055578":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,215,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055610":[107,169,136,21,133]},{"1055616":[107,175,69,128,48,208,6,169,16,22,133]},{"1055628":[107,169,144,21,133]},{"1055634":[107,175,69,128,48,208,6,169,24,22,133]},{"1055646":[107,169,152,21,133]},{"1055652":[107,175,69,128,48,208,6,169,32,22,133]},{"1055664":[107,169,160,21,133]},{"1055670":[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]},{"1055762":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055776":[144,240,175,22,244,126,41,32]},{"1055785":[240,3,130,200,1,175,69,128,48,41,1]},{"1055797":[208,3,130,231]},{"1055802":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055824":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055841":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055858":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055875":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055892":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1055909":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1055926":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1055943":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1055960":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1055977":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1055994":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056011":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056028":[141,165,22,194,32,175,69,128,48,41,2]},{"1056040":[208,3,130,201]},{"1056045":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056058":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056073":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056088":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056103":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056118":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056133":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056148":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056163":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056178":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056193":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056208":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056223":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056238":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056253":[208,3,130,170,1,175,69,128,48,41,4]},{"1056265":[208,3,130,201]},{"1056270":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056283":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056298":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056313":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056328":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056343":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056358":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056373":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056388":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056403":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056418":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056433":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056448":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056463":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056478":[208,3,130,201]},{"1056483":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056496":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056511":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056526":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056541":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056556":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056571":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056586":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056601":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056616":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056631":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056646":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056661":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056676":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056695":[191,246,160,160,157,234,18,191,10,161,160,157,42,19,191,30,161,160,157,106,19,191,50,161,160,157,170,19,191,70,161,160,157,234,19,191,90,161,160,157,42,20,191,110,161,160,157,106,20,191,130,161,160,157,170,20,191,150,161,160,157,234,20,232,232,224,20]},{"1056763":[144,186,175,116,243,126,41,4]},{"1056772":[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]},{"1056805":[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]},{"1056838":[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]},{"1056871":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056892":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1056913":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1056934":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1056955":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1056976":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1056997":[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]},{"1057620":[143,114,243,126,173,10,2,208,14,169]},{"1057631":[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]},{"1057665":[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]},{"1057746":[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]},{"1057789":[165,12,201,232,3,144,3,130,24]},{"1057799":[201,100]},{"1057802":[144,3,130,97]},{"1057807":[201,10]},{"1057810":[144,3,130,170]},{"1057815":[201,1]},{"1057818":[144,3,130,243]},{"1057823":[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,164,165,133,14,165,14,159]},{"1057860":[201,126,232,232,169,56]},{"1057867":[159]},{"1057869":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1057883":[201,126,232,232,169]},{"1057890":[159]},{"1057892":[201,126,232,232,165,14,24,105,8]},{"1057902":[133,14,100,10,165,12,201,100]},{"1057911":[144,8,56,233,100]},{"1057917":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,164,165,133,14,165,14,159]},{"1057941":[201,126,232,232,169,56]},{"1057948":[159]},{"1057950":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1057964":[201,126,232,232,169]},{"1057971":[159]},{"1057973":[201,126,232,232,165,14,24,105,8]},{"1057983":[133,14,100,10,165,12,201,10]},{"1057992":[144,8,56,233,10]},{"1057998":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,164,165,133,14,165,14,159]},{"1058022":[201,126,232,232,169,56]},{"1058029":[159]},{"1058031":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1058045":[201,126,232,232,169]},{"1058052":[159]},{"1058054":[201,126,232,232,165,14,24,105,8]},{"1058064":[133,14,100,10,165,12,201,1]},{"1058073":[144,8,56,233,1]},{"1058079":[230,10,128,243,133,12,192,255,208,10,160]},{"1058091":[165,14,24,121,164,165,133,14,165,14,159]},{"1058103":[201,126,232,232,169,56]},{"1058110":[159]},{"1058112":[201,126,232,232,164,10,152,10,168,185,144,165,159]},{"1058126":[201,126,232,232,169]},{"1058133":[159]},{"1058135":[201,126,232,232,165,14,24,105,8]},{"1058145":[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]},{"1058216":[252,255,248,255,218,90,8,194,48,162]},{"1058228":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058243":[208,13,175,153,80,127,41,255]},{"1058252":[223,3,200,48,208,44,226,32,191]},{"1058262":[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]},{"1058304":[200,48,41,255]},{"1058309":[201,255]},{"1058312":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058335":[226,32,162]},{"1058340":[160]},{"1058343":[152,207,96,80,127,144,3,130,172]},{"1058353":[191,1,201,48,201,255,208,3,130,161]},{"1058364":[191]},{"1058366":[201,48,207,80,80,127,240,3,130,137]},{"1058377":[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]},{"1058414":[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,88,167,160,170,32,119,167,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]},{"1058545":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058559":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,178,172,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,179,172,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,180,172,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]},{"1058652":[128]},{"1058657":[1]},{"1058660":[169,142,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,39,145,160,34,45,213]},{"1058699":[194,16,96,32,146,167,107,173]},{"1058708":[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]},{"1058738":[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]},{"1058775":[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]},{"1058916":[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]},{"1059081":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059102":[175,81,80,127,201,255,208,3,76,11,169,139,75,171,34,231,244,30,32,89,169,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]},{"1059153":[32,118,173,32,118,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059176":[201,2,208,3,130,227]},{"1059183":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059198":[165,26,41,16,240,12,189,237,169,159]},{"1059209":[201,126,232,224,16,144,244,189,253,169,159]},{"1059221":[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]},{"1059280":[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]},{"1059311":[248,255]},{"1059316":[2]},{"1059321":[16]},{"1059324":[2]},{"1059327":[248,255]},{"1059332":[2]},{"1059337":[16,64]},{"1059340":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,66,133,8,169,170,133,9,128,8,169,74,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059398":[70,10]},{"1059401":[2]},{"1059406":[70,74]},{"1059409":[2,218,162]},{"1059413":[165,26,41,64,240,12,189,196,170,159]},{"1059424":[201,126,232,224,16,144,244,189,212,170,159]},{"1059436":[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]},{"1059495":[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]},{"1059526":[248,255,132]},{"1059531":[2]},{"1059536":[16]},{"1059539":[2]},{"1059542":[248,255,132]},{"1059547":[2]},{"1059552":[16,64]},{"1059555":[2,218,162]},{"1059559":[165,26,41,64,240,12,189,86,171,159]},{"1059570":[201,126,232,224,16,144,244,189,102,171,159]},{"1059582":[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]},{"1059641":[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]},{"1059672":[248,255,142]},{"1059677":[2]},{"1059682":[16]},{"1059685":[2]},{"1059688":[248,255,142]},{"1059693":[2]},{"1059698":[16,64]},{"1059701":[2,218,90,8,160]},{"1059707":[90,152,74,74,168,175,95,80,127,57,178,172,240,3,122,128,48,122,173,238]},{"1059728":[221,32,15,208,39,32,73,173,32,181,172,34,230,131,6,144,3,32,105,173,32,31,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,203,171,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]},{"1059856":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059872":[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,178,172,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,178,172,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]},{"1060025":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060046":[58,10,168,185,107,174,133]},{"1060054":[122,104,24,113]},{"1060059":[24,105,2]},{"1060063":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060076":[13,194,32,90,200,200,24,113]},{"1060085":[122,72,175,81,80,127,41,128]},{"1060094":[240,7,104,24,105,4]},{"1060101":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060124":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060141":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060154":[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]},{"1060182":[165,35,105]},{"1060186":[133,8,165,32,105,8,133,1,165,33,105]},{"1060198":[133,9,96,218,34]},{"1060204":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060226":[160]},{"1060228":[175,81,80,127,41,3,201,3,208,5,32,167,173,128,4,201,2,208,5,32,167,173,128,4,201,1,208,3,32,167,173,122,250,171,96,175,95,80,127,57,178,172,240,3,130,178]},{"1060275":[90,175,81,80,127,41,3,58,10,168,194,32,185,107,174,133]},{"1060292":[163,1,10,10,168,177]},{"1060299":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060312":[208,8,177]},{"1060316":[143,39,192,126,128,10,177]},{"1060324":[24,105,4]},{"1060328":[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,137,174,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,28,147,160,143,42,192,126,169]},{"1060395":[143,43,192,126,191,82,80,127,34,22,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060421":[143,44,192,126,32,94,175,169,2,218,72,175,97,80,127,170,104,32,21,175,250,175,81,80,127,41,128,208,3,32,140,174,200,232,232,232,232,96,113,174,117,174,125,174,8]},{"1060467":[40]},{"1060469":[240,255,40]},{"1060473":[32]},{"1060475":[40]},{"1060477":[216,255,40]},{"1060481":[8]},{"1060483":[40]},{"1060485":[56]},{"1060487":[40]},{"1060489":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060508":[58,10,168,185,107,174,133]},{"1060516":[185,3,175,133,2,122,90,152,10,10,168,177]},{"1060529":[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,246,163,226,32,133,6,100,7,72,169]},{"1060568":[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,9,175,11,175,15,175]},{"1060618":[255]},{"1060620":[128,128,255]},{"1060624":[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]},{"1060705":[194,32,191,37,192,126,24,105,4]},{"1060715":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060731":[159,47,192,126,191,41,192,126,24,105,16]},{"1060743":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060777":[72,165,2,72,169,16,128,133]},{"1060786":[169,48]},{"1060789":[133,2,169,2]},{"1060794":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,107,72,189,128,14,34,95,150,160,104,107,72,188,128,14,104,34,37,144,160,107,169,8,157,80,15,169]},{"1060841":[143]},{"1060843":[80,127,32,80,176,34,249,149,160,107,72,175]},{"1060856":[80,127,240,6,34,231,175,160,128,7,32,80,176,34,176,150,160,104,107,32,80,176,201,36,208,24,90,160,36,34,39,184,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,72,165,160,201,115,208,6,175,98,227,48,128,12,201,140,208,6,175,99,227,48,128,2,169]},{"1060931":[143,152,192,126,104,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,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]},{"1061237":[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]},{"1061304":[191,129,178,160,197,4,144,3,232,128,245,191,130,178,160,133,6,100,7,194,32,138,10,10,170,191,131,178,160,141,232,80,191,133,178,160,141,234,80,173]},{"1061345":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061363":[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,109,176,173,236,80,10,10,170,189]},{"1061400":[81,56,229,8,157]},{"1061406":[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]},{"1061438":[81,141,228,80,189,2,81,141,230,80,32,109,176,173]},{"1061453":[81,56,229,8,141]},{"1061459":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,105,176,160,141,232,80,173,234,80,239,107,176,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,34,39,145,160,72,165,138,201,3,240,6,34,148,178,160,128,4,34,135,178,160,104,107,34,175,135,160,72,34,249,149,160,169,1,143,51,80,127,143,52,80,127,34,175,178,160,169,235,143]},{"1061601":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061625":[13,165,33,153,32,13,169]},{"1061633":[153,32,15,169,127,153,112,15,107,72,8,34,52,179,160,144,31,156,18,1,156,239,3,169]},{"1061658":[133,93,194,32,165,138,201,48]},{"1061667":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061691":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061704":[128,16,201,48]},{"1061709":[208,11,165,34,201]},{"1061715":[2,144,4,56,130,1]},{"1061722":[24,226,32,107,191,46,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061743":[226,32,34,16,247,8,169,52,145,144,200,191,46,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061778":[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]},{"1061840":[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,60,180,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]},{"1061987":[13,173,219,15,233]},{"1061993":[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]},{"1062032":[13,173,219,15,233]},{"1062038":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062063":[254,127,208,245,169,4,107,34,235,185,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,253,185,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,253,185,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062136":[107,169]},{"1062139":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,109,181,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,109,181,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,109,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,109,181,160,107,218,8,194,32,41,127]},{"1062260":[10,170,191]},{"1062264":[82,127,26,41,255,3,159]},{"1062272":[82,127,170,10,191]},{"1062278":[128,175,40,250,107,218,8,194,48,162]},{"1062290":[191,194,181,160,159]},{"1062296":[82,127,232,232,191,194,181,160,159]},{"1062306":[82,127,232,232,191,194,181,160,159]},{"1062316":[82,127,232,232,191,194,181,160,159]},{"1062326":[82,127,232,232,224,127]},{"1062333":[144,211,40,250,107]},{"1062340":[64]},{"1062342":[128]},{"1062344":[192]},{"1062347":[1,64,1,128,1,192,1]},{"1062355":[2,64,2,128,2,192,2]},{"1062363":[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,226,181,160,175,35,128,48,208,4,34,2,182,160,104,107,72,169]},{"1062465":[143,65,80,127,175,34,128,48,201,1,208,4,34,226,181,160,175,35,128,48,201,1,208,4,34,2,182,160,104,107,72,175,34,128,48,201,2,208,4,34,226,181,160,175,35,128,48,201,2,208,4,34,2,182,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]},{"1062631":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062648":[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]},{"1062719":[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]},{"1062755":[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,182,183,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]},{"1062880":[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]},{"1062906":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1062926":[2,156,5,2,169]},{"1062932":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,24,185,72,218,8,175,152,192,126,240,3,130,229]},{"1062963":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1062980":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1062997":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063014":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063031":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063048":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063065":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063082":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063105":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063122":[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]},{"1063155":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063178":[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]},{"1063210":[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]},{"1063268":[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]},{"1063294":[192,59,208,3,130,96]},{"1063301":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063326":[201,15,1,208,3,130,59]},{"1063334":[201,16,1,208,3,130,51]},{"1063342":[201,28,1,208,3,130,43]},{"1063350":[201,31,1,208,3,130,35]},{"1063358":[201,255]},{"1063361":[208,3,130,27]},{"1063366":[201,20,1,208,3,130,19]},{"1063374":[201,21,1,208,3,130,11]},{"1063382":[201,22,1,208,3,130,3]},{"1063390":[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]},{"1063422":[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]},{"1063575":[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]},{"1063613":[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]},{"1063651":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063669":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063687":[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]},{"1063723":[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]},{"1063761":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063779":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,4,192,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]},{"1063883":[208,9,32,158,190,32,207,190,130,64,2,192,1,208,6,32,158,190,130,54,2,192,2,208,6,32,158,190,130,44,2,192,3,208,6,32,158,190,130,34,2,192,4,208,6,32,207,190,130,24,2,192,5,208,6,32,207,190,130,14,2,192,6,208,6,32,207,190,130,4,2,192,7,144,10,192,14,176,6,32]},{"1063964":[191,130,246,1,192,20,208,9,32,92,190,32]},{"1063977":[191,130,233,1,192,15,144,10,192,23,176,6,32]},{"1063991":[191,130,219,1,192,23,208,6,32,100,191,130,209,1,192,24,144,10,192,26,176,6,32]},{"1064015":[191,130,195,1,192,26,208,9,32,125,190,32]},{"1064028":[191,130,182,1,192,29,208,6,32]},{"1064038":[191,130,172,1,192,27,144,10,192,32,176,6,32,12,191,130,158,1,192,32,208,6,32,140,191,130,148,1,192,33,208,6,32]},{"1064072":[191,130,138,1,192,34,144,10,192,36,176,6,32,168,191,130,124,1,192,36,208,6,32,184,191,130,114,1,192,37,208,6,32,216,191,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,32,192,130,87,1,192,40,208,6,32,32,192,130,77,1,192,41,208,6,32]},{"1064143":[191,130,67,1,192,42,144,10,192,46,176,6,32]},{"1064157":[191,130,53,1,192,49,208,6,32,32,192,130,43,1,192,50,208,6,32,248,191,130,33,1,192,51,208,6,32,54,192,130,23,1,192,55,144,10,192,58,176,6,32,40,191,130,9,1,192,58,144,10,192,60,176,6,32,237,190,130,251]},{"1064219":[192,60,208,6,32]},{"1064225":[191,130,241]},{"1064229":[192,61,208,6,32]},{"1064235":[191,130,231]},{"1064239":[192,62,144,10,192,64,176,6,32,128,191,130,217]},{"1064253":[192,72,208,6,32]},{"1064259":[191,130,207]},{"1064263":[192,73,208,6,32,158,190,130,197]},{"1064273":[192,74,208,9,32,92,190,32]},{"1064282":[191,130,184]},{"1064286":[192,75,208,9,32,59,190,32,12,191,130,171]},{"1064299":[192,76,208,9,32,68,191,32,32,192,130,158]},{"1064312":[192,77,144,10,192,80,176,6,32,68,191,130,144]},{"1064326":[192,80,208,6,32,158,190,130,134]},{"1064336":[192,81,144,10,192,85,176,6,32,68,191,130,120]},{"1064350":[192,88,208,6,32,237,190,130,110]},{"1064360":[192,94,208,6,32,158,190,130,100]},{"1064370":[192,95,208,6,32,207,190,130,90]},{"1064380":[192,96,208,6,32,168,191,130,80]},{"1064390":[192,97,208,6,32,12,191,130,70]},{"1064400":[192,100,144,10,192,102,176,6,32,237,190,130,56]},{"1064414":[192,112,144,10,192,128,176,6,32,54,192,130,42]},{"1064428":[192,128,144,10,192,144,176,6,32,216,191,130,28]},{"1064442":[192,144,144,10,192,160,176,6,32,248,191,130,14]},{"1064456":[192,160,144,10,192,176,176,6,32,184,191,130]},{"1064470":[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,26,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064622":[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,184,191,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]},{"1065012":[191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,70,192,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,215,238,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]},{"1065218":[201,2]},{"1065221":[208,14,175,140,243,126,41,192]},{"1065230":[201,192]},{"1065233":[240,79,128,64,201,1]},{"1065240":[208,14,175,142,243,126,41,192]},{"1065249":[201,192]},{"1065252":[240,60,128,45,201,5]},{"1065259":[208,14,175,140,243,126,41,48]},{"1065268":[201,48]},{"1065271":[240,41,128,26,201,13]},{"1065278":[208,16,175,140,243,126,137,4]},{"1065287":[240,12,41,3]},{"1065292":[208,20,128,5,201,16]},{"1065299":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065312":[208,5,169,79,61,128,6,32,113,193,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]},{"1065359":[41,255,239,153,4]},{"1065365":[185,62]},{"1065368":[41,255,239,153,62]},{"1065374":[185,68]},{"1065377":[41,255,239,153,68]},{"1065383":[185,128]},{"1065386":[41,255,239,153,128]},{"1065392":[185,130]},{"1065395":[41,255,239,153,130]},{"1065401":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065422":[41,255,239,153,132]},{"1065428":[185,126]},{"1065431":[41,255,239,153,126]},{"1065437":[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]},{"1065475":[201,144]},{"1065478":[208,3,169,127]},{"1065483":[9]},{"1065485":[36,143,100,199,126,165,5,41,255]},{"1065495":[9]},{"1065497":[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,76,241,160,34,189,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,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065601":[72,165,2,72,169,16,128,133]},{"1065610":[169,48]},{"1065613":[133,2,169,4]},{"1065618":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,249,149,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,28,175]},{"1065664":[80,127,240,15,189,160,13,34,249,149,160,169]},{"1065677":[143]},{"1065679":[80,127,128,7,189,160,13,34,95,150,160,107,169]},{"1065693":[157,192,13,72,169,1,143]},{"1065701":[80,127,165,93,201,20,240,60,169]},{"1065711":[143]},{"1065713":[80,127,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065733":[72,165,2,72,169,16,128,133]},{"1065742":[169,48]},{"1065745":[133,2,169,3]},{"1065750":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,249,149,160,104,107,72,90,175]},{"1065775":[80,127,240,6,34,224,194,160,128,7,189,128,14,34,95,150,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]},{"1065818":[72,165,2,72,169,16,128,133]},{"1065827":[169,48]},{"1065830":[133,2,169,4]},{"1065835":[34,67,147,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,141,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]},{"1065893":[143,68,243,126,107,175,123,243,126,41,255]},{"1065905":[201,2]},{"1065908":[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]},{"1065941":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1065956":[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]},{"1065992":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066006":[173,91,3,41,1,208,3,130,134]},{"1066016":[90,8,139,75,171,226,48,165,27,240,3,76,163,196,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066053":[129,48,143]},{"1066057":[254,127,34,93,246,29,162]},{"1066065":[165,47,201,4,240,1,232,191,167,196,160,153,80,13,169]},{"1066081":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,169,196,160,41,240,153,16,13,165,35,105]},{"1066115":[153,48,13,165,32,24,105,22,41,240,153]},{"1066127":[13,165,33,105]},{"1066132":[153,32,13,169]},{"1066137":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066154":[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]},{"1066185":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066206":[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,2,153,160,92,53,207,30,175,195,225,29,34,249,149,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066268":[92,82,223,29,175,133,225,29,34,249,149,160,107,165,138,201,129,208,12,169,1,143]},{"1066291":[80,127,175,195,225,29,128,4,175,133,225,29,34,95,150,160,107,72,165,138,201,129,208,14,34,186,143,160,175,96,227,48,143,152,192,126,128,12,34,24,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,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066377":[72,165,2,72,169,64,129,133]},{"1066386":[169,48]},{"1066389":[133,2,169,10]},{"1066394":[34,67,147,164,250,134,2,250,134,1,40,250,34,249,149,160,169,235,143]},{"1066414":[254,127,34,93,246,29,162]},{"1066422":[165,47,201,4,240,1,232,191,19,198,160,153,80,13,169]},{"1066438":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,21,198,160,41,240,153,16,13,165,35,105]},{"1066472":[153,48,13,165,32,24,105,22,41,240,153]},{"1066484":[13,165,33,105]},{"1066489":[153,32,13,169]},{"1066494":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066518":[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]},{"1066597":[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]},{"1066624":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,146,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066663":[72,165,2,72,169,16,128,133]},{"1066672":[169,48]},{"1066675":[133,2,169,5]},{"1066680":[34,67,147,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]},{"1066734":[201,35,208,6,160,93,92,71,213]},{"1066744":[201,72,208,6,160,96,92,71,213]},{"1066754":[201,36,176,6,160,91,92,71,213]},{"1066764":[201,55,176,6,160,92,92,71,213]},{"1066774":[201,57,176,6,160,93,92,71,213]},{"1066784":[160,50,92,71,213]},{"1066790":[192,9,48]},{"1066794":[96]},{"1066796":[144]},{"1066798":[192]},{"1066801":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066825":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066843":[9,48,9,96,9,144,9,240,9]},{"1066854":[240]},{"1066856":[32,10,80,10,96,6]},{"1066863":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1066885":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1066901":[6,48,6]},{"1066905":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1066921":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1066942":[127,38,199,160,107,165]},{"1066949":[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]},{"1066980":[132,175,24,105]},{"1066985":[136,133]},{"1066988":[226,32,169,175,133,2,34,250,226,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,80,218,160,162,1,128,2,162]},{"1067046":[171,40,122,104,133,2,104,133,1,104,133]},{"1067058":[96,218,173,216,2,34,48,227,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067541":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,80,218,160,130,84,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,80,218,160,130,40,1,201,109,208,7,34,233,187,164,130,29,1,201,110,208,7,34,233,187,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067788":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067805":[56,233,8,170,169,1,224]},{"1067813":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067836":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067855":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1067872":[56,233,8,170,169,1,224]},{"1067880":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1067903":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067922":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1067939":[56,233,8,170,169,1,224]},{"1067947":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1067970":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1067992":[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,19]},{"1068024":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068043":[250,173,233,2,201,1,107,72,218,34,208,238,160,173,216,2,72,175,152,192,126,208,12,104,32,255,217,141,216,2,32,213,217,128,1,104,201,22,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,16,2,201,43,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,249,1,201,44,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,226,1,201,45,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,203,1,201,60,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,180,1,201,61,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,157,1,201,72,208,19,32,48,218,207,150,128,48,144,7,175,151,128,48,141,216,2,130,134,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,116,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,92,1,201]},{"1068284":[208,8,169,73,141,216,2,130,80,1,201,1,208,8,169,80,141,216,2,130,68,1,201,2,208,8,169,2,141,216,2,130,56,1,169,3,141,216,2,130,48,1,201,95,208,122,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,18,1,175,22,244,126,41,192,208,28,169,4,141,216,2,175,152,192,126,240,3,130,252]},{"1068378":[175,22,244,126,24,105,64,143,22,244,126,130,238]},{"1068392":[201,64,208,28,169,5,141,216,2,175,152,192,126,240,3,130,220]},{"1068410":[175,22,244,126,24,105,64,143,22,244,126,130,206]},{"1068424":[169,6,141,216,2,175,152,192,126,240,3,130,192]},{"1068438":[175,22,244,126,24,105,64,143,22,244,126,130,178]},{"1068452":[201,96,208,40,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,154]},{"1068476":[201]},{"1068478":[208,8,169,34,141,216,2,130,142]},{"1068488":[169,35,141,216,2,130,134]},{"1068496":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,116]},{"1068514":[169,28,141,216,2,130,108]},{"1068522":[201,100,208,40,175,64,243,126,26,74,207,152,128,48,144,10,175,153,128,48,141,216,2,130,82]},{"1068548":[201]},{"1068550":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,201,101,208,18,175,152,192,126,208,10,175,142,243,126,9,32,143,142,243,126,128,194,201,98,208,19,34,232,216,160,141,216,2,235,32,115,217,169,255,143,144,80,127,128,19,201,99,208,15,34,164,217,160,141,216,2,169,255,143,144,80,127,128]},{"1068630":[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]},{"1068885":[4,4,4,4,4,5]},{"1068897":[4]},{"1068899":[4]},{"1068902":[4]},{"1068914":[4]},{"1068920":[5]},{"1068930":[4,4,4]},{"1068944":[4,4]},{"1068947":[4]},{"1068951":[4]},{"1068958":[4]},{"1068967":[4]},{"1069038":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069118":[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]},{"1069167":[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]},{"1069206":[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,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]},{"1069363":[2,2]},{"1069371":[2,2,2,2,2,2]},{"1069378":[2]},{"1069380":[2,2]},{"1069383":[2,2,2,2,2,2,2,2,2,2,2]},{"1069395":[2,2,2,2,2]},{"1069401":[2,2,2,2,2,2,2,2,2]},{"1069413":[2,2,2,2,2,2,2,2,2,2,2]},{"1069426":[2]},{"1069428":[2,2,2]},{"1069432":[2,2,2,2,2,2]},{"1069439":[2,2,2,2,2,2,2,2]},{"1069448":[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]},{"1069534":[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]},{"1069720":[4,4,4]},{"1069726":[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,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,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]},{"1070639":[128]},{"1070641":[64]},{"1070643":[32]},{"1070645":[16]},{"1070647":[8]},{"1070649":[4]},{"1070651":[2]},{"1070653":[1,128]},{"1070656":[64]},{"1070658":[32]},{"1070660":[16]},{"1070662":[8]},{"1070664":[4]},{"1070895":[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,255,217,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,125,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,125,216,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]},{"1071349":[160,48,107,162]},{"1071354":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071367":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071381":[168,152,32,79,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071401":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071425":[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]},{"1071465":[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]},{"1071502":[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]},{"1071541":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071554":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071577":[191]},{"1071579":[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]},{"1071619":[191]},{"1071621":[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,162]},{"1071666":[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,96,100,17,100,176,92,175,186,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071729":[13,24,105,3,107,189,32,14,201,136,208,9,32,174,218,201,4,144,1,58,107,32,174,218,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071775":[200,49,74,74,74,74,107,40,191]},{"1071785":[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]},{"1071835":[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]},{"1071869":[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,10,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]},{"1072071":[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]},{"1072126":[143,96,243,126,226,32,34,133,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072152":[165,27,240,121,194,32,165,160,201,14]},{"1072163":[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]},{"1072198":[201,126]},{"1072201":[208,33,165,34,41,255,1,201,104]},{"1072211":[144,60,201,136]},{"1072216":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072236":[201,222]},{"1072239":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072264":[144,7,201,154]},{"1072269":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,245,220,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,245,220,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]},{"1072407":[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]},{"1072460":[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,9,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072513":[174,2,32,224,83,45,240,3,130,253]},{"1072524":[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]},{"1072589":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072689":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072747":[90,194,32,191]},{"1072752":[217,48,133]},{"1072756":[226,32,178]},{"1072760":[122,132]},{"1072763":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072783":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072804":[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]},{"1072916":[208,13,173,11,1,41,255]},{"1072924":[201,59]},{"1072927":[208,63,128,56,201,107]},{"1072934":[208,58,175,19,130,48,201,1]},{"1072943":[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]},{"1072976":[240,14,175,167,80,127,41,4]},{"1072985":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073000":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073019":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073044":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073060":[66,169,255,141,64,33,169,144,133]},{"1073070":[169,250,133,1,169,160,34,29,137]},{"1073080":[169,129,141]},{"1073084":[66,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]},{"1073120":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073136":[232,226,32,168,173]},{"1073142":[32,137,64,208,249,173]},{"1073149":[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]},{"1073186":[32,137,64,208,249,173]},{"1073193":[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]},{"1073244":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073270":[175,169,80,127,240,85,173]},{"1073278":[32,137,64,240,4,92,220,128]},{"1073287":[173]},{"1073289":[32,137,8,240,4,92,220,128]},{"1073298":[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]},{"1073334":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073353":[143,169,80,127,92,220,128]},{"1073361":[173,39,1,205,41,1,208,4,92,220,128]},{"1073373":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073403":[224,255,208,4,92,220,128]},{"1073411":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073427":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073443":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073460":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073474":[141,43,1,92,220,128]},{"1073481":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073500":[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]},{"1073532":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073557":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073599":[90,194,32,191]},{"1073604":[217,48,133]},{"1073608":[226,32,178]},{"1073612":[122,132]},{"1073615":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073638":[141,44,1,72,34,248,220,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]},{"1073707":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073720":[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]},{"1073790":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073803":[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]},{"1073870":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073888":[87,127,107,191]},{"1073893":[18,127,107,156,240,28,156,241,28,169]},{"1073904":[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]},{"1073936":[226,32,183]},{"1073940":[159]},{"1073942":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073961":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073985":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074003":[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]},{"1074029":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074047":[226,32,183]},{"1074051":[159]},{"1074053":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074072":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074092":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074110":[226,32,183]},{"1074114":[159]},{"1074116":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074135":[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]},{"1074166":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074184":[226,32,183]},{"1074188":[159]},{"1074190":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074209":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074229":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074247":[226,32,183]},{"1074251":[159]},{"1074253":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074272":[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]},{"1074301":[133]},{"1074303":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074321":[226,32,183]},{"1074325":[159]},{"1074327":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074346":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074366":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074384":[226,32,183]},{"1074388":[159]},{"1074390":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074409":[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]},{"1074440":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074458":[226,32,183]},{"1074462":[159]},{"1074464":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074483":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074503":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074521":[226,32,183]},{"1074525":[159]},{"1074527":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074546":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074567":[133]},{"1074569":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074587":[226,32,183]},{"1074591":[159]},{"1074593":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074612":[143,148,80,127,226,32,130,213]},{"1074621":[201,128,208,56,169,52,133]},{"1074629":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074647":[226,32,183]},{"1074651":[159]},{"1074653":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074672":[143,148,80,127,226,32,130,153]},{"1074681":[201,144,208,55,169,112,133]},{"1074689":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074707":[226,32,183]},{"1074711":[159]},{"1074713":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074732":[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]},{"1074759":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074777":[226,32,183]},{"1074781":[159]},{"1074783":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074802":[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]},{"1074881":[208,56,169,216,133]},{"1074887":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074905":[226,32,183]},{"1074909":[159]},{"1074911":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074930":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074947":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074965":[226,32,183]},{"1074969":[159]},{"1074971":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074990":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075007":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075025":[226,32,183]},{"1075029":[159]},{"1075031":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075050":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075067":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075085":[226,32,183]},{"1075089":[159]},{"1075091":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075110":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075127":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075145":[226,32,183]},{"1075149":[159]},{"1075151":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075170":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075187":[169,129,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,130,83,2,201,6,208,56,169,116,133]},{"1075247":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075265":[226,32,183]},{"1075269":[159]},{"1075271":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075290":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075307":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075325":[226,32,183]},{"1075329":[159]},{"1075331":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075350":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075367":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075385":[226,32,183]},{"1075389":[159]},{"1075391":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075410":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075427":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075445":[226,32,183]},{"1075449":[159]},{"1075451":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075470":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075487":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075505":[226,32,183]},{"1075509":[159]},{"1075511":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075530":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075547":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075565":[226,32,183]},{"1075569":[159]},{"1075571":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075590":[143,148,80,127,226,32,130,235]},{"1075599":[201,12,208,56,169,12,133]},{"1075607":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075625":[226,32,183]},{"1075629":[159]},{"1075631":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075650":[143,148,80,127,226,32,130,175]},{"1075659":[201,13,208,55,169,41,133]},{"1075667":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075685":[226,32,183]},{"1075689":[159]},{"1075691":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075710":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075726":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075744":[226,32,183]},{"1075748":[159]},{"1075750":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075769":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075785":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075803":[226,32,183]},{"1075807":[159]},{"1075809":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075828":[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]},{"1075861":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075876":[171,40,122,250,104,107,34,78,216]},{"1075886":[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]},{"1075950":[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,36,236,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,36,236,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]},{"1076221":[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]},{"1076266":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076290":[226,48,160]},{"1076294":[183]},{"1076296":[201,254,208,39,200,183]},{"1076303":[201,110,208,32,200,183]},{"1076310":[208,27,200,183]},{"1076315":[201,254,208,20,200,183]},{"1076322":[201,107,208,13,200,183]},{"1076329":[201,4,208,6,156,232,28,130,19]},{"1076339":[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]},{"1076367":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076384":[10,10,69,138,41,8]},{"1076391":[240,6,152,24,105,16]},{"1076398":[168,165,35,41,2]},{"1076404":[74,69,138,41,1]},{"1076410":[240,4,152,26,26,168,152,41,255]},{"1076420":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,84,247,160,34,166,170,164,34]},{"1076452":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,153,185,164,107,194,16,34,61,137]},{"1076648":[169,7,141,12,33,175,240,244,126,208,10,34,9,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076700":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076780":[191]},{"1076782":[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]},{"1076856":[107,34,120,152,160,34,89,248,160,107,34,235,152,160,34,244,152,160,162,4,107,34,89,248,160,169,20,133,17,107,34,89,248,160,107,34,63,132,160,34,208,152,160,34,12,185,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]},{"1076931":[2,107,169]},{"1076935":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,2,153,160,107,169]},{"1076958":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,30,236,160,169]},{"1076980":[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]},{"1077016":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077041":[208,4,169]},{"1077046":[107,201,1]},{"1077050":[208,16,175,197,243,126,41,15]},{"1077059":[201,2]},{"1077062":[176,84,32,160,239,107,201,2]},{"1077071":[208,75,32,160,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077095":[107,175,74,128,48,41,255]},{"1077103":[240,43,175,195,242,126,41,32]},{"1077112":[208,34,173,8,3,41,128]},{"1077120":[240,4,169,1]},{"1077125":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077147":[107,169]},{"1077151":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077174":[96,169]},{"1077178":[96,175,76,128,48,41,255]},{"1077186":[240,4,92,90,189,27,224,118]},{"1077195":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077212":[72,170,191,64,130,48,208,3,130,175]},{"1077223":[58,133]},{"1077226":[10,10,24,101]},{"1077231":[10,10,170,169,22]},{"1077237":[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]},{"1077265":[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]},{"1077308":[137,128]},{"1077311":[240,3,9]},{"1077315":[255,143,106,193,126,191,98,130,48,41,255]},{"1077327":[137,128]},{"1077330":[240,3,9]},{"1077334":[255,143,110,193,126,169]},{"1077342":[56,239,106,193,126,143,108,193,126,169]},{"1077354":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077370":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077388":[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]},{"1077465":[165]},{"1077467":[223]},{"1077469":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077489":[165]},{"1077491":[223]},{"1077493":[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]},{"1077539":[175,74,128,48,41,255]},{"1077546":[240,25,175,93]},{"1077552":[41,255]},{"1077555":[201,20]},{"1077558":[208,13,165,138,41,64]},{"1077565":[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]},{"1077622":[107,104,141,228,2,141,193,15,141,16,7,107,34,139,241,160,34,248,241,160,107,169,14,143,1,40]},{"1077649":[169,4,143,1,40]},{"1077655":[169,13,143,1,40]},{"1077661":[169,14,143,1,40]},{"1077667":[169]},{"1077669":[143,1,40]},{"1077673":[169]},{"1077675":[143,1,40]},{"1077679":[169]},{"1077681":[143,1,40]},{"1077685":[169]},{"1077687":[143,1,40]},{"1077691":[169]},{"1077693":[143,1,40]},{"1077697":[169]},{"1077699":[143,1,40]},{"1077703":[169]},{"1077705":[143,1,40]},{"1077709":[169,1,143,1,40]},{"1077715":[169]},{"1077717":[143,1,40]},{"1077721":[169,1,143,1,40]},{"1077727":[169]},{"1077729":[143,1,40]},{"1077733":[169]},{"1077735":[143,1,40]},{"1077739":[169,10,143,1,40]},{"1077745":[169,13,143,1,40]},{"1077751":[107,72,218,162]},{"1077756":[175]},{"1077758":[40]},{"1077760":[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]},{"1077787":[175]},{"1077789":[40]},{"1077791":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077805":[232,128,235,56,175]},{"1077811":[40]},{"1077813":[72,175]},{"1077816":[40]},{"1077818":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077836":[175]},{"1077838":[40]},{"1077840":[72,175]},{"1077843":[40]},{"1077845":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077865":[40]},{"1077867":[72,175]},{"1077870":[40]},{"1077872":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077892":[40]},{"1077894":[72,175]},{"1077897":[40]},{"1077899":[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]},{"1077984":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1078002":[133]},{"1078004":[165,3,41,255]},{"1078009":[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,43,243,160,132,2,100,3,24,101]},{"1078051":[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]},{"1078106":[175]},{"1078108":[40]},{"1078110":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1078124":[232,128,235,56,175]},{"1078130":[40]},{"1078132":[72,175]},{"1078135":[40]},{"1078137":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1078155":[175]},{"1078157":[40]},{"1078159":[72,175]},{"1078162":[40]},{"1078164":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1078184":[40]},{"1078186":[72,175]},{"1078189":[40]},{"1078191":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078211":[40]},{"1078213":[72,175]},{"1078216":[40]},{"1078218":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078238":[40]},{"1078240":[133,4,175]},{"1078244":[40]},{"1078246":[72,175]},{"1078249":[40]},{"1078251":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078271":[40]},{"1078273":[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]},{"1078342":[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,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]},{"1078432":[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]},{"1078466":[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]},{"1078565":[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]},{"1078596":[201,2]},{"1078599":[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]},{"1078631":[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,82,247,160,144,10,208,8,175,140,80,127,207,80,247,160,144,114,175,145,129,48,41,255]},{"1078687":[208,24,169,2]},{"1078692":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078716":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078729":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078743":[143,142,80,127,169,1]},{"1078750":[143,126,80,127,128,54,201,2]},{"1078759":[208,24,169,2]},{"1078764":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,80,218,160,194,48,96,175,146,129,48,41,255]},{"1078801":[240,7,169]},{"1078806":[143,126,80,127,175,142,80,127,207,70,247,160,144,10,208,8,175,140,80,127,207,68,247,160,144,53,175,128,80,127,26,201,10]},{"1078840":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078854":[143,128,80,127,175,140,80,127,56,239,68,247,160,143,140,80,127,175,142,80,127,239,70,247,160,143,142,80,127,128,181,175,142,80,127,207,74,247,160,144,10,208,8,175,140,80,127,207,72,247,160,144,53,175,132,80,127,26,201,10]},{"1078915":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078929":[143,132,80,127,175,140,80,127,56,239,72,247,160,143,140,80,127,175,142,80,127,239,74,247,160,143,142,80,127,128,181,175,142,80,127,207,78,247,160,144,10,208,8,175,140,80,127,207,76,247,160,144,53,175,136,80,127,26,201,10]},{"1078990":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1079004":[143,136,80,127,175,140,80,127,56,239,76,247,160,143,140,80,127,175,142,80,127,239,78,247,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]},{"1079112":[16,14]},{"1079116":[60]},{"1079120":[255,255,255,127,175,204,80,127,41,255]},{"1079131":[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]},{"1079202":[240,93,175,145,129,48,41,255]},{"1079211":[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]},{"1079304":[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]},{"1079379":[208,3,32,34,245,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079409":[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]},{"1079443":[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,33,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]},{"1079517":[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]},{"1079623":[255,157]},{"1079626":[27,157,64,27,157,128,27,157,192,27,157]},{"1079638":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079652":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079666":[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]},{"1079704":[208,12,175]},{"1079708":[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]},{"1079782":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079805":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079955":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079971":[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]},{"1080043":[244,111,4]},{"1080047":[115,10,95]},{"1080051":[7]},{"1080057":[34,157,186,164,34,58,135,1,194,16,166,160,191,157,253,160,226,16,34,156,135]},{"1080079":[33,251,160,34,251,160,175,251,160,60,252,160,201,252,160,51,253,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1080115":[32,126,232,232,159]},{"1080121":[32,126,232,232,159]},{"1080127":[32,126,232,232,159]},{"1080133":[32,126,232,232,162,220,25,159]},{"1080142":[32,126,232,232,169,202,12,159]},{"1080151":[32,126,232,232,169,203,12,159]},{"1080160":[32,126,232,232,169,208,8,159]},{"1080169":[32,126,232,232,162,92,26,159]},{"1080178":[32,126,232,232,169,218,12,159]},{"1080187":[32,126,232,232,169,219,12,159]},{"1080196":[32,126,232,232,169,208,8,159]},{"1080205":[32,126,232,232,162,220,26,159]},{"1080214":[32,126,232,232,159]},{"1080220":[32,126,232,232,159]},{"1080226":[32,126,232,232,159]},{"1080232":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1080256":[32,126,232,232,159]},{"1080262":[32,126,232,232,159]},{"1080268":[32,126,232,232,159]},{"1080274":[32,126,232,232,162,156,25,159]},{"1080283":[32,126,232,232,169,202,12,159]},{"1080292":[32,126,232,232,169,203,12,159]},{"1080301":[32,126,232,232,169,208,8,159]},{"1080310":[32,126,232,232,162,28,26,159]},{"1080319":[32,126,232,232,169,218,12,159]},{"1080328":[32,126,232,232,169,219,12,159]},{"1080337":[32,126,232,232,169,208,8,159]},{"1080346":[32,126,232,232,162,156,26,159]},{"1080355":[32,126,232,232,159]},{"1080361":[32,126,232,232,159]},{"1080367":[32,126,232,232,159]},{"1080373":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1080397":[32,126,232,232,159]},{"1080403":[32,126,232,232,159]},{"1080409":[32,126,232,232,159]},{"1080415":[32,126,232,232,162,220,9,159]},{"1080424":[32,126,232,232,169,202,12,159]},{"1080433":[32,126,232,232,169,203,12,159]},{"1080442":[32,126,232,232,169,208,8,159]},{"1080451":[32,126,232,232,162,92,10,159]},{"1080460":[32,126,232,232,169,218,12,159]},{"1080469":[32,126,232,232,169,219,12,159]},{"1080478":[32,126,232,232,169,208,8,159]},{"1080487":[32,126,232,232,162,220,10,159]},{"1080496":[32,126,232,232,159]},{"1080502":[32,126,232,232,159]},{"1080508":[32,126,232,232,159]},{"1080514":[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]},{"1080747":[1]},{"1080829":[5]},{"1080831":[4]},{"1080859":[2]},{"1080955":[3]},{"1081053":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1081070":[134,1,133,2,32,221,254,176,4,92,83,230]},{"1081083":[169,49,133,2,194,32,169]},{"1081091":[192,133]},{"1081094":[162,128,167]},{"1081098":[141,24,33,230]},{"1081103":[230]},{"1081105":[167]},{"1081107":[141,24,33,230]},{"1081112":[230]},{"1081114":[167]},{"1081116":[141,24,33,230]},{"1081121":[230]},{"1081123":[167]},{"1081125":[141,24,33,230]},{"1081130":[230]},{"1081132":[167]},{"1081134":[141,24,33,230]},{"1081139":[230]},{"1081141":[167]},{"1081143":[141,24,33,230]},{"1081148":[230]},{"1081150":[167]},{"1081152":[141,24,33,230]},{"1081157":[230]},{"1081159":[167]},{"1081161":[141,24,33,230]},{"1081166":[230]},{"1081168":[202,208,181,226,32,92,81,230]},{"1081177":[226,48,175,248,194,126,168,32,221,254,194,48,176,10,162]},{"1081194":[160,64]},{"1081197":[92,104,223]},{"1081201":[162]},{"1081203":[192,160]},{"1081207":[169]},{"1081209":[8,139,84,127,177,171,162]},{"1081217":[8,169]},{"1081220":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,248,220,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,238,188,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,142,167,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,85,151,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,161,223,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,241,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,2,236,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,233,151,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,233,151,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,71,131,165,242,137,32,208,13,128,36,32,129,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,191,182,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,157,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,157,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,157,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,157,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,172,177,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,172,177,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[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]},{"1194185":[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]},{"1194245":[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,12,185,164,107,143,111,243,126,218,175,67,244,126,208,4,34,180,191,160,34,67,155,160,90,160,24,34,26,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,180,191,160,34,67,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1194364":[208,11,40,90,160,24,34,26,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,67,155,160,107,72,175,67,244,126,208,4,34,66,192,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,12,185,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,12,185,164,104,34,168,160,2,107,58,16,8,169]},{"1194620":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1194634":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,12,185,169,1,143]},{"1194660":[80,127,156,70,6,156,66,6,76,12,185,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,66,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194883":[83,127,201,3,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,182,188,164,226,48,169]},{"1194921":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194979":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195037":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,65,188,34,231,244,30,32,129,188,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,97,133,8,169,188,105]},{"1195094":[133,9,34,117,223,5,34,92,220,6,96]},{"1195107":[247,255,198]},{"1195112":[2]},{"1195117":[200]},{"1195120":[2]},{"1195123":[248,255,198]},{"1195128":[2]},{"1195133":[202,64]},{"1195136":[2,175,103,129,48,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,80,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195194":[84,34,63,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195220":[98,41,110,41,107,41,105,41,127]},{"1195230":[111,41,97,41,106,41,112,41,127]},{"1195240":[112,41,107,41,127]},{"1195246":[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]},{"1195293":[33,218,162,128,142]},{"1195299":[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]},{"1195327":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1195344":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1195435":[208,33,8,194,48,162]},{"1195443":[224,64]},{"1195446":[176,11,169,127]},{"1195451":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1195474":[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]},{"1195521":[240,7,224,2,240,3,130,137]},{"1195530":[130,132]},{"1195533":[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]},{"1195679":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1195696":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1195712":[224,28]},{"1195715":[176,12,191,194,188,164,159,88,192,126,232,232,128,239,160,28]},{"1195732":[175,211,244,126,41,255]},{"1195739":[58,201,64]},{"1195743":[176,63,10,10,10,10,10,170,192,60]},{"1195754":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195777":[176,11,169,127]},{"1195782":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,39,184,160,122,218,90,8,194,48,162]},{"1195938":[224,16]},{"1195941":[176,12,191,222,188,164,159,88,192,126,232,232,128,239,160,16]},{"1195958":[175,152,192,126,41,255]},{"1195965":[58,201,64]},{"1195969":[176,63,10,10,10,10,10,170,192,48]},{"1195980":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196003":[176,11,169,127]},{"1196008":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[176]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,144,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,52,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[242]},{"5002":[183]},{"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,122,199,160]},{"21847":[34,82,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,186,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,77,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[110,163,160]},{"30994":[240,163,160]},{"31001":[110,163,160]},{"31011":[240,163,160]},{"31046":[244,187,164]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[219,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,23,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,120,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,158,150,164,234]},{"60423":[34,17,194,164]},{"60790":[247,188,164]},{"61077":[28,181,160]},{"61133":[34,108,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,223,238,160]},{"65607":[235,237,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,87,194,160,234]},{"65894":[34,133,194,160]},{"66284":[34,168,194,160]},{"66292":[92,19,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,225,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,136,189,164,234,234]},{"67934":[90,248,160]},{"68474":[34,86,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[94,248,160]},{"69737":[34,172,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[94,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,12,246,160,234]},{"72216":[173,187,164]},{"72241":[34,133,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[226,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,149,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,228,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]},{"77216":[34,211,247,160,234]},{"78138":[156,246,160]},{"78172":[34,35,189,164,34,219,153,160,234,234]},{"79603":[34,225,187,164]},{"79767":[34,151,189,164]},{"82376":[234,234]},{"82676":[94,248,160]},{"87784":[234,234,234]},{"87892":[34,233,245,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,30,240,160]},{"90651":[34,66,237,160,234,234]},{"93230":[34,222,157,164,234,234]},{"93325":[34,154,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,222,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,189,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[91,194,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[95,181,160]},{"173058":[95,181,160]},{"173307":[95,181,160]},{"173320":[95,181,160]},{"183384":[34,201,247,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[108,237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,109,236,160,128,13]},{"189655":[34,12,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[34,194,164]},{"191439":[34,41,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,61,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,81,195,160,234]},{"192121":[169,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,10,179,160]},{"193157":[34,3,179,160]},{"193440":[34,191,219,160]},{"193472":[2,236,160]},{"193546":[34,191,219,160]},{"193578":[202,235,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[209,194,160]},{"194141":[34,193,195,160,234,234,234,234,234]},{"194177":[34,39,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,109,236,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,39,199,160]},{"195589":[89,176,160]},{"195710":[34,117,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[50,176,160]},{"195909":[60,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[168,192,160]},{"198721":[34,161,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,22,187,164]},{"198942":[34,61,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,8,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[243,175,160]},{"199993":[34,70,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,173,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,243,219,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[53,194,164]},{"212610":[72,194,164]},{"213139":[11,191,164]},{"213169":[147,133,160]},{"214205":[34,168,180,160]},{"214972":[58,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,68,188,164]},{"217579":[34,74,193,160]},{"224597":[34,191,218,160]},{"224693":[34,211,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,225,219,160,234]},{"226304":[34,20,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,194,238,160]},{"229634":[34,101,192,164]},{"230816":[40,179,160]},{"230955":[40,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,203,238,160,234]},{"233987":[74,187,164]},{"234731":[34,167,187,164]},{"234747":[34,214,238,160]},{"235953":[34,35,133,160,144,3]},{"236024":[168,204,160]},{"236047":[42,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[249,197,160]},{"238498":[34,130,196,160,128,3]},{"238562":[34,197,198,160,240,4,234]},{"238751":[34,85,220,160]},{"238964":[34,85,220,160]},{"239190":[34,85,220,160]},{"239964":[61,189,164]},{"240044":[92,207,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,53,219,160]},{"241165":[34,53,219,160]},{"241175":[34,235,128,164]},{"241294":[34,53,219,160]},{"241304":[34,235,128,164]},{"241814":[34,53,219,160,24,125,139,176]},{"241869":[103,236,160]},{"241877":[34,53,219,160,24,125,139,176]},{"242942":[34,219,236,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,188,188,164,234]},{"243067":[234,234,34,132,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,83,219,160,234]},{"250478":[34,137,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,13,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,224,241,160,234]},{"273608":[34,164,182,160,76,230,172]},{"275716":[34,136,182,160,234]},{"276202":[34,197,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,66,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,37,239,160,234,234]},{"279880":[92,250,194,164]},{"280037":[34,251,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[103,236,160]},{"280106":[92,149,226,160,234]},{"280265":[119,210,160]},{"280287":[119,209,160]},{"280314":[119,210,160]},{"280335":[34,196,179,160]},{"282028":[34,82,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,68,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,53,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,201,200,160,234]},{"296453":[92,110,194,164,234]},{"296466":[119,211]},{"296471":[120,211]},{"296480":[119,213]},{"296488":[119,211]},{"296493":[120,211]},{"296502":[119,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[119,214]},{"296810":[135,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[167,206]},{"297052":[151,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,47,226,160,234]},{"297144":[119,209]},{"297200":[167,206]},{"297225":[151,207]},{"297263":[120,215]},{"297292":[34,20,195,160]},{"297309":[127,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,12,195,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,215,223,160]},{"324619":[34,11,153,160]},{"324675":[34,166,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,51,237,160,34,142,188,164,234,234,234,234,234,234]},{"324996":[34,149,194,160]},{"325098":[169,2,0,234]},{"325131":[34,99,237,160]},{"325203":[34,139,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":[251,238,160]},{"342245":[34,59,132,160,34,15,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,76,247,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,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[219,187,164]},{"409856":[34,232,226,160]},{"410028":[94,255,161]},{"410347":[34,139,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[184,238,160]},{"412876":[92,89,178,164]},{"413015":[107]},{"413094":[110,148,164]},{"413109":[34,15,237,160]},{"413141":[34,126,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,19,149,164,234,234,234,234]},{"413264":[34,58,149,164,234,234,234,234,234,234]},{"413297":[92,97,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,188,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,126,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,90,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,235,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,90,178,164]},{"415678":[34,147,149,164]},{"416378":[6,150,164]},{"416491":[34,221,149,164,234]},{"416529":[34,184,149,164]},{"416588":[234,234,234,234]},{"416912":[34,212,149,164]},{"416937":[34,198,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":[20,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,94,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,57,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,87,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,36,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,23,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,106,155,160]},{"450360":[34,224,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,76,184,160,234]},{"450492":[34,74,155,160,234,234,234]},{"450861":[34,98,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,221,155,160,234]},{"452559":[34,203,155,160,234]},{"452581":[34,239,155,160,234]},{"452634":[96]},{"453064":[34,10,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,98,193,160,234,234,76,230,236]},{"453867":[34,1,156,160,234]},{"453892":[34,19,156,160]},{"454092":[34,124,155,160,234,234,234,234,234]},{"454233":[34,124,155,160,234,234,234,234,234]},{"454256":[34,202,194,160,234]},{"454282":[34,124,155,160,234,234,234,234,234]},{"454459":[34,124,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,160,216,160]},{"457513":[34,198,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,40,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,35,237,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,249,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[243,234,160]},{"487403":[169,2,0,234]},{"487935":[34,33,227,160]},{"488156":[34,33,227,160]},{"488213":[34,33,227,160]},{"488242":[34,33,227,160]},{"488309":[34,33,227,160]},{"488340":[34,33,227,160]},{"488721":[34,33,227,160]},{"489560":[34,33,227,160]},{"490022":[34,33,227,160]},{"490060":[34,33,227,160]},{"490164":[34,33,227,160]},{"490184":[34,33,227,160]},{"490209":[34,33,227,160]},{"490257":[34,33,227,160]},{"490438":[34,49,227,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,140,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,31,241,160]},{"900244":[34,115,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,106,241,160,234]},{"900437":[92,4,240,160,234]},{"900447":[34,219,245,160,234,234,234]},{"900458":[34,225,187,164]},{"901799":[34,94,153,164,107,32,222,201,107]},{"903876":[34,172,241,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,89,235,160,96]},{"954852":[187,181,160]},{"955117":[56,235,160]},{"955529":[183,181,160]},{"962925":[148,181,160]},{"962951":[148,181,160]},{"963167":[148,181,160]},{"963214":[148,181,160]},{"965041":[148,181,160]},{"965069":[148,181,160]},{"965214":[148,181,160]},{"965298":[148,181,160]},{"965316":[148,181,160]},{"967797":[34,252,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,22,180,160]},{"972824":[99,181,160]},{"972834":[99,181,160]},{"972851":[99,181,160]},{"974665":[92,149,197,160,234]},{"974706":[210,197,160]},{"974722":[183,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,166,197,160,234,234]},{"975332":[34,132,197,160,234,234]},{"975401":[255]},{"976357":[144,181,160]},{"976423":[144,181,160]},{"978658":[128,181,160]},{"979078":[34,211,219,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":[4,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,96,196,160]},{"983466":[128,181,160]},{"983651":[128,181,160]},{"988539":[140,181,160]},{"988657":[140,181,160]},{"988668":[140,181,160]},{"988874":[140,181,160]},{"988902":[140,181,160]},{"989142":[140,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[132,181,160]},{"999246":[136,181,160]},{"999265":[136,181,160]},{"999359":[136,181,160]},{"999574":[136,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,90,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[103,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[103,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,117,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,122,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,141,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,121,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,112,179,160,122,250,107,218,90,34,168,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,43,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,43,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,43,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,43,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,43,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,43,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,43,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,43,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,43,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,43,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,43,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,43,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,43,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,43,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,43,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,43,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,43,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,43,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,121,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,49,217,160,76,49,145,201,251,208,7,34,237,217,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,121,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,49,217,160,76,114,147,201,251,208,7,34,237,217,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,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,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,121,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,49,217,160,128,8,201,99,208,4,34,237,217,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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]},{"1055520":[240,5,169,8]},{"1055525":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055538":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055560":[2,107,175,19,130,48,41,255]},{"1055569":[240,5,169,8]},{"1055574":[128,7,175,72,128,48,41,255]},{"1055583":[24,101,234,48,3,169]},{"1055591":[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]},{"1055618":[201,255]},{"1055621":[208,1,107,175,22,244,126,41,32]},{"1055631":[240,4,169]},{"1055636":[107,173,12,4,41,255]},{"1055643":[201,255]},{"1055646":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055670":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,32,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055702":[107,169,136,21,133]},{"1055708":[107,175,69,128,48,208,6,169,16,22,133]},{"1055720":[107,169,144,21,133]},{"1055726":[107,175,69,128,48,208,6,169,24,22,133]},{"1055738":[107,169,152,21,133]},{"1055744":[107,175,69,128,48,208,6,169,32,22,133]},{"1055756":[107,169,160,21,133]},{"1055762":[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]},{"1055854":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055868":[144,240,175,22,244,126,41,32]},{"1055877":[240,3,130,200,1,175,69,128,48,41,1]},{"1055889":[208,3,130,231]},{"1055894":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055916":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055933":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055950":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055967":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055984":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056001":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056018":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056035":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056052":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056069":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056086":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056103":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056120":[141,165,22,194,32,175,69,128,48,41,2]},{"1056132":[208,3,130,201]},{"1056137":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056150":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056165":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056180":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056195":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056210":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056225":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056240":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056255":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056270":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056285":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056300":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056315":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056330":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056345":[208,3,130,170,1,175,69,128,48,41,4]},{"1056357":[208,3,130,201]},{"1056362":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056375":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056390":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056405":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056420":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056435":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056450":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056465":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056480":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056495":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056510":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056525":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056540":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056555":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056570":[208,3,130,201]},{"1056575":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056588":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056603":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056618":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056633":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056648":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056663":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056678":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056693":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056708":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056723":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056738":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056753":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056768":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056787":[191,82,161,160,157,234,18,191,102,161,160,157,42,19,191,122,161,160,157,106,19,191,142,161,160,157,170,19,191,162,161,160,157,234,19,191,182,161,160,157,42,20,191,202,161,160,157,106,20,191,222,161,160,157,170,20,191,242,161,160,157,234,20,232,232,224,20]},{"1056855":[144,186,175,116,243,126,41,4]},{"1056864":[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]},{"1056897":[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]},{"1056930":[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]},{"1056963":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056984":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057005":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057026":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057047":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057068":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057089":[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]},{"1057712":[143,114,243,126,173,10,2,208,14,169]},{"1057723":[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]},{"1057757":[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]},{"1057838":[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]},{"1057881":[165,12,201,232,3,144,3,130,24]},{"1057891":[201,100]},{"1057894":[144,3,130,97]},{"1057899":[201,10]},{"1057902":[144,3,130,170]},{"1057907":[201,1]},{"1057910":[144,3,130,243]},{"1057915":[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]},{"1057945":[166,133,14,165,14,159]},{"1057952":[201,126,232,232,169,56]},{"1057959":[159]},{"1057961":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1057975":[201,126,232,232,169]},{"1057982":[159]},{"1057984":[201,126,232,232,165,14,24,105,8]},{"1057994":[133,14,100,10,165,12,201,100]},{"1058003":[144,8,56,233,100]},{"1058009":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121]},{"1058026":[166,133,14,165,14,159]},{"1058033":[201,126,232,232,169,56]},{"1058040":[159]},{"1058042":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058056":[201,126,232,232,169]},{"1058063":[159]},{"1058065":[201,126,232,232,165,14,24,105,8]},{"1058075":[133,14,100,10,165,12,201,10]},{"1058084":[144,8,56,233,10]},{"1058090":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121]},{"1058107":[166,133,14,165,14,159]},{"1058114":[201,126,232,232,169,56]},{"1058121":[159]},{"1058123":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058137":[201,126,232,232,169]},{"1058144":[159]},{"1058146":[201,126,232,232,165,14,24,105,8]},{"1058156":[133,14,100,10,165,12,201,1]},{"1058165":[144,8,56,233,1]},{"1058171":[230,10,128,243,133,12,192,255,208,10,160]},{"1058183":[165,14,24,121]},{"1058188":[166,133,14,165,14,159]},{"1058195":[201,126,232,232,169,56]},{"1058202":[159]},{"1058204":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058218":[201,126,232,232,169]},{"1058225":[159]},{"1058227":[201,126,232,232,165,14,24,105,8]},{"1058237":[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]},{"1058308":[252,255,248,255,218,90,8,194,48,162]},{"1058320":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058335":[208,13,175,153,80,127,41,255]},{"1058344":[223,3,200,48,208,44,226,32,191]},{"1058354":[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]},{"1058396":[200,48,41,255]},{"1058401":[201,255]},{"1058404":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058427":[226,32,162]},{"1058432":[160]},{"1058435":[152,207,96,80,127,144,3,130,172]},{"1058445":[191,1,201,48,201,255,208,3,130,161]},{"1058456":[191]},{"1058458":[201,48,207,80,80,127,240,3,130,137]},{"1058469":[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]},{"1058506":[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,180,167,160,170,32,211,167,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]},{"1058637":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058651":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,14,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,15,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,16,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]},{"1058744":[128]},{"1058749":[1]},{"1058752":[169,234,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,49,145,160,34,45,213]},{"1058791":[194,16,96,32,238,167,107,173]},{"1058800":[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]},{"1058830":[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]},{"1058867":[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]},{"1059008":[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]},{"1059173":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059194":[175,81,80,127,201,255,208,3,76,103,169,139,75,171,34,231,244,30,32,181,169,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]},{"1059245":[32,210,173,32,210,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059268":[201,2,208,3,130,227]},{"1059275":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059290":[165,26,41,16,240,12,189,73,170,159]},{"1059301":[201,126,232,224,16,144,244,189,89,170,159]},{"1059313":[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]},{"1059372":[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]},{"1059403":[248,255]},{"1059408":[2]},{"1059413":[16]},{"1059416":[2]},{"1059419":[248,255]},{"1059424":[2]},{"1059429":[16,64]},{"1059432":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,158,133,8,169,170,133,9,128,8,169,166,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059490":[70,10]},{"1059493":[2]},{"1059498":[70,74]},{"1059501":[2,218,162]},{"1059505":[165,26,41,64,240,12,189,32,171,159]},{"1059516":[201,126,232,224,16,144,244,189,48,171,159]},{"1059528":[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]},{"1059587":[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]},{"1059618":[248,255,132]},{"1059623":[2]},{"1059628":[16]},{"1059631":[2]},{"1059634":[248,255,132]},{"1059639":[2]},{"1059644":[16,64]},{"1059647":[2,218,162]},{"1059651":[165,26,41,64,240,12,189,178,171,159]},{"1059662":[201,126,232,224,16,144,244,189,194,171,159]},{"1059674":[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]},{"1059733":[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]},{"1059764":[248,255,142]},{"1059769":[2]},{"1059774":[16]},{"1059777":[2]},{"1059780":[248,255,142]},{"1059785":[2]},{"1059790":[16,64]},{"1059793":[2,218,90,8,160]},{"1059799":[90,152,74,74,168,175,95,80,127,57,14,173,240,3,122,128,48,122,173,238]},{"1059820":[221,32,15,208,39,32,165,173,32,17,173,34,230,131,6,144,3,32,197,173,32,123,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,39,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]},{"1059948":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059964":[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,14,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,14,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]},{"1060117":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060138":[58,10,168,185,199,174,133]},{"1060146":[122,104,24,113]},{"1060151":[24,105,2]},{"1060155":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060168":[13,194,32,90,200,200,24,113]},{"1060177":[122,72,175,81,80,127,41,128]},{"1060186":[240,7,104,24,105,4]},{"1060193":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060216":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060233":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060246":[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]},{"1060274":[165,35,105]},{"1060278":[133,8,165,32,105,8,133,1,165,33,105]},{"1060290":[133,9,96,218,34]},{"1060296":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060318":[160]},{"1060320":[175,81,80,127,41,3,201,3,208,5,32,3,174,128,4,201,2,208,5,32,3,174,128,4,201,1,208,3,32,3,174,122,250,171,96,175,95,80,127,57,14,173,240,3,130,178]},{"1060367":[90,175,81,80,127,41,3,58,10,168,194,32,185,199,174,133]},{"1060384":[163,1,10,10,168,177]},{"1060391":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060404":[208,8,177]},{"1060408":[143,39,192,126,128,10,177]},{"1060416":[24,105,4]},{"1060420":[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,229,174,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,114,147,160,143,42,192,126,169]},{"1060487":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060513":[143,44,192,126,32,186,175,169,2,218,72,175,97,80,127,170,104,32,113,175,250,175,81,80,127,41,128,208,3,32,232,174,200,232,232,232,232,96,205,174,209,174,217,174,8]},{"1060559":[40]},{"1060561":[240,255,40]},{"1060565":[32]},{"1060567":[40]},{"1060569":[216,255,40]},{"1060573":[8]},{"1060575":[40]},{"1060577":[56]},{"1060579":[40]},{"1060581":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060600":[58,10,168,185,199,174,133]},{"1060608":[185,95,175,133,2,122,90,152,10,10,168,177]},{"1060621":[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,82,164,226,32,133,6,100,7,72,169]},{"1060660":[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,101,175,103,175,107,175]},{"1060710":[255]},{"1060712":[128,128,255]},{"1060716":[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]},{"1060797":[194,32,191,37,192,126,24,105,4]},{"1060807":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060823":[159,47,192,126,191,41,192,126,24,105,16]},{"1060835":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060877":[72,165,2,72,169,16,128,133]},{"1060886":[169,48]},{"1060889":[133,2,169,2]},{"1060894":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060941":[143]},{"1060943":[80,127,32,156,176,34,79,150,160,107,72,175]},{"1060956":[80,127,240,6,34,75,176,160,128,13,32,156,176,34,12,151,160,169]},{"1060975":[143,152,192,126,104,107,32,156,176,201,36,208,24,90,160,36,34,141,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061060":[143,152,192,126,169,36,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]},{"1061335":[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]},{"1061402":[191,227,178,160,197,4,144,3,232,128,245,191,228,178,160,133,6,100,7,194,32,138,10,10,170,191,229,178,160,141,232,80,191,231,178,160,141,234,80,173]},{"1061443":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061461":[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,207,176,173,236,80,10,10,170,189]},{"1061498":[81,56,229,8,157]},{"1061504":[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]},{"1061536":[81,141,228,80,189,2,81,141,230,80,32,207,176,173]},{"1061551":[81,56,229,8,141]},{"1061557":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,203,176,160,141,232,80,173,234,80,239,205,176,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,34,49,145,160,72,165,138,201,3,240,6,34,246,178,160,128,4,34,233,178,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,17,179,160,169,235,143]},{"1061703":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061727":[13,165,33,153,32,13,169]},{"1061735":[153,32,15,169,127,153,112,15,107,72,8,34,154,179,160,144,31,156,18,1,156,239,3,169]},{"1061760":[133,93,194,32,165,138,201,48]},{"1061769":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061793":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061806":[128,16,201,48]},{"1061811":[208,11,165,34,201]},{"1061817":[2,144,4,56,130,1]},{"1061824":[24,226,32,107,191,119,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061845":[226,32,34,16,247,8,169,52,145,144,200,191,119,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061880":[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]},{"1061942":[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,162,180,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]},{"1062089":[13,173,219,15,233]},{"1062095":[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]},{"1062134":[13,173,219,15,233]},{"1062140":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062165":[254,127,208,245,169,4,107,34,211,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,229,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,229,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062238":[107,169]},{"1062241":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,211,181,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,211,181,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,211,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,211,181,160,107,218,8,194,32,41,127]},{"1062362":[10,170,191]},{"1062366":[82,127,26,41,255,3,159]},{"1062374":[82,127,170,10,191]},{"1062380":[128,175,40,250,107,218,8,194,48,162]},{"1062392":[191,40,182,160,159]},{"1062398":[82,127,232,232,191,40,182,160,159]},{"1062408":[82,127,232,232,191,40,182,160,159]},{"1062418":[82,127,232,232,191,40,182,160,159]},{"1062428":[82,127,232,232,224,127]},{"1062435":[144,211,40,250,107]},{"1062442":[64]},{"1062444":[128]},{"1062446":[192]},{"1062449":[1,64,1,128,1,192,1]},{"1062457":[2,64,2,128,2,192,2]},{"1062465":[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,72,182,160,175,35,128,48,208,4,34,104,182,160,104,107,72,169]},{"1062567":[143,65,80,127,175,34,128,48,201,1,208,4,34,72,182,160,175,35,128,48,201,1,208,4,34,104,182,160,104,107,72,175,34,128,48,201,2,208,4,34,72,182,160,175,35,128,48,201,2,208,4,34,104,182,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]},{"1062733":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062750":[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]},{"1062821":[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]},{"1062857":[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,28,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]},{"1062982":[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]},{"1063008":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063028":[2,156,5,2,169]},{"1063034":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,126,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063065":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063082":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063099":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063116":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063133":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063150":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063167":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063184":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063207":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063224":[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]},{"1063257":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063280":[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]},{"1063312":[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]},{"1063370":[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]},{"1063396":[192,59,208,3,130,96]},{"1063403":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063428":[201,15,1,208,3,130,59]},{"1063436":[201,16,1,208,3,130,51]},{"1063444":[201,28,1,208,3,130,43]},{"1063452":[201,31,1,208,3,130,35]},{"1063460":[201,255]},{"1063463":[208,3,130,27]},{"1063468":[201,20,1,208,3,130,19]},{"1063476":[201,21,1,208,3,130,11]},{"1063484":[201,22,1,208,3,130,3]},{"1063492":[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]},{"1063524":[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]},{"1063677":[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]},{"1063715":[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]},{"1063753":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063771":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063789":[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]},{"1063825":[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]},{"1063863":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063881":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,106,192,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]},{"1063985":[208,9,32,4,191,32,53,191,130,64,2,192,1,208,6,32,4,191,130,54,2,192,2,208,6,32,4,191,130,44,2,192,3,208,6,32,4,191,130,34,2,192,4,208,6,32,53,191,130,24,2,192,5,208,6,32,53,191,130,14,2,192,6,208,6,32,53,191,130,4,2,192,7,144,10,192,14,176,6,32,102,191,130,246,1,192,20,208,9,32,194,190,32,102,191,130,233,1,192,15,144,10,192,23,176,6,32,102,191,130,219,1,192,23,208,6,32,202,191,130,209,1,192,24,144,10,192,26,176,6,32,102,191,130,195,1,192,26,208,9,32,227,190,32,102,191,130,182,1,192,29,208,6,32,102,191,130,172,1,192,27,144,10,192,32,176,6,32,114,191,130,158,1,192,32,208,6,32,242,191,130,148,1,192,33,208,6,32,102,191,130,138,1,192,34,144,10,192,36,176,6,32,14,192,130,124,1,192,36,208,6,32,30,192,130,114,1,192,37,208,6,32,62,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,134,192,130,87,1,192,40,208,6,32,134,192,130,77,1,192,41,208,6,32,102,191,130,67,1,192,42,144,10,192,46,176,6,32,102,191,130,53,1,192,49,208,6,32,134,192,130,43,1,192,50,208,6,32,94,192,130,33,1,192,51,208,6,32,156,192,130,23,1,192,55,144,10,192,58,176,6,32,142,191,130,9,1,192,58,144,10,192,60,176,6,32,83,191,130,251]},{"1064321":[192,60,208,6,32,102,191,130,241]},{"1064331":[192,61,208,6,32,102,191,130,231]},{"1064341":[192,62,144,10,192,64,176,6,32,230,191,130,217]},{"1064355":[192,72,208,6,32,102,191,130,207]},{"1064365":[192,73,208,6,32,4,191,130,197]},{"1064375":[192,74,208,9,32,194,190,32,102,191,130,184]},{"1064388":[192,75,208,9,32,161,190,32,114,191,130,171]},{"1064401":[192,76,208,9,32,170,191,32,134,192,130,158]},{"1064414":[192,77,144,10,192,80,176,6,32,170,191,130,144]},{"1064428":[192,80,208,6,32,4,191,130,134]},{"1064438":[192,81,144,10,192,85,176,6,32,170,191,130,120]},{"1064452":[192,88,208,6,32,83,191,130,110]},{"1064462":[192,94,208,6,32,4,191,130,100]},{"1064472":[192,95,208,6,32,53,191,130,90]},{"1064482":[192,96,208,6,32,14,192,130,80]},{"1064492":[192,97,208,6,32,114,191,130,70]},{"1064502":[192,100,144,10,192,102,176,6,32,83,191,130,56]},{"1064516":[192,112,144,10,192,128,176,6,32,156,192,130,42]},{"1064530":[192,128,144,10,192,144,176,6,32,62,192,130,28]},{"1064544":[192,144,144,10,192,160,176,6,32,94,192,130,14]},{"1064558":[192,160,144,10,192,176,176,6,32,30,192,130]},{"1064572":[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,128,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064724":[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,30,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,102,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,172,192,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,32,239,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]},{"1065320":[201,2]},{"1065323":[208,14,175,140,243,126,41,192]},{"1065332":[201,192]},{"1065335":[240,79,128,64,201,1]},{"1065342":[208,14,175,142,243,126,41,192]},{"1065351":[201,192]},{"1065354":[240,60,128,45,201,5]},{"1065361":[208,14,175,140,243,126,41,48]},{"1065370":[201,48]},{"1065373":[240,41,128,26,201,13]},{"1065380":[208,16,175,140,243,126,137,4]},{"1065389":[240,12,41,3]},{"1065394":[208,20,128,5,201,16]},{"1065401":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065414":[208,5,169,79,61,128,6,32,215,193,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]},{"1065461":[41,255,239,153,4]},{"1065467":[185,62]},{"1065470":[41,255,239,153,62]},{"1065476":[185,68]},{"1065479":[41,255,239,153,68]},{"1065485":[185,128]},{"1065488":[41,255,239,153,128]},{"1065494":[185,130]},{"1065497":[41,255,239,153,130]},{"1065503":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065524":[41,255,239,153,132]},{"1065530":[185,126]},{"1065533":[41,255,239,153,126]},{"1065539":[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]},{"1065577":[201,144]},{"1065580":[208,3,169,127]},{"1065585":[9]},{"1065587":[36,143,100,199,126,165,5,41,255]},{"1065597":[9]},{"1065599":[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,149,241,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065711":[72,165,2,72,169,16,128,133]},{"1065720":[169,48]},{"1065723":[133,2,169,4]},{"1065728":[34,43,150,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065774":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065795":[143]},{"1065797":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065811":[157,192,13,72,169,1,143]},{"1065819":[80,127,165,93,201,20,240,68,169]},{"1065829":[143]},{"1065831":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065859":[72,165,2,72,169,16,128,133]},{"1065868":[169,48]},{"1065871":[133,2,169,3]},{"1065876":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065901":[80,127,240,6,34,86,195,160,128,7,189,128,14,34,187,150,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]},{"1065944":[72,165,2,72,169,16,128,133]},{"1065953":[169,48]},{"1065956":[133,2,169,4]},{"1065961":[34,43,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,151,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]},{"1066019":[143,68,243,126,107,175,123,243,126,41,255]},{"1066031":[201,2]},{"1066034":[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]},{"1066067":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066082":[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]},{"1066118":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066132":[173,91,3,41,1,208,3,130,134]},{"1066142":[90,8,139,75,171,226,48,165,27,240,3,76,33,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066179":[129,48,143]},{"1066183":[254,127,34,93,246,29,162]},{"1066191":[165,47,201,4,240,1,232,191,37,197,160,153,80,13,169]},{"1066207":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,39,197,160,41,240,153,16,13,165,35,105]},{"1066241":[153,48,13,165,32,24,105,22,41,240,153]},{"1066253":[13,165,33,105]},{"1066258":[153,32,13,169]},{"1066263":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066280":[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]},{"1066311":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066332":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066402":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066433":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066527":[72,165,2,72,169,64,129,133]},{"1066536":[169,48]},{"1066539":[133,2,169,10]},{"1066544":[34,43,150,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066564":[254,127,34,93,246,29,162]},{"1066572":[165,47,201,4,240,1,232,191,169,198,160,153,80,13,169]},{"1066588":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,171,198,160,41,240,153,16,13,165,35,105]},{"1066622":[153,48,13,165,32,24,105,22,41,240,153]},{"1066634":[13,165,33,105]},{"1066639":[153,32,13,169]},{"1066644":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066668":[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]},{"1066747":[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]},{"1066774":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066813":[72,165,2,72,169,16,128,133]},{"1066822":[169,48]},{"1066825":[133,2,169,5]},{"1066830":[34,43,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]},{"1066884":[201,35,208,6,160,93,92,71,213]},{"1066894":[201,72,208,6,160,96,92,71,213]},{"1066904":[201,36,176,6,160,91,92,71,213]},{"1066914":[201,55,176,6,160,92,92,71,213]},{"1066924":[201,57,176,6,160,93,92,71,213]},{"1066934":[160,50,92,71,213]},{"1066940":[192,9,48]},{"1066944":[96]},{"1066946":[144]},{"1066948":[192]},{"1066951":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066975":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066993":[9,48,9,96,9,144,9,240,9]},{"1067004":[240]},{"1067006":[32,10,80,10,96,6]},{"1067013":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067035":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067051":[6,48,6]},{"1067055":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067071":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067092":[127,188,199,160,107,165]},{"1067099":[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]},{"1067130":[132,175,24,105]},{"1067135":[136,133]},{"1067138":[226,32,169,175,133,2,34,67,227,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,153,218,160,162,1,128,2,162]},{"1067196":[171,40,122,104,133,2,104,133,1,104,133]},{"1067208":[96,218,173,216,2,34,121,227,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067691":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,153,218,160,130,84,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,153,218,160,130,40,1,201,109,208,7,34,209,190,164,130,29,1,201,110,208,7,34,209,190,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067938":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067955":[56,233,8,170,169,1,224]},{"1067963":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067986":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068005":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1068022":[56,233,8,170,169,1,224]},{"1068030":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1068053":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068072":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1068089":[56,233,8,170,169,1,224]},{"1068097":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1068120":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068142":[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,19]},{"1068174":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068193":[250,173,233,2,201,1,107,72,218,34,25,239,160,173,216,2,72,175,152,192,126,208,12,104,32,72,218,141,216,2,32,30,218,128,1,104,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,121,218,207,150,128,48,144,13,175,152,192,126,208,7,175,151,128,48,141,216,2,130,163,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,145,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,115,1,175,89,243,126,201,255,208,8,169,73,141,216,2,130,99,1,201]},{"1068350":[208,8,169,73,141,216,2,130,87,1,201,1,208,8,169,80,141,216,2,130,75,1,201,2,208,8,169,2,141,216,2,130,63,1,169,3,141,216,2,130,55,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,29,1,201,64,208,8,169,5,141,216,2,130,17,1,169,6,141,216,2,130,9,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,239]},{"1068464":[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,200]},{"1068503":[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,170]},{"1068533":[175,91,243,126,201]},{"1068539":[208,8,169,34,141,216,2,130,154]},{"1068549":[169,35,141,216,2,130,146]},{"1068557":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,128]},{"1068575":[169,28,141,216,2,130,120]},{"1068583":[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,88]},{"1068615":[175,64,243,126,26,74,201]},{"1068623":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,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,49,217,160,141,216,2,235,32,188,217,169,255,143,144,80,127,128,19,201,99,208,15,34,237,217,160,141,216,2,169,255,143,144,80,127,128]},{"1068703":[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]},{"1068958":[4,4,4,4,4,5]},{"1068970":[4]},{"1068972":[4]},{"1068975":[4]},{"1068987":[4]},{"1068993":[5]},{"1069003":[4,4,4]},{"1069017":[4,4]},{"1069020":[4]},{"1069024":[4]},{"1069031":[4]},{"1069040":[4]},{"1069111":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069191":[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]},{"1069240":[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]},{"1069279":[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,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]},{"1069436":[2,2]},{"1069444":[2,2,2,2,2,2]},{"1069451":[2]},{"1069453":[2,2]},{"1069456":[2,2,2,2,2,2,2,2,2,2,2]},{"1069468":[2,2,2,2,2]},{"1069474":[2,2,2,2,2,2,2,2,2]},{"1069486":[2,2,2,2,2,2,2,2,2,2,2]},{"1069499":[2]},{"1069501":[2,2,2]},{"1069505":[2,2,2,2,2,2]},{"1069512":[2,2,2,2,2,2,2,2]},{"1069521":[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]},{"1069607":[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]},{"1069793":[4,4,4]},{"1069799":[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,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,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]},{"1070712":[128]},{"1070714":[64]},{"1070716":[32]},{"1070718":[16]},{"1070720":[8]},{"1070722":[4]},{"1070724":[2]},{"1070726":[1,128]},{"1070729":[64]},{"1070731":[32]},{"1070733":[16]},{"1070735":[8]},{"1070737":[4]},{"1070968":[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,72,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,198,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,198,216,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]},{"1071422":[160,48,107,162]},{"1071427":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071440":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071454":[168,152,32,152,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071474":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071498":[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]},{"1071538":[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]},{"1071575":[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]},{"1071614":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071627":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071650":[191]},{"1071652":[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]},{"1071692":[191]},{"1071694":[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,162]},{"1071739":[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,96,100,17,100,176,92,151,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071802":[13,24,105,3,107,189,32,14,201,136,208,9,32,247,218,201,4,144,1,58,107,32,247,218,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071848":[200,49,74,74,74,74,107,40,191]},{"1071858":[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]},{"1071908":[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]},{"1071942":[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,20,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]},{"1072144":[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]},{"1072199":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072225":[165,27,240,121,194,32,165,160,201,14]},{"1072236":[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]},{"1072271":[201,126]},{"1072274":[208,33,165,34,41,255,1,201,104]},{"1072284":[144,60,201,136]},{"1072289":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072309":[201,222]},{"1072312":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072337":[144,7,201,154]},{"1072342":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,62,221,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,62,221,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]},{"1072480":[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]},{"1072533":[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,82,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072586":[174,2,32,224,83,45,240,3,130,253]},{"1072597":[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]},{"1072662":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072762":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072820":[90,194,32,191]},{"1072825":[217,48,133]},{"1072829":[226,32,178]},{"1072833":[122,132]},{"1072836":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072856":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072877":[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]},{"1072989":[208,13,173,11,1,41,255]},{"1072997":[201,59]},{"1073000":[208,63,128,56,201,107]},{"1073007":[208,58,175,19,130,48,201,1]},{"1073016":[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]},{"1073049":[240,14,175,167,80,127,41,4]},{"1073058":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073073":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073092":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073117":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073133":[66,169,255,141,64,33,169,241,133]},{"1073143":[169,247,133,1,169,160,34,29,137]},{"1073153":[169,129,141]},{"1073157":[66,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]},{"1073193":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073209":[232,226,32,168,173]},{"1073215":[32,137,64,208,249,173]},{"1073222":[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]},{"1073259":[32,137,64,208,249,173]},{"1073266":[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]},{"1073317":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073343":[175,169,80,127,240,85,173]},{"1073351":[32,137,64,240,4,92,220,128]},{"1073360":[173]},{"1073362":[32,137,8,240,4,92,220,128]},{"1073371":[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]},{"1073407":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073426":[143,169,80,127,92,220,128]},{"1073434":[173,39,1,205,41,1,208,4,92,220,128]},{"1073446":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073476":[224,255,208,4,92,220,128]},{"1073484":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073500":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073516":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073533":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073547":[141,43,1,92,220,128]},{"1073554":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073573":[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]},{"1073605":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073630":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073672":[90,194,32,191]},{"1073677":[217,48,133]},{"1073681":[226,32,178]},{"1073685":[122,132]},{"1073688":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073711":[141,44,1,72,34,65,221,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]},{"1073780":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073793":[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]},{"1073863":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073876":[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]},{"1073943":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073961":[87,127,107,191]},{"1073966":[18,127,107,156,240,28,156,241,28,169]},{"1073977":[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]},{"1074009":[226,32,183]},{"1074013":[159]},{"1074015":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074034":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074058":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074076":[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]},{"1074102":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074120":[226,32,183]},{"1074124":[159]},{"1074126":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074145":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074165":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074183":[226,32,183]},{"1074187":[159]},{"1074189":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074208":[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]},{"1074239":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074257":[226,32,183]},{"1074261":[159]},{"1074263":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074282":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074302":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074320":[226,32,183]},{"1074324":[159]},{"1074326":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074345":[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]},{"1074374":[133]},{"1074376":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074394":[226,32,183]},{"1074398":[159]},{"1074400":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074419":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074439":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074457":[226,32,183]},{"1074461":[159]},{"1074463":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074482":[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]},{"1074513":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074531":[226,32,183]},{"1074535":[159]},{"1074537":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074556":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074576":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074594":[226,32,183]},{"1074598":[159]},{"1074600":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074619":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074640":[133]},{"1074642":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074660":[226,32,183]},{"1074664":[159]},{"1074666":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074685":[143,148,80,127,226,32,130,213]},{"1074694":[201,128,208,56,169,52,133]},{"1074702":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074720":[226,32,183]},{"1074724":[159]},{"1074726":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074745":[143,148,80,127,226,32,130,153]},{"1074754":[201,144,208,55,169,112,133]},{"1074762":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074780":[226,32,183]},{"1074784":[159]},{"1074786":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074805":[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]},{"1074832":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074850":[226,32,183]},{"1074854":[159]},{"1074856":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074875":[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]},{"1074954":[208,56,169,216,133]},{"1074960":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074978":[226,32,183]},{"1074982":[159]},{"1074984":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075003":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075020":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075038":[226,32,183]},{"1075042":[159]},{"1075044":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075063":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075080":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075098":[226,32,183]},{"1075102":[159]},{"1075104":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075123":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075140":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075158":[226,32,183]},{"1075162":[159]},{"1075164":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075183":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075200":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075218":[226,32,183]},{"1075222":[159]},{"1075224":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075243":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075260":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075278":[226,32,183]},{"1075282":[159]},{"1075284":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075303":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075320":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075338":[226,32,183]},{"1075342":[159]},{"1075344":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075363":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075380":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075398":[226,32,183]},{"1075402":[159]},{"1075404":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075423":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075440":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075458":[226,32,183]},{"1075462":[159]},{"1075464":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075483":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075500":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075518":[226,32,183]},{"1075522":[159]},{"1075524":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075543":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075560":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075578":[226,32,183]},{"1075582":[159]},{"1075584":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075603":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075620":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075638":[226,32,183]},{"1075642":[159]},{"1075644":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075663":[143,148,80,127,226,32,130,235]},{"1075672":[201,12,208,56,169,12,133]},{"1075680":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075698":[226,32,183]},{"1075702":[159]},{"1075704":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075723":[143,148,80,127,226,32,130,175]},{"1075732":[201,13,208,55,169,41,133]},{"1075740":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075758":[226,32,183]},{"1075762":[159]},{"1075764":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075783":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075799":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075817":[226,32,183]},{"1075821":[159]},{"1075823":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075842":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075858":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075876":[226,32,183]},{"1075880":[159]},{"1075882":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075901":[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]},{"1075934":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075949":[171,40,122,250,104,107,34,78,216]},{"1075959":[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]},{"1076023":[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,109,236,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,109,236,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]},{"1076294":[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]},{"1076339":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076363":[226,48,160]},{"1076367":[183]},{"1076369":[201,254,208,39,200,183]},{"1076376":[201,110,208,32,200,183]},{"1076383":[208,27,200,183]},{"1076388":[201,254,208,20,200,183]},{"1076395":[201,107,208,13,200,183]},{"1076402":[201,4,208,6,156,232,28,130,19]},{"1076412":[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]},{"1076440":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076457":[10,10,69,138,41,8]},{"1076464":[240,6,152,24,105,16]},{"1076471":[168,165,35,41,2]},{"1076477":[74,69,138,41,1]},{"1076483":[240,4,152,26,26,168,152,41,255]},{"1076493":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,249,150,164,34,239,147,164,107,34,181,244,160,34,142,173,164,34]},{"1076525":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,129,188,164,107,194,16,34,61,137]},{"1076721":[169,7,141,12,33,175,240,244,126,208,10,34,82,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076773":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,18,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]},{"1076853":[191]},{"1076855":[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]},{"1076929":[107,34,212,152,160,34,186,245,160,107,34,71,153,160,34,80,153,160,162,4,107,34,186,245,160,169,20,133,17,107,34,186,245,160,107,34,63,132,160,34,44,153,160,34,244,187,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]},{"1077004":[2,107,169]},{"1077008":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1077031":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,103,236,160,169]},{"1077053":[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]},{"1077089":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077114":[208,4,169]},{"1077119":[107,201,1]},{"1077123":[208,16,175,197,243,126,41,15]},{"1077132":[201,2]},{"1077135":[176,84,32,233,239,107,201,2]},{"1077144":[208,75,32,233,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077168":[107,175,74,128,48,41,255]},{"1077176":[240,43,175,195,242,126,41,32]},{"1077185":[208,34,173,8,3,41,128]},{"1077193":[240,4,169,1]},{"1077198":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077220":[107,169]},{"1077224":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077247":[96,169]},{"1077251":[96,175,76,128,48,41,255]},{"1077259":[240,4,92,90,189,27,224,118]},{"1077268":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077285":[72,170,191,64,130,48,208,3,130,175]},{"1077296":[58,133]},{"1077299":[10,10,24,101]},{"1077304":[10,10,170,169,22]},{"1077310":[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]},{"1077338":[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]},{"1077381":[137,128]},{"1077384":[240,3,9]},{"1077388":[255,143,106,193,126,191,98,130,48,41,255]},{"1077400":[137,128]},{"1077403":[240,3,9]},{"1077407":[255,143,110,193,126,169]},{"1077415":[56,239,106,193,126,143,108,193,126,169]},{"1077427":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077443":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077461":[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]},{"1077538":[165]},{"1077540":[223]},{"1077542":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077562":[165]},{"1077564":[223]},{"1077566":[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]},{"1077612":[175,74,128,48,41,255]},{"1077619":[240,25,175,93]},{"1077625":[41,255]},{"1077628":[201,20]},{"1077631":[208,13,165,138,41,64]},{"1077638":[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]},{"1077695":[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]},{"1077761":[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]},{"1077795":[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]},{"1077894":[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]},{"1077925":[201,2]},{"1077928":[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]},{"1077960":[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,179,244,160,144,10,208,8,175,140,80,127,207,177,244,160,144,114,175,145,129,48,41,255]},{"1078016":[208,24,169,2]},{"1078021":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078045":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078058":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078072":[143,142,80,127,169,1]},{"1078079":[143,126,80,127,128,54,201,2]},{"1078088":[208,24,169,2]},{"1078093":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,153,218,160,194,48,96,175,146,129,48,41,255]},{"1078130":[240,7,169]},{"1078135":[143,126,80,127,175,142,80,127,207,167,244,160,144,10,208,8,175,140,80,127,207,165,244,160,144,53,175,128,80,127,26,201,10]},{"1078169":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078183":[143,128,80,127,175,140,80,127,56,239,165,244,160,143,140,80,127,175,142,80,127,239,167,244,160,143,142,80,127,128,181,175,142,80,127,207,171,244,160,144,10,208,8,175,140,80,127,207,169,244,160,144,53,175,132,80,127,26,201,10]},{"1078244":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078258":[143,132,80,127,175,140,80,127,56,239,169,244,160,143,140,80,127,175,142,80,127,239,171,244,160,143,142,80,127,128,181,175,142,80,127,207,175,244,160,144,10,208,8,175,140,80,127,207,173,244,160,144,53,175,136,80,127,26,201,10]},{"1078319":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078333":[143,136,80,127,175,140,80,127,56,239,173,244,160,143,140,80,127,175,142,80,127,239,175,244,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]},{"1078441":[16,14]},{"1078445":[60]},{"1078449":[255,255,255,127,175,204,80,127,41,255]},{"1078460":[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]},{"1078531":[240,93,175,145,129,48,41,255]},{"1078540":[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]},{"1078633":[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]},{"1078708":[208,3,32,131,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078738":[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]},{"1078772":[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,33,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]},{"1078846":[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]},{"1078952":[255,157]},{"1078955":[27,157,64,27,157,128,27,157,192,27,157]},{"1078967":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1078981":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1078995":[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]},{"1079033":[208,12,175]},{"1079037":[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]},{"1079111":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079134":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079284":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079300":[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]},{"1079372":[244,111,4]},{"1079376":[115,10,95]},{"1079380":[7]},{"1079386":[34,133,189,164,34,58,135,1,194,16,166,160,191,254,250,160,226,16,34,156,135]},{"1079408":[130,248,160,131,248,160,16,249,160,157,249,160,42,250,160,148,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079444":[32,126,232,232,159]},{"1079450":[32,126,232,232,159]},{"1079456":[32,126,232,232,159]},{"1079462":[32,126,232,232,162,220,25,159]},{"1079471":[32,126,232,232,169,202,12,159]},{"1079480":[32,126,232,232,169,203,12,159]},{"1079489":[32,126,232,232,169,208,8,159]},{"1079498":[32,126,232,232,162,92,26,159]},{"1079507":[32,126,232,232,169,218,12,159]},{"1079516":[32,126,232,232,169,219,12,159]},{"1079525":[32,126,232,232,169,208,8,159]},{"1079534":[32,126,232,232,162,220,26,159]},{"1079543":[32,126,232,232,159]},{"1079549":[32,126,232,232,159]},{"1079555":[32,126,232,232,159]},{"1079561":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079585":[32,126,232,232,159]},{"1079591":[32,126,232,232,159]},{"1079597":[32,126,232,232,159]},{"1079603":[32,126,232,232,162,156,25,159]},{"1079612":[32,126,232,232,169,202,12,159]},{"1079621":[32,126,232,232,169,203,12,159]},{"1079630":[32,126,232,232,169,208,8,159]},{"1079639":[32,126,232,232,162,28,26,159]},{"1079648":[32,126,232,232,169,218,12,159]},{"1079657":[32,126,232,232,169,219,12,159]},{"1079666":[32,126,232,232,169,208,8,159]},{"1079675":[32,126,232,232,162,156,26,159]},{"1079684":[32,126,232,232,159]},{"1079690":[32,126,232,232,159]},{"1079696":[32,126,232,232,159]},{"1079702":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079726":[32,126,232,232,159]},{"1079732":[32,126,232,232,159]},{"1079738":[32,126,232,232,159]},{"1079744":[32,126,232,232,162,220,9,159]},{"1079753":[32,126,232,232,169,202,12,159]},{"1079762":[32,126,232,232,169,203,12,159]},{"1079771":[32,126,232,232,169,208,8,159]},{"1079780":[32,126,232,232,162,92,10,159]},{"1079789":[32,126,232,232,169,218,12,159]},{"1079798":[32,126,232,232,169,219,12,159]},{"1079807":[32,126,232,232,169,208,8,159]},{"1079816":[32,126,232,232,162,220,10,159]},{"1079825":[32,126,232,232,159]},{"1079831":[32,126,232,232,159]},{"1079837":[32,126,232,232,159]},{"1079843":[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]},{"1080076":[1]},{"1080158":[5]},{"1080160":[4]},{"1080188":[2]},{"1080284":[3]},{"1080382":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080399":[134,1,133,2,32,62,252,176,4,92,83,230]},{"1080412":[169,49,133,2,194,32,169]},{"1080420":[192,133]},{"1080423":[162,128,167]},{"1080427":[141,24,33,230]},{"1080432":[230]},{"1080434":[167]},{"1080436":[141,24,33,230]},{"1080441":[230]},{"1080443":[167]},{"1080445":[141,24,33,230]},{"1080450":[230]},{"1080452":[167]},{"1080454":[141,24,33,230]},{"1080459":[230]},{"1080461":[167]},{"1080463":[141,24,33,230]},{"1080468":[230]},{"1080470":[167]},{"1080472":[141,24,33,230]},{"1080477":[230]},{"1080479":[167]},{"1080481":[141,24,33,230]},{"1080486":[230]},{"1080488":[167]},{"1080490":[141,24,33,230]},{"1080495":[230]},{"1080497":[202,208,181,226,32,92,81,230]},{"1080506":[226,48,175,248,194,126,168,32,62,252,194,48,176,10,162]},{"1080523":[160,64]},{"1080526":[92,104,223]},{"1080530":[162]},{"1080532":[192,160]},{"1080536":[169]},{"1080538":[8,139,84,127,177,171,162]},{"1080546":[8,169]},{"1080549":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,65,221,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,214,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,234,167,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,61,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,234,223,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,58,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,75,236,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,135,148,164,194,16,34,163,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,160,148,164,34,12,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,37,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,111,134,164,34,220,134,164,107,169,14,143,1,40]},{"1181301":[169,4,143,1,40]},{"1181307":[169,13,143,1,40]},{"1181313":[169,14,143,1,40]},{"1181319":[169]},{"1181321":[143,1,40]},{"1181325":[169]},{"1181327":[143,1,40]},{"1181331":[169]},{"1181333":[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,1,143,1,40]},{"1181367":[169]},{"1181369":[143,1,40]},{"1181373":[169,1,143,1,40]},{"1181379":[169]},{"1181381":[143,1,40]},{"1181385":[169]},{"1181387":[143,1,40]},{"1181391":[169,10,143,1,40]},{"1181397":[169,13,143,1,40]},{"1181403":[107,72,218,162]},{"1181408":[175]},{"1181410":[40]},{"1181412":[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]},{"1181439":[175]},{"1181441":[40]},{"1181443":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181457":[232,128,235,56,175]},{"1181463":[40]},{"1181465":[72,175]},{"1181468":[40]},{"1181470":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181488":[175]},{"1181490":[40]},{"1181492":[72,175]},{"1181495":[40]},{"1181497":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181517":[40]},{"1181519":[72,175]},{"1181522":[40]},{"1181524":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181544":[40]},{"1181546":[72,175]},{"1181549":[40]},{"1181551":[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]},{"1181636":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181654":[133]},{"1181656":[165,3,41,255]},{"1181661":[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,15,136,164,132,2,100,3,24,101]},{"1181703":[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]},{"1181758":[175]},{"1181760":[40]},{"1181762":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181776":[232,128,235,56,175]},{"1181782":[40]},{"1181784":[72,175]},{"1181787":[40]},{"1181789":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181807":[175]},{"1181809":[40]},{"1181811":[72,175]},{"1181814":[40]},{"1181816":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181836":[40]},{"1181838":[72,175]},{"1181841":[40]},{"1181843":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181863":[40]},{"1181865":[72,175]},{"1181868":[40]},{"1181870":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181890":[40]},{"1181892":[133,4,175]},{"1181896":[40]},{"1181898":[72,175]},{"1181901":[40]},{"1181903":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181923":[40]},{"1181925":[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]},{"1181994":[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]},{"1182033":[153]},{"1182036":[189,2]},{"1182039":[153,2]},{"1182042":[189,4]},{"1182045":[153,64]},{"1182048":[189,6]},{"1182051":[153,66]},{"1182054":[96,189]},{"1182058":[41,255,227,9]},{"1182063":[16,153]},{"1182067":[189,2]},{"1182070":[41,255,227,9]},{"1182075":[16,153,2]},{"1182079":[189,4]},{"1182082":[41,255,227,9]},{"1182087":[16,153,64]},{"1182091":[189,6]},{"1182094":[41,255,227,9]},{"1182099":[16,153,66]},{"1182103":[96,41,255]},{"1182107":[240,3,76,78,137,76,103,137,41,255]},{"1182118":[208,6,162,132,144,76,103,137,58,58,208,6,162,132,144,76,78,137,58,208,6,162,140,144,76,78,137,58,208,6,162,148,144,76,78,137,58,208,6,162,156,144,76,78,137,58,208,6,162,164,144,76,78,137,58,208,6,162,172,144,76,78,137,162,180,144,76,78,137,165,26,41,1]},{"1182192":[240,2,128,14,32,17,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182222":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182238":[5,112,9]},{"1182242":[28,141,142,17,24,105,16]},{"1182250":[141,206,17,175,2,5,112,9]},{"1182259":[28,141,144,17,24,105,16]},{"1182267":[141,208,17,175,4,5,112,9]},{"1182276":[28,141,146,17,24,105,16]},{"1182284":[141,210,17,175,6,5,112,9]},{"1182293":[28,141,148,17,24,105,16]},{"1182301":[141,212,17,175,8,5,112,9]},{"1182310":[28,141,78,18,24,105,16]},{"1182318":[141,142,18,175,10,5,112,9]},{"1182327":[28,141,80,18,24,105,16]},{"1182335":[141,144,18,175,12,5,112,9]},{"1182344":[28,141,82,18,24,105,16]},{"1182352":[141,146,18,175,14,5,112,9]},{"1182361":[28,141,84,18,24,105,16]},{"1182369":[141,148,18,32,188,144,175,142,3,112,41,64]},{"1182382":[240,31,175,64,3,112,41,255]},{"1182391":[240,11,162,4,143,160,220,16,32,78,137,128,40,162,20,143,160,220,16,32,78,137,128,29,175,64,3,112,41,255]},{"1182422":[240,11,162,252,142,160,220,16,32,78,137,128,9,162,252,142,160,220,16,32,103,137,175,140,3,112,41,192]},{"1182451":[201,192]},{"1182454":[208,11,162,44,143,160,224,16,32,78,137,128,49,175,140,3,112,41,64]},{"1182474":[240,11,162,36,143,160,224,16,32,78,137,128,29,175,140,3,112,41,128]},{"1182494":[240,11,162,28,143,160,224,16,32,78,137,128,9,162,28,143,160,224,16,32,103,137,162,52,143,160,228,16,175,66,3,112,32,152,137,175,140,3,112,41,16]},{"1182536":[240,11,162,12,144,160,236,16,32,78,137,128,9,162,12,144,160,236,16,32,103,137,175,140,3,112,41,8]},{"1182565":[240,11,162,4,144,160,232,16,32,78,137,128,9,162,4,144,160,232,16,32,103,137,175,140,3,112,41,3]},{"1182594":[240,11,162,140,143,160,228,17,32,78,137,128,9,162,140,143,160,228,17,32,103,137,175,140,3,112,41,4]},{"1182623":[240,11,162,132,143,160,92,18,32,78,137,128,9,162,132,143,160,92,18,32,103,137,162,68,143,160,92,17,175,69,3,112,32,152,137,162,76,143,160,96,17,175,70,3,112,32,152,137,162,84,143,160,100,17,175,71,3,112,32,152,137,162,92,143,160,104,17,175,72,3,112,32,152,137,162,100,143,160,108,17,175,73,3,112,32,152,137,162,108,143,160,220,17,175,74,3,112,32,152,137,162,116,143,160,224,17,175,75,3,112,32,152,137,162,124,143,160,232,17,175,77,3,112,32,152,137,162,148,143,160,236,17,175,78,3,112,32,152,137,162,156,143,160,96,18,175,80,3,112,32,152,137,162,164,143,160,100,18,175,81,3,112,32,152,137,162,172,143,160,104,18,175,82,3,112,32,152,137,162,180,143,160,108,18,175,83,3,112,32,152,137,160,242,16,175,92,3,112,32,163,137,160,114,17,175,93,3,112,32,163,137,160,242,17,175,94,3,112,32,163,137,160,114,18,175,95,3,112,32,163,137,175,89,3,112,41,255]},{"1182861":[208,11,162,20,144,160,248,16,32,103,137,128,65,58,208,11,162,20,144,160,248,16,32,78,137,128,51,58,208,11,162,28,144,160,248,16,32,78,137,128,37,58,208,11,162,36,144,160,248,16,32,78,137,128,23,58,208,11,162,44,144,160,248,16,32,78,137,128,9,162,20,144,160,248,16,32,103,137,175,90,3,112,41,255]},{"1182946":[208,11,162,52,144,160,120,17,32,103,137,128,37,58,208,11,162,52,144,160,120,17,32,78,137,128,23,58,208,11,162,60,144,160,120,17,32,78,137,128,9,162,68,144,160,120,17,32,78,137,175,91,3,112,41,255]},{"1183003":[208,11,162,76,144,160,248,17,32,78,137,128,23,58,208,11,162,84,144,160,248,17,32,78,137,128,9,162,92,144,160,248,17,32,78,137,175,107,3,112,41,255]},{"1183046":[208,11,162,100,144,160,120,18,32,78,137,128,37,58,208,11,162,108,144,160,120,18,32,78,137,128,23,58,208,11,162,116,144,160,120,18,32,78,137,128,9,162,124,144,160,120,18,32,78,137,175,72,4,112,41,255]},{"1183103":[34,249,151,160,175,6,80,127,41,255]},{"1183114":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183128":[24,105,16,30,141,250,18,162,196,143,160,252,16,175,85,3,112,32,152,137,175,84,3,112,41,255]},{"1183155":[208,11,162,244,143,160,124,17,32,103,137,128,23,58,208,11,162,244,143,160,124,17,32,78,137,128,9,162,252,143,160,124,17,32,78,137,162,188,143,160,252,17,175,86,3,112,32,152,137,162,204,143,160,124,18,175,87,3,112,32,152,137,175,116,3,112,41,4]},{"1183224":[240,11,162,220,143,160,28,19,32,78,137,128,9,162,212,143,160,28,19,32,78,137,175,116,3,112,41,2]},{"1183253":[240,11,162,228,143,160,32,19,32,78,137,128,9,162,212,143,160,32,19,32,78,137,175,116,3,112,41,1]},{"1183282":[240,11,162,236,143,160,36,19,32,78,137,128,9,162,212,143,160,36,19,32,78,137,175,122,3,112,41,2]},{"1183311":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183335":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183359":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183383":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183407":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183431":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183455":[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]},{"1183501":[10,186,10,185,6]},{"1183507":[10]},{"1183509":[10,20,10,19,6]},{"1183515":[10,5,14,6,14]},{"1183521":[30,22,14,5,6,6,6]},{"1183529":[30,22,6,182,14,182,6,182,142,182,134]},{"1183541":[6,21,6,48,6]},{"1183547":[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,249,151,160,175,4,80,127,41,255]},{"1183957":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183971":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183985":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183999":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184023":[34,249,151,160,175,6,80,127,41,255]},{"1184034":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184048":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184062":[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]},{"1184093":[34,249,151,160,175,6,80,127,41,255]},{"1184104":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184118":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184135":[4,169,136,1,157]},{"1184141":[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]},{"1184244":[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]},{"1184296":[141,2,20,165,16,41,255]},{"1184304":[201,1]},{"1184307":[208,107,175,135,128,48,41,255]},{"1184316":[201,2]},{"1184319":[208,95,8,226,48,218,90,34,37,181,164,122,250,40,41,255]},{"1184336":[208,78,169,110,29,141,142,19,24,105,16]},{"1184348":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184361":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184374":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184387":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184400":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184413":[141,216,19,226,32,107,34,131,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]},{"1184529":[189,4,16,9]},{"1184534":[32,157,4,16,202,202,208,243,162,60]},{"1184545":[189,68,16,9]},{"1184550":[32,157,68,16,202,202,208,243,162,60]},{"1184561":[189,132,16,9]},{"1184566":[32,157,132,16,202,202,208,243,162,60]},{"1184577":[189,196,16,9]},{"1184582":[32,157,196,16,202,202,208,243,162,60]},{"1184593":[189,4,17,9]},{"1184598":[32,157,4,17,202,202,208,243,162,60]},{"1184609":[189,68,17,9]},{"1184614":[32,157,68,17,202,202,208,243,162,60]},{"1184625":[189,132,17,9]},{"1184630":[32,157,132,17,202,202,208,243,162,60]},{"1184641":[189,196,17,9]},{"1184646":[32,157,196,17,202,202,208,243,162,60]},{"1184657":[189,4,18,9]},{"1184662":[32,157,4,18,202,202,208,243,162,60]},{"1184673":[189,68,18,9]},{"1184678":[32,157,68,18,202,202,208,243,162,60]},{"1184689":[189,132,18,9]},{"1184694":[32,157,132,18,202,202,208,243,162,60]},{"1184705":[189,196,18,9]},{"1184710":[32,157,196,18,202,202,208,243,162,60]},{"1184721":[189,4,19,9]},{"1184726":[32,157,4,19,202,202,208,243,162,60]},{"1184737":[189,68,19,9]},{"1184742":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184755":[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]},{"1184790":[67,169,24,141,1,67,169]},{"1184798":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184813":[141,2,67,169,208,141,3,67,173]},{"1184823":[33,72,169,128,141]},{"1184829":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184846":[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]},{"1184874":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,135,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184911":[128,51,159]},{"1184915":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184936":[28,141,206,16,24,105,16]},{"1184944":[141,14,17,175,219,3,112,9]},{"1184953":[28,141,208,16,24,105,16]},{"1184961":[141,16,17,175,221,3,112,9]},{"1184970":[28,141,210,16,24,105,16]},{"1184978":[141,18,17,175,223,3,112,9]},{"1184987":[28,141,212,16,24,105,16]},{"1184995":[141,20,17,175,108,3,112,41,255]},{"1185005":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185019":[153]},{"1185022":[200,200,202,208,8,72,152,24,105,44]},{"1185033":[168,104,198,2,208,236,32,17,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185057":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185079":[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]},{"1185118":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,37,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]},{"1185173":[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]},{"1185211":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185225":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,238,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185258":[141,18,11,107,110]},{"1185264":[111]},{"1185266":[112]},{"1185268":[113]},{"1185270":[115]},{"1185272":[116]},{"1185274":[117]},{"1185276":[118]},{"1185278":[120]},{"1185280":[121]},{"1185282":[122]},{"1185284":[123]},{"1185286":[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]},{"1185314":[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]},{"1185350":[143]},{"1185352":[81,127,200,200,183]},{"1185358":[143,2,81,127,200,200,183]},{"1185366":[143,4,81,127,200,200,183]},{"1185374":[143,6,81,127,169,2]},{"1185381":[133,4,34,14,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185409":[170,191]},{"1185412":[81,127,72,169]},{"1185418":[143]},{"1185420":[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]},{"1185482":[72,165,2,72,169,188,234,133]},{"1185491":[169,1]},{"1185494":[133,2,138,74,34,43,150,164,133,12,104,133,2,104,133]},{"1185510":[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]},{"1185542":[189,222,152,159]},{"1185547":[201,126,232,232,224,128,144,243,160]},{"1185557":[162]},{"1185559":[218,187,191,21,130,48,250,41,31]},{"1185569":[10,10,10,90,168,185,222,151,159,24,201,126,185,224,151,159,26,201,126,185,226,151,159,88,201,126,185,228,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,89,151,40,122,250,104,171,107,72,218,173]},{"1185629":[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]},{"1185659":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185680":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185703":[33,72,169,128,141]},{"1185709":[33,169,1,141,11,66,104,141]},{"1185718":[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]},{"1185746":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185771":[30,22,14]},{"1185775":[6,21,6,48,6]},{"1185781":[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]},{"1186151":[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]},{"1186227":[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]},{"1186324":[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]},{"1186381":[39,1,1,1,1,1,2,2,39,39,39]},{"1186397":[39,1,1,1,32,1,2,2,39,39,39]},{"1186413":[39,1,1,1,1,32,2,2,2,2,2]},{"1186429":[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]},{"1186473":[44]},{"1186475":[78,79,1,1,1,1,1,1,2,1,2]},{"1186487":[46]},{"1186491":[2,34,1,1,2]},{"1186499":[24,18,2,2]},{"1186504":[72]},{"1186509":[1,1,2]},{"1186513":[1,1,16,26,2]},{"1186520":[72]},{"1186525":[16,16,2]},{"1186529":[1,1,1,1]},{"1186535":[72]},{"1186538":[9]},{"1186541":[2,2,2]},{"1186545":[1,1,43]},{"1186550":[9]},{"1186557":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186621":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186637":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186654":[2,2,2]},{"1186659":[2,2,2,2]},{"1186670":[2,2,2,2,41,2,2,2,2]},{"1186685":[1,1,1,1,1,1,1,1,1,1,1]},{"1186699":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186733":[1,1,67,1,1,1,1,1,2,2,2]},{"1186749":[80,2,84,81,87,87,86,86,39,39,39]},{"1186761":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186777":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186793":[72,2,2]},{"1186797":[39,2,82,83,9,1,26,16,85,85]},{"1186809":[72,2,2]},{"1186813":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186835":[9,9,9,9,9,72,9,41]},{"1186844":[75,2,2,2]},{"1186849":[8,2,2]},{"1186856":[1]},{"1186859":[32]},{"1186861":[2,2,2,2,2,2,2]},{"1186870":[1,1,1,2]},{"1186875":[8]},{"1186877":[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]},{"1186977":[240,2,128,23,169,15,2,166,138,224,51]},{"1186989":[208,4,143,168,34,126,224,47]},{"1186998":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187012":[208,5,175,135,242,126,107,169,32]},{"1187022":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187045":[191,38,157,164,197,34,176,29,191,40,157,164,197,34,144,21,191,42,157,164,197,32,176,13,191,44,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187087":[201,184]},{"1187090":[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]},{"1187121":[10]},{"1187123":[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]},{"1187153":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187176":[143]},{"1187178":[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]},{"1187209":[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]},{"1187252":[112]},{"1187254":[240,14,48,15,32,1,96,1,208,10]},{"1187265":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187284":[64]},{"1187286":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187300":[201,5]},{"1187303":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187319":[208,18,173,10,4,41,255]},{"1187327":[201,67]},{"1187330":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187346":[208,25,173,10,4,41,255]},{"1187354":[201,91]},{"1187357":[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]},{"1187393":[176,5,10,170,252,82,158,171,194,48,162,30]},{"1187406":[169,190,13,107,82,159,82,159,82,159,83,159,82,159,126,159,82,159,120,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,199,160,82,159,82,159,82,159,206,160,82,159,82,159,82,159,82,159,82,159,82,159,237,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,135,163,82,159,82,159,82,159,82,159,82,159,82,159,163,163,82,159,101,167,232,169,82,159,239,169,82,159,82,159,82,159,82,159,38,170,82,159,251,166,82,159,82,159,82,159,82,159,82,159,82,159,156,170,82,159,19,171,82,159,241,170,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,26,171,82,159,82,159,82,159,33,171,82,159,82,159,82,159,82,159,82,159,82,159,61,171,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,15,173,29,173,82,159,82,159,22,173,82,159,36,173,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187682":[141,186,41,169,4,1,141,188,41,169,198]},{"1187694":[141,52,42,141,56,42,141,58,42,169,52]},{"1187706":[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]},{"1187809":[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]},{"1187956":[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]},{"1188035":[141,38,40,96,169,52]},{"1188042":[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]},{"1188155":[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]},{"1188191":[141,40,44,141,174,47,169,52]},{"1188200":[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]},{"1188239":[141,54,44,141,168,47,169,174]},{"1188248":[141,172,44,169,175]},{"1188254":[141,174,44,169,126]},{"1188260":[141,176,44,169,127]},{"1188266":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188284":[141,44,45,169,20]},{"1188290":[141,46,45,169,21]},{"1188296":[141,48,45,169,168]},{"1188302":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188320":[141,172,45,169,28]},{"1188326":[141,174,45,169,29]},{"1188332":[141,176,45,169,118]},{"1188338":[141,178,45,169,241]},{"1188344":[141,44,46,169,78]},{"1188350":[141,46,46,169,79]},{"1188356":[141,48,46,169,217]},{"1188362":[141,50,46,169,154]},{"1188368":[141,172,46,169,155]},{"1188374":[141,174,46,169,156]},{"1188380":[141,176,46,169,149]},{"1188386":[141,178,46,169,52]},{"1188392":[141,40,48,141,44,48,169,53]},{"1188401":[141,42,48,141,50,48,169,218]},{"1188410":[141,46,48,169,226]},{"1188416":[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]},{"1188497":[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]},{"1188581":[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]},{"1188638":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188654":[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]},{"1188746":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188767":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188783":[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]},{"1188825":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188846":[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]},{"1188912":[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]},{"1188942":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188960":[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]},{"1188987":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189008":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189026":[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]},{"1189095":[141,226,34,169,2,3,141,228,34,169,204]},{"1189107":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189131":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189152":[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]},{"1189194":[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]},{"1189227":[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]},{"1189322":[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]},{"1189455":[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]},{"1189548":[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]},{"1189623":[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]},{"1189757":[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]},{"1189802":[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]},{"1190120":[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]},{"1190165":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190183":[141,134,41,169,229]},{"1190189":[141,136,41,169]},{"1190194":[1,141,162,41,169,113]},{"1190201":[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]},{"1190246":[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]},{"1190282":[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]},{"1190309":[141,26,44,169,206]},{"1190315":[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]},{"1190379":[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]},{"1190434":[141,86,47,96,169,116,7,141]},{"1190443":[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]},{"1190485":[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]},{"1190701":[141,162,36,141,164,36,169,227]},{"1190710":[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]},{"1190837":[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]},{"1190867":[141,30,50,169,218]},{"1190873":[141,32,50,141,154,50,169,225]},{"1190882":[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]},{"1190927":[141,26,50,169,242]},{"1190933":[141,184,59,169,8,1,141,56,60,169,52]},{"1190945":[141,190,59,175,197,243,126,41,255]},{"1190955":[201,3]},{"1190958":[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]},{"1191101":[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,115,176,194,32,166,6,138,9]},{"1191332":[36,143,90,199,126,166,7,138,9]},{"1191342":[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,17,176,166,4,138,9]},{"1191375":[36,143,80,199,126,166,5,138,9]},{"1191385":[36,143,82,199,126,166,6,138,9]},{"1191395":[36,143,84,199,126,166,7,138,9]},{"1191405":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,115,176,194,32,166,6,138,9]},{"1191438":[36,143,96,199,126,166,7,138,9]},{"1191448":[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]},{"1191480":[175,24,244,126,32,76,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191502":[36,143,44,199,126,166,6,138,9]},{"1191512":[36,143,46,199,126,166,7,138,9]},{"1191522":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,76,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191558":[36,143,52,199,126,166,6,138,9]},{"1191568":[36,143,54,199,126,166,7,138,9]},{"1191578":[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]},{"1191611":[240,4,34,141,176,164,226,32,175,111,243,126,201,255,240,34,32,115,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191642":[9]},{"1191644":[36,143,100,199,126,166,7,138,9]},{"1191654":[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]},{"1191685":[24,105,7]},{"1191689":[41,248,255,170,175,202,80,127,41,255]},{"1191700":[208,3,130,215]},{"1191705":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191718":[165,26,41,12]},{"1191723":[74,74,240,58,201,1]},{"1191730":[240,98,201,2]},{"1191735":[208,3,130,180]},{"1191740":[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]},{"1191973":[144,6,200,233,100]},{"1191979":[128,245,132,5,160,144,201,10]},{"1191988":[144,6,200,233,10]},{"1191994":[128,245,132,6,160,144,201,1]},{"1192003":[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]},{"1192093":[240,11,175,100,243,126,63,206,176,164,208,1,107,124,234,176,32,115,176,194,32,166,6,138,9]},{"1192119":[36,143,148,199,126,166,7,138,9]},{"1192129":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192143":[128]},{"1192145":[64]},{"1192147":[32]},{"1192149":[16]},{"1192151":[8]},{"1192153":[4]},{"1192155":[2]},{"1192157":[1,128]},{"1192160":[64]},{"1192162":[32]},{"1192164":[16]},{"1192166":[8]},{"1192168":[4]},{"1192170":[6,177,6,177,33,177,58,177,86,177,111,177,136,177,161,177,186,177,213,177,240,177,11,178,36,178,63,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,173,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,173,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,173,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,173,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,173,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,173,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,173,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,173,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,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,173,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,173,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,173,176,107,159]},{"1192540":[4,112,159]},{"1192544":[5,112,159]},{"1192548":[6,112,159]},{"1192552":[7,112,159]},{"1192556":[8,112,159]},{"1192560":[9,112,159]},{"1192564":[10,112,159]},{"1192568":[11,112,159]},{"1192572":[12,112,159]},{"1192576":[13,112,159]},{"1192580":[14,112,159]},{"1192584":[15,112,107,159]},{"1192589":[244,126,159]},{"1192593":[101,127,159]},{"1192597":[102,127,159]},{"1192601":[103,127,159]},{"1192605":[104,127,159]},{"1192609":[105,127,159]},{"1192613":[106,127,159]},{"1192617":[107,127,159]},{"1192621":[108,127,159]},{"1192625":[109,127,159]},{"1192629":[110,127,159]},{"1192633":[111,127,107,72,226,48,173]},{"1192641":[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]},{"1192669":[141]},{"1192671":[67,169,128,141,1,67,169]},{"1192679":[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]},{"1192707":[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]},{"1192747":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192762":[72,171,173]},{"1192766":[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]},{"1192796":[67,141,1,67,169]},{"1192802":[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]},{"1192830":[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]},{"1192870":[67,194,48,171,104,162]},{"1192878":[138,107,165,17,34,156,135]},{"1192886":[197,179,164,221,179,164,252,179,164,253,180,164,19,181,164,169,128,141,16,7,34,61,137]},{"1192910":[34,51,131]},{"1192914":[34,135,148,164,169,7,133,20,230,17,107,32,28,182,100,200,100,201,34,37,181,164,208,11,162,15,169]},{"1192942":[159]},{"1192944":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,140,182,165,246,41,16,240,3,32,216,183,165,246,41,32,240,3,32,229,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,217,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,229,183,128,52,201,242,208,5,32,216,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193135":[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,138,183,32,63,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,37,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]},{"1193259":[16,112,208,3,130,161]},{"1193266":[202,16,244,194,32,162,14,169]},{"1193276":[159,208,80,127,202,202,16,248,32,216,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]},{"1193317":[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]},{"1193346":[133,4,34,14,178,160,226,32,175]},{"1193356":[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]},{"1193431":[107,169]},{"1193435":[133]},{"1193437":[133,2,169,11]},{"1193442":[133,4,166]},{"1193446":[191]},{"1193448":[16,112,58,41,31]},{"1193454":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193479":[16,6,24,105,8]},{"1193485":[230,2,133,4,165]},{"1193491":[26,133]},{"1193494":[201,16]},{"1193497":[144,201,96,173]},{"1193502":[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]},{"1193530":[141]},{"1193532":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,180,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]},{"1193610":[67,96,194,32,165,200,41,255]},{"1193619":[10,170,191,215,182,164,24,105,132,96,235,143,2,17]},{"1193634":[165,201,41,255]},{"1193639":[10,170,191,247,182,164,24,105,163,97,235,143,18,17]},{"1193654":[235,24,105,32]},{"1193659":[235,143,30,17]},{"1193664":[235,24,105,3]},{"1193669":[235,143,38,17]},{"1193674":[235,24,105,61]},{"1193679":[235,143,46,17]},{"1193684":[226,32,96,64]},{"1193689":[67]},{"1193691":[70]},{"1193693":[73]},{"1193695":[76]},{"1193697":[79]},{"1193699":[82]},{"1193701":[85]},{"1193703":[160]},{"1193705":[163]},{"1193707":[166]},{"1193709":[169]},{"1193711":[172]},{"1193713":[175]},{"1193715":[178]},{"1193717":[181]},{"1193719":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193739":[66]},{"1193741":[69]},{"1193743":[72]},{"1193745":[75]},{"1193747":[78]},{"1193749":[81]},{"1193751":[84]},{"1193753":[87]},{"1193755":[159]},{"1193757":[162]},{"1193759":[165]},{"1193761":[168]},{"1193763":[171]},{"1193765":[174]},{"1193767":[177]},{"1193769":[180]},{"1193771":[183]},{"1193773":[255]},{"1193775":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193798":[10,170,191,215,182,164,24,105,132,96,235,143,10,17]},{"1193813":[165,201,41,255]},{"1193818":[10,170,191,247,182,164,24,105,163,97,235,143,58,17]},{"1193833":[235,24,105,32]},{"1193838":[235,143,70,17]},{"1193843":[235,24,105,3]},{"1193848":[235,143,78,17]},{"1193853":[235,24,105,61]},{"1193858":[235,143,86,17]},{"1193863":[226,32,96,194,48,162,15]},{"1193871":[191]},{"1193873":[16,112,41,255]},{"1193878":[155,10,10,10,133]},{"1193884":[152,10,10,10,10,133,3,166]},{"1193893":[191,214,151,164,166,3,157,6,16,166]},{"1193904":[191,216,151,164,166,3,157,8,16,166]},{"1193915":[191,218,151,164,166,3,157,14,16,166]},{"1193926":[191,220,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]},{"1193973":[51,1,10,2,10]},{"1193979":[2,5,14,6,14]},{"1193985":[2]},{"1193987":[6,21,6]},{"1193991":[2,12,14,13,14]},{"1193997":[2,98,6,99,6]},{"1194003":[2,10,2,11,2]},{"1194009":[2,32,14,33,14]},{"1194015":[2,133,26,134,26]},{"1194021":[2,171,30,171,30,97,195]},{"1194029":[51,17,10,18,10]},{"1194035":[2]},{"1194037":[30,22,14]},{"1194041":[2,48,6]},{"1194045":[30]},{"1194047":[2,28,14,28,78]},{"1194053":[2,114,6,115,6]},{"1194059":[2,26,2,27,2]},{"1194065":[2,48,14,49,14]},{"1194071":[2,149,26,150,26]},{"1194077":[2,171,30,171,30,98,3]},{"1194085":[51,7,10,23,202]},{"1194091":[2,8,10,24,202]},{"1194097":[2,9,10,25,202]},{"1194103":[2,44,6,44,70]},{"1194109":[2,34,2,35,2]},{"1194115":[2,36,2,37,2]},{"1194121":[2,38,14,39,14]},{"1194127":[2,40,10,41,10]},{"1194133":[2,138,29]},{"1194137":[2,98,35]},{"1194141":[51,23,10,7,202]},{"1194147":[2,24,10,8,202]},{"1194153":[2,25,10,9,202]},{"1194159":[2,60,6,61,6]},{"1194165":[2,50,2,51,2]},{"1194171":[2,52,2,53,2]},{"1194177":[2,54,14,55,14]},{"1194183":[2,56,10,57,10]},{"1194189":[2,154,29]},{"1194193":[2,98,99]},{"1194197":[51,42,26,43,26]},{"1194203":[2,64,30,65,30]},{"1194209":[2,66,26,66,90]},{"1194215":[2,29,6,30,6]},{"1194221":[2,72,6,73,6]},{"1194227":[2,74,14,75,14]},{"1194233":[2,76,22,77,22]},{"1194239":[2,78,2,79,2]},{"1194245":[2]},{"1194247":[2,139,29,98,131]},{"1194253":[51,58,26,59,26]},{"1194259":[2,80,30,81,30]},{"1194265":[2,82,26,83,26]},{"1194271":[2,45,6,46,6]},{"1194277":[2,88,6,89,6]},{"1194283":[2,90,14,91,14]},{"1194289":[2,92,22,93,22]},{"1194295":[2,94,2,95,2]},{"1194301":[2]},{"1194303":[2,155,29,98,195]},{"1194309":[51,14,14,15,14]},{"1194315":[2,100,6,101,6]},{"1194321":[2,109,10,110,10]},{"1194327":[2,111,26,111,90]},{"1194333":[2,129,6,129,70]},{"1194339":[2,130,10,131,10]},{"1194345":[2,132,6,132,70]},{"1194351":[2,47,74,47,10]},{"1194357":[2,103,94,103,30,98,227]},{"1194365":[51,31,78,31,14]},{"1194371":[2,116,6,117,6]},{"1194377":[2,125,10,126,10]},{"1194383":[2,127,26,127,90]},{"1194389":[2,145,6,145,70]},{"1194395":[2,146,10,147,10]},{"1194401":[2,148,6,148,70]},{"1194407":[2,62,10,63,10]},{"1194413":[2,103,222,103,158,255,255,96,132]},{"1194423":[3,134,29,134,29,96,164]},{"1194431":[3,150,29,150,29,96,135]},{"1194439":[3,134,29,134,29,96,167]},{"1194447":[3,150,29,150,29,96,138]},{"1194455":[3,134,29,134,29,96,170]},{"1194463":[3,150,29,150,29,96,141]},{"1194471":[3,134,29,134,29,96,173]},{"1194479":[3,150,29,150,29,96,144]},{"1194487":[3,134,29,134,29,96,176]},{"1194495":[3,150,29,150,29,96,147]},{"1194503":[3,134,29,134,29,96,179]},{"1194511":[3,150,29,150,29,96,150]},{"1194519":[3,134,29,134,29,96,182]},{"1194527":[3,150,29,150,29,96,153]},{"1194535":[3,134,29,134,29,96,185]},{"1194543":[3,150,29,150,29,96,228]},{"1194551":[3,134,29,134,29,97,4]},{"1194559":[3,150,29,150,29,96,231]},{"1194567":[3,134,29,134,29,97,7]},{"1194575":[3,150,29,150,29,96,234]},{"1194583":[3,134,29,134,29,97,10]},{"1194591":[3,150,29,150,29,96,237]},{"1194599":[3,134,29,134,29,97,13]},{"1194607":[3,150,29,150,29,96,240]},{"1194615":[3,134,29,134,29,97,16]},{"1194623":[3,150,29,150,29,96,243]},{"1194631":[3,134,29,134,29,97,19]},{"1194639":[3,150,29,150,29,96,246]},{"1194647":[3,134,29,134,29,97,22]},{"1194655":[3,150,29,150,29,96,249]},{"1194663":[3,134,29,134,29,97,25]},{"1194671":[3,150,29,150,29,96,196]},{"1194679":[3]},{"1194681":[2]},{"1194683":[2,96,196]},{"1194687":[3,103,222,103,158,97,130]},{"1194695":[7]},{"1194697":[2]},{"1194699":[2]},{"1194701":[2]},{"1194703":[2,97,162,128,3]},{"1194709":[2]},{"1194711":[2,97,165,128,3]},{"1194717":[2]},{"1194719":[2,97,226]},{"1194723":[7]},{"1194725":[2]},{"1194727":[2]},{"1194729":[2]},{"1194731":[2,97,130]},{"1194735":[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]},{"1194763":[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]},{"1194802":[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]},{"1194929":[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]},{"1194989":[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,244,187,164,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,90,160,24,34,128,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195108":[208,11,40,90,160,24,34,128,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,159,155,160,107,72,175,67,244,126,208,4,34,168,192,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,244,187,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,244,187,164,104,34,168,160,2,107,58,16,8,169]},{"1195364":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195378":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,244,187,169,1,143]},{"1195404":[80,127,156,70,6,156,66,6,76,244,187,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,168,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195627":[83,127,201,3,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,158,191,164,226,48,169]},{"1195665":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195723":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195781":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,41,191,34,231,244,30,32,105,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,73,133,8,169,191,105]},{"1195838":[133,9,34,117,223,5,34,92,220,6,96]},{"1195851":[247,255,198]},{"1195856":[2]},{"1195861":[200]},{"1195864":[2]},{"1195867":[248,255,198]},{"1195872":[2]},{"1195877":[202,64]},{"1195880":[2,175,103,129,48,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,153,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195938":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195964":[98,41,110,41,107,41,105,41,127]},{"1195974":[111,41,97,41,106,41,112,41,127]},{"1195984":[112,41,107,41,127]},{"1195990":[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]},{"1196037":[33,218,162,128,142]},{"1196043":[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]},{"1196071":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196088":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1196179":[208,33,8,194,48,162]},{"1196187":[224,64]},{"1196190":[176,11,169,127]},{"1196195":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196218":[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]},{"1196265":[240,7,224,2,240,3,130,137]},{"1196274":[130,132]},{"1196277":[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]},{"1196423":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196440":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196456":[224,28]},{"1196459":[176,12,191,170,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196476":[175,211,244,126,41,255]},{"1196483":[58,201,64]},{"1196487":[176,63,10,10,10,10,10,170,192,60]},{"1196498":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196521":[176,11,169,127]},{"1196526":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,141,184,160,122,218,90,8,194,48,162]},{"1196682":[224,16]},{"1196685":[176,12,191,198,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196702":[175,152,192,126,41,255]},{"1196709":[58,201,64]},{"1196713":[176,63,10,10,10,10,10,170,192,48]},{"1196724":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196747":[176,11,169,127]},{"1196752":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 From fb1e2a657c340f3c8083a1886b9c4733a79ed992 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 27 Dec 2019 01:43:18 +0100 Subject: [PATCH 129/185] Rom: fix silvers restriction with hard+ item functionality, also lock swordless swords limit to 0 --- Rom.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Rom.py b/Rom.py index 60aaa9ef..a905951b 100644 --- a/Rom.py +++ b/Rom.py @@ -612,6 +612,8 @@ def patch_rom(world, player, rom, enemized): # handle difficulty_adjustments if world.difficulty_adjustments[player] == 'hard': + rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon + rom.write_byte(0x180182, 0x00) # Don't auto equip silvers on pickup # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount @@ -630,6 +632,8 @@ def patch_rom(world, player, rom, enemized): # Set stun items rom.write_byte(0x180180, 0x02) # Hookshot only elif world.difficulty_adjustments[player] == 'expert': + rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon + rom.write_byte(0x180182, 0x00) # Don't auto equip silvers on pickup # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xD8) # One Heart # potion heal amount @@ -648,6 +652,8 @@ def patch_rom(world, player, rom, enemized): # Set stun items rom.write_byte(0x180180, 0x00) # Nothing else: + rom.write_byte(0x180181, 0x00) # Make silver arrows freely usable + rom.write_byte(0x180182, 0x01) # auto equip silvers on pickup # Powdered Fairies Prize rom.write_byte(0x36DD0, 0xE3) # fairy # potion heal amount @@ -670,9 +676,6 @@ def patch_rom(world, player, rom, enemized): else: overflow_replacement = GREEN_TWENTY_RUPEES - rom.write_byte(0x180181, 0x00) # Make silver arrows freely usable - rom.write_byte(0x180182, 0x01) # auto equip silvers on pickup - #Byrna residual magic cost rom.write_bytes(0x45C42, [0x04, 0x02, 0x01]) @@ -680,7 +683,7 @@ def patch_rom(world, player, rom, enemized): #Set overflow items for progressive equipment rom.write_bytes(0x180090, - [difficulty.progressive_sword_limit, overflow_replacement, + [difficulty.progressive_sword_limit if world.swords[player] != 'swordless' else 0, overflow_replacement, difficulty.progressive_shield_limit, overflow_replacement, difficulty.progressive_armor_limit, overflow_replacement, difficulty.progressive_bottle_limit, overflow_replacement, @@ -689,6 +692,7 @@ def patch_rom(world, player, rom, enemized): if difficulty.progressive_bow_limit < 2 and world.swords[player] == 'swordless': rom.write_bytes(0x180098, [2, overflow_replacement]) rom.write_byte(0x180181, 0x01) # Make silver arrows work only on ganon + rom.write_byte(0x180182, 0x00) # Don't auto equip silvers on pickup # set up game internal RNG seed for i in range(1024): From 52b05c0b4f977e4931596b753f6160b90dfc7b4f Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 27 Dec 2019 19:08:04 +0100 Subject: [PATCH 130/185] dont touch the smith single cave doors again please --- EntranceShuffle.py | 47 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 40 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 92442654..af0fa811 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -1160,7 +1160,7 @@ def link_inverted_entrances(world, player): single_doors = list(Single_Cave_Doors) bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors) - blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors) door_targets = list(Inverted_Single_Cave_Targets) # we shuffle all 2 entrance caves as pairs as a start @@ -1253,7 +1253,7 @@ def link_inverted_entrances(world, player): caves = list(Cave_Exits + Cave_Three_Exits + Old_Man_House) single_doors = list(Single_Cave_Doors) bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors) - blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) door_targets = list(Inverted_Single_Cave_Targets) # place links house @@ -1335,7 +1335,7 @@ def link_inverted_entrances(world, player): old_man_entrances = list(Inverted_Old_Man_Entrances + Old_Man_Entrances + ['Inverted Agahnims Tower', 'Tower of Hera']) caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits) # don't need to consider three exit caves, have one exit caves to avoid parity issues bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors) - blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) door_targets = list(Inverted_Single_Cave_Targets) old_man_house = list(Old_Man_House) @@ -1486,7 +1486,7 @@ def link_inverted_entrances(world, player): old_man_entrances = list(Inverted_Old_Man_Entrances + Old_Man_Entrances + ['Inverted Agahnims Tower', 'Tower of Hera']) caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits + Old_Man_House) # don't need to consider three exit caves, have one exit caves to avoid parity issues bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors) - blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) door_targets = list(Inverted_Single_Cave_Targets) # randomize which desert ledge door is a must-exit @@ -1610,7 +1610,7 @@ def link_inverted_entrances(world, player): # bomb shop logic for. # Specifically we could potentially add: 'Dark Death Mountain Ledge (East)' and doors associated with pits bomb_shop_doors = list(Inverted_Bomb_Shop_Single_Cave_Doors + Inverted_Bomb_Shop_Multi_Cave_Doors + ['Turtle Rock Isolated Ledge Entrance', 'Bumper Cave (Top)', 'Hookshot Cave Back Entrance']) - blacksmith_doors = list(Inverted_Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) door_targets = list(Inverted_Single_Cave_Targets) random.shuffle(doors) @@ -2648,8 +2648,6 @@ Inverted_Bomb_Shop_Multi_Cave_Doors = ['Hyrule Castle Entrance (South)', 'Desert Palace Entrance (West)', 'Desert Palace Entrance (North)'] -Inverted_Blacksmith_Multi_Cave_Doors = [] # same as non-inverted - Inverted_LW_Single_Cave_Doors = LW_Single_Cave_Doors + ['Inverted Big Bomb Shop'] Inverted_DW_Single_Cave_Doors = ['Bonk Fairy (Dark)', @@ -2717,39 +2715,8 @@ Inverted_Bomb_Shop_Single_Cave_Doors = ['Waterfall of Wishing', 'Bumper Cave (Top)', 'Mimic Cave', 'Dark Lake Hylia Shop', - 'Inverted Links House'] - -Inverted_Blacksmith_Single_Cave_Doors = ['Blinds Hideout', - 'Lake Hylia Fairy', - 'Light Hype Fairy', - 'Desert Fairy', - 'Chicken House', - 'Aginahs Cave', - 'Sahasrahlas Hut', - 'Cave Shop (Lake Hylia)', - 'Blacksmiths Hut', - 'Sick Kids House', - 'Lost Woods Gamble', - 'Fortune Teller (Light)', - 'Snitch Lady (East)', - 'Snitch Lady (West)', - 'Bush Covered House', - 'Tavern (Front)', - 'Light World Bomb Hut', - 'Kakariko Shop', - 'Mini Moldorm Cave', - 'Long Fairy Cave', - 'Good Bee Cave', - '20 Rupee Cave', - '50 Rupee Cave', - 'Ice Rod Cave', - 'Library', - 'Potion Shop', - 'Dam', - 'Lumberjack House', - 'Lake Hylia Fortune Teller', - 'Kakariko Gamble Game', - 'Inverted Big Bomb Shop'] + 'Inverted Links House', + 'Inverted Big Bomb Shop'] Inverted_Single_Cave_Targets = ['Blinds Hideout', From 197b8bd6c691bbc2f3ca02f25f46cca5fb2fb635 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 27 Dec 2019 19:09:58 +0100 Subject: [PATCH 131/185] Actually enable bombs escape assist --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 5e609ed8..cc995d17 100644 --- a/Main.py +++ b/Main.py @@ -54,7 +54,7 @@ def main(args, seed=None): world.difficulty_requirements[player] = difficulties[world.difficulty[player]] if world.mode[player] == 'standard' and (world.enemy_shuffle[player] != 'none' or world.enemy_health[player] not in ['default', 'easy']): - world.escape_assist[player].append(['bombs']) # enemized escape assumes infinite bombs available and will likely be unbeatable without it + world.escape_assist[player].append('bombs') # enemized escape assumes infinite bombs available and will likely be unbeatable without it if world.mode[player] != 'inverted': create_regions(world, player) From dcc3f7d53b33b6b57d966fe3b35b1ff3ecfa6920 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 27 Dec 2019 19:10:40 +0100 Subject: [PATCH 132/185] ArgParse: fix missing default arguments --- EntranceRandomizer.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index be702203..9c51946b 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -187,7 +187,7 @@ def parse_arguments(argv, no_defaults=False): Random: Picks a random value between 0 and 7 (inclusive). 0-7: Number of crystals needed ''') - parser.add_argument('--openpyramid', help='''\ + parser.add_argument('--openpyramid', default=defval(False), help='''\ Pre-opens the pyramid hole, this removes the Agahnim 2 requirement for it ''', action='store_true') parser.add_argument('--rom', default=defval('Zelda no Densetsu - Kamigami no Triforce (Japan).sfc'), help='Path to an ALttP JAP(1.0) rom to use as a base.') @@ -207,11 +207,11 @@ def parse_arguments(argv, no_defaults=False): ''') parser.add_argument('--quickswap', help='Enable quick item swapping with L and R.', action='store_true') parser.add_argument('--disablemusic', help='Disables game music.', action='store_true') - parser.add_argument('--mapshuffle', help='Maps are no longer restricted to their dungeons, but can be anywhere', action='store_true') - parser.add_argument('--compassshuffle', help='Compasses are no longer restricted to their dungeons, but can be anywhere', action='store_true') - parser.add_argument('--keyshuffle', help='Small Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') - parser.add_argument('--bigkeyshuffle', help='Big Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') - parser.add_argument('--retro', help='''\ + parser.add_argument('--mapshuffle', default=defval(False), help='Maps are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--compassshuffle', default=defval(False), help='Compasses are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--keyshuffle', default=defval(False), help='Small Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--bigkeyshuffle', default=defval(False), help='Big Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--retro', default=defval(False), help='''\ Keys are universal, shooting arrows costs rupees, and a few other little things make this more like Zelda-1. ''', action='store_true') @@ -224,7 +224,7 @@ def parse_arguments(argv, no_defaults=False): Locations: You will be able to reach every location in the game. None: You will be able to reach enough locations to beat the game. ''') - parser.add_argument('--hints', help='''\ + parser.add_argument('--hints', default=defval(False), help='''\ Make telepathic tiles and storytellers give helpful hints. ''', action='store_true') # included for backwards compatibility From 819f6dc975310247551f5c3bf255a63b032234f0 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 27 Dec 2019 19:11:41 +0100 Subject: [PATCH 133/185] Retro: fix take any entrances with default connections --- BaseClasses.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 1401b5ab..a330aca6 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -4,6 +4,7 @@ import logging import json from collections import OrderedDict from _vendor.collections_extended import bag +from EntranceShuffle import door_addresses from Utils import int16_as_bytes class World(object): @@ -917,8 +918,8 @@ class Shop(object): # [id][roomID-low][roomID-high][doorID][zero][shop_config][shopkeeper_config][sram_index] entrances = self.region.entrances config = self.item_count - if len(entrances) == 1 and entrances[0].addresses: - door_id = entrances[0].addresses+1 + if len(entrances) == 1 and entrances[0].name in door_addresses: + door_id = door_addresses[entrances[0].name][0]+1 else: door_id = 0 config |= 0x40 # ignore door id From 7ccab4bf447aa5aeb771b0fe9ffbe70f7de4be80 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 28 Dec 2019 01:10:52 +0100 Subject: [PATCH 134/185] simple inverted: update old_man_entrances after links house shuffle --- EntranceShuffle.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index af0fa811..a96811b8 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -1191,6 +1191,8 @@ def link_inverted_entrances(world, player): bomb_shop_doors.remove(links_house) if links_house in blacksmith_doors: blacksmith_doors.remove(links_house) + if links_house in old_man_entrances: + old_man_entrances.remove(links_house) # place dark sanc sanc_doors = [door for door in Inverted_Dark_Sanctuary_Doors if door in bomb_shop_doors] From 0e3327e0f822278b14d69ff0a80c13ca223da923 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 28 Dec 2019 01:11:44 +0100 Subject: [PATCH 135/185] logging: fix retry attempts nr --- ItemList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ItemList.py b/ItemList.py index 18035e12..4d389a95 100644 --- a/ItemList.py +++ b/ItemList.py @@ -339,7 +339,7 @@ def fill_prizes(world, attempts=15): random.shuffle(prize_locs) fill_restrictive(world, all_state, prize_locs, prizepool, True) except FillError as e: - logging.getLogger('').info("Failed to place dungeon prizes (%s). Will retry %s more times", e, attempts) + logging.getLogger('').info("Failed to place dungeon prizes (%s). Will retry %s more times", e, attempts - attempt - 1) for location in empty_crystal_locations: location.item = None continue From 41009c85c7fd20e1e02f7cc9b01879f5b402523a Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 28 Dec 2019 01:12:45 +0100 Subject: [PATCH 136/185] nologic inverted: reachable castle ledge --- Rules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Rules.py b/Rules.py index 644dc895..5ce634d4 100644 --- a/Rules.py +++ b/Rules.py @@ -19,6 +19,7 @@ def set_rules(world, player): if world.shuffle[player] != 'vanilla': old_rule = world.get_region('Old Man House', player).can_reach world.get_region('Old Man House', player).can_reach_private = lambda state: state.can_reach('Old Man', 'Location', player) or old_rule(state) + world.get_region('Hyrule Castle Ledge', player).can_reach_private = lambda state: True return global_rules(world, player) From 93f8a684f12a37911779edbb6cab915f11e5c96e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 28 Dec 2019 17:12:27 +0100 Subject: [PATCH 137/185] Move outputpath handling in main(), create path if it doesn't exist --- EntranceRandomizer.py | 5 +---- Main.py | 7 +++++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 9c51946b..738a3ae9 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -9,7 +9,7 @@ import shlex import sys from Main import main -from Utils import is_bundled, close_console, output_path +from Utils import is_bundled, close_console class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter): @@ -294,9 +294,6 @@ def parse_arguments(argv, no_defaults=False): def start(): args = parse_arguments(None) - if args.outputpath and os.path.isdir(args.outputpath): - output_path.cached_path = args.outputpath - if is_bundled() and len(sys.argv) == 1: # for the bundled builds, if we have no arguments, the user # probably wants the gui. Users of the bundled build who want the command line diff --git a/Main.py b/Main.py index cc995d17..b3a9ff7a 100644 --- a/Main.py +++ b/Main.py @@ -22,6 +22,13 @@ from Utils import output_path, parse_names_string __version__ = '0.6.3-pre' def main(args, seed=None): + if args.outputpath: + try: + os.mkdir(args.outputpath) + except OSError: + pass + output_path.cached_path = args.outputpath + start = time.process_time() # initialize the world From 4281dcc6193474d11fc473ca99499e222c84df4c Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 28 Dec 2019 18:12:11 +0100 Subject: [PATCH 138/185] Skip enemizer patching with jsonout and no enemizercli --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index b3a9ff7a..83c4ded6 100644 --- a/Main.py +++ b/Main.py @@ -162,7 +162,7 @@ def main(args, seed=None): patch_rom(world, player, rom, use_enemizer) enemizer_patch = [] - if use_enemizer: + if use_enemizer and (args.enemizercli or not args.jsonout): enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepalette[player], args.shufflepots[player]) multidata.rom_names[player] = list(rom.name) From fe307b1ac7902afac32c9c547e32123bbe2d10b4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 03:03:53 +0100 Subject: [PATCH 139/185] bzzz bzzz --- BaseClasses.py | 1 + EntranceRandomizer.py | 3 ++- ItemList.py | 13 ++++++++++++- Items.py | 1 + Main.py | 2 ++ Mystery.py | 2 ++ data/base2current.json | 2 +- data/base2current_extendedmsu.json | 2 +- 8 files changed, 22 insertions(+), 4 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index a330aca6..5fdf3b27 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -85,6 +85,7 @@ class World(object): set_player_attr('enemy_shuffle', 'none') set_player_attr('enemy_health', 'default') set_player_attr('enemy_damage', 'default') + set_player_attr('beemizer', 0) set_player_attr('escape_assist', []) set_player_attr('crystals_needed_for_ganon', 7) set_player_attr('crystals_needed_for_gt', 7) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 738a3ae9..2e5416f6 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -261,6 +261,7 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument('--enemy_damage', default=defval('default'), choices=['default', 'shuffled', 'chaos']) parser.add_argument('--shufflepalette', default=defval(False), action='store_true') parser.add_argument('--shufflepots', default=defval(False), action='store_true') + parser.add_argument('--beemizer', default=defval(0), type=lambda value: min(max(int(value), 0), 4)) parser.add_argument('--multi', default=defval(1), type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--names', default=defval('')) parser.add_argument('--outputpath') @@ -281,7 +282,7 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', - 'retro', 'accessibility', 'hints', 'shufflepalette', 'shufflepots', + 'retro', 'accessibility', 'hints', 'shufflepalette', 'shufflepots', 'beemizer', 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: diff --git a/ItemList.py b/ItemList.py index 4d389a95..c5f2f3de 100644 --- a/ItemList.py +++ b/ItemList.py @@ -206,7 +206,18 @@ def generate_itempool(world, player): world.get_location(location, player).event = True world.get_location(location, player).locked = True - world.itempool += ItemFactory(pool, player) + beeweights = {0: {None: 100}, + 1: {None: 75, 'trap': 25}, + 2: {None: 40, 'trap': 40, 'bee': 20}, + 3: {'trap': 50, 'bee': 50}, + 4: {'trap': 100}} + def beemizer(item): + if world.beemizer[item.player] and not item.advancement and not item.priority and not item.type: + choice = random.choices(list(beeweights[world.beemizer[item.player]].keys()), weights=list(beeweights[world.beemizer[item.player]].values()))[0] + return item if not choice else ItemFactory("Bee Trap", player) if choice == 'trap' else ItemFactory("Bee", player) + return item + + world.itempool += [beemizer(item) for item in ItemFactory(pool, player)] world.lamps_needed_for_dark_rooms = lamps_needed_for_dark_rooms diff --git a/Items.py b/Items.py index f9a7d884..e07f1187 100644 --- a/Items.py +++ b/Items.py @@ -161,6 +161,7 @@ item_table = {'Bow': (True, False, None, 0x0B, 'You have\nchosen the\narcher cla 'Map (Ganons Tower)': (False, True, 'Map', 0x72, 'A tightly folded map rests here', 'and the map', 'cartography kid', 'map for sale', 'a map to shrooms', 'map boy navigates again', 'a map to Ganon\'s Tower'), 'Small Key (Universal)': (False, True, None, 0xAF, 'A small key for any door', 'and the key', 'the unlocking kid', 'keys for sale', 'unlock the fungus', 'key boy opens door again', 'a small key'), 'Nothing': (False, False, None, 0x5A, 'Some Hot Air', 'and the Nothing', 'the zen kid', 'outright theft', 'shroom theft', 'empty boy is bored again', 'nothing'), + 'Bee Trap': (False, False, None, 0xB0, 'We will sting your face a whole lot!', 'and the sting buddies', 'the beekeeper kid', 'insects for sale', 'shroom pollenation', 'bottle boy has mad bees again', 'friendship'), 'Red Potion': (False, False, None, 0x2E, None, None, None, None, None, None, None), 'Green Potion': (False, False, None, 0x2F, None, None, None, None, None, None, None), 'Blue Potion': (False, False, None, 0x30, None, None, None, None, None, None, None), diff --git a/Main.py b/Main.py index 83c4ded6..80f94552 100644 --- a/Main.py +++ b/Main.py @@ -52,6 +52,7 @@ def main(args, seed=None): world.enemy_shuffle = args.shuffleenemies.copy() world.enemy_health = args.enemy_health.copy() world.enemy_damage = args.enemy_damage.copy() + world.beemizer = args.beemizer.copy() world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} @@ -260,6 +261,7 @@ def copy_world(world): ret.enemy_shuffle = world.enemy_shuffle.copy() ret.enemy_health = world.enemy_health.copy() ret.enemy_damage = world.enemy_damage.copy() + ret.beemizer = world.beemizer.copy() for player in range(1, world.players + 1): if world.mode[player] != 'inverted': diff --git a/Mystery.py b/Mystery.py index 31e2f44b..f97ae275 100644 --- a/Mystery.py +++ b/Mystery.py @@ -199,6 +199,8 @@ def roll_settings(weights): enemy_health = get_choice('enemy_health') ret.enemy_health = enemy_health + ret.beemizer = int(get_choice('beemizer')) if 'beemizer' in weights.keys() else 1 # suck it :) + return ret if __name__ == '__main__': diff --git a/data/base2current.json b/data/base2current.json index 055fec58..55e5714f 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,99,224,160,234]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,155,199,160]},{"21847":[34,115,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,215,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,106,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[143,163,160]},{"30994":[17,164,160]},{"31001":[143,163,160]},{"31011":[17,164,160]},{"31046":[12,222,160]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[243,221,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,56,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,144,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,40,188,164]},{"60790":[15,223,160]},{"61077":[61,181,160]},{"61133":[34,141,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,206,237,160]},{"65607":[218,236,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,120,194,160,234]},{"65894":[34,166,194,160]},{"66284":[34,201,194,160]},{"66292":[92,234,247,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,208,239,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,160,223,160,234,234]},{"67934":[119,248,160]},{"68495":[34,23,155,160,208,6,234]},{"68584":[123,248,160]},{"69776":[34,23,155,160,208,4,234]},{"70410":[123,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,227,247,160,234]},{"72216":[197,221,160]},{"72241":[34,166,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[209,236,160]},{"73340":[34,241,128,160,234]},{"73937":[34,182,194,160]},{"74833":[34,213,130,164]},{"76423":[34,211,237,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]},{"78172":[34,59,223,160,34,219,153,160,234,234]},{"79603":[34,249,221,160]},{"79767":[34,175,223,160]},{"82676":[123,248,160]},{"87892":[34,192,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,13,239,160]},{"90651":[34,49,236,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[114,188,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[128,181,160]},{"173058":[128,181,160]},{"173307":[128,181,160]},{"173320":[128,181,160]},{"183384":[34,109,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[91,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,92,235,160,128,13]},{"189655":[34,45,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[57,188,164]},{"191439":[34,74,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,94,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,114,195,160,234]},{"192121":[202,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,43,179,160]},{"193157":[34,36,179,160]},{"193440":[34,224,219,160]},{"193472":[241,234,160]},{"193546":[34,224,219,160]},{"193578":[185,234,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[242,194,160]},{"194141":[34,226,195,160,234,234,234,234,234]},{"194177":[34,72,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,92,235,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,72,199,160]},{"195589":[122,176,160]},{"195710":[34,150,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[83,176,160]},{"195909":[93,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[201,192,160]},{"198721":[34,194,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,41,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[20,176,160]},{"199993":[34,103,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,206,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,20,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[76,188,164]},{"212610":[95,188,164]},{"213139":[34,185,164]},{"213169":[147,133,160]},{"214205":[34,201,180,160]},{"214972":[91,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,92,222,160]},{"217579":[34,107,193,160]},{"224597":[34,224,218,160]},{"224693":[34,244,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,2,220,160,234]},{"226304":[34,53,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,177,237,160]},{"229634":[34,124,186,164]},{"230816":[73,179,160]},{"230955":[73,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,186,237,160,234]},{"233987":[98,221,160]},{"234731":[34,191,221,160]},{"234747":[34,197,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[201,204,160]},{"236047":[75,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[26,198,160]},{"238498":[34,163,196,160,128,3]},{"238562":[34,230,198,160,240,4,234]},{"238751":[34,118,220,160]},{"238964":[34,118,220,160]},{"239190":[34,118,220,160]},{"239964":[85,223,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,86,219,160]},{"241165":[34,86,219,160]},{"241175":[34,235,128,164]},{"241294":[34,86,219,160]},{"241304":[34,235,128,164]},{"241814":[34,86,219,160,24,125,139,176]},{"241869":[86,235,160]},{"241877":[34,86,219,160,24,125,139,176]},{"242942":[34,202,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,212,222,160,234]},{"243067":[234,234,34,165,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,116,219,160,234]},{"250478":[34,170,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,183,243,160,234]},{"273608":[34,197,182,160,76,230,172]},{"275716":[34,169,182,160,234]},{"276202":[34,230,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,94,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,20,238,160,234,234]},{"279880":[92,17,189,164]},{"280037":[34,234,233,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[86,235,160]},{"280106":[92,163,225,160,234]},{"280265":[152,210,160]},{"280287":[152,209,160]},{"280314":[152,210,160]},{"280335":[34,229,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,101,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,86,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,234,200,160,234]},{"296453":[92,133,188,164,234]},{"296466":[152,211]},{"296471":[153,211]},{"296480":[152,213]},{"296488":[152,211]},{"296493":[153,211]},{"296502":[152,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[152,214]},{"296810":[168,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[200,206]},{"297052":[184,207]},{"297087":[34,69,133,160,234,176]},{"297144":[152,209]},{"297200":[200,206]},{"297225":[184,207]},{"297263":[153,215]},{"297292":[34,53,195,160]},{"297309":[160,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,35,189,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]},{"324619":[34,11,153,160]},{"324675":[34,190,222,160]},{"324780":[8,8,16]},{"324896":[34,34,236,160,34,166,222,160,234,234,234,234,234,234]},{"324996":[34,182,194,160]},{"325098":[169,2,0,234]},{"325131":[34,82,236,160]},{"325203":[34,163,175,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":[234,237,160]},{"342245":[34,59,132,160,34,39,222,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[243,221,160]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[167,237,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,254,235,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[235,243,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,118,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,16,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,46,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,251,243,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,56,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,139,155,160]},{"450360":[34,1,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,109,184,160,234]},{"450492":[34,107,155,160,234,234,234]},{"450861":[34,131,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,254,155,160,234]},{"452559":[34,236,155,160,234]},{"452581":[34,16,156,160,234]},{"452634":[96]},{"453064":[34,43,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,131,193,160,234,234,76,230,236]},{"453867":[34,34,156,160,234]},{"453892":[34,52,156,160]},{"454092":[34,157,155,160,234,234,234,234,234]},{"454233":[34,157,155,160,234,234,234,234,234]},{"454256":[34,235,194,160,234]},{"454282":[34,157,155,160,234,234,234,234,234]},{"454459":[34,157,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,193,216,160]},{"457513":[34,231,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,73,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,18,236,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,232,225,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[226,233,160]},{"487403":[169,2,0,234]},{"487935":[34,16,226,160]},{"488156":[34,16,226,160]},{"488213":[34,16,226,160]},{"488242":[34,16,226,160]},{"488309":[34,16,226,160]},{"488340":[34,16,226,160]},{"488721":[34,16,226,160]},{"489560":[34,16,226,160]},{"490022":[34,16,226,160]},{"490060":[34,16,226,160]},{"490164":[34,16,226,160]},{"490184":[34,16,226,160]},{"490209":[34,16,226,160]},{"490257":[34,16,226,160]},{"490438":[34,32,226,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]},{"882113":[34,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,14,240,160]},{"900244":[34,98,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,89,240,160,234]},{"900437":[92,243,238,160,234]},{"900447":[34,178,247,160,234,234,234]},{"900458":[34,249,221,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,155,240,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,72,234,160,96]},{"954852":[220,181,160]},{"955117":[39,234,160]},{"955529":[216,181,160]},{"962925":[181,181,160]},{"962951":[181,181,160]},{"963167":[181,181,160]},{"963214":[181,181,160]},{"965041":[181,181,160]},{"965069":[181,181,160]},{"965214":[181,181,160]},{"965298":[181,181,160]},{"965316":[181,181,160]},{"967797":[34,29,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,55,180,160]},{"972824":[132,181,160]},{"972834":[132,181,160]},{"972851":[132,181,160]},{"974665":[92,182,197,160,234]},{"974706":[243,197,160]},{"974722":[216,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,199,197,160,234,234]},{"975332":[34,165,197,160,234,234]},{"975401":[255]},{"976357":[177,181,160]},{"976423":[177,181,160]},{"978658":[161,181,160]},{"979078":[34,244,219,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":[37,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,129,196,160]},{"983466":[161,181,160]},{"983651":[161,181,160]},{"988539":[173,181,160]},{"988657":[173,181,160]},{"988668":[173,181,160]},{"988874":[173,181,160]},{"988902":[173,181,160]},{"989142":[173,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[165,181,160]},{"999246":[169,181,160]},{"999265":[169,181,160]},{"999359":[169,181,160]},{"999574":[169,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,123,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[136,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[136,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,76,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,155,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,174,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,145,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,145,179,160,122,250,107,218,90,34,201,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,67,147,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,67,147,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,67,147,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,67,147,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,154,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,82,217,160,76,49,145,201,251,208,7,34,14,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,154,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,82,217,160,76,114,147,201,251,208,7,34,14,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,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,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,154,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,82,217,160,128,8,201,99,208,4,34,14,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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,175,90,128,48,41,255]},{"1055518":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055531":[107,175,122,243,126,47,165,160,2,41,255]},{"1055543":[107,194,32,175,19,130,48,41,255]},{"1055553":[240,5,169,8]},{"1055558":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055571":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055593":[2,107,175,19,130,48,41,255]},{"1055602":[240,5,169,8]},{"1055607":[128,7,175,72,128,48,41,255]},{"1055616":[24,101,234,48,3,169]},{"1055624":[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]},{"1055651":[201,255]},{"1055654":[208,1,107,175,22,244,126,41,32]},{"1055664":[240,4,169]},{"1055669":[107,173,12,4,41,255]},{"1055676":[201,255]},{"1055679":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055703":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,15,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055735":[107,169,136,21,133]},{"1055741":[107,175,69,128,48,208,6,169,16,22,133]},{"1055753":[107,169,144,21,133]},{"1055759":[107,175,69,128,48,208,6,169,24,22,133]},{"1055771":[107,169,152,21,133]},{"1055777":[107,175,69,128,48,208,6,169,32,22,133]},{"1055789":[107,169,160,21,133]},{"1055795":[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]},{"1055887":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055901":[144,240,175,22,244,126,41,32]},{"1055910":[240,3,130,200,1,175,69,128,48,41,1]},{"1055922":[208,3,130,231]},{"1055927":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055949":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055966":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055983":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056000":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056017":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056034":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056051":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056068":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056085":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056102":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056119":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056136":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056153":[141,165,22,194,32,175,69,128,48,41,2]},{"1056165":[208,3,130,201]},{"1056170":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056183":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056198":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056213":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056228":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056243":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056258":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056273":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056288":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056303":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056318":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056333":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056348":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056363":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056378":[208,3,130,170,1,175,69,128,48,41,4]},{"1056390":[208,3,130,201]},{"1056395":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056408":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056423":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056438":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056453":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056468":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056483":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056498":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056513":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056528":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056543":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056558":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056573":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056588":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056603":[208,3,130,201]},{"1056608":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056621":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056636":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056651":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056666":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056681":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056696":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056711":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056726":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056741":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056756":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056771":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056786":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056801":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056820":[191,115,161,160,157,234,18,191,135,161,160,157,42,19,191,155,161,160,157,106,19,191,175,161,160,157,170,19,191,195,161,160,157,234,19,191,215,161,160,157,42,20,191,235,161,160,157,106,20,191,255,161,160,157,170,20,191,19,162,160,157,234,20,232,232,224,20]},{"1056888":[144,186,175,116,243,126,41,4]},{"1056897":[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]},{"1056930":[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]},{"1056963":[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]},{"1056996":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057017":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057038":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057059":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057080":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057101":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057122":[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]},{"1057745":[143,114,243,126,173,10,2,208,14,169]},{"1057756":[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]},{"1057790":[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]},{"1057871":[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]},{"1057914":[165,12,201,232,3,144,3,130,24]},{"1057924":[201,100]},{"1057927":[144,3,130,97]},{"1057932":[201,10]},{"1057935":[144,3,130,170]},{"1057940":[201,1]},{"1057943":[144,3,130,243]},{"1057948":[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,33,166,133,14,165,14,159]},{"1057985":[201,126,232,232,169,56]},{"1057992":[159]},{"1057994":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058008":[201,126,232,232,169]},{"1058015":[159]},{"1058017":[201,126,232,232,165,14,24,105,8]},{"1058027":[133,14,100,10,165,12,201,100]},{"1058036":[144,8,56,233,100]},{"1058042":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,33,166,133,14,165,14,159]},{"1058066":[201,126,232,232,169,56]},{"1058073":[159]},{"1058075":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058089":[201,126,232,232,169]},{"1058096":[159]},{"1058098":[201,126,232,232,165,14,24,105,8]},{"1058108":[133,14,100,10,165,12,201,10]},{"1058117":[144,8,56,233,10]},{"1058123":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,33,166,133,14,165,14,159]},{"1058147":[201,126,232,232,169,56]},{"1058154":[159]},{"1058156":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058170":[201,126,232,232,169]},{"1058177":[159]},{"1058179":[201,126,232,232,165,14,24,105,8]},{"1058189":[133,14,100,10,165,12,201,1]},{"1058198":[144,8,56,233,1]},{"1058204":[230,10,128,243,133,12,192,255,208,10,160]},{"1058216":[165,14,24,121,33,166,133,14,165,14,159]},{"1058228":[201,126,232,232,169,56]},{"1058235":[159]},{"1058237":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058251":[201,126,232,232,169]},{"1058258":[159]},{"1058260":[201,126,232,232,165,14,24,105,8]},{"1058270":[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]},{"1058341":[252,255,248,255,218,90,8,194,48,162]},{"1058353":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058368":[208,13,175,153,80,127,41,255]},{"1058377":[223,3,200,48,208,44,226,32,191]},{"1058387":[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]},{"1058429":[200,48,41,255]},{"1058434":[201,255]},{"1058437":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058460":[226,32,162]},{"1058465":[160]},{"1058468":[152,207,96,80,127,144,3,130,172]},{"1058478":[191,1,201,48,201,255,208,3,130,161]},{"1058489":[191]},{"1058491":[201,48,207,80,80,127,240,3,130,137]},{"1058502":[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]},{"1058539":[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,213,167,160,170,32,244,167,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]},{"1058670":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058684":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,47,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,48,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,49,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]},{"1058777":[128]},{"1058782":[1]},{"1058785":[169,11,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,49,145,160,34,45,213]},{"1058824":[194,16,96,32,15,168,107,173]},{"1058833":[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]},{"1058863":[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]},{"1058900":[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]},{"1059041":[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]},{"1059206":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059227":[175,81,80,127,201,255,208,3,76,136,169,139,75,171,34,231,244,30,32,214,169,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]},{"1059278":[32,243,173,32,243,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059301":[201,2,208,3,130,227]},{"1059308":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059323":[165,26,41,16,240,12,189,106,170,159]},{"1059334":[201,126,232,224,16,144,244,189,122,170,159]},{"1059346":[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]},{"1059405":[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]},{"1059436":[248,255]},{"1059441":[2]},{"1059446":[16]},{"1059449":[2]},{"1059452":[248,255]},{"1059457":[2]},{"1059462":[16,64]},{"1059465":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,191,133,8,169,170,133,9,128,8,169,199,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059523":[70,10]},{"1059526":[2]},{"1059531":[70,74]},{"1059534":[2,218,162]},{"1059538":[165,26,41,64,240,12,189,65,171,159]},{"1059549":[201,126,232,224,16,144,244,189,81,171,159]},{"1059561":[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]},{"1059620":[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]},{"1059651":[248,255,132]},{"1059656":[2]},{"1059661":[16]},{"1059664":[2]},{"1059667":[248,255,132]},{"1059672":[2]},{"1059677":[16,64]},{"1059680":[2,218,162]},{"1059684":[165,26,41,64,240,12,189,211,171,159]},{"1059695":[201,126,232,224,16,144,244,189,227,171,159]},{"1059707":[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]},{"1059766":[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]},{"1059797":[248,255,142]},{"1059802":[2]},{"1059807":[16]},{"1059810":[2]},{"1059813":[248,255,142]},{"1059818":[2]},{"1059823":[16,64]},{"1059826":[2,218,90,8,160]},{"1059832":[90,152,74,74,168,175,95,80,127,57,47,173,240,3,122,128,48,122,173,238]},{"1059853":[221,32,15,208,39,32,198,173,32,50,173,34,230,131,6,144,3,32,230,173,32,156,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,72,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]},{"1059981":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059997":[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,47,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,47,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]},{"1060150":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060171":[58,10,168,185,232,174,133]},{"1060179":[122,104,24,113]},{"1060184":[24,105,2]},{"1060188":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060201":[13,194,32,90,200,200,24,113]},{"1060210":[122,72,175,81,80,127,41,128]},{"1060219":[240,7,104,24,105,4]},{"1060226":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060249":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060266":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060279":[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]},{"1060307":[165,35,105]},{"1060311":[133,8,165,32,105,8,133,1,165,33,105]},{"1060323":[133,9,96,218,34]},{"1060329":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060351":[160]},{"1060353":[175,81,80,127,41,3,201,3,208,5,32,36,174,128,4,201,2,208,5,32,36,174,128,4,201,1,208,3,32,36,174,122,250,171,96,175,95,80,127,57,47,173,240,3,130,178]},{"1060400":[90,175,81,80,127,41,3,58,10,168,194,32,185,232,174,133]},{"1060417":[163,1,10,10,168,177]},{"1060424":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060437":[208,8,177]},{"1060441":[143,39,192,126,128,10,177]},{"1060449":[24,105,4]},{"1060453":[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,6,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,114,147,160,143,42,192,126,169]},{"1060520":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060546":[143,44,192,126,32,219,175,169,2,218,72,175,97,80,127,170,104,32,146,175,250,175,81,80,127,41,128,208,3,32,9,175,200,232,232,232,232,96,238,174,242,174,250,174,8]},{"1060592":[40]},{"1060594":[240,255,40]},{"1060598":[32]},{"1060600":[40]},{"1060602":[216,255,40]},{"1060606":[8]},{"1060608":[40]},{"1060610":[56]},{"1060612":[40]},{"1060614":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060633":[58,10,168,185,232,174,133]},{"1060641":[185,128,175,133,2,122,90,152,10,10,168,177]},{"1060654":[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,115,164,226,32,133,6,100,7,72,169]},{"1060693":[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,134,175,136,175,140,175]},{"1060743":[255]},{"1060745":[128,128,255]},{"1060749":[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]},{"1060830":[194,32,191,37,192,126,24,105,4]},{"1060840":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060856":[159,47,192,126,191,41,192,126,24,105,16]},{"1060868":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060910":[72,165,2,72,169,16,128,133]},{"1060919":[169,48]},{"1060922":[133,2,169,2]},{"1060927":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060974":[143]},{"1060976":[80,127,32,189,176,34,79,150,160,107,72,175]},{"1060989":[80,127,240,6,34,108,176,160,128,13,32,189,176,34,12,151,160,169]},{"1061008":[143,152,192,126,104,107,32,189,176,201,36,208,24,90,160,36,34,174,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061093":[143,152,192,126,169,36,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]},{"1061368":[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]},{"1061435":[191,4,179,160,197,4,144,3,232,128,245,191,5,179,160,133,6,100,7,194,32,138,10,10,170,191,6,179,160,141,232,80,191,8,179,160,141,234,80,173]},{"1061476":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061494":[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,240,176,173,236,80,10,10,170,189]},{"1061531":[81,56,229,8,157]},{"1061537":[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]},{"1061569":[81,141,228,80,189,2,81,141,230,80,32,240,176,173]},{"1061584":[81,56,229,8,141]},{"1061590":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,236,176,160,141,232,80,173,234,80,239,238,176,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,34,49,145,160,72,165,138,201,3,240,6,34,23,179,160,128,4,34,10,179,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,50,179,160,169,235,143]},{"1061736":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061760":[13,165,33,153,32,13,169]},{"1061768":[153,32,15,169,127,153,112,15,107,72,8,34,187,179,160,144,31,156,18,1,156,239,3,169]},{"1061793":[133,93,194,32,165,138,201,48]},{"1061802":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061826":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061839":[128,16,201,48]},{"1061844":[208,11,165,34,201]},{"1061850":[2,144,4,56,130,1]},{"1061857":[24,226,32,107,191,152,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061878":[226,32,34,16,247,8,169,52,145,144,200,191,152,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061913":[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]},{"1061975":[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,195,180,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]},{"1062122":[13,173,219,15,233]},{"1062128":[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]},{"1062167":[13,173,219,15,233]},{"1062173":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062198":[254,127,208,245,169,4,107,34,235,222,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,253,222,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,253,222,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062271":[107,169]},{"1062274":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,244,181,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,244,181,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,244,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,244,181,160,107,218,8,194,32,41,127]},{"1062395":[10,170,191]},{"1062399":[82,127,26,41,255,3,159]},{"1062407":[82,127,170,10,191]},{"1062413":[128,175,40,250,107,218,8,194,48,162]},{"1062425":[191,73,182,160,159]},{"1062431":[82,127,232,232,191,73,182,160,159]},{"1062441":[82,127,232,232,191,73,182,160,159]},{"1062451":[82,127,232,232,191,73,182,160,159]},{"1062461":[82,127,232,232,224,127]},{"1062468":[144,211,40,250,107]},{"1062475":[64]},{"1062477":[128]},{"1062479":[192]},{"1062482":[1,64,1,128,1,192,1]},{"1062490":[2,64,2,128,2,192,2]},{"1062498":[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,105,182,160,175,35,128,48,208,4,34,137,182,160,104,107,72,169]},{"1062600":[143,65,80,127,175,34,128,48,201,1,208,4,34,105,182,160,175,35,128,48,201,1,208,4,34,137,182,160,104,107,72,175,34,128,48,201,2,208,4,34,105,182,160,175,35,128,48,201,2,208,4,34,137,182,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]},{"1062766":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062783":[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]},{"1062854":[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]},{"1062890":[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,61,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]},{"1063015":[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]},{"1063041":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063061":[2,156,5,2,169]},{"1063067":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,159,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063098":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063115":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063132":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063149":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063166":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063183":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063200":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063217":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063240":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063257":[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]},{"1063290":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063313":[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]},{"1063345":[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]},{"1063403":[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]},{"1063429":[192,59,208,3,130,96]},{"1063436":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063461":[201,15,1,208,3,130,59]},{"1063469":[201,16,1,208,3,130,51]},{"1063477":[201,28,1,208,3,130,43]},{"1063485":[201,31,1,208,3,130,35]},{"1063493":[201,255]},{"1063496":[208,3,130,27]},{"1063501":[201,20,1,208,3,130,19]},{"1063509":[201,21,1,208,3,130,11]},{"1063517":[201,22,1,208,3,130,3]},{"1063525":[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]},{"1063557":[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]},{"1063710":[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]},{"1063748":[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]},{"1063786":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063804":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063822":[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]},{"1063858":[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]},{"1063896":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063914":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,139,192,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]},{"1064018":[208,9,32,37,191,32,86,191,130,64,2,192,1,208,6,32,37,191,130,54,2,192,2,208,6,32,37,191,130,44,2,192,3,208,6,32,37,191,130,34,2,192,4,208,6,32,86,191,130,24,2,192,5,208,6,32,86,191,130,14,2,192,6,208,6,32,86,191,130,4,2,192,7,144,10,192,14,176,6,32,135,191,130,246,1,192,20,208,9,32,227,190,32,135,191,130,233,1,192,15,144,10,192,23,176,6,32,135,191,130,219,1,192,23,208,6,32,235,191,130,209,1,192,24,144,10,192,26,176,6,32,135,191,130,195,1,192,26,208,9,32,4,191,32,135,191,130,182,1,192,29,208,6,32,135,191,130,172,1,192,27,144,10,192,32,176,6,32,147,191,130,158,1,192,32,208,6,32,19,192,130,148,1,192,33,208,6,32,135,191,130,138,1,192,34,144,10,192,36,176,6,32,47,192,130,124,1,192,36,208,6,32,63,192,130,114,1,192,37,208,6,32,95,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,167,192,130,87,1,192,40,208,6,32,167,192,130,77,1,192,41,208,6,32,135,191,130,67,1,192,42,144,10,192,46,176,6,32,135,191,130,53,1,192,49,208,6,32,167,192,130,43,1,192,50,208,6,32,127,192,130,33,1,192,51,208,6,32,189,192,130,23,1,192,55,144,10,192,58,176,6,32,175,191,130,9,1,192,58,144,10,192,60,176,6,32,116,191,130,251]},{"1064354":[192,60,208,6,32,135,191,130,241]},{"1064364":[192,61,208,6,32,135,191,130,231]},{"1064374":[192,62,144,10,192,64,176,6,32,7,192,130,217]},{"1064388":[192,72,208,6,32,135,191,130,207]},{"1064398":[192,73,208,6,32,37,191,130,197]},{"1064408":[192,74,208,9,32,227,190,32,135,191,130,184]},{"1064421":[192,75,208,9,32,194,190,32,147,191,130,171]},{"1064434":[192,76,208,9,32,203,191,32,167,192,130,158]},{"1064447":[192,77,144,10,192,80,176,6,32,203,191,130,144]},{"1064461":[192,80,208,6,32,37,191,130,134]},{"1064471":[192,81,144,10,192,85,176,6,32,203,191,130,120]},{"1064485":[192,88,208,6,32,116,191,130,110]},{"1064495":[192,94,208,6,32,37,191,130,100]},{"1064505":[192,95,208,6,32,86,191,130,90]},{"1064515":[192,96,208,6,32,47,192,130,80]},{"1064525":[192,97,208,6,32,147,191,130,70]},{"1064535":[192,100,144,10,192,102,176,6,32,116,191,130,56]},{"1064549":[192,112,144,10,192,128,176,6,32,189,192,130,42]},{"1064563":[192,128,144,10,192,144,176,6,32,95,192,130,28]},{"1064577":[192,144,144,10,192,160,176,6,32,127,192,130,14]},{"1064591":[192,160,144,10,192,176,176,6,32,63,192,130]},{"1064605":[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,161,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064757":[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,63,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,135,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,205,192,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,15,238,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]},{"1065353":[201,2]},{"1065356":[208,14,175,140,243,126,41,192]},{"1065365":[201,192]},{"1065368":[240,79,128,64,201,1]},{"1065375":[208,14,175,142,243,126,41,192]},{"1065384":[201,192]},{"1065387":[240,60,128,45,201,5]},{"1065394":[208,14,175,140,243,126,41,48]},{"1065403":[201,48]},{"1065406":[240,41,128,26,201,13]},{"1065413":[208,16,175,140,243,126,137,4]},{"1065422":[240,12,41,3]},{"1065427":[208,20,128,5,201,16]},{"1065434":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065447":[208,5,169,79,61,128,6,32,248,193,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]},{"1065494":[41,255,239,153,4]},{"1065500":[185,62]},{"1065503":[41,255,239,153,62]},{"1065509":[185,68]},{"1065512":[41,255,239,153,68]},{"1065518":[185,128]},{"1065521":[41,255,239,153,128]},{"1065527":[185,130]},{"1065530":[41,255,239,153,130]},{"1065536":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065557":[41,255,239,153,132]},{"1065563":[185,126]},{"1065566":[41,255,239,153,126]},{"1065572":[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]},{"1065610":[201,144]},{"1065613":[208,3,169,127]},{"1065618":[9]},{"1065620":[36,143,100,199,126,165,5,41,255]},{"1065630":[9]},{"1065632":[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,132,240,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065744":[72,165,2,72,169,16,128,133]},{"1065753":[169,48]},{"1065756":[133,2,169,4]},{"1065761":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065807":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065828":[143]},{"1065830":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065844":[157,192,13,72,169,1,143]},{"1065852":[80,127,165,93,201,20,240,68,169]},{"1065862":[143]},{"1065864":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065892":[72,165,2,72,169,16,128,133]},{"1065901":[169,48]},{"1065904":[133,2,169,3]},{"1065909":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065934":[80,127,240,6,34,119,195,160,128,7,189,128,14,34,187,150,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]},{"1065977":[72,165,2,72,169,16,128,133]},{"1065986":[169,48]},{"1065989":[133,2,169,4]},{"1065994":[34,67,147,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,151,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]},{"1066052":[143,68,243,126,107,175,123,243,126,41,255]},{"1066064":[201,2]},{"1066067":[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]},{"1066100":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066115":[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]},{"1066151":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066165":[173,91,3,41,1,208,3,130,134]},{"1066175":[90,8,139,75,171,226,48,165,27,240,3,76,66,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066212":[129,48,143]},{"1066216":[254,127,34,93,246,29,162]},{"1066224":[165,47,201,4,240,1,232,191,70,197,160,153,80,13,169]},{"1066240":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,72,197,160,41,240,153,16,13,165,35,105]},{"1066274":[153,48,13,165,32,24,105,22,41,240,153]},{"1066286":[13,165,33,105]},{"1066291":[153,32,13,169]},{"1066296":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066313":[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]},{"1066344":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066365":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066435":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066466":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066560":[72,165,2,72,169,64,129,133]},{"1066569":[169,48]},{"1066572":[133,2,169,10]},{"1066577":[34,67,147,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066597":[254,127,34,93,246,29,162]},{"1066605":[165,47,201,4,240,1,232,191,202,198,160,153,80,13,169]},{"1066621":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,204,198,160,41,240,153,16,13,165,35,105]},{"1066655":[153,48,13,165,32,24,105,22,41,240,153]},{"1066667":[13,165,33,105]},{"1066672":[153,32,13,169]},{"1066677":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066701":[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]},{"1066780":[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]},{"1066807":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066846":[72,165,2,72,169,16,128,133]},{"1066855":[169,48]},{"1066858":[133,2,169,5]},{"1066863":[34,67,147,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]},{"1066917":[201,35,208,6,160,93,92,71,213]},{"1066927":[201,72,208,6,160,96,92,71,213]},{"1066937":[201,36,176,6,160,91,92,71,213]},{"1066947":[201,55,176,6,160,92,92,71,213]},{"1066957":[201,57,176,6,160,93,92,71,213]},{"1066967":[160,50,92,71,213]},{"1066973":[192,9,48]},{"1066977":[96]},{"1066979":[144]},{"1066981":[192]},{"1066984":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067008":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067026":[9,48,9,96,9,144,9,240,9]},{"1067037":[240]},{"1067039":[32,10,80,10,96,6]},{"1067046":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067068":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067084":[6,48,6]},{"1067088":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067104":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067125":[127,221,199,160,107,165]},{"1067132":[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]},{"1067163":[132,175,24,105]},{"1067168":[136,133]},{"1067171":[226,32,169,175,133,2,34,50,226,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,186,218,160,162,1,128,2,162]},{"1067229":[171,40,122,104,133,2,104,133,1,104,133]},{"1067241":[96,218,173,216,2,34,104,226,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067724":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,186,218,160,130,84,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,186,218,160,130,40,1,201,109,208,7,34,232,184,164,130,29,1,201,110,208,7,34,232,184,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067971":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067988":[56,233,8,170,169,1,224]},{"1067996":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1068019":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068038":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1068055":[56,233,8,170,169,1,224]},{"1068063":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1068086":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068105":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1068122":[56,233,8,170,169,1,224]},{"1068130":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1068153":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068175":[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,19]},{"1068207":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068226":[250,173,233,2,201,1,107,72,218,34,8,238,160,173,216,2,72,175,152,192,126,208,12,104,32,105,218,141,216,2,32,63,218,128,1,104,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,154,218,207,150,128,48,144,13,175,152,192,126,208,7,175,151,128,48,141,216,2,130,163,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,145,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,115,1,175,89,243,126,201,255,208,8,169,73,141,216,2,130,99,1,201]},{"1068383":[208,8,169,73,141,216,2,130,87,1,201,1,208,8,169,80,141,216,2,130,75,1,201,2,208,8,169,2,141,216,2,130,63,1,169,3,141,216,2,130,55,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,29,1,201,64,208,8,169,5,141,216,2,130,17,1,169,6,141,216,2,130,9,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,239]},{"1068497":[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,200]},{"1068536":[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,170]},{"1068566":[175,91,243,126,201]},{"1068572":[208,8,169,34,141,216,2,130,154]},{"1068582":[169,35,141,216,2,130,146]},{"1068590":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,128]},{"1068608":[169,28,141,216,2,130,120]},{"1068616":[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,88]},{"1068648":[175,64,243,126,26,74,201]},{"1068656":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,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,82,217,160,141,216,2,235,32,221,217,169,255,143,144,80,127,128,19,201,99,208,15,34,14,218,160,141,216,2,169,255,143,144,80,127,128]},{"1068736":[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]},{"1068991":[4,4,4,4,4,5]},{"1069003":[4]},{"1069005":[4]},{"1069008":[4]},{"1069020":[4]},{"1069026":[5]},{"1069036":[4,4,4]},{"1069050":[4,4]},{"1069053":[4]},{"1069057":[4]},{"1069064":[4]},{"1069073":[4]},{"1069144":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069224":[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]},{"1069273":[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]},{"1069312":[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,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]},{"1069469":[2,2]},{"1069477":[2,2,2,2,2,2]},{"1069484":[2]},{"1069486":[2,2]},{"1069489":[2,2,2,2,2,2,2,2,2,2,2]},{"1069501":[2,2,2,2,2]},{"1069507":[2,2,2,2,2,2,2,2,2]},{"1069519":[2,2,2,2,2,2,2,2,2,2,2]},{"1069532":[2]},{"1069534":[2,2,2]},{"1069538":[2,2,2,2,2,2]},{"1069545":[2,2,2,2,2,2,2,2]},{"1069554":[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]},{"1069640":[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]},{"1069826":[4,4,4]},{"1069832":[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,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,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]},{"1070745":[128]},{"1070747":[64]},{"1070749":[32]},{"1070751":[16]},{"1070753":[8]},{"1070755":[4]},{"1070757":[2]},{"1070759":[1,128]},{"1070762":[64]},{"1070764":[32]},{"1070766":[16]},{"1070768":[8]},{"1070770":[4]},{"1071001":[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,105,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,231,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,231,216,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]},{"1071455":[160,48,107,162]},{"1071460":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071473":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071487":[168,152,32,185,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071507":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071531":[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]},{"1071571":[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]},{"1071608":[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]},{"1071647":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071660":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071683":[191]},{"1071685":[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]},{"1071725":[191]},{"1071727":[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,162]},{"1071772":[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,96,100,17,100,176,92,175,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071835":[13,24,105,3,107,189,32,14,201,136,208,9,32,24,219,201,4,144,1,58,107,32,24,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071881":[200,49,74,74,74,74,107,40,191]},{"1071891":[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]},{"1071941":[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]},{"1071975":[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,20,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]},{"1072177":[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]},{"1072232":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072258":[165,27,240,121,194,32,165,160,201,14]},{"1072269":[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]},{"1072304":[201,126]},{"1072307":[208,33,165,34,41,255,1,201,104]},{"1072317":[144,60,201,136]},{"1072322":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072342":[201,222]},{"1072345":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072370":[144,7,201,154]},{"1072375":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,95,221,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,95,221,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,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]},{"1072585":[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]},{"1072645":[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,12,222,160,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,90,160,24,34,161,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072764":[208,11,40,90,160,24,34,161,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,192,155,160,107,72,175,67,244,126,208,4,34,201,192,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,12,222,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,12,222,160,104,34,168,160,2,107,58,16,8,169]},{"1073020":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1073034":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,12,222,169,1,143]},{"1073060":[80,127,156,70,6,156,66,6,76,12,222,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,201,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073272":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073303":[32,137,64,240,4,92,220,128]},{"1073312":[173]},{"1073314":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073339":[143,155,80,127,92,220,128]},{"1073347":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073366":[173,39,1,205,41,1,208,4,92,220,128]},{"1073378":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073408":[224,255,208,4,92,220,128]},{"1073416":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073432":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073448":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073465":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073478":[142,4,32,156,5,32,156,7,32,191]},{"1073489":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073502":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073538":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073551":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073607":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073620":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073670":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073688":[87,127,107,191]},{"1073693":[18,127,107,156,240,28,156,241,28,169]},{"1073704":[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]},{"1073736":[226,32,183]},{"1073740":[159]},{"1073742":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073761":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073785":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073803":[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]},{"1073829":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073847":[226,32,183]},{"1073851":[159]},{"1073853":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073872":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073892":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073910":[226,32,183]},{"1073914":[159]},{"1073916":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073935":[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]},{"1073966":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073984":[226,32,183]},{"1073988":[159]},{"1073990":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074009":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074029":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074047":[226,32,183]},{"1074051":[159]},{"1074053":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074072":[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]},{"1074101":[133]},{"1074103":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074121":[226,32,183]},{"1074125":[159]},{"1074127":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074146":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074166":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074184":[226,32,183]},{"1074188":[159]},{"1074190":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074209":[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]},{"1074240":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074258":[226,32,183]},{"1074262":[159]},{"1074264":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074283":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074303":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074321":[226,32,183]},{"1074325":[159]},{"1074327":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074346":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074367":[133]},{"1074369":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074387":[226,32,183]},{"1074391":[159]},{"1074393":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074412":[143,148,80,127,226,32,130,213]},{"1074421":[201,128,208,56,169,52,133]},{"1074429":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074447":[226,32,183]},{"1074451":[159]},{"1074453":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074472":[143,148,80,127,226,32,130,153]},{"1074481":[201,144,208,55,169,112,133]},{"1074489":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074507":[226,32,183]},{"1074511":[159]},{"1074513":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074532":[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]},{"1074559":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074577":[226,32,183]},{"1074581":[159]},{"1074583":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074602":[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]},{"1074681":[208,56,169,216,133]},{"1074687":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074705":[226,32,183]},{"1074709":[159]},{"1074711":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074730":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074747":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074765":[226,32,183]},{"1074769":[159]},{"1074771":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074790":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074807":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074825":[226,32,183]},{"1074829":[159]},{"1074831":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074850":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074867":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074885":[226,32,183]},{"1074889":[159]},{"1074891":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074910":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074927":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074945":[226,32,183]},{"1074949":[159]},{"1074951":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074970":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074987":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075005":[226,32,183]},{"1075009":[159]},{"1075011":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075030":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075047":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075065":[226,32,183]},{"1075069":[159]},{"1075071":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075090":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075107":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075125":[226,32,183]},{"1075129":[159]},{"1075131":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075150":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075167":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075185":[226,32,183]},{"1075189":[159]},{"1075191":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075210":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075227":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075245":[226,32,183]},{"1075249":[159]},{"1075251":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075270":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075287":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075305":[226,32,183]},{"1075309":[159]},{"1075311":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075330":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075347":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075365":[226,32,183]},{"1075369":[159]},{"1075371":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075390":[143,148,80,127,226,32,130,235]},{"1075399":[201,12,208,56,169,12,133]},{"1075407":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075425":[226,32,183]},{"1075429":[159]},{"1075431":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075450":[143,148,80,127,226,32,130,175]},{"1075459":[201,13,208,55,169,41,133]},{"1075467":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075485":[226,32,183]},{"1075489":[159]},{"1075491":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075510":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075526":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075544":[226,32,183]},{"1075548":[159]},{"1075550":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075569":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075585":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075603":[226,32,183]},{"1075607":[159]},{"1075609":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075628":[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]},{"1075661":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075676":[171,40,122,250,104,107,34,78,216]},{"1075686":[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]},{"1075750":[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,92,235,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,92,235,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]},{"1076021":[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]},{"1076066":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076090":[226,48,160]},{"1076094":[183]},{"1076096":[201,254,208,39,200,183]},{"1076103":[201,110,208,32,200,183]},{"1076110":[208,27,200,183]},{"1076115":[201,254,208,20,200,183]},{"1076122":[201,107,208,13,200,183]},{"1076129":[201,4,208,6,156,232,28,130,19]},{"1076139":[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]},{"1076167":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076184":[10,10,69,138,41,8]},{"1076191":[240,6,152,24,105,16]},{"1076198":[168,165,35,41,2]},{"1076204":[74,69,138,41,1]},{"1076210":[240,4,152,26,26,168,152,41,255]},{"1076220":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,140,246,160,34,166,170,164,34]},{"1076252":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,153,222,160,107,194,16,34,61,137]},{"1076448":[169,7,141,12,33,175,240,244,126,208,10,34,65,237,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076500":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076580":[191]},{"1076582":[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]},{"1076656":[107,34,212,152,160,34,145,247,160,107,34,71,153,160,34,80,153,160,162,4,107,34,145,247,160,169,20,133,17,107,34,145,247,160,107,34,63,132,160,34,44,153,160,34,12,222,160,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]},{"1076731":[2,107,169]},{"1076735":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1076758":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,86,235,160,169]},{"1076780":[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]},{"1076816":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076841":[208,4,169]},{"1076846":[107,201,1]},{"1076850":[208,16,175,197,243,126,41,15]},{"1076859":[201,2]},{"1076862":[176,84,32,216,238,107,201,2]},{"1076871":[208,75,32,216,238,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076895":[107,175,74,128,48,41,255]},{"1076903":[240,43,175,195,242,126,41,32]},{"1076912":[208,34,173,8,3,41,128]},{"1076920":[240,4,169,1]},{"1076925":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076947":[107,169]},{"1076951":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076974":[96,169]},{"1076978":[96,175,76,128,48,41,255]},{"1076986":[240,4,92,90,189,27,224,118]},{"1076995":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077012":[72,170,191,64,130,48,208,3,130,175]},{"1077023":[58,133]},{"1077026":[10,10,24,101]},{"1077031":[10,10,170,169,22]},{"1077037":[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]},{"1077065":[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]},{"1077108":[137,128]},{"1077111":[240,3,9]},{"1077115":[255,143,106,193,126,191,98,130,48,41,255]},{"1077127":[137,128]},{"1077130":[240,3,9]},{"1077134":[255,143,110,193,126,169]},{"1077142":[56,239,106,193,126,143,108,193,126,169]},{"1077154":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077170":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077188":[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]},{"1077265":[165]},{"1077267":[223]},{"1077269":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077289":[165]},{"1077291":[223]},{"1077293":[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]},{"1077339":[175,74,128,48,41,255]},{"1077346":[240,25,175,93]},{"1077352":[41,255]},{"1077355":[201,20]},{"1077358":[208,13,165,138,41,64]},{"1077365":[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]},{"1077422":[107,104,141,228,2,141,193,15,141,16,7,107,34,195,240,160,34,48,241,160,107,169,14,143,1,40]},{"1077449":[169,4,143,1,40]},{"1077455":[169,13,143,1,40]},{"1077461":[169,14,143,1,40]},{"1077467":[169]},{"1077469":[143,1,40]},{"1077473":[169]},{"1077475":[143,1,40]},{"1077479":[169]},{"1077481":[143,1,40]},{"1077485":[169]},{"1077487":[143,1,40]},{"1077491":[169]},{"1077493":[143,1,40]},{"1077497":[169]},{"1077499":[143,1,40]},{"1077503":[169]},{"1077505":[143,1,40]},{"1077509":[169,1,143,1,40]},{"1077515":[169]},{"1077517":[143,1,40]},{"1077521":[169,1,143,1,40]},{"1077527":[169]},{"1077529":[143,1,40]},{"1077533":[169]},{"1077535":[143,1,40]},{"1077539":[169,10,143,1,40]},{"1077545":[169,13,143,1,40]},{"1077551":[107,72,218,162]},{"1077556":[175]},{"1077558":[40]},{"1077560":[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]},{"1077587":[175]},{"1077589":[40]},{"1077591":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077605":[232,128,235,56,175]},{"1077611":[40]},{"1077613":[72,175]},{"1077616":[40]},{"1077618":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077636":[175]},{"1077638":[40]},{"1077640":[72,175]},{"1077643":[40]},{"1077645":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077665":[40]},{"1077667":[72,175]},{"1077670":[40]},{"1077672":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077692":[40]},{"1077694":[72,175]},{"1077697":[40]},{"1077699":[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]},{"1077784":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077802":[133]},{"1077804":[165,3,41,255]},{"1077809":[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,99,242,160,132,2,100,3,24,101]},{"1077851":[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]},{"1077906":[175]},{"1077908":[40]},{"1077910":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077924":[232,128,235,56,175]},{"1077930":[40]},{"1077932":[72,175]},{"1077935":[40]},{"1077937":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077955":[175]},{"1077957":[40]},{"1077959":[72,175]},{"1077962":[40]},{"1077964":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077984":[40]},{"1077986":[72,175]},{"1077989":[40]},{"1077991":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078011":[40]},{"1078013":[72,175]},{"1078016":[40]},{"1078018":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078038":[40]},{"1078040":[133,4,175]},{"1078044":[40]},{"1078046":[72,175]},{"1078049":[40]},{"1078051":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078071":[40]},{"1078073":[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]},{"1078142":[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,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]},{"1078232":[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]},{"1078266":[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]},{"1078365":[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]},{"1078396":[201,2]},{"1078399":[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]},{"1078431":[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,138,246,160,144,10,208,8,175,140,80,127,207,136,246,160,144,114,175,145,129,48,41,255]},{"1078487":[208,24,169,2]},{"1078492":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078516":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078529":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078543":[143,142,80,127,169,1]},{"1078550":[143,126,80,127,128,54,201,2]},{"1078559":[208,24,169,2]},{"1078564":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,186,218,160,194,48,96,175,146,129,48,41,255]},{"1078601":[240,7,169]},{"1078606":[143,126,80,127,175,142,80,127,207,126,246,160,144,10,208,8,175,140,80,127,207,124,246,160,144,53,175,128,80,127,26,201,10]},{"1078640":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078654":[143,128,80,127,175,140,80,127,56,239,124,246,160,143,140,80,127,175,142,80,127,239,126,246,160,143,142,80,127,128,181,175,142,80,127,207,130,246,160,144,10,208,8,175,140,80,127,207,128,246,160,144,53,175,132,80,127,26,201,10]},{"1078715":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078729":[143,132,80,127,175,140,80,127,56,239,128,246,160,143,140,80,127,175,142,80,127,239,130,246,160,143,142,80,127,128,181,175,142,80,127,207,134,246,160,144,10,208,8,175,140,80,127,207,132,246,160,144,53,175,136,80,127,26,201,10]},{"1078790":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078804":[143,136,80,127,175,140,80,127,56,239,132,246,160,143,140,80,127,175,142,80,127,239,134,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]},{"1078912":[16,14]},{"1078916":[60]},{"1078920":[255,255,255,127,175,204,80,127,41,255]},{"1078931":[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]},{"1079002":[240,93,175,145,129,48,41,255]},{"1079011":[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]},{"1079104":[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]},{"1079179":[208,3,32,90,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079209":[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]},{"1079243":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079327":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,157,223,160,34,58,135,1,194,16,166,160,191,27,251,160,226,16,34,156,135]},{"1079437":[159,248,160,160,248,160,45,249,160,186,249,160,71,250,160,177,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079473":[32,126,232,232,159]},{"1079479":[32,126,232,232,159]},{"1079485":[32,126,232,232,159]},{"1079491":[32,126,232,232,162,220,25,159]},{"1079500":[32,126,232,232,169,202,12,159]},{"1079509":[32,126,232,232,169,203,12,159]},{"1079518":[32,126,232,232,169,208,8,159]},{"1079527":[32,126,232,232,162,92,26,159]},{"1079536":[32,126,232,232,169,218,12,159]},{"1079545":[32,126,232,232,169,219,12,159]},{"1079554":[32,126,232,232,169,208,8,159]},{"1079563":[32,126,232,232,162,220,26,159]},{"1079572":[32,126,232,232,159]},{"1079578":[32,126,232,232,159]},{"1079584":[32,126,232,232,159]},{"1079590":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079614":[32,126,232,232,159]},{"1079620":[32,126,232,232,159]},{"1079626":[32,126,232,232,159]},{"1079632":[32,126,232,232,162,156,25,159]},{"1079641":[32,126,232,232,169,202,12,159]},{"1079650":[32,126,232,232,169,203,12,159]},{"1079659":[32,126,232,232,169,208,8,159]},{"1079668":[32,126,232,232,162,28,26,159]},{"1079677":[32,126,232,232,169,218,12,159]},{"1079686":[32,126,232,232,169,219,12,159]},{"1079695":[32,126,232,232,169,208,8,159]},{"1079704":[32,126,232,232,162,156,26,159]},{"1079713":[32,126,232,232,159]},{"1079719":[32,126,232,232,159]},{"1079725":[32,126,232,232,159]},{"1079731":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079755":[32,126,232,232,159]},{"1079761":[32,126,232,232,159]},{"1079767":[32,126,232,232,159]},{"1079773":[32,126,232,232,162,220,9,159]},{"1079782":[32,126,232,232,169,202,12,159]},{"1079791":[32,126,232,232,169,203,12,159]},{"1079800":[32,126,232,232,169,208,8,159]},{"1079809":[32,126,232,232,162,92,10,159]},{"1079818":[32,126,232,232,169,218,12,159]},{"1079827":[32,126,232,232,169,219,12,159]},{"1079836":[32,126,232,232,169,208,8,159]},{"1079845":[32,126,232,232,162,220,10,159]},{"1079854":[32,126,232,232,159]},{"1079860":[32,126,232,232,159]},{"1079866":[32,126,232,232,159]},{"1079872":[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]},{"1080105":[1]},{"1080187":[5]},{"1080189":[4]},{"1080217":[2]},{"1080313":[3]},{"1080411":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080428":[134,1,133,2,32,91,252,176,4,92,83,230]},{"1080441":[169,49,133,2,194,32,169]},{"1080449":[192,133]},{"1080452":[162,128,167]},{"1080456":[141,24,33,230]},{"1080461":[230]},{"1080463":[167]},{"1080465":[141,24,33,230]},{"1080470":[230]},{"1080472":[167]},{"1080474":[141,24,33,230]},{"1080479":[230]},{"1080481":[167]},{"1080483":[141,24,33,230]},{"1080488":[230]},{"1080490":[167]},{"1080492":[141,24,33,230]},{"1080497":[230]},{"1080499":[167]},{"1080501":[141,24,33,230]},{"1080506":[230]},{"1080508":[167]},{"1080510":[141,24,33,230]},{"1080515":[230]},{"1080517":[167]},{"1080519":[141,24,33,230]},{"1080524":[230]},{"1080526":[202,208,181,226,32,92,81,230]},{"1080535":[226,48,175,248,194,126,168,32,91,252,194,48,176,10,162]},{"1080552":[160,64]},{"1080555":[92,104,223]},{"1080559":[162]},{"1080561":[192,160]},{"1080565":[169]},{"1080567":[8,139,84,127,177,171,162]},{"1080575":[8,169]},{"1080578":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,237,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,11,168,160,40,175,67,244,126,41,255]},{"1081469":[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,85,151,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]},{"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,41,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,58,235,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,70,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,249,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,249,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,249,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,249,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,47,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,47,178,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194114":[83,127,201,3,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,181,185,164,226,48,169]},{"1194152":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194210":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194268":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,64,185,34,231,244,30,32,128,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,96,133,8,169,185,105]},{"1194325":[133,9,34,117,223,5,34,92,220,6,96]},{"1194338":[247,255,198]},{"1194343":[2]},{"1194348":[200]},{"1194351":[2]},{"1194354":[248,255,198]},{"1194359":[2]},{"1194364":[202,64]},{"1194367":[2,175,103,129,48,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,186,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194425":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194451":[98,41,110,41,107,41,105,41,127]},{"1194461":[111,41,97,41,106,41,112,41,127]},{"1194471":[112,41,107,41,127]},{"1194477":[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]},{"1194524":[33,218,162,128,142]},{"1194530":[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]},{"1194558":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194575":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194666":[208,33,8,194,48,162]},{"1194674":[224,64]},{"1194677":[176,11,169,127]},{"1194682":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194705":[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]},{"1194752":[240,7,224,2,240,3,130,137]},{"1194761":[130,132]},{"1194764":[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]},{"1194910":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194927":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194943":[224,28]},{"1194946":[176,12,191,193,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194963":[175,211,244,126,41,255]},{"1194970":[58,201,64]},{"1194974":[176,63,10,10,10,10,10,170,192,60]},{"1194985":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195008":[176,11,169,127]},{"1195013":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,174,184,160,122,218,90,8,194,48,162]},{"1195169":[224,16]},{"1195172":[176,12,191,221,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195189":[175,152,192,126,41,255]},{"1195196":[58,201,64]},{"1195200":[176,63,10,10,10,10,10,170,192,48]},{"1195211":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195234":[176,11,169,127]},{"1195239":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,148,224,160,234]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,155,199,160]},{"21847":[34,115,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,8,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,155,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[143,163,160]},{"30994":[17,164,160]},{"31001":[143,163,160]},{"31011":[17,164,160]},{"31046":[61,222,160]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[36,222,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,56,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,193,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,40,188,164]},{"60790":[64,223,160]},{"61077":[61,181,160]},{"61133":[34,141,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,255,237,160]},{"65607":[11,237,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,120,194,160,234]},{"65894":[34,166,194,160]},{"66284":[34,201,194,160]},{"66292":[92,27,248,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,1,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,209,223,160,234,234]},{"67934":[168,248,160]},{"68495":[34,23,155,160,208,6,234]},{"68584":[172,248,160]},{"69776":[34,23,155,160,208,4,234]},{"70410":[172,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,20,248,160,234]},{"72216":[246,221,160]},{"72241":[34,166,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[2,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,182,194,160]},{"74833":[34,213,130,164]},{"76423":[34,4,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]},{"78172":[34,108,223,160,34,219,153,160,234,234]},{"79603":[34,42,222,160]},{"79767":[34,224,223,160]},{"82676":[172,248,160]},{"87892":[34,241,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,62,239,160]},{"90651":[34,98,236,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[114,188,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[128,181,160]},{"173058":[128,181,160]},{"173307":[128,181,160]},{"173320":[128,181,160]},{"183384":[34,158,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[140,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,141,235,160,128,13]},{"189655":[34,45,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[57,188,164]},{"191439":[34,74,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,94,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,114,195,160,234]},{"192121":[202,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,43,179,160]},{"193157":[34,36,179,160]},{"193440":[34,17,220,160]},{"193472":[34,235,160]},{"193546":[34,17,220,160]},{"193578":[234,234,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[242,194,160]},{"194141":[34,226,195,160,234,234,234,234,234]},{"194177":[34,72,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,141,235,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,72,199,160]},{"195589":[122,176,160]},{"195710":[34,150,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[83,176,160]},{"195909":[93,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[201,192,160]},{"198721":[34,243,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,41,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[20,176,160]},{"199993":[34,103,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,206,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,69,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[76,188,164]},{"212610":[95,188,164]},{"213139":[34,185,164]},{"213169":[147,133,160]},{"214205":[34,201,180,160]},{"214972":[91,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,141,222,160]},{"217579":[34,107,193,160]},{"224597":[34,17,219,160]},{"224693":[34,37,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,51,220,160,234]},{"226304":[34,102,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,226,237,160]},{"229634":[34,124,186,164]},{"230816":[73,179,160]},{"230955":[73,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,235,237,160,234]},{"233987":[147,221,160]},{"234731":[34,240,221,160]},{"234747":[34,246,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[233,204,160]},{"236047":[75,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[26,198,160]},{"238498":[34,163,196,160,128,3]},{"238562":[34,230,198,160,240,4,234]},{"238751":[34,167,220,160]},{"238964":[34,167,220,160]},{"239190":[34,167,220,160]},{"239964":[134,223,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,135,219,160]},{"241165":[34,135,219,160]},{"241175":[34,235,128,164]},{"241294":[34,135,219,160]},{"241304":[34,235,128,164]},{"241814":[34,135,219,160,24,125,139,176]},{"241869":[135,235,160]},{"241877":[34,135,219,160,24,125,139,176]},{"242942":[34,251,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,5,223,160,234]},{"243067":[234,234,34,214,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,165,219,160,234]},{"250478":[34,219,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,232,243,160,234]},{"273608":[34,197,182,160,76,230,172]},{"275716":[34,169,182,160,234]},{"276202":[34,230,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,143,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,69,238,160,234,234]},{"279880":[92,17,189,164]},{"280037":[34,27,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[135,235,160]},{"280106":[92,212,225,160,234]},{"280265":[201,210,160]},{"280287":[201,209,160]},{"280314":[201,210,160]},{"280335":[34,229,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,101,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,135,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,234,200,160,234]},{"296453":[92,133,188,164,234]},{"296466":[201,211]},{"296471":[202,211]},{"296480":[201,213]},{"296488":[201,211]},{"296493":[202,211]},{"296502":[201,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[201,214]},{"296810":[217,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[249,206]},{"297052":[233,207]},{"297087":[34,69,133,160,234,176]},{"297144":[201,209]},{"297200":[249,206]},{"297225":[233,207]},{"297263":[202,215]},{"297292":[34,53,195,160]},{"297309":[209,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,35,189,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]},{"324619":[34,11,153,160]},{"324675":[34,239,222,160]},{"324780":[8,8,16]},{"324896":[34,83,236,160,34,215,222,160,234,234,234,234,234,234]},{"324996":[34,182,194,160]},{"325098":[169,2,0,234]},{"325131":[34,131,236,160]},{"325203":[34,163,175,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":[27,238,160]},{"342245":[34,59,132,160,34,88,222,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[36,222,160]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[216,237,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,47,236,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[28,244,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,167,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,65,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,95,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,44,244,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,56,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,139,155,160]},{"450360":[34,1,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,109,184,160,234]},{"450492":[34,107,155,160,234,234,234]},{"450861":[34,131,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,254,155,160,234]},{"452559":[34,236,155,160,234]},{"452581":[34,16,156,160,234]},{"452634":[96]},{"453064":[34,43,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,131,193,160,234,234,76,230,236]},{"453867":[34,34,156,160,234]},{"453892":[34,52,156,160]},{"454092":[34,157,155,160,234,234,234,234,234]},{"454233":[34,157,155,160,234,234,234,234,234]},{"454256":[34,235,194,160,234]},{"454282":[34,157,155,160,234,234,234,234,234]},{"454459":[34,157,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,242,216,160]},{"457513":[34,24,217,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,73,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,67,236,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,25,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[19,234,160]},{"487403":[169,2,0,234]},{"487935":[34,65,226,160]},{"488156":[34,65,226,160]},{"488213":[34,65,226,160]},{"488242":[34,65,226,160]},{"488309":[34,65,226,160]},{"488340":[34,65,226,160]},{"488721":[34,65,226,160]},{"489560":[34,65,226,160]},{"490022":[34,65,226,160]},{"490060":[34,65,226,160]},{"490164":[34,65,226,160]},{"490184":[34,65,226,160]},{"490209":[34,65,226,160]},{"490257":[34,65,226,160]},{"490438":[34,81,226,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]},{"882113":[34,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,63,240,160]},{"900244":[34,147,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,138,240,160,234]},{"900437":[92,36,239,160,234]},{"900447":[34,227,247,160,234,234,234]},{"900458":[34,42,222,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,204,240,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,121,234,160,96]},{"954852":[220,181,160]},{"955117":[88,234,160]},{"955529":[216,181,160]},{"962925":[181,181,160]},{"962951":[181,181,160]},{"963167":[181,181,160]},{"963214":[181,181,160]},{"965041":[181,181,160]},{"965069":[181,181,160]},{"965214":[181,181,160]},{"965298":[181,181,160]},{"965316":[181,181,160]},{"967797":[34,29,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,55,180,160]},{"972824":[132,181,160]},{"972834":[132,181,160]},{"972851":[132,181,160]},{"974665":[92,182,197,160,234]},{"974706":[243,197,160]},{"974722":[216,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,199,197,160,234,234]},{"975332":[34,165,197,160,234,234]},{"975401":[255]},{"976357":[177,181,160]},{"976423":[177,181,160]},{"978658":[161,181,160]},{"979078":[34,37,220,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":[37,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,129,196,160]},{"983466":[161,181,160]},{"983651":[161,181,160]},{"988539":[173,181,160]},{"988657":[173,181,160]},{"988668":[173,181,160]},{"988874":[173,181,160]},{"988902":[173,181,160]},{"989142":[173,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[165,181,160]},{"999246":[169,181,160]},{"999265":[169,181,160]},{"999359":[169,181,160]},{"999574":[169,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,123,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[136,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[136,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,125,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,155,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,174,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,194,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,145,179,160,122,250,107,218,90,34,201,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,67,147,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,67,147,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,67,147,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,67,147,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,203,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,131,217,160,76,49,145,201,251,208,7,34,63,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,203,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,131,217,160,76,114,147,201,251,208,7,34,63,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,203,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,131,217,160,128,8,201,99,208,4,34,63,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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,175,90,128,48,41,255]},{"1055518":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055531":[107,175,122,243,126,47,165,160,2,41,255]},{"1055543":[107,194,32,175,19,130,48,41,255]},{"1055553":[240,5,169,8]},{"1055558":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055571":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055593":[2,107,175,19,130,48,41,255]},{"1055602":[240,5,169,8]},{"1055607":[128,7,175,72,128,48,41,255]},{"1055616":[24,101,234,48,3,169]},{"1055624":[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]},{"1055651":[201,255]},{"1055654":[208,1,107,175,22,244,126,41,32]},{"1055664":[240,4,169]},{"1055669":[107,173,12,4,41,255]},{"1055676":[201,255]},{"1055679":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055703":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,64,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055735":[107,169,136,21,133]},{"1055741":[107,175,69,128,48,208,6,169,16,22,133]},{"1055753":[107,169,144,21,133]},{"1055759":[107,175,69,128,48,208,6,169,24,22,133]},{"1055771":[107,169,152,21,133]},{"1055777":[107,175,69,128,48,208,6,169,32,22,133]},{"1055789":[107,169,160,21,133]},{"1055795":[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]},{"1055887":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055901":[144,240,175,22,244,126,41,32]},{"1055910":[240,3,130,200,1,175,69,128,48,41,1]},{"1055922":[208,3,130,231]},{"1055927":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055949":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055966":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055983":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056000":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056017":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056034":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056051":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056068":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056085":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056102":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056119":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056136":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056153":[141,165,22,194,32,175,69,128,48,41,2]},{"1056165":[208,3,130,201]},{"1056170":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056183":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056198":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056213":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056228":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056243":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056258":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056273":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056288":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056303":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056318":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056333":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056348":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056363":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056378":[208,3,130,170,1,175,69,128,48,41,4]},{"1056390":[208,3,130,201]},{"1056395":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056408":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056423":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056438":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056453":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056468":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056483":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056498":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056513":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056528":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056543":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056558":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056573":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056588":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056603":[208,3,130,201]},{"1056608":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056621":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056636":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056651":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056666":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056681":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056696":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056711":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056726":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056741":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056756":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056771":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056786":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056801":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056820":[191,115,161,160,157,234,18,191,135,161,160,157,42,19,191,155,161,160,157,106,19,191,175,161,160,157,170,19,191,195,161,160,157,234,19,191,215,161,160,157,42,20,191,235,161,160,157,106,20,191,255,161,160,157,170,20,191,19,162,160,157,234,20,232,232,224,20]},{"1056888":[144,186,175,116,243,126,41,4]},{"1056897":[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]},{"1056930":[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]},{"1056963":[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]},{"1056996":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057017":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057038":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057059":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057080":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057101":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057122":[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]},{"1057745":[143,114,243,126,173,10,2,208,14,169]},{"1057756":[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]},{"1057790":[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]},{"1057871":[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]},{"1057914":[165,12,201,232,3,144,3,130,24]},{"1057924":[201,100]},{"1057927":[144,3,130,97]},{"1057932":[201,10]},{"1057935":[144,3,130,170]},{"1057940":[201,1]},{"1057943":[144,3,130,243]},{"1057948":[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,33,166,133,14,165,14,159]},{"1057985":[201,126,232,232,169,56]},{"1057992":[159]},{"1057994":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058008":[201,126,232,232,169]},{"1058015":[159]},{"1058017":[201,126,232,232,165,14,24,105,8]},{"1058027":[133,14,100,10,165,12,201,100]},{"1058036":[144,8,56,233,100]},{"1058042":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,33,166,133,14,165,14,159]},{"1058066":[201,126,232,232,169,56]},{"1058073":[159]},{"1058075":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058089":[201,126,232,232,169]},{"1058096":[159]},{"1058098":[201,126,232,232,165,14,24,105,8]},{"1058108":[133,14,100,10,165,12,201,10]},{"1058117":[144,8,56,233,10]},{"1058123":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,33,166,133,14,165,14,159]},{"1058147":[201,126,232,232,169,56]},{"1058154":[159]},{"1058156":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058170":[201,126,232,232,169]},{"1058177":[159]},{"1058179":[201,126,232,232,165,14,24,105,8]},{"1058189":[133,14,100,10,165,12,201,1]},{"1058198":[144,8,56,233,1]},{"1058204":[230,10,128,243,133,12,192,255,208,10,160]},{"1058216":[165,14,24,121,33,166,133,14,165,14,159]},{"1058228":[201,126,232,232,169,56]},{"1058235":[159]},{"1058237":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058251":[201,126,232,232,169]},{"1058258":[159]},{"1058260":[201,126,232,232,165,14,24,105,8]},{"1058270":[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]},{"1058341":[252,255,248,255,218,90,8,194,48,162]},{"1058353":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058368":[208,13,175,153,80,127,41,255]},{"1058377":[223,3,200,48,208,44,226,32,191]},{"1058387":[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]},{"1058429":[200,48,41,255]},{"1058434":[201,255]},{"1058437":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058460":[226,32,162]},{"1058465":[160]},{"1058468":[152,207,96,80,127,144,3,130,172]},{"1058478":[191,1,201,48,201,255,208,3,130,161]},{"1058489":[191]},{"1058491":[201,48,207,80,80,127,240,3,130,137]},{"1058502":[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]},{"1058539":[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,213,167,160,170,32,244,167,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]},{"1058670":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058684":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,47,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,48,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,49,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]},{"1058777":[128]},{"1058782":[1]},{"1058785":[169,11,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,49,145,160,34,45,213]},{"1058824":[194,16,96,32,15,168,107,173]},{"1058833":[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]},{"1058863":[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]},{"1058900":[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]},{"1059041":[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]},{"1059206":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059227":[175,81,80,127,201,255,208,3,76,136,169,139,75,171,34,231,244,30,32,214,169,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]},{"1059278":[32,243,173,32,243,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059301":[201,2,208,3,130,227]},{"1059308":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059323":[165,26,41,16,240,12,189,106,170,159]},{"1059334":[201,126,232,224,16,144,244,189,122,170,159]},{"1059346":[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]},{"1059405":[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]},{"1059436":[248,255]},{"1059441":[2]},{"1059446":[16]},{"1059449":[2]},{"1059452":[248,255]},{"1059457":[2]},{"1059462":[16,64]},{"1059465":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,191,133,8,169,170,133,9,128,8,169,199,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059523":[70,10]},{"1059526":[2]},{"1059531":[70,74]},{"1059534":[2,218,162]},{"1059538":[165,26,41,64,240,12,189,65,171,159]},{"1059549":[201,126,232,224,16,144,244,189,81,171,159]},{"1059561":[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]},{"1059620":[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]},{"1059651":[248,255,132]},{"1059656":[2]},{"1059661":[16]},{"1059664":[2]},{"1059667":[248,255,132]},{"1059672":[2]},{"1059677":[16,64]},{"1059680":[2,218,162]},{"1059684":[165,26,41,64,240,12,189,211,171,159]},{"1059695":[201,126,232,224,16,144,244,189,227,171,159]},{"1059707":[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]},{"1059766":[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]},{"1059797":[248,255,142]},{"1059802":[2]},{"1059807":[16]},{"1059810":[2]},{"1059813":[248,255,142]},{"1059818":[2]},{"1059823":[16,64]},{"1059826":[2,218,90,8,160]},{"1059832":[90,152,74,74,168,175,95,80,127,57,47,173,240,3,122,128,48,122,173,238]},{"1059853":[221,32,15,208,39,32,198,173,32,50,173,34,230,131,6,144,3,32,230,173,32,156,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,72,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]},{"1059981":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059997":[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,47,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,47,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]},{"1060150":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060171":[58,10,168,185,232,174,133]},{"1060179":[122,104,24,113]},{"1060184":[24,105,2]},{"1060188":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060201":[13,194,32,90,200,200,24,113]},{"1060210":[122,72,175,81,80,127,41,128]},{"1060219":[240,7,104,24,105,4]},{"1060226":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060249":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060266":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060279":[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]},{"1060307":[165,35,105]},{"1060311":[133,8,165,32,105,8,133,1,165,33,105]},{"1060323":[133,9,96,218,34]},{"1060329":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060351":[160]},{"1060353":[175,81,80,127,41,3,201,3,208,5,32,36,174,128,4,201,2,208,5,32,36,174,128,4,201,1,208,3,32,36,174,122,250,171,96,175,95,80,127,57,47,173,240,3,130,178]},{"1060400":[90,175,81,80,127,41,3,58,10,168,194,32,185,232,174,133]},{"1060417":[163,1,10,10,168,177]},{"1060424":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060437":[208,8,177]},{"1060441":[143,39,192,126,128,10,177]},{"1060449":[24,105,4]},{"1060453":[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,6,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,114,147,160,143,42,192,126,169]},{"1060520":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060546":[143,44,192,126,32,219,175,169,2,218,72,175,97,80,127,170,104,32,146,175,250,175,81,80,127,41,128,208,3,32,9,175,200,232,232,232,232,96,238,174,242,174,250,174,8]},{"1060592":[40]},{"1060594":[240,255,40]},{"1060598":[32]},{"1060600":[40]},{"1060602":[216,255,40]},{"1060606":[8]},{"1060608":[40]},{"1060610":[56]},{"1060612":[40]},{"1060614":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060633":[58,10,168,185,232,174,133]},{"1060641":[185,128,175,133,2,122,90,152,10,10,168,177]},{"1060654":[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,115,164,226,32,133,6,100,7,72,169]},{"1060693":[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,134,175,136,175,140,175]},{"1060743":[255]},{"1060745":[128,128,255]},{"1060749":[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]},{"1060830":[194,32,191,37,192,126,24,105,4]},{"1060840":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060856":[159,47,192,126,191,41,192,126,24,105,16]},{"1060868":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060910":[72,165,2,72,169,16,128,133]},{"1060919":[169,48]},{"1060922":[133,2,169,2]},{"1060927":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060974":[143]},{"1060976":[80,127,32,189,176,34,79,150,160,107,72,175]},{"1060989":[80,127,240,6,34,108,176,160,128,13,32,189,176,34,12,151,160,169]},{"1061008":[143,152,192,126,104,107,32,189,176,201,36,208,24,90,160,36,34,174,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061093":[143,152,192,126,169,36,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]},{"1061368":[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]},{"1061435":[191,4,179,160,197,4,144,3,232,128,245,191,5,179,160,133,6,100,7,194,32,138,10,10,170,191,6,179,160,141,232,80,191,8,179,160,141,234,80,173]},{"1061476":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061494":[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,240,176,173,236,80,10,10,170,189]},{"1061531":[81,56,229,8,157]},{"1061537":[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]},{"1061569":[81,141,228,80,189,2,81,141,230,80,32,240,176,173]},{"1061584":[81,56,229,8,141]},{"1061590":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,236,176,160,141,232,80,173,234,80,239,238,176,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,34,49,145,160,72,165,138,201,3,240,6,34,23,179,160,128,4,34,10,179,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,50,179,160,169,235,143]},{"1061736":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061760":[13,165,33,153,32,13,169]},{"1061768":[153,32,15,169,127,153,112,15,107,72,8,34,187,179,160,144,31,156,18,1,156,239,3,169]},{"1061793":[133,93,194,32,165,138,201,48]},{"1061802":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061826":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061839":[128,16,201,48]},{"1061844":[208,11,165,34,201]},{"1061850":[2,144,4,56,130,1]},{"1061857":[24,226,32,107,191,201,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061878":[226,32,34,16,247,8,169,52,145,144,200,191,201,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061913":[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]},{"1061975":[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,195,180,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]},{"1062122":[13,173,219,15,233]},{"1062128":[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]},{"1062167":[13,173,219,15,233]},{"1062173":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062198":[254,127,208,245,169,4,107,34,28,223,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,46,223,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,46,223,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062271":[107,169]},{"1062274":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,244,181,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,244,181,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,244,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,244,181,160,107,218,8,194,32,41,127]},{"1062395":[10,170,191]},{"1062399":[82,127,26,41,255,3,159]},{"1062407":[82,127,170,10,191]},{"1062413":[128,175,40,250,107,218,8,194,48,162]},{"1062425":[191,73,182,160,159]},{"1062431":[82,127,232,232,191,73,182,160,159]},{"1062441":[82,127,232,232,191,73,182,160,159]},{"1062451":[82,127,232,232,191,73,182,160,159]},{"1062461":[82,127,232,232,224,127]},{"1062468":[144,211,40,250,107]},{"1062475":[64]},{"1062477":[128]},{"1062479":[192]},{"1062482":[1,64,1,128,1,192,1]},{"1062490":[2,64,2,128,2,192,2]},{"1062498":[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,105,182,160,175,35,128,48,208,4,34,137,182,160,104,107,72,169]},{"1062600":[143,65,80,127,175,34,128,48,201,1,208,4,34,105,182,160,175,35,128,48,201,1,208,4,34,137,182,160,104,107,72,175,34,128,48,201,2,208,4,34,105,182,160,175,35,128,48,201,2,208,4,34,137,182,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]},{"1062766":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062783":[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]},{"1062854":[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]},{"1062890":[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,61,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]},{"1063015":[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]},{"1063041":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063061":[2,156,5,2,169]},{"1063067":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,159,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063098":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063115":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063132":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063149":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063166":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063183":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063200":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063217":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063240":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063257":[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]},{"1063290":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063313":[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]},{"1063345":[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]},{"1063403":[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]},{"1063429":[192,59,208,3,130,96]},{"1063436":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063461":[201,15,1,208,3,130,59]},{"1063469":[201,16,1,208,3,130,51]},{"1063477":[201,28,1,208,3,130,43]},{"1063485":[201,31,1,208,3,130,35]},{"1063493":[201,255]},{"1063496":[208,3,130,27]},{"1063501":[201,20,1,208,3,130,19]},{"1063509":[201,21,1,208,3,130,11]},{"1063517":[201,22,1,208,3,130,3]},{"1063525":[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]},{"1063557":[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]},{"1063710":[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]},{"1063748":[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]},{"1063786":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063804":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063822":[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]},{"1063858":[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]},{"1063896":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063914":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,139,192,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]},{"1064018":[208,9,32,37,191,32,86,191,130,64,2,192,1,208,6,32,37,191,130,54,2,192,2,208,6,32,37,191,130,44,2,192,3,208,6,32,37,191,130,34,2,192,4,208,6,32,86,191,130,24,2,192,5,208,6,32,86,191,130,14,2,192,6,208,6,32,86,191,130,4,2,192,7,144,10,192,14,176,6,32,135,191,130,246,1,192,20,208,9,32,227,190,32,135,191,130,233,1,192,15,144,10,192,23,176,6,32,135,191,130,219,1,192,23,208,6,32,235,191,130,209,1,192,24,144,10,192,26,176,6,32,135,191,130,195,1,192,26,208,9,32,4,191,32,135,191,130,182,1,192,29,208,6,32,135,191,130,172,1,192,27,144,10,192,32,176,6,32,147,191,130,158,1,192,32,208,6,32,19,192,130,148,1,192,33,208,6,32,135,191,130,138,1,192,34,144,10,192,36,176,6,32,47,192,130,124,1,192,36,208,6,32,63,192,130,114,1,192,37,208,6,32,95,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,167,192,130,87,1,192,40,208,6,32,167,192,130,77,1,192,41,208,6,32,135,191,130,67,1,192,42,144,10,192,46,176,6,32,135,191,130,53,1,192,49,208,6,32,167,192,130,43,1,192,50,208,6,32,127,192,130,33,1,192,51,208,6,32,189,192,130,23,1,192,55,144,10,192,58,176,6,32,175,191,130,9,1,192,58,144,10,192,60,176,6,32,116,191,130,251]},{"1064354":[192,60,208,6,32,135,191,130,241]},{"1064364":[192,61,208,6,32,135,191,130,231]},{"1064374":[192,62,144,10,192,64,176,6,32,7,192,130,217]},{"1064388":[192,72,208,6,32,135,191,130,207]},{"1064398":[192,73,208,6,32,37,191,130,197]},{"1064408":[192,74,208,9,32,227,190,32,135,191,130,184]},{"1064421":[192,75,208,9,32,194,190,32,147,191,130,171]},{"1064434":[192,76,208,9,32,203,191,32,167,192,130,158]},{"1064447":[192,77,144,10,192,80,176,6,32,203,191,130,144]},{"1064461":[192,80,208,6,32,37,191,130,134]},{"1064471":[192,81,144,10,192,85,176,6,32,203,191,130,120]},{"1064485":[192,88,208,6,32,116,191,130,110]},{"1064495":[192,94,208,6,32,37,191,130,100]},{"1064505":[192,95,208,6,32,86,191,130,90]},{"1064515":[192,96,208,6,32,47,192,130,80]},{"1064525":[192,97,208,6,32,147,191,130,70]},{"1064535":[192,100,144,10,192,102,176,6,32,116,191,130,56]},{"1064549":[192,112,144,10,192,128,176,6,32,189,192,130,42]},{"1064563":[192,128,144,10,192,144,176,6,32,95,192,130,28]},{"1064577":[192,144,144,10,192,160,176,6,32,127,192,130,14]},{"1064591":[192,160,144,10,192,176,176,6,32,63,192,130]},{"1064605":[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,161,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064757":[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,63,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,135,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,205,192,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,64,238,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]},{"1065353":[201,2]},{"1065356":[208,14,175,140,243,126,41,192]},{"1065365":[201,192]},{"1065368":[240,79,128,64,201,1]},{"1065375":[208,14,175,142,243,126,41,192]},{"1065384":[201,192]},{"1065387":[240,60,128,45,201,5]},{"1065394":[208,14,175,140,243,126,41,48]},{"1065403":[201,48]},{"1065406":[240,41,128,26,201,13]},{"1065413":[208,16,175,140,243,126,137,4]},{"1065422":[240,12,41,3]},{"1065427":[208,20,128,5,201,16]},{"1065434":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065447":[208,5,169,79,61,128,6,32,248,193,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]},{"1065494":[41,255,239,153,4]},{"1065500":[185,62]},{"1065503":[41,255,239,153,62]},{"1065509":[185,68]},{"1065512":[41,255,239,153,68]},{"1065518":[185,128]},{"1065521":[41,255,239,153,128]},{"1065527":[185,130]},{"1065530":[41,255,239,153,130]},{"1065536":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065557":[41,255,239,153,132]},{"1065563":[185,126]},{"1065566":[41,255,239,153,126]},{"1065572":[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]},{"1065610":[201,144]},{"1065613":[208,3,169,127]},{"1065618":[9]},{"1065620":[36,143,100,199,126,165,5,41,255]},{"1065630":[9]},{"1065632":[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,181,240,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065744":[72,165,2,72,169,16,128,133]},{"1065753":[169,48]},{"1065756":[133,2,169,4]},{"1065761":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065807":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065828":[143]},{"1065830":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065844":[157,192,13,72,169,1,143]},{"1065852":[80,127,165,93,201,20,240,68,169]},{"1065862":[143]},{"1065864":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065892":[72,165,2,72,169,16,128,133]},{"1065901":[169,48]},{"1065904":[133,2,169,3]},{"1065909":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065934":[80,127,240,6,34,119,195,160,128,7,189,128,14,34,187,150,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]},{"1065977":[72,165,2,72,169,16,128,133]},{"1065986":[169,48]},{"1065989":[133,2,169,4]},{"1065994":[34,67,147,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,151,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]},{"1066052":[143,68,243,126,107,175,123,243,126,41,255]},{"1066064":[201,2]},{"1066067":[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]},{"1066100":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066115":[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]},{"1066151":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066165":[173,91,3,41,1,208,3,130,134]},{"1066175":[90,8,139,75,171,226,48,165,27,240,3,76,66,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066212":[129,48,143]},{"1066216":[254,127,34,93,246,29,162]},{"1066224":[165,47,201,4,240,1,232,191,70,197,160,153,80,13,169]},{"1066240":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,72,197,160,41,240,153,16,13,165,35,105]},{"1066274":[153,48,13,165,32,24,105,22,41,240,153]},{"1066286":[13,165,33,105]},{"1066291":[153,32,13,169]},{"1066296":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066313":[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]},{"1066344":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066365":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066435":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066466":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066560":[72,165,2,72,169,64,129,133]},{"1066569":[169,48]},{"1066572":[133,2,169,10]},{"1066577":[34,67,147,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066597":[254,127,34,93,246,29,162]},{"1066605":[165,47,201,4,240,1,232,191,202,198,160,153,80,13,169]},{"1066621":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,204,198,160,41,240,153,16,13,165,35,105]},{"1066655":[153,48,13,165,32,24,105,22,41,240,153]},{"1066667":[13,165,33,105]},{"1066672":[153,32,13,169]},{"1066677":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066701":[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]},{"1066780":[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]},{"1066807":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066846":[72,165,2,72,169,16,128,133]},{"1066855":[169,48]},{"1066858":[133,2,169,5]},{"1066863":[34,67,147,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]},{"1066917":[201,35,208,6,160,93,92,71,213]},{"1066927":[201,72,208,6,160,96,92,71,213]},{"1066937":[201,36,176,6,160,91,92,71,213]},{"1066947":[201,55,176,6,160,92,92,71,213]},{"1066957":[201,57,176,6,160,93,92,71,213]},{"1066967":[160,50,92,71,213]},{"1066973":[192,9,48]},{"1066977":[96]},{"1066979":[144]},{"1066981":[192]},{"1066984":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067008":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067026":[9,48,9,96,9,144,9,240,9]},{"1067037":[240]},{"1067039":[32,10,80,10,96,6]},{"1067046":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067068":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067084":[6,48,6]},{"1067088":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067104":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067125":[127,221,199,160,107,165]},{"1067132":[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]},{"1067163":[132,175,24,105]},{"1067168":[136,133]},{"1067171":[226,32,169,175,133,2,34,99,226,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,235,218,160,162,1,128,2,162]},{"1067229":[171,40,122,104,133,2,104,133,1,104,133]},{"1067241":[96,218,173,216,2,34,153,226,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067724":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,235,218,160,130,116,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,235,218,160,130,72,1,201,109,208,7,34,232,184,164,130,61,1,201,110,208,7,34,232,184,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067971":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067996":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068019":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068038":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068055":[56,233,8,170,169,1,224]},{"1068063":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068086":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068105":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068122":[56,233,8,170,169,1,224]},{"1068130":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068153":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068175":[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]},{"1068207":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068226":[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]},{"1068252":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,57,238,160,173,216,2,72,175,152,192,126,208,12,104,32,154,218,141,216,2,32,112,218,128,1,104,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,203,218,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]},{"1068415":[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]},{"1068528":[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]},{"1068568":[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]},{"1068598":[175,91,243,126,201]},{"1068604":[208,8,169,34,141,216,2,130,171]},{"1068614":[169,35,141,216,2,130,163]},{"1068622":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068640":[169,28,141,216,2,130,137]},{"1068648":[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]},{"1068680":[175,64,243,126,26,74,201]},{"1068688":[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,131,217,160,141,216,2,235,32,14,218,169,255,143,144,80,127,128,36,201,99,208,15,34,63,218,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]},{"1068785":[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]},{"1069040":[4,4,4,4,4,5]},{"1069052":[4]},{"1069054":[4]},{"1069057":[4]},{"1069069":[4]},{"1069075":[5]},{"1069085":[4,4,4]},{"1069099":[4,4]},{"1069102":[4]},{"1069106":[4]},{"1069113":[4]},{"1069122":[4]},{"1069193":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069273":[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]},{"1069322":[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]},{"1069361":[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]},{"1069518":[2,2]},{"1069526":[2,2,2,2,2,2]},{"1069533":[2]},{"1069535":[2,2]},{"1069538":[2,2,2,2,2,2,2,2,2,2,2]},{"1069550":[2,2,2,2,2]},{"1069556":[2,2,2,2,2,2,2,2,2]},{"1069568":[2,2,2,2,2,2,2,2,2,2,2]},{"1069581":[2]},{"1069583":[2,2,2]},{"1069587":[2,2,2,2,2,2]},{"1069594":[2,2,2,2,2,2,2,2]},{"1069603":[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]},{"1069689":[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]},{"1069875":[4,4,4]},{"1069881":[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]},{"1070794":[128]},{"1070796":[64]},{"1070798":[32]},{"1070800":[16]},{"1070802":[8]},{"1070804":[4]},{"1070806":[2]},{"1070808":[1,128]},{"1070811":[64]},{"1070813":[32]},{"1070815":[16]},{"1070817":[8]},{"1070819":[4]},{"1071050":[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,154,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,24,217,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,24,217,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]},{"1071504":[160,48,107,162]},{"1071509":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071522":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071536":[168,152,32,234,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071556":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071580":[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]},{"1071620":[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]},{"1071657":[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]},{"1071696":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071709":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071732":[191]},{"1071734":[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]},{"1071774":[191]},{"1071776":[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,162]},{"1071821":[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,96,100,17,100,176,92,224,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071884":[13,24,105,3,107,189,32,14,201,136,208,9,32,73,219,201,4,144,1,58,107,32,73,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071930":[200,49,74,74,74,74,107,40,191]},{"1071940":[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]},{"1071990":[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]},{"1072024":[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,20,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]},{"1072226":[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]},{"1072281":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072307":[165,27,240,121,194,32,165,160,201,14]},{"1072318":[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]},{"1072353":[201,126]},{"1072356":[208,33,165,34,41,255,1,201,104]},{"1072366":[144,60,201,136]},{"1072371":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072391":[201,222]},{"1072394":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072419":[144,7,201,154]},{"1072424":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,144,221,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,144,221,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,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]},{"1072634":[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]},{"1072694":[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,61,222,160,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,90,160,24,34,161,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072813":[208,11,40,90,160,24,34,161,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,192,155,160,107,72,175,67,244,126,208,4,34,201,192,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,61,222,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,61,222,160,104,34,168,160,2,107,58,16,8,169]},{"1073069":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1073083":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,61,222,169,1,143]},{"1073109":[80,127,156,70,6,156,66,6,76,61,222,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,201,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073321":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073352":[32,137,64,240,4,92,220,128]},{"1073361":[173]},{"1073363":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073388":[143,155,80,127,92,220,128]},{"1073396":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073415":[173,39,1,205,41,1,208,4,92,220,128]},{"1073427":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073457":[224,255,208,4,92,220,128]},{"1073465":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073481":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073497":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073514":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073527":[142,4,32,156,5,32,156,7,32,191]},{"1073538":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073551":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073587":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073600":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073656":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073669":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073719":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073737":[87,127,107,191]},{"1073742":[18,127,107,156,240,28,156,241,28,169]},{"1073753":[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]},{"1073785":[226,32,183]},{"1073789":[159]},{"1073791":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073810":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073834":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073852":[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]},{"1073878":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073896":[226,32,183]},{"1073900":[159]},{"1073902":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073921":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073941":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073959":[226,32,183]},{"1073963":[159]},{"1073965":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073984":[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]},{"1074015":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074033":[226,32,183]},{"1074037":[159]},{"1074039":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074058":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074078":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074096":[226,32,183]},{"1074100":[159]},{"1074102":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074121":[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]},{"1074150":[133]},{"1074152":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074170":[226,32,183]},{"1074174":[159]},{"1074176":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074195":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074215":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074233":[226,32,183]},{"1074237":[159]},{"1074239":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074258":[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]},{"1074289":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074307":[226,32,183]},{"1074311":[159]},{"1074313":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074332":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074352":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074370":[226,32,183]},{"1074374":[159]},{"1074376":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074395":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074416":[133]},{"1074418":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074436":[226,32,183]},{"1074440":[159]},{"1074442":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074461":[143,148,80,127,226,32,130,213]},{"1074470":[201,128,208,56,169,52,133]},{"1074478":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074496":[226,32,183]},{"1074500":[159]},{"1074502":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074521":[143,148,80,127,226,32,130,153]},{"1074530":[201,144,208,55,169,112,133]},{"1074538":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074556":[226,32,183]},{"1074560":[159]},{"1074562":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074581":[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]},{"1074608":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074626":[226,32,183]},{"1074630":[159]},{"1074632":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074651":[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]},{"1074730":[208,56,169,216,133]},{"1074736":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074754":[226,32,183]},{"1074758":[159]},{"1074760":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074779":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074796":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074814":[226,32,183]},{"1074818":[159]},{"1074820":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074839":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074856":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074874":[226,32,183]},{"1074878":[159]},{"1074880":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074899":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074916":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074934":[226,32,183]},{"1074938":[159]},{"1074940":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074959":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074976":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074994":[226,32,183]},{"1074998":[159]},{"1075000":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075019":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075036":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075054":[226,32,183]},{"1075058":[159]},{"1075060":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075079":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075096":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075114":[226,32,183]},{"1075118":[159]},{"1075120":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075139":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075156":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075174":[226,32,183]},{"1075178":[159]},{"1075180":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075199":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075216":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075234":[226,32,183]},{"1075238":[159]},{"1075240":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075259":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075276":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075294":[226,32,183]},{"1075298":[159]},{"1075300":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075319":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075336":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075354":[226,32,183]},{"1075358":[159]},{"1075360":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075379":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075396":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075414":[226,32,183]},{"1075418":[159]},{"1075420":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075439":[143,148,80,127,226,32,130,235]},{"1075448":[201,12,208,56,169,12,133]},{"1075456":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075474":[226,32,183]},{"1075478":[159]},{"1075480":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075499":[143,148,80,127,226,32,130,175]},{"1075508":[201,13,208,55,169,41,133]},{"1075516":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075534":[226,32,183]},{"1075538":[159]},{"1075540":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075559":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075575":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075593":[226,32,183]},{"1075597":[159]},{"1075599":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075618":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075634":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075652":[226,32,183]},{"1075656":[159]},{"1075658":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075677":[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]},{"1075710":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075725":[171,40,122,250,104,107,34,78,216]},{"1075735":[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]},{"1075799":[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,141,235,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,141,235,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]},{"1076070":[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]},{"1076115":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076139":[226,48,160]},{"1076143":[183]},{"1076145":[201,254,208,39,200,183]},{"1076152":[201,110,208,32,200,183]},{"1076159":[208,27,200,183]},{"1076164":[201,254,208,20,200,183]},{"1076171":[201,107,208,13,200,183]},{"1076178":[201,4,208,6,156,232,28,130,19]},{"1076188":[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]},{"1076216":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076233":[10,10,69,138,41,8]},{"1076240":[240,6,152,24,105,16]},{"1076247":[168,165,35,41,2]},{"1076253":[74,69,138,41,1]},{"1076259":[240,4,152,26,26,168,152,41,255]},{"1076269":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,189,246,160,34,166,170,164,34]},{"1076301":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,202,222,160,107,194,16,34,61,137]},{"1076497":[169,7,141,12,33,175,240,244,126,208,10,34,114,237,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076549":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076629":[191]},{"1076631":[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]},{"1076705":[107,34,212,152,160,34,194,247,160,107,34,71,153,160,34,80,153,160,162,4,107,34,194,247,160,169,20,133,17,107,34,194,247,160,107,34,63,132,160,34,44,153,160,34,61,222,160,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]},{"1076780":[2,107,169]},{"1076784":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1076807":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,135,235,160,169]},{"1076829":[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]},{"1076865":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076890":[208,4,169]},{"1076895":[107,201,1]},{"1076899":[208,16,175,197,243,126,41,15]},{"1076908":[201,2]},{"1076911":[176,84,32,9,239,107,201,2]},{"1076920":[208,75,32,9,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076944":[107,175,74,128,48,41,255]},{"1076952":[240,43,175,195,242,126,41,32]},{"1076961":[208,34,173,8,3,41,128]},{"1076969":[240,4,169,1]},{"1076974":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076996":[107,169]},{"1077000":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077023":[96,169]},{"1077027":[96,175,76,128,48,41,255]},{"1077035":[240,4,92,90,189,27,224,118]},{"1077044":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077061":[72,170,191,64,130,48,208,3,130,175]},{"1077072":[58,133]},{"1077075":[10,10,24,101]},{"1077080":[10,10,170,169,22]},{"1077086":[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]},{"1077114":[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]},{"1077157":[137,128]},{"1077160":[240,3,9]},{"1077164":[255,143,106,193,126,191,98,130,48,41,255]},{"1077176":[137,128]},{"1077179":[240,3,9]},{"1077183":[255,143,110,193,126,169]},{"1077191":[56,239,106,193,126,143,108,193,126,169]},{"1077203":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077219":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077237":[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]},{"1077314":[165]},{"1077316":[223]},{"1077318":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077338":[165]},{"1077340":[223]},{"1077342":[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]},{"1077388":[175,74,128,48,41,255]},{"1077395":[240,25,175,93]},{"1077401":[41,255]},{"1077404":[201,20]},{"1077407":[208,13,165,138,41,64]},{"1077414":[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]},{"1077471":[107,104,141,228,2,141,193,15,141,16,7,107,34,244,240,160,34,97,241,160,107,169,14,143,1,40]},{"1077498":[169,4,143,1,40]},{"1077504":[169,13,143,1,40]},{"1077510":[169,14,143,1,40]},{"1077516":[169]},{"1077518":[143,1,40]},{"1077522":[169]},{"1077524":[143,1,40]},{"1077528":[169]},{"1077530":[143,1,40]},{"1077534":[169]},{"1077536":[143,1,40]},{"1077540":[169]},{"1077542":[143,1,40]},{"1077546":[169]},{"1077548":[143,1,40]},{"1077552":[169]},{"1077554":[143,1,40]},{"1077558":[169,1,143,1,40]},{"1077564":[169]},{"1077566":[143,1,40]},{"1077570":[169,1,143,1,40]},{"1077576":[169]},{"1077578":[143,1,40]},{"1077582":[169]},{"1077584":[143,1,40]},{"1077588":[169,10,143,1,40]},{"1077594":[169,13,143,1,40]},{"1077600":[107,72,218,162]},{"1077605":[175]},{"1077607":[40]},{"1077609":[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]},{"1077636":[175]},{"1077638":[40]},{"1077640":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077654":[232,128,235,56,175]},{"1077660":[40]},{"1077662":[72,175]},{"1077665":[40]},{"1077667":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077685":[175]},{"1077687":[40]},{"1077689":[72,175]},{"1077692":[40]},{"1077694":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077714":[40]},{"1077716":[72,175]},{"1077719":[40]},{"1077721":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077741":[40]},{"1077743":[72,175]},{"1077746":[40]},{"1077748":[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]},{"1077833":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077851":[133]},{"1077853":[165,3,41,255]},{"1077858":[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,148,242,160,132,2,100,3,24,101]},{"1077900":[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]},{"1077955":[175]},{"1077957":[40]},{"1077959":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077973":[232,128,235,56,175]},{"1077979":[40]},{"1077981":[72,175]},{"1077984":[40]},{"1077986":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1078004":[175]},{"1078006":[40]},{"1078008":[72,175]},{"1078011":[40]},{"1078013":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1078033":[40]},{"1078035":[72,175]},{"1078038":[40]},{"1078040":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078060":[40]},{"1078062":[72,175]},{"1078065":[40]},{"1078067":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078087":[40]},{"1078089":[133,4,175]},{"1078093":[40]},{"1078095":[72,175]},{"1078098":[40]},{"1078100":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078120":[40]},{"1078122":[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]},{"1078191":[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,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]},{"1078281":[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]},{"1078315":[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]},{"1078414":[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]},{"1078445":[201,2]},{"1078448":[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]},{"1078480":[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,187,246,160,144,10,208,8,175,140,80,127,207,185,246,160,144,114,175,145,129,48,41,255]},{"1078536":[208,24,169,2]},{"1078541":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078565":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078578":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078592":[143,142,80,127,169,1]},{"1078599":[143,126,80,127,128,54,201,2]},{"1078608":[208,24,169,2]},{"1078613":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,235,218,160,194,48,96,175,146,129,48,41,255]},{"1078650":[240,7,169]},{"1078655":[143,126,80,127,175,142,80,127,207,175,246,160,144,10,208,8,175,140,80,127,207,173,246,160,144,53,175,128,80,127,26,201,10]},{"1078689":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078703":[143,128,80,127,175,140,80,127,56,239,173,246,160,143,140,80,127,175,142,80,127,239,175,246,160,143,142,80,127,128,181,175,142,80,127,207,179,246,160,144,10,208,8,175,140,80,127,207,177,246,160,144,53,175,132,80,127,26,201,10]},{"1078764":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078778":[143,132,80,127,175,140,80,127,56,239,177,246,160,143,140,80,127,175,142,80,127,239,179,246,160,143,142,80,127,128,181,175,142,80,127,207,183,246,160,144,10,208,8,175,140,80,127,207,181,246,160,144,53,175,136,80,127,26,201,10]},{"1078839":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078853":[143,136,80,127,175,140,80,127,56,239,181,246,160,143,140,80,127,175,142,80,127,239,183,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]},{"1078961":[16,14]},{"1078965":[60]},{"1078969":[255,255,255,127,175,204,80,127,41,255]},{"1078980":[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]},{"1079051":[240,93,175,145,129,48,41,255]},{"1079060":[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]},{"1079153":[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]},{"1079228":[208,3,32,139,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079258":[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]},{"1079292":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079376":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,206,223,160,34,58,135,1,194,16,166,160,191,76,251,160,226,16,34,156,135]},{"1079486":[208,248,160,209,248,160,94,249,160,235,249,160,120,250,160,226,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079522":[32,126,232,232,159]},{"1079528":[32,126,232,232,159]},{"1079534":[32,126,232,232,159]},{"1079540":[32,126,232,232,162,220,25,159]},{"1079549":[32,126,232,232,169,202,12,159]},{"1079558":[32,126,232,232,169,203,12,159]},{"1079567":[32,126,232,232,169,208,8,159]},{"1079576":[32,126,232,232,162,92,26,159]},{"1079585":[32,126,232,232,169,218,12,159]},{"1079594":[32,126,232,232,169,219,12,159]},{"1079603":[32,126,232,232,169,208,8,159]},{"1079612":[32,126,232,232,162,220,26,159]},{"1079621":[32,126,232,232,159]},{"1079627":[32,126,232,232,159]},{"1079633":[32,126,232,232,159]},{"1079639":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079663":[32,126,232,232,159]},{"1079669":[32,126,232,232,159]},{"1079675":[32,126,232,232,159]},{"1079681":[32,126,232,232,162,156,25,159]},{"1079690":[32,126,232,232,169,202,12,159]},{"1079699":[32,126,232,232,169,203,12,159]},{"1079708":[32,126,232,232,169,208,8,159]},{"1079717":[32,126,232,232,162,28,26,159]},{"1079726":[32,126,232,232,169,218,12,159]},{"1079735":[32,126,232,232,169,219,12,159]},{"1079744":[32,126,232,232,169,208,8,159]},{"1079753":[32,126,232,232,162,156,26,159]},{"1079762":[32,126,232,232,159]},{"1079768":[32,126,232,232,159]},{"1079774":[32,126,232,232,159]},{"1079780":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079804":[32,126,232,232,159]},{"1079810":[32,126,232,232,159]},{"1079816":[32,126,232,232,159]},{"1079822":[32,126,232,232,162,220,9,159]},{"1079831":[32,126,232,232,169,202,12,159]},{"1079840":[32,126,232,232,169,203,12,159]},{"1079849":[32,126,232,232,169,208,8,159]},{"1079858":[32,126,232,232,162,92,10,159]},{"1079867":[32,126,232,232,169,218,12,159]},{"1079876":[32,126,232,232,169,219,12,159]},{"1079885":[32,126,232,232,169,208,8,159]},{"1079894":[32,126,232,232,162,220,10,159]},{"1079903":[32,126,232,232,159]},{"1079909":[32,126,232,232,159]},{"1079915":[32,126,232,232,159]},{"1079921":[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]},{"1080154":[1]},{"1080236":[5]},{"1080238":[4]},{"1080266":[2]},{"1080362":[3]},{"1080460":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080477":[134,1,133,2,32,140,252,176,4,92,83,230]},{"1080490":[169,49,133,2,194,32,169]},{"1080498":[192,133]},{"1080501":[162,128,167]},{"1080505":[141,24,33,230]},{"1080510":[230]},{"1080512":[167]},{"1080514":[141,24,33,230]},{"1080519":[230]},{"1080521":[167]},{"1080523":[141,24,33,230]},{"1080528":[230]},{"1080530":[167]},{"1080532":[141,24,33,230]},{"1080537":[230]},{"1080539":[167]},{"1080541":[141,24,33,230]},{"1080546":[230]},{"1080548":[167]},{"1080550":[141,24,33,230]},{"1080555":[230]},{"1080557":[167]},{"1080559":[141,24,33,230]},{"1080564":[230]},{"1080566":[167]},{"1080568":[141,24,33,230]},{"1080573":[230]},{"1080575":[202,208,181,226,32,92,81,230]},{"1080584":[226,48,175,248,194,126,168,32,140,252,194,48,176,10,162]},{"1080601":[160,64]},{"1080604":[92,104,223]},{"1080608":[162]},{"1080610":[192,160]},{"1080614":[169]},{"1080616":[8,139,84,127,177,171,162]},{"1080624":[8,169]},{"1080627":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,237,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,11,168,160,40,175,67,244,126,41,255]},{"1081469":[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,85,151,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]},{"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,90,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,107,235,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,70,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,249,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,249,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,249,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,249,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,47,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,47,178,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194114":[83,127,201,3,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,181,185,164,226,48,169]},{"1194152":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194210":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194268":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,64,185,34,231,244,30,32,128,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,96,133,8,169,185,105]},{"1194325":[133,9,34,117,223,5,34,92,220,6,96]},{"1194338":[247,255,198]},{"1194343":[2]},{"1194348":[200]},{"1194351":[2]},{"1194354":[248,255,198]},{"1194359":[2]},{"1194364":[202,64]},{"1194367":[2,175,103,129,48,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,235,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194425":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194451":[98,41,110,41,107,41,105,41,127]},{"1194461":[111,41,97,41,106,41,112,41,127]},{"1194471":[112,41,107,41,127]},{"1194477":[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]},{"1194524":[33,218,162,128,142]},{"1194530":[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]},{"1194558":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194575":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194666":[208,33,8,194,48,162]},{"1194674":[224,64]},{"1194677":[176,11,169,127]},{"1194682":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194705":[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]},{"1194752":[240,7,224,2,240,3,130,137]},{"1194761":[130,132]},{"1194764":[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]},{"1194910":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194927":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194943":[224,28]},{"1194946":[176,12,191,193,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194963":[175,211,244,126,41,255]},{"1194970":[58,201,64]},{"1194974":[176,63,10,10,10,10,10,170,192,60]},{"1194985":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195008":[176,11,169,127]},{"1195013":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,174,184,160,122,218,90,8,194,48,162]},{"1195169":[224,16]},{"1195172":[176,12,191,221,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195189":[175,152,192,126,41,255]},{"1195196":[58,201,64]},{"1195200":[176,63,10,10,10,10,10,170,192,48]},{"1195211":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195234":[176,11,169,127]},{"1195239":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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/base2current_extendedmsu.json b/data/base2current_extendedmsu.json index 16ad63ce..ebf023ba 100644 --- a/data/base2current_extendedmsu.json +++ b/data/base2current_extendedmsu.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[176]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,144,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,52,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[242]},{"5002":[183]},{"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,122,199,160]},{"21847":[34,82,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,186,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,77,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[110,163,160]},{"30994":[240,163,160]},{"31001":[110,163,160]},{"31011":[240,163,160]},{"31046":[244,187,164]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[219,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,23,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,120,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,158,150,164,234]},{"60423":[34,17,194,164]},{"60790":[247,188,164]},{"61077":[28,181,160]},{"61133":[34,108,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,223,238,160]},{"65607":[235,237,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,87,194,160,234]},{"65894":[34,133,194,160]},{"66284":[34,168,194,160]},{"66292":[92,19,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,225,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,136,189,164,234,234]},{"67934":[90,248,160]},{"68474":[34,86,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[94,248,160]},{"69737":[34,172,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[94,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,12,246,160,234]},{"72216":[173,187,164]},{"72241":[34,133,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[226,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,149,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,228,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]},{"77216":[34,211,247,160,234]},{"78138":[156,246,160]},{"78172":[34,35,189,164,34,219,153,160,234,234]},{"79603":[34,225,187,164]},{"79767":[34,151,189,164]},{"82376":[234,234]},{"82676":[94,248,160]},{"87784":[234,234,234]},{"87892":[34,233,245,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,30,240,160]},{"90651":[34,66,237,160,234,234]},{"93230":[34,222,157,164,234,234]},{"93325":[34,154,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,222,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,189,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[91,194,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[95,181,160]},{"173058":[95,181,160]},{"173307":[95,181,160]},{"173320":[95,181,160]},{"183384":[34,201,247,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[108,237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,109,236,160,128,13]},{"189655":[34,12,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[34,194,164]},{"191439":[34,41,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,61,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,81,195,160,234]},{"192121":[169,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,10,179,160]},{"193157":[34,3,179,160]},{"193440":[34,191,219,160]},{"193472":[2,236,160]},{"193546":[34,191,219,160]},{"193578":[202,235,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[209,194,160]},{"194141":[34,193,195,160,234,234,234,234,234]},{"194177":[34,39,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,109,236,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,39,199,160]},{"195589":[89,176,160]},{"195710":[34,117,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[50,176,160]},{"195909":[60,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[168,192,160]},{"198721":[34,161,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,22,187,164]},{"198942":[34,61,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,8,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[243,175,160]},{"199993":[34,70,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,173,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,243,219,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[53,194,164]},{"212610":[72,194,164]},{"213139":[11,191,164]},{"213169":[147,133,160]},{"214205":[34,168,180,160]},{"214972":[58,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,68,188,164]},{"217579":[34,74,193,160]},{"224597":[34,191,218,160]},{"224693":[34,211,218,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,225,219,160,234]},{"226304":[34,20,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,194,238,160]},{"229634":[34,101,192,164]},{"230816":[40,179,160]},{"230955":[40,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,203,238,160,234]},{"233987":[74,187,164]},{"234731":[34,167,187,164]},{"234747":[34,214,238,160]},{"235953":[34,35,133,160,144,3]},{"236024":[168,204,160]},{"236047":[42,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[249,197,160]},{"238498":[34,130,196,160,128,3]},{"238562":[34,197,198,160,240,4,234]},{"238751":[34,85,220,160]},{"238964":[34,85,220,160]},{"239190":[34,85,220,160]},{"239964":[61,189,164]},{"240044":[92,207,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,53,219,160]},{"241165":[34,53,219,160]},{"241175":[34,235,128,164]},{"241294":[34,53,219,160]},{"241304":[34,235,128,164]},{"241814":[34,53,219,160,24,125,139,176]},{"241869":[103,236,160]},{"241877":[34,53,219,160,24,125,139,176]},{"242942":[34,219,236,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,188,188,164,234]},{"243067":[234,234,34,132,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,83,219,160,234]},{"250478":[34,137,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,13,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,224,241,160,234]},{"273608":[34,164,182,160,76,230,172]},{"275716":[34,136,182,160,234]},{"276202":[34,197,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,66,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,37,239,160,234,234]},{"279880":[92,250,194,164]},{"280037":[34,251,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[103,236,160]},{"280106":[92,149,226,160,234]},{"280265":[119,210,160]},{"280287":[119,209,160]},{"280314":[119,210,160]},{"280335":[34,196,179,160]},{"282028":[34,82,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,68,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,53,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,201,200,160,234]},{"296453":[92,110,194,164,234]},{"296466":[119,211]},{"296471":[120,211]},{"296480":[119,213]},{"296488":[119,211]},{"296493":[120,211]},{"296502":[119,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[119,214]},{"296810":[135,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[167,206]},{"297052":[151,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,47,226,160,234]},{"297144":[119,209]},{"297200":[167,206]},{"297225":[151,207]},{"297263":[120,215]},{"297292":[34,20,195,160]},{"297309":[127,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,12,195,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,215,223,160]},{"324619":[34,11,153,160]},{"324675":[34,166,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,51,237,160,34,142,188,164,234,234,234,234,234,234]},{"324996":[34,149,194,160]},{"325098":[169,2,0,234]},{"325131":[34,99,237,160]},{"325203":[34,139,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":[251,238,160]},{"342245":[34,59,132,160,34,15,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,76,247,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,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[219,187,164]},{"409856":[34,232,226,160]},{"410028":[94,255,161]},{"410347":[34,139,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[184,238,160]},{"412876":[92,89,178,164]},{"413015":[107]},{"413094":[110,148,164]},{"413109":[34,15,237,160]},{"413141":[34,126,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,19,149,164,234,234,234,234]},{"413264":[34,58,149,164,234,234,234,234,234,234]},{"413297":[92,97,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,188,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,126,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,90,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,235,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,90,178,164]},{"415678":[34,147,149,164]},{"416378":[6,150,164]},{"416491":[34,221,149,164,234]},{"416529":[34,184,149,164]},{"416588":[234,234,234,234]},{"416912":[34,212,149,164]},{"416937":[34,198,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":[20,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,94,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,57,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,87,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,36,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,23,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,106,155,160]},{"450360":[34,224,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,76,184,160,234]},{"450492":[34,74,155,160,234,234,234]},{"450861":[34,98,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,221,155,160,234]},{"452559":[34,203,155,160,234]},{"452581":[34,239,155,160,234]},{"452634":[96]},{"453064":[34,10,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,98,193,160,234,234,76,230,236]},{"453867":[34,1,156,160,234]},{"453892":[34,19,156,160]},{"454092":[34,124,155,160,234,234,234,234,234]},{"454233":[34,124,155,160,234,234,234,234,234]},{"454256":[34,202,194,160,234]},{"454282":[34,124,155,160,234,234,234,234,234]},{"454459":[34,124,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,160,216,160]},{"457513":[34,198,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,40,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,35,237,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,249,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[243,234,160]},{"487403":[169,2,0,234]},{"487935":[34,33,227,160]},{"488156":[34,33,227,160]},{"488213":[34,33,227,160]},{"488242":[34,33,227,160]},{"488309":[34,33,227,160]},{"488340":[34,33,227,160]},{"488721":[34,33,227,160]},{"489560":[34,33,227,160]},{"490022":[34,33,227,160]},{"490060":[34,33,227,160]},{"490164":[34,33,227,160]},{"490184":[34,33,227,160]},{"490209":[34,33,227,160]},{"490257":[34,33,227,160]},{"490438":[34,49,227,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,140,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,31,241,160]},{"900244":[34,115,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,106,241,160,234]},{"900437":[92,4,240,160,234]},{"900447":[34,219,245,160,234,234,234]},{"900458":[34,225,187,164]},{"901799":[34,94,153,164,107,32,222,201,107]},{"903876":[34,172,241,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,89,235,160,96]},{"954852":[187,181,160]},{"955117":[56,235,160]},{"955529":[183,181,160]},{"962925":[148,181,160]},{"962951":[148,181,160]},{"963167":[148,181,160]},{"963214":[148,181,160]},{"965041":[148,181,160]},{"965069":[148,181,160]},{"965214":[148,181,160]},{"965298":[148,181,160]},{"965316":[148,181,160]},{"967797":[34,252,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,22,180,160]},{"972824":[99,181,160]},{"972834":[99,181,160]},{"972851":[99,181,160]},{"974665":[92,149,197,160,234]},{"974706":[210,197,160]},{"974722":[183,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,166,197,160,234,234]},{"975332":[34,132,197,160,234,234]},{"975401":[255]},{"976357":[144,181,160]},{"976423":[144,181,160]},{"978658":[128,181,160]},{"979078":[34,211,219,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":[4,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,96,196,160]},{"983466":[128,181,160]},{"983651":[128,181,160]},{"988539":[140,181,160]},{"988657":[140,181,160]},{"988668":[140,181,160]},{"988874":[140,181,160]},{"988902":[140,181,160]},{"989142":[140,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[132,181,160]},{"999246":[136,181,160]},{"999265":[136,181,160]},{"999359":[136,181,160]},{"999574":[136,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,90,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[103,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[103,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,117,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,122,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,141,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,121,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,112,179,160,122,250,107,218,90,34,168,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,43,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,43,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,43,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,43,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,43,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,43,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,43,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,43,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,43,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,43,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,43,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,43,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,43,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,43,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,43,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,43,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,43,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,43,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,121,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,49,217,160,76,49,145,201,251,208,7,34,237,217,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,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,121,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,49,217,160,76,114,147,201,251,208,7,34,237,217,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,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,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,121,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,49,217,160,128,8,201,99,208,4,34,237,217,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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]},{"1055520":[240,5,169,8]},{"1055525":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055538":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055560":[2,107,175,19,130,48,41,255]},{"1055569":[240,5,169,8]},{"1055574":[128,7,175,72,128,48,41,255]},{"1055583":[24,101,234,48,3,169]},{"1055591":[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]},{"1055618":[201,255]},{"1055621":[208,1,107,175,22,244,126,41,32]},{"1055631":[240,4,169]},{"1055636":[107,173,12,4,41,255]},{"1055643":[201,255]},{"1055646":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055670":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,32,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055702":[107,169,136,21,133]},{"1055708":[107,175,69,128,48,208,6,169,16,22,133]},{"1055720":[107,169,144,21,133]},{"1055726":[107,175,69,128,48,208,6,169,24,22,133]},{"1055738":[107,169,152,21,133]},{"1055744":[107,175,69,128,48,208,6,169,32,22,133]},{"1055756":[107,169,160,21,133]},{"1055762":[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]},{"1055854":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055868":[144,240,175,22,244,126,41,32]},{"1055877":[240,3,130,200,1,175,69,128,48,41,1]},{"1055889":[208,3,130,231]},{"1055894":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055916":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055933":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055950":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055967":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055984":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056001":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056018":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056035":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056052":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056069":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056086":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056103":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056120":[141,165,22,194,32,175,69,128,48,41,2]},{"1056132":[208,3,130,201]},{"1056137":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056150":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056165":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056180":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056195":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056210":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056225":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056240":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056255":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056270":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056285":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056300":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056315":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056330":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056345":[208,3,130,170,1,175,69,128,48,41,4]},{"1056357":[208,3,130,201]},{"1056362":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056375":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056390":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056405":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056420":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056435":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056450":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056465":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056480":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056495":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056510":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056525":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056540":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056555":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056570":[208,3,130,201]},{"1056575":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056588":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056603":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056618":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056633":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056648":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056663":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056678":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056693":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056708":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056723":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056738":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056753":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056768":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056787":[191,82,161,160,157,234,18,191,102,161,160,157,42,19,191,122,161,160,157,106,19,191,142,161,160,157,170,19,191,162,161,160,157,234,19,191,182,161,160,157,42,20,191,202,161,160,157,106,20,191,222,161,160,157,170,20,191,242,161,160,157,234,20,232,232,224,20]},{"1056855":[144,186,175,116,243,126,41,4]},{"1056864":[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]},{"1056897":[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]},{"1056930":[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]},{"1056963":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056984":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057005":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057026":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057047":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057068":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057089":[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]},{"1057712":[143,114,243,126,173,10,2,208,14,169]},{"1057723":[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]},{"1057757":[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]},{"1057838":[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]},{"1057881":[165,12,201,232,3,144,3,130,24]},{"1057891":[201,100]},{"1057894":[144,3,130,97]},{"1057899":[201,10]},{"1057902":[144,3,130,170]},{"1057907":[201,1]},{"1057910":[144,3,130,243]},{"1057915":[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]},{"1057945":[166,133,14,165,14,159]},{"1057952":[201,126,232,232,169,56]},{"1057959":[159]},{"1057961":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1057975":[201,126,232,232,169]},{"1057982":[159]},{"1057984":[201,126,232,232,165,14,24,105,8]},{"1057994":[133,14,100,10,165,12,201,100]},{"1058003":[144,8,56,233,100]},{"1058009":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121]},{"1058026":[166,133,14,165,14,159]},{"1058033":[201,126,232,232,169,56]},{"1058040":[159]},{"1058042":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058056":[201,126,232,232,169]},{"1058063":[159]},{"1058065":[201,126,232,232,165,14,24,105,8]},{"1058075":[133,14,100,10,165,12,201,10]},{"1058084":[144,8,56,233,10]},{"1058090":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121]},{"1058107":[166,133,14,165,14,159]},{"1058114":[201,126,232,232,169,56]},{"1058121":[159]},{"1058123":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058137":[201,126,232,232,169]},{"1058144":[159]},{"1058146":[201,126,232,232,165,14,24,105,8]},{"1058156":[133,14,100,10,165,12,201,1]},{"1058165":[144,8,56,233,1]},{"1058171":[230,10,128,243,133,12,192,255,208,10,160]},{"1058183":[165,14,24,121]},{"1058188":[166,133,14,165,14,159]},{"1058195":[201,126,232,232,169,56]},{"1058202":[159]},{"1058204":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058218":[201,126,232,232,169]},{"1058225":[159]},{"1058227":[201,126,232,232,165,14,24,105,8]},{"1058237":[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]},{"1058308":[252,255,248,255,218,90,8,194,48,162]},{"1058320":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058335":[208,13,175,153,80,127,41,255]},{"1058344":[223,3,200,48,208,44,226,32,191]},{"1058354":[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]},{"1058396":[200,48,41,255]},{"1058401":[201,255]},{"1058404":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058427":[226,32,162]},{"1058432":[160]},{"1058435":[152,207,96,80,127,144,3,130,172]},{"1058445":[191,1,201,48,201,255,208,3,130,161]},{"1058456":[191]},{"1058458":[201,48,207,80,80,127,240,3,130,137]},{"1058469":[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]},{"1058506":[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,180,167,160,170,32,211,167,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]},{"1058637":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058651":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,14,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,15,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,16,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]},{"1058744":[128]},{"1058749":[1]},{"1058752":[169,234,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,49,145,160,34,45,213]},{"1058791":[194,16,96,32,238,167,107,173]},{"1058800":[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]},{"1058830":[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]},{"1058867":[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]},{"1059008":[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]},{"1059173":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059194":[175,81,80,127,201,255,208,3,76,103,169,139,75,171,34,231,244,30,32,181,169,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]},{"1059245":[32,210,173,32,210,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059268":[201,2,208,3,130,227]},{"1059275":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059290":[165,26,41,16,240,12,189,73,170,159]},{"1059301":[201,126,232,224,16,144,244,189,89,170,159]},{"1059313":[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]},{"1059372":[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]},{"1059403":[248,255]},{"1059408":[2]},{"1059413":[16]},{"1059416":[2]},{"1059419":[248,255]},{"1059424":[2]},{"1059429":[16,64]},{"1059432":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,158,133,8,169,170,133,9,128,8,169,166,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059490":[70,10]},{"1059493":[2]},{"1059498":[70,74]},{"1059501":[2,218,162]},{"1059505":[165,26,41,64,240,12,189,32,171,159]},{"1059516":[201,126,232,224,16,144,244,189,48,171,159]},{"1059528":[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]},{"1059587":[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]},{"1059618":[248,255,132]},{"1059623":[2]},{"1059628":[16]},{"1059631":[2]},{"1059634":[248,255,132]},{"1059639":[2]},{"1059644":[16,64]},{"1059647":[2,218,162]},{"1059651":[165,26,41,64,240,12,189,178,171,159]},{"1059662":[201,126,232,224,16,144,244,189,194,171,159]},{"1059674":[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]},{"1059733":[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]},{"1059764":[248,255,142]},{"1059769":[2]},{"1059774":[16]},{"1059777":[2]},{"1059780":[248,255,142]},{"1059785":[2]},{"1059790":[16,64]},{"1059793":[2,218,90,8,160]},{"1059799":[90,152,74,74,168,175,95,80,127,57,14,173,240,3,122,128,48,122,173,238]},{"1059820":[221,32,15,208,39,32,165,173,32,17,173,34,230,131,6,144,3,32,197,173,32,123,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,39,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]},{"1059948":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059964":[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,14,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,14,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]},{"1060117":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060138":[58,10,168,185,199,174,133]},{"1060146":[122,104,24,113]},{"1060151":[24,105,2]},{"1060155":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060168":[13,194,32,90,200,200,24,113]},{"1060177":[122,72,175,81,80,127,41,128]},{"1060186":[240,7,104,24,105,4]},{"1060193":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060216":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060233":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060246":[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]},{"1060274":[165,35,105]},{"1060278":[133,8,165,32,105,8,133,1,165,33,105]},{"1060290":[133,9,96,218,34]},{"1060296":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060318":[160]},{"1060320":[175,81,80,127,41,3,201,3,208,5,32,3,174,128,4,201,2,208,5,32,3,174,128,4,201,1,208,3,32,3,174,122,250,171,96,175,95,80,127,57,14,173,240,3,130,178]},{"1060367":[90,175,81,80,127,41,3,58,10,168,194,32,185,199,174,133]},{"1060384":[163,1,10,10,168,177]},{"1060391":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060404":[208,8,177]},{"1060408":[143,39,192,126,128,10,177]},{"1060416":[24,105,4]},{"1060420":[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,229,174,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,114,147,160,143,42,192,126,169]},{"1060487":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060513":[143,44,192,126,32,186,175,169,2,218,72,175,97,80,127,170,104,32,113,175,250,175,81,80,127,41,128,208,3,32,232,174,200,232,232,232,232,96,205,174,209,174,217,174,8]},{"1060559":[40]},{"1060561":[240,255,40]},{"1060565":[32]},{"1060567":[40]},{"1060569":[216,255,40]},{"1060573":[8]},{"1060575":[40]},{"1060577":[56]},{"1060579":[40]},{"1060581":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060600":[58,10,168,185,199,174,133]},{"1060608":[185,95,175,133,2,122,90,152,10,10,168,177]},{"1060621":[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,82,164,226,32,133,6,100,7,72,169]},{"1060660":[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,101,175,103,175,107,175]},{"1060710":[255]},{"1060712":[128,128,255]},{"1060716":[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]},{"1060797":[194,32,191,37,192,126,24,105,4]},{"1060807":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060823":[159,47,192,126,191,41,192,126,24,105,16]},{"1060835":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060877":[72,165,2,72,169,16,128,133]},{"1060886":[169,48]},{"1060889":[133,2,169,2]},{"1060894":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060941":[143]},{"1060943":[80,127,32,156,176,34,79,150,160,107,72,175]},{"1060956":[80,127,240,6,34,75,176,160,128,13,32,156,176,34,12,151,160,169]},{"1060975":[143,152,192,126,104,107,32,156,176,201,36,208,24,90,160,36,34,141,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061060":[143,152,192,126,169,36,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]},{"1061335":[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]},{"1061402":[191,227,178,160,197,4,144,3,232,128,245,191,228,178,160,133,6,100,7,194,32,138,10,10,170,191,229,178,160,141,232,80,191,231,178,160,141,234,80,173]},{"1061443":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061461":[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,207,176,173,236,80,10,10,170,189]},{"1061498":[81,56,229,8,157]},{"1061504":[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]},{"1061536":[81,141,228,80,189,2,81,141,230,80,32,207,176,173]},{"1061551":[81,56,229,8,141]},{"1061557":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,203,176,160,141,232,80,173,234,80,239,205,176,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,34,49,145,160,72,165,138,201,3,240,6,34,246,178,160,128,4,34,233,178,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,17,179,160,169,235,143]},{"1061703":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061727":[13,165,33,153,32,13,169]},{"1061735":[153,32,15,169,127,153,112,15,107,72,8,34,154,179,160,144,31,156,18,1,156,239,3,169]},{"1061760":[133,93,194,32,165,138,201,48]},{"1061769":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061793":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061806":[128,16,201,48]},{"1061811":[208,11,165,34,201]},{"1061817":[2,144,4,56,130,1]},{"1061824":[24,226,32,107,191,119,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061845":[226,32,34,16,247,8,169,52,145,144,200,191,119,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061880":[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]},{"1061942":[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,162,180,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]},{"1062089":[13,173,219,15,233]},{"1062095":[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]},{"1062134":[13,173,219,15,233]},{"1062140":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062165":[254,127,208,245,169,4,107,34,211,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,229,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,229,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062238":[107,169]},{"1062241":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,211,181,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,211,181,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,211,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,211,181,160,107,218,8,194,32,41,127]},{"1062362":[10,170,191]},{"1062366":[82,127,26,41,255,3,159]},{"1062374":[82,127,170,10,191]},{"1062380":[128,175,40,250,107,218,8,194,48,162]},{"1062392":[191,40,182,160,159]},{"1062398":[82,127,232,232,191,40,182,160,159]},{"1062408":[82,127,232,232,191,40,182,160,159]},{"1062418":[82,127,232,232,191,40,182,160,159]},{"1062428":[82,127,232,232,224,127]},{"1062435":[144,211,40,250,107]},{"1062442":[64]},{"1062444":[128]},{"1062446":[192]},{"1062449":[1,64,1,128,1,192,1]},{"1062457":[2,64,2,128,2,192,2]},{"1062465":[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,72,182,160,175,35,128,48,208,4,34,104,182,160,104,107,72,169]},{"1062567":[143,65,80,127,175,34,128,48,201,1,208,4,34,72,182,160,175,35,128,48,201,1,208,4,34,104,182,160,104,107,72,175,34,128,48,201,2,208,4,34,72,182,160,175,35,128,48,201,2,208,4,34,104,182,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]},{"1062733":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062750":[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]},{"1062821":[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]},{"1062857":[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,28,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]},{"1062982":[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]},{"1063008":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063028":[2,156,5,2,169]},{"1063034":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,126,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063065":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063082":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063099":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063116":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063133":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063150":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063167":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063184":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063207":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063224":[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]},{"1063257":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063280":[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]},{"1063312":[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]},{"1063370":[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]},{"1063396":[192,59,208,3,130,96]},{"1063403":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063428":[201,15,1,208,3,130,59]},{"1063436":[201,16,1,208,3,130,51]},{"1063444":[201,28,1,208,3,130,43]},{"1063452":[201,31,1,208,3,130,35]},{"1063460":[201,255]},{"1063463":[208,3,130,27]},{"1063468":[201,20,1,208,3,130,19]},{"1063476":[201,21,1,208,3,130,11]},{"1063484":[201,22,1,208,3,130,3]},{"1063492":[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]},{"1063524":[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]},{"1063677":[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]},{"1063715":[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]},{"1063753":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063771":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063789":[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]},{"1063825":[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]},{"1063863":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063881":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,106,192,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]},{"1063985":[208,9,32,4,191,32,53,191,130,64,2,192,1,208,6,32,4,191,130,54,2,192,2,208,6,32,4,191,130,44,2,192,3,208,6,32,4,191,130,34,2,192,4,208,6,32,53,191,130,24,2,192,5,208,6,32,53,191,130,14,2,192,6,208,6,32,53,191,130,4,2,192,7,144,10,192,14,176,6,32,102,191,130,246,1,192,20,208,9,32,194,190,32,102,191,130,233,1,192,15,144,10,192,23,176,6,32,102,191,130,219,1,192,23,208,6,32,202,191,130,209,1,192,24,144,10,192,26,176,6,32,102,191,130,195,1,192,26,208,9,32,227,190,32,102,191,130,182,1,192,29,208,6,32,102,191,130,172,1,192,27,144,10,192,32,176,6,32,114,191,130,158,1,192,32,208,6,32,242,191,130,148,1,192,33,208,6,32,102,191,130,138,1,192,34,144,10,192,36,176,6,32,14,192,130,124,1,192,36,208,6,32,30,192,130,114,1,192,37,208,6,32,62,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,134,192,130,87,1,192,40,208,6,32,134,192,130,77,1,192,41,208,6,32,102,191,130,67,1,192,42,144,10,192,46,176,6,32,102,191,130,53,1,192,49,208,6,32,134,192,130,43,1,192,50,208,6,32,94,192,130,33,1,192,51,208,6,32,156,192,130,23,1,192,55,144,10,192,58,176,6,32,142,191,130,9,1,192,58,144,10,192,60,176,6,32,83,191,130,251]},{"1064321":[192,60,208,6,32,102,191,130,241]},{"1064331":[192,61,208,6,32,102,191,130,231]},{"1064341":[192,62,144,10,192,64,176,6,32,230,191,130,217]},{"1064355":[192,72,208,6,32,102,191,130,207]},{"1064365":[192,73,208,6,32,4,191,130,197]},{"1064375":[192,74,208,9,32,194,190,32,102,191,130,184]},{"1064388":[192,75,208,9,32,161,190,32,114,191,130,171]},{"1064401":[192,76,208,9,32,170,191,32,134,192,130,158]},{"1064414":[192,77,144,10,192,80,176,6,32,170,191,130,144]},{"1064428":[192,80,208,6,32,4,191,130,134]},{"1064438":[192,81,144,10,192,85,176,6,32,170,191,130,120]},{"1064452":[192,88,208,6,32,83,191,130,110]},{"1064462":[192,94,208,6,32,4,191,130,100]},{"1064472":[192,95,208,6,32,53,191,130,90]},{"1064482":[192,96,208,6,32,14,192,130,80]},{"1064492":[192,97,208,6,32,114,191,130,70]},{"1064502":[192,100,144,10,192,102,176,6,32,83,191,130,56]},{"1064516":[192,112,144,10,192,128,176,6,32,156,192,130,42]},{"1064530":[192,128,144,10,192,144,176,6,32,62,192,130,28]},{"1064544":[192,144,144,10,192,160,176,6,32,94,192,130,14]},{"1064558":[192,160,144,10,192,176,176,6,32,30,192,130]},{"1064572":[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,128,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064724":[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,30,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,102,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,172,192,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,32,239,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]},{"1065320":[201,2]},{"1065323":[208,14,175,140,243,126,41,192]},{"1065332":[201,192]},{"1065335":[240,79,128,64,201,1]},{"1065342":[208,14,175,142,243,126,41,192]},{"1065351":[201,192]},{"1065354":[240,60,128,45,201,5]},{"1065361":[208,14,175,140,243,126,41,48]},{"1065370":[201,48]},{"1065373":[240,41,128,26,201,13]},{"1065380":[208,16,175,140,243,126,137,4]},{"1065389":[240,12,41,3]},{"1065394":[208,20,128,5,201,16]},{"1065401":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065414":[208,5,169,79,61,128,6,32,215,193,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]},{"1065461":[41,255,239,153,4]},{"1065467":[185,62]},{"1065470":[41,255,239,153,62]},{"1065476":[185,68]},{"1065479":[41,255,239,153,68]},{"1065485":[185,128]},{"1065488":[41,255,239,153,128]},{"1065494":[185,130]},{"1065497":[41,255,239,153,130]},{"1065503":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065524":[41,255,239,153,132]},{"1065530":[185,126]},{"1065533":[41,255,239,153,126]},{"1065539":[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]},{"1065577":[201,144]},{"1065580":[208,3,169,127]},{"1065585":[9]},{"1065587":[36,143,100,199,126,165,5,41,255]},{"1065597":[9]},{"1065599":[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,149,241,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065711":[72,165,2,72,169,16,128,133]},{"1065720":[169,48]},{"1065723":[133,2,169,4]},{"1065728":[34,43,150,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065774":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065795":[143]},{"1065797":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065811":[157,192,13,72,169,1,143]},{"1065819":[80,127,165,93,201,20,240,68,169]},{"1065829":[143]},{"1065831":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065859":[72,165,2,72,169,16,128,133]},{"1065868":[169,48]},{"1065871":[133,2,169,3]},{"1065876":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065901":[80,127,240,6,34,86,195,160,128,7,189,128,14,34,187,150,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]},{"1065944":[72,165,2,72,169,16,128,133]},{"1065953":[169,48]},{"1065956":[133,2,169,4]},{"1065961":[34,43,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,151,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]},{"1066019":[143,68,243,126,107,175,123,243,126,41,255]},{"1066031":[201,2]},{"1066034":[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]},{"1066067":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066082":[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]},{"1066118":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066132":[173,91,3,41,1,208,3,130,134]},{"1066142":[90,8,139,75,171,226,48,165,27,240,3,76,33,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066179":[129,48,143]},{"1066183":[254,127,34,93,246,29,162]},{"1066191":[165,47,201,4,240,1,232,191,37,197,160,153,80,13,169]},{"1066207":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,39,197,160,41,240,153,16,13,165,35,105]},{"1066241":[153,48,13,165,32,24,105,22,41,240,153]},{"1066253":[13,165,33,105]},{"1066258":[153,32,13,169]},{"1066263":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066280":[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]},{"1066311":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066332":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066402":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066433":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066527":[72,165,2,72,169,64,129,133]},{"1066536":[169,48]},{"1066539":[133,2,169,10]},{"1066544":[34,43,150,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066564":[254,127,34,93,246,29,162]},{"1066572":[165,47,201,4,240,1,232,191,169,198,160,153,80,13,169]},{"1066588":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,171,198,160,41,240,153,16,13,165,35,105]},{"1066622":[153,48,13,165,32,24,105,22,41,240,153]},{"1066634":[13,165,33,105]},{"1066639":[153,32,13,169]},{"1066644":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066668":[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]},{"1066747":[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]},{"1066774":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066813":[72,165,2,72,169,16,128,133]},{"1066822":[169,48]},{"1066825":[133,2,169,5]},{"1066830":[34,43,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]},{"1066884":[201,35,208,6,160,93,92,71,213]},{"1066894":[201,72,208,6,160,96,92,71,213]},{"1066904":[201,36,176,6,160,91,92,71,213]},{"1066914":[201,55,176,6,160,92,92,71,213]},{"1066924":[201,57,176,6,160,93,92,71,213]},{"1066934":[160,50,92,71,213]},{"1066940":[192,9,48]},{"1066944":[96]},{"1066946":[144]},{"1066948":[192]},{"1066951":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066975":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066993":[9,48,9,96,9,144,9,240,9]},{"1067004":[240]},{"1067006":[32,10,80,10,96,6]},{"1067013":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067035":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067051":[6,48,6]},{"1067055":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067071":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067092":[127,188,199,160,107,165]},{"1067099":[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]},{"1067130":[132,175,24,105]},{"1067135":[136,133]},{"1067138":[226,32,169,175,133,2,34,67,227,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,153,218,160,162,1,128,2,162]},{"1067196":[171,40,122,104,133,2,104,133,1,104,133]},{"1067208":[96,218,173,216,2,34,121,227,160,72,175,152,192,126,240,4,104,130,197,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,169,3,201,59,208,29,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,136,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,112,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,88,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,62,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,43,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,22,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,252,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,226,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,200,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,174,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,143,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,112,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,81,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,10,2,201,90,208,3,130,3,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067691":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,223,1,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,187,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,151,1,201,94,208,3,130,144,1,201,95,208,3,130,137,1,201,96,208,3,130,130,1,201,97,208,3,130,123,1,201,98,208,3,130,116,1,201,99,208,3,130,109,1,201,100,208,3,130,102,1,201,101,208,3,130,95,1,201,106,208,7,34,153,218,160,130,84,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,153,218,160,130,40,1,201,109,208,7,34,209,190,164,130,29,1,201,110,208,7,34,209,190,164,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067938":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1067955":[56,233,8,170,169,1,224]},{"1067963":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1067986":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068005":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1068022":[56,233,8,170,169,1,224]},{"1068030":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1068053":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068072":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1068089":[56,233,8,170,169,1,224]},{"1068097":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1068120":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068142":[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,19]},{"1068174":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1068193":[250,173,233,2,201,1,107,72,218,34,25,239,160,173,216,2,72,175,152,192,126,208,12,104,32,72,218,141,216,2,32,30,218,128,1,104,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,121,218,207,150,128,48,144,13,175,152,192,126,208,7,175,151,128,48,141,216,2,130,163,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,145,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,115,1,175,89,243,126,201,255,208,8,169,73,141,216,2,130,99,1,201]},{"1068350":[208,8,169,73,141,216,2,130,87,1,201,1,208,8,169,80,141,216,2,130,75,1,201,2,208,8,169,2,141,216,2,130,63,1,169,3,141,216,2,130,55,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,29,1,201,64,208,8,169,5,141,216,2,130,17,1,169,6,141,216,2,130,9,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,239]},{"1068464":[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,200]},{"1068503":[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,170]},{"1068533":[175,91,243,126,201]},{"1068539":[208,8,169,34,141,216,2,130,154]},{"1068549":[169,35,141,216,2,130,146]},{"1068557":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,128]},{"1068575":[169,28,141,216,2,130,120]},{"1068583":[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,88]},{"1068615":[175,64,243,126,26,74,201]},{"1068623":[208,7,169,58,141,216,2,128,71,169,59,141,216,2,128,64,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,49,217,160,141,216,2,235,32,188,217,169,255,143,144,80,127,128,19,201,99,208,15,34,237,217,160,141,216,2,169,255,143,144,80,127,128]},{"1068703":[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]},{"1068958":[4,4,4,4,4,5]},{"1068970":[4]},{"1068972":[4]},{"1068975":[4]},{"1068987":[4]},{"1068993":[5]},{"1069003":[4,4,4]},{"1069017":[4,4]},{"1069020":[4]},{"1069024":[4]},{"1069031":[4]},{"1069040":[4]},{"1069111":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069191":[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]},{"1069240":[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]},{"1069279":[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,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]},{"1069436":[2,2]},{"1069444":[2,2,2,2,2,2]},{"1069451":[2]},{"1069453":[2,2]},{"1069456":[2,2,2,2,2,2,2,2,2,2,2]},{"1069468":[2,2,2,2,2]},{"1069474":[2,2,2,2,2,2,2,2,2]},{"1069486":[2,2,2,2,2,2,2,2,2,2,2]},{"1069499":[2]},{"1069501":[2,2,2]},{"1069505":[2,2,2,2,2,2]},{"1069512":[2,2,2,2,2,2,2,2]},{"1069521":[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]},{"1069607":[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]},{"1069793":[4,4,4]},{"1069799":[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,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,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]},{"1070712":[128]},{"1070714":[64]},{"1070716":[32]},{"1070718":[16]},{"1070720":[8]},{"1070722":[4]},{"1070724":[2]},{"1070726":[1,128]},{"1070729":[64]},{"1070731":[32]},{"1070733":[16]},{"1070735":[8]},{"1070737":[4]},{"1070968":[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,72,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,198,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,198,216,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]},{"1071422":[160,48,107,162]},{"1071427":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071440":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071454":[168,152,32,152,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071474":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071498":[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]},{"1071538":[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]},{"1071575":[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]},{"1071614":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071627":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071650":[191]},{"1071652":[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]},{"1071692":[191]},{"1071694":[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,162]},{"1071739":[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,96,100,17,100,176,92,151,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071802":[13,24,105,3,107,189,32,14,201,136,208,9,32,247,218,201,4,144,1,58,107,32,247,218,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071848":[200,49,74,74,74,74,107,40,191]},{"1071858":[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]},{"1071908":[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]},{"1071942":[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,20,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]},{"1072144":[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]},{"1072199":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072225":[165,27,240,121,194,32,165,160,201,14]},{"1072236":[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]},{"1072271":[201,126]},{"1072274":[208,33,165,34,41,255,1,201,104]},{"1072284":[144,60,201,136]},{"1072289":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072309":[201,222]},{"1072312":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072337":[144,7,201,154]},{"1072342":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,62,221,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,62,221,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]},{"1072480":[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]},{"1072533":[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,82,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072586":[174,2,32,224,83,45,240,3,130,253]},{"1072597":[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]},{"1072662":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072762":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072820":[90,194,32,191]},{"1072825":[217,48,133]},{"1072829":[226,32,178]},{"1072833":[122,132]},{"1072836":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072856":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072877":[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]},{"1072989":[208,13,173,11,1,41,255]},{"1072997":[201,59]},{"1073000":[208,63,128,56,201,107]},{"1073007":[208,58,175,19,130,48,201,1]},{"1073016":[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]},{"1073049":[240,14,175,167,80,127,41,4]},{"1073058":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073073":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073092":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073117":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073133":[66,169,255,141,64,33,169,241,133]},{"1073143":[169,247,133,1,169,160,34,29,137]},{"1073153":[169,129,141]},{"1073157":[66,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]},{"1073193":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073209":[232,226,32,168,173]},{"1073215":[32,137,64,208,249,173]},{"1073222":[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]},{"1073259":[32,137,64,208,249,173]},{"1073266":[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]},{"1073317":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073343":[175,169,80,127,240,85,173]},{"1073351":[32,137,64,240,4,92,220,128]},{"1073360":[173]},{"1073362":[32,137,8,240,4,92,220,128]},{"1073371":[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]},{"1073407":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073426":[143,169,80,127,92,220,128]},{"1073434":[173,39,1,205,41,1,208,4,92,220,128]},{"1073446":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073476":[224,255,208,4,92,220,128]},{"1073484":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073500":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073516":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073533":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073547":[141,43,1,92,220,128]},{"1073554":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073573":[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]},{"1073605":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073630":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073672":[90,194,32,191]},{"1073677":[217,48,133]},{"1073681":[226,32,178]},{"1073685":[122,132]},{"1073688":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073711":[141,44,1,72,34,65,221,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]},{"1073780":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073793":[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]},{"1073863":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073876":[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]},{"1073943":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073961":[87,127,107,191]},{"1073966":[18,127,107,156,240,28,156,241,28,169]},{"1073977":[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]},{"1074009":[226,32,183]},{"1074013":[159]},{"1074015":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074034":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074058":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074076":[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]},{"1074102":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074120":[226,32,183]},{"1074124":[159]},{"1074126":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074145":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074165":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074183":[226,32,183]},{"1074187":[159]},{"1074189":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074208":[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]},{"1074239":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074257":[226,32,183]},{"1074261":[159]},{"1074263":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074282":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074302":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074320":[226,32,183]},{"1074324":[159]},{"1074326":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074345":[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]},{"1074374":[133]},{"1074376":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074394":[226,32,183]},{"1074398":[159]},{"1074400":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074419":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074439":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074457":[226,32,183]},{"1074461":[159]},{"1074463":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074482":[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]},{"1074513":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074531":[226,32,183]},{"1074535":[159]},{"1074537":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074556":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074576":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074594":[226,32,183]},{"1074598":[159]},{"1074600":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074619":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074640":[133]},{"1074642":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074660":[226,32,183]},{"1074664":[159]},{"1074666":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074685":[143,148,80,127,226,32,130,213]},{"1074694":[201,128,208,56,169,52,133]},{"1074702":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074720":[226,32,183]},{"1074724":[159]},{"1074726":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074745":[143,148,80,127,226,32,130,153]},{"1074754":[201,144,208,55,169,112,133]},{"1074762":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074780":[226,32,183]},{"1074784":[159]},{"1074786":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074805":[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]},{"1074832":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074850":[226,32,183]},{"1074854":[159]},{"1074856":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074875":[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]},{"1074954":[208,56,169,216,133]},{"1074960":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074978":[226,32,183]},{"1074982":[159]},{"1074984":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075003":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075020":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075038":[226,32,183]},{"1075042":[159]},{"1075044":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075063":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075080":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075098":[226,32,183]},{"1075102":[159]},{"1075104":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075123":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075140":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075158":[226,32,183]},{"1075162":[159]},{"1075164":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075183":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075200":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075218":[226,32,183]},{"1075222":[159]},{"1075224":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075243":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075260":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075278":[226,32,183]},{"1075282":[159]},{"1075284":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075303":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075320":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075338":[226,32,183]},{"1075342":[159]},{"1075344":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075363":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075380":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075398":[226,32,183]},{"1075402":[159]},{"1075404":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075423":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075440":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075458":[226,32,183]},{"1075462":[159]},{"1075464":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075483":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075500":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075518":[226,32,183]},{"1075522":[159]},{"1075524":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075543":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075560":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075578":[226,32,183]},{"1075582":[159]},{"1075584":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075603":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075620":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075638":[226,32,183]},{"1075642":[159]},{"1075644":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075663":[143,148,80,127,226,32,130,235]},{"1075672":[201,12,208,56,169,12,133]},{"1075680":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075698":[226,32,183]},{"1075702":[159]},{"1075704":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075723":[143,148,80,127,226,32,130,175]},{"1075732":[201,13,208,55,169,41,133]},{"1075740":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075758":[226,32,183]},{"1075762":[159]},{"1075764":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075783":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075799":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075817":[226,32,183]},{"1075821":[159]},{"1075823":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075842":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075858":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075876":[226,32,183]},{"1075880":[159]},{"1075882":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075901":[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]},{"1075934":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075949":[171,40,122,250,104,107,34,78,216]},{"1075959":[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]},{"1076023":[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,109,236,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,109,236,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]},{"1076294":[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]},{"1076339":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076363":[226,48,160]},{"1076367":[183]},{"1076369":[201,254,208,39,200,183]},{"1076376":[201,110,208,32,200,183]},{"1076383":[208,27,200,183]},{"1076388":[201,254,208,20,200,183]},{"1076395":[201,107,208,13,200,183]},{"1076402":[201,4,208,6,156,232,28,130,19]},{"1076412":[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]},{"1076440":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076457":[10,10,69,138,41,8]},{"1076464":[240,6,152,24,105,16]},{"1076471":[168,165,35,41,2]},{"1076477":[74,69,138,41,1]},{"1076483":[240,4,152,26,26,168,152,41,255]},{"1076493":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,249,150,164,34,239,147,164,107,34,181,244,160,34,142,173,164,34]},{"1076525":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,129,188,164,107,194,16,34,61,137]},{"1076721":[169,7,141,12,33,175,240,244,126,208,10,34,82,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076773":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,18,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]},{"1076853":[191]},{"1076855":[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]},{"1076929":[107,34,212,152,160,34,186,245,160,107,34,71,153,160,34,80,153,160,162,4,107,34,186,245,160,169,20,133,17,107,34,186,245,160,107,34,63,132,160,34,44,153,160,34,244,187,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]},{"1077004":[2,107,169]},{"1077008":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1077031":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,103,236,160,169]},{"1077053":[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]},{"1077089":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077114":[208,4,169]},{"1077119":[107,201,1]},{"1077123":[208,16,175,197,243,126,41,15]},{"1077132":[201,2]},{"1077135":[176,84,32,233,239,107,201,2]},{"1077144":[208,75,32,233,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077168":[107,175,74,128,48,41,255]},{"1077176":[240,43,175,195,242,126,41,32]},{"1077185":[208,34,173,8,3,41,128]},{"1077193":[240,4,169,1]},{"1077198":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077220":[107,169]},{"1077224":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077247":[96,169]},{"1077251":[96,175,76,128,48,41,255]},{"1077259":[240,4,92,90,189,27,224,118]},{"1077268":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077285":[72,170,191,64,130,48,208,3,130,175]},{"1077296":[58,133]},{"1077299":[10,10,24,101]},{"1077304":[10,10,170,169,22]},{"1077310":[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]},{"1077338":[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]},{"1077381":[137,128]},{"1077384":[240,3,9]},{"1077388":[255,143,106,193,126,191,98,130,48,41,255]},{"1077400":[137,128]},{"1077403":[240,3,9]},{"1077407":[255,143,110,193,126,169]},{"1077415":[56,239,106,193,126,143,108,193,126,169]},{"1077427":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077443":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077461":[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]},{"1077538":[165]},{"1077540":[223]},{"1077542":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077562":[165]},{"1077564":[223]},{"1077566":[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]},{"1077612":[175,74,128,48,41,255]},{"1077619":[240,25,175,93]},{"1077625":[41,255]},{"1077628":[201,20]},{"1077631":[208,13,165,138,41,64]},{"1077638":[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]},{"1077695":[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]},{"1077761":[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]},{"1077795":[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]},{"1077894":[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]},{"1077925":[201,2]},{"1077928":[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]},{"1077960":[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,179,244,160,144,10,208,8,175,140,80,127,207,177,244,160,144,114,175,145,129,48,41,255]},{"1078016":[208,24,169,2]},{"1078021":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078045":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078058":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078072":[143,142,80,127,169,1]},{"1078079":[143,126,80,127,128,54,201,2]},{"1078088":[208,24,169,2]},{"1078093":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,153,218,160,194,48,96,175,146,129,48,41,255]},{"1078130":[240,7,169]},{"1078135":[143,126,80,127,175,142,80,127,207,167,244,160,144,10,208,8,175,140,80,127,207,165,244,160,144,53,175,128,80,127,26,201,10]},{"1078169":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078183":[143,128,80,127,175,140,80,127,56,239,165,244,160,143,140,80,127,175,142,80,127,239,167,244,160,143,142,80,127,128,181,175,142,80,127,207,171,244,160,144,10,208,8,175,140,80,127,207,169,244,160,144,53,175,132,80,127,26,201,10]},{"1078244":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078258":[143,132,80,127,175,140,80,127,56,239,169,244,160,143,140,80,127,175,142,80,127,239,171,244,160,143,142,80,127,128,181,175,142,80,127,207,175,244,160,144,10,208,8,175,140,80,127,207,173,244,160,144,53,175,136,80,127,26,201,10]},{"1078319":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078333":[143,136,80,127,175,140,80,127,56,239,173,244,160,143,140,80,127,175,142,80,127,239,175,244,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]},{"1078441":[16,14]},{"1078445":[60]},{"1078449":[255,255,255,127,175,204,80,127,41,255]},{"1078460":[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]},{"1078531":[240,93,175,145,129,48,41,255]},{"1078540":[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]},{"1078633":[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]},{"1078708":[208,3,32,131,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078738":[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]},{"1078772":[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,33,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]},{"1078846":[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]},{"1078952":[255,157]},{"1078955":[27,157,64,27,157,128,27,157,192,27,157]},{"1078967":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1078981":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1078995":[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]},{"1079033":[208,12,175]},{"1079037":[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]},{"1079111":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079134":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079284":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079300":[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]},{"1079372":[244,111,4]},{"1079376":[115,10,95]},{"1079380":[7]},{"1079386":[34,133,189,164,34,58,135,1,194,16,166,160,191,254,250,160,226,16,34,156,135]},{"1079408":[130,248,160,131,248,160,16,249,160,157,249,160,42,250,160,148,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079444":[32,126,232,232,159]},{"1079450":[32,126,232,232,159]},{"1079456":[32,126,232,232,159]},{"1079462":[32,126,232,232,162,220,25,159]},{"1079471":[32,126,232,232,169,202,12,159]},{"1079480":[32,126,232,232,169,203,12,159]},{"1079489":[32,126,232,232,169,208,8,159]},{"1079498":[32,126,232,232,162,92,26,159]},{"1079507":[32,126,232,232,169,218,12,159]},{"1079516":[32,126,232,232,169,219,12,159]},{"1079525":[32,126,232,232,169,208,8,159]},{"1079534":[32,126,232,232,162,220,26,159]},{"1079543":[32,126,232,232,159]},{"1079549":[32,126,232,232,159]},{"1079555":[32,126,232,232,159]},{"1079561":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079585":[32,126,232,232,159]},{"1079591":[32,126,232,232,159]},{"1079597":[32,126,232,232,159]},{"1079603":[32,126,232,232,162,156,25,159]},{"1079612":[32,126,232,232,169,202,12,159]},{"1079621":[32,126,232,232,169,203,12,159]},{"1079630":[32,126,232,232,169,208,8,159]},{"1079639":[32,126,232,232,162,28,26,159]},{"1079648":[32,126,232,232,169,218,12,159]},{"1079657":[32,126,232,232,169,219,12,159]},{"1079666":[32,126,232,232,169,208,8,159]},{"1079675":[32,126,232,232,162,156,26,159]},{"1079684":[32,126,232,232,159]},{"1079690":[32,126,232,232,159]},{"1079696":[32,126,232,232,159]},{"1079702":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079726":[32,126,232,232,159]},{"1079732":[32,126,232,232,159]},{"1079738":[32,126,232,232,159]},{"1079744":[32,126,232,232,162,220,9,159]},{"1079753":[32,126,232,232,169,202,12,159]},{"1079762":[32,126,232,232,169,203,12,159]},{"1079771":[32,126,232,232,169,208,8,159]},{"1079780":[32,126,232,232,162,92,10,159]},{"1079789":[32,126,232,232,169,218,12,159]},{"1079798":[32,126,232,232,169,219,12,159]},{"1079807":[32,126,232,232,169,208,8,159]},{"1079816":[32,126,232,232,162,220,10,159]},{"1079825":[32,126,232,232,159]},{"1079831":[32,126,232,232,159]},{"1079837":[32,126,232,232,159]},{"1079843":[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]},{"1080076":[1]},{"1080158":[5]},{"1080160":[4]},{"1080188":[2]},{"1080284":[3]},{"1080382":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080399":[134,1,133,2,32,62,252,176,4,92,83,230]},{"1080412":[169,49,133,2,194,32,169]},{"1080420":[192,133]},{"1080423":[162,128,167]},{"1080427":[141,24,33,230]},{"1080432":[230]},{"1080434":[167]},{"1080436":[141,24,33,230]},{"1080441":[230]},{"1080443":[167]},{"1080445":[141,24,33,230]},{"1080450":[230]},{"1080452":[167]},{"1080454":[141,24,33,230]},{"1080459":[230]},{"1080461":[167]},{"1080463":[141,24,33,230]},{"1080468":[230]},{"1080470":[167]},{"1080472":[141,24,33,230]},{"1080477":[230]},{"1080479":[167]},{"1080481":[141,24,33,230]},{"1080486":[230]},{"1080488":[167]},{"1080490":[141,24,33,230]},{"1080495":[230]},{"1080497":[202,208,181,226,32,92,81,230]},{"1080506":[226,48,175,248,194,126,168,32,62,252,194,48,176,10,162]},{"1080523":[160,64]},{"1080526":[92,104,223]},{"1080530":[162]},{"1080532":[192,160]},{"1080536":[169]},{"1080538":[8,139,84,127,177,171,162]},{"1080546":[8,169]},{"1080549":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,65,221,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,214,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,234,167,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,61,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,234,223,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,58,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,75,236,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,135,148,164,194,16,34,163,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,160,148,164,34,12,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,37,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,111,134,164,34,220,134,164,107,169,14,143,1,40]},{"1181301":[169,4,143,1,40]},{"1181307":[169,13,143,1,40]},{"1181313":[169,14,143,1,40]},{"1181319":[169]},{"1181321":[143,1,40]},{"1181325":[169]},{"1181327":[143,1,40]},{"1181331":[169]},{"1181333":[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,1,143,1,40]},{"1181367":[169]},{"1181369":[143,1,40]},{"1181373":[169,1,143,1,40]},{"1181379":[169]},{"1181381":[143,1,40]},{"1181385":[169]},{"1181387":[143,1,40]},{"1181391":[169,10,143,1,40]},{"1181397":[169,13,143,1,40]},{"1181403":[107,72,218,162]},{"1181408":[175]},{"1181410":[40]},{"1181412":[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]},{"1181439":[175]},{"1181441":[40]},{"1181443":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181457":[232,128,235,56,175]},{"1181463":[40]},{"1181465":[72,175]},{"1181468":[40]},{"1181470":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181488":[175]},{"1181490":[40]},{"1181492":[72,175]},{"1181495":[40]},{"1181497":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181517":[40]},{"1181519":[72,175]},{"1181522":[40]},{"1181524":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181544":[40]},{"1181546":[72,175]},{"1181549":[40]},{"1181551":[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]},{"1181636":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181654":[133]},{"1181656":[165,3,41,255]},{"1181661":[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,15,136,164,132,2,100,3,24,101]},{"1181703":[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]},{"1181758":[175]},{"1181760":[40]},{"1181762":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181776":[232,128,235,56,175]},{"1181782":[40]},{"1181784":[72,175]},{"1181787":[40]},{"1181789":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181807":[175]},{"1181809":[40]},{"1181811":[72,175]},{"1181814":[40]},{"1181816":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181836":[40]},{"1181838":[72,175]},{"1181841":[40]},{"1181843":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181863":[40]},{"1181865":[72,175]},{"1181868":[40]},{"1181870":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181890":[40]},{"1181892":[133,4,175]},{"1181896":[40]},{"1181898":[72,175]},{"1181901":[40]},{"1181903":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181923":[40]},{"1181925":[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]},{"1181994":[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]},{"1182033":[153]},{"1182036":[189,2]},{"1182039":[153,2]},{"1182042":[189,4]},{"1182045":[153,64]},{"1182048":[189,6]},{"1182051":[153,66]},{"1182054":[96,189]},{"1182058":[41,255,227,9]},{"1182063":[16,153]},{"1182067":[189,2]},{"1182070":[41,255,227,9]},{"1182075":[16,153,2]},{"1182079":[189,4]},{"1182082":[41,255,227,9]},{"1182087":[16,153,64]},{"1182091":[189,6]},{"1182094":[41,255,227,9]},{"1182099":[16,153,66]},{"1182103":[96,41,255]},{"1182107":[240,3,76,78,137,76,103,137,41,255]},{"1182118":[208,6,162,132,144,76,103,137,58,58,208,6,162,132,144,76,78,137,58,208,6,162,140,144,76,78,137,58,208,6,162,148,144,76,78,137,58,208,6,162,156,144,76,78,137,58,208,6,162,164,144,76,78,137,58,208,6,162,172,144,76,78,137,162,180,144,76,78,137,165,26,41,1]},{"1182192":[240,2,128,14,32,17,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182222":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182238":[5,112,9]},{"1182242":[28,141,142,17,24,105,16]},{"1182250":[141,206,17,175,2,5,112,9]},{"1182259":[28,141,144,17,24,105,16]},{"1182267":[141,208,17,175,4,5,112,9]},{"1182276":[28,141,146,17,24,105,16]},{"1182284":[141,210,17,175,6,5,112,9]},{"1182293":[28,141,148,17,24,105,16]},{"1182301":[141,212,17,175,8,5,112,9]},{"1182310":[28,141,78,18,24,105,16]},{"1182318":[141,142,18,175,10,5,112,9]},{"1182327":[28,141,80,18,24,105,16]},{"1182335":[141,144,18,175,12,5,112,9]},{"1182344":[28,141,82,18,24,105,16]},{"1182352":[141,146,18,175,14,5,112,9]},{"1182361":[28,141,84,18,24,105,16]},{"1182369":[141,148,18,32,188,144,175,142,3,112,41,64]},{"1182382":[240,31,175,64,3,112,41,255]},{"1182391":[240,11,162,4,143,160,220,16,32,78,137,128,40,162,20,143,160,220,16,32,78,137,128,29,175,64,3,112,41,255]},{"1182422":[240,11,162,252,142,160,220,16,32,78,137,128,9,162,252,142,160,220,16,32,103,137,175,140,3,112,41,192]},{"1182451":[201,192]},{"1182454":[208,11,162,44,143,160,224,16,32,78,137,128,49,175,140,3,112,41,64]},{"1182474":[240,11,162,36,143,160,224,16,32,78,137,128,29,175,140,3,112,41,128]},{"1182494":[240,11,162,28,143,160,224,16,32,78,137,128,9,162,28,143,160,224,16,32,103,137,162,52,143,160,228,16,175,66,3,112,32,152,137,175,140,3,112,41,16]},{"1182536":[240,11,162,12,144,160,236,16,32,78,137,128,9,162,12,144,160,236,16,32,103,137,175,140,3,112,41,8]},{"1182565":[240,11,162,4,144,160,232,16,32,78,137,128,9,162,4,144,160,232,16,32,103,137,175,140,3,112,41,3]},{"1182594":[240,11,162,140,143,160,228,17,32,78,137,128,9,162,140,143,160,228,17,32,103,137,175,140,3,112,41,4]},{"1182623":[240,11,162,132,143,160,92,18,32,78,137,128,9,162,132,143,160,92,18,32,103,137,162,68,143,160,92,17,175,69,3,112,32,152,137,162,76,143,160,96,17,175,70,3,112,32,152,137,162,84,143,160,100,17,175,71,3,112,32,152,137,162,92,143,160,104,17,175,72,3,112,32,152,137,162,100,143,160,108,17,175,73,3,112,32,152,137,162,108,143,160,220,17,175,74,3,112,32,152,137,162,116,143,160,224,17,175,75,3,112,32,152,137,162,124,143,160,232,17,175,77,3,112,32,152,137,162,148,143,160,236,17,175,78,3,112,32,152,137,162,156,143,160,96,18,175,80,3,112,32,152,137,162,164,143,160,100,18,175,81,3,112,32,152,137,162,172,143,160,104,18,175,82,3,112,32,152,137,162,180,143,160,108,18,175,83,3,112,32,152,137,160,242,16,175,92,3,112,32,163,137,160,114,17,175,93,3,112,32,163,137,160,242,17,175,94,3,112,32,163,137,160,114,18,175,95,3,112,32,163,137,175,89,3,112,41,255]},{"1182861":[208,11,162,20,144,160,248,16,32,103,137,128,65,58,208,11,162,20,144,160,248,16,32,78,137,128,51,58,208,11,162,28,144,160,248,16,32,78,137,128,37,58,208,11,162,36,144,160,248,16,32,78,137,128,23,58,208,11,162,44,144,160,248,16,32,78,137,128,9,162,20,144,160,248,16,32,103,137,175,90,3,112,41,255]},{"1182946":[208,11,162,52,144,160,120,17,32,103,137,128,37,58,208,11,162,52,144,160,120,17,32,78,137,128,23,58,208,11,162,60,144,160,120,17,32,78,137,128,9,162,68,144,160,120,17,32,78,137,175,91,3,112,41,255]},{"1183003":[208,11,162,76,144,160,248,17,32,78,137,128,23,58,208,11,162,84,144,160,248,17,32,78,137,128,9,162,92,144,160,248,17,32,78,137,175,107,3,112,41,255]},{"1183046":[208,11,162,100,144,160,120,18,32,78,137,128,37,58,208,11,162,108,144,160,120,18,32,78,137,128,23,58,208,11,162,116,144,160,120,18,32,78,137,128,9,162,124,144,160,120,18,32,78,137,175,72,4,112,41,255]},{"1183103":[34,249,151,160,175,6,80,127,41,255]},{"1183114":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183128":[24,105,16,30,141,250,18,162,196,143,160,252,16,175,85,3,112,32,152,137,175,84,3,112,41,255]},{"1183155":[208,11,162,244,143,160,124,17,32,103,137,128,23,58,208,11,162,244,143,160,124,17,32,78,137,128,9,162,252,143,160,124,17,32,78,137,162,188,143,160,252,17,175,86,3,112,32,152,137,162,204,143,160,124,18,175,87,3,112,32,152,137,175,116,3,112,41,4]},{"1183224":[240,11,162,220,143,160,28,19,32,78,137,128,9,162,212,143,160,28,19,32,78,137,175,116,3,112,41,2]},{"1183253":[240,11,162,228,143,160,32,19,32,78,137,128,9,162,212,143,160,32,19,32,78,137,175,116,3,112,41,1]},{"1183282":[240,11,162,236,143,160,36,19,32,78,137,128,9,162,212,143,160,36,19,32,78,137,175,122,3,112,41,2]},{"1183311":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183335":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183359":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183383":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183407":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183431":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183455":[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]},{"1183501":[10,186,10,185,6]},{"1183507":[10]},{"1183509":[10,20,10,19,6]},{"1183515":[10,5,14,6,14]},{"1183521":[30,22,14,5,6,6,6]},{"1183529":[30,22,6,182,14,182,6,182,142,182,134]},{"1183541":[6,21,6,48,6]},{"1183547":[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,249,151,160,175,4,80,127,41,255]},{"1183957":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183971":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183985":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183999":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184023":[34,249,151,160,175,6,80,127,41,255]},{"1184034":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184048":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184062":[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]},{"1184093":[34,249,151,160,175,6,80,127,41,255]},{"1184104":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184118":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184135":[4,169,136,1,157]},{"1184141":[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]},{"1184244":[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]},{"1184296":[141,2,20,165,16,41,255]},{"1184304":[201,1]},{"1184307":[208,107,175,135,128,48,41,255]},{"1184316":[201,2]},{"1184319":[208,95,8,226,48,218,90,34,37,181,164,122,250,40,41,255]},{"1184336":[208,78,169,110,29,141,142,19,24,105,16]},{"1184348":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184361":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184374":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184387":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184400":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184413":[141,216,19,226,32,107,34,131,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]},{"1184529":[189,4,16,9]},{"1184534":[32,157,4,16,202,202,208,243,162,60]},{"1184545":[189,68,16,9]},{"1184550":[32,157,68,16,202,202,208,243,162,60]},{"1184561":[189,132,16,9]},{"1184566":[32,157,132,16,202,202,208,243,162,60]},{"1184577":[189,196,16,9]},{"1184582":[32,157,196,16,202,202,208,243,162,60]},{"1184593":[189,4,17,9]},{"1184598":[32,157,4,17,202,202,208,243,162,60]},{"1184609":[189,68,17,9]},{"1184614":[32,157,68,17,202,202,208,243,162,60]},{"1184625":[189,132,17,9]},{"1184630":[32,157,132,17,202,202,208,243,162,60]},{"1184641":[189,196,17,9]},{"1184646":[32,157,196,17,202,202,208,243,162,60]},{"1184657":[189,4,18,9]},{"1184662":[32,157,4,18,202,202,208,243,162,60]},{"1184673":[189,68,18,9]},{"1184678":[32,157,68,18,202,202,208,243,162,60]},{"1184689":[189,132,18,9]},{"1184694":[32,157,132,18,202,202,208,243,162,60]},{"1184705":[189,196,18,9]},{"1184710":[32,157,196,18,202,202,208,243,162,60]},{"1184721":[189,4,19,9]},{"1184726":[32,157,4,19,202,202,208,243,162,60]},{"1184737":[189,68,19,9]},{"1184742":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184755":[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]},{"1184790":[67,169,24,141,1,67,169]},{"1184798":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184813":[141,2,67,169,208,141,3,67,173]},{"1184823":[33,72,169,128,141]},{"1184829":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184846":[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]},{"1184874":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,135,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184911":[128,51,159]},{"1184915":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184936":[28,141,206,16,24,105,16]},{"1184944":[141,14,17,175,219,3,112,9]},{"1184953":[28,141,208,16,24,105,16]},{"1184961":[141,16,17,175,221,3,112,9]},{"1184970":[28,141,210,16,24,105,16]},{"1184978":[141,18,17,175,223,3,112,9]},{"1184987":[28,141,212,16,24,105,16]},{"1184995":[141,20,17,175,108,3,112,41,255]},{"1185005":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185019":[153]},{"1185022":[200,200,202,208,8,72,152,24,105,44]},{"1185033":[168,104,198,2,208,236,32,17,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185057":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185079":[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]},{"1185118":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,37,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]},{"1185173":[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]},{"1185211":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185225":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,238,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185258":[141,18,11,107,110]},{"1185264":[111]},{"1185266":[112]},{"1185268":[113]},{"1185270":[115]},{"1185272":[116]},{"1185274":[117]},{"1185276":[118]},{"1185278":[120]},{"1185280":[121]},{"1185282":[122]},{"1185284":[123]},{"1185286":[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]},{"1185314":[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]},{"1185350":[143]},{"1185352":[81,127,200,200,183]},{"1185358":[143,2,81,127,200,200,183]},{"1185366":[143,4,81,127,200,200,183]},{"1185374":[143,6,81,127,169,2]},{"1185381":[133,4,34,14,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185409":[170,191]},{"1185412":[81,127,72,169]},{"1185418":[143]},{"1185420":[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]},{"1185482":[72,165,2,72,169,188,234,133]},{"1185491":[169,1]},{"1185494":[133,2,138,74,34,43,150,164,133,12,104,133,2,104,133]},{"1185510":[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]},{"1185542":[189,222,152,159]},{"1185547":[201,126,232,232,224,128,144,243,160]},{"1185557":[162]},{"1185559":[218,187,191,21,130,48,250,41,31]},{"1185569":[10,10,10,90,168,185,222,151,159,24,201,126,185,224,151,159,26,201,126,185,226,151,159,88,201,126,185,228,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,89,151,40,122,250,104,171,107,72,218,173]},{"1185629":[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]},{"1185659":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185680":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185703":[33,72,169,128,141]},{"1185709":[33,169,1,141,11,66,104,141]},{"1185718":[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]},{"1185746":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185771":[30,22,14]},{"1185775":[6,21,6,48,6]},{"1185781":[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]},{"1186151":[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]},{"1186227":[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]},{"1186324":[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]},{"1186381":[39,1,1,1,1,1,2,2,39,39,39]},{"1186397":[39,1,1,1,32,1,2,2,39,39,39]},{"1186413":[39,1,1,1,1,32,2,2,2,2,2]},{"1186429":[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]},{"1186473":[44]},{"1186475":[78,79,1,1,1,1,1,1,2,1,2]},{"1186487":[46]},{"1186491":[2,34,1,1,2]},{"1186499":[24,18,2,2]},{"1186504":[72]},{"1186509":[1,1,2]},{"1186513":[1,1,16,26,2]},{"1186520":[72]},{"1186525":[16,16,2]},{"1186529":[1,1,1,1]},{"1186535":[72]},{"1186538":[9]},{"1186541":[2,2,2]},{"1186545":[1,1,43]},{"1186550":[9]},{"1186557":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186621":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186637":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186654":[2,2,2]},{"1186659":[2,2,2,2]},{"1186670":[2,2,2,2,41,2,2,2,2]},{"1186685":[1,1,1,1,1,1,1,1,1,1,1]},{"1186699":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186733":[1,1,67,1,1,1,1,1,2,2,2]},{"1186749":[80,2,84,81,87,87,86,86,39,39,39]},{"1186761":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186777":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186793":[72,2,2]},{"1186797":[39,2,82,83,9,1,26,16,85,85]},{"1186809":[72,2,2]},{"1186813":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186835":[9,9,9,9,9,72,9,41]},{"1186844":[75,2,2,2]},{"1186849":[8,2,2]},{"1186856":[1]},{"1186859":[32]},{"1186861":[2,2,2,2,2,2,2]},{"1186870":[1,1,1,2]},{"1186875":[8]},{"1186877":[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]},{"1186977":[240,2,128,23,169,15,2,166,138,224,51]},{"1186989":[208,4,143,168,34,126,224,47]},{"1186998":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187012":[208,5,175,135,242,126,107,169,32]},{"1187022":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187045":[191,38,157,164,197,34,176,29,191,40,157,164,197,34,144,21,191,42,157,164,197,32,176,13,191,44,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187087":[201,184]},{"1187090":[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]},{"1187121":[10]},{"1187123":[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]},{"1187153":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187176":[143]},{"1187178":[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]},{"1187209":[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]},{"1187252":[112]},{"1187254":[240,14,48,15,32,1,96,1,208,10]},{"1187265":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187284":[64]},{"1187286":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187300":[201,5]},{"1187303":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187319":[208,18,173,10,4,41,255]},{"1187327":[201,67]},{"1187330":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187346":[208,25,173,10,4,41,255]},{"1187354":[201,91]},{"1187357":[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]},{"1187393":[176,5,10,170,252,82,158,171,194,48,162,30]},{"1187406":[169,190,13,107,82,159,82,159,82,159,83,159,82,159,126,159,82,159,120,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,199,160,82,159,82,159,82,159,206,160,82,159,82,159,82,159,82,159,82,159,82,159,237,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,135,163,82,159,82,159,82,159,82,159,82,159,82,159,163,163,82,159,101,167,232,169,82,159,239,169,82,159,82,159,82,159,82,159,38,170,82,159,251,166,82,159,82,159,82,159,82,159,82,159,82,159,156,170,82,159,19,171,82,159,241,170,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,26,171,82,159,82,159,82,159,33,171,82,159,82,159,82,159,82,159,82,159,82,159,61,171,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,15,173,29,173,82,159,82,159,22,173,82,159,36,173,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187682":[141,186,41,169,4,1,141,188,41,169,198]},{"1187694":[141,52,42,141,56,42,141,58,42,169,52]},{"1187706":[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]},{"1187809":[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]},{"1187956":[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]},{"1188035":[141,38,40,96,169,52]},{"1188042":[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]},{"1188155":[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]},{"1188191":[141,40,44,141,174,47,169,52]},{"1188200":[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]},{"1188239":[141,54,44,141,168,47,169,174]},{"1188248":[141,172,44,169,175]},{"1188254":[141,174,44,169,126]},{"1188260":[141,176,44,169,127]},{"1188266":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188284":[141,44,45,169,20]},{"1188290":[141,46,45,169,21]},{"1188296":[141,48,45,169,168]},{"1188302":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188320":[141,172,45,169,28]},{"1188326":[141,174,45,169,29]},{"1188332":[141,176,45,169,118]},{"1188338":[141,178,45,169,241]},{"1188344":[141,44,46,169,78]},{"1188350":[141,46,46,169,79]},{"1188356":[141,48,46,169,217]},{"1188362":[141,50,46,169,154]},{"1188368":[141,172,46,169,155]},{"1188374":[141,174,46,169,156]},{"1188380":[141,176,46,169,149]},{"1188386":[141,178,46,169,52]},{"1188392":[141,40,48,141,44,48,169,53]},{"1188401":[141,42,48,141,50,48,169,218]},{"1188410":[141,46,48,169,226]},{"1188416":[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]},{"1188497":[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]},{"1188581":[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]},{"1188638":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188654":[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]},{"1188746":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188767":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188783":[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]},{"1188825":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188846":[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]},{"1188912":[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]},{"1188942":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188960":[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]},{"1188987":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189008":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189026":[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]},{"1189095":[141,226,34,169,2,3,141,228,34,169,204]},{"1189107":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189131":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189152":[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]},{"1189194":[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]},{"1189227":[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]},{"1189322":[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]},{"1189455":[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]},{"1189548":[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]},{"1189623":[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]},{"1189757":[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]},{"1189802":[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]},{"1190120":[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]},{"1190165":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190183":[141,134,41,169,229]},{"1190189":[141,136,41,169]},{"1190194":[1,141,162,41,169,113]},{"1190201":[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]},{"1190246":[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]},{"1190282":[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]},{"1190309":[141,26,44,169,206]},{"1190315":[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]},{"1190379":[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]},{"1190434":[141,86,47,96,169,116,7,141]},{"1190443":[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]},{"1190485":[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]},{"1190701":[141,162,36,141,164,36,169,227]},{"1190710":[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]},{"1190837":[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]},{"1190867":[141,30,50,169,218]},{"1190873":[141,32,50,141,154,50,169,225]},{"1190882":[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]},{"1190927":[141,26,50,169,242]},{"1190933":[141,184,59,169,8,1,141,56,60,169,52]},{"1190945":[141,190,59,175,197,243,126,41,255]},{"1190955":[201,3]},{"1190958":[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]},{"1191101":[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,115,176,194,32,166,6,138,9]},{"1191332":[36,143,90,199,126,166,7,138,9]},{"1191342":[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,17,176,166,4,138,9]},{"1191375":[36,143,80,199,126,166,5,138,9]},{"1191385":[36,143,82,199,126,166,6,138,9]},{"1191395":[36,143,84,199,126,166,7,138,9]},{"1191405":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,115,176,194,32,166,6,138,9]},{"1191438":[36,143,96,199,126,166,7,138,9]},{"1191448":[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]},{"1191480":[175,24,244,126,32,76,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191502":[36,143,44,199,126,166,6,138,9]},{"1191512":[36,143,46,199,126,166,7,138,9]},{"1191522":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,76,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191558":[36,143,52,199,126,166,6,138,9]},{"1191568":[36,143,54,199,126,166,7,138,9]},{"1191578":[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]},{"1191611":[240,4,34,141,176,164,226,32,175,111,243,126,201,255,240,34,32,115,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191642":[9]},{"1191644":[36,143,100,199,126,166,7,138,9]},{"1191654":[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]},{"1191685":[24,105,7]},{"1191689":[41,248,255,170,175,202,80,127,41,255]},{"1191700":[208,3,130,215]},{"1191705":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191718":[165,26,41,12]},{"1191723":[74,74,240,58,201,1]},{"1191730":[240,98,201,2]},{"1191735":[208,3,130,180]},{"1191740":[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]},{"1191973":[144,6,200,233,100]},{"1191979":[128,245,132,5,160,144,201,10]},{"1191988":[144,6,200,233,10]},{"1191994":[128,245,132,6,160,144,201,1]},{"1192003":[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]},{"1192093":[240,11,175,100,243,126,63,206,176,164,208,1,107,124,234,176,32,115,176,194,32,166,6,138,9]},{"1192119":[36,143,148,199,126,166,7,138,9]},{"1192129":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192143":[128]},{"1192145":[64]},{"1192147":[32]},{"1192149":[16]},{"1192151":[8]},{"1192153":[4]},{"1192155":[2]},{"1192157":[1,128]},{"1192160":[64]},{"1192162":[32]},{"1192164":[16]},{"1192166":[8]},{"1192168":[4]},{"1192170":[6,177,6,177,33,177,58,177,86,177,111,177,136,177,161,177,186,177,213,177,240,177,11,178,36,178,63,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,173,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,173,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,173,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,173,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,173,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,173,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,173,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,173,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,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,173,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,173,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,173,176,107,159]},{"1192540":[4,112,159]},{"1192544":[5,112,159]},{"1192548":[6,112,159]},{"1192552":[7,112,159]},{"1192556":[8,112,159]},{"1192560":[9,112,159]},{"1192564":[10,112,159]},{"1192568":[11,112,159]},{"1192572":[12,112,159]},{"1192576":[13,112,159]},{"1192580":[14,112,159]},{"1192584":[15,112,107,159]},{"1192589":[244,126,159]},{"1192593":[101,127,159]},{"1192597":[102,127,159]},{"1192601":[103,127,159]},{"1192605":[104,127,159]},{"1192609":[105,127,159]},{"1192613":[106,127,159]},{"1192617":[107,127,159]},{"1192621":[108,127,159]},{"1192625":[109,127,159]},{"1192629":[110,127,159]},{"1192633":[111,127,107,72,226,48,173]},{"1192641":[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]},{"1192669":[141]},{"1192671":[67,169,128,141,1,67,169]},{"1192679":[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]},{"1192707":[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]},{"1192747":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192762":[72,171,173]},{"1192766":[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]},{"1192796":[67,141,1,67,169]},{"1192802":[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]},{"1192830":[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]},{"1192870":[67,194,48,171,104,162]},{"1192878":[138,107,165,17,34,156,135]},{"1192886":[197,179,164,221,179,164,252,179,164,253,180,164,19,181,164,169,128,141,16,7,34,61,137]},{"1192910":[34,51,131]},{"1192914":[34,135,148,164,169,7,133,20,230,17,107,32,28,182,100,200,100,201,34,37,181,164,208,11,162,15,169]},{"1192942":[159]},{"1192944":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,140,182,165,246,41,16,240,3,32,216,183,165,246,41,32,240,3,32,229,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,217,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,229,183,128,52,201,242,208,5,32,216,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193135":[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,138,183,32,63,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,37,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]},{"1193259":[16,112,208,3,130,161]},{"1193266":[202,16,244,194,32,162,14,169]},{"1193276":[159,208,80,127,202,202,16,248,32,216,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]},{"1193317":[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]},{"1193346":[133,4,34,14,178,160,226,32,175]},{"1193356":[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]},{"1193431":[107,169]},{"1193435":[133]},{"1193437":[133,2,169,11]},{"1193442":[133,4,166]},{"1193446":[191]},{"1193448":[16,112,58,41,31]},{"1193454":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193479":[16,6,24,105,8]},{"1193485":[230,2,133,4,165]},{"1193491":[26,133]},{"1193494":[201,16]},{"1193497":[144,201,96,173]},{"1193502":[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]},{"1193530":[141]},{"1193532":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,180,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]},{"1193610":[67,96,194,32,165,200,41,255]},{"1193619":[10,170,191,215,182,164,24,105,132,96,235,143,2,17]},{"1193634":[165,201,41,255]},{"1193639":[10,170,191,247,182,164,24,105,163,97,235,143,18,17]},{"1193654":[235,24,105,32]},{"1193659":[235,143,30,17]},{"1193664":[235,24,105,3]},{"1193669":[235,143,38,17]},{"1193674":[235,24,105,61]},{"1193679":[235,143,46,17]},{"1193684":[226,32,96,64]},{"1193689":[67]},{"1193691":[70]},{"1193693":[73]},{"1193695":[76]},{"1193697":[79]},{"1193699":[82]},{"1193701":[85]},{"1193703":[160]},{"1193705":[163]},{"1193707":[166]},{"1193709":[169]},{"1193711":[172]},{"1193713":[175]},{"1193715":[178]},{"1193717":[181]},{"1193719":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193739":[66]},{"1193741":[69]},{"1193743":[72]},{"1193745":[75]},{"1193747":[78]},{"1193749":[81]},{"1193751":[84]},{"1193753":[87]},{"1193755":[159]},{"1193757":[162]},{"1193759":[165]},{"1193761":[168]},{"1193763":[171]},{"1193765":[174]},{"1193767":[177]},{"1193769":[180]},{"1193771":[183]},{"1193773":[255]},{"1193775":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193798":[10,170,191,215,182,164,24,105,132,96,235,143,10,17]},{"1193813":[165,201,41,255]},{"1193818":[10,170,191,247,182,164,24,105,163,97,235,143,58,17]},{"1193833":[235,24,105,32]},{"1193838":[235,143,70,17]},{"1193843":[235,24,105,3]},{"1193848":[235,143,78,17]},{"1193853":[235,24,105,61]},{"1193858":[235,143,86,17]},{"1193863":[226,32,96,194,48,162,15]},{"1193871":[191]},{"1193873":[16,112,41,255]},{"1193878":[155,10,10,10,133]},{"1193884":[152,10,10,10,10,133,3,166]},{"1193893":[191,214,151,164,166,3,157,6,16,166]},{"1193904":[191,216,151,164,166,3,157,8,16,166]},{"1193915":[191,218,151,164,166,3,157,14,16,166]},{"1193926":[191,220,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]},{"1193973":[51,1,10,2,10]},{"1193979":[2,5,14,6,14]},{"1193985":[2]},{"1193987":[6,21,6]},{"1193991":[2,12,14,13,14]},{"1193997":[2,98,6,99,6]},{"1194003":[2,10,2,11,2]},{"1194009":[2,32,14,33,14]},{"1194015":[2,133,26,134,26]},{"1194021":[2,171,30,171,30,97,195]},{"1194029":[51,17,10,18,10]},{"1194035":[2]},{"1194037":[30,22,14]},{"1194041":[2,48,6]},{"1194045":[30]},{"1194047":[2,28,14,28,78]},{"1194053":[2,114,6,115,6]},{"1194059":[2,26,2,27,2]},{"1194065":[2,48,14,49,14]},{"1194071":[2,149,26,150,26]},{"1194077":[2,171,30,171,30,98,3]},{"1194085":[51,7,10,23,202]},{"1194091":[2,8,10,24,202]},{"1194097":[2,9,10,25,202]},{"1194103":[2,44,6,44,70]},{"1194109":[2,34,2,35,2]},{"1194115":[2,36,2,37,2]},{"1194121":[2,38,14,39,14]},{"1194127":[2,40,10,41,10]},{"1194133":[2,138,29]},{"1194137":[2,98,35]},{"1194141":[51,23,10,7,202]},{"1194147":[2,24,10,8,202]},{"1194153":[2,25,10,9,202]},{"1194159":[2,60,6,61,6]},{"1194165":[2,50,2,51,2]},{"1194171":[2,52,2,53,2]},{"1194177":[2,54,14,55,14]},{"1194183":[2,56,10,57,10]},{"1194189":[2,154,29]},{"1194193":[2,98,99]},{"1194197":[51,42,26,43,26]},{"1194203":[2,64,30,65,30]},{"1194209":[2,66,26,66,90]},{"1194215":[2,29,6,30,6]},{"1194221":[2,72,6,73,6]},{"1194227":[2,74,14,75,14]},{"1194233":[2,76,22,77,22]},{"1194239":[2,78,2,79,2]},{"1194245":[2]},{"1194247":[2,139,29,98,131]},{"1194253":[51,58,26,59,26]},{"1194259":[2,80,30,81,30]},{"1194265":[2,82,26,83,26]},{"1194271":[2,45,6,46,6]},{"1194277":[2,88,6,89,6]},{"1194283":[2,90,14,91,14]},{"1194289":[2,92,22,93,22]},{"1194295":[2,94,2,95,2]},{"1194301":[2]},{"1194303":[2,155,29,98,195]},{"1194309":[51,14,14,15,14]},{"1194315":[2,100,6,101,6]},{"1194321":[2,109,10,110,10]},{"1194327":[2,111,26,111,90]},{"1194333":[2,129,6,129,70]},{"1194339":[2,130,10,131,10]},{"1194345":[2,132,6,132,70]},{"1194351":[2,47,74,47,10]},{"1194357":[2,103,94,103,30,98,227]},{"1194365":[51,31,78,31,14]},{"1194371":[2,116,6,117,6]},{"1194377":[2,125,10,126,10]},{"1194383":[2,127,26,127,90]},{"1194389":[2,145,6,145,70]},{"1194395":[2,146,10,147,10]},{"1194401":[2,148,6,148,70]},{"1194407":[2,62,10,63,10]},{"1194413":[2,103,222,103,158,255,255,96,132]},{"1194423":[3,134,29,134,29,96,164]},{"1194431":[3,150,29,150,29,96,135]},{"1194439":[3,134,29,134,29,96,167]},{"1194447":[3,150,29,150,29,96,138]},{"1194455":[3,134,29,134,29,96,170]},{"1194463":[3,150,29,150,29,96,141]},{"1194471":[3,134,29,134,29,96,173]},{"1194479":[3,150,29,150,29,96,144]},{"1194487":[3,134,29,134,29,96,176]},{"1194495":[3,150,29,150,29,96,147]},{"1194503":[3,134,29,134,29,96,179]},{"1194511":[3,150,29,150,29,96,150]},{"1194519":[3,134,29,134,29,96,182]},{"1194527":[3,150,29,150,29,96,153]},{"1194535":[3,134,29,134,29,96,185]},{"1194543":[3,150,29,150,29,96,228]},{"1194551":[3,134,29,134,29,97,4]},{"1194559":[3,150,29,150,29,96,231]},{"1194567":[3,134,29,134,29,97,7]},{"1194575":[3,150,29,150,29,96,234]},{"1194583":[3,134,29,134,29,97,10]},{"1194591":[3,150,29,150,29,96,237]},{"1194599":[3,134,29,134,29,97,13]},{"1194607":[3,150,29,150,29,96,240]},{"1194615":[3,134,29,134,29,97,16]},{"1194623":[3,150,29,150,29,96,243]},{"1194631":[3,134,29,134,29,97,19]},{"1194639":[3,150,29,150,29,96,246]},{"1194647":[3,134,29,134,29,97,22]},{"1194655":[3,150,29,150,29,96,249]},{"1194663":[3,134,29,134,29,97,25]},{"1194671":[3,150,29,150,29,96,196]},{"1194679":[3]},{"1194681":[2]},{"1194683":[2,96,196]},{"1194687":[3,103,222,103,158,97,130]},{"1194695":[7]},{"1194697":[2]},{"1194699":[2]},{"1194701":[2]},{"1194703":[2,97,162,128,3]},{"1194709":[2]},{"1194711":[2,97,165,128,3]},{"1194717":[2]},{"1194719":[2,97,226]},{"1194723":[7]},{"1194725":[2]},{"1194727":[2]},{"1194729":[2]},{"1194731":[2,97,130]},{"1194735":[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]},{"1194763":[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]},{"1194802":[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]},{"1194929":[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]},{"1194989":[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,244,187,164,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,90,160,24,34,128,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195108":[208,11,40,90,160,24,34,128,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,159,155,160,107,72,175,67,244,126,208,4,34,168,192,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,244,187,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,244,187,164,104,34,168,160,2,107,58,16,8,169]},{"1195364":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195378":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,244,187,169,1,143]},{"1195404":[80,127,156,70,6,156,66,6,76,244,187,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,168,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195627":[83,127,201,3,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,158,191,164,226,48,169]},{"1195665":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195723":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195781":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,41,191,34,231,244,30,32,105,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,73,133,8,169,191,105]},{"1195838":[133,9,34,117,223,5,34,92,220,6,96]},{"1195851":[247,255,198]},{"1195856":[2]},{"1195861":[200]},{"1195864":[2]},{"1195867":[248,255,198]},{"1195872":[2]},{"1195877":[202,64]},{"1195880":[2,175,103,129,48,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,153,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195938":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195964":[98,41,110,41,107,41,105,41,127]},{"1195974":[111,41,97,41,106,41,112,41,127]},{"1195984":[112,41,107,41,127]},{"1195990":[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]},{"1196037":[33,218,162,128,142]},{"1196043":[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]},{"1196071":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196088":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1196179":[208,33,8,194,48,162]},{"1196187":[224,64]},{"1196190":[176,11,169,127]},{"1196195":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196218":[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]},{"1196265":[240,7,224,2,240,3,130,137]},{"1196274":[130,132]},{"1196277":[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]},{"1196423":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196440":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196456":[224,28]},{"1196459":[176,12,191,170,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196476":[175,211,244,126,41,255]},{"1196483":[58,201,64]},{"1196487":[176,63,10,10,10,10,10,170,192,60]},{"1196498":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196521":[176,11,169,127]},{"1196526":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,141,184,160,122,218,90,8,194,48,162]},{"1196682":[224,16]},{"1196685":[176,12,191,198,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196702":[175,152,192,126,41,255]},{"1196709":[58,201,64]},{"1196713":[176,63,10,10,10,10,10,170,192,48]},{"1196724":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196747":[176,11,169,127]},{"1196752":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[176]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,193,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,52,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[242]},{"5002":[183]},{"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,122,199,160]},{"21847":[34,82,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,235,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,126,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[110,163,160]},{"30994":[240,163,160]},{"31001":[110,163,160]},{"31011":[240,163,160]},{"31046":[244,187,164]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[219,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,23,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,120,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,158,150,164,234]},{"60423":[34,17,194,164]},{"60790":[247,188,164]},{"61077":[28,181,160]},{"61133":[34,108,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,16,239,160]},{"65607":[28,238,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,87,194,160,234]},{"65894":[34,133,194,160]},{"66284":[34,168,194,160]},{"66292":[92,68,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,18,241,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,136,189,164,234,234]},{"67934":[139,248,160]},{"68474":[34,135,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[143,248,160]},{"69737":[34,221,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[143,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,61,246,160,234]},{"72216":[173,187,164]},{"72241":[34,133,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[19,238,160]},{"73340":[34,241,128,160,234]},{"73937":[34,149,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,21,239,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,4,248,160,234]},{"78138":[205,246,160]},{"78172":[34,35,189,164,34,219,153,160,234,234]},{"79603":[34,225,187,164]},{"79767":[34,151,189,164]},{"82376":[234,234]},{"82676":[143,248,160]},{"87784":[234,234,234]},{"87892":[34,26,246,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,79,240,160]},{"90651":[34,115,237,160,234,234]},{"93230":[34,222,157,164,234,234]},{"93325":[34,154,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,222,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,189,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[91,194,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[95,181,160]},{"173058":[95,181,160]},{"173307":[95,181,160]},{"173320":[95,181,160]},{"183384":[34,250,247,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188235":[237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,158,236,160,128,13]},{"189655":[34,12,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[34,194,164]},{"191439":[34,41,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,61,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,81,195,160,234]},{"192121":[169,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,10,179,160]},{"193157":[34,3,179,160]},{"193440":[34,240,219,160]},{"193472":[51,236,160]},{"193546":[34,240,219,160]},{"193578":[251,235,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[209,194,160]},{"194141":[34,193,195,160,234,234,234,234,234]},{"194177":[34,39,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,158,236,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,39,199,160]},{"195589":[89,176,160]},{"195710":[34,117,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[50,176,160]},{"195909":[60,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[168,192,160]},{"198721":[34,210,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,22,187,164]},{"198942":[34,61,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,8,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[243,175,160]},{"199993":[34,70,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,173,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,36,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[53,194,164]},{"212610":[72,194,164]},{"213139":[11,191,164]},{"213169":[147,133,160]},{"214205":[34,168,180,160]},{"214972":[58,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,68,188,164]},{"217579":[34,74,193,160]},{"224597":[34,240,218,160]},{"224693":[34,4,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,18,220,160,234]},{"226304":[34,69,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,243,238,160]},{"229634":[34,101,192,164]},{"230816":[40,179,160]},{"230955":[40,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,252,238,160,234]},{"233987":[74,187,164]},{"234731":[34,167,187,164]},{"234747":[34,7,239,160]},{"235953":[34,35,133,160,144,3]},{"236024":[200,204,160]},{"236047":[42,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[249,197,160]},{"238498":[34,130,196,160,128,3]},{"238562":[34,197,198,160,240,4,234]},{"238751":[34,134,220,160]},{"238964":[34,134,220,160]},{"239190":[34,134,220,160]},{"239964":[61,189,164]},{"240044":[92,207,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,102,219,160]},{"241165":[34,102,219,160]},{"241175":[34,235,128,164]},{"241294":[34,102,219,160]},{"241304":[34,235,128,164]},{"241814":[34,102,219,160,24,125,139,176]},{"241869":[152,236,160]},{"241877":[34,102,219,160,24,125,139,176]},{"242942":[34,12,237,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,188,188,164,234]},{"243067":[234,234,34,181,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,132,219,160,234]},{"250478":[34,186,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,13,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,17,242,160,234]},{"273608":[34,164,182,160,76,230,172]},{"275716":[34,136,182,160,234]},{"276202":[34,197,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,115,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,86,239,160,234,234]},{"279880":[92,250,194,164]},{"280037":[34,44,235,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[152,236,160]},{"280106":[92,198,226,160,234]},{"280265":[168,210,160]},{"280287":[168,209,160]},{"280314":[168,210,160]},{"280335":[34,196,179,160]},{"282028":[34,82,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,68,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,102,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,201,200,160,234]},{"296453":[92,110,194,164,234]},{"296466":[168,211]},{"296471":[169,211]},{"296480":[168,213]},{"296488":[168,211]},{"296493":[169,211]},{"296502":[168,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[168,214]},{"296810":[184,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[216,206]},{"297052":[200,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,96,226,160,234]},{"297144":[168,209]},{"297200":[216,206]},{"297225":[200,207]},{"297263":[169,215]},{"297292":[34,20,195,160]},{"297309":[176,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,12,195,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,8,224,160]},{"324619":[34,11,153,160]},{"324675":[34,166,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,100,237,160,34,142,188,164,234,234,234,234,234,234]},{"324996":[34,149,194,160]},{"325098":[169,2,0,234]},{"325131":[34,148,237,160]},{"325203":[34,139,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":[44,239,160]},{"342245":[34,59,132,160,34,15,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,125,247,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,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[219,187,164]},{"409856":[34,25,227,160]},{"410028":[94,255,161]},{"410347":[34,139,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[233,238,160]},{"412876":[92,89,178,164]},{"413015":[107]},{"413094":[110,148,164]},{"413109":[34,64,237,160]},{"413141":[34,126,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,19,149,164,234,234,234,234]},{"413264":[34,58,149,164,234,234,234,234,234,234]},{"413297":[92,97,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,188,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,126,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,90,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,235,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,90,178,164]},{"415678":[34,147,149,164]},{"416378":[6,150,164]},{"416491":[34,221,149,164,234]},{"416529":[34,184,149,164]},{"416588":[234,234,234,234]},{"416912":[34,212,149,164]},{"416937":[34,198,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":[69,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,94,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,106,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,136,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,85,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,23,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,106,155,160]},{"450360":[34,224,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,76,184,160,234]},{"450492":[34,74,155,160,234,234,234]},{"450861":[34,98,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,221,155,160,234]},{"452559":[34,203,155,160,234]},{"452581":[34,239,155,160,234]},{"452634":[96]},{"453064":[34,10,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,98,193,160,234,234,76,230,236]},{"453867":[34,1,156,160,234]},{"453892":[34,19,156,160]},{"454092":[34,124,155,160,234,234,234,234,234]},{"454233":[34,124,155,160,234,234,234,234,234]},{"454256":[34,202,194,160,234]},{"454282":[34,124,155,160,234,234,234,234,234]},{"454459":[34,124,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,209,216,160]},{"457513":[34,247,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,40,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,84,237,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,42,227,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[36,235,160]},{"487403":[169,2,0,234]},{"487935":[34,82,227,160]},{"488156":[34,82,227,160]},{"488213":[34,82,227,160]},{"488242":[34,82,227,160]},{"488309":[34,82,227,160]},{"488340":[34,82,227,160]},{"488721":[34,82,227,160]},{"489560":[34,82,227,160]},{"490022":[34,82,227,160]},{"490060":[34,82,227,160]},{"490164":[34,82,227,160]},{"490184":[34,82,227,160]},{"490209":[34,82,227,160]},{"490257":[34,82,227,160]},{"490438":[34,98,227,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,140,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,80,241,160]},{"900244":[34,164,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,155,241,160,234]},{"900437":[92,53,240,160,234]},{"900447":[34,12,246,160,234,234,234]},{"900458":[34,225,187,164]},{"901799":[34,94,153,164,107,32,222,201,107]},{"903876":[34,221,241,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,138,235,160,96]},{"954852":[187,181,160]},{"955117":[105,235,160]},{"955529":[183,181,160]},{"962925":[148,181,160]},{"962951":[148,181,160]},{"963167":[148,181,160]},{"963214":[148,181,160]},{"965041":[148,181,160]},{"965069":[148,181,160]},{"965214":[148,181,160]},{"965298":[148,181,160]},{"965316":[148,181,160]},{"967797":[34,252,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,22,180,160]},{"972824":[99,181,160]},{"972834":[99,181,160]},{"972851":[99,181,160]},{"974665":[92,149,197,160,234]},{"974706":[210,197,160]},{"974722":[183,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,166,197,160,234,234]},{"975332":[34,132,197,160,234,234]},{"975401":[255]},{"976357":[144,181,160]},{"976423":[144,181,160]},{"978658":[128,181,160]},{"979078":[34,4,220,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":[4,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,96,196,160]},{"983466":[128,181,160]},{"983651":[128,181,160]},{"988539":[140,181,160]},{"988657":[140,181,160]},{"988668":[140,181,160]},{"988874":[140,181,160]},{"988902":[140,181,160]},{"989142":[140,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[132,181,160]},{"999246":[136,181,160]},{"999265":[136,181,160]},{"999359":[136,181,160]},{"999574":[136,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,90,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[103,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[103,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,166,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,122,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,141,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,121,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,112,179,160,122,250,107,218,90,34,168,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,43,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,43,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,43,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,43,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,43,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,43,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,43,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,43,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,43,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,43,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,43,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,43,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,43,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,43,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,43,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,43,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,43,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,43,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,170,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,98,217,160,76,49,145,201,251,208,7,34,30,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,170,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,98,217,160,76,114,147,201,251,208,7,34,30,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,170,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,98,217,160,128,8,201,99,208,4,34,30,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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]},{"1055520":[240,5,169,8]},{"1055525":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055538":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055560":[2,107,175,19,130,48,41,255]},{"1055569":[240,5,169,8]},{"1055574":[128,7,175,72,128,48,41,255]},{"1055583":[24,101,234,48,3,169]},{"1055591":[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]},{"1055618":[201,255]},{"1055621":[208,1,107,175,22,244,126,41,32]},{"1055631":[240,4,169]},{"1055636":[107,173,12,4,41,255]},{"1055643":[201,255]},{"1055646":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055670":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,81,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055702":[107,169,136,21,133]},{"1055708":[107,175,69,128,48,208,6,169,16,22,133]},{"1055720":[107,169,144,21,133]},{"1055726":[107,175,69,128,48,208,6,169,24,22,133]},{"1055738":[107,169,152,21,133]},{"1055744":[107,175,69,128,48,208,6,169,32,22,133]},{"1055756":[107,169,160,21,133]},{"1055762":[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]},{"1055854":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055868":[144,240,175,22,244,126,41,32]},{"1055877":[240,3,130,200,1,175,69,128,48,41,1]},{"1055889":[208,3,130,231]},{"1055894":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055916":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055933":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055950":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055967":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055984":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056001":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056018":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056035":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056052":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056069":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056086":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056103":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056120":[141,165,22,194,32,175,69,128,48,41,2]},{"1056132":[208,3,130,201]},{"1056137":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056150":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056165":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056180":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056195":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056210":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056225":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056240":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056255":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056270":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056285":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056300":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056315":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056330":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056345":[208,3,130,170,1,175,69,128,48,41,4]},{"1056357":[208,3,130,201]},{"1056362":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056375":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056390":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056405":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056420":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056435":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056450":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056465":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056480":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056495":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056510":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056525":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056540":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056555":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056570":[208,3,130,201]},{"1056575":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056588":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056603":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056618":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056633":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056648":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056663":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056678":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056693":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056708":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056723":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056738":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056753":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056768":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056787":[191,82,161,160,157,234,18,191,102,161,160,157,42,19,191,122,161,160,157,106,19,191,142,161,160,157,170,19,191,162,161,160,157,234,19,191,182,161,160,157,42,20,191,202,161,160,157,106,20,191,222,161,160,157,170,20,191,242,161,160,157,234,20,232,232,224,20]},{"1056855":[144,186,175,116,243,126,41,4]},{"1056864":[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]},{"1056897":[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]},{"1056930":[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]},{"1056963":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056984":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057005":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057026":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057047":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057068":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057089":[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]},{"1057712":[143,114,243,126,173,10,2,208,14,169]},{"1057723":[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]},{"1057757":[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]},{"1057838":[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]},{"1057881":[165,12,201,232,3,144,3,130,24]},{"1057891":[201,100]},{"1057894":[144,3,130,97]},{"1057899":[201,10]},{"1057902":[144,3,130,170]},{"1057907":[201,1]},{"1057910":[144,3,130,243]},{"1057915":[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]},{"1057945":[166,133,14,165,14,159]},{"1057952":[201,126,232,232,169,56]},{"1057959":[159]},{"1057961":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1057975":[201,126,232,232,169]},{"1057982":[159]},{"1057984":[201,126,232,232,165,14,24,105,8]},{"1057994":[133,14,100,10,165,12,201,100]},{"1058003":[144,8,56,233,100]},{"1058009":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121]},{"1058026":[166,133,14,165,14,159]},{"1058033":[201,126,232,232,169,56]},{"1058040":[159]},{"1058042":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058056":[201,126,232,232,169]},{"1058063":[159]},{"1058065":[201,126,232,232,165,14,24,105,8]},{"1058075":[133,14,100,10,165,12,201,10]},{"1058084":[144,8,56,233,10]},{"1058090":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121]},{"1058107":[166,133,14,165,14,159]},{"1058114":[201,126,232,232,169,56]},{"1058121":[159]},{"1058123":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058137":[201,126,232,232,169]},{"1058144":[159]},{"1058146":[201,126,232,232,165,14,24,105,8]},{"1058156":[133,14,100,10,165,12,201,1]},{"1058165":[144,8,56,233,1]},{"1058171":[230,10,128,243,133,12,192,255,208,10,160]},{"1058183":[165,14,24,121]},{"1058188":[166,133,14,165,14,159]},{"1058195":[201,126,232,232,169,56]},{"1058202":[159]},{"1058204":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058218":[201,126,232,232,169]},{"1058225":[159]},{"1058227":[201,126,232,232,165,14,24,105,8]},{"1058237":[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]},{"1058308":[252,255,248,255,218,90,8,194,48,162]},{"1058320":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058335":[208,13,175,153,80,127,41,255]},{"1058344":[223,3,200,48,208,44,226,32,191]},{"1058354":[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]},{"1058396":[200,48,41,255]},{"1058401":[201,255]},{"1058404":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058427":[226,32,162]},{"1058432":[160]},{"1058435":[152,207,96,80,127,144,3,130,172]},{"1058445":[191,1,201,48,201,255,208,3,130,161]},{"1058456":[191]},{"1058458":[201,48,207,80,80,127,240,3,130,137]},{"1058469":[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]},{"1058506":[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,180,167,160,170,32,211,167,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]},{"1058637":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058651":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,14,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,15,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,16,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]},{"1058744":[128]},{"1058749":[1]},{"1058752":[169,234,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,49,145,160,34,45,213]},{"1058791":[194,16,96,32,238,167,107,173]},{"1058800":[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]},{"1058830":[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]},{"1058867":[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]},{"1059008":[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]},{"1059173":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059194":[175,81,80,127,201,255,208,3,76,103,169,139,75,171,34,231,244,30,32,181,169,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]},{"1059245":[32,210,173,32,210,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059268":[201,2,208,3,130,227]},{"1059275":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059290":[165,26,41,16,240,12,189,73,170,159]},{"1059301":[201,126,232,224,16,144,244,189,89,170,159]},{"1059313":[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]},{"1059372":[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]},{"1059403":[248,255]},{"1059408":[2]},{"1059413":[16]},{"1059416":[2]},{"1059419":[248,255]},{"1059424":[2]},{"1059429":[16,64]},{"1059432":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,158,133,8,169,170,133,9,128,8,169,166,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059490":[70,10]},{"1059493":[2]},{"1059498":[70,74]},{"1059501":[2,218,162]},{"1059505":[165,26,41,64,240,12,189,32,171,159]},{"1059516":[201,126,232,224,16,144,244,189,48,171,159]},{"1059528":[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]},{"1059587":[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]},{"1059618":[248,255,132]},{"1059623":[2]},{"1059628":[16]},{"1059631":[2]},{"1059634":[248,255,132]},{"1059639":[2]},{"1059644":[16,64]},{"1059647":[2,218,162]},{"1059651":[165,26,41,64,240,12,189,178,171,159]},{"1059662":[201,126,232,224,16,144,244,189,194,171,159]},{"1059674":[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]},{"1059733":[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]},{"1059764":[248,255,142]},{"1059769":[2]},{"1059774":[16]},{"1059777":[2]},{"1059780":[248,255,142]},{"1059785":[2]},{"1059790":[16,64]},{"1059793":[2,218,90,8,160]},{"1059799":[90,152,74,74,168,175,95,80,127,57,14,173,240,3,122,128,48,122,173,238]},{"1059820":[221,32,15,208,39,32,165,173,32,17,173,34,230,131,6,144,3,32,197,173,32,123,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,39,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]},{"1059948":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059964":[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,14,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,14,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]},{"1060117":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060138":[58,10,168,185,199,174,133]},{"1060146":[122,104,24,113]},{"1060151":[24,105,2]},{"1060155":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060168":[13,194,32,90,200,200,24,113]},{"1060177":[122,72,175,81,80,127,41,128]},{"1060186":[240,7,104,24,105,4]},{"1060193":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060216":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060233":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060246":[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]},{"1060274":[165,35,105]},{"1060278":[133,8,165,32,105,8,133,1,165,33,105]},{"1060290":[133,9,96,218,34]},{"1060296":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060318":[160]},{"1060320":[175,81,80,127,41,3,201,3,208,5,32,3,174,128,4,201,2,208,5,32,3,174,128,4,201,1,208,3,32,3,174,122,250,171,96,175,95,80,127,57,14,173,240,3,130,178]},{"1060367":[90,175,81,80,127,41,3,58,10,168,194,32,185,199,174,133]},{"1060384":[163,1,10,10,168,177]},{"1060391":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060404":[208,8,177]},{"1060408":[143,39,192,126,128,10,177]},{"1060416":[24,105,4]},{"1060420":[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,229,174,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,114,147,160,143,42,192,126,169]},{"1060487":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060513":[143,44,192,126,32,186,175,169,2,218,72,175,97,80,127,170,104,32,113,175,250,175,81,80,127,41,128,208,3,32,232,174,200,232,232,232,232,96,205,174,209,174,217,174,8]},{"1060559":[40]},{"1060561":[240,255,40]},{"1060565":[32]},{"1060567":[40]},{"1060569":[216,255,40]},{"1060573":[8]},{"1060575":[40]},{"1060577":[56]},{"1060579":[40]},{"1060581":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060600":[58,10,168,185,199,174,133]},{"1060608":[185,95,175,133,2,122,90,152,10,10,168,177]},{"1060621":[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,82,164,226,32,133,6,100,7,72,169]},{"1060660":[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,101,175,103,175,107,175]},{"1060710":[255]},{"1060712":[128,128,255]},{"1060716":[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]},{"1060797":[194,32,191,37,192,126,24,105,4]},{"1060807":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060823":[159,47,192,126,191,41,192,126,24,105,16]},{"1060835":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060877":[72,165,2,72,169,16,128,133]},{"1060886":[169,48]},{"1060889":[133,2,169,2]},{"1060894":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060941":[143]},{"1060943":[80,127,32,156,176,34,79,150,160,107,72,175]},{"1060956":[80,127,240,6,34,75,176,160,128,13,32,156,176,34,12,151,160,169]},{"1060975":[143,152,192,126,104,107,32,156,176,201,36,208,24,90,160,36,34,141,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061060":[143,152,192,126,169,36,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]},{"1061335":[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]},{"1061402":[191,227,178,160,197,4,144,3,232,128,245,191,228,178,160,133,6,100,7,194,32,138,10,10,170,191,229,178,160,141,232,80,191,231,178,160,141,234,80,173]},{"1061443":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061461":[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,207,176,173,236,80,10,10,170,189]},{"1061498":[81,56,229,8,157]},{"1061504":[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]},{"1061536":[81,141,228,80,189,2,81,141,230,80,32,207,176,173]},{"1061551":[81,56,229,8,141]},{"1061557":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,203,176,160,141,232,80,173,234,80,239,205,176,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,34,49,145,160,72,165,138,201,3,240,6,34,246,178,160,128,4,34,233,178,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,17,179,160,169,235,143]},{"1061703":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061727":[13,165,33,153,32,13,169]},{"1061735":[153,32,15,169,127,153,112,15,107,72,8,34,154,179,160,144,31,156,18,1,156,239,3,169]},{"1061760":[133,93,194,32,165,138,201,48]},{"1061769":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061793":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061806":[128,16,201,48]},{"1061811":[208,11,165,34,201]},{"1061817":[2,144,4,56,130,1]},{"1061824":[24,226,32,107,191,168,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061845":[226,32,34,16,247,8,169,52,145,144,200,191,168,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061880":[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]},{"1061942":[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,162,180,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]},{"1062089":[13,173,219,15,233]},{"1062095":[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]},{"1062134":[13,173,219,15,233]},{"1062140":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062165":[254,127,208,245,169,4,107,34,211,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,229,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,229,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062238":[107,169]},{"1062241":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,211,181,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,211,181,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,211,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,211,181,160,107,218,8,194,32,41,127]},{"1062362":[10,170,191]},{"1062366":[82,127,26,41,255,3,159]},{"1062374":[82,127,170,10,191]},{"1062380":[128,175,40,250,107,218,8,194,48,162]},{"1062392":[191,40,182,160,159]},{"1062398":[82,127,232,232,191,40,182,160,159]},{"1062408":[82,127,232,232,191,40,182,160,159]},{"1062418":[82,127,232,232,191,40,182,160,159]},{"1062428":[82,127,232,232,224,127]},{"1062435":[144,211,40,250,107]},{"1062442":[64]},{"1062444":[128]},{"1062446":[192]},{"1062449":[1,64,1,128,1,192,1]},{"1062457":[2,64,2,128,2,192,2]},{"1062465":[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,72,182,160,175,35,128,48,208,4,34,104,182,160,104,107,72,169]},{"1062567":[143,65,80,127,175,34,128,48,201,1,208,4,34,72,182,160,175,35,128,48,201,1,208,4,34,104,182,160,104,107,72,175,34,128,48,201,2,208,4,34,72,182,160,175,35,128,48,201,2,208,4,34,104,182,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]},{"1062733":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062750":[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]},{"1062821":[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]},{"1062857":[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,28,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]},{"1062982":[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]},{"1063008":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063028":[2,156,5,2,169]},{"1063034":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,126,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063065":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063082":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063099":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063116":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063133":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063150":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063167":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063184":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063207":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063224":[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]},{"1063257":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063280":[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]},{"1063312":[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]},{"1063370":[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]},{"1063396":[192,59,208,3,130,96]},{"1063403":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063428":[201,15,1,208,3,130,59]},{"1063436":[201,16,1,208,3,130,51]},{"1063444":[201,28,1,208,3,130,43]},{"1063452":[201,31,1,208,3,130,35]},{"1063460":[201,255]},{"1063463":[208,3,130,27]},{"1063468":[201,20,1,208,3,130,19]},{"1063476":[201,21,1,208,3,130,11]},{"1063484":[201,22,1,208,3,130,3]},{"1063492":[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]},{"1063524":[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]},{"1063677":[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]},{"1063715":[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]},{"1063753":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063771":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063789":[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]},{"1063825":[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]},{"1063863":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063881":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,106,192,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]},{"1063985":[208,9,32,4,191,32,53,191,130,64,2,192,1,208,6,32,4,191,130,54,2,192,2,208,6,32,4,191,130,44,2,192,3,208,6,32,4,191,130,34,2,192,4,208,6,32,53,191,130,24,2,192,5,208,6,32,53,191,130,14,2,192,6,208,6,32,53,191,130,4,2,192,7,144,10,192,14,176,6,32,102,191,130,246,1,192,20,208,9,32,194,190,32,102,191,130,233,1,192,15,144,10,192,23,176,6,32,102,191,130,219,1,192,23,208,6,32,202,191,130,209,1,192,24,144,10,192,26,176,6,32,102,191,130,195,1,192,26,208,9,32,227,190,32,102,191,130,182,1,192,29,208,6,32,102,191,130,172,1,192,27,144,10,192,32,176,6,32,114,191,130,158,1,192,32,208,6,32,242,191,130,148,1,192,33,208,6,32,102,191,130,138,1,192,34,144,10,192,36,176,6,32,14,192,130,124,1,192,36,208,6,32,30,192,130,114,1,192,37,208,6,32,62,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,134,192,130,87,1,192,40,208,6,32,134,192,130,77,1,192,41,208,6,32,102,191,130,67,1,192,42,144,10,192,46,176,6,32,102,191,130,53,1,192,49,208,6,32,134,192,130,43,1,192,50,208,6,32,94,192,130,33,1,192,51,208,6,32,156,192,130,23,1,192,55,144,10,192,58,176,6,32,142,191,130,9,1,192,58,144,10,192,60,176,6,32,83,191,130,251]},{"1064321":[192,60,208,6,32,102,191,130,241]},{"1064331":[192,61,208,6,32,102,191,130,231]},{"1064341":[192,62,144,10,192,64,176,6,32,230,191,130,217]},{"1064355":[192,72,208,6,32,102,191,130,207]},{"1064365":[192,73,208,6,32,4,191,130,197]},{"1064375":[192,74,208,9,32,194,190,32,102,191,130,184]},{"1064388":[192,75,208,9,32,161,190,32,114,191,130,171]},{"1064401":[192,76,208,9,32,170,191,32,134,192,130,158]},{"1064414":[192,77,144,10,192,80,176,6,32,170,191,130,144]},{"1064428":[192,80,208,6,32,4,191,130,134]},{"1064438":[192,81,144,10,192,85,176,6,32,170,191,130,120]},{"1064452":[192,88,208,6,32,83,191,130,110]},{"1064462":[192,94,208,6,32,4,191,130,100]},{"1064472":[192,95,208,6,32,53,191,130,90]},{"1064482":[192,96,208,6,32,14,192,130,80]},{"1064492":[192,97,208,6,32,114,191,130,70]},{"1064502":[192,100,144,10,192,102,176,6,32,83,191,130,56]},{"1064516":[192,112,144,10,192,128,176,6,32,156,192,130,42]},{"1064530":[192,128,144,10,192,144,176,6,32,62,192,130,28]},{"1064544":[192,144,144,10,192,160,176,6,32,94,192,130,14]},{"1064558":[192,160,144,10,192,176,176,6,32,30,192,130]},{"1064572":[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,128,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064724":[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,30,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,102,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,172,192,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,81,239,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]},{"1065320":[201,2]},{"1065323":[208,14,175,140,243,126,41,192]},{"1065332":[201,192]},{"1065335":[240,79,128,64,201,1]},{"1065342":[208,14,175,142,243,126,41,192]},{"1065351":[201,192]},{"1065354":[240,60,128,45,201,5]},{"1065361":[208,14,175,140,243,126,41,48]},{"1065370":[201,48]},{"1065373":[240,41,128,26,201,13]},{"1065380":[208,16,175,140,243,126,137,4]},{"1065389":[240,12,41,3]},{"1065394":[208,20,128,5,201,16]},{"1065401":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065414":[208,5,169,79,61,128,6,32,215,193,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]},{"1065461":[41,255,239,153,4]},{"1065467":[185,62]},{"1065470":[41,255,239,153,62]},{"1065476":[185,68]},{"1065479":[41,255,239,153,68]},{"1065485":[185,128]},{"1065488":[41,255,239,153,128]},{"1065494":[185,130]},{"1065497":[41,255,239,153,130]},{"1065503":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065524":[41,255,239,153,132]},{"1065530":[185,126]},{"1065533":[41,255,239,153,126]},{"1065539":[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]},{"1065577":[201,144]},{"1065580":[208,3,169,127]},{"1065585":[9]},{"1065587":[36,143,100,199,126,165,5,41,255]},{"1065597":[9]},{"1065599":[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,198,241,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065711":[72,165,2,72,169,16,128,133]},{"1065720":[169,48]},{"1065723":[133,2,169,4]},{"1065728":[34,43,150,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065774":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065795":[143]},{"1065797":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065811":[157,192,13,72,169,1,143]},{"1065819":[80,127,165,93,201,20,240,68,169]},{"1065829":[143]},{"1065831":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065859":[72,165,2,72,169,16,128,133]},{"1065868":[169,48]},{"1065871":[133,2,169,3]},{"1065876":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065901":[80,127,240,6,34,86,195,160,128,7,189,128,14,34,187,150,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]},{"1065944":[72,165,2,72,169,16,128,133]},{"1065953":[169,48]},{"1065956":[133,2,169,4]},{"1065961":[34,43,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,151,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]},{"1066019":[143,68,243,126,107,175,123,243,126,41,255]},{"1066031":[201,2]},{"1066034":[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]},{"1066067":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066082":[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]},{"1066118":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066132":[173,91,3,41,1,208,3,130,134]},{"1066142":[90,8,139,75,171,226,48,165,27,240,3,76,33,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066179":[129,48,143]},{"1066183":[254,127,34,93,246,29,162]},{"1066191":[165,47,201,4,240,1,232,191,37,197,160,153,80,13,169]},{"1066207":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,39,197,160,41,240,153,16,13,165,35,105]},{"1066241":[153,48,13,165,32,24,105,22,41,240,153]},{"1066253":[13,165,33,105]},{"1066258":[153,32,13,169]},{"1066263":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066280":[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]},{"1066311":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066332":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066402":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066433":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066527":[72,165,2,72,169,64,129,133]},{"1066536":[169,48]},{"1066539":[133,2,169,10]},{"1066544":[34,43,150,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066564":[254,127,34,93,246,29,162]},{"1066572":[165,47,201,4,240,1,232,191,169,198,160,153,80,13,169]},{"1066588":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,171,198,160,41,240,153,16,13,165,35,105]},{"1066622":[153,48,13,165,32,24,105,22,41,240,153]},{"1066634":[13,165,33,105]},{"1066639":[153,32,13,169]},{"1066644":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066668":[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]},{"1066747":[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]},{"1066774":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066813":[72,165,2,72,169,16,128,133]},{"1066822":[169,48]},{"1066825":[133,2,169,5]},{"1066830":[34,43,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]},{"1066884":[201,35,208,6,160,93,92,71,213]},{"1066894":[201,72,208,6,160,96,92,71,213]},{"1066904":[201,36,176,6,160,91,92,71,213]},{"1066914":[201,55,176,6,160,92,92,71,213]},{"1066924":[201,57,176,6,160,93,92,71,213]},{"1066934":[160,50,92,71,213]},{"1066940":[192,9,48]},{"1066944":[96]},{"1066946":[144]},{"1066948":[192]},{"1066951":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066975":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066993":[9,48,9,96,9,144,9,240,9]},{"1067004":[240]},{"1067006":[32,10,80,10,96,6]},{"1067013":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067035":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067051":[6,48,6]},{"1067055":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067071":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067092":[127,188,199,160,107,165]},{"1067099":[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]},{"1067130":[132,175,24,105]},{"1067135":[136,133]},{"1067138":[226,32,169,175,133,2,34,116,227,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,202,218,160,162,1,128,2,162]},{"1067196":[171,40,122,104,133,2,104,133,1,104,133]},{"1067208":[96,218,173,216,2,34,170,227,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067691":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,202,218,160,130,116,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,202,218,160,130,72,1,201,109,208,7,34,209,190,164,130,61,1,201,110,208,7,34,209,190,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067938":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067963":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1067986":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068005":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068022":[56,233,8,170,169,1,224]},{"1068030":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068053":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068072":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068089":[56,233,8,170,169,1,224]},{"1068097":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068120":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068142":[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]},{"1068174":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068193":[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]},{"1068219":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,74,239,160,173,216,2,72,175,152,192,126,208,12,104,32,121,218,141,216,2,32,79,218,128,1,104,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,170,218,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]},{"1068382":[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]},{"1068495":[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]},{"1068535":[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]},{"1068565":[175,91,243,126,201]},{"1068571":[208,8,169,34,141,216,2,130,171]},{"1068581":[169,35,141,216,2,130,163]},{"1068589":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068607":[169,28,141,216,2,130,137]},{"1068615":[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]},{"1068647":[175,64,243,126,26,74,201]},{"1068655":[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,98,217,160,141,216,2,235,32,237,217,169,255,143,144,80,127,128,36,201,99,208,15,34,30,218,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]},{"1068752":[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]},{"1069007":[4,4,4,4,4,5]},{"1069019":[4]},{"1069021":[4]},{"1069024":[4]},{"1069036":[4]},{"1069042":[5]},{"1069052":[4,4,4]},{"1069066":[4,4]},{"1069069":[4]},{"1069073":[4]},{"1069080":[4]},{"1069089":[4]},{"1069160":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069240":[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]},{"1069289":[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]},{"1069328":[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]},{"1069485":[2,2]},{"1069493":[2,2,2,2,2,2]},{"1069500":[2]},{"1069502":[2,2]},{"1069505":[2,2,2,2,2,2,2,2,2,2,2]},{"1069517":[2,2,2,2,2]},{"1069523":[2,2,2,2,2,2,2,2,2]},{"1069535":[2,2,2,2,2,2,2,2,2,2,2]},{"1069548":[2]},{"1069550":[2,2,2]},{"1069554":[2,2,2,2,2,2]},{"1069561":[2,2,2,2,2,2,2,2]},{"1069570":[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]},{"1069656":[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]},{"1069842":[4,4,4]},{"1069848":[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]},{"1070761":[128]},{"1070763":[64]},{"1070765":[32]},{"1070767":[16]},{"1070769":[8]},{"1070771":[4]},{"1070773":[2]},{"1070775":[1,128]},{"1070778":[64]},{"1070780":[32]},{"1070782":[16]},{"1070784":[8]},{"1070786":[4]},{"1071017":[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,121,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,247,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,247,216,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]},{"1071471":[160,48,107,162]},{"1071476":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071489":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071503":[168,152,32,201,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071523":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071547":[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]},{"1071587":[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]},{"1071624":[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]},{"1071663":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071676":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071699":[191]},{"1071701":[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]},{"1071741":[191]},{"1071743":[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,162]},{"1071788":[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,96,100,17,100,176,92,151,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071851":[13,24,105,3,107,189,32,14,201,136,208,9,32,40,219,201,4,144,1,58,107,32,40,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071897":[200,49,74,74,74,74,107,40,191]},{"1071907":[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]},{"1071957":[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]},{"1071991":[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,20,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]},{"1072193":[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]},{"1072248":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072274":[165,27,240,121,194,32,165,160,201,14]},{"1072285":[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]},{"1072320":[201,126]},{"1072323":[208,33,165,34,41,255,1,201,104]},{"1072333":[144,60,201,136]},{"1072338":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072358":[201,222]},{"1072361":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072386":[144,7,201,154]},{"1072391":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,111,221,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,111,221,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]},{"1072529":[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]},{"1072582":[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,131,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072635":[174,2,32,224,83,45,240,3,130,253]},{"1072646":[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]},{"1072711":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072811":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072869":[90,194,32,191]},{"1072874":[217,48,133]},{"1072878":[226,32,178]},{"1072882":[122,132]},{"1072885":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072905":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072926":[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]},{"1073038":[208,13,173,11,1,41,255]},{"1073046":[201,59]},{"1073049":[208,63,128,56,201,107]},{"1073056":[208,58,175,19,130,48,201,1]},{"1073065":[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]},{"1073098":[240,14,175,167,80,127,41,4]},{"1073107":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073122":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073141":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073166":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073182":[66,169,255,141,64,33,169,34,133]},{"1073192":[169,248,133,1,169,160,34,29,137]},{"1073202":[169,129,141]},{"1073206":[66,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]},{"1073242":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073258":[232,226,32,168,173]},{"1073264":[32,137,64,208,249,173]},{"1073271":[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]},{"1073308":[32,137,64,208,249,173]},{"1073315":[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]},{"1073366":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073392":[175,169,80,127,240,85,173]},{"1073400":[32,137,64,240,4,92,220,128]},{"1073409":[173]},{"1073411":[32,137,8,240,4,92,220,128]},{"1073420":[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]},{"1073456":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073475":[143,169,80,127,92,220,128]},{"1073483":[173,39,1,205,41,1,208,4,92,220,128]},{"1073495":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073525":[224,255,208,4,92,220,128]},{"1073533":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073549":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073565":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073582":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073596":[141,43,1,92,220,128]},{"1073603":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073622":[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]},{"1073654":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073679":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073721":[90,194,32,191]},{"1073726":[217,48,133]},{"1073730":[226,32,178]},{"1073734":[122,132]},{"1073737":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073760":[141,44,1,72,34,114,221,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]},{"1073829":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073842":[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]},{"1073912":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073925":[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]},{"1073992":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1074010":[87,127,107,191]},{"1074015":[18,127,107,156,240,28,156,241,28,169]},{"1074026":[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]},{"1074058":[226,32,183]},{"1074062":[159]},{"1074064":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074083":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074107":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074125":[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]},{"1074151":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074169":[226,32,183]},{"1074173":[159]},{"1074175":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074194":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074214":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074232":[226,32,183]},{"1074236":[159]},{"1074238":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074257":[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]},{"1074288":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074306":[226,32,183]},{"1074310":[159]},{"1074312":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074331":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074351":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074369":[226,32,183]},{"1074373":[159]},{"1074375":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074394":[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]},{"1074423":[133]},{"1074425":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074443":[226,32,183]},{"1074447":[159]},{"1074449":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074468":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074488":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074506":[226,32,183]},{"1074510":[159]},{"1074512":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074531":[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]},{"1074562":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074580":[226,32,183]},{"1074584":[159]},{"1074586":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074605":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074625":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074643":[226,32,183]},{"1074647":[159]},{"1074649":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074668":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074689":[133]},{"1074691":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074709":[226,32,183]},{"1074713":[159]},{"1074715":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074734":[143,148,80,127,226,32,130,213]},{"1074743":[201,128,208,56,169,52,133]},{"1074751":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074769":[226,32,183]},{"1074773":[159]},{"1074775":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074794":[143,148,80,127,226,32,130,153]},{"1074803":[201,144,208,55,169,112,133]},{"1074811":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074829":[226,32,183]},{"1074833":[159]},{"1074835":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074854":[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]},{"1074881":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074899":[226,32,183]},{"1074903":[159]},{"1074905":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074924":[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]},{"1075003":[208,56,169,216,133]},{"1075009":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075027":[226,32,183]},{"1075031":[159]},{"1075033":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075052":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075069":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075087":[226,32,183]},{"1075091":[159]},{"1075093":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075112":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075129":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075147":[226,32,183]},{"1075151":[159]},{"1075153":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075172":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075189":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075207":[226,32,183]},{"1075211":[159]},{"1075213":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075232":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075249":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075267":[226,32,183]},{"1075271":[159]},{"1075273":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075292":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075309":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075327":[226,32,183]},{"1075331":[159]},{"1075333":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075352":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075369":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075387":[226,32,183]},{"1075391":[159]},{"1075393":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075412":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075429":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075447":[226,32,183]},{"1075451":[159]},{"1075453":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075472":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075489":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075507":[226,32,183]},{"1075511":[159]},{"1075513":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075532":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075549":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075567":[226,32,183]},{"1075571":[159]},{"1075573":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075592":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075609":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075627":[226,32,183]},{"1075631":[159]},{"1075633":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075652":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075669":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075687":[226,32,183]},{"1075691":[159]},{"1075693":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075712":[143,148,80,127,226,32,130,235]},{"1075721":[201,12,208,56,169,12,133]},{"1075729":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075747":[226,32,183]},{"1075751":[159]},{"1075753":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075772":[143,148,80,127,226,32,130,175]},{"1075781":[201,13,208,55,169,41,133]},{"1075789":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075807":[226,32,183]},{"1075811":[159]},{"1075813":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075832":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075848":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075866":[226,32,183]},{"1075870":[159]},{"1075872":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075891":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075907":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075925":[226,32,183]},{"1075929":[159]},{"1075931":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075950":[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]},{"1075983":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075998":[171,40,122,250,104,107,34,78,216]},{"1076008":[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]},{"1076072":[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,158,236,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,158,236,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]},{"1076343":[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]},{"1076388":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076412":[226,48,160]},{"1076416":[183]},{"1076418":[201,254,208,39,200,183]},{"1076425":[201,110,208,32,200,183]},{"1076432":[208,27,200,183]},{"1076437":[201,254,208,20,200,183]},{"1076444":[201,107,208,13,200,183]},{"1076451":[201,4,208,6,156,232,28,130,19]},{"1076461":[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]},{"1076489":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076506":[10,10,69,138,41,8]},{"1076513":[240,6,152,24,105,16]},{"1076520":[168,165,35,41,2]},{"1076526":[74,69,138,41,1]},{"1076532":[240,4,152,26,26,168,152,41,255]},{"1076542":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,249,150,164,34,239,147,164,107,34,230,244,160,34,142,173,164,34]},{"1076574":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,129,188,164,107,194,16,34,61,137]},{"1076770":[169,7,141,12,33,175,240,244,126,208,10,34,131,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076822":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,18,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]},{"1076902":[191]},{"1076904":[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]},{"1076978":[107,34,212,152,160,34,235,245,160,107,34,71,153,160,34,80,153,160,162,4,107,34,235,245,160,169,20,133,17,107,34,235,245,160,107,34,63,132,160,34,44,153,160,34,244,187,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]},{"1077053":[2,107,169]},{"1077057":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1077080":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,152,236,160,169]},{"1077102":[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]},{"1077138":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077163":[208,4,169]},{"1077168":[107,201,1]},{"1077172":[208,16,175,197,243,126,41,15]},{"1077181":[201,2]},{"1077184":[176,84,32,26,240,107,201,2]},{"1077193":[208,75,32,26,240,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077217":[107,175,74,128,48,41,255]},{"1077225":[240,43,175,195,242,126,41,32]},{"1077234":[208,34,173,8,3,41,128]},{"1077242":[240,4,169,1]},{"1077247":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077269":[107,169]},{"1077273":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077296":[96,169]},{"1077300":[96,175,76,128,48,41,255]},{"1077308":[240,4,92,90,189,27,224,118]},{"1077317":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077334":[72,170,191,64,130,48,208,3,130,175]},{"1077345":[58,133]},{"1077348":[10,10,24,101]},{"1077353":[10,10,170,169,22]},{"1077359":[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]},{"1077387":[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]},{"1077430":[137,128]},{"1077433":[240,3,9]},{"1077437":[255,143,106,193,126,191,98,130,48,41,255]},{"1077449":[137,128]},{"1077452":[240,3,9]},{"1077456":[255,143,110,193,126,169]},{"1077464":[56,239,106,193,126,143,108,193,126,169]},{"1077476":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077492":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077510":[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]},{"1077587":[165]},{"1077589":[223]},{"1077591":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077611":[165]},{"1077613":[223]},{"1077615":[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]},{"1077661":[175,74,128,48,41,255]},{"1077668":[240,25,175,93]},{"1077674":[41,255]},{"1077677":[201,20]},{"1077680":[208,13,165,138,41,64]},{"1077687":[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]},{"1077744":[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]},{"1077810":[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]},{"1077844":[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]},{"1077943":[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]},{"1077974":[201,2]},{"1077977":[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]},{"1078009":[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,228,244,160,144,10,208,8,175,140,80,127,207,226,244,160,144,114,175,145,129,48,41,255]},{"1078065":[208,24,169,2]},{"1078070":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078094":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078107":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078121":[143,142,80,127,169,1]},{"1078128":[143,126,80,127,128,54,201,2]},{"1078137":[208,24,169,2]},{"1078142":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,202,218,160,194,48,96,175,146,129,48,41,255]},{"1078179":[240,7,169]},{"1078184":[143,126,80,127,175,142,80,127,207,216,244,160,144,10,208,8,175,140,80,127,207,214,244,160,144,53,175,128,80,127,26,201,10]},{"1078218":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078232":[143,128,80,127,175,140,80,127,56,239,214,244,160,143,140,80,127,175,142,80,127,239,216,244,160,143,142,80,127,128,181,175,142,80,127,207,220,244,160,144,10,208,8,175,140,80,127,207,218,244,160,144,53,175,132,80,127,26,201,10]},{"1078293":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078307":[143,132,80,127,175,140,80,127,56,239,218,244,160,143,140,80,127,175,142,80,127,239,220,244,160,143,142,80,127,128,181,175,142,80,127,207,224,244,160,144,10,208,8,175,140,80,127,207,222,244,160,144,53,175,136,80,127,26,201,10]},{"1078368":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078382":[143,136,80,127,175,140,80,127,56,239,222,244,160,143,140,80,127,175,142,80,127,239,224,244,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]},{"1078490":[16,14]},{"1078494":[60]},{"1078498":[255,255,255,127,175,204,80,127,41,255]},{"1078509":[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]},{"1078580":[240,93,175,145,129,48,41,255]},{"1078589":[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]},{"1078682":[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]},{"1078757":[208,3,32,180,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078787":[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]},{"1078821":[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,33,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]},{"1078895":[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]},{"1079001":[255,157]},{"1079004":[27,157,64,27,157,128,27,157,192,27,157]},{"1079016":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079030":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079044":[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]},{"1079082":[208,12,175]},{"1079086":[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]},{"1079160":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079183":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079333":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079349":[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]},{"1079421":[244,111,4]},{"1079425":[115,10,95]},{"1079429":[7]},{"1079435":[34,133,189,164,34,58,135,1,194,16,166,160,191,47,251,160,226,16,34,156,135]},{"1079457":[179,248,160,180,248,160,65,249,160,206,249,160,91,250,160,197,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079493":[32,126,232,232,159]},{"1079499":[32,126,232,232,159]},{"1079505":[32,126,232,232,159]},{"1079511":[32,126,232,232,162,220,25,159]},{"1079520":[32,126,232,232,169,202,12,159]},{"1079529":[32,126,232,232,169,203,12,159]},{"1079538":[32,126,232,232,169,208,8,159]},{"1079547":[32,126,232,232,162,92,26,159]},{"1079556":[32,126,232,232,169,218,12,159]},{"1079565":[32,126,232,232,169,219,12,159]},{"1079574":[32,126,232,232,169,208,8,159]},{"1079583":[32,126,232,232,162,220,26,159]},{"1079592":[32,126,232,232,159]},{"1079598":[32,126,232,232,159]},{"1079604":[32,126,232,232,159]},{"1079610":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079634":[32,126,232,232,159]},{"1079640":[32,126,232,232,159]},{"1079646":[32,126,232,232,159]},{"1079652":[32,126,232,232,162,156,25,159]},{"1079661":[32,126,232,232,169,202,12,159]},{"1079670":[32,126,232,232,169,203,12,159]},{"1079679":[32,126,232,232,169,208,8,159]},{"1079688":[32,126,232,232,162,28,26,159]},{"1079697":[32,126,232,232,169,218,12,159]},{"1079706":[32,126,232,232,169,219,12,159]},{"1079715":[32,126,232,232,169,208,8,159]},{"1079724":[32,126,232,232,162,156,26,159]},{"1079733":[32,126,232,232,159]},{"1079739":[32,126,232,232,159]},{"1079745":[32,126,232,232,159]},{"1079751":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079775":[32,126,232,232,159]},{"1079781":[32,126,232,232,159]},{"1079787":[32,126,232,232,159]},{"1079793":[32,126,232,232,162,220,9,159]},{"1079802":[32,126,232,232,169,202,12,159]},{"1079811":[32,126,232,232,169,203,12,159]},{"1079820":[32,126,232,232,169,208,8,159]},{"1079829":[32,126,232,232,162,92,10,159]},{"1079838":[32,126,232,232,169,218,12,159]},{"1079847":[32,126,232,232,169,219,12,159]},{"1079856":[32,126,232,232,169,208,8,159]},{"1079865":[32,126,232,232,162,220,10,159]},{"1079874":[32,126,232,232,159]},{"1079880":[32,126,232,232,159]},{"1079886":[32,126,232,232,159]},{"1079892":[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]},{"1080125":[1]},{"1080207":[5]},{"1080209":[4]},{"1080237":[2]},{"1080333":[3]},{"1080431":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080448":[134,1,133,2,32,111,252,176,4,92,83,230]},{"1080461":[169,49,133,2,194,32,169]},{"1080469":[192,133]},{"1080472":[162,128,167]},{"1080476":[141,24,33,230]},{"1080481":[230]},{"1080483":[167]},{"1080485":[141,24,33,230]},{"1080490":[230]},{"1080492":[167]},{"1080494":[141,24,33,230]},{"1080499":[230]},{"1080501":[167]},{"1080503":[141,24,33,230]},{"1080508":[230]},{"1080510":[167]},{"1080512":[141,24,33,230]},{"1080517":[230]},{"1080519":[167]},{"1080521":[141,24,33,230]},{"1080526":[230]},{"1080528":[167]},{"1080530":[141,24,33,230]},{"1080535":[230]},{"1080537":[167]},{"1080539":[141,24,33,230]},{"1080544":[230]},{"1080546":[202,208,181,226,32,92,81,230]},{"1080555":[226,48,175,248,194,126,168,32,111,252,194,48,176,10,162]},{"1080572":[160,64]},{"1080575":[92,104,223]},{"1080579":[162]},{"1080581":[192,160]},{"1080585":[169]},{"1080587":[8,139,84,127,177,171,162]},{"1080595":[8,169]},{"1080598":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,114,221,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,214,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,234,167,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,61,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,27,224,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,107,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,124,236,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,135,148,164,194,16,34,163,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,160,148,164,34,12,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,37,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,111,134,164,34,220,134,164,107,169,14,143,1,40]},{"1181301":[169,4,143,1,40]},{"1181307":[169,13,143,1,40]},{"1181313":[169,14,143,1,40]},{"1181319":[169]},{"1181321":[143,1,40]},{"1181325":[169]},{"1181327":[143,1,40]},{"1181331":[169]},{"1181333":[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,1,143,1,40]},{"1181367":[169]},{"1181369":[143,1,40]},{"1181373":[169,1,143,1,40]},{"1181379":[169]},{"1181381":[143,1,40]},{"1181385":[169]},{"1181387":[143,1,40]},{"1181391":[169,10,143,1,40]},{"1181397":[169,13,143,1,40]},{"1181403":[107,72,218,162]},{"1181408":[175]},{"1181410":[40]},{"1181412":[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]},{"1181439":[175]},{"1181441":[40]},{"1181443":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181457":[232,128,235,56,175]},{"1181463":[40]},{"1181465":[72,175]},{"1181468":[40]},{"1181470":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181488":[175]},{"1181490":[40]},{"1181492":[72,175]},{"1181495":[40]},{"1181497":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181517":[40]},{"1181519":[72,175]},{"1181522":[40]},{"1181524":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181544":[40]},{"1181546":[72,175]},{"1181549":[40]},{"1181551":[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]},{"1181636":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181654":[133]},{"1181656":[165,3,41,255]},{"1181661":[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,15,136,164,132,2,100,3,24,101]},{"1181703":[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]},{"1181758":[175]},{"1181760":[40]},{"1181762":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181776":[232,128,235,56,175]},{"1181782":[40]},{"1181784":[72,175]},{"1181787":[40]},{"1181789":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181807":[175]},{"1181809":[40]},{"1181811":[72,175]},{"1181814":[40]},{"1181816":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181836":[40]},{"1181838":[72,175]},{"1181841":[40]},{"1181843":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181863":[40]},{"1181865":[72,175]},{"1181868":[40]},{"1181870":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181890":[40]},{"1181892":[133,4,175]},{"1181896":[40]},{"1181898":[72,175]},{"1181901":[40]},{"1181903":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181923":[40]},{"1181925":[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]},{"1181994":[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]},{"1182033":[153]},{"1182036":[189,2]},{"1182039":[153,2]},{"1182042":[189,4]},{"1182045":[153,64]},{"1182048":[189,6]},{"1182051":[153,66]},{"1182054":[96,189]},{"1182058":[41,255,227,9]},{"1182063":[16,153]},{"1182067":[189,2]},{"1182070":[41,255,227,9]},{"1182075":[16,153,2]},{"1182079":[189,4]},{"1182082":[41,255,227,9]},{"1182087":[16,153,64]},{"1182091":[189,6]},{"1182094":[41,255,227,9]},{"1182099":[16,153,66]},{"1182103":[96,41,255]},{"1182107":[240,3,76,78,137,76,103,137,41,255]},{"1182118":[208,6,162,132,144,76,103,137,58,58,208,6,162,132,144,76,78,137,58,208,6,162,140,144,76,78,137,58,208,6,162,148,144,76,78,137,58,208,6,162,156,144,76,78,137,58,208,6,162,164,144,76,78,137,58,208,6,162,172,144,76,78,137,162,180,144,76,78,137,165,26,41,1]},{"1182192":[240,2,128,14,32,17,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182222":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182238":[5,112,9]},{"1182242":[28,141,142,17,24,105,16]},{"1182250":[141,206,17,175,2,5,112,9]},{"1182259":[28,141,144,17,24,105,16]},{"1182267":[141,208,17,175,4,5,112,9]},{"1182276":[28,141,146,17,24,105,16]},{"1182284":[141,210,17,175,6,5,112,9]},{"1182293":[28,141,148,17,24,105,16]},{"1182301":[141,212,17,175,8,5,112,9]},{"1182310":[28,141,78,18,24,105,16]},{"1182318":[141,142,18,175,10,5,112,9]},{"1182327":[28,141,80,18,24,105,16]},{"1182335":[141,144,18,175,12,5,112,9]},{"1182344":[28,141,82,18,24,105,16]},{"1182352":[141,146,18,175,14,5,112,9]},{"1182361":[28,141,84,18,24,105,16]},{"1182369":[141,148,18,32,188,144,175,142,3,112,41,64]},{"1182382":[240,31,175,64,3,112,41,255]},{"1182391":[240,11,162,4,143,160,220,16,32,78,137,128,40,162,20,143,160,220,16,32,78,137,128,29,175,64,3,112,41,255]},{"1182422":[240,11,162,252,142,160,220,16,32,78,137,128,9,162,252,142,160,220,16,32,103,137,175,140,3,112,41,192]},{"1182451":[201,192]},{"1182454":[208,11,162,44,143,160,224,16,32,78,137,128,49,175,140,3,112,41,64]},{"1182474":[240,11,162,36,143,160,224,16,32,78,137,128,29,175,140,3,112,41,128]},{"1182494":[240,11,162,28,143,160,224,16,32,78,137,128,9,162,28,143,160,224,16,32,103,137,162,52,143,160,228,16,175,66,3,112,32,152,137,175,140,3,112,41,16]},{"1182536":[240,11,162,12,144,160,236,16,32,78,137,128,9,162,12,144,160,236,16,32,103,137,175,140,3,112,41,8]},{"1182565":[240,11,162,4,144,160,232,16,32,78,137,128,9,162,4,144,160,232,16,32,103,137,175,140,3,112,41,3]},{"1182594":[240,11,162,140,143,160,228,17,32,78,137,128,9,162,140,143,160,228,17,32,103,137,175,140,3,112,41,4]},{"1182623":[240,11,162,132,143,160,92,18,32,78,137,128,9,162,132,143,160,92,18,32,103,137,162,68,143,160,92,17,175,69,3,112,32,152,137,162,76,143,160,96,17,175,70,3,112,32,152,137,162,84,143,160,100,17,175,71,3,112,32,152,137,162,92,143,160,104,17,175,72,3,112,32,152,137,162,100,143,160,108,17,175,73,3,112,32,152,137,162,108,143,160,220,17,175,74,3,112,32,152,137,162,116,143,160,224,17,175,75,3,112,32,152,137,162,124,143,160,232,17,175,77,3,112,32,152,137,162,148,143,160,236,17,175,78,3,112,32,152,137,162,156,143,160,96,18,175,80,3,112,32,152,137,162,164,143,160,100,18,175,81,3,112,32,152,137,162,172,143,160,104,18,175,82,3,112,32,152,137,162,180,143,160,108,18,175,83,3,112,32,152,137,160,242,16,175,92,3,112,32,163,137,160,114,17,175,93,3,112,32,163,137,160,242,17,175,94,3,112,32,163,137,160,114,18,175,95,3,112,32,163,137,175,89,3,112,41,255]},{"1182861":[208,11,162,20,144,160,248,16,32,103,137,128,65,58,208,11,162,20,144,160,248,16,32,78,137,128,51,58,208,11,162,28,144,160,248,16,32,78,137,128,37,58,208,11,162,36,144,160,248,16,32,78,137,128,23,58,208,11,162,44,144,160,248,16,32,78,137,128,9,162,20,144,160,248,16,32,103,137,175,90,3,112,41,255]},{"1182946":[208,11,162,52,144,160,120,17,32,103,137,128,37,58,208,11,162,52,144,160,120,17,32,78,137,128,23,58,208,11,162,60,144,160,120,17,32,78,137,128,9,162,68,144,160,120,17,32,78,137,175,91,3,112,41,255]},{"1183003":[208,11,162,76,144,160,248,17,32,78,137,128,23,58,208,11,162,84,144,160,248,17,32,78,137,128,9,162,92,144,160,248,17,32,78,137,175,107,3,112,41,255]},{"1183046":[208,11,162,100,144,160,120,18,32,78,137,128,37,58,208,11,162,108,144,160,120,18,32,78,137,128,23,58,208,11,162,116,144,160,120,18,32,78,137,128,9,162,124,144,160,120,18,32,78,137,175,72,4,112,41,255]},{"1183103":[34,249,151,160,175,6,80,127,41,255]},{"1183114":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183128":[24,105,16,30,141,250,18,162,196,143,160,252,16,175,85,3,112,32,152,137,175,84,3,112,41,255]},{"1183155":[208,11,162,244,143,160,124,17,32,103,137,128,23,58,208,11,162,244,143,160,124,17,32,78,137,128,9,162,252,143,160,124,17,32,78,137,162,188,143,160,252,17,175,86,3,112,32,152,137,162,204,143,160,124,18,175,87,3,112,32,152,137,175,116,3,112,41,4]},{"1183224":[240,11,162,220,143,160,28,19,32,78,137,128,9,162,212,143,160,28,19,32,78,137,175,116,3,112,41,2]},{"1183253":[240,11,162,228,143,160,32,19,32,78,137,128,9,162,212,143,160,32,19,32,78,137,175,116,3,112,41,1]},{"1183282":[240,11,162,236,143,160,36,19,32,78,137,128,9,162,212,143,160,36,19,32,78,137,175,122,3,112,41,2]},{"1183311":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183335":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183359":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183383":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183407":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183431":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183455":[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]},{"1183501":[10,186,10,185,6]},{"1183507":[10]},{"1183509":[10,20,10,19,6]},{"1183515":[10,5,14,6,14]},{"1183521":[30,22,14,5,6,6,6]},{"1183529":[30,22,6,182,14,182,6,182,142,182,134]},{"1183541":[6,21,6,48,6]},{"1183547":[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,249,151,160,175,4,80,127,41,255]},{"1183957":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183971":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183985":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183999":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184023":[34,249,151,160,175,6,80,127,41,255]},{"1184034":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184048":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184062":[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]},{"1184093":[34,249,151,160,175,6,80,127,41,255]},{"1184104":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184118":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184135":[4,169,136,1,157]},{"1184141":[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]},{"1184244":[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]},{"1184296":[141,2,20,165,16,41,255]},{"1184304":[201,1]},{"1184307":[208,107,175,135,128,48,41,255]},{"1184316":[201,2]},{"1184319":[208,95,8,226,48,218,90,34,37,181,164,122,250,40,41,255]},{"1184336":[208,78,169,110,29,141,142,19,24,105,16]},{"1184348":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184361":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184374":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184387":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184400":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184413":[141,216,19,226,32,107,34,131,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]},{"1184529":[189,4,16,9]},{"1184534":[32,157,4,16,202,202,208,243,162,60]},{"1184545":[189,68,16,9]},{"1184550":[32,157,68,16,202,202,208,243,162,60]},{"1184561":[189,132,16,9]},{"1184566":[32,157,132,16,202,202,208,243,162,60]},{"1184577":[189,196,16,9]},{"1184582":[32,157,196,16,202,202,208,243,162,60]},{"1184593":[189,4,17,9]},{"1184598":[32,157,4,17,202,202,208,243,162,60]},{"1184609":[189,68,17,9]},{"1184614":[32,157,68,17,202,202,208,243,162,60]},{"1184625":[189,132,17,9]},{"1184630":[32,157,132,17,202,202,208,243,162,60]},{"1184641":[189,196,17,9]},{"1184646":[32,157,196,17,202,202,208,243,162,60]},{"1184657":[189,4,18,9]},{"1184662":[32,157,4,18,202,202,208,243,162,60]},{"1184673":[189,68,18,9]},{"1184678":[32,157,68,18,202,202,208,243,162,60]},{"1184689":[189,132,18,9]},{"1184694":[32,157,132,18,202,202,208,243,162,60]},{"1184705":[189,196,18,9]},{"1184710":[32,157,196,18,202,202,208,243,162,60]},{"1184721":[189,4,19,9]},{"1184726":[32,157,4,19,202,202,208,243,162,60]},{"1184737":[189,68,19,9]},{"1184742":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184755":[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]},{"1184790":[67,169,24,141,1,67,169]},{"1184798":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184813":[141,2,67,169,208,141,3,67,173]},{"1184823":[33,72,169,128,141]},{"1184829":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184846":[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]},{"1184874":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,135,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184911":[128,51,159]},{"1184915":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184936":[28,141,206,16,24,105,16]},{"1184944":[141,14,17,175,219,3,112,9]},{"1184953":[28,141,208,16,24,105,16]},{"1184961":[141,16,17,175,221,3,112,9]},{"1184970":[28,141,210,16,24,105,16]},{"1184978":[141,18,17,175,223,3,112,9]},{"1184987":[28,141,212,16,24,105,16]},{"1184995":[141,20,17,175,108,3,112,41,255]},{"1185005":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185019":[153]},{"1185022":[200,200,202,208,8,72,152,24,105,44]},{"1185033":[168,104,198,2,208,236,32,17,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185057":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185079":[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]},{"1185118":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,37,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]},{"1185173":[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]},{"1185211":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185225":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,238,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185258":[141,18,11,107,110]},{"1185264":[111]},{"1185266":[112]},{"1185268":[113]},{"1185270":[115]},{"1185272":[116]},{"1185274":[117]},{"1185276":[118]},{"1185278":[120]},{"1185280":[121]},{"1185282":[122]},{"1185284":[123]},{"1185286":[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]},{"1185314":[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]},{"1185350":[143]},{"1185352":[81,127,200,200,183]},{"1185358":[143,2,81,127,200,200,183]},{"1185366":[143,4,81,127,200,200,183]},{"1185374":[143,6,81,127,169,2]},{"1185381":[133,4,34,14,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185409":[170,191]},{"1185412":[81,127,72,169]},{"1185418":[143]},{"1185420":[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]},{"1185482":[72,165,2,72,169,188,234,133]},{"1185491":[169,1]},{"1185494":[133,2,138,74,34,43,150,164,133,12,104,133,2,104,133]},{"1185510":[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]},{"1185542":[189,222,152,159]},{"1185547":[201,126,232,232,224,128,144,243,160]},{"1185557":[162]},{"1185559":[218,187,191,21,130,48,250,41,31]},{"1185569":[10,10,10,90,168,185,222,151,159,24,201,126,185,224,151,159,26,201,126,185,226,151,159,88,201,126,185,228,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,89,151,40,122,250,104,171,107,72,218,173]},{"1185629":[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]},{"1185659":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185680":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185703":[33,72,169,128,141]},{"1185709":[33,169,1,141,11,66,104,141]},{"1185718":[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]},{"1185746":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185771":[30,22,14]},{"1185775":[6,21,6,48,6]},{"1185781":[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]},{"1186151":[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]},{"1186227":[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]},{"1186324":[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]},{"1186381":[39,1,1,1,1,1,2,2,39,39,39]},{"1186397":[39,1,1,1,32,1,2,2,39,39,39]},{"1186413":[39,1,1,1,1,32,2,2,2,2,2]},{"1186429":[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]},{"1186473":[44]},{"1186475":[78,79,1,1,1,1,1,1,2,1,2]},{"1186487":[46]},{"1186491":[2,34,1,1,2]},{"1186499":[24,18,2,2]},{"1186504":[72]},{"1186509":[1,1,2]},{"1186513":[1,1,16,26,2]},{"1186520":[72]},{"1186525":[16,16,2]},{"1186529":[1,1,1,1]},{"1186535":[72]},{"1186538":[9]},{"1186541":[2,2,2]},{"1186545":[1,1,43]},{"1186550":[9]},{"1186557":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186621":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186637":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186654":[2,2,2]},{"1186659":[2,2,2,2]},{"1186670":[2,2,2,2,41,2,2,2,2]},{"1186685":[1,1,1,1,1,1,1,1,1,1,1]},{"1186699":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186733":[1,1,67,1,1,1,1,1,2,2,2]},{"1186749":[80,2,84,81,87,87,86,86,39,39,39]},{"1186761":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186777":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186793":[72,2,2]},{"1186797":[39,2,82,83,9,1,26,16,85,85]},{"1186809":[72,2,2]},{"1186813":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186835":[9,9,9,9,9,72,9,41]},{"1186844":[75,2,2,2]},{"1186849":[8,2,2]},{"1186856":[1]},{"1186859":[32]},{"1186861":[2,2,2,2,2,2,2]},{"1186870":[1,1,1,2]},{"1186875":[8]},{"1186877":[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]},{"1186977":[240,2,128,23,169,15,2,166,138,224,51]},{"1186989":[208,4,143,168,34,126,224,47]},{"1186998":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187012":[208,5,175,135,242,126,107,169,32]},{"1187022":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187045":[191,38,157,164,197,34,176,29,191,40,157,164,197,34,144,21,191,42,157,164,197,32,176,13,191,44,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187087":[201,184]},{"1187090":[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]},{"1187121":[10]},{"1187123":[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]},{"1187153":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187176":[143]},{"1187178":[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]},{"1187209":[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]},{"1187252":[112]},{"1187254":[240,14,48,15,32,1,96,1,208,10]},{"1187265":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187284":[64]},{"1187286":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187300":[201,5]},{"1187303":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187319":[208,18,173,10,4,41,255]},{"1187327":[201,67]},{"1187330":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187346":[208,25,173,10,4,41,255]},{"1187354":[201,91]},{"1187357":[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]},{"1187393":[176,5,10,170,252,82,158,171,194,48,162,30]},{"1187406":[169,190,13,107,82,159,82,159,82,159,83,159,82,159,126,159,82,159,120,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,199,160,82,159,82,159,82,159,206,160,82,159,82,159,82,159,82,159,82,159,82,159,237,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,135,163,82,159,82,159,82,159,82,159,82,159,82,159,163,163,82,159,101,167,232,169,82,159,239,169,82,159,82,159,82,159,82,159,38,170,82,159,251,166,82,159,82,159,82,159,82,159,82,159,82,159,156,170,82,159,19,171,82,159,241,170,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,26,171,82,159,82,159,82,159,33,171,82,159,82,159,82,159,82,159,82,159,82,159,61,171,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,15,173,29,173,82,159,82,159,22,173,82,159,36,173,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187682":[141,186,41,169,4,1,141,188,41,169,198]},{"1187694":[141,52,42,141,56,42,141,58,42,169,52]},{"1187706":[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]},{"1187809":[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]},{"1187956":[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]},{"1188035":[141,38,40,96,169,52]},{"1188042":[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]},{"1188155":[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]},{"1188191":[141,40,44,141,174,47,169,52]},{"1188200":[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]},{"1188239":[141,54,44,141,168,47,169,174]},{"1188248":[141,172,44,169,175]},{"1188254":[141,174,44,169,126]},{"1188260":[141,176,44,169,127]},{"1188266":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188284":[141,44,45,169,20]},{"1188290":[141,46,45,169,21]},{"1188296":[141,48,45,169,168]},{"1188302":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188320":[141,172,45,169,28]},{"1188326":[141,174,45,169,29]},{"1188332":[141,176,45,169,118]},{"1188338":[141,178,45,169,241]},{"1188344":[141,44,46,169,78]},{"1188350":[141,46,46,169,79]},{"1188356":[141,48,46,169,217]},{"1188362":[141,50,46,169,154]},{"1188368":[141,172,46,169,155]},{"1188374":[141,174,46,169,156]},{"1188380":[141,176,46,169,149]},{"1188386":[141,178,46,169,52]},{"1188392":[141,40,48,141,44,48,169,53]},{"1188401":[141,42,48,141,50,48,169,218]},{"1188410":[141,46,48,169,226]},{"1188416":[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]},{"1188497":[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]},{"1188581":[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]},{"1188638":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188654":[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]},{"1188746":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188767":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188783":[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]},{"1188825":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188846":[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]},{"1188912":[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]},{"1188942":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188960":[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]},{"1188987":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189008":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189026":[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]},{"1189095":[141,226,34,169,2,3,141,228,34,169,204]},{"1189107":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189131":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189152":[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]},{"1189194":[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]},{"1189227":[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]},{"1189322":[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]},{"1189455":[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]},{"1189548":[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]},{"1189623":[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]},{"1189757":[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]},{"1189802":[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]},{"1190120":[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]},{"1190165":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190183":[141,134,41,169,229]},{"1190189":[141,136,41,169]},{"1190194":[1,141,162,41,169,113]},{"1190201":[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]},{"1190246":[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]},{"1190282":[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]},{"1190309":[141,26,44,169,206]},{"1190315":[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]},{"1190379":[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]},{"1190434":[141,86,47,96,169,116,7,141]},{"1190443":[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]},{"1190485":[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]},{"1190701":[141,162,36,141,164,36,169,227]},{"1190710":[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]},{"1190837":[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]},{"1190867":[141,30,50,169,218]},{"1190873":[141,32,50,141,154,50,169,225]},{"1190882":[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]},{"1190927":[141,26,50,169,242]},{"1190933":[141,184,59,169,8,1,141,56,60,169,52]},{"1190945":[141,190,59,175,197,243,126,41,255]},{"1190955":[201,3]},{"1190958":[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]},{"1191101":[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,115,176,194,32,166,6,138,9]},{"1191332":[36,143,90,199,126,166,7,138,9]},{"1191342":[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,17,176,166,4,138,9]},{"1191375":[36,143,80,199,126,166,5,138,9]},{"1191385":[36,143,82,199,126,166,6,138,9]},{"1191395":[36,143,84,199,126,166,7,138,9]},{"1191405":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,115,176,194,32,166,6,138,9]},{"1191438":[36,143,96,199,126,166,7,138,9]},{"1191448":[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]},{"1191480":[175,24,244,126,32,76,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191502":[36,143,44,199,126,166,6,138,9]},{"1191512":[36,143,46,199,126,166,7,138,9]},{"1191522":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,76,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191558":[36,143,52,199,126,166,6,138,9]},{"1191568":[36,143,54,199,126,166,7,138,9]},{"1191578":[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]},{"1191611":[240,4,34,141,176,164,226,32,175,111,243,126,201,255,240,34,32,115,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191642":[9]},{"1191644":[36,143,100,199,126,166,7,138,9]},{"1191654":[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]},{"1191685":[24,105,7]},{"1191689":[41,248,255,170,175,202,80,127,41,255]},{"1191700":[208,3,130,215]},{"1191705":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191718":[165,26,41,12]},{"1191723":[74,74,240,58,201,1]},{"1191730":[240,98,201,2]},{"1191735":[208,3,130,180]},{"1191740":[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]},{"1191973":[144,6,200,233,100]},{"1191979":[128,245,132,5,160,144,201,10]},{"1191988":[144,6,200,233,10]},{"1191994":[128,245,132,6,160,144,201,1]},{"1192003":[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]},{"1192093":[240,11,175,100,243,126,63,206,176,164,208,1,107,124,234,176,32,115,176,194,32,166,6,138,9]},{"1192119":[36,143,148,199,126,166,7,138,9]},{"1192129":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192143":[128]},{"1192145":[64]},{"1192147":[32]},{"1192149":[16]},{"1192151":[8]},{"1192153":[4]},{"1192155":[2]},{"1192157":[1,128]},{"1192160":[64]},{"1192162":[32]},{"1192164":[16]},{"1192166":[8]},{"1192168":[4]},{"1192170":[6,177,6,177,33,177,58,177,86,177,111,177,136,177,161,177,186,177,213,177,240,177,11,178,36,178,63,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,173,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,173,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,173,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,173,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,173,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,173,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,173,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,173,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,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,173,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,173,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,173,176,107,159]},{"1192540":[4,112,159]},{"1192544":[5,112,159]},{"1192548":[6,112,159]},{"1192552":[7,112,159]},{"1192556":[8,112,159]},{"1192560":[9,112,159]},{"1192564":[10,112,159]},{"1192568":[11,112,159]},{"1192572":[12,112,159]},{"1192576":[13,112,159]},{"1192580":[14,112,159]},{"1192584":[15,112,107,159]},{"1192589":[244,126,159]},{"1192593":[101,127,159]},{"1192597":[102,127,159]},{"1192601":[103,127,159]},{"1192605":[104,127,159]},{"1192609":[105,127,159]},{"1192613":[106,127,159]},{"1192617":[107,127,159]},{"1192621":[108,127,159]},{"1192625":[109,127,159]},{"1192629":[110,127,159]},{"1192633":[111,127,107,72,226,48,173]},{"1192641":[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]},{"1192669":[141]},{"1192671":[67,169,128,141,1,67,169]},{"1192679":[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]},{"1192707":[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]},{"1192747":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192762":[72,171,173]},{"1192766":[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]},{"1192796":[67,141,1,67,169]},{"1192802":[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]},{"1192830":[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]},{"1192870":[67,194,48,171,104,162]},{"1192878":[138,107,165,17,34,156,135]},{"1192886":[197,179,164,221,179,164,252,179,164,253,180,164,19,181,164,169,128,141,16,7,34,61,137]},{"1192910":[34,51,131]},{"1192914":[34,135,148,164,169,7,133,20,230,17,107,32,28,182,100,200,100,201,34,37,181,164,208,11,162,15,169]},{"1192942":[159]},{"1192944":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,140,182,165,246,41,16,240,3,32,216,183,165,246,41,32,240,3,32,229,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,217,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,229,183,128,52,201,242,208,5,32,216,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193135":[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,138,183,32,63,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,37,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]},{"1193259":[16,112,208,3,130,161]},{"1193266":[202,16,244,194,32,162,14,169]},{"1193276":[159,208,80,127,202,202,16,248,32,216,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]},{"1193317":[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]},{"1193346":[133,4,34,14,178,160,226,32,175]},{"1193356":[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]},{"1193431":[107,169]},{"1193435":[133]},{"1193437":[133,2,169,11]},{"1193442":[133,4,166]},{"1193446":[191]},{"1193448":[16,112,58,41,31]},{"1193454":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193479":[16,6,24,105,8]},{"1193485":[230,2,133,4,165]},{"1193491":[26,133]},{"1193494":[201,16]},{"1193497":[144,201,96,173]},{"1193502":[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]},{"1193530":[141]},{"1193532":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,180,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]},{"1193610":[67,96,194,32,165,200,41,255]},{"1193619":[10,170,191,215,182,164,24,105,132,96,235,143,2,17]},{"1193634":[165,201,41,255]},{"1193639":[10,170,191,247,182,164,24,105,163,97,235,143,18,17]},{"1193654":[235,24,105,32]},{"1193659":[235,143,30,17]},{"1193664":[235,24,105,3]},{"1193669":[235,143,38,17]},{"1193674":[235,24,105,61]},{"1193679":[235,143,46,17]},{"1193684":[226,32,96,64]},{"1193689":[67]},{"1193691":[70]},{"1193693":[73]},{"1193695":[76]},{"1193697":[79]},{"1193699":[82]},{"1193701":[85]},{"1193703":[160]},{"1193705":[163]},{"1193707":[166]},{"1193709":[169]},{"1193711":[172]},{"1193713":[175]},{"1193715":[178]},{"1193717":[181]},{"1193719":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193739":[66]},{"1193741":[69]},{"1193743":[72]},{"1193745":[75]},{"1193747":[78]},{"1193749":[81]},{"1193751":[84]},{"1193753":[87]},{"1193755":[159]},{"1193757":[162]},{"1193759":[165]},{"1193761":[168]},{"1193763":[171]},{"1193765":[174]},{"1193767":[177]},{"1193769":[180]},{"1193771":[183]},{"1193773":[255]},{"1193775":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193798":[10,170,191,215,182,164,24,105,132,96,235,143,10,17]},{"1193813":[165,201,41,255]},{"1193818":[10,170,191,247,182,164,24,105,163,97,235,143,58,17]},{"1193833":[235,24,105,32]},{"1193838":[235,143,70,17]},{"1193843":[235,24,105,3]},{"1193848":[235,143,78,17]},{"1193853":[235,24,105,61]},{"1193858":[235,143,86,17]},{"1193863":[226,32,96,194,48,162,15]},{"1193871":[191]},{"1193873":[16,112,41,255]},{"1193878":[155,10,10,10,133]},{"1193884":[152,10,10,10,10,133,3,166]},{"1193893":[191,214,151,164,166,3,157,6,16,166]},{"1193904":[191,216,151,164,166,3,157,8,16,166]},{"1193915":[191,218,151,164,166,3,157,14,16,166]},{"1193926":[191,220,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]},{"1193973":[51,1,10,2,10]},{"1193979":[2,5,14,6,14]},{"1193985":[2]},{"1193987":[6,21,6]},{"1193991":[2,12,14,13,14]},{"1193997":[2,98,6,99,6]},{"1194003":[2,10,2,11,2]},{"1194009":[2,32,14,33,14]},{"1194015":[2,133,26,134,26]},{"1194021":[2,171,30,171,30,97,195]},{"1194029":[51,17,10,18,10]},{"1194035":[2]},{"1194037":[30,22,14]},{"1194041":[2,48,6]},{"1194045":[30]},{"1194047":[2,28,14,28,78]},{"1194053":[2,114,6,115,6]},{"1194059":[2,26,2,27,2]},{"1194065":[2,48,14,49,14]},{"1194071":[2,149,26,150,26]},{"1194077":[2,171,30,171,30,98,3]},{"1194085":[51,7,10,23,202]},{"1194091":[2,8,10,24,202]},{"1194097":[2,9,10,25,202]},{"1194103":[2,44,6,44,70]},{"1194109":[2,34,2,35,2]},{"1194115":[2,36,2,37,2]},{"1194121":[2,38,14,39,14]},{"1194127":[2,40,10,41,10]},{"1194133":[2,138,29]},{"1194137":[2,98,35]},{"1194141":[51,23,10,7,202]},{"1194147":[2,24,10,8,202]},{"1194153":[2,25,10,9,202]},{"1194159":[2,60,6,61,6]},{"1194165":[2,50,2,51,2]},{"1194171":[2,52,2,53,2]},{"1194177":[2,54,14,55,14]},{"1194183":[2,56,10,57,10]},{"1194189":[2,154,29]},{"1194193":[2,98,99]},{"1194197":[51,42,26,43,26]},{"1194203":[2,64,30,65,30]},{"1194209":[2,66,26,66,90]},{"1194215":[2,29,6,30,6]},{"1194221":[2,72,6,73,6]},{"1194227":[2,74,14,75,14]},{"1194233":[2,76,22,77,22]},{"1194239":[2,78,2,79,2]},{"1194245":[2]},{"1194247":[2,139,29,98,131]},{"1194253":[51,58,26,59,26]},{"1194259":[2,80,30,81,30]},{"1194265":[2,82,26,83,26]},{"1194271":[2,45,6,46,6]},{"1194277":[2,88,6,89,6]},{"1194283":[2,90,14,91,14]},{"1194289":[2,92,22,93,22]},{"1194295":[2,94,2,95,2]},{"1194301":[2]},{"1194303":[2,155,29,98,195]},{"1194309":[51,14,14,15,14]},{"1194315":[2,100,6,101,6]},{"1194321":[2,109,10,110,10]},{"1194327":[2,111,26,111,90]},{"1194333":[2,129,6,129,70]},{"1194339":[2,130,10,131,10]},{"1194345":[2,132,6,132,70]},{"1194351":[2,47,74,47,10]},{"1194357":[2,103,94,103,30,98,227]},{"1194365":[51,31,78,31,14]},{"1194371":[2,116,6,117,6]},{"1194377":[2,125,10,126,10]},{"1194383":[2,127,26,127,90]},{"1194389":[2,145,6,145,70]},{"1194395":[2,146,10,147,10]},{"1194401":[2,148,6,148,70]},{"1194407":[2,62,10,63,10]},{"1194413":[2,103,222,103,158,255,255,96,132]},{"1194423":[3,134,29,134,29,96,164]},{"1194431":[3,150,29,150,29,96,135]},{"1194439":[3,134,29,134,29,96,167]},{"1194447":[3,150,29,150,29,96,138]},{"1194455":[3,134,29,134,29,96,170]},{"1194463":[3,150,29,150,29,96,141]},{"1194471":[3,134,29,134,29,96,173]},{"1194479":[3,150,29,150,29,96,144]},{"1194487":[3,134,29,134,29,96,176]},{"1194495":[3,150,29,150,29,96,147]},{"1194503":[3,134,29,134,29,96,179]},{"1194511":[3,150,29,150,29,96,150]},{"1194519":[3,134,29,134,29,96,182]},{"1194527":[3,150,29,150,29,96,153]},{"1194535":[3,134,29,134,29,96,185]},{"1194543":[3,150,29,150,29,96,228]},{"1194551":[3,134,29,134,29,97,4]},{"1194559":[3,150,29,150,29,96,231]},{"1194567":[3,134,29,134,29,97,7]},{"1194575":[3,150,29,150,29,96,234]},{"1194583":[3,134,29,134,29,97,10]},{"1194591":[3,150,29,150,29,96,237]},{"1194599":[3,134,29,134,29,97,13]},{"1194607":[3,150,29,150,29,96,240]},{"1194615":[3,134,29,134,29,97,16]},{"1194623":[3,150,29,150,29,96,243]},{"1194631":[3,134,29,134,29,97,19]},{"1194639":[3,150,29,150,29,96,246]},{"1194647":[3,134,29,134,29,97,22]},{"1194655":[3,150,29,150,29,96,249]},{"1194663":[3,134,29,134,29,97,25]},{"1194671":[3,150,29,150,29,96,196]},{"1194679":[3]},{"1194681":[2]},{"1194683":[2,96,196]},{"1194687":[3,103,222,103,158,97,130]},{"1194695":[7]},{"1194697":[2]},{"1194699":[2]},{"1194701":[2]},{"1194703":[2,97,162,128,3]},{"1194709":[2]},{"1194711":[2,97,165,128,3]},{"1194717":[2]},{"1194719":[2,97,226]},{"1194723":[7]},{"1194725":[2]},{"1194727":[2]},{"1194729":[2]},{"1194731":[2,97,130]},{"1194735":[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]},{"1194763":[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]},{"1194802":[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]},{"1194929":[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]},{"1194989":[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,244,187,164,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,90,160,24,34,128,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195108":[208,11,40,90,160,24,34,128,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,159,155,160,107,72,175,67,244,126,208,4,34,168,192,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,244,187,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,244,187,164,104,34,168,160,2,107,58,16,8,169]},{"1195364":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195378":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,244,187,169,1,143]},{"1195404":[80,127,156,70,6,156,66,6,76,244,187,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,168,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195627":[83,127,201,3,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,158,191,164,226,48,169]},{"1195665":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195723":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195781":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,41,191,34,231,244,30,32,105,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,73,133,8,169,191,105]},{"1195838":[133,9,34,117,223,5,34,92,220,6,96]},{"1195851":[247,255,198]},{"1195856":[2]},{"1195861":[200]},{"1195864":[2]},{"1195867":[248,255,198]},{"1195872":[2]},{"1195877":[202,64]},{"1195880":[2,175,103,129,48,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,202,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195938":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195964":[98,41,110,41,107,41,105,41,127]},{"1195974":[111,41,97,41,106,41,112,41,127]},{"1195984":[112,41,107,41,127]},{"1195990":[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]},{"1196037":[33,218,162,128,142]},{"1196043":[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]},{"1196071":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196088":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1196179":[208,33,8,194,48,162]},{"1196187":[224,64]},{"1196190":[176,11,169,127]},{"1196195":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196218":[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]},{"1196265":[240,7,224,2,240,3,130,137]},{"1196274":[130,132]},{"1196277":[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]},{"1196423":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196440":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196456":[224,28]},{"1196459":[176,12,191,170,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196476":[175,211,244,126,41,255]},{"1196483":[58,201,64]},{"1196487":[176,63,10,10,10,10,10,170,192,60]},{"1196498":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196521":[176,11,169,127]},{"1196526":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,141,184,160,122,218,90,8,194,48,162]},{"1196682":[224,16]},{"1196685":[176,12,191,198,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196702":[175,152,192,126,41,255]},{"1196709":[58,201,64]},{"1196713":[176,63,10,10,10,10,10,170,192,48]},{"1196724":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196747":[176,11,169,127]},{"1196752":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 From 955d1c2875b775b9bc5a20d4269144b5e4f9d5b4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 03:21:01 +0100 Subject: [PATCH 140/185] Fix ganon's silvers hint with progressive bows --- Rom.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Rom.py b/Rom.py index a905951b..f6b9e0e4 100644 --- a/Rom.py +++ b/Rom.py @@ -1516,14 +1516,11 @@ def write_strings(rom, world, player): if distinguished_prog_bow_loc: prog_bow_locs.remove(distinguished_prog_bow_loc) silverarrow_hint = (' %s?' % hint_text(distinguished_prog_bow_loc).replace('Ganon\'s', 'my')) - tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint + tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint if any(prog_bow_locs): silverarrow_hint = (' %s?' % hint_text(random.choice(prog_bow_locs)).replace('Ganon\'s', 'my')) - tt['ganon_phase_3_no_silvers'] = 'Did you find the silver arrows%s' % silverarrow_hint - - - silverarrow_hint = (' %s?' % hint_text(silverarrows[0]).replace('Ganon\'s', 'my')) if silverarrows else '?\nI think not!' + tt['ganon_phase_3_no_silvers_alt'] = 'Did you find the silver arrows%s' % silverarrow_hint crystal5 = world.find_items('Crystal 5', player)[0] From c2e044032b3f7a283cfebe0e2f1787e54105d91f Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 03:30:59 +0100 Subject: [PATCH 141/185] Inverted: fix dw lake hylia shop (blue potion) --- InvertedRegions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvertedRegions.py b/InvertedRegions.py index 48234e02..66c8f925 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -396,7 +396,7 @@ _dark_world_shop_defaults = [('Red Potion', 150), ('Blue Shield', 50), ('Bombs ( default_shop_contents = { 'Cave Shop (Dark Death Mountain)': _basic_shop_defaults, 'Red Shield Shop': [('Red Shield', 500), ('Bee', 10), ('Arrows (10)', 30)], - 'Dark Lake Hylia Shop': _dark_world_shop_defaults, + 'Dark Lake Hylia Shop': [('Blue Potion', 160), ('Blue Shield', 50), ('Bombs (10)', 50)], 'Dark World Lumberjack Shop': _dark_world_shop_defaults, 'Village of Outcasts Shop': _dark_world_shop_defaults, 'Dark World Potion Shop': _dark_world_shop_defaults, From 6c9fde8beecae6adefe25c0671d0516cfb16fedc Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 06:26:03 +0100 Subject: [PATCH 142/185] Fix unusable infinite bombs with an empty inventory --- data/base2current.json | 2 +- data/base2current_extendedmsu.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/base2current.json b/data/base2current.json index 55e5714f..c467e24f 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[200]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,148,224,160,234]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,76,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[10]},{"5002":[181]},{"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,155,199,160]},{"21847":[34,115,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,8,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,155,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[143,163,160]},{"30994":[17,164,160]},{"31001":[143,163,160]},{"31011":[17,164,160]},{"31046":[61,222,160]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[36,222,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,56,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,193,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,182,147,164,234]},{"60423":[34,40,188,164]},{"60790":[64,223,160]},{"61077":[61,181,160]},{"61133":[34,141,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,255,237,160]},{"65607":[11,237,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,120,194,160,234]},{"65894":[34,166,194,160]},{"66284":[34,201,194,160]},{"66292":[92,27,248,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,1,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,209,223,160,234,234]},{"67934":[168,248,160]},{"68495":[34,23,155,160,208,6,234]},{"68584":[172,248,160]},{"69776":[34,23,155,160,208,4,234]},{"70410":[172,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,20,248,160,234]},{"72216":[246,221,160]},{"72241":[34,166,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[2,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,182,194,160]},{"74833":[34,213,130,164]},{"76423":[34,4,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]},{"78172":[34,108,223,160,34,219,153,160,234,234]},{"79603":[34,42,222,160]},{"79767":[34,224,223,160]},{"82676":[172,248,160]},{"87892":[34,241,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,62,239,160]},{"90651":[34,98,236,160,234,234]},{"93230":[34,246,154,164,234,234]},{"93325":[34,178,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,246,154,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,213,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[114,188,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[128,181,160]},{"173058":[128,181,160]},{"173307":[128,181,160]},{"173320":[128,181,160]},{"183384":[34,158,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[140,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,141,235,160,128,13]},{"189655":[34,45,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[57,188,164]},{"191439":[34,74,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,94,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,114,195,160,234]},{"192121":[202,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,43,179,160]},{"193157":[34,36,179,160]},{"193440":[34,17,220,160]},{"193472":[34,235,160]},{"193546":[34,17,220,160]},{"193578":[234,234,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[242,194,160]},{"194141":[34,226,195,160,234,234,234,234,234]},{"194177":[34,72,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,141,235,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,72,199,160]},{"195589":[122,176,160]},{"195710":[34,150,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[83,176,160]},{"195909":[93,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[201,192,160]},{"198721":[34,243,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,46,184,164]},{"198942":[34,85,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,41,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[20,176,160]},{"199993":[34,103,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,206,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,69,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[76,188,164]},{"212610":[95,188,164]},{"213139":[34,185,164]},{"213169":[147,133,160]},{"214205":[34,201,180,160]},{"214972":[91,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,141,222,160]},{"217579":[34,107,193,160]},{"224597":[34,17,219,160]},{"224693":[34,37,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,51,220,160,234]},{"226304":[34,102,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,226,237,160]},{"229634":[34,124,186,164]},{"230816":[73,179,160]},{"230955":[73,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,235,237,160,234]},{"233987":[147,221,160]},{"234731":[34,240,221,160]},{"234747":[34,246,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[233,204,160]},{"236047":[75,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[26,198,160]},{"238498":[34,163,196,160,128,3]},{"238562":[34,230,198,160,240,4,234]},{"238751":[34,167,220,160]},{"238964":[34,167,220,160]},{"239190":[34,167,220,160]},{"239964":[134,223,160]},{"240044":[92,231,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,135,219,160]},{"241165":[34,135,219,160]},{"241175":[34,235,128,164]},{"241294":[34,135,219,160]},{"241304":[34,235,128,164]},{"241814":[34,135,219,160,24,125,139,176]},{"241869":[135,235,160]},{"241877":[34,135,219,160,24,125,139,176]},{"242942":[34,251,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,5,223,160,234]},{"243067":[234,234,34,214,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,165,219,160,234]},{"250478":[34,219,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,37,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,232,243,160,234]},{"273608":[34,197,182,160,76,230,172]},{"275716":[34,169,182,160,234]},{"276202":[34,230,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,143,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,69,238,160,234,234]},{"279880":[92,17,189,164]},{"280037":[34,27,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[135,235,160]},{"280106":[92,212,225,160,234]},{"280265":[201,210,160]},{"280287":[201,209,160]},{"280314":[201,210,160]},{"280335":[34,229,179,160]},{"282028":[34,106,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,101,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,135,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,234,200,160,234]},{"296453":[92,133,188,164,234]},{"296466":[201,211]},{"296471":[202,211]},{"296480":[201,213]},{"296488":[201,211]},{"296493":[202,211]},{"296502":[201,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[201,214]},{"296810":[217,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[249,206]},{"297052":[233,207]},{"297087":[34,69,133,160,234,176]},{"297144":[201,209]},{"297200":[249,206]},{"297225":[233,207]},{"297263":[202,215]},{"297292":[34,53,195,160]},{"297309":[209,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,35,189,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]},{"324619":[34,11,153,160]},{"324675":[34,239,222,160]},{"324780":[8,8,16]},{"324896":[34,83,236,160,34,215,222,160,234,234,234,234,234,234]},{"324996":[34,182,194,160]},{"325098":[169,2,0,234]},{"325131":[34,131,236,160]},{"325203":[34,163,175,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":[27,238,160]},{"342245":[34,59,132,160,34,88,222,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[36,222,160]},{"410347":[34,163,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[216,237,160]},{"412876":[92,113,175,164]},{"413015":[107]},{"413094":[134,145,164]},{"413109":[34,47,236,160]},{"413141":[34,150,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,43,146,164,234,234,234,234]},{"413264":[34,82,146,164,234,234,234,234,234,234]},{"413297":[92,121,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,212,175,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,150,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,114,175,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,3,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,114,175,164]},{"415678":[34,171,146,164]},{"416378":[30,147,164]},{"416491":[34,245,146,164,234]},{"416529":[34,208,146,164]},{"416588":[234,234,234,234]},{"416912":[34,236,146,164]},{"416937":[34,222,146,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]},{"422780":[28,244,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,167,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,65,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,95,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,44,244,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,56,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,139,155,160]},{"450360":[34,1,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,109,184,160,234]},{"450492":[34,107,155,160,234,234,234]},{"450861":[34,131,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,254,155,160,234]},{"452559":[34,236,155,160,234]},{"452581":[34,16,156,160,234]},{"452634":[96]},{"453064":[34,43,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,131,193,160,234,234,76,230,236]},{"453867":[34,34,156,160,234]},{"453892":[34,52,156,160]},{"454092":[34,157,155,160,234,234,234,234,234]},{"454233":[34,157,155,160,234,234,234,234,234]},{"454256":[34,235,194,160,234]},{"454282":[34,157,155,160,234,234,234,234,234]},{"454459":[34,157,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,242,216,160]},{"457513":[34,24,217,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,73,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,67,236,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,25,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[19,234,160]},{"487403":[169,2,0,234]},{"487935":[34,65,226,160]},{"488156":[34,65,226,160]},{"488213":[34,65,226,160]},{"488242":[34,65,226,160]},{"488309":[34,65,226,160]},{"488340":[34,65,226,160]},{"488721":[34,65,226,160]},{"489560":[34,65,226,160]},{"490022":[34,65,226,160]},{"490060":[34,65,226,160]},{"490164":[34,65,226,160]},{"490184":[34,65,226,160]},{"490209":[34,65,226,160]},{"490257":[34,65,226,160]},{"490438":[34,81,226,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]},{"882113":[34,164,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,63,240,160]},{"900244":[34,147,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,138,240,160,234]},{"900437":[92,36,239,160,234]},{"900447":[34,227,247,160,234,234,234]},{"900458":[34,42,222,160]},{"901799":[34,118,150,164,107,32,222,201,107]},{"903876":[34,204,240,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,121,234,160,96]},{"954852":[220,181,160]},{"955117":[88,234,160]},{"955529":[216,181,160]},{"962925":[181,181,160]},{"962951":[181,181,160]},{"963167":[181,181,160]},{"963214":[181,181,160]},{"965041":[181,181,160]},{"965069":[181,181,160]},{"965214":[181,181,160]},{"965298":[181,181,160]},{"965316":[181,181,160]},{"967797":[34,29,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,55,180,160]},{"972824":[132,181,160]},{"972834":[132,181,160]},{"972851":[132,181,160]},{"974665":[92,182,197,160,234]},{"974706":[243,197,160]},{"974722":[216,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,199,197,160,234,234]},{"975332":[34,165,197,160,234,234]},{"975401":[255]},{"976357":[177,181,160]},{"976423":[177,181,160]},{"978658":[161,181,160]},{"979078":[34,37,220,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":[37,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,129,196,160]},{"983466":[161,181,160]},{"983651":[161,181,160]},{"988539":[173,181,160]},{"988657":[173,181,160]},{"988668":[173,181,160]},{"988874":[173,181,160]},{"988902":[173,181,160]},{"989142":[173,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[165,181,160]},{"999246":[169,181,160]},{"999265":[169,181,160]},{"999359":[169,181,160]},{"999574":[169,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,123,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[136,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[136,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,125,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,155,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,174,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,194,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,145,179,160,122,250,107,218,90,34,201,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,67,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,67,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,67,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,67,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,67,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,67,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,67,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,67,147,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,67,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,67,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,67,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,67,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,67,147,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,67,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,67,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,67,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,67,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,67,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,67,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,67,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,67,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,67,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,67,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,67,147,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,67,147,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,67,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,203,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,131,217,160,76,49,145,201,251,208,7,34,63,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,203,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,131,217,160,76,114,147,201,251,208,7,34,63,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,203,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,131,217,160,128,8,201,99,208,4,34,63,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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,175,90,128,48,41,255]},{"1055518":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055531":[107,175,122,243,126,47,165,160,2,41,255]},{"1055543":[107,194,32,175,19,130,48,41,255]},{"1055553":[240,5,169,8]},{"1055558":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055571":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055593":[2,107,175,19,130,48,41,255]},{"1055602":[240,5,169,8]},{"1055607":[128,7,175,72,128,48,41,255]},{"1055616":[24,101,234,48,3,169]},{"1055624":[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]},{"1055651":[201,255]},{"1055654":[208,1,107,175,22,244,126,41,32]},{"1055664":[240,4,169]},{"1055669":[107,173,12,4,41,255]},{"1055676":[201,255]},{"1055679":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055703":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,64,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055735":[107,169,136,21,133]},{"1055741":[107,175,69,128,48,208,6,169,16,22,133]},{"1055753":[107,169,144,21,133]},{"1055759":[107,175,69,128,48,208,6,169,24,22,133]},{"1055771":[107,169,152,21,133]},{"1055777":[107,175,69,128,48,208,6,169,32,22,133]},{"1055789":[107,169,160,21,133]},{"1055795":[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]},{"1055887":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055901":[144,240,175,22,244,126,41,32]},{"1055910":[240,3,130,200,1,175,69,128,48,41,1]},{"1055922":[208,3,130,231]},{"1055927":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055949":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055966":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055983":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056000":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056017":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056034":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056051":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056068":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056085":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056102":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056119":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056136":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056153":[141,165,22,194,32,175,69,128,48,41,2]},{"1056165":[208,3,130,201]},{"1056170":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056183":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056198":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056213":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056228":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056243":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056258":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056273":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056288":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056303":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056318":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056333":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056348":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056363":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056378":[208,3,130,170,1,175,69,128,48,41,4]},{"1056390":[208,3,130,201]},{"1056395":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056408":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056423":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056438":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056453":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056468":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056483":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056498":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056513":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056528":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056543":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056558":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056573":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056588":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056603":[208,3,130,201]},{"1056608":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056621":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056636":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056651":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056666":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056681":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056696":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056711":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056726":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056741":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056756":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056771":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056786":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056801":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056820":[191,115,161,160,157,234,18,191,135,161,160,157,42,19,191,155,161,160,157,106,19,191,175,161,160,157,170,19,191,195,161,160,157,234,19,191,215,161,160,157,42,20,191,235,161,160,157,106,20,191,255,161,160,157,170,20,191,19,162,160,157,234,20,232,232,224,20]},{"1056888":[144,186,175,116,243,126,41,4]},{"1056897":[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]},{"1056930":[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]},{"1056963":[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]},{"1056996":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057017":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057038":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057059":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057080":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057101":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057122":[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]},{"1057745":[143,114,243,126,173,10,2,208,14,169]},{"1057756":[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]},{"1057790":[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]},{"1057871":[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]},{"1057914":[165,12,201,232,3,144,3,130,24]},{"1057924":[201,100]},{"1057927":[144,3,130,97]},{"1057932":[201,10]},{"1057935":[144,3,130,170]},{"1057940":[201,1]},{"1057943":[144,3,130,243]},{"1057948":[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,33,166,133,14,165,14,159]},{"1057985":[201,126,232,232,169,56]},{"1057992":[159]},{"1057994":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058008":[201,126,232,232,169]},{"1058015":[159]},{"1058017":[201,126,232,232,165,14,24,105,8]},{"1058027":[133,14,100,10,165,12,201,100]},{"1058036":[144,8,56,233,100]},{"1058042":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,33,166,133,14,165,14,159]},{"1058066":[201,126,232,232,169,56]},{"1058073":[159]},{"1058075":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058089":[201,126,232,232,169]},{"1058096":[159]},{"1058098":[201,126,232,232,165,14,24,105,8]},{"1058108":[133,14,100,10,165,12,201,10]},{"1058117":[144,8,56,233,10]},{"1058123":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,33,166,133,14,165,14,159]},{"1058147":[201,126,232,232,169,56]},{"1058154":[159]},{"1058156":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058170":[201,126,232,232,169]},{"1058177":[159]},{"1058179":[201,126,232,232,165,14,24,105,8]},{"1058189":[133,14,100,10,165,12,201,1]},{"1058198":[144,8,56,233,1]},{"1058204":[230,10,128,243,133,12,192,255,208,10,160]},{"1058216":[165,14,24,121,33,166,133,14,165,14,159]},{"1058228":[201,126,232,232,169,56]},{"1058235":[159]},{"1058237":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058251":[201,126,232,232,169]},{"1058258":[159]},{"1058260":[201,126,232,232,165,14,24,105,8]},{"1058270":[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]},{"1058341":[252,255,248,255,218,90,8,194,48,162]},{"1058353":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058368":[208,13,175,153,80,127,41,255]},{"1058377":[223,3,200,48,208,44,226,32,191]},{"1058387":[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]},{"1058429":[200,48,41,255]},{"1058434":[201,255]},{"1058437":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058460":[226,32,162]},{"1058465":[160]},{"1058468":[152,207,96,80,127,144,3,130,172]},{"1058478":[191,1,201,48,201,255,208,3,130,161]},{"1058489":[191]},{"1058491":[201,48,207,80,80,127,240,3,130,137]},{"1058502":[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]},{"1058539":[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,213,167,160,170,32,244,167,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]},{"1058670":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058684":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,47,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,48,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,49,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]},{"1058777":[128]},{"1058782":[1]},{"1058785":[169,11,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,49,145,160,34,45,213]},{"1058824":[194,16,96,32,15,168,107,173]},{"1058833":[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]},{"1058863":[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]},{"1058900":[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]},{"1059041":[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]},{"1059206":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059227":[175,81,80,127,201,255,208,3,76,136,169,139,75,171,34,231,244,30,32,214,169,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]},{"1059278":[32,243,173,32,243,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059301":[201,2,208,3,130,227]},{"1059308":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059323":[165,26,41,16,240,12,189,106,170,159]},{"1059334":[201,126,232,224,16,144,244,189,122,170,159]},{"1059346":[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]},{"1059405":[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]},{"1059436":[248,255]},{"1059441":[2]},{"1059446":[16]},{"1059449":[2]},{"1059452":[248,255]},{"1059457":[2]},{"1059462":[16,64]},{"1059465":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,191,133,8,169,170,133,9,128,8,169,199,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059523":[70,10]},{"1059526":[2]},{"1059531":[70,74]},{"1059534":[2,218,162]},{"1059538":[165,26,41,64,240,12,189,65,171,159]},{"1059549":[201,126,232,224,16,144,244,189,81,171,159]},{"1059561":[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]},{"1059620":[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]},{"1059651":[248,255,132]},{"1059656":[2]},{"1059661":[16]},{"1059664":[2]},{"1059667":[248,255,132]},{"1059672":[2]},{"1059677":[16,64]},{"1059680":[2,218,162]},{"1059684":[165,26,41,64,240,12,189,211,171,159]},{"1059695":[201,126,232,224,16,144,244,189,227,171,159]},{"1059707":[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]},{"1059766":[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]},{"1059797":[248,255,142]},{"1059802":[2]},{"1059807":[16]},{"1059810":[2]},{"1059813":[248,255,142]},{"1059818":[2]},{"1059823":[16,64]},{"1059826":[2,218,90,8,160]},{"1059832":[90,152,74,74,168,175,95,80,127,57,47,173,240,3,122,128,48,122,173,238]},{"1059853":[221,32,15,208,39,32,198,173,32,50,173,34,230,131,6,144,3,32,230,173,32,156,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,72,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]},{"1059981":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059997":[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,47,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,47,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]},{"1060150":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060171":[58,10,168,185,232,174,133]},{"1060179":[122,104,24,113]},{"1060184":[24,105,2]},{"1060188":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060201":[13,194,32,90,200,200,24,113]},{"1060210":[122,72,175,81,80,127,41,128]},{"1060219":[240,7,104,24,105,4]},{"1060226":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060249":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060266":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060279":[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]},{"1060307":[165,35,105]},{"1060311":[133,8,165,32,105,8,133,1,165,33,105]},{"1060323":[133,9,96,218,34]},{"1060329":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060351":[160]},{"1060353":[175,81,80,127,41,3,201,3,208,5,32,36,174,128,4,201,2,208,5,32,36,174,128,4,201,1,208,3,32,36,174,122,250,171,96,175,95,80,127,57,47,173,240,3,130,178]},{"1060400":[90,175,81,80,127,41,3,58,10,168,194,32,185,232,174,133]},{"1060417":[163,1,10,10,168,177]},{"1060424":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060437":[208,8,177]},{"1060441":[143,39,192,126,128,10,177]},{"1060449":[24,105,4]},{"1060453":[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,6,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,114,147,160,143,42,192,126,169]},{"1060520":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060546":[143,44,192,126,32,219,175,169,2,218,72,175,97,80,127,170,104,32,146,175,250,175,81,80,127,41,128,208,3,32,9,175,200,232,232,232,232,96,238,174,242,174,250,174,8]},{"1060592":[40]},{"1060594":[240,255,40]},{"1060598":[32]},{"1060600":[40]},{"1060602":[216,255,40]},{"1060606":[8]},{"1060608":[40]},{"1060610":[56]},{"1060612":[40]},{"1060614":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060633":[58,10,168,185,232,174,133]},{"1060641":[185,128,175,133,2,122,90,152,10,10,168,177]},{"1060654":[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,115,164,226,32,133,6,100,7,72,169]},{"1060693":[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,134,175,136,175,140,175]},{"1060743":[255]},{"1060745":[128,128,255]},{"1060749":[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]},{"1060830":[194,32,191,37,192,126,24,105,4]},{"1060840":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060856":[159,47,192,126,191,41,192,126,24,105,16]},{"1060868":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060910":[72,165,2,72,169,16,128,133]},{"1060919":[169,48]},{"1060922":[133,2,169,2]},{"1060927":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060974":[143]},{"1060976":[80,127,32,189,176,34,79,150,160,107,72,175]},{"1060989":[80,127,240,6,34,108,176,160,128,13,32,189,176,34,12,151,160,169]},{"1061008":[143,152,192,126,104,107,32,189,176,201,36,208,24,90,160,36,34,174,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061093":[143,152,192,126,169,36,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]},{"1061368":[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]},{"1061435":[191,4,179,160,197,4,144,3,232,128,245,191,5,179,160,133,6,100,7,194,32,138,10,10,170,191,6,179,160,141,232,80,191,8,179,160,141,234,80,173]},{"1061476":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061494":[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,240,176,173,236,80,10,10,170,189]},{"1061531":[81,56,229,8,157]},{"1061537":[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]},{"1061569":[81,141,228,80,189,2,81,141,230,80,32,240,176,173]},{"1061584":[81,56,229,8,141]},{"1061590":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,236,176,160,141,232,80,173,234,80,239,238,176,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,34,49,145,160,72,165,138,201,3,240,6,34,23,179,160,128,4,34,10,179,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,50,179,160,169,235,143]},{"1061736":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061760":[13,165,33,153,32,13,169]},{"1061768":[153,32,15,169,127,153,112,15,107,72,8,34,187,179,160,144,31,156,18,1,156,239,3,169]},{"1061793":[133,93,194,32,165,138,201,48]},{"1061802":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061826":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061839":[128,16,201,48]},{"1061844":[208,11,165,34,201]},{"1061850":[2,144,4,56,130,1]},{"1061857":[24,226,32,107,191,201,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061878":[226,32,34,16,247,8,169,52,145,144,200,191,201,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061913":[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]},{"1061975":[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,195,180,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]},{"1062122":[13,173,219,15,233]},{"1062128":[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]},{"1062167":[13,173,219,15,233]},{"1062173":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062198":[254,127,208,245,169,4,107,34,28,223,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,46,223,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,46,223,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062271":[107,169]},{"1062274":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,244,181,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,244,181,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,244,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,244,181,160,107,218,8,194,32,41,127]},{"1062395":[10,170,191]},{"1062399":[82,127,26,41,255,3,159]},{"1062407":[82,127,170,10,191]},{"1062413":[128,175,40,250,107,218,8,194,48,162]},{"1062425":[191,73,182,160,159]},{"1062431":[82,127,232,232,191,73,182,160,159]},{"1062441":[82,127,232,232,191,73,182,160,159]},{"1062451":[82,127,232,232,191,73,182,160,159]},{"1062461":[82,127,232,232,224,127]},{"1062468":[144,211,40,250,107]},{"1062475":[64]},{"1062477":[128]},{"1062479":[192]},{"1062482":[1,64,1,128,1,192,1]},{"1062490":[2,64,2,128,2,192,2]},{"1062498":[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,105,182,160,175,35,128,48,208,4,34,137,182,160,104,107,72,169]},{"1062600":[143,65,80,127,175,34,128,48,201,1,208,4,34,105,182,160,175,35,128,48,201,1,208,4,34,137,182,160,104,107,72,175,34,128,48,201,2,208,4,34,105,182,160,175,35,128,48,201,2,208,4,34,137,182,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]},{"1062766":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062783":[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]},{"1062854":[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]},{"1062890":[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,61,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]},{"1063015":[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]},{"1063041":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063061":[2,156,5,2,169]},{"1063067":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,159,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063098":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063115":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063132":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063149":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063166":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063183":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063200":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063217":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063240":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063257":[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]},{"1063290":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063313":[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]},{"1063345":[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]},{"1063403":[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]},{"1063429":[192,59,208,3,130,96]},{"1063436":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063461":[201,15,1,208,3,130,59]},{"1063469":[201,16,1,208,3,130,51]},{"1063477":[201,28,1,208,3,130,43]},{"1063485":[201,31,1,208,3,130,35]},{"1063493":[201,255]},{"1063496":[208,3,130,27]},{"1063501":[201,20,1,208,3,130,19]},{"1063509":[201,21,1,208,3,130,11]},{"1063517":[201,22,1,208,3,130,3]},{"1063525":[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]},{"1063557":[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]},{"1063710":[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]},{"1063748":[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]},{"1063786":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063804":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063822":[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]},{"1063858":[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]},{"1063896":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063914":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,139,192,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]},{"1064018":[208,9,32,37,191,32,86,191,130,64,2,192,1,208,6,32,37,191,130,54,2,192,2,208,6,32,37,191,130,44,2,192,3,208,6,32,37,191,130,34,2,192,4,208,6,32,86,191,130,24,2,192,5,208,6,32,86,191,130,14,2,192,6,208,6,32,86,191,130,4,2,192,7,144,10,192,14,176,6,32,135,191,130,246,1,192,20,208,9,32,227,190,32,135,191,130,233,1,192,15,144,10,192,23,176,6,32,135,191,130,219,1,192,23,208,6,32,235,191,130,209,1,192,24,144,10,192,26,176,6,32,135,191,130,195,1,192,26,208,9,32,4,191,32,135,191,130,182,1,192,29,208,6,32,135,191,130,172,1,192,27,144,10,192,32,176,6,32,147,191,130,158,1,192,32,208,6,32,19,192,130,148,1,192,33,208,6,32,135,191,130,138,1,192,34,144,10,192,36,176,6,32,47,192,130,124,1,192,36,208,6,32,63,192,130,114,1,192,37,208,6,32,95,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,167,192,130,87,1,192,40,208,6,32,167,192,130,77,1,192,41,208,6,32,135,191,130,67,1,192,42,144,10,192,46,176,6,32,135,191,130,53,1,192,49,208,6,32,167,192,130,43,1,192,50,208,6,32,127,192,130,33,1,192,51,208,6,32,189,192,130,23,1,192,55,144,10,192,58,176,6,32,175,191,130,9,1,192,58,144,10,192,60,176,6,32,116,191,130,251]},{"1064354":[192,60,208,6,32,135,191,130,241]},{"1064364":[192,61,208,6,32,135,191,130,231]},{"1064374":[192,62,144,10,192,64,176,6,32,7,192,130,217]},{"1064388":[192,72,208,6,32,135,191,130,207]},{"1064398":[192,73,208,6,32,37,191,130,197]},{"1064408":[192,74,208,9,32,227,190,32,135,191,130,184]},{"1064421":[192,75,208,9,32,194,190,32,147,191,130,171]},{"1064434":[192,76,208,9,32,203,191,32,167,192,130,158]},{"1064447":[192,77,144,10,192,80,176,6,32,203,191,130,144]},{"1064461":[192,80,208,6,32,37,191,130,134]},{"1064471":[192,81,144,10,192,85,176,6,32,203,191,130,120]},{"1064485":[192,88,208,6,32,116,191,130,110]},{"1064495":[192,94,208,6,32,37,191,130,100]},{"1064505":[192,95,208,6,32,86,191,130,90]},{"1064515":[192,96,208,6,32,47,192,130,80]},{"1064525":[192,97,208,6,32,147,191,130,70]},{"1064535":[192,100,144,10,192,102,176,6,32,116,191,130,56]},{"1064549":[192,112,144,10,192,128,176,6,32,189,192,130,42]},{"1064563":[192,128,144,10,192,144,176,6,32,95,192,130,28]},{"1064577":[192,144,144,10,192,160,176,6,32,127,192,130,14]},{"1064591":[192,160,144,10,192,176,176,6,32,63,192,130]},{"1064605":[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,161,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064757":[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,63,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,135,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,205,192,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,64,238,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]},{"1065353":[201,2]},{"1065356":[208,14,175,140,243,126,41,192]},{"1065365":[201,192]},{"1065368":[240,79,128,64,201,1]},{"1065375":[208,14,175,142,243,126,41,192]},{"1065384":[201,192]},{"1065387":[240,60,128,45,201,5]},{"1065394":[208,14,175,140,243,126,41,48]},{"1065403":[201,48]},{"1065406":[240,41,128,26,201,13]},{"1065413":[208,16,175,140,243,126,137,4]},{"1065422":[240,12,41,3]},{"1065427":[208,20,128,5,201,16]},{"1065434":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065447":[208,5,169,79,61,128,6,32,248,193,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]},{"1065494":[41,255,239,153,4]},{"1065500":[185,62]},{"1065503":[41,255,239,153,62]},{"1065509":[185,68]},{"1065512":[41,255,239,153,68]},{"1065518":[185,128]},{"1065521":[41,255,239,153,128]},{"1065527":[185,130]},{"1065530":[41,255,239,153,130]},{"1065536":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065557":[41,255,239,153,132]},{"1065563":[185,126]},{"1065566":[41,255,239,153,126]},{"1065572":[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]},{"1065610":[201,144]},{"1065613":[208,3,169,127]},{"1065618":[9]},{"1065620":[36,143,100,199,126,165,5,41,255]},{"1065630":[9]},{"1065632":[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,181,240,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065744":[72,165,2,72,169,16,128,133]},{"1065753":[169,48]},{"1065756":[133,2,169,4]},{"1065761":[34,67,147,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065807":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065828":[143]},{"1065830":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065844":[157,192,13,72,169,1,143]},{"1065852":[80,127,165,93,201,20,240,68,169]},{"1065862":[143]},{"1065864":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065892":[72,165,2,72,169,16,128,133]},{"1065901":[169,48]},{"1065904":[133,2,169,3]},{"1065909":[34,67,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065934":[80,127,240,6,34,119,195,160,128,7,189,128,14,34,187,150,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]},{"1065977":[72,165,2,72,169,16,128,133]},{"1065986":[169,48]},{"1065989":[133,2,169,4]},{"1065994":[34,67,147,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,151,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]},{"1066052":[143,68,243,126,107,175,123,243,126,41,255]},{"1066064":[201,2]},{"1066067":[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]},{"1066100":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066115":[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]},{"1066151":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066165":[173,91,3,41,1,208,3,130,134]},{"1066175":[90,8,139,75,171,226,48,165,27,240,3,76,66,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066212":[129,48,143]},{"1066216":[254,127,34,93,246,29,162]},{"1066224":[165,47,201,4,240,1,232,191,70,197,160,153,80,13,169]},{"1066240":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,72,197,160,41,240,153,16,13,165,35,105]},{"1066274":[153,48,13,165,32,24,105,22,41,240,153]},{"1066286":[13,165,33,105]},{"1066291":[153,32,13,169]},{"1066296":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066313":[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]},{"1066344":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066365":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066435":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066466":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066560":[72,165,2,72,169,64,129,133]},{"1066569":[169,48]},{"1066572":[133,2,169,10]},{"1066577":[34,67,147,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066597":[254,127,34,93,246,29,162]},{"1066605":[165,47,201,4,240,1,232,191,202,198,160,153,80,13,169]},{"1066621":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,204,198,160,41,240,153,16,13,165,35,105]},{"1066655":[153,48,13,165,32,24,105,22,41,240,153]},{"1066667":[13,165,33,105]},{"1066672":[153,32,13,169]},{"1066677":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066701":[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]},{"1066780":[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]},{"1066807":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066846":[72,165,2,72,169,16,128,133]},{"1066855":[169,48]},{"1066858":[133,2,169,5]},{"1066863":[34,67,147,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]},{"1066917":[201,35,208,6,160,93,92,71,213]},{"1066927":[201,72,208,6,160,96,92,71,213]},{"1066937":[201,36,176,6,160,91,92,71,213]},{"1066947":[201,55,176,6,160,92,92,71,213]},{"1066957":[201,57,176,6,160,93,92,71,213]},{"1066967":[160,50,92,71,213]},{"1066973":[192,9,48]},{"1066977":[96]},{"1066979":[144]},{"1066981":[192]},{"1066984":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067008":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067026":[9,48,9,96,9,144,9,240,9]},{"1067037":[240]},{"1067039":[32,10,80,10,96,6]},{"1067046":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067068":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067084":[6,48,6]},{"1067088":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067104":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067125":[127,221,199,160,107,165]},{"1067132":[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]},{"1067163":[132,175,24,105]},{"1067168":[136,133]},{"1067171":[226,32,169,175,133,2,34,99,226,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,235,218,160,162,1,128,2,162]},{"1067229":[171,40,122,104,133,2,104,133,1,104,133]},{"1067241":[96,218,173,216,2,34,153,226,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067724":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,235,218,160,130,116,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,235,218,160,130,72,1,201,109,208,7,34,232,184,164,130,61,1,201,110,208,7,34,232,184,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067971":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067996":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068019":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068038":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068055":[56,233,8,170,169,1,224]},{"1068063":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068086":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068105":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068122":[56,233,8,170,169,1,224]},{"1068130":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068153":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068175":[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]},{"1068207":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068226":[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]},{"1068252":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,57,238,160,173,216,2,72,175,152,192,126,208,12,104,32,154,218,141,216,2,32,112,218,128,1,104,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,203,218,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]},{"1068415":[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]},{"1068528":[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]},{"1068568":[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]},{"1068598":[175,91,243,126,201]},{"1068604":[208,8,169,34,141,216,2,130,171]},{"1068614":[169,35,141,216,2,130,163]},{"1068622":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068640":[169,28,141,216,2,130,137]},{"1068648":[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]},{"1068680":[175,64,243,126,26,74,201]},{"1068688":[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,131,217,160,141,216,2,235,32,14,218,169,255,143,144,80,127,128,36,201,99,208,15,34,63,218,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]},{"1068785":[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]},{"1069040":[4,4,4,4,4,5]},{"1069052":[4]},{"1069054":[4]},{"1069057":[4]},{"1069069":[4]},{"1069075":[5]},{"1069085":[4,4,4]},{"1069099":[4,4]},{"1069102":[4]},{"1069106":[4]},{"1069113":[4]},{"1069122":[4]},{"1069193":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069273":[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]},{"1069322":[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]},{"1069361":[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]},{"1069518":[2,2]},{"1069526":[2,2,2,2,2,2]},{"1069533":[2]},{"1069535":[2,2]},{"1069538":[2,2,2,2,2,2,2,2,2,2,2]},{"1069550":[2,2,2,2,2]},{"1069556":[2,2,2,2,2,2,2,2,2]},{"1069568":[2,2,2,2,2,2,2,2,2,2,2]},{"1069581":[2]},{"1069583":[2,2,2]},{"1069587":[2,2,2,2,2,2]},{"1069594":[2,2,2,2,2,2,2,2]},{"1069603":[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]},{"1069689":[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]},{"1069875":[4,4,4]},{"1069881":[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]},{"1070794":[128]},{"1070796":[64]},{"1070798":[32]},{"1070800":[16]},{"1070802":[8]},{"1070804":[4]},{"1070806":[2]},{"1070808":[1,128]},{"1070811":[64]},{"1070813":[32]},{"1070815":[16]},{"1070817":[8]},{"1070819":[4]},{"1071050":[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,154,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,24,217,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,24,217,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]},{"1071504":[160,48,107,162]},{"1071509":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071522":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071536":[168,152,32,234,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071556":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071580":[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]},{"1071620":[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]},{"1071657":[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]},{"1071696":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071709":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071732":[191]},{"1071734":[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]},{"1071774":[191]},{"1071776":[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,162]},{"1071821":[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,96,100,17,100,176,92,224,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071884":[13,24,105,3,107,189,32,14,201,136,208,9,32,73,219,201,4,144,1,58,107,32,73,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071930":[200,49,74,74,74,74,107,40,191]},{"1071940":[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]},{"1071990":[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]},{"1072024":[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,20,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]},{"1072226":[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]},{"1072281":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072307":[165,27,240,121,194,32,165,160,201,14]},{"1072318":[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]},{"1072353":[201,126]},{"1072356":[208,33,165,34,41,255,1,201,104]},{"1072366":[144,60,201,136]},{"1072371":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072391":[201,222]},{"1072394":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072419":[144,7,201,154]},{"1072424":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,144,221,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,144,221,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,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]},{"1072634":[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]},{"1072694":[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,61,222,160,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,90,160,24,34,161,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072813":[208,11,40,90,160,24,34,161,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,192,155,160,107,72,175,67,244,126,208,4,34,201,192,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,61,222,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,61,222,160,104,34,168,160,2,107,58,16,8,169]},{"1073069":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1073083":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,61,222,169,1,143]},{"1073109":[80,127,156,70,6,156,66,6,76,61,222,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,201,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073321":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073352":[32,137,64,240,4,92,220,128]},{"1073361":[173]},{"1073363":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073388":[143,155,80,127,92,220,128]},{"1073396":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073415":[173,39,1,205,41,1,208,4,92,220,128]},{"1073427":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073457":[224,255,208,4,92,220,128]},{"1073465":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073481":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073497":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073514":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073527":[142,4,32,156,5,32,156,7,32,191]},{"1073538":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073551":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073587":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073600":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073656":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073669":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073719":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073737":[87,127,107,191]},{"1073742":[18,127,107,156,240,28,156,241,28,169]},{"1073753":[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]},{"1073785":[226,32,183]},{"1073789":[159]},{"1073791":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073810":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073834":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073852":[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]},{"1073878":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073896":[226,32,183]},{"1073900":[159]},{"1073902":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073921":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073941":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073959":[226,32,183]},{"1073963":[159]},{"1073965":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073984":[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]},{"1074015":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074033":[226,32,183]},{"1074037":[159]},{"1074039":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074058":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074078":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074096":[226,32,183]},{"1074100":[159]},{"1074102":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074121":[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]},{"1074150":[133]},{"1074152":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074170":[226,32,183]},{"1074174":[159]},{"1074176":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074195":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074215":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074233":[226,32,183]},{"1074237":[159]},{"1074239":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074258":[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]},{"1074289":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074307":[226,32,183]},{"1074311":[159]},{"1074313":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074332":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074352":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074370":[226,32,183]},{"1074374":[159]},{"1074376":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074395":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074416":[133]},{"1074418":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074436":[226,32,183]},{"1074440":[159]},{"1074442":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074461":[143,148,80,127,226,32,130,213]},{"1074470":[201,128,208,56,169,52,133]},{"1074478":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074496":[226,32,183]},{"1074500":[159]},{"1074502":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074521":[143,148,80,127,226,32,130,153]},{"1074530":[201,144,208,55,169,112,133]},{"1074538":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074556":[226,32,183]},{"1074560":[159]},{"1074562":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074581":[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]},{"1074608":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074626":[226,32,183]},{"1074630":[159]},{"1074632":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074651":[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]},{"1074730":[208,56,169,216,133]},{"1074736":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074754":[226,32,183]},{"1074758":[159]},{"1074760":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074779":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074796":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074814":[226,32,183]},{"1074818":[159]},{"1074820":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074839":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074856":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074874":[226,32,183]},{"1074878":[159]},{"1074880":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074899":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074916":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074934":[226,32,183]},{"1074938":[159]},{"1074940":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074959":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074976":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074994":[226,32,183]},{"1074998":[159]},{"1075000":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075019":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075036":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075054":[226,32,183]},{"1075058":[159]},{"1075060":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075079":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075096":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075114":[226,32,183]},{"1075118":[159]},{"1075120":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075139":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075156":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075174":[226,32,183]},{"1075178":[159]},{"1075180":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075199":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075216":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075234":[226,32,183]},{"1075238":[159]},{"1075240":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075259":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075276":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075294":[226,32,183]},{"1075298":[159]},{"1075300":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075319":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075336":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075354":[226,32,183]},{"1075358":[159]},{"1075360":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075379":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075396":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075414":[226,32,183]},{"1075418":[159]},{"1075420":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075439":[143,148,80,127,226,32,130,235]},{"1075448":[201,12,208,56,169,12,133]},{"1075456":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075474":[226,32,183]},{"1075478":[159]},{"1075480":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075499":[143,148,80,127,226,32,130,175]},{"1075508":[201,13,208,55,169,41,133]},{"1075516":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075534":[226,32,183]},{"1075538":[159]},{"1075540":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075559":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075575":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075593":[226,32,183]},{"1075597":[159]},{"1075599":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075618":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075634":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075652":[226,32,183]},{"1075656":[159]},{"1075658":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075677":[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]},{"1075710":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075725":[171,40,122,250,104,107,34,78,216]},{"1075735":[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]},{"1075799":[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,141,235,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,141,235,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]},{"1076070":[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]},{"1076115":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076139":[226,48,160]},{"1076143":[183]},{"1076145":[201,254,208,39,200,183]},{"1076152":[201,110,208,32,200,183]},{"1076159":[208,27,200,183]},{"1076164":[201,254,208,20,200,183]},{"1076171":[201,107,208,13,200,183]},{"1076178":[201,4,208,6,156,232,28,130,19]},{"1076188":[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]},{"1076216":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076233":[10,10,69,138,41,8]},{"1076240":[240,6,152,24,105,16]},{"1076247":[168,165,35,41,2]},{"1076253":[74,69,138,41,1]},{"1076259":[240,4,152,26,26,168,152,41,255]},{"1076269":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,17,148,164,34,7,145,164,107,34,189,246,160,34,166,170,164,34]},{"1076301":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,202,222,160,107,194,16,34,61,137]},{"1076497":[169,7,141,12,33,175,240,244,126,208,10,34,114,237,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076549":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,42,147,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]},{"1076629":[191]},{"1076631":[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]},{"1076705":[107,34,212,152,160,34,194,247,160,107,34,71,153,160,34,80,153,160,162,4,107,34,194,247,160,169,20,133,17,107,34,194,247,160,107,34,63,132,160,34,44,153,160,34,61,222,160,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]},{"1076780":[2,107,169]},{"1076784":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1076807":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,135,235,160,169]},{"1076829":[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]},{"1076865":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076890":[208,4,169]},{"1076895":[107,201,1]},{"1076899":[208,16,175,197,243,126,41,15]},{"1076908":[201,2]},{"1076911":[176,84,32,9,239,107,201,2]},{"1076920":[208,75,32,9,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076944":[107,175,74,128,48,41,255]},{"1076952":[240,43,175,195,242,126,41,32]},{"1076961":[208,34,173,8,3,41,128]},{"1076969":[240,4,169,1]},{"1076974":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076996":[107,169]},{"1077000":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077023":[96,169]},{"1077027":[96,175,76,128,48,41,255]},{"1077035":[240,4,92,90,189,27,224,118]},{"1077044":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077061":[72,170,191,64,130,48,208,3,130,175]},{"1077072":[58,133]},{"1077075":[10,10,24,101]},{"1077080":[10,10,170,169,22]},{"1077086":[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]},{"1077114":[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]},{"1077157":[137,128]},{"1077160":[240,3,9]},{"1077164":[255,143,106,193,126,191,98,130,48,41,255]},{"1077176":[137,128]},{"1077179":[240,3,9]},{"1077183":[255,143,110,193,126,169]},{"1077191":[56,239,106,193,126,143,108,193,126,169]},{"1077203":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077219":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077237":[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]},{"1077314":[165]},{"1077316":[223]},{"1077318":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077338":[165]},{"1077340":[223]},{"1077342":[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]},{"1077388":[175,74,128,48,41,255]},{"1077395":[240,25,175,93]},{"1077401":[41,255]},{"1077404":[201,20]},{"1077407":[208,13,165,138,41,64]},{"1077414":[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]},{"1077471":[107,104,141,228,2,141,193,15,141,16,7,107,34,244,240,160,34,97,241,160,107,169,14,143,1,40]},{"1077498":[169,4,143,1,40]},{"1077504":[169,13,143,1,40]},{"1077510":[169,14,143,1,40]},{"1077516":[169]},{"1077518":[143,1,40]},{"1077522":[169]},{"1077524":[143,1,40]},{"1077528":[169]},{"1077530":[143,1,40]},{"1077534":[169]},{"1077536":[143,1,40]},{"1077540":[169]},{"1077542":[143,1,40]},{"1077546":[169]},{"1077548":[143,1,40]},{"1077552":[169]},{"1077554":[143,1,40]},{"1077558":[169,1,143,1,40]},{"1077564":[169]},{"1077566":[143,1,40]},{"1077570":[169,1,143,1,40]},{"1077576":[169]},{"1077578":[143,1,40]},{"1077582":[169]},{"1077584":[143,1,40]},{"1077588":[169,10,143,1,40]},{"1077594":[169,13,143,1,40]},{"1077600":[107,72,218,162]},{"1077605":[175]},{"1077607":[40]},{"1077609":[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]},{"1077636":[175]},{"1077638":[40]},{"1077640":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077654":[232,128,235,56,175]},{"1077660":[40]},{"1077662":[72,175]},{"1077665":[40]},{"1077667":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077685":[175]},{"1077687":[40]},{"1077689":[72,175]},{"1077692":[40]},{"1077694":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077714":[40]},{"1077716":[72,175]},{"1077719":[40]},{"1077721":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077741":[40]},{"1077743":[72,175]},{"1077746":[40]},{"1077748":[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]},{"1077833":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077851":[133]},{"1077853":[165,3,41,255]},{"1077858":[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,148,242,160,132,2,100,3,24,101]},{"1077900":[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]},{"1077955":[175]},{"1077957":[40]},{"1077959":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077973":[232,128,235,56,175]},{"1077979":[40]},{"1077981":[72,175]},{"1077984":[40]},{"1077986":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1078004":[175]},{"1078006":[40]},{"1078008":[72,175]},{"1078011":[40]},{"1078013":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1078033":[40]},{"1078035":[72,175]},{"1078038":[40]},{"1078040":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078060":[40]},{"1078062":[72,175]},{"1078065":[40]},{"1078067":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078087":[40]},{"1078089":[133,4,175]},{"1078093":[40]},{"1078095":[72,175]},{"1078098":[40]},{"1078100":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078120":[40]},{"1078122":[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]},{"1078191":[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,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]},{"1078281":[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]},{"1078315":[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]},{"1078414":[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]},{"1078445":[201,2]},{"1078448":[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]},{"1078480":[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,187,246,160,144,10,208,8,175,140,80,127,207,185,246,160,144,114,175,145,129,48,41,255]},{"1078536":[208,24,169,2]},{"1078541":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078565":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078578":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078592":[143,142,80,127,169,1]},{"1078599":[143,126,80,127,128,54,201,2]},{"1078608":[208,24,169,2]},{"1078613":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,235,218,160,194,48,96,175,146,129,48,41,255]},{"1078650":[240,7,169]},{"1078655":[143,126,80,127,175,142,80,127,207,175,246,160,144,10,208,8,175,140,80,127,207,173,246,160,144,53,175,128,80,127,26,201,10]},{"1078689":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078703":[143,128,80,127,175,140,80,127,56,239,173,246,160,143,140,80,127,175,142,80,127,239,175,246,160,143,142,80,127,128,181,175,142,80,127,207,179,246,160,144,10,208,8,175,140,80,127,207,177,246,160,144,53,175,132,80,127,26,201,10]},{"1078764":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078778":[143,132,80,127,175,140,80,127,56,239,177,246,160,143,140,80,127,175,142,80,127,239,179,246,160,143,142,80,127,128,181,175,142,80,127,207,183,246,160,144,10,208,8,175,140,80,127,207,181,246,160,144,53,175,136,80,127,26,201,10]},{"1078839":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078853":[143,136,80,127,175,140,80,127,56,239,181,246,160,143,140,80,127,175,142,80,127,239,183,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]},{"1078961":[16,14]},{"1078965":[60]},{"1078969":[255,255,255,127,175,204,80,127,41,255]},{"1078980":[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]},{"1079051":[240,93,175,145,129,48,41,255]},{"1079060":[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]},{"1079153":[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]},{"1079228":[208,3,32,139,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079258":[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]},{"1079292":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079376":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,206,223,160,34,58,135,1,194,16,166,160,191,76,251,160,226,16,34,156,135]},{"1079486":[208,248,160,209,248,160,94,249,160,235,249,160,120,250,160,226,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079522":[32,126,232,232,159]},{"1079528":[32,126,232,232,159]},{"1079534":[32,126,232,232,159]},{"1079540":[32,126,232,232,162,220,25,159]},{"1079549":[32,126,232,232,169,202,12,159]},{"1079558":[32,126,232,232,169,203,12,159]},{"1079567":[32,126,232,232,169,208,8,159]},{"1079576":[32,126,232,232,162,92,26,159]},{"1079585":[32,126,232,232,169,218,12,159]},{"1079594":[32,126,232,232,169,219,12,159]},{"1079603":[32,126,232,232,169,208,8,159]},{"1079612":[32,126,232,232,162,220,26,159]},{"1079621":[32,126,232,232,159]},{"1079627":[32,126,232,232,159]},{"1079633":[32,126,232,232,159]},{"1079639":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079663":[32,126,232,232,159]},{"1079669":[32,126,232,232,159]},{"1079675":[32,126,232,232,159]},{"1079681":[32,126,232,232,162,156,25,159]},{"1079690":[32,126,232,232,169,202,12,159]},{"1079699":[32,126,232,232,169,203,12,159]},{"1079708":[32,126,232,232,169,208,8,159]},{"1079717":[32,126,232,232,162,28,26,159]},{"1079726":[32,126,232,232,169,218,12,159]},{"1079735":[32,126,232,232,169,219,12,159]},{"1079744":[32,126,232,232,169,208,8,159]},{"1079753":[32,126,232,232,162,156,26,159]},{"1079762":[32,126,232,232,159]},{"1079768":[32,126,232,232,159]},{"1079774":[32,126,232,232,159]},{"1079780":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079804":[32,126,232,232,159]},{"1079810":[32,126,232,232,159]},{"1079816":[32,126,232,232,159]},{"1079822":[32,126,232,232,162,220,9,159]},{"1079831":[32,126,232,232,169,202,12,159]},{"1079840":[32,126,232,232,169,203,12,159]},{"1079849":[32,126,232,232,169,208,8,159]},{"1079858":[32,126,232,232,162,92,10,159]},{"1079867":[32,126,232,232,169,218,12,159]},{"1079876":[32,126,232,232,169,219,12,159]},{"1079885":[32,126,232,232,169,208,8,159]},{"1079894":[32,126,232,232,162,220,10,159]},{"1079903":[32,126,232,232,159]},{"1079909":[32,126,232,232,159]},{"1079915":[32,126,232,232,159]},{"1079921":[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]},{"1080154":[1]},{"1080236":[5]},{"1080238":[4]},{"1080266":[2]},{"1080362":[3]},{"1080460":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080477":[134,1,133,2,32,140,252,176,4,92,83,230]},{"1080490":[169,49,133,2,194,32,169]},{"1080498":[192,133]},{"1080501":[162,128,167]},{"1080505":[141,24,33,230]},{"1080510":[230]},{"1080512":[167]},{"1080514":[141,24,33,230]},{"1080519":[230]},{"1080521":[167]},{"1080523":[141,24,33,230]},{"1080528":[230]},{"1080530":[167]},{"1080532":[141,24,33,230]},{"1080537":[230]},{"1080539":[167]},{"1080541":[141,24,33,230]},{"1080546":[230]},{"1080548":[167]},{"1080550":[141,24,33,230]},{"1080555":[230]},{"1080557":[167]},{"1080559":[141,24,33,230]},{"1080564":[230]},{"1080566":[167]},{"1080568":[141,24,33,230]},{"1080573":[230]},{"1080575":[202,208,181,226,32,92,81,230]},{"1080584":[226,48,175,248,194,126,168,32,140,252,194,48,176,10,162]},{"1080601":[160,64]},{"1080604":[92,104,223]},{"1080608":[162]},{"1080610":[192,160]},{"1080614":[169]},{"1080616":[8,139,84,127,177,171,162]},{"1080624":[8,169]},{"1080627":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,237,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,11,168,160,40,175,67,244,126,41,255]},{"1081469":[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,85,151,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]},{"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,90,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,107,235,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,159,145,164,194,16,34,187,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,184,145,164,34,36,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,70,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,189]},{"1181289":[153]},{"1181292":[189,2]},{"1181295":[153,2]},{"1181298":[189,4]},{"1181301":[153,64]},{"1181304":[189,6]},{"1181307":[153,66]},{"1181310":[96,189]},{"1181314":[41,255,227,9]},{"1181319":[16,153]},{"1181323":[189,2]},{"1181326":[41,255,227,9]},{"1181331":[16,153,2]},{"1181335":[189,4]},{"1181338":[41,255,227,9]},{"1181343":[16,153,64]},{"1181347":[189,6]},{"1181350":[41,255,227,9]},{"1181355":[16,153,66]},{"1181359":[96,41,255]},{"1181363":[240,3,76,102,134,76,127,134,41,255]},{"1181374":[208,6,162,156,141,76,127,134,58,58,208,6,162,156,141,76,102,134,58,208,6,162,164,141,76,102,134,58,208,6,162,172,141,76,102,134,58,208,6,162,180,141,76,102,134,58,208,6,162,188,141,76,102,134,58,208,6,162,196,141,76,102,134,162,204,141,76,102,134,165,26,41,1]},{"1181448":[240,2,128,14,32,41,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181478":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181494":[5,112,9]},{"1181498":[28,141,142,17,24,105,16]},{"1181506":[141,206,17,175,2,5,112,9]},{"1181515":[28,141,144,17,24,105,16]},{"1181523":[141,208,17,175,4,5,112,9]},{"1181532":[28,141,146,17,24,105,16]},{"1181540":[141,210,17,175,6,5,112,9]},{"1181549":[28,141,148,17,24,105,16]},{"1181557":[141,212,17,175,8,5,112,9]},{"1181566":[28,141,78,18,24,105,16]},{"1181574":[141,142,18,175,10,5,112,9]},{"1181583":[28,141,80,18,24,105,16]},{"1181591":[141,144,18,175,12,5,112,9]},{"1181600":[28,141,82,18,24,105,16]},{"1181608":[141,146,18,175,14,5,112,9]},{"1181617":[28,141,84,18,24,105,16]},{"1181625":[141,148,18,32,212,141,175,142,3,112,41,64]},{"1181638":[240,31,175,64,3,112,41,255]},{"1181647":[240,11,162,28,140,160,220,16,32,102,134,128,40,162,44,140,160,220,16,32,102,134,128,29,175,64,3,112,41,255]},{"1181678":[240,11,162,20,140,160,220,16,32,102,134,128,9,162,20,140,160,220,16,32,127,134,175,140,3,112,41,192]},{"1181707":[201,192]},{"1181710":[208,11,162,68,140,160,224,16,32,102,134,128,49,175,140,3,112,41,64]},{"1181730":[240,11,162,60,140,160,224,16,32,102,134,128,29,175,140,3,112,41,128]},{"1181750":[240,11,162,52,140,160,224,16,32,102,134,128,9,162,52,140,160,224,16,32,127,134,162,76,140,160,228,16,175,66,3,112,32,176,134,175,140,3,112,41,16]},{"1181792":[240,11,162,36,141,160,236,16,32,102,134,128,9,162,36,141,160,236,16,32,127,134,175,140,3,112,41,8]},{"1181821":[240,11,162,28,141,160,232,16,32,102,134,128,9,162,28,141,160,232,16,32,127,134,175,140,3,112,41,3]},{"1181850":[240,11,162,164,140,160,228,17,32,102,134,128,9,162,164,140,160,228,17,32,127,134,175,140,3,112,41,4]},{"1181879":[240,11,162,156,140,160,92,18,32,102,134,128,9,162,156,140,160,92,18,32,127,134,162,92,140,160,92,17,175,69,3,112,32,176,134,162,100,140,160,96,17,175,70,3,112,32,176,134,162,108,140,160,100,17,175,71,3,112,32,176,134,162,116,140,160,104,17,175,72,3,112,32,176,134,162,124,140,160,108,17,175,73,3,112,32,176,134,162,132,140,160,220,17,175,74,3,112,32,176,134,162,140,140,160,224,17,175,75,3,112,32,176,134,162,148,140,160,232,17,175,77,3,112,32,176,134,162,172,140,160,236,17,175,78,3,112,32,176,134,162,180,140,160,96,18,175,80,3,112,32,176,134,162,188,140,160,100,18,175,81,3,112,32,176,134,162,196,140,160,104,18,175,82,3,112,32,176,134,162,204,140,160,108,18,175,83,3,112,32,176,134,160,242,16,175,92,3,112,32,187,134,160,114,17,175,93,3,112,32,187,134,160,242,17,175,94,3,112,32,187,134,160,114,18,175,95,3,112,32,187,134,175,89,3,112,41,255]},{"1182117":[208,11,162,44,141,160,248,16,32,127,134,128,65,58,208,11,162,44,141,160,248,16,32,102,134,128,51,58,208,11,162,52,141,160,248,16,32,102,134,128,37,58,208,11,162,60,141,160,248,16,32,102,134,128,23,58,208,11,162,68,141,160,248,16,32,102,134,128,9,162,44,141,160,248,16,32,127,134,175,90,3,112,41,255]},{"1182202":[208,11,162,76,141,160,120,17,32,127,134,128,37,58,208,11,162,76,141,160,120,17,32,102,134,128,23,58,208,11,162,84,141,160,120,17,32,102,134,128,9,162,92,141,160,120,17,32,102,134,175,91,3,112,41,255]},{"1182259":[208,11,162,100,141,160,248,17,32,102,134,128,23,58,208,11,162,108,141,160,248,17,32,102,134,128,9,162,116,141,160,248,17,32,102,134,175,107,3,112,41,255]},{"1182302":[208,11,162,124,141,160,120,18,32,102,134,128,37,58,208,11,162,132,141,160,120,18,32,102,134,128,23,58,208,11,162,140,141,160,120,18,32,102,134,128,9,162,148,141,160,120,18,32,102,134,175,72,4,112,41,255]},{"1182359":[34,249,151,160,175,6,80,127,41,255]},{"1182370":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182384":[24,105,16,30,141,250,18,162,220,140,160,252,16,175,85,3,112,32,176,134,175,84,3,112,41,255]},{"1182411":[208,11,162,12,141,160,124,17,32,127,134,128,23,58,208,11,162,12,141,160,124,17,32,102,134,128,9,162,20,141,160,124,17,32,102,134,162,212,140,160,252,17,175,86,3,112,32,176,134,162,228,140,160,124,18,175,87,3,112,32,176,134,175,116,3,112,41,4]},{"1182480":[240,11,162,244,140,160,28,19,32,102,134,128,9,162,236,140,160,28,19,32,102,134,175,116,3,112,41,2]},{"1182509":[240,11,162,252,140,160,32,19,32,102,134,128,9,162,236,140,160,32,19,32,102,134,175,116,3,112,41,1]},{"1182538":[240,11,162,4,141,160,36,19,32,102,134,128,9,162,236,140,160,36,19,32,102,134,175,122,3,112,41,2]},{"1182567":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182591":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182615":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182639":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182663":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182687":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182711":[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]},{"1182757":[10,186,10,185,6]},{"1182763":[10]},{"1182765":[10,20,10,19,6]},{"1182771":[10,5,14,6,14]},{"1182777":[30,22,14,5,6,6,6]},{"1182785":[30,22,6,182,14,182,6,182,142,182,134]},{"1182797":[6,21,6,48,6]},{"1182803":[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,249,151,160,175,4,80,127,41,255]},{"1183213":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183227":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183241":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183255":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183279":[34,249,151,160,175,6,80,127,41,255]},{"1183290":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183304":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183318":[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]},{"1183349":[34,249,151,160,175,6,80,127,41,255]},{"1183360":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183374":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183391":[4,169,136,1,157]},{"1183397":[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]},{"1183500":[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]},{"1183552":[141,2,20,165,16,41,255]},{"1183560":[201,1]},{"1183563":[208,107,175,135,128,48,41,255]},{"1183572":[201,2]},{"1183575":[208,95,8,226,48,218,90,34,61,178,164,122,250,40,41,255]},{"1183592":[208,78,169,110,29,141,142,19,24,105,16]},{"1183604":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183617":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183630":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183643":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183656":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183669":[141,216,19,226,32,107,34,155,142,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]},{"1183785":[189,4,16,9]},{"1183790":[32,157,4,16,202,202,208,243,162,60]},{"1183801":[189,68,16,9]},{"1183806":[32,157,68,16,202,202,208,243,162,60]},{"1183817":[189,132,16,9]},{"1183822":[32,157,132,16,202,202,208,243,162,60]},{"1183833":[189,196,16,9]},{"1183838":[32,157,196,16,202,202,208,243,162,60]},{"1183849":[189,4,17,9]},{"1183854":[32,157,4,17,202,202,208,243,162,60]},{"1183865":[189,68,17,9]},{"1183870":[32,157,68,17,202,202,208,243,162,60]},{"1183881":[189,132,17,9]},{"1183886":[32,157,132,17,202,202,208,243,162,60]},{"1183897":[189,196,17,9]},{"1183902":[32,157,196,17,202,202,208,243,162,60]},{"1183913":[189,4,18,9]},{"1183918":[32,157,4,18,202,202,208,243,162,60]},{"1183929":[189,68,18,9]},{"1183934":[32,157,68,18,202,202,208,243,162,60]},{"1183945":[189,132,18,9]},{"1183950":[32,157,132,18,202,202,208,243,162,60]},{"1183961":[189,196,18,9]},{"1183966":[32,157,196,18,202,202,208,243,162,60]},{"1183977":[189,4,19,9]},{"1183982":[32,157,4,19,202,202,208,243,162,60]},{"1183993":[189,68,19,9]},{"1183998":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184011":[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]},{"1184046":[67,169,24,141,1,67,169]},{"1184054":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184069":[141,2,67,169,208,141,3,67,173]},{"1184079":[33,72,169,128,141]},{"1184085":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184102":[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]},{"1184130":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,159,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184167":[128,51,159]},{"1184171":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184192":[28,141,206,16,24,105,16]},{"1184200":[141,14,17,175,219,3,112,9]},{"1184209":[28,141,208,16,24,105,16]},{"1184217":[141,16,17,175,221,3,112,9]},{"1184226":[28,141,210,16,24,105,16]},{"1184234":[141,18,17,175,223,3,112,9]},{"1184243":[28,141,212,16,24,105,16]},{"1184251":[141,20,17,175,108,3,112,41,255]},{"1184261":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184275":[153]},{"1184278":[200,200,202,208,8,72,152,24,105,44]},{"1184289":[168,104,198,2,208,236,32,41,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184313":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184335":[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]},{"1184374":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,61,178,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]},{"1184429":[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]},{"1184467":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184481":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,6,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184514":[141,18,11,107,110]},{"1184520":[111]},{"1184522":[112]},{"1184524":[113]},{"1184526":[115]},{"1184528":[116]},{"1184530":[117]},{"1184532":[118]},{"1184534":[120]},{"1184536":[121]},{"1184538":[122]},{"1184540":[123]},{"1184542":[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]},{"1184570":[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]},{"1184606":[143]},{"1184608":[81,127,200,200,183]},{"1184614":[143,2,81,127,200,200,183]},{"1184622":[143,4,81,127,200,200,183]},{"1184630":[143,6,81,127,169,2]},{"1184637":[133,4,34,47,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184665":[170,191]},{"1184668":[81,127,72,169]},{"1184674":[143]},{"1184676":[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]},{"1184738":[72,165,2,72,169,188,234,133]},{"1184747":[169,1]},{"1184750":[133,2,138,74,34,67,147,164,133,12,104,133,2,104,133]},{"1184766":[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]},{"1184798":[189,246,149,159]},{"1184803":[201,126,232,232,224,128,144,243,160]},{"1184813":[162]},{"1184815":[218,187,191,21,130,48,250,41,31]},{"1184825":[10,10,10,90,168,185,246,148,159,24,201,126,185,248,148,159,26,201,126,185,250,148,159,88,201,126,185,252,148,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,113,148,40,122,250,104,171,107,72,218,173]},{"1184885":[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]},{"1184915":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184936":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184959":[33,72,169,128,141]},{"1184965":[33,169,1,141,11,66,104,141]},{"1184974":[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]},{"1185002":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185027":[30,22,14]},{"1185031":[6,21,6,48,6]},{"1185037":[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]},{"1185407":[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]},{"1185483":[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]},{"1185580":[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]},{"1185637":[39,1,1,1,1,1,2,2,39,39,39]},{"1185653":[39,1,1,1,32,1,2,2,39,39,39]},{"1185669":[39,1,1,1,1,32,2,2,2,2,2]},{"1185685":[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]},{"1185729":[44]},{"1185731":[78,79,1,1,1,1,1,1,2,1,2]},{"1185743":[46]},{"1185747":[2,34,1,1,2]},{"1185755":[24,18,2,2]},{"1185760":[72]},{"1185765":[1,1,2]},{"1185769":[1,1,16,26,2]},{"1185776":[72]},{"1185781":[16,16,2]},{"1185785":[1,1,1,1]},{"1185791":[72]},{"1185794":[9]},{"1185797":[2,2,2]},{"1185801":[1,1,43]},{"1185806":[9]},{"1185813":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185877":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185893":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185910":[2,2,2]},{"1185915":[2,2,2,2]},{"1185926":[2,2,2,2,41,2,2,2,2]},{"1185941":[1,1,1,1,1,1,1,1,1,1,1]},{"1185955":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185989":[1,1,67,1,1,1,1,1,2,2,2]},{"1186005":[80,2,84,81,87,87,86,86,39,39,39]},{"1186017":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186033":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186049":[72,2,2]},{"1186053":[39,2,82,83,9,1,26,16,85,85]},{"1186065":[72,2,2]},{"1186069":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186091":[9,9,9,9,9,72,9,41]},{"1186100":[75,2,2,2]},{"1186105":[8,2,2]},{"1186112":[1]},{"1186115":[32]},{"1186117":[2,2,2,2,2,2,2]},{"1186126":[1,1,1,2]},{"1186131":[8]},{"1186133":[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]},{"1186233":[240,2,128,23,169,15,2,166,138,224,51]},{"1186245":[208,4,143,168,34,126,224,47]},{"1186254":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186268":[208,5,175,135,242,126,107,169,32]},{"1186278":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186301":[191,62,154,164,197,34,176,29,191,64,154,164,197,34,144,21,191,66,154,164,197,32,176,13,191,68,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186343":[201,184]},{"1186346":[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]},{"1186377":[10]},{"1186379":[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]},{"1186409":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186432":[143]},{"1186434":[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]},{"1186465":[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]},{"1186508":[112]},{"1186510":[240,14,48,15,32,1,96,1,208,10]},{"1186521":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186540":[64]},{"1186542":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186556":[201,5]},{"1186559":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186575":[208,18,173,10,4,41,255]},{"1186583":[201,67]},{"1186586":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186602":[208,25,173,10,4,41,255]},{"1186610":[201,91]},{"1186613":[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]},{"1186649":[176,5,10,170,252,106,155,171,194,48,162,30]},{"1186662":[169,190,13,107,106,156,106,156,106,156,107,156,106,156,150,156,106,156,144,157,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,223,157,106,156,106,156,106,156,230,157,106,156,106,156,106,156,106,156,106,156,106,156,5,158,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,159,160,106,156,106,156,106,156,106,156,106,156,106,156,187,160,106,156,125,164]},{"1186769":[167,106,156,7,167,106,156,106,156,106,156,106,156,62,167,106,156,19,164,106,156,106,156,106,156,106,156,106,156,106,156,180,167,106,156,43,168,106,156,9,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,50,168,106,156,106,156,106,156,57,168,106,156,106,156,106,156,106,156,106,156,106,156,85,168,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,39,170,53,170,106,156,106,156,46,170,106,156,60,170,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,106,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186938":[141,186,41,169,4,1,141,188,41,169,198]},{"1186950":[141,52,42,141,56,42,141,58,42,169,52]},{"1186962":[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]},{"1187065":[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]},{"1187212":[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]},{"1187291":[141,38,40,96,169,52]},{"1187298":[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]},{"1187411":[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]},{"1187447":[141,40,44,141,174,47,169,52]},{"1187456":[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]},{"1187495":[141,54,44,141,168,47,169,174]},{"1187504":[141,172,44,169,175]},{"1187510":[141,174,44,169,126]},{"1187516":[141,176,44,169,127]},{"1187522":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187540":[141,44,45,169,20]},{"1187546":[141,46,45,169,21]},{"1187552":[141,48,45,169,168]},{"1187558":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187576":[141,172,45,169,28]},{"1187582":[141,174,45,169,29]},{"1187588":[141,176,45,169,118]},{"1187594":[141,178,45,169,241]},{"1187600":[141,44,46,169,78]},{"1187606":[141,46,46,169,79]},{"1187612":[141,48,46,169,217]},{"1187618":[141,50,46,169,154]},{"1187624":[141,172,46,169,155]},{"1187630":[141,174,46,169,156]},{"1187636":[141,176,46,169,149]},{"1187642":[141,178,46,169,52]},{"1187648":[141,40,48,141,44,48,169,53]},{"1187657":[141,42,48,141,50,48,169,218]},{"1187666":[141,46,48,169,226]},{"1187672":[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]},{"1187753":[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]},{"1187837":[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]},{"1187894":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187910":[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]},{"1188002":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188023":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188039":[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]},{"1188081":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188102":[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]},{"1188168":[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]},{"1188198":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188216":[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]},{"1188243":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188264":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188282":[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]},{"1188351":[141,226,34,169,2,3,141,228,34,169,204]},{"1188363":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188387":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188408":[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]},{"1188450":[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]},{"1188483":[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]},{"1188578":[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]},{"1188711":[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]},{"1188804":[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]},{"1188879":[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]},{"1189013":[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]},{"1189058":[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]},{"1189376":[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]},{"1189421":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189439":[141,134,41,169,229]},{"1189445":[141,136,41,169]},{"1189450":[1,141,162,41,169,113]},{"1189457":[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]},{"1189502":[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]},{"1189538":[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]},{"1189565":[141,26,44,169,206]},{"1189571":[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]},{"1189635":[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]},{"1189690":[141,86,47,96,169,116,7,141]},{"1189699":[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]},{"1189741":[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]},{"1189957":[141,162,36,141,164,36,169,227]},{"1189966":[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]},{"1190093":[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]},{"1190123":[141,30,50,169,218]},{"1190129":[141,32,50,141,154,50,169,225]},{"1190138":[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]},{"1190183":[141,26,50,169,242]},{"1190189":[141,184,59,169,8,1,141,56,60,169,52]},{"1190201":[141,190,59,175,197,243,126,41,255]},{"1190211":[201,3]},{"1190214":[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]},{"1190357":[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,139,173,194,32,166,6,138,9]},{"1190588":[36,143,90,199,126,166,7,138,9]},{"1190598":[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,41,173,166,4,138,9]},{"1190631":[36,143,80,199,126,166,5,138,9]},{"1190641":[36,143,82,199,126,166,6,138,9]},{"1190651":[36,143,84,199,126,166,7,138,9]},{"1190661":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,139,173,194,32,166,6,138,9]},{"1190694":[36,143,96,199,126,166,7,138,9]},{"1190704":[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]},{"1190736":[175,24,244,126,32,100,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190758":[36,143,44,199,126,166,6,138,9]},{"1190768":[36,143,46,199,126,166,7,138,9]},{"1190778":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,100,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190814":[36,143,52,199,126,166,6,138,9]},{"1190824":[36,143,54,199,126,166,7,138,9]},{"1190834":[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]},{"1190867":[240,4,34,165,173,164,226,32,175,111,243,126,201,255,240,34,32,139,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190898":[9]},{"1190900":[36,143,100,199,126,166,7,138,9]},{"1190910":[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]},{"1190941":[24,105,7]},{"1190945":[41,248,255,170,175,202,80,127,41,255]},{"1190956":[208,3,130,215]},{"1190961":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190974":[165,26,41,12]},{"1190979":[74,74,240,58,201,1]},{"1190986":[240,98,201,2]},{"1190991":[208,3,130,180]},{"1190996":[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]},{"1191229":[144,6,200,233,100]},{"1191235":[128,245,132,5,160,144,201,10]},{"1191244":[144,6,200,233,10]},{"1191250":[128,245,132,6,160,144,201,1]},{"1191259":[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]},{"1191349":[240,11,175,100,243,126,63,230,173,164,208,1,107,124,2,174,32,139,173,194,32,166,6,138,9]},{"1191375":[36,143,148,199,126,166,7,138,9]},{"1191385":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191399":[128]},{"1191401":[64]},{"1191403":[32]},{"1191405":[16]},{"1191407":[8]},{"1191409":[4]},{"1191411":[2]},{"1191413":[1,128]},{"1191416":[64]},{"1191418":[32]},{"1191420":[16]},{"1191422":[8]},{"1191424":[4]},{"1191426":[30,174,30,174,57,174,82,174,110,174,135,174,160,174,185,174,210,174,237,174,8,175,35,175,60,175,87,175,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,197,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,197,173,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,197,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,197,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,197,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,197,173,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,197,173,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,197,173,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,197,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,197,173,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,197,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,197,173,107,159]},{"1191796":[4,112,159]},{"1191800":[5,112,159]},{"1191804":[6,112,159]},{"1191808":[7,112,159]},{"1191812":[8,112,159]},{"1191816":[9,112,159]},{"1191820":[10,112,159]},{"1191824":[11,112,159]},{"1191828":[12,112,159]},{"1191832":[13,112,159]},{"1191836":[14,112,159]},{"1191840":[15,112,107,159]},{"1191845":[244,126,159]},{"1191849":[101,127,159]},{"1191853":[102,127,159]},{"1191857":[103,127,159]},{"1191861":[104,127,159]},{"1191865":[105,127,159]},{"1191869":[106,127,159]},{"1191873":[107,127,159]},{"1191877":[108,127,159]},{"1191881":[109,127,159]},{"1191885":[110,127,159]},{"1191889":[111,127,107,72,226,48,173]},{"1191897":[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]},{"1191925":[141]},{"1191927":[67,169,128,141,1,67,169]},{"1191935":[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]},{"1191963":[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]},{"1192003":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192018":[72,171,173]},{"1192022":[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]},{"1192052":[67,141,1,67,169]},{"1192058":[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]},{"1192086":[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]},{"1192126":[67,194,48,171,104,162]},{"1192134":[138,107,165,17,34,156,135]},{"1192142":[221,176,164,245,176,164,20,177,164,21,178,164,43,178,164,169,128,141,16,7,34,61,137]},{"1192166":[34,51,131]},{"1192170":[34,159,145,164,169,7,133,20,230,17,107,32,52,179,100,200,100,201,34,61,178,164,208,11,162,15,169]},{"1192198":[159]},{"1192200":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,164,179,165,246,41,16,240,3,32,240,180,165,246,41,32,240,3,32,253,180,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,241,177,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,253,180,128,52,201,242,208,5,32,240,180,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192391":[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,162,180,32,87,180,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,61,178,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]},{"1192515":[16,112,208,3,130,161]},{"1192522":[202,16,244,194,32,162,14,169]},{"1192532":[159,208,80,127,202,202,16,248,32,240,178,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]},{"1192573":[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]},{"1192602":[133,4,34,47,178,160,226,32,175]},{"1192612":[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]},{"1192687":[107,169]},{"1192691":[133]},{"1192693":[133,2,169,11]},{"1192698":[133,4,166]},{"1192702":[191]},{"1192704":[16,112,58,41,31]},{"1192710":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192735":[16,6,24,105,8]},{"1192741":[230,2,133,4,165]},{"1192747":[26,133]},{"1192750":[201,16]},{"1192753":[144,201,96,173]},{"1192758":[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]},{"1192786":[141]},{"1192788":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,204,141,2,67,169,182,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]},{"1192866":[67,96,194,32,165,200,41,255]},{"1192875":[10,170,191,239,179,164,24,105,132,96,235,143,2,17]},{"1192890":[165,201,41,255]},{"1192895":[10,170,191,15,180,164,24,105,163,97,235,143,18,17]},{"1192910":[235,24,105,32]},{"1192915":[235,143,30,17]},{"1192920":[235,24,105,3]},{"1192925":[235,143,38,17]},{"1192930":[235,24,105,61]},{"1192935":[235,143,46,17]},{"1192940":[226,32,96,64]},{"1192945":[67]},{"1192947":[70]},{"1192949":[73]},{"1192951":[76]},{"1192953":[79]},{"1192955":[82]},{"1192957":[85]},{"1192959":[160]},{"1192961":[163]},{"1192963":[166]},{"1192965":[169]},{"1192967":[172]},{"1192969":[175]},{"1192971":[178]},{"1192973":[181]},{"1192975":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1192995":[66]},{"1192997":[69]},{"1192999":[72]},{"1193001":[75]},{"1193003":[78]},{"1193005":[81]},{"1193007":[84]},{"1193009":[87]},{"1193011":[159]},{"1193013":[162]},{"1193015":[165]},{"1193017":[168]},{"1193019":[171]},{"1193021":[174]},{"1193023":[177]},{"1193025":[180]},{"1193027":[183]},{"1193029":[255]},{"1193031":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193054":[10,170,191,239,179,164,24,105,132,96,235,143,10,17]},{"1193069":[165,201,41,255]},{"1193074":[10,170,191,15,180,164,24,105,163,97,235,143,58,17]},{"1193089":[235,24,105,32]},{"1193094":[235,143,70,17]},{"1193099":[235,24,105,3]},{"1193104":[235,143,78,17]},{"1193109":[235,24,105,61]},{"1193114":[235,143,86,17]},{"1193119":[226,32,96,194,48,162,15]},{"1193127":[191]},{"1193129":[16,112,41,255]},{"1193134":[155,10,10,10,133]},{"1193140":[152,10,10,10,10,133,3,166]},{"1193149":[191,238,148,164,166,3,157,6,16,166]},{"1193160":[191,240,148,164,166,3,157,8,16,166]},{"1193171":[191,242,148,164,166,3,157,14,16,166]},{"1193182":[191,244,148,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]},{"1193229":[51,1,10,2,10]},{"1193235":[2,5,14,6,14]},{"1193241":[2]},{"1193243":[6,21,6]},{"1193247":[2,12,14,13,14]},{"1193253":[2,98,6,99,6]},{"1193259":[2,10,2,11,2]},{"1193265":[2,32,14,33,14]},{"1193271":[2,133,26,134,26]},{"1193277":[2,171,30,171,30,97,195]},{"1193285":[51,17,10,18,10]},{"1193291":[2]},{"1193293":[30,22,14]},{"1193297":[2,48,6]},{"1193301":[30]},{"1193303":[2,28,14,28,78]},{"1193309":[2,114,6,115,6]},{"1193315":[2,26,2,27,2]},{"1193321":[2,48,14,49,14]},{"1193327":[2,149,26,150,26]},{"1193333":[2,171,30,171,30,98,3]},{"1193341":[51,7,10,23,202]},{"1193347":[2,8,10,24,202]},{"1193353":[2,9,10,25,202]},{"1193359":[2,44,6,44,70]},{"1193365":[2,34,2,35,2]},{"1193371":[2,36,2,37,2]},{"1193377":[2,38,14,39,14]},{"1193383":[2,40,10,41,10]},{"1193389":[2,138,29]},{"1193393":[2,98,35]},{"1193397":[51,23,10,7,202]},{"1193403":[2,24,10,8,202]},{"1193409":[2,25,10,9,202]},{"1193415":[2,60,6,61,6]},{"1193421":[2,50,2,51,2]},{"1193427":[2,52,2,53,2]},{"1193433":[2,54,14,55,14]},{"1193439":[2,56,10,57,10]},{"1193445":[2,154,29]},{"1193449":[2,98,99]},{"1193453":[51,42,26,43,26]},{"1193459":[2,64,30,65,30]},{"1193465":[2,66,26,66,90]},{"1193471":[2,29,6,30,6]},{"1193477":[2,72,6,73,6]},{"1193483":[2,74,14,75,14]},{"1193489":[2,76,22,77,22]},{"1193495":[2,78,2,79,2]},{"1193501":[2]},{"1193503":[2,139,29,98,131]},{"1193509":[51,58,26,59,26]},{"1193515":[2,80,30,81,30]},{"1193521":[2,82,26,83,26]},{"1193527":[2,45,6,46,6]},{"1193533":[2,88,6,89,6]},{"1193539":[2,90,14,91,14]},{"1193545":[2,92,22,93,22]},{"1193551":[2,94,2,95,2]},{"1193557":[2]},{"1193559":[2,155,29,98,195]},{"1193565":[51,14,14,15,14]},{"1193571":[2,100,6,101,6]},{"1193577":[2,109,10,110,10]},{"1193583":[2,111,26,111,90]},{"1193589":[2,129,6,129,70]},{"1193595":[2,130,10,131,10]},{"1193601":[2,132,6,132,70]},{"1193607":[2,47,74,47,10]},{"1193613":[2,103,94,103,30,98,227]},{"1193621":[51,31,78,31,14]},{"1193627":[2,116,6,117,6]},{"1193633":[2,125,10,126,10]},{"1193639":[2,127,26,127,90]},{"1193645":[2,145,6,145,70]},{"1193651":[2,146,10,147,10]},{"1193657":[2,148,6,148,70]},{"1193663":[2,62,10,63,10]},{"1193669":[2,103,222,103,158,255,255,96,132]},{"1193679":[3,134,29,134,29,96,164]},{"1193687":[3,150,29,150,29,96,135]},{"1193695":[3,134,29,134,29,96,167]},{"1193703":[3,150,29,150,29,96,138]},{"1193711":[3,134,29,134,29,96,170]},{"1193719":[3,150,29,150,29,96,141]},{"1193727":[3,134,29,134,29,96,173]},{"1193735":[3,150,29,150,29,96,144]},{"1193743":[3,134,29,134,29,96,176]},{"1193751":[3,150,29,150,29,96,147]},{"1193759":[3,134,29,134,29,96,179]},{"1193767":[3,150,29,150,29,96,150]},{"1193775":[3,134,29,134,29,96,182]},{"1193783":[3,150,29,150,29,96,153]},{"1193791":[3,134,29,134,29,96,185]},{"1193799":[3,150,29,150,29,96,228]},{"1193807":[3,134,29,134,29,97,4]},{"1193815":[3,150,29,150,29,96,231]},{"1193823":[3,134,29,134,29,97,7]},{"1193831":[3,150,29,150,29,96,234]},{"1193839":[3,134,29,134,29,97,10]},{"1193847":[3,150,29,150,29,96,237]},{"1193855":[3,134,29,134,29,97,13]},{"1193863":[3,150,29,150,29,96,240]},{"1193871":[3,134,29,134,29,97,16]},{"1193879":[3,150,29,150,29,96,243]},{"1193887":[3,134,29,134,29,97,19]},{"1193895":[3,150,29,150,29,96,246]},{"1193903":[3,134,29,134,29,97,22]},{"1193911":[3,150,29,150,29,96,249]},{"1193919":[3,134,29,134,29,97,25]},{"1193927":[3,150,29,150,29,96,196]},{"1193935":[3]},{"1193937":[2]},{"1193939":[2,96,196]},{"1193943":[3,103,222,103,158,97,130]},{"1193951":[7]},{"1193953":[2]},{"1193955":[2]},{"1193957":[2]},{"1193959":[2,97,162,128,3]},{"1193965":[2]},{"1193967":[2,97,165,128,3]},{"1193973":[2]},{"1193975":[2,97,226]},{"1193979":[7]},{"1193981":[2]},{"1193983":[2]},{"1193985":[2]},{"1193987":[2,97,130]},{"1193991":[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]},{"1194019":[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]},{"1194058":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194114":[83,127,201,3,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,181,185,164,226,48,169]},{"1194152":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194210":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194268":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,64,185,34,231,244,30,32,128,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,96,133,8,169,185,105]},{"1194325":[133,9,34,117,223,5,34,92,220,6,96]},{"1194338":[247,255,198]},{"1194343":[2]},{"1194348":[200]},{"1194351":[2]},{"1194354":[248,255,198]},{"1194359":[2]},{"1194364":[202,64]},{"1194367":[2,175,103,129,48,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,235,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194425":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194451":[98,41,110,41,107,41,105,41,127]},{"1194461":[111,41,97,41,106,41,112,41,127]},{"1194471":[112,41,107,41,127]},{"1194477":[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]},{"1194524":[33,218,162,128,142]},{"1194530":[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]},{"1194558":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194575":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194666":[208,33,8,194,48,162]},{"1194674":[224,64]},{"1194677":[176,11,169,127]},{"1194682":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194705":[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]},{"1194752":[240,7,224,2,240,3,130,137]},{"1194761":[130,132]},{"1194764":[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]},{"1194910":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194927":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194943":[224,28]},{"1194946":[176,12,191,193,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194963":[175,211,244,126,41,255]},{"1194970":[58,201,64]},{"1194974":[176,63,10,10,10,10,10,170,192,60]},{"1194985":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195008":[176,11,169,127]},{"1195013":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,174,184,160,122,218,90,8,194,48,162]},{"1195169":[224,16]},{"1195172":[176,12,191,221,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195189":[175,152,192,126,41,255]},{"1195196":[58,201,64]},{"1195200":[176,63,10,10,10,10,10,170,192,48]},{"1195211":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195234":[176,11,169,127]},{"1195239":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[216]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,148,224,160,234]},{"827":[128,1]},{"980":[92,162,133,164]},{"2027":[128,50]},{"2379":[34,214,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,92,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[26]},{"5002":[181]},{"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,155,199,160]},{"21847":[34,115,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,8,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,155,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[143,163,160]},{"30994":[17,164,160]},{"31001":[143,163,160]},{"31011":[17,164,160]},{"31046":[61,222,160]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[36,222,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,56,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,193,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,198,147,164,234]},{"60423":[34,56,188,164]},{"60790":[64,223,160]},{"61077":[61,181,160]},{"61133":[34,141,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,255,237,160]},{"65607":[11,237,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,120,194,160,234]},{"65894":[34,166,194,160]},{"66284":[34,201,194,160]},{"66292":[92,27,248,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,1,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,209,223,160,234,234]},{"67934":[168,248,160]},{"68495":[34,23,155,160,208,6,234]},{"68584":[172,248,160]},{"69776":[34,23,155,160,208,4,234]},{"70410":[172,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,20,248,160,234]},{"72216":[246,221,160]},{"72241":[34,166,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[2,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,182,194,160]},{"74833":[34,213,130,164]},{"76423":[34,4,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]},{"78172":[34,108,223,160,34,219,153,160,234,234]},{"79603":[34,42,222,160]},{"79767":[34,224,223,160]},{"82676":[172,248,160]},{"87892":[34,241,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,62,239,160]},{"90651":[34,98,236,160,234,234]},{"93230":[34,6,155,164,234,234]},{"93325":[34,194,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,6,155,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,229,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[130,188,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[128,181,160]},{"173058":[128,181,160]},{"173307":[128,181,160]},{"173320":[128,181,160]},{"183384":[34,158,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[140,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,141,235,160,128,13]},{"189655":[34,45,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[73,188,164]},{"191439":[34,74,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,94,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,114,195,160,234]},{"192121":[202,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,43,179,160]},{"193157":[34,36,179,160]},{"193440":[34,17,220,160]},{"193472":[34,235,160]},{"193546":[34,17,220,160]},{"193578":[234,234,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[242,194,160]},{"194141":[34,226,195,160,234,234,234,234,234]},{"194177":[34,72,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,141,235,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,72,199,160]},{"195589":[122,176,160]},{"195710":[34,150,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[83,176,160]},{"195909":[93,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[201,192,160]},{"198721":[34,243,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,62,184,164]},{"198942":[34,101,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,41,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[20,176,160]},{"199993":[34,103,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,206,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,69,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[92,188,164]},{"212610":[111,188,164]},{"213139":[50,185,164]},{"213169":[147,133,160]},{"214205":[34,201,180,160]},{"214972":[91,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,141,222,160]},{"217579":[34,107,193,160]},{"224597":[34,17,219,160]},{"224693":[34,37,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,51,220,160,234]},{"226304":[34,102,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,226,237,160]},{"229634":[34,140,186,164]},{"230816":[73,179,160]},{"230955":[73,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,235,237,160,234]},{"233987":[147,221,160]},{"234731":[34,240,221,160]},{"234747":[34,246,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[233,204,160]},{"236047":[75,193,160]},{"236578":[34,83,134,164]},{"237653":[34,108,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,0,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[26,198,160]},{"238498":[34,163,196,160,128,3]},{"238562":[34,230,198,160,240,4,234]},{"238751":[34,167,220,160]},{"238964":[34,167,220,160]},{"239190":[34,167,220,160]},{"239964":[134,223,160]},{"240044":[92,247,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,135,219,160]},{"241165":[34,135,219,160]},{"241175":[34,235,128,164]},{"241294":[34,135,219,160]},{"241304":[34,235,128,164]},{"241814":[34,135,219,160,24,125,139,176]},{"241869":[135,235,160]},{"241877":[34,135,219,160,24,125,139,176]},{"242942":[34,251,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,5,223,160,234]},{"243067":[234,234,34,214,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,165,219,160,234]},{"250478":[34,219,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,53,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,232,243,160,234]},{"273608":[34,197,182,160,76,230,172]},{"275716":[34,169,182,160,234]},{"276202":[34,230,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,143,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,69,238,160,234,234]},{"279880":[92,33,189,164]},{"280037":[34,27,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[135,235,160]},{"280106":[92,212,225,160,234]},{"280265":[201,210,160]},{"280287":[201,209,160]},{"280314":[201,210,160]},{"280335":[34,229,179,160]},{"282028":[34,122,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,101,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,135,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,234,200,160,234]},{"296453":[92,149,188,164,234]},{"296466":[201,211]},{"296471":[202,211]},{"296480":[201,213]},{"296488":[201,211]},{"296493":[202,211]},{"296502":[201,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[201,214]},{"296810":[217,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[249,206]},{"297052":[233,207]},{"297087":[34,69,133,160,234,176]},{"297144":[201,209]},{"297200":[249,206]},{"297225":[233,207]},{"297263":[202,215]},{"297292":[34,53,195,160]},{"297309":[209,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,51,189,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]},{"324619":[34,11,153,160]},{"324675":[34,239,222,160]},{"324780":[8,8,16]},{"324896":[34,83,236,160,34,215,222,160,234,234,234,234,234,234]},{"324996":[34,182,194,160]},{"325098":[169,2,0,234]},{"325131":[34,131,236,160]},{"325203":[34,179,175,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":[27,238,160]},{"342245":[34,59,132,160,34,88,222,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[36,222,160]},{"410347":[34,179,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[216,237,160]},{"412876":[92,129,175,164]},{"413015":[107]},{"413095":[145,164]},{"413109":[34,47,236,160]},{"413141":[34,166,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,59,146,164,234,234,234,234]},{"413264":[34,98,146,164,234,234,234,234,234,234]},{"413297":[92,137,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,228,175,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,166,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,130,175,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,19,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,130,175,164]},{"415678":[34,187,146,164]},{"416378":[46,147,164]},{"416491":[34,5,147,164,234]},{"416529":[34,224,146,164]},{"416588":[234,234,234,234]},{"416912":[34,252,146,164]},{"416937":[34,238,146,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]},{"422780":[28,244,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,167,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,65,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,95,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,44,244,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,56,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,139,155,160]},{"450360":[34,1,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,109,184,160,234]},{"450492":[34,107,155,160,234,234,234]},{"450861":[34,131,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,240,132,164]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,254,155,160,234]},{"452559":[34,236,155,160,234]},{"452581":[34,16,156,160,234]},{"452634":[96]},{"453064":[34,43,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,131,193,160,234,234,76,230,236]},{"453867":[34,34,156,160,234]},{"453892":[34,52,156,160]},{"454092":[34,157,155,160,234,234,234,234,234]},{"454233":[34,157,155,160,234,234,234,234,234]},{"454256":[34,235,194,160,234]},{"454282":[34,157,155,160,234,234,234,234,234]},{"454459":[34,157,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,242,216,160]},{"457513":[34,24,217,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,73,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,67,236,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,25,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[19,234,160]},{"487403":[169,2,0,234]},{"487935":[34,65,226,160]},{"488156":[34,65,226,160]},{"488213":[34,65,226,160]},{"488242":[34,65,226,160]},{"488309":[34,65,226,160]},{"488340":[34,65,226,160]},{"488721":[34,65,226,160]},{"489560":[34,65,226,160]},{"490022":[34,65,226,160]},{"490060":[34,65,226,160]},{"490164":[34,65,226,160]},{"490184":[34,65,226,160]},{"490209":[34,65,226,160]},{"490257":[34,65,226,160]},{"490438":[34,81,226,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]},{"882113":[34,180,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,63,240,160]},{"900244":[34,147,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,138,240,160,234]},{"900437":[92,36,239,160,234]},{"900447":[34,227,247,160,234,234,234]},{"900458":[34,42,222,160]},{"901799":[34,134,150,164,107,32,222,201,107]},{"903876":[34,204,240,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,121,234,160,96]},{"954852":[220,181,160]},{"955117":[88,234,160]},{"955529":[216,181,160]},{"962925":[181,181,160]},{"962951":[181,181,160]},{"963167":[181,181,160]},{"963214":[181,181,160]},{"965041":[181,181,160]},{"965069":[181,181,160]},{"965214":[181,181,160]},{"965298":[181,181,160]},{"965316":[181,181,160]},{"967797":[34,29,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,55,180,160]},{"972824":[132,181,160]},{"972834":[132,181,160]},{"972851":[132,181,160]},{"974665":[92,182,197,160,234]},{"974706":[243,197,160]},{"974722":[216,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,199,197,160,234,234]},{"975332":[34,165,197,160,234,234]},{"975401":[255]},{"976357":[177,181,160]},{"976423":[177,181,160]},{"978658":[161,181,160]},{"979078":[34,37,220,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":[37,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,129,196,160]},{"983466":[161,181,160]},{"983651":[161,181,160]},{"988539":[173,181,160]},{"988657":[173,181,160]},{"988668":[173,181,160]},{"988874":[173,181,160]},{"988902":[173,181,160]},{"989142":[173,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[165,181,160]},{"999246":[169,181,160]},{"999265":[169,181,160]},{"999359":[169,181,160]},{"999574":[169,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,123,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[136,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[136,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,125,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,155,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,174,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,194,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,145,179,160,122,250,107,218,90,34,201,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,83,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,83,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,83,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,83,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,83,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,83,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,83,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,83,147,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,83,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,83,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,83,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,83,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,83,147,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,83,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,83,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,83,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,83,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,83,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,83,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,83,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,83,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,83,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,83,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,83,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,83,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,83,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,83,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,83,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,83,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,83,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,83,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,83,147,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,83,147,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,83,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,203,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,131,217,160,76,49,145,201,251,208,7,34,63,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,203,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,131,217,160,76,114,147,201,251,208,7,34,63,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,203,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,131,217,160,128,8,201,99,208,4,34,63,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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,175,90,128,48,41,255]},{"1055518":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055531":[107,175,122,243,126,47,165,160,2,41,255]},{"1055543":[107,194,32,175,19,130,48,41,255]},{"1055553":[240,5,169,8]},{"1055558":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055571":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055593":[2,107,175,19,130,48,41,255]},{"1055602":[240,5,169,8]},{"1055607":[128,7,175,72,128,48,41,255]},{"1055616":[24,101,234,48,3,169]},{"1055624":[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]},{"1055651":[201,255]},{"1055654":[208,1,107,175,22,244,126,41,32]},{"1055664":[240,4,169]},{"1055669":[107,173,12,4,41,255]},{"1055676":[201,255]},{"1055679":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055703":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,64,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055735":[107,169,136,21,133]},{"1055741":[107,175,69,128,48,208,6,169,16,22,133]},{"1055753":[107,169,144,21,133]},{"1055759":[107,175,69,128,48,208,6,169,24,22,133]},{"1055771":[107,169,152,21,133]},{"1055777":[107,175,69,128,48,208,6,169,32,22,133]},{"1055789":[107,169,160,21,133]},{"1055795":[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]},{"1055887":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055901":[144,240,175,22,244,126,41,32]},{"1055910":[240,3,130,200,1,175,69,128,48,41,1]},{"1055922":[208,3,130,231]},{"1055927":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055949":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055966":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055983":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056000":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056017":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056034":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056051":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056068":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056085":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056102":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056119":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056136":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056153":[141,165,22,194,32,175,69,128,48,41,2]},{"1056165":[208,3,130,201]},{"1056170":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056183":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056198":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056213":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056228":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056243":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056258":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056273":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056288":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056303":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056318":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056333":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056348":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056363":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056378":[208,3,130,170,1,175,69,128,48,41,4]},{"1056390":[208,3,130,201]},{"1056395":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056408":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056423":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056438":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056453":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056468":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056483":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056498":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056513":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056528":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056543":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056558":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056573":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056588":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056603":[208,3,130,201]},{"1056608":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056621":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056636":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056651":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056666":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056681":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056696":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056711":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056726":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056741":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056756":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056771":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056786":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056801":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056820":[191,115,161,160,157,234,18,191,135,161,160,157,42,19,191,155,161,160,157,106,19,191,175,161,160,157,170,19,191,195,161,160,157,234,19,191,215,161,160,157,42,20,191,235,161,160,157,106,20,191,255,161,160,157,170,20,191,19,162,160,157,234,20,232,232,224,20]},{"1056888":[144,186,175,116,243,126,41,4]},{"1056897":[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]},{"1056930":[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]},{"1056963":[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]},{"1056996":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057017":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057038":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057059":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057080":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057101":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057122":[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]},{"1057745":[143,114,243,126,173,10,2,208,14,169]},{"1057756":[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]},{"1057790":[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]},{"1057871":[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]},{"1057914":[165,12,201,232,3,144,3,130,24]},{"1057924":[201,100]},{"1057927":[144,3,130,97]},{"1057932":[201,10]},{"1057935":[144,3,130,170]},{"1057940":[201,1]},{"1057943":[144,3,130,243]},{"1057948":[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,33,166,133,14,165,14,159]},{"1057985":[201,126,232,232,169,56]},{"1057992":[159]},{"1057994":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058008":[201,126,232,232,169]},{"1058015":[159]},{"1058017":[201,126,232,232,165,14,24,105,8]},{"1058027":[133,14,100,10,165,12,201,100]},{"1058036":[144,8,56,233,100]},{"1058042":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,33,166,133,14,165,14,159]},{"1058066":[201,126,232,232,169,56]},{"1058073":[159]},{"1058075":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058089":[201,126,232,232,169]},{"1058096":[159]},{"1058098":[201,126,232,232,165,14,24,105,8]},{"1058108":[133,14,100,10,165,12,201,10]},{"1058117":[144,8,56,233,10]},{"1058123":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,33,166,133,14,165,14,159]},{"1058147":[201,126,232,232,169,56]},{"1058154":[159]},{"1058156":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058170":[201,126,232,232,169]},{"1058177":[159]},{"1058179":[201,126,232,232,165,14,24,105,8]},{"1058189":[133,14,100,10,165,12,201,1]},{"1058198":[144,8,56,233,1]},{"1058204":[230,10,128,243,133,12,192,255,208,10,160]},{"1058216":[165,14,24,121,33,166,133,14,165,14,159]},{"1058228":[201,126,232,232,169,56]},{"1058235":[159]},{"1058237":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058251":[201,126,232,232,169]},{"1058258":[159]},{"1058260":[201,126,232,232,165,14,24,105,8]},{"1058270":[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]},{"1058341":[252,255,248,255,218,90,8,194,48,162]},{"1058353":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058368":[208,13,175,153,80,127,41,255]},{"1058377":[223,3,200,48,208,44,226,32,191]},{"1058387":[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]},{"1058429":[200,48,41,255]},{"1058434":[201,255]},{"1058437":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058460":[226,32,162]},{"1058465":[160]},{"1058468":[152,207,96,80,127,144,3,130,172]},{"1058478":[191,1,201,48,201,255,208,3,130,161]},{"1058489":[191]},{"1058491":[201,48,207,80,80,127,240,3,130,137]},{"1058502":[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]},{"1058539":[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,213,167,160,170,32,244,167,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]},{"1058670":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058684":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,47,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,48,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,49,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]},{"1058777":[128]},{"1058782":[1]},{"1058785":[169,11,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,49,145,160,34,45,213]},{"1058824":[194,16,96,32,15,168,107,173]},{"1058833":[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]},{"1058863":[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]},{"1058900":[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]},{"1059041":[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]},{"1059206":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059227":[175,81,80,127,201,255,208,3,76,136,169,139,75,171,34,231,244,30,32,214,169,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]},{"1059278":[32,243,173,32,243,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059301":[201,2,208,3,130,227]},{"1059308":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059323":[165,26,41,16,240,12,189,106,170,159]},{"1059334":[201,126,232,224,16,144,244,189,122,170,159]},{"1059346":[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]},{"1059405":[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]},{"1059436":[248,255]},{"1059441":[2]},{"1059446":[16]},{"1059449":[2]},{"1059452":[248,255]},{"1059457":[2]},{"1059462":[16,64]},{"1059465":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,191,133,8,169,170,133,9,128,8,169,199,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059523":[70,10]},{"1059526":[2]},{"1059531":[70,74]},{"1059534":[2,218,162]},{"1059538":[165,26,41,64,240,12,189,65,171,159]},{"1059549":[201,126,232,224,16,144,244,189,81,171,159]},{"1059561":[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]},{"1059620":[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]},{"1059651":[248,255,132]},{"1059656":[2]},{"1059661":[16]},{"1059664":[2]},{"1059667":[248,255,132]},{"1059672":[2]},{"1059677":[16,64]},{"1059680":[2,218,162]},{"1059684":[165,26,41,64,240,12,189,211,171,159]},{"1059695":[201,126,232,224,16,144,244,189,227,171,159]},{"1059707":[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]},{"1059766":[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]},{"1059797":[248,255,142]},{"1059802":[2]},{"1059807":[16]},{"1059810":[2]},{"1059813":[248,255,142]},{"1059818":[2]},{"1059823":[16,64]},{"1059826":[2,218,90,8,160]},{"1059832":[90,152,74,74,168,175,95,80,127,57,47,173,240,3,122,128,48,122,173,238]},{"1059853":[221,32,15,208,39,32,198,173,32,50,173,34,230,131,6,144,3,32,230,173,32,156,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,72,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]},{"1059981":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059997":[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,47,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,47,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]},{"1060150":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060171":[58,10,168,185,232,174,133]},{"1060179":[122,104,24,113]},{"1060184":[24,105,2]},{"1060188":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060201":[13,194,32,90,200,200,24,113]},{"1060210":[122,72,175,81,80,127,41,128]},{"1060219":[240,7,104,24,105,4]},{"1060226":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060249":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060266":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060279":[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]},{"1060307":[165,35,105]},{"1060311":[133,8,165,32,105,8,133,1,165,33,105]},{"1060323":[133,9,96,218,34]},{"1060329":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060351":[160]},{"1060353":[175,81,80,127,41,3,201,3,208,5,32,36,174,128,4,201,2,208,5,32,36,174,128,4,201,1,208,3,32,36,174,122,250,171,96,175,95,80,127,57,47,173,240,3,130,178]},{"1060400":[90,175,81,80,127,41,3,58,10,168,194,32,185,232,174,133]},{"1060417":[163,1,10,10,168,177]},{"1060424":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060437":[208,8,177]},{"1060441":[143,39,192,126,128,10,177]},{"1060449":[24,105,4]},{"1060453":[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,6,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,114,147,160,143,42,192,126,169]},{"1060520":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060546":[143,44,192,126,32,219,175,169,2,218,72,175,97,80,127,170,104,32,146,175,250,175,81,80,127,41,128,208,3,32,9,175,200,232,232,232,232,96,238,174,242,174,250,174,8]},{"1060592":[40]},{"1060594":[240,255,40]},{"1060598":[32]},{"1060600":[40]},{"1060602":[216,255,40]},{"1060606":[8]},{"1060608":[40]},{"1060610":[56]},{"1060612":[40]},{"1060614":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060633":[58,10,168,185,232,174,133]},{"1060641":[185,128,175,133,2,122,90,152,10,10,168,177]},{"1060654":[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,115,164,226,32,133,6,100,7,72,169]},{"1060693":[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,134,175,136,175,140,175]},{"1060743":[255]},{"1060745":[128,128,255]},{"1060749":[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]},{"1060830":[194,32,191,37,192,126,24,105,4]},{"1060840":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060856":[159,47,192,126,191,41,192,126,24,105,16]},{"1060868":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060910":[72,165,2,72,169,16,128,133]},{"1060919":[169,48]},{"1060922":[133,2,169,2]},{"1060927":[34,83,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060974":[143]},{"1060976":[80,127,32,189,176,34,79,150,160,107,72,175]},{"1060989":[80,127,240,6,34,108,176,160,128,13,32,189,176,34,12,151,160,169]},{"1061008":[143,152,192,126,104,107,32,189,176,201,36,208,24,90,160,36,34,174,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061093":[143,152,192,126,169,36,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]},{"1061368":[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]},{"1061435":[191,4,179,160,197,4,144,3,232,128,245,191,5,179,160,133,6,100,7,194,32,138,10,10,170,191,6,179,160,141,232,80,191,8,179,160,141,234,80,173]},{"1061476":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061494":[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,240,176,173,236,80,10,10,170,189]},{"1061531":[81,56,229,8,157]},{"1061537":[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]},{"1061569":[81,141,228,80,189,2,81,141,230,80,32,240,176,173]},{"1061584":[81,56,229,8,141]},{"1061590":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,236,176,160,141,232,80,173,234,80,239,238,176,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,34,49,145,160,72,165,138,201,3,240,6,34,23,179,160,128,4,34,10,179,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,50,179,160,169,235,143]},{"1061736":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061760":[13,165,33,153,32,13,169]},{"1061768":[153,32,15,169,127,153,112,15,107,72,8,34,187,179,160,144,31,156,18,1,156,239,3,169]},{"1061793":[133,93,194,32,165,138,201,48]},{"1061802":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061826":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061839":[128,16,201,48]},{"1061844":[208,11,165,34,201]},{"1061850":[2,144,4,56,130,1]},{"1061857":[24,226,32,107,191,201,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061878":[226,32,34,16,247,8,169,52,145,144,200,191,201,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061913":[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]},{"1061975":[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,195,180,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]},{"1062122":[13,173,219,15,233]},{"1062128":[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]},{"1062167":[13,173,219,15,233]},{"1062173":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062198":[254,127,208,245,169,4,107,34,28,223,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,46,223,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,46,223,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062271":[107,169]},{"1062274":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,244,181,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,244,181,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,244,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,244,181,160,107,218,8,194,32,41,127]},{"1062395":[10,170,191]},{"1062399":[82,127,26,41,255,3,159]},{"1062407":[82,127,170,10,191]},{"1062413":[128,175,40,250,107,218,8,194,48,162]},{"1062425":[191,73,182,160,159]},{"1062431":[82,127,232,232,191,73,182,160,159]},{"1062441":[82,127,232,232,191,73,182,160,159]},{"1062451":[82,127,232,232,191,73,182,160,159]},{"1062461":[82,127,232,232,224,127]},{"1062468":[144,211,40,250,107]},{"1062475":[64]},{"1062477":[128]},{"1062479":[192]},{"1062482":[1,64,1,128,1,192,1]},{"1062490":[2,64,2,128,2,192,2]},{"1062498":[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,105,182,160,175,35,128,48,208,4,34,137,182,160,104,107,72,169]},{"1062600":[143,65,80,127,175,34,128,48,201,1,208,4,34,105,182,160,175,35,128,48,201,1,208,4,34,137,182,160,104,107,72,175,34,128,48,201,2,208,4,34,105,182,160,175,35,128,48,201,2,208,4,34,137,182,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]},{"1062766":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062783":[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]},{"1062854":[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]},{"1062890":[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,61,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]},{"1063015":[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]},{"1063041":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063061":[2,156,5,2,169]},{"1063067":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,159,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063098":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063115":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063132":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063149":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063166":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063183":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063200":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063217":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063240":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063257":[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]},{"1063290":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063313":[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]},{"1063345":[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]},{"1063403":[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]},{"1063429":[192,59,208,3,130,96]},{"1063436":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063461":[201,15,1,208,3,130,59]},{"1063469":[201,16,1,208,3,130,51]},{"1063477":[201,28,1,208,3,130,43]},{"1063485":[201,31,1,208,3,130,35]},{"1063493":[201,255]},{"1063496":[208,3,130,27]},{"1063501":[201,20,1,208,3,130,19]},{"1063509":[201,21,1,208,3,130,11]},{"1063517":[201,22,1,208,3,130,3]},{"1063525":[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]},{"1063557":[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]},{"1063710":[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]},{"1063748":[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]},{"1063786":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063804":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063822":[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]},{"1063858":[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]},{"1063896":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063914":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,139,192,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]},{"1064018":[208,9,32,37,191,32,86,191,130,64,2,192,1,208,6,32,37,191,130,54,2,192,2,208,6,32,37,191,130,44,2,192,3,208,6,32,37,191,130,34,2,192,4,208,6,32,86,191,130,24,2,192,5,208,6,32,86,191,130,14,2,192,6,208,6,32,86,191,130,4,2,192,7,144,10,192,14,176,6,32,135,191,130,246,1,192,20,208,9,32,227,190,32,135,191,130,233,1,192,15,144,10,192,23,176,6,32,135,191,130,219,1,192,23,208,6,32,235,191,130,209,1,192,24,144,10,192,26,176,6,32,135,191,130,195,1,192,26,208,9,32,4,191,32,135,191,130,182,1,192,29,208,6,32,135,191,130,172,1,192,27,144,10,192,32,176,6,32,147,191,130,158,1,192,32,208,6,32,19,192,130,148,1,192,33,208,6,32,135,191,130,138,1,192,34,144,10,192,36,176,6,32,47,192,130,124,1,192,36,208,6,32,63,192,130,114,1,192,37,208,6,32,95,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,167,192,130,87,1,192,40,208,6,32,167,192,130,77,1,192,41,208,6,32,135,191,130,67,1,192,42,144,10,192,46,176,6,32,135,191,130,53,1,192,49,208,6,32,167,192,130,43,1,192,50,208,6,32,127,192,130,33,1,192,51,208,6,32,189,192,130,23,1,192,55,144,10,192,58,176,6,32,175,191,130,9,1,192,58,144,10,192,60,176,6,32,116,191,130,251]},{"1064354":[192,60,208,6,32,135,191,130,241]},{"1064364":[192,61,208,6,32,135,191,130,231]},{"1064374":[192,62,144,10,192,64,176,6,32,7,192,130,217]},{"1064388":[192,72,208,6,32,135,191,130,207]},{"1064398":[192,73,208,6,32,37,191,130,197]},{"1064408":[192,74,208,9,32,227,190,32,135,191,130,184]},{"1064421":[192,75,208,9,32,194,190,32,147,191,130,171]},{"1064434":[192,76,208,9,32,203,191,32,167,192,130,158]},{"1064447":[192,77,144,10,192,80,176,6,32,203,191,130,144]},{"1064461":[192,80,208,6,32,37,191,130,134]},{"1064471":[192,81,144,10,192,85,176,6,32,203,191,130,120]},{"1064485":[192,88,208,6,32,116,191,130,110]},{"1064495":[192,94,208,6,32,37,191,130,100]},{"1064505":[192,95,208,6,32,86,191,130,90]},{"1064515":[192,96,208,6,32,47,192,130,80]},{"1064525":[192,97,208,6,32,147,191,130,70]},{"1064535":[192,100,144,10,192,102,176,6,32,116,191,130,56]},{"1064549":[192,112,144,10,192,128,176,6,32,189,192,130,42]},{"1064563":[192,128,144,10,192,144,176,6,32,95,192,130,28]},{"1064577":[192,144,144,10,192,160,176,6,32,127,192,130,14]},{"1064591":[192,160,144,10,192,176,176,6,32,63,192,130]},{"1064605":[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,161,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064757":[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,63,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,135,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,205,192,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,64,238,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]},{"1065353":[201,2]},{"1065356":[208,14,175,140,243,126,41,192]},{"1065365":[201,192]},{"1065368":[240,79,128,64,201,1]},{"1065375":[208,14,175,142,243,126,41,192]},{"1065384":[201,192]},{"1065387":[240,60,128,45,201,5]},{"1065394":[208,14,175,140,243,126,41,48]},{"1065403":[201,48]},{"1065406":[240,41,128,26,201,13]},{"1065413":[208,16,175,140,243,126,137,4]},{"1065422":[240,12,41,3]},{"1065427":[208,20,128,5,201,16]},{"1065434":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065447":[208,5,169,79,61,128,6,32,248,193,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]},{"1065494":[41,255,239,153,4]},{"1065500":[185,62]},{"1065503":[41,255,239,153,62]},{"1065509":[185,68]},{"1065512":[41,255,239,153,68]},{"1065518":[185,128]},{"1065521":[41,255,239,153,128]},{"1065527":[185,130]},{"1065530":[41,255,239,153,130]},{"1065536":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065557":[41,255,239,153,132]},{"1065563":[185,126]},{"1065566":[41,255,239,153,126]},{"1065572":[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]},{"1065610":[201,144]},{"1065613":[208,3,169,127]},{"1065618":[9]},{"1065620":[36,143,100,199,126,165,5,41,255]},{"1065630":[9]},{"1065632":[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,181,240,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065744":[72,165,2,72,169,16,128,133]},{"1065753":[169,48]},{"1065756":[133,2,169,4]},{"1065761":[34,83,147,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065807":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065828":[143]},{"1065830":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065844":[157,192,13,72,169,1,143]},{"1065852":[80,127,165,93,201,20,240,68,169]},{"1065862":[143]},{"1065864":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065892":[72,165,2,72,169,16,128,133]},{"1065901":[169,48]},{"1065904":[133,2,169,3]},{"1065909":[34,83,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065934":[80,127,240,6,34,119,195,160,128,7,189,128,14,34,187,150,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]},{"1065977":[72,165,2,72,169,16,128,133]},{"1065986":[169,48]},{"1065989":[133,2,169,4]},{"1065994":[34,83,147,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,151,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]},{"1066052":[143,68,243,126,107,175,123,243,126,41,255]},{"1066064":[201,2]},{"1066067":[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]},{"1066100":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066115":[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]},{"1066151":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066165":[173,91,3,41,1,208,3,130,134]},{"1066175":[90,8,139,75,171,226,48,165,27,240,3,76,66,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066212":[129,48,143]},{"1066216":[254,127,34,93,246,29,162]},{"1066224":[165,47,201,4,240,1,232,191,70,197,160,153,80,13,169]},{"1066240":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,72,197,160,41,240,153,16,13,165,35,105]},{"1066274":[153,48,13,165,32,24,105,22,41,240,153]},{"1066286":[13,165,33,105]},{"1066291":[153,32,13,169]},{"1066296":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066313":[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]},{"1066344":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066365":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066435":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066466":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066560":[72,165,2,72,169,64,129,133]},{"1066569":[169,48]},{"1066572":[133,2,169,10]},{"1066577":[34,83,147,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066597":[254,127,34,93,246,29,162]},{"1066605":[165,47,201,4,240,1,232,191,202,198,160,153,80,13,169]},{"1066621":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,204,198,160,41,240,153,16,13,165,35,105]},{"1066655":[153,48,13,165,32,24,105,22,41,240,153]},{"1066667":[13,165,33,105]},{"1066672":[153,32,13,169]},{"1066677":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066701":[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]},{"1066780":[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]},{"1066807":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066846":[72,165,2,72,169,16,128,133]},{"1066855":[169,48]},{"1066858":[133,2,169,5]},{"1066863":[34,83,147,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]},{"1066917":[201,35,208,6,160,93,92,71,213]},{"1066927":[201,72,208,6,160,96,92,71,213]},{"1066937":[201,36,176,6,160,91,92,71,213]},{"1066947":[201,55,176,6,160,92,92,71,213]},{"1066957":[201,57,176,6,160,93,92,71,213]},{"1066967":[160,50,92,71,213]},{"1066973":[192,9,48]},{"1066977":[96]},{"1066979":[144]},{"1066981":[192]},{"1066984":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067008":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067026":[9,48,9,96,9,144,9,240,9]},{"1067037":[240]},{"1067039":[32,10,80,10,96,6]},{"1067046":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067068":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067084":[6,48,6]},{"1067088":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067104":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067125":[127,221,199,160,107,165]},{"1067132":[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]},{"1067163":[132,175,24,105]},{"1067168":[136,133]},{"1067171":[226,32,169,175,133,2,34,99,226,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,235,218,160,162,1,128,2,162]},{"1067229":[171,40,122,104,133,2,104,133,1,104,133]},{"1067241":[96,218,173,216,2,34,153,226,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067724":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,235,218,160,130,116,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,235,218,160,130,72,1,201,109,208,7,34,248,184,164,130,61,1,201,110,208,7,34,248,184,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067971":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067996":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068019":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068038":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068055":[56,233,8,170,169,1,224]},{"1068063":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068086":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068105":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068122":[56,233,8,170,169,1,224]},{"1068130":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068153":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068175":[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]},{"1068207":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068226":[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]},{"1068252":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,57,238,160,173,216,2,72,175,152,192,126,208,12,104,32,154,218,141,216,2,32,112,218,128,1,104,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,203,218,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]},{"1068415":[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]},{"1068528":[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]},{"1068568":[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]},{"1068598":[175,91,243,126,201]},{"1068604":[208,8,169,34,141,216,2,130,171]},{"1068614":[169,35,141,216,2,130,163]},{"1068622":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068640":[169,28,141,216,2,130,137]},{"1068648":[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]},{"1068680":[175,64,243,126,26,74,201]},{"1068688":[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,131,217,160,141,216,2,235,32,14,218,169,255,143,144,80,127,128,36,201,99,208,15,34,63,218,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]},{"1068785":[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]},{"1069040":[4,4,4,4,4,5]},{"1069052":[4]},{"1069054":[4]},{"1069057":[4]},{"1069069":[4]},{"1069075":[5]},{"1069085":[4,4,4]},{"1069099":[4,4]},{"1069102":[4]},{"1069106":[4]},{"1069113":[4]},{"1069122":[4]},{"1069193":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069273":[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]},{"1069322":[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]},{"1069361":[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]},{"1069518":[2,2]},{"1069526":[2,2,2,2,2,2]},{"1069533":[2]},{"1069535":[2,2]},{"1069538":[2,2,2,2,2,2,2,2,2,2,2]},{"1069550":[2,2,2,2,2]},{"1069556":[2,2,2,2,2,2,2,2,2]},{"1069568":[2,2,2,2,2,2,2,2,2,2,2]},{"1069581":[2]},{"1069583":[2,2,2]},{"1069587":[2,2,2,2,2,2]},{"1069594":[2,2,2,2,2,2,2,2]},{"1069603":[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]},{"1069689":[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]},{"1069875":[4,4,4]},{"1069881":[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]},{"1070794":[128]},{"1070796":[64]},{"1070798":[32]},{"1070800":[16]},{"1070802":[8]},{"1070804":[4]},{"1070806":[2]},{"1070808":[1,128]},{"1070811":[64]},{"1070813":[32]},{"1070815":[16]},{"1070817":[8]},{"1070819":[4]},{"1071050":[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,154,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,24,217,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,24,217,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]},{"1071504":[160,48,107,162]},{"1071509":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071522":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071536":[168,152,32,234,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071556":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071580":[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]},{"1071620":[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]},{"1071657":[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]},{"1071696":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071709":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071732":[191]},{"1071734":[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]},{"1071774":[191]},{"1071776":[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,162]},{"1071821":[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,96,100,17,100,176,92,224,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071884":[13,24,105,3,107,189,32,14,201,136,208,9,32,73,219,201,4,144,1,58,107,32,73,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071930":[200,49,74,74,74,74,107,40,191]},{"1071940":[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]},{"1071990":[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]},{"1072024":[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,20,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]},{"1072226":[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]},{"1072281":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072307":[165,27,240,121,194,32,165,160,201,14]},{"1072318":[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]},{"1072353":[201,126]},{"1072356":[208,33,165,34,41,255,1,201,104]},{"1072366":[144,60,201,136]},{"1072371":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072391":[201,222]},{"1072394":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072419":[144,7,201,154]},{"1072424":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,144,221,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,144,221,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,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]},{"1072634":[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]},{"1072694":[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,61,222,160,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,90,160,24,34,161,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072813":[208,11,40,90,160,24,34,161,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,192,155,160,107,72,175,67,244,126,208,4,34,201,192,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,61,222,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,61,222,160,104,34,168,160,2,107,58,16,8,169]},{"1073069":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1073083":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,61,222,169,1,143]},{"1073109":[80,127,156,70,6,156,66,6,76,61,222,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,201,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073321":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073352":[32,137,64,240,4,92,220,128]},{"1073361":[173]},{"1073363":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073388":[143,155,80,127,92,220,128]},{"1073396":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073415":[173,39,1,205,41,1,208,4,92,220,128]},{"1073427":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073457":[224,255,208,4,92,220,128]},{"1073465":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073481":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073497":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073514":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073527":[142,4,32,156,5,32,156,7,32,191]},{"1073538":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073551":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073587":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073600":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073656":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073669":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073719":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073737":[87,127,107,191]},{"1073742":[18,127,107,156,240,28,156,241,28,169]},{"1073753":[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]},{"1073785":[226,32,183]},{"1073789":[159]},{"1073791":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073810":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073834":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073852":[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]},{"1073878":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073896":[226,32,183]},{"1073900":[159]},{"1073902":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073921":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073941":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073959":[226,32,183]},{"1073963":[159]},{"1073965":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073984":[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]},{"1074015":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074033":[226,32,183]},{"1074037":[159]},{"1074039":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074058":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074078":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074096":[226,32,183]},{"1074100":[159]},{"1074102":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074121":[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]},{"1074150":[133]},{"1074152":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074170":[226,32,183]},{"1074174":[159]},{"1074176":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074195":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074215":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074233":[226,32,183]},{"1074237":[159]},{"1074239":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074258":[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]},{"1074289":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074307":[226,32,183]},{"1074311":[159]},{"1074313":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074332":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074352":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074370":[226,32,183]},{"1074374":[159]},{"1074376":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074395":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074416":[133]},{"1074418":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074436":[226,32,183]},{"1074440":[159]},{"1074442":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074461":[143,148,80,127,226,32,130,213]},{"1074470":[201,128,208,56,169,52,133]},{"1074478":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074496":[226,32,183]},{"1074500":[159]},{"1074502":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074521":[143,148,80,127,226,32,130,153]},{"1074530":[201,144,208,55,169,112,133]},{"1074538":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074556":[226,32,183]},{"1074560":[159]},{"1074562":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074581":[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]},{"1074608":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074626":[226,32,183]},{"1074630":[159]},{"1074632":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074651":[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]},{"1074730":[208,56,169,216,133]},{"1074736":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074754":[226,32,183]},{"1074758":[159]},{"1074760":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074779":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074796":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074814":[226,32,183]},{"1074818":[159]},{"1074820":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074839":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074856":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074874":[226,32,183]},{"1074878":[159]},{"1074880":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074899":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074916":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074934":[226,32,183]},{"1074938":[159]},{"1074940":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074959":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074976":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074994":[226,32,183]},{"1074998":[159]},{"1075000":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075019":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075036":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075054":[226,32,183]},{"1075058":[159]},{"1075060":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075079":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075096":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075114":[226,32,183]},{"1075118":[159]},{"1075120":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075139":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075156":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075174":[226,32,183]},{"1075178":[159]},{"1075180":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075199":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075216":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075234":[226,32,183]},{"1075238":[159]},{"1075240":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075259":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075276":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075294":[226,32,183]},{"1075298":[159]},{"1075300":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075319":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075336":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075354":[226,32,183]},{"1075358":[159]},{"1075360":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075379":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075396":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075414":[226,32,183]},{"1075418":[159]},{"1075420":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075439":[143,148,80,127,226,32,130,235]},{"1075448":[201,12,208,56,169,12,133]},{"1075456":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075474":[226,32,183]},{"1075478":[159]},{"1075480":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075499":[143,148,80,127,226,32,130,175]},{"1075508":[201,13,208,55,169,41,133]},{"1075516":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075534":[226,32,183]},{"1075538":[159]},{"1075540":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075559":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075575":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075593":[226,32,183]},{"1075597":[159]},{"1075599":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075618":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075634":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075652":[226,32,183]},{"1075656":[159]},{"1075658":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075677":[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]},{"1075710":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075725":[171,40,122,250,104,107,34,78,216]},{"1075735":[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]},{"1075799":[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,141,235,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,141,235,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]},{"1076070":[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]},{"1076115":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076139":[226,48,160]},{"1076143":[183]},{"1076145":[201,254,208,39,200,183]},{"1076152":[201,110,208,32,200,183]},{"1076159":[208,27,200,183]},{"1076164":[201,254,208,20,200,183]},{"1076171":[201,107,208,13,200,183]},{"1076178":[201,4,208,6,156,232,28,130,19]},{"1076188":[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]},{"1076216":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076233":[10,10,69,138,41,8]},{"1076240":[240,6,152,24,105,16]},{"1076247":[168,165,35,41,2]},{"1076253":[74,69,138,41,1]},{"1076259":[240,4,152,26,26,168,152,41,255]},{"1076269":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,33,148,164,34,23,145,164,107,34,189,246,160,34,182,170,164,34]},{"1076301":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,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,202,222,160,107,194,16,34,61,137]},{"1076497":[169,7,141,12,33,175,240,244,126,208,10,34,114,237,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076549":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,58,147,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]},{"1076629":[191]},{"1076631":[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]},{"1076705":[107,34,212,152,160,34,194,247,160,107,34,71,153,160,34,80,153,160,162,4,107,34,194,247,160,169,20,133,17,107,34,194,247,160,107,34,63,132,160,34,44,153,160,34,61,222,160,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]},{"1076780":[2,107,169]},{"1076784":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1076807":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,135,235,160,169]},{"1076829":[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]},{"1076865":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076890":[208,4,169]},{"1076895":[107,201,1]},{"1076899":[208,16,175,197,243,126,41,15]},{"1076908":[201,2]},{"1076911":[176,84,32,9,239,107,201,2]},{"1076920":[208,75,32,9,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076944":[107,175,74,128,48,41,255]},{"1076952":[240,43,175,195,242,126,41,32]},{"1076961":[208,34,173,8,3,41,128]},{"1076969":[240,4,169,1]},{"1076974":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076996":[107,169]},{"1077000":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077023":[96,169]},{"1077027":[96,175,76,128,48,41,255]},{"1077035":[240,4,92,90,189,27,224,118]},{"1077044":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077061":[72,170,191,64,130,48,208,3,130,175]},{"1077072":[58,133]},{"1077075":[10,10,24,101]},{"1077080":[10,10,170,169,22]},{"1077086":[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]},{"1077114":[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]},{"1077157":[137,128]},{"1077160":[240,3,9]},{"1077164":[255,143,106,193,126,191,98,130,48,41,255]},{"1077176":[137,128]},{"1077179":[240,3,9]},{"1077183":[255,143,110,193,126,169]},{"1077191":[56,239,106,193,126,143,108,193,126,169]},{"1077203":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077219":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077237":[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]},{"1077314":[165]},{"1077316":[223]},{"1077318":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077338":[165]},{"1077340":[223]},{"1077342":[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]},{"1077388":[175,74,128,48,41,255]},{"1077395":[240,25,175,93]},{"1077401":[41,255]},{"1077404":[201,20]},{"1077407":[208,13,165,138,41,64]},{"1077414":[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]},{"1077471":[107,104,141,228,2,141,193,15,141,16,7,107,34,244,240,160,34,97,241,160,107,169,14,143,1,40]},{"1077498":[169,4,143,1,40]},{"1077504":[169,13,143,1,40]},{"1077510":[169,14,143,1,40]},{"1077516":[169]},{"1077518":[143,1,40]},{"1077522":[169]},{"1077524":[143,1,40]},{"1077528":[169]},{"1077530":[143,1,40]},{"1077534":[169]},{"1077536":[143,1,40]},{"1077540":[169]},{"1077542":[143,1,40]},{"1077546":[169]},{"1077548":[143,1,40]},{"1077552":[169]},{"1077554":[143,1,40]},{"1077558":[169,1,143,1,40]},{"1077564":[169]},{"1077566":[143,1,40]},{"1077570":[169,1,143,1,40]},{"1077576":[169]},{"1077578":[143,1,40]},{"1077582":[169]},{"1077584":[143,1,40]},{"1077588":[169,10,143,1,40]},{"1077594":[169,13,143,1,40]},{"1077600":[107,72,218,162]},{"1077605":[175]},{"1077607":[40]},{"1077609":[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]},{"1077636":[175]},{"1077638":[40]},{"1077640":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077654":[232,128,235,56,175]},{"1077660":[40]},{"1077662":[72,175]},{"1077665":[40]},{"1077667":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077685":[175]},{"1077687":[40]},{"1077689":[72,175]},{"1077692":[40]},{"1077694":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077714":[40]},{"1077716":[72,175]},{"1077719":[40]},{"1077721":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077741":[40]},{"1077743":[72,175]},{"1077746":[40]},{"1077748":[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]},{"1077833":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077851":[133]},{"1077853":[165,3,41,255]},{"1077858":[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,148,242,160,132,2,100,3,24,101]},{"1077900":[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]},{"1077955":[175]},{"1077957":[40]},{"1077959":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077973":[232,128,235,56,175]},{"1077979":[40]},{"1077981":[72,175]},{"1077984":[40]},{"1077986":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1078004":[175]},{"1078006":[40]},{"1078008":[72,175]},{"1078011":[40]},{"1078013":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1078033":[40]},{"1078035":[72,175]},{"1078038":[40]},{"1078040":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078060":[40]},{"1078062":[72,175]},{"1078065":[40]},{"1078067":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078087":[40]},{"1078089":[133,4,175]},{"1078093":[40]},{"1078095":[72,175]},{"1078098":[40]},{"1078100":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078120":[40]},{"1078122":[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]},{"1078191":[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,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]},{"1078281":[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]},{"1078315":[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]},{"1078414":[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]},{"1078445":[201,2]},{"1078448":[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]},{"1078480":[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,187,246,160,144,10,208,8,175,140,80,127,207,185,246,160,144,114,175,145,129,48,41,255]},{"1078536":[208,24,169,2]},{"1078541":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078565":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078578":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078592":[143,142,80,127,169,1]},{"1078599":[143,126,80,127,128,54,201,2]},{"1078608":[208,24,169,2]},{"1078613":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,235,218,160,194,48,96,175,146,129,48,41,255]},{"1078650":[240,7,169]},{"1078655":[143,126,80,127,175,142,80,127,207,175,246,160,144,10,208,8,175,140,80,127,207,173,246,160,144,53,175,128,80,127,26,201,10]},{"1078689":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078703":[143,128,80,127,175,140,80,127,56,239,173,246,160,143,140,80,127,175,142,80,127,239,175,246,160,143,142,80,127,128,181,175,142,80,127,207,179,246,160,144,10,208,8,175,140,80,127,207,177,246,160,144,53,175,132,80,127,26,201,10]},{"1078764":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078778":[143,132,80,127,175,140,80,127,56,239,177,246,160,143,140,80,127,175,142,80,127,239,179,246,160,143,142,80,127,128,181,175,142,80,127,207,183,246,160,144,10,208,8,175,140,80,127,207,181,246,160,144,53,175,136,80,127,26,201,10]},{"1078839":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078853":[143,136,80,127,175,140,80,127,56,239,181,246,160,143,140,80,127,175,142,80,127,239,183,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]},{"1078961":[16,14]},{"1078965":[60]},{"1078969":[255,255,255,127,175,204,80,127,41,255]},{"1078980":[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]},{"1079051":[240,93,175,145,129,48,41,255]},{"1079060":[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]},{"1079153":[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]},{"1079228":[208,3,32,139,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079258":[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]},{"1079292":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079376":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,206,223,160,34,58,135,1,194,16,166,160,191,76,251,160,226,16,34,156,135]},{"1079486":[208,248,160,209,248,160,94,249,160,235,249,160,120,250,160,226,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079522":[32,126,232,232,159]},{"1079528":[32,126,232,232,159]},{"1079534":[32,126,232,232,159]},{"1079540":[32,126,232,232,162,220,25,159]},{"1079549":[32,126,232,232,169,202,12,159]},{"1079558":[32,126,232,232,169,203,12,159]},{"1079567":[32,126,232,232,169,208,8,159]},{"1079576":[32,126,232,232,162,92,26,159]},{"1079585":[32,126,232,232,169,218,12,159]},{"1079594":[32,126,232,232,169,219,12,159]},{"1079603":[32,126,232,232,169,208,8,159]},{"1079612":[32,126,232,232,162,220,26,159]},{"1079621":[32,126,232,232,159]},{"1079627":[32,126,232,232,159]},{"1079633":[32,126,232,232,159]},{"1079639":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079663":[32,126,232,232,159]},{"1079669":[32,126,232,232,159]},{"1079675":[32,126,232,232,159]},{"1079681":[32,126,232,232,162,156,25,159]},{"1079690":[32,126,232,232,169,202,12,159]},{"1079699":[32,126,232,232,169,203,12,159]},{"1079708":[32,126,232,232,169,208,8,159]},{"1079717":[32,126,232,232,162,28,26,159]},{"1079726":[32,126,232,232,169,218,12,159]},{"1079735":[32,126,232,232,169,219,12,159]},{"1079744":[32,126,232,232,169,208,8,159]},{"1079753":[32,126,232,232,162,156,26,159]},{"1079762":[32,126,232,232,159]},{"1079768":[32,126,232,232,159]},{"1079774":[32,126,232,232,159]},{"1079780":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079804":[32,126,232,232,159]},{"1079810":[32,126,232,232,159]},{"1079816":[32,126,232,232,159]},{"1079822":[32,126,232,232,162,220,9,159]},{"1079831":[32,126,232,232,169,202,12,159]},{"1079840":[32,126,232,232,169,203,12,159]},{"1079849":[32,126,232,232,169,208,8,159]},{"1079858":[32,126,232,232,162,92,10,159]},{"1079867":[32,126,232,232,169,218,12,159]},{"1079876":[32,126,232,232,169,219,12,159]},{"1079885":[32,126,232,232,169,208,8,159]},{"1079894":[32,126,232,232,162,220,10,159]},{"1079903":[32,126,232,232,159]},{"1079909":[32,126,232,232,159]},{"1079915":[32,126,232,232,159]},{"1079921":[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]},{"1080154":[1]},{"1080236":[5]},{"1080238":[4]},{"1080266":[2]},{"1080362":[3]},{"1080460":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080477":[134,1,133,2,32,140,252,176,4,92,83,230]},{"1080490":[169,49,133,2,194,32,169]},{"1080498":[192,133]},{"1080501":[162,128,167]},{"1080505":[141,24,33,230]},{"1080510":[230]},{"1080512":[167]},{"1080514":[141,24,33,230]},{"1080519":[230]},{"1080521":[167]},{"1080523":[141,24,33,230]},{"1080528":[230]},{"1080530":[167]},{"1080532":[141,24,33,230]},{"1080537":[230]},{"1080539":[167]},{"1080541":[141,24,33,230]},{"1080546":[230]},{"1080548":[167]},{"1080550":[141,24,33,230]},{"1080555":[230]},{"1080557":[167]},{"1080559":[141,24,33,230]},{"1080564":[230]},{"1080566":[167]},{"1080568":[141,24,33,230]},{"1080573":[230]},{"1080575":[202,208,181,226,32,92,81,230]},{"1080584":[226,48,175,248,194,126,168,32,140,252,194,48,176,10,162]},{"1080601":[160,64]},{"1080604":[92,104,223]},{"1080608":[162]},{"1080610":[192,160]},{"1080614":[169]},{"1080616":[8,139,84,127,177,171,162]},{"1080624":[8,169]},{"1080627":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,253,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,11,168,160,40,175,67,244,126,41,255]},{"1081469":[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,101,151,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]},{"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,90,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,107,235,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,175,145,164,194,16,34,203,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,200,145,164,34,52,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,70,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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]},{"1180922":[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]},{"1180981":[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]},{"1181009":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181025":[128,3,169]},{"1181030":[226,32,250,201]},{"1181035":[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]},{"1181072":[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]},{"1181099":[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]},{"1181131":[66,240,3,73]},{"1181136":[66,137]},{"1181139":[132,240,3,73]},{"1181144":[132,133]},{"1181147":[226,32,92,222,131]},{"1181153":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181176":[12,240,3,73]},{"1181181":[12,137]},{"1181184":[3,240,3,73]},{"1181189":[3,133]},{"1181192":[226,32,92,222,131]},{"1181198":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181221":[226,32,92,222,131]},{"1181227":[173,24,66,133]},{"1181232":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181253":[173,24,66,133]},{"1181258":[173,25,66,133,1,92,222,131]},{"1181267":[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,189]},{"1181305":[153]},{"1181308":[189,2]},{"1181311":[153,2]},{"1181314":[189,4]},{"1181317":[153,64]},{"1181320":[189,6]},{"1181323":[153,66]},{"1181326":[96,189]},{"1181330":[41,255,227,9]},{"1181335":[16,153]},{"1181339":[189,2]},{"1181342":[41,255,227,9]},{"1181347":[16,153,2]},{"1181351":[189,4]},{"1181354":[41,255,227,9]},{"1181359":[16,153,64]},{"1181363":[189,6]},{"1181366":[41,255,227,9]},{"1181371":[16,153,66]},{"1181375":[96,41,255]},{"1181379":[240,3,76,118,134,76,143,134,41,255]},{"1181390":[208,6,162,172,141,76,143,134,58,58,208,6,162,172,141,76,118,134,58,208,6,162,180,141,76,118,134,58,208,6,162,188,141,76,118,134,58,208,6,162,196,141,76,118,134,58,208,6,162,204,141,76,118,134,58,208,6,162,212,141,76,118,134,162,220,141,76,118,134,165,26,41,1]},{"1181464":[240,2,128,14,32,57,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181494":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181510":[5,112,9]},{"1181514":[28,141,142,17,24,105,16]},{"1181522":[141,206,17,175,2,5,112,9]},{"1181531":[28,141,144,17,24,105,16]},{"1181539":[141,208,17,175,4,5,112,9]},{"1181548":[28,141,146,17,24,105,16]},{"1181556":[141,210,17,175,6,5,112,9]},{"1181565":[28,141,148,17,24,105,16]},{"1181573":[141,212,17,175,8,5,112,9]},{"1181582":[28,141,78,18,24,105,16]},{"1181590":[141,142,18,175,10,5,112,9]},{"1181599":[28,141,80,18,24,105,16]},{"1181607":[141,144,18,175,12,5,112,9]},{"1181616":[28,141,82,18,24,105,16]},{"1181624":[141,146,18,175,14,5,112,9]},{"1181633":[28,141,84,18,24,105,16]},{"1181641":[141,148,18,32,228,141,175,142,3,112,41,64]},{"1181654":[240,31,175,64,3,112,41,255]},{"1181663":[240,11,162,44,140,160,220,16,32,118,134,128,40,162,60,140,160,220,16,32,118,134,128,29,175,64,3,112,41,255]},{"1181694":[240,11,162,36,140,160,220,16,32,118,134,128,9,162,36,140,160,220,16,32,143,134,175,140,3,112,41,192]},{"1181723":[201,192]},{"1181726":[208,11,162,84,140,160,224,16,32,118,134,128,49,175,140,3,112,41,64]},{"1181746":[240,11,162,76,140,160,224,16,32,118,134,128,29,175,140,3,112,41,128]},{"1181766":[240,11,162,68,140,160,224,16,32,118,134,128,9,162,68,140,160,224,16,32,143,134,162,92,140,160,228,16,175,66,3,112,32,192,134,175,140,3,112,41,16]},{"1181808":[240,11,162,52,141,160,236,16,32,118,134,128,9,162,52,141,160,236,16,32,143,134,175,140,3,112,41,8]},{"1181837":[240,11,162,44,141,160,232,16,32,118,134,128,9,162,44,141,160,232,16,32,143,134,175,140,3,112,41,3]},{"1181866":[240,11,162,180,140,160,228,17,32,118,134,128,9,162,180,140,160,228,17,32,143,134,175,140,3,112,41,4]},{"1181895":[240,11,162,172,140,160,92,18,32,118,134,128,9,162,172,140,160,92,18,32,143,134,162,108,140,160,92,17,175,69,3,112,32,192,134,162,116,140,160,96,17,175,70,3,112,32,192,134,162,124,140,160,100,17,175,71,3,112,32,192,134,162,132,140,160,104,17,175,72,3,112,32,192,134,162,140,140,160,108,17,175,73,3,112,32,192,134,162,148,140,160,220,17,175,74,3,112,32,192,134,162,156,140,160,224,17,175,75,3,112,32,192,134,162,164,140,160,232,17,175,77,3,112,32,192,134,162,188,140,160,236,17,175,78,3,112,32,192,134,162,196,140,160,96,18,175,80,3,112,32,192,134,162,204,140,160,100,18,175,81,3,112,32,192,134,162,212,140,160,104,18,175,82,3,112,32,192,134,162,220,140,160,108,18,175,83,3,112,32,192,134,160,242,16,175,92,3,112,32,203,134,160,114,17,175,93,3,112,32,203,134,160,242,17,175,94,3,112,32,203,134,160,114,18,175,95,3,112,32,203,134,175,89,3,112,41,255]},{"1182133":[208,11,162,60,141,160,248,16,32,143,134,128,65,58,208,11,162,60,141,160,248,16,32,118,134,128,51,58,208,11,162,68,141,160,248,16,32,118,134,128,37,58,208,11,162,76,141,160,248,16,32,118,134,128,23,58,208,11,162,84,141,160,248,16,32,118,134,128,9,162,60,141,160,248,16,32,143,134,175,90,3,112,41,255]},{"1182218":[208,11,162,92,141,160,120,17,32,143,134,128,37,58,208,11,162,92,141,160,120,17,32,118,134,128,23,58,208,11,162,100,141,160,120,17,32,118,134,128,9,162,108,141,160,120,17,32,118,134,175,91,3,112,41,255]},{"1182275":[208,11,162,116,141,160,248,17,32,118,134,128,23,58,208,11,162,124,141,160,248,17,32,118,134,128,9,162,132,141,160,248,17,32,118,134,175,107,3,112,41,255]},{"1182318":[208,11,162,140,141,160,120,18,32,118,134,128,37,58,208,11,162,148,141,160,120,18,32,118,134,128,23,58,208,11,162,156,141,160,120,18,32,118,134,128,9,162,164,141,160,120,18,32,118,134,175,72,4,112,41,255]},{"1182375":[34,249,151,160,175,6,80,127,41,255]},{"1182386":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182400":[24,105,16,30,141,250,18,162,236,140,160,252,16,175,85,3,112,32,192,134,175,84,3,112,41,255]},{"1182427":[208,11,162,28,141,160,124,17,32,143,134,128,23,58,208,11,162,28,141,160,124,17,32,118,134,128,9,162,36,141,160,124,17,32,118,134,162,228,140,160,252,17,175,86,3,112,32,192,134,162,244,140,160,124,18,175,87,3,112,32,192,134,175,116,3,112,41,4]},{"1182496":[240,11,162,4,141,160,28,19,32,118,134,128,9,162,252,140,160,28,19,32,118,134,175,116,3,112,41,2]},{"1182525":[240,11,162,12,141,160,32,19,32,118,134,128,9,162,252,140,160,32,19,32,118,134,175,116,3,112,41,1]},{"1182554":[240,11,162,20,141,160,36,19,32,118,134,128,9,162,252,140,160,36,19,32,118,134,175,122,3,112,41,2]},{"1182583":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182607":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182631":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182655":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182679":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182703":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182727":[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]},{"1182773":[10,186,10,185,6]},{"1182779":[10]},{"1182781":[10,20,10,19,6]},{"1182787":[10,5,14,6,14]},{"1182793":[30,22,14,5,6,6,6]},{"1182801":[30,22,6,182,14,182,6,182,142,182,134]},{"1182813":[6,21,6,48,6]},{"1182819":[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,249,151,160,175,4,80,127,41,255]},{"1183229":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183243":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183257":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183271":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183295":[34,249,151,160,175,6,80,127,41,255]},{"1183306":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183320":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183334":[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]},{"1183365":[34,249,151,160,175,6,80,127,41,255]},{"1183376":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183390":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183407":[4,169,136,1,157]},{"1183413":[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]},{"1183516":[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]},{"1183568":[141,2,20,165,16,41,255]},{"1183576":[201,1]},{"1183579":[208,107,175,135,128,48,41,255]},{"1183588":[201,2]},{"1183591":[208,95,8,226,48,218,90,34,77,178,164,122,250,40,41,255]},{"1183608":[208,78,169,110,29,141,142,19,24,105,16]},{"1183620":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183633":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183646":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183659":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183672":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183685":[141,216,19,226,32,107,34,171,142,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]},{"1183801":[189,4,16,9]},{"1183806":[32,157,4,16,202,202,208,243,162,60]},{"1183817":[189,68,16,9]},{"1183822":[32,157,68,16,202,202,208,243,162,60]},{"1183833":[189,132,16,9]},{"1183838":[32,157,132,16,202,202,208,243,162,60]},{"1183849":[189,196,16,9]},{"1183854":[32,157,196,16,202,202,208,243,162,60]},{"1183865":[189,4,17,9]},{"1183870":[32,157,4,17,202,202,208,243,162,60]},{"1183881":[189,68,17,9]},{"1183886":[32,157,68,17,202,202,208,243,162,60]},{"1183897":[189,132,17,9]},{"1183902":[32,157,132,17,202,202,208,243,162,60]},{"1183913":[189,196,17,9]},{"1183918":[32,157,196,17,202,202,208,243,162,60]},{"1183929":[189,4,18,9]},{"1183934":[32,157,4,18,202,202,208,243,162,60]},{"1183945":[189,68,18,9]},{"1183950":[32,157,68,18,202,202,208,243,162,60]},{"1183961":[189,132,18,9]},{"1183966":[32,157,132,18,202,202,208,243,162,60]},{"1183977":[189,196,18,9]},{"1183982":[32,157,196,18,202,202,208,243,162,60]},{"1183993":[189,4,19,9]},{"1183998":[32,157,4,19,202,202,208,243,162,60]},{"1184009":[189,68,19,9]},{"1184014":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184027":[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]},{"1184062":[67,169,24,141,1,67,169]},{"1184070":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184085":[141,2,67,169,208,141,3,67,173]},{"1184095":[33,72,169,128,141]},{"1184101":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184118":[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]},{"1184146":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,175,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184183":[128,51,159]},{"1184187":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184208":[28,141,206,16,24,105,16]},{"1184216":[141,14,17,175,219,3,112,9]},{"1184225":[28,141,208,16,24,105,16]},{"1184233":[141,16,17,175,221,3,112,9]},{"1184242":[28,141,210,16,24,105,16]},{"1184250":[141,18,17,175,223,3,112,9]},{"1184259":[28,141,212,16,24,105,16]},{"1184267":[141,20,17,175,108,3,112,41,255]},{"1184277":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184291":[153]},{"1184294":[200,200,202,208,8,72,152,24,105,44]},{"1184305":[168,104,198,2,208,236,32,57,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184329":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184351":[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]},{"1184390":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,77,178,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]},{"1184445":[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]},{"1184483":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184497":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,22,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184530":[141,18,11,107,110]},{"1184536":[111]},{"1184538":[112]},{"1184540":[113]},{"1184542":[115]},{"1184544":[116]},{"1184546":[117]},{"1184548":[118]},{"1184550":[120]},{"1184552":[121]},{"1184554":[122]},{"1184556":[123]},{"1184558":[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]},{"1184586":[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]},{"1184622":[143]},{"1184624":[81,127,200,200,183]},{"1184630":[143,2,81,127,200,200,183]},{"1184638":[143,4,81,127,200,200,183]},{"1184646":[143,6,81,127,169,2]},{"1184653":[133,4,34,47,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184681":[170,191]},{"1184684":[81,127,72,169]},{"1184690":[143]},{"1184692":[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]},{"1184754":[72,165,2,72,169,188,234,133]},{"1184763":[169,1]},{"1184766":[133,2,138,74,34,83,147,164,133,12,104,133,2,104,133]},{"1184782":[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]},{"1184814":[189,6,150,159]},{"1184819":[201,126,232,232,224,128,144,243,160]},{"1184829":[162]},{"1184831":[218,187,191,21,130,48,250,41,31]},{"1184841":[10,10,10,90,168,185,6,149,159,24,201,126,185,8,149,159,26,201,126,185,10,149,159,88,201,126,185,12,149,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,129,148,40,122,250,104,171,107,72,218,173]},{"1184901":[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]},{"1184931":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184952":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184975":[33,72,169,128,141]},{"1184981":[33,169,1,141,11,66,104,141]},{"1184990":[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]},{"1185018":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185043":[30,22,14]},{"1185047":[6,21,6,48,6]},{"1185053":[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]},{"1185423":[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]},{"1185499":[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]},{"1185596":[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]},{"1185653":[39,1,1,1,1,1,2,2,39,39,39]},{"1185669":[39,1,1,1,32,1,2,2,39,39,39]},{"1185685":[39,1,1,1,1,32,2,2,2,2,2]},{"1185701":[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]},{"1185745":[44]},{"1185747":[78,79,1,1,1,1,1,1,2,1,2]},{"1185759":[46]},{"1185763":[2,34,1,1,2]},{"1185771":[24,18,2,2]},{"1185776":[72]},{"1185781":[1,1,2]},{"1185785":[1,1,16,26,2]},{"1185792":[72]},{"1185797":[16,16,2]},{"1185801":[1,1,1,1]},{"1185807":[72]},{"1185810":[9]},{"1185813":[2,2,2]},{"1185817":[1,1,43]},{"1185822":[9]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185877":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185893":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185909":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185926":[2,2,2]},{"1185931":[2,2,2,2]},{"1185942":[2,2,2,2,41,2,2,2,2]},{"1185957":[1,1,1,1,1,1,1,1,1,1,1]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185987":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186005":[1,1,67,1,1,1,1,1,2,2,2]},{"1186021":[80,2,84,81,87,87,86,86,39,39,39]},{"1186033":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186049":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186065":[72,2,2]},{"1186069":[39,2,82,83,9,1,26,16,85,85]},{"1186081":[72,2,2]},{"1186085":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186107":[9,9,9,9,9,72,9,41]},{"1186116":[75,2,2,2]},{"1186121":[8,2,2]},{"1186128":[1]},{"1186131":[32]},{"1186133":[2,2,2,2,2,2,2]},{"1186142":[1,1,1,2]},{"1186147":[8]},{"1186149":[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]},{"1186249":[240,2,128,23,169,15,2,166,138,224,51]},{"1186261":[208,4,143,168,34,126,224,47]},{"1186270":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186284":[208,5,175,135,242,126,107,169,32]},{"1186294":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186317":[191,78,154,164,197,34,176,29,191,80,154,164,197,34,144,21,191,82,154,164,197,32,176,13,191,84,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186359":[201,184]},{"1186362":[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]},{"1186393":[10]},{"1186395":[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]},{"1186425":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186448":[143]},{"1186450":[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]},{"1186481":[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]},{"1186524":[112]},{"1186526":[240,14,48,15,32,1,96,1,208,10]},{"1186537":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186556":[64]},{"1186558":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186572":[201,5]},{"1186575":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186591":[208,18,173,10,4,41,255]},{"1186599":[201,67]},{"1186602":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186618":[208,25,173,10,4,41,255]},{"1186626":[201,91]},{"1186629":[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]},{"1186665":[176,5,10,170,252,122,155,171,194,48,162,30]},{"1186678":[169,190,13,107,122,156,122,156,122,156,123,156,122,156,166,156,122,156,160,157,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,239,157,122,156,122,156,122,156,246,157,122,156,122,156,122,156,122,156,122,156,122,156,21,158,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,175,160,122,156,122,156,122,156,122,156,122,156,122,156,203,160,122,156,141,164,16,167,122,156,23,167,122,156,122,156,122,156,122,156,78,167,122,156,35,164,122,156,122,156,122,156,122,156,122,156,122,156,196,167,122,156,59,168,122,156,25,168,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,66,168,122,156,122,156,122,156,73,168,122,156,122,156,122,156,122,156,122,156,122,156,101,168,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,55,170,69,170,122,156,122,156,62,170,122,156,76,170,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186954":[141,186,41,169,4,1,141,188,41,169,198]},{"1186966":[141,52,42,141,56,42,141,58,42,169,52]},{"1186978":[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]},{"1187081":[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]},{"1187228":[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]},{"1187307":[141,38,40,96,169,52]},{"1187314":[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]},{"1187427":[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]},{"1187463":[141,40,44,141,174,47,169,52]},{"1187472":[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]},{"1187511":[141,54,44,141,168,47,169,174]},{"1187520":[141,172,44,169,175]},{"1187526":[141,174,44,169,126]},{"1187532":[141,176,44,169,127]},{"1187538":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187556":[141,44,45,169,20]},{"1187562":[141,46,45,169,21]},{"1187568":[141,48,45,169,168]},{"1187574":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187592":[141,172,45,169,28]},{"1187598":[141,174,45,169,29]},{"1187604":[141,176,45,169,118]},{"1187610":[141,178,45,169,241]},{"1187616":[141,44,46,169,78]},{"1187622":[141,46,46,169,79]},{"1187628":[141,48,46,169,217]},{"1187634":[141,50,46,169,154]},{"1187640":[141,172,46,169,155]},{"1187646":[141,174,46,169,156]},{"1187652":[141,176,46,169,149]},{"1187658":[141,178,46,169,52]},{"1187664":[141,40,48,141,44,48,169,53]},{"1187673":[141,42,48,141,50,48,169,218]},{"1187682":[141,46,48,169,226]},{"1187688":[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]},{"1187769":[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]},{"1187853":[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]},{"1187910":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187926":[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]},{"1188018":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188039":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188055":[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]},{"1188097":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188118":[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]},{"1188184":[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]},{"1188214":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188232":[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]},{"1188259":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188280":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188298":[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]},{"1188367":[141,226,34,169,2,3,141,228,34,169,204]},{"1188379":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188403":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188424":[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]},{"1188466":[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]},{"1188499":[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]},{"1188594":[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]},{"1188727":[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]},{"1188820":[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]},{"1188895":[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]},{"1189029":[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]},{"1189074":[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]},{"1189392":[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]},{"1189437":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189455":[141,134,41,169,229]},{"1189461":[141,136,41,169]},{"1189466":[1,141,162,41,169,113]},{"1189473":[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]},{"1189518":[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]},{"1189554":[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]},{"1189581":[141,26,44,169,206]},{"1189587":[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]},{"1189651":[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]},{"1189706":[141,86,47,96,169,116,7,141]},{"1189715":[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]},{"1189757":[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]},{"1189973":[141,162,36,141,164,36,169,227]},{"1189982":[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]},{"1190109":[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]},{"1190139":[141,30,50,169,218]},{"1190145":[141,32,50,141,154,50,169,225]},{"1190154":[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]},{"1190199":[141,26,50,169,242]},{"1190205":[141,184,59,169,8,1,141,56,60,169,52]},{"1190217":[141,190,59,175,197,243,126,41,255]},{"1190227":[201,3]},{"1190230":[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]},{"1190373":[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,155,173,194,32,166,6,138,9]},{"1190604":[36,143,90,199,126,166,7,138,9]},{"1190614":[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,57,173,166,4,138,9]},{"1190647":[36,143,80,199,126,166,5,138,9]},{"1190657":[36,143,82,199,126,166,6,138,9]},{"1190667":[36,143,84,199,126,166,7,138,9]},{"1190677":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,155,173,194,32,166,6,138,9]},{"1190710":[36,143,96,199,126,166,7,138,9]},{"1190720":[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]},{"1190752":[175,24,244,126,32,116,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190774":[36,143,44,199,126,166,6,138,9]},{"1190784":[36,143,46,199,126,166,7,138,9]},{"1190794":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,116,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190830":[36,143,52,199,126,166,6,138,9]},{"1190840":[36,143,54,199,126,166,7,138,9]},{"1190850":[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]},{"1190883":[240,4,34,181,173,164,226,32,175,111,243,126,201,255,240,34,32,155,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190914":[9]},{"1190916":[36,143,100,199,126,166,7,138,9]},{"1190926":[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]},{"1190957":[24,105,7]},{"1190961":[41,248,255,170,175,202,80,127,41,255]},{"1190972":[208,3,130,215]},{"1190977":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190990":[165,26,41,12]},{"1190995":[74,74,240,58,201,1]},{"1191002":[240,98,201,2]},{"1191007":[208,3,130,180]},{"1191012":[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]},{"1191245":[144,6,200,233,100]},{"1191251":[128,245,132,5,160,144,201,10]},{"1191260":[144,6,200,233,10]},{"1191266":[128,245,132,6,160,144,201,1]},{"1191275":[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]},{"1191365":[240,11,175,100,243,126,63,246,173,164,208,1,107,124,18,174,32,155,173,194,32,166,6,138,9]},{"1191391":[36,143,148,199,126,166,7,138,9]},{"1191401":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191415":[128]},{"1191417":[64]},{"1191419":[32]},{"1191421":[16]},{"1191423":[8]},{"1191425":[4]},{"1191427":[2]},{"1191429":[1,128]},{"1191432":[64]},{"1191434":[32]},{"1191436":[16]},{"1191438":[8]},{"1191440":[4]},{"1191442":[46,174,46,174,73,174,98,174,126,174,151,174,176,174,201,174,226,174,253,174,24,175,51,175,76,175,103,175,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,213,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,213,173,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,213,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,213,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,213,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,213,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,213,173,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,213,173,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,213,173,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,213,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,213,173,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,213,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,213,173,107,159]},{"1191812":[4,112,159]},{"1191816":[5,112,159]},{"1191820":[6,112,159]},{"1191824":[7,112,159]},{"1191828":[8,112,159]},{"1191832":[9,112,159]},{"1191836":[10,112,159]},{"1191840":[11,112,159]},{"1191844":[12,112,159]},{"1191848":[13,112,159]},{"1191852":[14,112,159]},{"1191856":[15,112,107,159]},{"1191861":[244,126,159]},{"1191865":[101,127,159]},{"1191869":[102,127,159]},{"1191873":[103,127,159]},{"1191877":[104,127,159]},{"1191881":[105,127,159]},{"1191885":[106,127,159]},{"1191889":[107,127,159]},{"1191893":[108,127,159]},{"1191897":[109,127,159]},{"1191901":[110,127,159]},{"1191905":[111,127,107,72,226,48,173]},{"1191913":[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]},{"1191941":[141]},{"1191943":[67,169,128,141,1,67,169]},{"1191951":[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]},{"1191979":[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]},{"1192019":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192034":[72,171,173]},{"1192038":[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]},{"1192068":[67,141,1,67,169]},{"1192074":[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]},{"1192102":[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]},{"1192142":[67,194,48,171,104,162]},{"1192150":[138,107,165,17,34,156,135]},{"1192158":[237,176,164,5,177,164,36,177,164,37,178,164,59,178,164,169,128,141,16,7,34,61,137]},{"1192182":[34,51,131]},{"1192186":[34,175,145,164,169,7,133,20,230,17,107,32,68,179,100,200,100,201,34,77,178,164,208,11,162,15,169]},{"1192214":[159]},{"1192216":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,180,179,165,246,41,16,240,3,32]},{"1192242":[181,165,246,41,32,240,3,32,13,181,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,1,178,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,13,181,128,52,201,242,208,5,32]},{"1192383":[181,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192407":[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,178,180,32,103,180,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,77,178,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]},{"1192531":[16,112,208,3,130,161]},{"1192538":[202,16,244,194,32,162,14,169]},{"1192548":[159,208,80,127,202,202,16,248,32]},{"1192558":[179,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]},{"1192589":[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]},{"1192618":[133,4,34,47,178,160,226,32,175]},{"1192628":[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]},{"1192703":[107,169]},{"1192707":[133]},{"1192709":[133,2,169,11]},{"1192714":[133,4,166]},{"1192718":[191]},{"1192720":[16,112,58,41,31]},{"1192726":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192751":[16,6,24,105,8]},{"1192757":[230,2,133,4,165]},{"1192763":[26,133]},{"1192766":[201,16]},{"1192769":[144,201,96,173]},{"1192774":[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]},{"1192802":[141]},{"1192804":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,220,141,2,67,169,182,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]},{"1192882":[67,96,194,32,165,200,41,255]},{"1192891":[10,170,191,255,179,164,24,105,132,96,235,143,2,17]},{"1192906":[165,201,41,255]},{"1192911":[10,170,191,31,180,164,24,105,163,97,235,143,18,17]},{"1192926":[235,24,105,32]},{"1192931":[235,143,30,17]},{"1192936":[235,24,105,3]},{"1192941":[235,143,38,17]},{"1192946":[235,24,105,61]},{"1192951":[235,143,46,17]},{"1192956":[226,32,96,64]},{"1192961":[67]},{"1192963":[70]},{"1192965":[73]},{"1192967":[76]},{"1192969":[79]},{"1192971":[82]},{"1192973":[85]},{"1192975":[160]},{"1192977":[163]},{"1192979":[166]},{"1192981":[169]},{"1192983":[172]},{"1192985":[175]},{"1192987":[178]},{"1192989":[181]},{"1192991":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193011":[66]},{"1193013":[69]},{"1193015":[72]},{"1193017":[75]},{"1193019":[78]},{"1193021":[81]},{"1193023":[84]},{"1193025":[87]},{"1193027":[159]},{"1193029":[162]},{"1193031":[165]},{"1193033":[168]},{"1193035":[171]},{"1193037":[174]},{"1193039":[177]},{"1193041":[180]},{"1193043":[183]},{"1193045":[255]},{"1193047":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193070":[10,170,191,255,179,164,24,105,132,96,235,143,10,17]},{"1193085":[165,201,41,255]},{"1193090":[10,170,191,31,180,164,24,105,163,97,235,143,58,17]},{"1193105":[235,24,105,32]},{"1193110":[235,143,70,17]},{"1193115":[235,24,105,3]},{"1193120":[235,143,78,17]},{"1193125":[235,24,105,61]},{"1193130":[235,143,86,17]},{"1193135":[226,32,96,194,48,162,15]},{"1193143":[191]},{"1193145":[16,112,41,255]},{"1193150":[155,10,10,10,133]},{"1193156":[152,10,10,10,10,133,3,166]},{"1193165":[191,254,148,164,166,3,157,6,16,166]},{"1193176":[191]},{"1193178":[149,164,166,3,157,8,16,166]},{"1193187":[191,2,149,164,166,3,157,14,16,166]},{"1193198":[191,4,149,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]},{"1193245":[51,1,10,2,10]},{"1193251":[2,5,14,6,14]},{"1193257":[2]},{"1193259":[6,21,6]},{"1193263":[2,12,14,13,14]},{"1193269":[2,98,6,99,6]},{"1193275":[2,10,2,11,2]},{"1193281":[2,32,14,33,14]},{"1193287":[2,133,26,134,26]},{"1193293":[2,171,30,171,30,97,195]},{"1193301":[51,17,10,18,10]},{"1193307":[2]},{"1193309":[30,22,14]},{"1193313":[2,48,6]},{"1193317":[30]},{"1193319":[2,28,14,28,78]},{"1193325":[2,114,6,115,6]},{"1193331":[2,26,2,27,2]},{"1193337":[2,48,14,49,14]},{"1193343":[2,149,26,150,26]},{"1193349":[2,171,30,171,30,98,3]},{"1193357":[51,7,10,23,202]},{"1193363":[2,8,10,24,202]},{"1193369":[2,9,10,25,202]},{"1193375":[2,44,6,44,70]},{"1193381":[2,34,2,35,2]},{"1193387":[2,36,2,37,2]},{"1193393":[2,38,14,39,14]},{"1193399":[2,40,10,41,10]},{"1193405":[2,138,29]},{"1193409":[2,98,35]},{"1193413":[51,23,10,7,202]},{"1193419":[2,24,10,8,202]},{"1193425":[2,25,10,9,202]},{"1193431":[2,60,6,61,6]},{"1193437":[2,50,2,51,2]},{"1193443":[2,52,2,53,2]},{"1193449":[2,54,14,55,14]},{"1193455":[2,56,10,57,10]},{"1193461":[2,154,29]},{"1193465":[2,98,99]},{"1193469":[51,42,26,43,26]},{"1193475":[2,64,30,65,30]},{"1193481":[2,66,26,66,90]},{"1193487":[2,29,6,30,6]},{"1193493":[2,72,6,73,6]},{"1193499":[2,74,14,75,14]},{"1193505":[2,76,22,77,22]},{"1193511":[2,78,2,79,2]},{"1193517":[2]},{"1193519":[2,139,29,98,131]},{"1193525":[51,58,26,59,26]},{"1193531":[2,80,30,81,30]},{"1193537":[2,82,26,83,26]},{"1193543":[2,45,6,46,6]},{"1193549":[2,88,6,89,6]},{"1193555":[2,90,14,91,14]},{"1193561":[2,92,22,93,22]},{"1193567":[2,94,2,95,2]},{"1193573":[2]},{"1193575":[2,155,29,98,195]},{"1193581":[51,14,14,15,14]},{"1193587":[2,100,6,101,6]},{"1193593":[2,109,10,110,10]},{"1193599":[2,111,26,111,90]},{"1193605":[2,129,6,129,70]},{"1193611":[2,130,10,131,10]},{"1193617":[2,132,6,132,70]},{"1193623":[2,47,74,47,10]},{"1193629":[2,103,94,103,30,98,227]},{"1193637":[51,31,78,31,14]},{"1193643":[2,116,6,117,6]},{"1193649":[2,125,10,126,10]},{"1193655":[2,127,26,127,90]},{"1193661":[2,145,6,145,70]},{"1193667":[2,146,10,147,10]},{"1193673":[2,148,6,148,70]},{"1193679":[2,62,10,63,10]},{"1193685":[2,103,222,103,158,255,255,96,132]},{"1193695":[3,134,29,134,29,96,164]},{"1193703":[3,150,29,150,29,96,135]},{"1193711":[3,134,29,134,29,96,167]},{"1193719":[3,150,29,150,29,96,138]},{"1193727":[3,134,29,134,29,96,170]},{"1193735":[3,150,29,150,29,96,141]},{"1193743":[3,134,29,134,29,96,173]},{"1193751":[3,150,29,150,29,96,144]},{"1193759":[3,134,29,134,29,96,176]},{"1193767":[3,150,29,150,29,96,147]},{"1193775":[3,134,29,134,29,96,179]},{"1193783":[3,150,29,150,29,96,150]},{"1193791":[3,134,29,134,29,96,182]},{"1193799":[3,150,29,150,29,96,153]},{"1193807":[3,134,29,134,29,96,185]},{"1193815":[3,150,29,150,29,96,228]},{"1193823":[3,134,29,134,29,97,4]},{"1193831":[3,150,29,150,29,96,231]},{"1193839":[3,134,29,134,29,97,7]},{"1193847":[3,150,29,150,29,96,234]},{"1193855":[3,134,29,134,29,97,10]},{"1193863":[3,150,29,150,29,96,237]},{"1193871":[3,134,29,134,29,97,13]},{"1193879":[3,150,29,150,29,96,240]},{"1193887":[3,134,29,134,29,97,16]},{"1193895":[3,150,29,150,29,96,243]},{"1193903":[3,134,29,134,29,97,19]},{"1193911":[3,150,29,150,29,96,246]},{"1193919":[3,134,29,134,29,97,22]},{"1193927":[3,150,29,150,29,96,249]},{"1193935":[3,134,29,134,29,97,25]},{"1193943":[3,150,29,150,29,96,196]},{"1193951":[3]},{"1193953":[2]},{"1193955":[2,96,196]},{"1193959":[3,103,222,103,158,97,130]},{"1193967":[7]},{"1193969":[2]},{"1193971":[2]},{"1193973":[2]},{"1193975":[2,97,162,128,3]},{"1193981":[2]},{"1193983":[2,97,165,128,3]},{"1193989":[2]},{"1193991":[2,97,226]},{"1193995":[7]},{"1193997":[2]},{"1193999":[2]},{"1194001":[2]},{"1194003":[2,97,130]},{"1194007":[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]},{"1194035":[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]},{"1194074":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194130":[83,127,201,3,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,197,185,164,226,48,169]},{"1194168":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194226":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194284":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,80,185,34,231,244,30,32,144,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,112,133,8,169,185,105]},{"1194341":[133,9,34,117,223,5,34,92,220,6,96]},{"1194354":[247,255,198]},{"1194359":[2]},{"1194364":[200]},{"1194367":[2]},{"1194370":[248,255,198]},{"1194375":[2]},{"1194380":[202,64]},{"1194383":[2,175,103,129,48,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,235,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194441":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194467":[98,41,110,41,107,41,105,41,127]},{"1194477":[111,41,97,41,106,41,112,41,127]},{"1194487":[112,41,107,41,127]},{"1194493":[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]},{"1194540":[33,218,162,128,142]},{"1194546":[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]},{"1194574":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194591":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194682":[208,33,8,194,48,162]},{"1194690":[224,64]},{"1194693":[176,11,169,127]},{"1194698":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194721":[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]},{"1194768":[240,7,224,2,240,3,130,137]},{"1194777":[130,132]},{"1194780":[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]},{"1194926":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194943":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194959":[224,28]},{"1194962":[176,12,191,209,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194979":[175,211,244,126,41,255]},{"1194986":[58,201,64]},{"1194990":[176,63,10,10,10,10,10,170,192,60]},{"1195001":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195024":[176,11,169,127]},{"1195029":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,174,184,160,122,218,90,8,194,48,162]},{"1195185":[224,16]},{"1195188":[176,12,191,237,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195205":[175,152,192,126,41,255]},{"1195212":[58,201,64]},{"1195216":[176,63,10,10,10,10,10,170,192,48]},{"1195227":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195250":[176,11,169,127]},{"1195255":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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/base2current_extendedmsu.json b/data/base2current_extendedmsu.json index ebf023ba..821e91da 100644 --- a/data/base2current_extendedmsu.json +++ b/data/base2current_extendedmsu.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[176]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,193,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,146,133,164]},{"2027":[128,50]},{"2379":[34,214,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,52,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[242]},{"5002":[183]},{"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,122,199,160]},{"21847":[34,82,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,235,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,126,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[110,163,160]},{"30994":[240,163,160]},{"31001":[110,163,160]},{"31011":[240,163,160]},{"31046":[244,187,164]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[219,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,23,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,120,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,158,150,164,234]},{"60423":[34,17,194,164]},{"60790":[247,188,164]},{"61077":[28,181,160]},{"61133":[34,108,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,16,239,160]},{"65607":[28,238,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,87,194,160,234]},{"65894":[34,133,194,160]},{"66284":[34,168,194,160]},{"66292":[92,68,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,18,241,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,136,189,164,234,234]},{"67934":[139,248,160]},{"68474":[34,135,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[143,248,160]},{"69737":[34,221,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[143,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,61,246,160,234]},{"72216":[173,187,164]},{"72241":[34,133,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[19,238,160]},{"73340":[34,241,128,160,234]},{"73937":[34,149,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,21,239,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,4,248,160,234]},{"78138":[205,246,160]},{"78172":[34,35,189,164,34,219,153,160,234,234]},{"79603":[34,225,187,164]},{"79767":[34,151,189,164]},{"82376":[234,234]},{"82676":[143,248,160]},{"87784":[234,234,234]},{"87892":[34,26,246,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,79,240,160]},{"90651":[34,115,237,160,234,234]},{"93230":[34,222,157,164,234,234]},{"93325":[34,154,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,222,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,189,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[91,194,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[95,181,160]},{"173058":[95,181,160]},{"173307":[95,181,160]},{"173320":[95,181,160]},{"183384":[34,250,247,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188235":[237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,158,236,160,128,13]},{"189655":[34,12,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[34,194,164]},{"191439":[34,41,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,61,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,81,195,160,234]},{"192121":[169,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,10,179,160]},{"193157":[34,3,179,160]},{"193440":[34,240,219,160]},{"193472":[51,236,160]},{"193546":[34,240,219,160]},{"193578":[251,235,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[209,194,160]},{"194141":[34,193,195,160,234,234,234,234,234]},{"194177":[34,39,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,158,236,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,39,199,160]},{"195589":[89,176,160]},{"195710":[34,117,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[50,176,160]},{"195909":[60,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[168,192,160]},{"198721":[34,210,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,22,187,164]},{"198942":[34,61,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,8,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[243,175,160]},{"199993":[34,70,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,173,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,36,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[53,194,164]},{"212610":[72,194,164]},{"213139":[11,191,164]},{"213169":[147,133,160]},{"214205":[34,168,180,160]},{"214972":[58,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,68,188,164]},{"217579":[34,74,193,160]},{"224597":[34,240,218,160]},{"224693":[34,4,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,18,220,160,234]},{"226304":[34,69,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,243,238,160]},{"229634":[34,101,192,164]},{"230816":[40,179,160]},{"230955":[40,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,252,238,160,234]},{"233987":[74,187,164]},{"234731":[34,167,187,164]},{"234747":[34,7,239,160]},{"235953":[34,35,133,160,144,3]},{"236024":[200,204,160]},{"236047":[42,193,160]},{"236578":[34,67,134,164]},{"237653":[34,92,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,240,132,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[249,197,160]},{"238498":[34,130,196,160,128,3]},{"238562":[34,197,198,160,240,4,234]},{"238751":[34,134,220,160]},{"238964":[34,134,220,160]},{"239190":[34,134,220,160]},{"239964":[61,189,164]},{"240044":[92,207,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,102,219,160]},{"241165":[34,102,219,160]},{"241175":[34,235,128,164]},{"241294":[34,102,219,160]},{"241304":[34,235,128,164]},{"241814":[34,102,219,160,24,125,139,176]},{"241869":[152,236,160]},{"241877":[34,102,219,160,24,125,139,176]},{"242942":[34,12,237,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,188,188,164,234]},{"243067":[234,234,34,181,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,132,219,160,234]},{"250478":[34,186,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,13,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,17,242,160,234]},{"273608":[34,164,182,160,76,230,172]},{"275716":[34,136,182,160,234]},{"276202":[34,197,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,115,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,86,239,160,234,234]},{"279880":[92,250,194,164]},{"280037":[34,44,235,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[152,236,160]},{"280106":[92,198,226,160,234]},{"280265":[168,210,160]},{"280287":[168,209,160]},{"280314":[168,210,160]},{"280335":[34,196,179,160]},{"282028":[34,82,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,68,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,102,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,201,200,160,234]},{"296453":[92,110,194,164,234]},{"296466":[168,211]},{"296471":[169,211]},{"296480":[168,213]},{"296488":[168,211]},{"296493":[169,211]},{"296502":[168,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[168,214]},{"296810":[184,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[216,206]},{"297052":[200,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,96,226,160,234]},{"297144":[168,209]},{"297200":[216,206]},{"297225":[200,207]},{"297263":[169,215]},{"297292":[34,20,195,160]},{"297309":[176,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,12,195,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,8,224,160]},{"324619":[34,11,153,160]},{"324675":[34,166,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,100,237,160,34,142,188,164,234,234,234,234,234,234]},{"324996":[34,149,194,160]},{"325098":[169,2,0,234]},{"325131":[34,148,237,160]},{"325203":[34,139,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":[44,239,160]},{"342245":[34,59,132,160,34,15,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,125,247,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,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[219,187,164]},{"409856":[34,25,227,160]},{"410028":[94,255,161]},{"410347":[34,139,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[233,238,160]},{"412876":[92,89,178,164]},{"413015":[107]},{"413094":[110,148,164]},{"413109":[34,64,237,160]},{"413141":[34,126,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,19,149,164,234,234,234,234]},{"413264":[34,58,149,164,234,234,234,234,234,234]},{"413297":[92,97,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,188,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,126,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,90,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,235,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,90,178,164]},{"415678":[34,147,149,164]},{"416378":[6,150,164]},{"416491":[34,221,149,164,234]},{"416529":[34,184,149,164]},{"416588":[234,234,234,234]},{"416912":[34,212,149,164]},{"416937":[34,198,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":[69,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,94,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,106,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,136,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,85,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,23,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,106,155,160]},{"450360":[34,224,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,76,184,160,234]},{"450492":[34,74,155,160,234,234,234]},{"450861":[34,98,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,221,155,160,234]},{"452559":[34,203,155,160,234]},{"452581":[34,239,155,160,234]},{"452634":[96]},{"453064":[34,10,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,98,193,160,234,234,76,230,236]},{"453867":[34,1,156,160,234]},{"453892":[34,19,156,160]},{"454092":[34,124,155,160,234,234,234,234,234]},{"454233":[34,124,155,160,234,234,234,234,234]},{"454256":[34,202,194,160,234]},{"454282":[34,124,155,160,234,234,234,234,234]},{"454459":[34,124,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,209,216,160]},{"457513":[34,247,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,40,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,84,237,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,42,227,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[36,235,160]},{"487403":[169,2,0,234]},{"487935":[34,82,227,160]},{"488156":[34,82,227,160]},{"488213":[34,82,227,160]},{"488242":[34,82,227,160]},{"488309":[34,82,227,160]},{"488340":[34,82,227,160]},{"488721":[34,82,227,160]},{"489560":[34,82,227,160]},{"490022":[34,82,227,160]},{"490060":[34,82,227,160]},{"490164":[34,82,227,160]},{"490184":[34,82,227,160]},{"490209":[34,82,227,160]},{"490257":[34,82,227,160]},{"490438":[34,98,227,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,140,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,80,241,160]},{"900244":[34,164,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,155,241,160,234]},{"900437":[92,53,240,160,234]},{"900447":[34,12,246,160,234,234,234]},{"900458":[34,225,187,164]},{"901799":[34,94,153,164,107,32,222,201,107]},{"903876":[34,221,241,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,138,235,160,96]},{"954852":[187,181,160]},{"955117":[105,235,160]},{"955529":[183,181,160]},{"962925":[148,181,160]},{"962951":[148,181,160]},{"963167":[148,181,160]},{"963214":[148,181,160]},{"965041":[148,181,160]},{"965069":[148,181,160]},{"965214":[148,181,160]},{"965298":[148,181,160]},{"965316":[148,181,160]},{"967797":[34,252,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,22,180,160]},{"972824":[99,181,160]},{"972834":[99,181,160]},{"972851":[99,181,160]},{"974665":[92,149,197,160,234]},{"974706":[210,197,160]},{"974722":[183,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,166,197,160,234,234]},{"975332":[34,132,197,160,234,234]},{"975401":[255]},{"976357":[144,181,160]},{"976423":[144,181,160]},{"978658":[128,181,160]},{"979078":[34,4,220,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":[4,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,96,196,160]},{"983466":[128,181,160]},{"983651":[128,181,160]},{"988539":[140,181,160]},{"988657":[140,181,160]},{"988668":[140,181,160]},{"988874":[140,181,160]},{"988902":[140,181,160]},{"989142":[140,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[132,181,160]},{"999246":[136,181,160]},{"999265":[136,181,160]},{"999359":[136,181,160]},{"999574":[136,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,90,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[103,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[103,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,166,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,122,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,141,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,121,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,112,179,160,122,250,107,218,90,34,168,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,43,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,43,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,43,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,43,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,43,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,43,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,43,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,43,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,43,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,43,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,43,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,43,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,43,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,43,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,43,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,43,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,43,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,43,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,43,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,43,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,43,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,43,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,43,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,43,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,43,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,43,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,170,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,98,217,160,76,49,145,201,251,208,7,34,30,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,170,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,98,217,160,76,114,147,201,251,208,7,34,30,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,170,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,98,217,160,128,8,201,99,208,4,34,30,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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]},{"1055520":[240,5,169,8]},{"1055525":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055538":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055560":[2,107,175,19,130,48,41,255]},{"1055569":[240,5,169,8]},{"1055574":[128,7,175,72,128,48,41,255]},{"1055583":[24,101,234,48,3,169]},{"1055591":[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]},{"1055618":[201,255]},{"1055621":[208,1,107,175,22,244,126,41,32]},{"1055631":[240,4,169]},{"1055636":[107,173,12,4,41,255]},{"1055643":[201,255]},{"1055646":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055670":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,81,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055702":[107,169,136,21,133]},{"1055708":[107,175,69,128,48,208,6,169,16,22,133]},{"1055720":[107,169,144,21,133]},{"1055726":[107,175,69,128,48,208,6,169,24,22,133]},{"1055738":[107,169,152,21,133]},{"1055744":[107,175,69,128,48,208,6,169,32,22,133]},{"1055756":[107,169,160,21,133]},{"1055762":[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]},{"1055854":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055868":[144,240,175,22,244,126,41,32]},{"1055877":[240,3,130,200,1,175,69,128,48,41,1]},{"1055889":[208,3,130,231]},{"1055894":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055916":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055933":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055950":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055967":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055984":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056001":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056018":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056035":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056052":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056069":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056086":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056103":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056120":[141,165,22,194,32,175,69,128,48,41,2]},{"1056132":[208,3,130,201]},{"1056137":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056150":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056165":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056180":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056195":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056210":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056225":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056240":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056255":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056270":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056285":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056300":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056315":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056330":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056345":[208,3,130,170,1,175,69,128,48,41,4]},{"1056357":[208,3,130,201]},{"1056362":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056375":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056390":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056405":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056420":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056435":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056450":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056465":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056480":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056495":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056510":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056525":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056540":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056555":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056570":[208,3,130,201]},{"1056575":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056588":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056603":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056618":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056633":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056648":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056663":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056678":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056693":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056708":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056723":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056738":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056753":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056768":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056787":[191,82,161,160,157,234,18,191,102,161,160,157,42,19,191,122,161,160,157,106,19,191,142,161,160,157,170,19,191,162,161,160,157,234,19,191,182,161,160,157,42,20,191,202,161,160,157,106,20,191,222,161,160,157,170,20,191,242,161,160,157,234,20,232,232,224,20]},{"1056855":[144,186,175,116,243,126,41,4]},{"1056864":[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]},{"1056897":[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]},{"1056930":[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]},{"1056963":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056984":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057005":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057026":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057047":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057068":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057089":[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]},{"1057712":[143,114,243,126,173,10,2,208,14,169]},{"1057723":[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]},{"1057757":[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]},{"1057838":[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]},{"1057881":[165,12,201,232,3,144,3,130,24]},{"1057891":[201,100]},{"1057894":[144,3,130,97]},{"1057899":[201,10]},{"1057902":[144,3,130,170]},{"1057907":[201,1]},{"1057910":[144,3,130,243]},{"1057915":[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]},{"1057945":[166,133,14,165,14,159]},{"1057952":[201,126,232,232,169,56]},{"1057959":[159]},{"1057961":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1057975":[201,126,232,232,169]},{"1057982":[159]},{"1057984":[201,126,232,232,165,14,24,105,8]},{"1057994":[133,14,100,10,165,12,201,100]},{"1058003":[144,8,56,233,100]},{"1058009":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121]},{"1058026":[166,133,14,165,14,159]},{"1058033":[201,126,232,232,169,56]},{"1058040":[159]},{"1058042":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058056":[201,126,232,232,169]},{"1058063":[159]},{"1058065":[201,126,232,232,165,14,24,105,8]},{"1058075":[133,14,100,10,165,12,201,10]},{"1058084":[144,8,56,233,10]},{"1058090":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121]},{"1058107":[166,133,14,165,14,159]},{"1058114":[201,126,232,232,169,56]},{"1058121":[159]},{"1058123":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058137":[201,126,232,232,169]},{"1058144":[159]},{"1058146":[201,126,232,232,165,14,24,105,8]},{"1058156":[133,14,100,10,165,12,201,1]},{"1058165":[144,8,56,233,1]},{"1058171":[230,10,128,243,133,12,192,255,208,10,160]},{"1058183":[165,14,24,121]},{"1058188":[166,133,14,165,14,159]},{"1058195":[201,126,232,232,169,56]},{"1058202":[159]},{"1058204":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058218":[201,126,232,232,169]},{"1058225":[159]},{"1058227":[201,126,232,232,165,14,24,105,8]},{"1058237":[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]},{"1058308":[252,255,248,255,218,90,8,194,48,162]},{"1058320":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058335":[208,13,175,153,80,127,41,255]},{"1058344":[223,3,200,48,208,44,226,32,191]},{"1058354":[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]},{"1058396":[200,48,41,255]},{"1058401":[201,255]},{"1058404":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058427":[226,32,162]},{"1058432":[160]},{"1058435":[152,207,96,80,127,144,3,130,172]},{"1058445":[191,1,201,48,201,255,208,3,130,161]},{"1058456":[191]},{"1058458":[201,48,207,80,80,127,240,3,130,137]},{"1058469":[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]},{"1058506":[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,180,167,160,170,32,211,167,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]},{"1058637":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058651":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,14,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,15,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,16,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]},{"1058744":[128]},{"1058749":[1]},{"1058752":[169,234,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,49,145,160,34,45,213]},{"1058791":[194,16,96,32,238,167,107,173]},{"1058800":[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]},{"1058830":[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]},{"1058867":[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]},{"1059008":[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]},{"1059173":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059194":[175,81,80,127,201,255,208,3,76,103,169,139,75,171,34,231,244,30,32,181,169,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]},{"1059245":[32,210,173,32,210,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059268":[201,2,208,3,130,227]},{"1059275":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059290":[165,26,41,16,240,12,189,73,170,159]},{"1059301":[201,126,232,224,16,144,244,189,89,170,159]},{"1059313":[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]},{"1059372":[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]},{"1059403":[248,255]},{"1059408":[2]},{"1059413":[16]},{"1059416":[2]},{"1059419":[248,255]},{"1059424":[2]},{"1059429":[16,64]},{"1059432":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,158,133,8,169,170,133,9,128,8,169,166,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059490":[70,10]},{"1059493":[2]},{"1059498":[70,74]},{"1059501":[2,218,162]},{"1059505":[165,26,41,64,240,12,189,32,171,159]},{"1059516":[201,126,232,224,16,144,244,189,48,171,159]},{"1059528":[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]},{"1059587":[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]},{"1059618":[248,255,132]},{"1059623":[2]},{"1059628":[16]},{"1059631":[2]},{"1059634":[248,255,132]},{"1059639":[2]},{"1059644":[16,64]},{"1059647":[2,218,162]},{"1059651":[165,26,41,64,240,12,189,178,171,159]},{"1059662":[201,126,232,224,16,144,244,189,194,171,159]},{"1059674":[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]},{"1059733":[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]},{"1059764":[248,255,142]},{"1059769":[2]},{"1059774":[16]},{"1059777":[2]},{"1059780":[248,255,142]},{"1059785":[2]},{"1059790":[16,64]},{"1059793":[2,218,90,8,160]},{"1059799":[90,152,74,74,168,175,95,80,127,57,14,173,240,3,122,128,48,122,173,238]},{"1059820":[221,32,15,208,39,32,165,173,32,17,173,34,230,131,6,144,3,32,197,173,32,123,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,39,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]},{"1059948":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059964":[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,14,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,14,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]},{"1060117":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060138":[58,10,168,185,199,174,133]},{"1060146":[122,104,24,113]},{"1060151":[24,105,2]},{"1060155":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060168":[13,194,32,90,200,200,24,113]},{"1060177":[122,72,175,81,80,127,41,128]},{"1060186":[240,7,104,24,105,4]},{"1060193":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060216":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060233":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060246":[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]},{"1060274":[165,35,105]},{"1060278":[133,8,165,32,105,8,133,1,165,33,105]},{"1060290":[133,9,96,218,34]},{"1060296":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060318":[160]},{"1060320":[175,81,80,127,41,3,201,3,208,5,32,3,174,128,4,201,2,208,5,32,3,174,128,4,201,1,208,3,32,3,174,122,250,171,96,175,95,80,127,57,14,173,240,3,130,178]},{"1060367":[90,175,81,80,127,41,3,58,10,168,194,32,185,199,174,133]},{"1060384":[163,1,10,10,168,177]},{"1060391":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060404":[208,8,177]},{"1060408":[143,39,192,126,128,10,177]},{"1060416":[24,105,4]},{"1060420":[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,229,174,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,114,147,160,143,42,192,126,169]},{"1060487":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060513":[143,44,192,126,32,186,175,169,2,218,72,175,97,80,127,170,104,32,113,175,250,175,81,80,127,41,128,208,3,32,232,174,200,232,232,232,232,96,205,174,209,174,217,174,8]},{"1060559":[40]},{"1060561":[240,255,40]},{"1060565":[32]},{"1060567":[40]},{"1060569":[216,255,40]},{"1060573":[8]},{"1060575":[40]},{"1060577":[56]},{"1060579":[40]},{"1060581":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060600":[58,10,168,185,199,174,133]},{"1060608":[185,95,175,133,2,122,90,152,10,10,168,177]},{"1060621":[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,82,164,226,32,133,6,100,7,72,169]},{"1060660":[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,101,175,103,175,107,175]},{"1060710":[255]},{"1060712":[128,128,255]},{"1060716":[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]},{"1060797":[194,32,191,37,192,126,24,105,4]},{"1060807":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060823":[159,47,192,126,191,41,192,126,24,105,16]},{"1060835":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060877":[72,165,2,72,169,16,128,133]},{"1060886":[169,48]},{"1060889":[133,2,169,2]},{"1060894":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060941":[143]},{"1060943":[80,127,32,156,176,34,79,150,160,107,72,175]},{"1060956":[80,127,240,6,34,75,176,160,128,13,32,156,176,34,12,151,160,169]},{"1060975":[143,152,192,126,104,107,32,156,176,201,36,208,24,90,160,36,34,141,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061060":[143,152,192,126,169,36,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]},{"1061335":[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]},{"1061402":[191,227,178,160,197,4,144,3,232,128,245,191,228,178,160,133,6,100,7,194,32,138,10,10,170,191,229,178,160,141,232,80,191,231,178,160,141,234,80,173]},{"1061443":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061461":[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,207,176,173,236,80,10,10,170,189]},{"1061498":[81,56,229,8,157]},{"1061504":[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]},{"1061536":[81,141,228,80,189,2,81,141,230,80,32,207,176,173]},{"1061551":[81,56,229,8,141]},{"1061557":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,203,176,160,141,232,80,173,234,80,239,205,176,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,34,49,145,160,72,165,138,201,3,240,6,34,246,178,160,128,4,34,233,178,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,17,179,160,169,235,143]},{"1061703":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061727":[13,165,33,153,32,13,169]},{"1061735":[153,32,15,169,127,153,112,15,107,72,8,34,154,179,160,144,31,156,18,1,156,239,3,169]},{"1061760":[133,93,194,32,165,138,201,48]},{"1061769":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061793":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061806":[128,16,201,48]},{"1061811":[208,11,165,34,201]},{"1061817":[2,144,4,56,130,1]},{"1061824":[24,226,32,107,191,168,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061845":[226,32,34,16,247,8,169,52,145,144,200,191,168,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061880":[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]},{"1061942":[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,162,180,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]},{"1062089":[13,173,219,15,233]},{"1062095":[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]},{"1062134":[13,173,219,15,233]},{"1062140":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062165":[254,127,208,245,169,4,107,34,211,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,229,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,229,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062238":[107,169]},{"1062241":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,211,181,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,211,181,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,211,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,211,181,160,107,218,8,194,32,41,127]},{"1062362":[10,170,191]},{"1062366":[82,127,26,41,255,3,159]},{"1062374":[82,127,170,10,191]},{"1062380":[128,175,40,250,107,218,8,194,48,162]},{"1062392":[191,40,182,160,159]},{"1062398":[82,127,232,232,191,40,182,160,159]},{"1062408":[82,127,232,232,191,40,182,160,159]},{"1062418":[82,127,232,232,191,40,182,160,159]},{"1062428":[82,127,232,232,224,127]},{"1062435":[144,211,40,250,107]},{"1062442":[64]},{"1062444":[128]},{"1062446":[192]},{"1062449":[1,64,1,128,1,192,1]},{"1062457":[2,64,2,128,2,192,2]},{"1062465":[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,72,182,160,175,35,128,48,208,4,34,104,182,160,104,107,72,169]},{"1062567":[143,65,80,127,175,34,128,48,201,1,208,4,34,72,182,160,175,35,128,48,201,1,208,4,34,104,182,160,104,107,72,175,34,128,48,201,2,208,4,34,72,182,160,175,35,128,48,201,2,208,4,34,104,182,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]},{"1062733":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062750":[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]},{"1062821":[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]},{"1062857":[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,28,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]},{"1062982":[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]},{"1063008":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063028":[2,156,5,2,169]},{"1063034":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,126,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063065":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063082":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063099":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063116":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063133":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063150":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063167":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063184":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063207":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063224":[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]},{"1063257":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063280":[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]},{"1063312":[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]},{"1063370":[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]},{"1063396":[192,59,208,3,130,96]},{"1063403":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063428":[201,15,1,208,3,130,59]},{"1063436":[201,16,1,208,3,130,51]},{"1063444":[201,28,1,208,3,130,43]},{"1063452":[201,31,1,208,3,130,35]},{"1063460":[201,255]},{"1063463":[208,3,130,27]},{"1063468":[201,20,1,208,3,130,19]},{"1063476":[201,21,1,208,3,130,11]},{"1063484":[201,22,1,208,3,130,3]},{"1063492":[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]},{"1063524":[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]},{"1063677":[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]},{"1063715":[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]},{"1063753":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063771":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063789":[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]},{"1063825":[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]},{"1063863":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063881":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,106,192,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]},{"1063985":[208,9,32,4,191,32,53,191,130,64,2,192,1,208,6,32,4,191,130,54,2,192,2,208,6,32,4,191,130,44,2,192,3,208,6,32,4,191,130,34,2,192,4,208,6,32,53,191,130,24,2,192,5,208,6,32,53,191,130,14,2,192,6,208,6,32,53,191,130,4,2,192,7,144,10,192,14,176,6,32,102,191,130,246,1,192,20,208,9,32,194,190,32,102,191,130,233,1,192,15,144,10,192,23,176,6,32,102,191,130,219,1,192,23,208,6,32,202,191,130,209,1,192,24,144,10,192,26,176,6,32,102,191,130,195,1,192,26,208,9,32,227,190,32,102,191,130,182,1,192,29,208,6,32,102,191,130,172,1,192,27,144,10,192,32,176,6,32,114,191,130,158,1,192,32,208,6,32,242,191,130,148,1,192,33,208,6,32,102,191,130,138,1,192,34,144,10,192,36,176,6,32,14,192,130,124,1,192,36,208,6,32,30,192,130,114,1,192,37,208,6,32,62,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,134,192,130,87,1,192,40,208,6,32,134,192,130,77,1,192,41,208,6,32,102,191,130,67,1,192,42,144,10,192,46,176,6,32,102,191,130,53,1,192,49,208,6,32,134,192,130,43,1,192,50,208,6,32,94,192,130,33,1,192,51,208,6,32,156,192,130,23,1,192,55,144,10,192,58,176,6,32,142,191,130,9,1,192,58,144,10,192,60,176,6,32,83,191,130,251]},{"1064321":[192,60,208,6,32,102,191,130,241]},{"1064331":[192,61,208,6,32,102,191,130,231]},{"1064341":[192,62,144,10,192,64,176,6,32,230,191,130,217]},{"1064355":[192,72,208,6,32,102,191,130,207]},{"1064365":[192,73,208,6,32,4,191,130,197]},{"1064375":[192,74,208,9,32,194,190,32,102,191,130,184]},{"1064388":[192,75,208,9,32,161,190,32,114,191,130,171]},{"1064401":[192,76,208,9,32,170,191,32,134,192,130,158]},{"1064414":[192,77,144,10,192,80,176,6,32,170,191,130,144]},{"1064428":[192,80,208,6,32,4,191,130,134]},{"1064438":[192,81,144,10,192,85,176,6,32,170,191,130,120]},{"1064452":[192,88,208,6,32,83,191,130,110]},{"1064462":[192,94,208,6,32,4,191,130,100]},{"1064472":[192,95,208,6,32,53,191,130,90]},{"1064482":[192,96,208,6,32,14,192,130,80]},{"1064492":[192,97,208,6,32,114,191,130,70]},{"1064502":[192,100,144,10,192,102,176,6,32,83,191,130,56]},{"1064516":[192,112,144,10,192,128,176,6,32,156,192,130,42]},{"1064530":[192,128,144,10,192,144,176,6,32,62,192,130,28]},{"1064544":[192,144,144,10,192,160,176,6,32,94,192,130,14]},{"1064558":[192,160,144,10,192,176,176,6,32,30,192,130]},{"1064572":[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,128,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064724":[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,30,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,102,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,172,192,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,81,239,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]},{"1065320":[201,2]},{"1065323":[208,14,175,140,243,126,41,192]},{"1065332":[201,192]},{"1065335":[240,79,128,64,201,1]},{"1065342":[208,14,175,142,243,126,41,192]},{"1065351":[201,192]},{"1065354":[240,60,128,45,201,5]},{"1065361":[208,14,175,140,243,126,41,48]},{"1065370":[201,48]},{"1065373":[240,41,128,26,201,13]},{"1065380":[208,16,175,140,243,126,137,4]},{"1065389":[240,12,41,3]},{"1065394":[208,20,128,5,201,16]},{"1065401":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065414":[208,5,169,79,61,128,6,32,215,193,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]},{"1065461":[41,255,239,153,4]},{"1065467":[185,62]},{"1065470":[41,255,239,153,62]},{"1065476":[185,68]},{"1065479":[41,255,239,153,68]},{"1065485":[185,128]},{"1065488":[41,255,239,153,128]},{"1065494":[185,130]},{"1065497":[41,255,239,153,130]},{"1065503":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065524":[41,255,239,153,132]},{"1065530":[185,126]},{"1065533":[41,255,239,153,126]},{"1065539":[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]},{"1065577":[201,144]},{"1065580":[208,3,169,127]},{"1065585":[9]},{"1065587":[36,143,100,199,126,165,5,41,255]},{"1065597":[9]},{"1065599":[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,198,241,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065711":[72,165,2,72,169,16,128,133]},{"1065720":[169,48]},{"1065723":[133,2,169,4]},{"1065728":[34,43,150,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065774":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065795":[143]},{"1065797":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065811":[157,192,13,72,169,1,143]},{"1065819":[80,127,165,93,201,20,240,68,169]},{"1065829":[143]},{"1065831":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065859":[72,165,2,72,169,16,128,133]},{"1065868":[169,48]},{"1065871":[133,2,169,3]},{"1065876":[34,43,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065901":[80,127,240,6,34,86,195,160,128,7,189,128,14,34,187,150,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]},{"1065944":[72,165,2,72,169,16,128,133]},{"1065953":[169,48]},{"1065956":[133,2,169,4]},{"1065961":[34,43,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,151,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]},{"1066019":[143,68,243,126,107,175,123,243,126,41,255]},{"1066031":[201,2]},{"1066034":[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]},{"1066067":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066082":[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]},{"1066118":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066132":[173,91,3,41,1,208,3,130,134]},{"1066142":[90,8,139,75,171,226,48,165,27,240,3,76,33,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066179":[129,48,143]},{"1066183":[254,127,34,93,246,29,162]},{"1066191":[165,47,201,4,240,1,232,191,37,197,160,153,80,13,169]},{"1066207":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,39,197,160,41,240,153,16,13,165,35,105]},{"1066241":[153,48,13,165,32,24,105,22,41,240,153]},{"1066253":[13,165,33,105]},{"1066258":[153,32,13,169]},{"1066263":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066280":[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]},{"1066311":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066332":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066402":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066433":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066527":[72,165,2,72,169,64,129,133]},{"1066536":[169,48]},{"1066539":[133,2,169,10]},{"1066544":[34,43,150,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066564":[254,127,34,93,246,29,162]},{"1066572":[165,47,201,4,240,1,232,191,169,198,160,153,80,13,169]},{"1066588":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,171,198,160,41,240,153,16,13,165,35,105]},{"1066622":[153,48,13,165,32,24,105,22,41,240,153]},{"1066634":[13,165,33,105]},{"1066639":[153,32,13,169]},{"1066644":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066668":[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]},{"1066747":[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]},{"1066774":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066813":[72,165,2,72,169,16,128,133]},{"1066822":[169,48]},{"1066825":[133,2,169,5]},{"1066830":[34,43,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]},{"1066884":[201,35,208,6,160,93,92,71,213]},{"1066894":[201,72,208,6,160,96,92,71,213]},{"1066904":[201,36,176,6,160,91,92,71,213]},{"1066914":[201,55,176,6,160,92,92,71,213]},{"1066924":[201,57,176,6,160,93,92,71,213]},{"1066934":[160,50,92,71,213]},{"1066940":[192,9,48]},{"1066944":[96]},{"1066946":[144]},{"1066948":[192]},{"1066951":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066975":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066993":[9,48,9,96,9,144,9,240,9]},{"1067004":[240]},{"1067006":[32,10,80,10,96,6]},{"1067013":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067035":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067051":[6,48,6]},{"1067055":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067071":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067092":[127,188,199,160,107,165]},{"1067099":[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]},{"1067130":[132,175,24,105]},{"1067135":[136,133]},{"1067138":[226,32,169,175,133,2,34,116,227,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,202,218,160,162,1,128,2,162]},{"1067196":[171,40,122,104,133,2,104,133,1,104,133]},{"1067208":[96,218,173,216,2,34,170,227,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067691":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,202,218,160,130,116,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,202,218,160,130,72,1,201,109,208,7,34,209,190,164,130,61,1,201,110,208,7,34,209,190,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067938":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067963":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1067986":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068005":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068022":[56,233,8,170,169,1,224]},{"1068030":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068053":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068072":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068089":[56,233,8,170,169,1,224]},{"1068097":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068120":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068142":[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]},{"1068174":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068193":[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]},{"1068219":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,74,239,160,173,216,2,72,175,152,192,126,208,12,104,32,121,218,141,216,2,32,79,218,128,1,104,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,170,218,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]},{"1068382":[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]},{"1068495":[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]},{"1068535":[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]},{"1068565":[175,91,243,126,201]},{"1068571":[208,8,169,34,141,216,2,130,171]},{"1068581":[169,35,141,216,2,130,163]},{"1068589":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068607":[169,28,141,216,2,130,137]},{"1068615":[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]},{"1068647":[175,64,243,126,26,74,201]},{"1068655":[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,98,217,160,141,216,2,235,32,237,217,169,255,143,144,80,127,128,36,201,99,208,15,34,30,218,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]},{"1068752":[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]},{"1069007":[4,4,4,4,4,5]},{"1069019":[4]},{"1069021":[4]},{"1069024":[4]},{"1069036":[4]},{"1069042":[5]},{"1069052":[4,4,4]},{"1069066":[4,4]},{"1069069":[4]},{"1069073":[4]},{"1069080":[4]},{"1069089":[4]},{"1069160":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069240":[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]},{"1069289":[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]},{"1069328":[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]},{"1069485":[2,2]},{"1069493":[2,2,2,2,2,2]},{"1069500":[2]},{"1069502":[2,2]},{"1069505":[2,2,2,2,2,2,2,2,2,2,2]},{"1069517":[2,2,2,2,2]},{"1069523":[2,2,2,2,2,2,2,2,2]},{"1069535":[2,2,2,2,2,2,2,2,2,2,2]},{"1069548":[2]},{"1069550":[2,2,2]},{"1069554":[2,2,2,2,2,2]},{"1069561":[2,2,2,2,2,2,2,2]},{"1069570":[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]},{"1069656":[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]},{"1069842":[4,4,4]},{"1069848":[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]},{"1070761":[128]},{"1070763":[64]},{"1070765":[32]},{"1070767":[16]},{"1070769":[8]},{"1070771":[4]},{"1070773":[2]},{"1070775":[1,128]},{"1070778":[64]},{"1070780":[32]},{"1070782":[16]},{"1070784":[8]},{"1070786":[4]},{"1071017":[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,121,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,247,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,247,216,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]},{"1071471":[160,48,107,162]},{"1071476":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071489":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071503":[168,152,32,201,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071523":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071547":[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]},{"1071587":[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]},{"1071624":[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]},{"1071663":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071676":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071699":[191]},{"1071701":[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]},{"1071741":[191]},{"1071743":[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,162]},{"1071788":[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,96,100,17,100,176,92,151,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071851":[13,24,105,3,107,189,32,14,201,136,208,9,32,40,219,201,4,144,1,58,107,32,40,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071897":[200,49,74,74,74,74,107,40,191]},{"1071907":[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]},{"1071957":[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]},{"1071991":[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,20,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]},{"1072193":[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]},{"1072248":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072274":[165,27,240,121,194,32,165,160,201,14]},{"1072285":[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]},{"1072320":[201,126]},{"1072323":[208,33,165,34,41,255,1,201,104]},{"1072333":[144,60,201,136]},{"1072338":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072358":[201,222]},{"1072361":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072386":[144,7,201,154]},{"1072391":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,111,221,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,111,221,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]},{"1072529":[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]},{"1072582":[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,131,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072635":[174,2,32,224,83,45,240,3,130,253]},{"1072646":[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]},{"1072711":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072811":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072869":[90,194,32,191]},{"1072874":[217,48,133]},{"1072878":[226,32,178]},{"1072882":[122,132]},{"1072885":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072905":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072926":[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]},{"1073038":[208,13,173,11,1,41,255]},{"1073046":[201,59]},{"1073049":[208,63,128,56,201,107]},{"1073056":[208,58,175,19,130,48,201,1]},{"1073065":[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]},{"1073098":[240,14,175,167,80,127,41,4]},{"1073107":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073122":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073141":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073166":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073182":[66,169,255,141,64,33,169,34,133]},{"1073192":[169,248,133,1,169,160,34,29,137]},{"1073202":[169,129,141]},{"1073206":[66,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]},{"1073242":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073258":[232,226,32,168,173]},{"1073264":[32,137,64,208,249,173]},{"1073271":[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]},{"1073308":[32,137,64,208,249,173]},{"1073315":[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]},{"1073366":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073392":[175,169,80,127,240,85,173]},{"1073400":[32,137,64,240,4,92,220,128]},{"1073409":[173]},{"1073411":[32,137,8,240,4,92,220,128]},{"1073420":[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]},{"1073456":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073475":[143,169,80,127,92,220,128]},{"1073483":[173,39,1,205,41,1,208,4,92,220,128]},{"1073495":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073525":[224,255,208,4,92,220,128]},{"1073533":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073549":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073565":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073582":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073596":[141,43,1,92,220,128]},{"1073603":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073622":[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]},{"1073654":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073679":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073721":[90,194,32,191]},{"1073726":[217,48,133]},{"1073730":[226,32,178]},{"1073734":[122,132]},{"1073737":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073760":[141,44,1,72,34,114,221,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]},{"1073829":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073842":[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]},{"1073912":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073925":[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]},{"1073992":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1074010":[87,127,107,191]},{"1074015":[18,127,107,156,240,28,156,241,28,169]},{"1074026":[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]},{"1074058":[226,32,183]},{"1074062":[159]},{"1074064":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074083":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074107":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074125":[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]},{"1074151":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074169":[226,32,183]},{"1074173":[159]},{"1074175":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074194":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074214":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074232":[226,32,183]},{"1074236":[159]},{"1074238":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074257":[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]},{"1074288":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074306":[226,32,183]},{"1074310":[159]},{"1074312":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074331":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074351":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074369":[226,32,183]},{"1074373":[159]},{"1074375":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074394":[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]},{"1074423":[133]},{"1074425":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074443":[226,32,183]},{"1074447":[159]},{"1074449":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074468":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074488":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074506":[226,32,183]},{"1074510":[159]},{"1074512":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074531":[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]},{"1074562":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074580":[226,32,183]},{"1074584":[159]},{"1074586":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074605":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074625":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074643":[226,32,183]},{"1074647":[159]},{"1074649":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074668":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074689":[133]},{"1074691":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074709":[226,32,183]},{"1074713":[159]},{"1074715":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074734":[143,148,80,127,226,32,130,213]},{"1074743":[201,128,208,56,169,52,133]},{"1074751":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074769":[226,32,183]},{"1074773":[159]},{"1074775":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074794":[143,148,80,127,226,32,130,153]},{"1074803":[201,144,208,55,169,112,133]},{"1074811":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074829":[226,32,183]},{"1074833":[159]},{"1074835":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074854":[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]},{"1074881":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074899":[226,32,183]},{"1074903":[159]},{"1074905":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074924":[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]},{"1075003":[208,56,169,216,133]},{"1075009":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075027":[226,32,183]},{"1075031":[159]},{"1075033":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075052":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075069":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075087":[226,32,183]},{"1075091":[159]},{"1075093":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075112":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075129":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075147":[226,32,183]},{"1075151":[159]},{"1075153":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075172":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075189":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075207":[226,32,183]},{"1075211":[159]},{"1075213":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075232":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075249":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075267":[226,32,183]},{"1075271":[159]},{"1075273":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075292":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075309":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075327":[226,32,183]},{"1075331":[159]},{"1075333":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075352":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075369":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075387":[226,32,183]},{"1075391":[159]},{"1075393":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075412":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075429":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075447":[226,32,183]},{"1075451":[159]},{"1075453":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075472":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075489":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075507":[226,32,183]},{"1075511":[159]},{"1075513":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075532":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075549":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075567":[226,32,183]},{"1075571":[159]},{"1075573":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075592":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075609":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075627":[226,32,183]},{"1075631":[159]},{"1075633":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075652":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075669":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075687":[226,32,183]},{"1075691":[159]},{"1075693":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075712":[143,148,80,127,226,32,130,235]},{"1075721":[201,12,208,56,169,12,133]},{"1075729":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075747":[226,32,183]},{"1075751":[159]},{"1075753":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075772":[143,148,80,127,226,32,130,175]},{"1075781":[201,13,208,55,169,41,133]},{"1075789":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075807":[226,32,183]},{"1075811":[159]},{"1075813":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075832":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075848":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075866":[226,32,183]},{"1075870":[159]},{"1075872":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075891":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075907":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075925":[226,32,183]},{"1075929":[159]},{"1075931":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075950":[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]},{"1075983":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075998":[171,40,122,250,104,107,34,78,216]},{"1076008":[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]},{"1076072":[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,158,236,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,158,236,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]},{"1076343":[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]},{"1076388":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076412":[226,48,160]},{"1076416":[183]},{"1076418":[201,254,208,39,200,183]},{"1076425":[201,110,208,32,200,183]},{"1076432":[208,27,200,183]},{"1076437":[201,254,208,20,200,183]},{"1076444":[201,107,208,13,200,183]},{"1076451":[201,4,208,6,156,232,28,130,19]},{"1076461":[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]},{"1076489":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076506":[10,10,69,138,41,8]},{"1076513":[240,6,152,24,105,16]},{"1076520":[168,165,35,41,2]},{"1076526":[74,69,138,41,1]},{"1076532":[240,4,152,26,26,168,152,41,255]},{"1076542":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,249,150,164,34,239,147,164,107,34,230,244,160,34,142,173,164,34]},{"1076574":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,129,160,169,16,133,28,107,72,175,95,227,48,143,152,192,126,104,34,157,153,7,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,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,129,188,164,107,194,16,34,61,137]},{"1076770":[169,7,141,12,33,175,240,244,126,208,10,34,131,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076822":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,18,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]},{"1076902":[191]},{"1076904":[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]},{"1076978":[107,34,212,152,160,34,235,245,160,107,34,71,153,160,34,80,153,160,162,4,107,34,235,245,160,169,20,133,17,107,34,235,245,160,107,34,63,132,160,34,44,153,160,34,244,187,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]},{"1077053":[2,107,169]},{"1077057":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1077080":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,152,236,160,169]},{"1077102":[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]},{"1077138":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077163":[208,4,169]},{"1077168":[107,201,1]},{"1077172":[208,16,175,197,243,126,41,15]},{"1077181":[201,2]},{"1077184":[176,84,32,26,240,107,201,2]},{"1077193":[208,75,32,26,240,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077217":[107,175,74,128,48,41,255]},{"1077225":[240,43,175,195,242,126,41,32]},{"1077234":[208,34,173,8,3,41,128]},{"1077242":[240,4,169,1]},{"1077247":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077269":[107,169]},{"1077273":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077296":[96,169]},{"1077300":[96,175,76,128,48,41,255]},{"1077308":[240,4,92,90,189,27,224,118]},{"1077317":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077334":[72,170,191,64,130,48,208,3,130,175]},{"1077345":[58,133]},{"1077348":[10,10,24,101]},{"1077353":[10,10,170,169,22]},{"1077359":[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]},{"1077387":[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]},{"1077430":[137,128]},{"1077433":[240,3,9]},{"1077437":[255,143,106,193,126,191,98,130,48,41,255]},{"1077449":[137,128]},{"1077452":[240,3,9]},{"1077456":[255,143,110,193,126,169]},{"1077464":[56,239,106,193,126,143,108,193,126,169]},{"1077476":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077492":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077510":[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]},{"1077587":[165]},{"1077589":[223]},{"1077591":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077611":[165]},{"1077613":[223]},{"1077615":[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]},{"1077661":[175,74,128,48,41,255]},{"1077668":[240,25,175,93]},{"1077674":[41,255]},{"1077677":[201,20]},{"1077680":[208,13,165,138,41,64]},{"1077687":[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]},{"1077744":[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]},{"1077810":[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]},{"1077844":[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]},{"1077943":[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]},{"1077974":[201,2]},{"1077977":[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]},{"1078009":[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,228,244,160,144,10,208,8,175,140,80,127,207,226,244,160,144,114,175,145,129,48,41,255]},{"1078065":[208,24,169,2]},{"1078070":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078094":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078107":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078121":[143,142,80,127,169,1]},{"1078128":[143,126,80,127,128,54,201,2]},{"1078137":[208,24,169,2]},{"1078142":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,202,218,160,194,48,96,175,146,129,48,41,255]},{"1078179":[240,7,169]},{"1078184":[143,126,80,127,175,142,80,127,207,216,244,160,144,10,208,8,175,140,80,127,207,214,244,160,144,53,175,128,80,127,26,201,10]},{"1078218":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078232":[143,128,80,127,175,140,80,127,56,239,214,244,160,143,140,80,127,175,142,80,127,239,216,244,160,143,142,80,127,128,181,175,142,80,127,207,220,244,160,144,10,208,8,175,140,80,127,207,218,244,160,144,53,175,132,80,127,26,201,10]},{"1078293":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078307":[143,132,80,127,175,140,80,127,56,239,218,244,160,143,140,80,127,175,142,80,127,239,220,244,160,143,142,80,127,128,181,175,142,80,127,207,224,244,160,144,10,208,8,175,140,80,127,207,222,244,160,144,53,175,136,80,127,26,201,10]},{"1078368":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078382":[143,136,80,127,175,140,80,127,56,239,222,244,160,143,140,80,127,175,142,80,127,239,224,244,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]},{"1078490":[16,14]},{"1078494":[60]},{"1078498":[255,255,255,127,175,204,80,127,41,255]},{"1078509":[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]},{"1078580":[240,93,175,145,129,48,41,255]},{"1078589":[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]},{"1078682":[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]},{"1078757":[208,3,32,180,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078787":[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]},{"1078821":[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,33,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]},{"1078895":[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]},{"1079001":[255,157]},{"1079004":[27,157,64,27,157,128,27,157,192,27,157]},{"1079016":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079030":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079044":[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]},{"1079082":[208,12,175]},{"1079086":[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]},{"1079160":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079183":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079333":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079349":[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]},{"1079421":[244,111,4]},{"1079425":[115,10,95]},{"1079429":[7]},{"1079435":[34,133,189,164,34,58,135,1,194,16,166,160,191,47,251,160,226,16,34,156,135]},{"1079457":[179,248,160,180,248,160,65,249,160,206,249,160,91,250,160,197,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079493":[32,126,232,232,159]},{"1079499":[32,126,232,232,159]},{"1079505":[32,126,232,232,159]},{"1079511":[32,126,232,232,162,220,25,159]},{"1079520":[32,126,232,232,169,202,12,159]},{"1079529":[32,126,232,232,169,203,12,159]},{"1079538":[32,126,232,232,169,208,8,159]},{"1079547":[32,126,232,232,162,92,26,159]},{"1079556":[32,126,232,232,169,218,12,159]},{"1079565":[32,126,232,232,169,219,12,159]},{"1079574":[32,126,232,232,169,208,8,159]},{"1079583":[32,126,232,232,162,220,26,159]},{"1079592":[32,126,232,232,159]},{"1079598":[32,126,232,232,159]},{"1079604":[32,126,232,232,159]},{"1079610":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079634":[32,126,232,232,159]},{"1079640":[32,126,232,232,159]},{"1079646":[32,126,232,232,159]},{"1079652":[32,126,232,232,162,156,25,159]},{"1079661":[32,126,232,232,169,202,12,159]},{"1079670":[32,126,232,232,169,203,12,159]},{"1079679":[32,126,232,232,169,208,8,159]},{"1079688":[32,126,232,232,162,28,26,159]},{"1079697":[32,126,232,232,169,218,12,159]},{"1079706":[32,126,232,232,169,219,12,159]},{"1079715":[32,126,232,232,169,208,8,159]},{"1079724":[32,126,232,232,162,156,26,159]},{"1079733":[32,126,232,232,159]},{"1079739":[32,126,232,232,159]},{"1079745":[32,126,232,232,159]},{"1079751":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079775":[32,126,232,232,159]},{"1079781":[32,126,232,232,159]},{"1079787":[32,126,232,232,159]},{"1079793":[32,126,232,232,162,220,9,159]},{"1079802":[32,126,232,232,169,202,12,159]},{"1079811":[32,126,232,232,169,203,12,159]},{"1079820":[32,126,232,232,169,208,8,159]},{"1079829":[32,126,232,232,162,92,10,159]},{"1079838":[32,126,232,232,169,218,12,159]},{"1079847":[32,126,232,232,169,219,12,159]},{"1079856":[32,126,232,232,169,208,8,159]},{"1079865":[32,126,232,232,162,220,10,159]},{"1079874":[32,126,232,232,159]},{"1079880":[32,126,232,232,159]},{"1079886":[32,126,232,232,159]},{"1079892":[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]},{"1080125":[1]},{"1080207":[5]},{"1080209":[4]},{"1080237":[2]},{"1080333":[3]},{"1080431":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080448":[134,1,133,2,32,111,252,176,4,92,83,230]},{"1080461":[169,49,133,2,194,32,169]},{"1080469":[192,133]},{"1080472":[162,128,167]},{"1080476":[141,24,33,230]},{"1080481":[230]},{"1080483":[167]},{"1080485":[141,24,33,230]},{"1080490":[230]},{"1080492":[167]},{"1080494":[141,24,33,230]},{"1080499":[230]},{"1080501":[167]},{"1080503":[141,24,33,230]},{"1080508":[230]},{"1080510":[167]},{"1080512":[141,24,33,230]},{"1080517":[230]},{"1080519":[167]},{"1080521":[141,24,33,230]},{"1080526":[230]},{"1080528":[167]},{"1080530":[141,24,33,230]},{"1080535":[230]},{"1080537":[167]},{"1080539":[141,24,33,230]},{"1080544":[230]},{"1080546":[202,208,181,226,32,92,81,230]},{"1080555":[226,48,175,248,194,126,168,32,111,252,194,48,176,10,162]},{"1080572":[160,64]},{"1080575":[92,104,223]},{"1080579":[162]},{"1080581":[192,160]},{"1080585":[169]},{"1080587":[8,139,84,127,177,171,162]},{"1080595":[8,169]},{"1080598":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,114,221,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,214,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,234,167,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,61,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,27,224,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,107,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,124,236,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,135,148,164,194,16,34,163,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,160,148,164,34,12,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,37,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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,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]},{"1180965":[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]},{"1180993":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181009":[128,3,169]},{"1181014":[226,32,250,201]},{"1181019":[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]},{"1181056":[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]},{"1181083":[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]},{"1181115":[66,240,3,73]},{"1181120":[66,137]},{"1181123":[132,240,3,73]},{"1181128":[132,133]},{"1181131":[226,32,92,222,131]},{"1181137":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181160":[12,240,3,73]},{"1181165":[12,137]},{"1181168":[3,240,3,73]},{"1181173":[3,133]},{"1181176":[226,32,92,222,131]},{"1181182":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181205":[226,32,92,222,131]},{"1181211":[173,24,66,133]},{"1181216":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181237":[173,24,66,133]},{"1181242":[173,25,66,133,1,92,222,131]},{"1181251":[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,111,134,164,34,220,134,164,107,169,14,143,1,40]},{"1181301":[169,4,143,1,40]},{"1181307":[169,13,143,1,40]},{"1181313":[169,14,143,1,40]},{"1181319":[169]},{"1181321":[143,1,40]},{"1181325":[169]},{"1181327":[143,1,40]},{"1181331":[169]},{"1181333":[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,1,143,1,40]},{"1181367":[169]},{"1181369":[143,1,40]},{"1181373":[169,1,143,1,40]},{"1181379":[169]},{"1181381":[143,1,40]},{"1181385":[169]},{"1181387":[143,1,40]},{"1181391":[169,10,143,1,40]},{"1181397":[169,13,143,1,40]},{"1181403":[107,72,218,162]},{"1181408":[175]},{"1181410":[40]},{"1181412":[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]},{"1181439":[175]},{"1181441":[40]},{"1181443":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181457":[232,128,235,56,175]},{"1181463":[40]},{"1181465":[72,175]},{"1181468":[40]},{"1181470":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181488":[175]},{"1181490":[40]},{"1181492":[72,175]},{"1181495":[40]},{"1181497":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181517":[40]},{"1181519":[72,175]},{"1181522":[40]},{"1181524":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181544":[40]},{"1181546":[72,175]},{"1181549":[40]},{"1181551":[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]},{"1181636":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181654":[133]},{"1181656":[165,3,41,255]},{"1181661":[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,15,136,164,132,2,100,3,24,101]},{"1181703":[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]},{"1181758":[175]},{"1181760":[40]},{"1181762":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181776":[232,128,235,56,175]},{"1181782":[40]},{"1181784":[72,175]},{"1181787":[40]},{"1181789":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181807":[175]},{"1181809":[40]},{"1181811":[72,175]},{"1181814":[40]},{"1181816":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181836":[40]},{"1181838":[72,175]},{"1181841":[40]},{"1181843":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181863":[40]},{"1181865":[72,175]},{"1181868":[40]},{"1181870":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181890":[40]},{"1181892":[133,4,175]},{"1181896":[40]},{"1181898":[72,175]},{"1181901":[40]},{"1181903":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181923":[40]},{"1181925":[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]},{"1181994":[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]},{"1182033":[153]},{"1182036":[189,2]},{"1182039":[153,2]},{"1182042":[189,4]},{"1182045":[153,64]},{"1182048":[189,6]},{"1182051":[153,66]},{"1182054":[96,189]},{"1182058":[41,255,227,9]},{"1182063":[16,153]},{"1182067":[189,2]},{"1182070":[41,255,227,9]},{"1182075":[16,153,2]},{"1182079":[189,4]},{"1182082":[41,255,227,9]},{"1182087":[16,153,64]},{"1182091":[189,6]},{"1182094":[41,255,227,9]},{"1182099":[16,153,66]},{"1182103":[96,41,255]},{"1182107":[240,3,76,78,137,76,103,137,41,255]},{"1182118":[208,6,162,132,144,76,103,137,58,58,208,6,162,132,144,76,78,137,58,208,6,162,140,144,76,78,137,58,208,6,162,148,144,76,78,137,58,208,6,162,156,144,76,78,137,58,208,6,162,164,144,76,78,137,58,208,6,162,172,144,76,78,137,162,180,144,76,78,137,165,26,41,1]},{"1182192":[240,2,128,14,32,17,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182222":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182238":[5,112,9]},{"1182242":[28,141,142,17,24,105,16]},{"1182250":[141,206,17,175,2,5,112,9]},{"1182259":[28,141,144,17,24,105,16]},{"1182267":[141,208,17,175,4,5,112,9]},{"1182276":[28,141,146,17,24,105,16]},{"1182284":[141,210,17,175,6,5,112,9]},{"1182293":[28,141,148,17,24,105,16]},{"1182301":[141,212,17,175,8,5,112,9]},{"1182310":[28,141,78,18,24,105,16]},{"1182318":[141,142,18,175,10,5,112,9]},{"1182327":[28,141,80,18,24,105,16]},{"1182335":[141,144,18,175,12,5,112,9]},{"1182344":[28,141,82,18,24,105,16]},{"1182352":[141,146,18,175,14,5,112,9]},{"1182361":[28,141,84,18,24,105,16]},{"1182369":[141,148,18,32,188,144,175,142,3,112,41,64]},{"1182382":[240,31,175,64,3,112,41,255]},{"1182391":[240,11,162,4,143,160,220,16,32,78,137,128,40,162,20,143,160,220,16,32,78,137,128,29,175,64,3,112,41,255]},{"1182422":[240,11,162,252,142,160,220,16,32,78,137,128,9,162,252,142,160,220,16,32,103,137,175,140,3,112,41,192]},{"1182451":[201,192]},{"1182454":[208,11,162,44,143,160,224,16,32,78,137,128,49,175,140,3,112,41,64]},{"1182474":[240,11,162,36,143,160,224,16,32,78,137,128,29,175,140,3,112,41,128]},{"1182494":[240,11,162,28,143,160,224,16,32,78,137,128,9,162,28,143,160,224,16,32,103,137,162,52,143,160,228,16,175,66,3,112,32,152,137,175,140,3,112,41,16]},{"1182536":[240,11,162,12,144,160,236,16,32,78,137,128,9,162,12,144,160,236,16,32,103,137,175,140,3,112,41,8]},{"1182565":[240,11,162,4,144,160,232,16,32,78,137,128,9,162,4,144,160,232,16,32,103,137,175,140,3,112,41,3]},{"1182594":[240,11,162,140,143,160,228,17,32,78,137,128,9,162,140,143,160,228,17,32,103,137,175,140,3,112,41,4]},{"1182623":[240,11,162,132,143,160,92,18,32,78,137,128,9,162,132,143,160,92,18,32,103,137,162,68,143,160,92,17,175,69,3,112,32,152,137,162,76,143,160,96,17,175,70,3,112,32,152,137,162,84,143,160,100,17,175,71,3,112,32,152,137,162,92,143,160,104,17,175,72,3,112,32,152,137,162,100,143,160,108,17,175,73,3,112,32,152,137,162,108,143,160,220,17,175,74,3,112,32,152,137,162,116,143,160,224,17,175,75,3,112,32,152,137,162,124,143,160,232,17,175,77,3,112,32,152,137,162,148,143,160,236,17,175,78,3,112,32,152,137,162,156,143,160,96,18,175,80,3,112,32,152,137,162,164,143,160,100,18,175,81,3,112,32,152,137,162,172,143,160,104,18,175,82,3,112,32,152,137,162,180,143,160,108,18,175,83,3,112,32,152,137,160,242,16,175,92,3,112,32,163,137,160,114,17,175,93,3,112,32,163,137,160,242,17,175,94,3,112,32,163,137,160,114,18,175,95,3,112,32,163,137,175,89,3,112,41,255]},{"1182861":[208,11,162,20,144,160,248,16,32,103,137,128,65,58,208,11,162,20,144,160,248,16,32,78,137,128,51,58,208,11,162,28,144,160,248,16,32,78,137,128,37,58,208,11,162,36,144,160,248,16,32,78,137,128,23,58,208,11,162,44,144,160,248,16,32,78,137,128,9,162,20,144,160,248,16,32,103,137,175,90,3,112,41,255]},{"1182946":[208,11,162,52,144,160,120,17,32,103,137,128,37,58,208,11,162,52,144,160,120,17,32,78,137,128,23,58,208,11,162,60,144,160,120,17,32,78,137,128,9,162,68,144,160,120,17,32,78,137,175,91,3,112,41,255]},{"1183003":[208,11,162,76,144,160,248,17,32,78,137,128,23,58,208,11,162,84,144,160,248,17,32,78,137,128,9,162,92,144,160,248,17,32,78,137,175,107,3,112,41,255]},{"1183046":[208,11,162,100,144,160,120,18,32,78,137,128,37,58,208,11,162,108,144,160,120,18,32,78,137,128,23,58,208,11,162,116,144,160,120,18,32,78,137,128,9,162,124,144,160,120,18,32,78,137,175,72,4,112,41,255]},{"1183103":[34,249,151,160,175,6,80,127,41,255]},{"1183114":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183128":[24,105,16,30,141,250,18,162,196,143,160,252,16,175,85,3,112,32,152,137,175,84,3,112,41,255]},{"1183155":[208,11,162,244,143,160,124,17,32,103,137,128,23,58,208,11,162,244,143,160,124,17,32,78,137,128,9,162,252,143,160,124,17,32,78,137,162,188,143,160,252,17,175,86,3,112,32,152,137,162,204,143,160,124,18,175,87,3,112,32,152,137,175,116,3,112,41,4]},{"1183224":[240,11,162,220,143,160,28,19,32,78,137,128,9,162,212,143,160,28,19,32,78,137,175,116,3,112,41,2]},{"1183253":[240,11,162,228,143,160,32,19,32,78,137,128,9,162,212,143,160,32,19,32,78,137,175,116,3,112,41,1]},{"1183282":[240,11,162,236,143,160,36,19,32,78,137,128,9,162,212,143,160,36,19,32,78,137,175,122,3,112,41,2]},{"1183311":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183335":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183359":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183383":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183407":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183431":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183455":[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]},{"1183501":[10,186,10,185,6]},{"1183507":[10]},{"1183509":[10,20,10,19,6]},{"1183515":[10,5,14,6,14]},{"1183521":[30,22,14,5,6,6,6]},{"1183529":[30,22,6,182,14,182,6,182,142,182,134]},{"1183541":[6,21,6,48,6]},{"1183547":[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,249,151,160,175,4,80,127,41,255]},{"1183957":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183971":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183985":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183999":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184023":[34,249,151,160,175,6,80,127,41,255]},{"1184034":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184048":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184062":[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]},{"1184093":[34,249,151,160,175,6,80,127,41,255]},{"1184104":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184118":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184135":[4,169,136,1,157]},{"1184141":[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]},{"1184244":[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]},{"1184296":[141,2,20,165,16,41,255]},{"1184304":[201,1]},{"1184307":[208,107,175,135,128,48,41,255]},{"1184316":[201,2]},{"1184319":[208,95,8,226,48,218,90,34,37,181,164,122,250,40,41,255]},{"1184336":[208,78,169,110,29,141,142,19,24,105,16]},{"1184348":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184361":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184374":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184387":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184400":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184413":[141,216,19,226,32,107,34,131,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]},{"1184529":[189,4,16,9]},{"1184534":[32,157,4,16,202,202,208,243,162,60]},{"1184545":[189,68,16,9]},{"1184550":[32,157,68,16,202,202,208,243,162,60]},{"1184561":[189,132,16,9]},{"1184566":[32,157,132,16,202,202,208,243,162,60]},{"1184577":[189,196,16,9]},{"1184582":[32,157,196,16,202,202,208,243,162,60]},{"1184593":[189,4,17,9]},{"1184598":[32,157,4,17,202,202,208,243,162,60]},{"1184609":[189,68,17,9]},{"1184614":[32,157,68,17,202,202,208,243,162,60]},{"1184625":[189,132,17,9]},{"1184630":[32,157,132,17,202,202,208,243,162,60]},{"1184641":[189,196,17,9]},{"1184646":[32,157,196,17,202,202,208,243,162,60]},{"1184657":[189,4,18,9]},{"1184662":[32,157,4,18,202,202,208,243,162,60]},{"1184673":[189,68,18,9]},{"1184678":[32,157,68,18,202,202,208,243,162,60]},{"1184689":[189,132,18,9]},{"1184694":[32,157,132,18,202,202,208,243,162,60]},{"1184705":[189,196,18,9]},{"1184710":[32,157,196,18,202,202,208,243,162,60]},{"1184721":[189,4,19,9]},{"1184726":[32,157,4,19,202,202,208,243,162,60]},{"1184737":[189,68,19,9]},{"1184742":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184755":[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]},{"1184790":[67,169,24,141,1,67,169]},{"1184798":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184813":[141,2,67,169,208,141,3,67,173]},{"1184823":[33,72,169,128,141]},{"1184829":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184846":[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]},{"1184874":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,135,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184911":[128,51,159]},{"1184915":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184936":[28,141,206,16,24,105,16]},{"1184944":[141,14,17,175,219,3,112,9]},{"1184953":[28,141,208,16,24,105,16]},{"1184961":[141,16,17,175,221,3,112,9]},{"1184970":[28,141,210,16,24,105,16]},{"1184978":[141,18,17,175,223,3,112,9]},{"1184987":[28,141,212,16,24,105,16]},{"1184995":[141,20,17,175,108,3,112,41,255]},{"1185005":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185019":[153]},{"1185022":[200,200,202,208,8,72,152,24,105,44]},{"1185033":[168,104,198,2,208,236,32,17,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185057":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185079":[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]},{"1185118":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,37,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]},{"1185173":[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]},{"1185211":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185225":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,238,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185258":[141,18,11,107,110]},{"1185264":[111]},{"1185266":[112]},{"1185268":[113]},{"1185270":[115]},{"1185272":[116]},{"1185274":[117]},{"1185276":[118]},{"1185278":[120]},{"1185280":[121]},{"1185282":[122]},{"1185284":[123]},{"1185286":[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]},{"1185314":[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]},{"1185350":[143]},{"1185352":[81,127,200,200,183]},{"1185358":[143,2,81,127,200,200,183]},{"1185366":[143,4,81,127,200,200,183]},{"1185374":[143,6,81,127,169,2]},{"1185381":[133,4,34,14,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185409":[170,191]},{"1185412":[81,127,72,169]},{"1185418":[143]},{"1185420":[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]},{"1185482":[72,165,2,72,169,188,234,133]},{"1185491":[169,1]},{"1185494":[133,2,138,74,34,43,150,164,133,12,104,133,2,104,133]},{"1185510":[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]},{"1185542":[189,222,152,159]},{"1185547":[201,126,232,232,224,128,144,243,160]},{"1185557":[162]},{"1185559":[218,187,191,21,130,48,250,41,31]},{"1185569":[10,10,10,90,168,185,222,151,159,24,201,126,185,224,151,159,26,201,126,185,226,151,159,88,201,126,185,228,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,89,151,40,122,250,104,171,107,72,218,173]},{"1185629":[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]},{"1185659":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185680":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185703":[33,72,169,128,141]},{"1185709":[33,169,1,141,11,66,104,141]},{"1185718":[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]},{"1185746":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185771":[30,22,14]},{"1185775":[6,21,6,48,6]},{"1185781":[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]},{"1186151":[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]},{"1186227":[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]},{"1186324":[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]},{"1186381":[39,1,1,1,1,1,2,2,39,39,39]},{"1186397":[39,1,1,1,32,1,2,2,39,39,39]},{"1186413":[39,1,1,1,1,32,2,2,2,2,2]},{"1186429":[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]},{"1186473":[44]},{"1186475":[78,79,1,1,1,1,1,1,2,1,2]},{"1186487":[46]},{"1186491":[2,34,1,1,2]},{"1186499":[24,18,2,2]},{"1186504":[72]},{"1186509":[1,1,2]},{"1186513":[1,1,16,26,2]},{"1186520":[72]},{"1186525":[16,16,2]},{"1186529":[1,1,1,1]},{"1186535":[72]},{"1186538":[9]},{"1186541":[2,2,2]},{"1186545":[1,1,43]},{"1186550":[9]},{"1186557":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186621":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186637":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186654":[2,2,2]},{"1186659":[2,2,2,2]},{"1186670":[2,2,2,2,41,2,2,2,2]},{"1186685":[1,1,1,1,1,1,1,1,1,1,1]},{"1186699":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186733":[1,1,67,1,1,1,1,1,2,2,2]},{"1186749":[80,2,84,81,87,87,86,86,39,39,39]},{"1186761":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186777":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186793":[72,2,2]},{"1186797":[39,2,82,83,9,1,26,16,85,85]},{"1186809":[72,2,2]},{"1186813":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186835":[9,9,9,9,9,72,9,41]},{"1186844":[75,2,2,2]},{"1186849":[8,2,2]},{"1186856":[1]},{"1186859":[32]},{"1186861":[2,2,2,2,2,2,2]},{"1186870":[1,1,1,2]},{"1186875":[8]},{"1186877":[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]},{"1186977":[240,2,128,23,169,15,2,166,138,224,51]},{"1186989":[208,4,143,168,34,126,224,47]},{"1186998":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187012":[208,5,175,135,242,126,107,169,32]},{"1187022":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187045":[191,38,157,164,197,34,176,29,191,40,157,164,197,34,144,21,191,42,157,164,197,32,176,13,191,44,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187087":[201,184]},{"1187090":[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]},{"1187121":[10]},{"1187123":[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]},{"1187153":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187176":[143]},{"1187178":[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]},{"1187209":[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]},{"1187252":[112]},{"1187254":[240,14,48,15,32,1,96,1,208,10]},{"1187265":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187284":[64]},{"1187286":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187300":[201,5]},{"1187303":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187319":[208,18,173,10,4,41,255]},{"1187327":[201,67]},{"1187330":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187346":[208,25,173,10,4,41,255]},{"1187354":[201,91]},{"1187357":[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]},{"1187393":[176,5,10,170,252,82,158,171,194,48,162,30]},{"1187406":[169,190,13,107,82,159,82,159,82,159,83,159,82,159,126,159,82,159,120,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,199,160,82,159,82,159,82,159,206,160,82,159,82,159,82,159,82,159,82,159,82,159,237,160,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,135,163,82,159,82,159,82,159,82,159,82,159,82,159,163,163,82,159,101,167,232,169,82,159,239,169,82,159,82,159,82,159,82,159,38,170,82,159,251,166,82,159,82,159,82,159,82,159,82,159,82,159,156,170,82,159,19,171,82,159,241,170,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,26,171,82,159,82,159,82,159,33,171,82,159,82,159,82,159,82,159,82,159,82,159,61,171,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,15,173,29,173,82,159,82,159,22,173,82,159,36,173,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,82,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187682":[141,186,41,169,4,1,141,188,41,169,198]},{"1187694":[141,52,42,141,56,42,141,58,42,169,52]},{"1187706":[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]},{"1187809":[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]},{"1187956":[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]},{"1188035":[141,38,40,96,169,52]},{"1188042":[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]},{"1188155":[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]},{"1188191":[141,40,44,141,174,47,169,52]},{"1188200":[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]},{"1188239":[141,54,44,141,168,47,169,174]},{"1188248":[141,172,44,169,175]},{"1188254":[141,174,44,169,126]},{"1188260":[141,176,44,169,127]},{"1188266":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188284":[141,44,45,169,20]},{"1188290":[141,46,45,169,21]},{"1188296":[141,48,45,169,168]},{"1188302":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188320":[141,172,45,169,28]},{"1188326":[141,174,45,169,29]},{"1188332":[141,176,45,169,118]},{"1188338":[141,178,45,169,241]},{"1188344":[141,44,46,169,78]},{"1188350":[141,46,46,169,79]},{"1188356":[141,48,46,169,217]},{"1188362":[141,50,46,169,154]},{"1188368":[141,172,46,169,155]},{"1188374":[141,174,46,169,156]},{"1188380":[141,176,46,169,149]},{"1188386":[141,178,46,169,52]},{"1188392":[141,40,48,141,44,48,169,53]},{"1188401":[141,42,48,141,50,48,169,218]},{"1188410":[141,46,48,169,226]},{"1188416":[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]},{"1188497":[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]},{"1188581":[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]},{"1188638":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188654":[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]},{"1188746":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188767":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188783":[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]},{"1188825":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188846":[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]},{"1188912":[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]},{"1188942":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188960":[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]},{"1188987":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189008":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189026":[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]},{"1189095":[141,226,34,169,2,3,141,228,34,169,204]},{"1189107":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189131":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189152":[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]},{"1189194":[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]},{"1189227":[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]},{"1189322":[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]},{"1189455":[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]},{"1189548":[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]},{"1189623":[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]},{"1189757":[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]},{"1189802":[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]},{"1190120":[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]},{"1190165":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190183":[141,134,41,169,229]},{"1190189":[141,136,41,169]},{"1190194":[1,141,162,41,169,113]},{"1190201":[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]},{"1190246":[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]},{"1190282":[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]},{"1190309":[141,26,44,169,206]},{"1190315":[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]},{"1190379":[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]},{"1190434":[141,86,47,96,169,116,7,141]},{"1190443":[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]},{"1190485":[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]},{"1190701":[141,162,36,141,164,36,169,227]},{"1190710":[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]},{"1190837":[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]},{"1190867":[141,30,50,169,218]},{"1190873":[141,32,50,141,154,50,169,225]},{"1190882":[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]},{"1190927":[141,26,50,169,242]},{"1190933":[141,184,59,169,8,1,141,56,60,169,52]},{"1190945":[141,190,59,175,197,243,126,41,255]},{"1190955":[201,3]},{"1190958":[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]},{"1191101":[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,115,176,194,32,166,6,138,9]},{"1191332":[36,143,90,199,126,166,7,138,9]},{"1191342":[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,17,176,166,4,138,9]},{"1191375":[36,143,80,199,126,166,5,138,9]},{"1191385":[36,143,82,199,126,166,6,138,9]},{"1191395":[36,143,84,199,126,166,7,138,9]},{"1191405":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,115,176,194,32,166,6,138,9]},{"1191438":[36,143,96,199,126,166,7,138,9]},{"1191448":[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]},{"1191480":[175,24,244,126,32,76,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191502":[36,143,44,199,126,166,6,138,9]},{"1191512":[36,143,46,199,126,166,7,138,9]},{"1191522":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,76,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191558":[36,143,52,199,126,166,6,138,9]},{"1191568":[36,143,54,199,126,166,7,138,9]},{"1191578":[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]},{"1191611":[240,4,34,141,176,164,226,32,175,111,243,126,201,255,240,34,32,115,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191642":[9]},{"1191644":[36,143,100,199,126,166,7,138,9]},{"1191654":[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]},{"1191685":[24,105,7]},{"1191689":[41,248,255,170,175,202,80,127,41,255]},{"1191700":[208,3,130,215]},{"1191705":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191718":[165,26,41,12]},{"1191723":[74,74,240,58,201,1]},{"1191730":[240,98,201,2]},{"1191735":[208,3,130,180]},{"1191740":[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]},{"1191973":[144,6,200,233,100]},{"1191979":[128,245,132,5,160,144,201,10]},{"1191988":[144,6,200,233,10]},{"1191994":[128,245,132,6,160,144,201,1]},{"1192003":[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]},{"1192093":[240,11,175,100,243,126,63,206,176,164,208,1,107,124,234,176,32,115,176,194,32,166,6,138,9]},{"1192119":[36,143,148,199,126,166,7,138,9]},{"1192129":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192143":[128]},{"1192145":[64]},{"1192147":[32]},{"1192149":[16]},{"1192151":[8]},{"1192153":[4]},{"1192155":[2]},{"1192157":[1,128]},{"1192160":[64]},{"1192162":[32]},{"1192164":[16]},{"1192166":[8]},{"1192168":[4]},{"1192170":[6,177,6,177,33,177,58,177,86,177,111,177,136,177,161,177,186,177,213,177,240,177,11,178,36,178,63,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,173,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,173,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,173,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,173,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,173,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,173,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,173,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,173,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,173,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,173,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,173,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,173,176,107,159]},{"1192540":[4,112,159]},{"1192544":[5,112,159]},{"1192548":[6,112,159]},{"1192552":[7,112,159]},{"1192556":[8,112,159]},{"1192560":[9,112,159]},{"1192564":[10,112,159]},{"1192568":[11,112,159]},{"1192572":[12,112,159]},{"1192576":[13,112,159]},{"1192580":[14,112,159]},{"1192584":[15,112,107,159]},{"1192589":[244,126,159]},{"1192593":[101,127,159]},{"1192597":[102,127,159]},{"1192601":[103,127,159]},{"1192605":[104,127,159]},{"1192609":[105,127,159]},{"1192613":[106,127,159]},{"1192617":[107,127,159]},{"1192621":[108,127,159]},{"1192625":[109,127,159]},{"1192629":[110,127,159]},{"1192633":[111,127,107,72,226,48,173]},{"1192641":[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]},{"1192669":[141]},{"1192671":[67,169,128,141,1,67,169]},{"1192679":[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]},{"1192707":[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]},{"1192747":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192762":[72,171,173]},{"1192766":[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]},{"1192796":[67,141,1,67,169]},{"1192802":[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]},{"1192830":[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]},{"1192870":[67,194,48,171,104,162]},{"1192878":[138,107,165,17,34,156,135]},{"1192886":[197,179,164,221,179,164,252,179,164,253,180,164,19,181,164,169,128,141,16,7,34,61,137]},{"1192910":[34,51,131]},{"1192914":[34,135,148,164,169,7,133,20,230,17,107,32,28,182,100,200,100,201,34,37,181,164,208,11,162,15,169]},{"1192942":[159]},{"1192944":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,140,182,165,246,41,16,240,3,32,216,183,165,246,41,32,240,3,32,229,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,217,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,229,183,128,52,201,242,208,5,32,216,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193135":[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,138,183,32,63,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,37,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]},{"1193259":[16,112,208,3,130,161]},{"1193266":[202,16,244,194,32,162,14,169]},{"1193276":[159,208,80,127,202,202,16,248,32,216,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]},{"1193317":[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]},{"1193346":[133,4,34,14,178,160,226,32,175]},{"1193356":[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]},{"1193431":[107,169]},{"1193435":[133]},{"1193437":[133,2,169,11]},{"1193442":[133,4,166]},{"1193446":[191]},{"1193448":[16,112,58,41,31]},{"1193454":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193479":[16,6,24,105,8]},{"1193485":[230,2,133,4,165]},{"1193491":[26,133]},{"1193494":[201,16]},{"1193497":[144,201,96,173]},{"1193502":[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]},{"1193530":[141]},{"1193532":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,180,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]},{"1193610":[67,96,194,32,165,200,41,255]},{"1193619":[10,170,191,215,182,164,24,105,132,96,235,143,2,17]},{"1193634":[165,201,41,255]},{"1193639":[10,170,191,247,182,164,24,105,163,97,235,143,18,17]},{"1193654":[235,24,105,32]},{"1193659":[235,143,30,17]},{"1193664":[235,24,105,3]},{"1193669":[235,143,38,17]},{"1193674":[235,24,105,61]},{"1193679":[235,143,46,17]},{"1193684":[226,32,96,64]},{"1193689":[67]},{"1193691":[70]},{"1193693":[73]},{"1193695":[76]},{"1193697":[79]},{"1193699":[82]},{"1193701":[85]},{"1193703":[160]},{"1193705":[163]},{"1193707":[166]},{"1193709":[169]},{"1193711":[172]},{"1193713":[175]},{"1193715":[178]},{"1193717":[181]},{"1193719":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193739":[66]},{"1193741":[69]},{"1193743":[72]},{"1193745":[75]},{"1193747":[78]},{"1193749":[81]},{"1193751":[84]},{"1193753":[87]},{"1193755":[159]},{"1193757":[162]},{"1193759":[165]},{"1193761":[168]},{"1193763":[171]},{"1193765":[174]},{"1193767":[177]},{"1193769":[180]},{"1193771":[183]},{"1193773":[255]},{"1193775":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193798":[10,170,191,215,182,164,24,105,132,96,235,143,10,17]},{"1193813":[165,201,41,255]},{"1193818":[10,170,191,247,182,164,24,105,163,97,235,143,58,17]},{"1193833":[235,24,105,32]},{"1193838":[235,143,70,17]},{"1193843":[235,24,105,3]},{"1193848":[235,143,78,17]},{"1193853":[235,24,105,61]},{"1193858":[235,143,86,17]},{"1193863":[226,32,96,194,48,162,15]},{"1193871":[191]},{"1193873":[16,112,41,255]},{"1193878":[155,10,10,10,133]},{"1193884":[152,10,10,10,10,133,3,166]},{"1193893":[191,214,151,164,166,3,157,6,16,166]},{"1193904":[191,216,151,164,166,3,157,8,16,166]},{"1193915":[191,218,151,164,166,3,157,14,16,166]},{"1193926":[191,220,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]},{"1193973":[51,1,10,2,10]},{"1193979":[2,5,14,6,14]},{"1193985":[2]},{"1193987":[6,21,6]},{"1193991":[2,12,14,13,14]},{"1193997":[2,98,6,99,6]},{"1194003":[2,10,2,11,2]},{"1194009":[2,32,14,33,14]},{"1194015":[2,133,26,134,26]},{"1194021":[2,171,30,171,30,97,195]},{"1194029":[51,17,10,18,10]},{"1194035":[2]},{"1194037":[30,22,14]},{"1194041":[2,48,6]},{"1194045":[30]},{"1194047":[2,28,14,28,78]},{"1194053":[2,114,6,115,6]},{"1194059":[2,26,2,27,2]},{"1194065":[2,48,14,49,14]},{"1194071":[2,149,26,150,26]},{"1194077":[2,171,30,171,30,98,3]},{"1194085":[51,7,10,23,202]},{"1194091":[2,8,10,24,202]},{"1194097":[2,9,10,25,202]},{"1194103":[2,44,6,44,70]},{"1194109":[2,34,2,35,2]},{"1194115":[2,36,2,37,2]},{"1194121":[2,38,14,39,14]},{"1194127":[2,40,10,41,10]},{"1194133":[2,138,29]},{"1194137":[2,98,35]},{"1194141":[51,23,10,7,202]},{"1194147":[2,24,10,8,202]},{"1194153":[2,25,10,9,202]},{"1194159":[2,60,6,61,6]},{"1194165":[2,50,2,51,2]},{"1194171":[2,52,2,53,2]},{"1194177":[2,54,14,55,14]},{"1194183":[2,56,10,57,10]},{"1194189":[2,154,29]},{"1194193":[2,98,99]},{"1194197":[51,42,26,43,26]},{"1194203":[2,64,30,65,30]},{"1194209":[2,66,26,66,90]},{"1194215":[2,29,6,30,6]},{"1194221":[2,72,6,73,6]},{"1194227":[2,74,14,75,14]},{"1194233":[2,76,22,77,22]},{"1194239":[2,78,2,79,2]},{"1194245":[2]},{"1194247":[2,139,29,98,131]},{"1194253":[51,58,26,59,26]},{"1194259":[2,80,30,81,30]},{"1194265":[2,82,26,83,26]},{"1194271":[2,45,6,46,6]},{"1194277":[2,88,6,89,6]},{"1194283":[2,90,14,91,14]},{"1194289":[2,92,22,93,22]},{"1194295":[2,94,2,95,2]},{"1194301":[2]},{"1194303":[2,155,29,98,195]},{"1194309":[51,14,14,15,14]},{"1194315":[2,100,6,101,6]},{"1194321":[2,109,10,110,10]},{"1194327":[2,111,26,111,90]},{"1194333":[2,129,6,129,70]},{"1194339":[2,130,10,131,10]},{"1194345":[2,132,6,132,70]},{"1194351":[2,47,74,47,10]},{"1194357":[2,103,94,103,30,98,227]},{"1194365":[51,31,78,31,14]},{"1194371":[2,116,6,117,6]},{"1194377":[2,125,10,126,10]},{"1194383":[2,127,26,127,90]},{"1194389":[2,145,6,145,70]},{"1194395":[2,146,10,147,10]},{"1194401":[2,148,6,148,70]},{"1194407":[2,62,10,63,10]},{"1194413":[2,103,222,103,158,255,255,96,132]},{"1194423":[3,134,29,134,29,96,164]},{"1194431":[3,150,29,150,29,96,135]},{"1194439":[3,134,29,134,29,96,167]},{"1194447":[3,150,29,150,29,96,138]},{"1194455":[3,134,29,134,29,96,170]},{"1194463":[3,150,29,150,29,96,141]},{"1194471":[3,134,29,134,29,96,173]},{"1194479":[3,150,29,150,29,96,144]},{"1194487":[3,134,29,134,29,96,176]},{"1194495":[3,150,29,150,29,96,147]},{"1194503":[3,134,29,134,29,96,179]},{"1194511":[3,150,29,150,29,96,150]},{"1194519":[3,134,29,134,29,96,182]},{"1194527":[3,150,29,150,29,96,153]},{"1194535":[3,134,29,134,29,96,185]},{"1194543":[3,150,29,150,29,96,228]},{"1194551":[3,134,29,134,29,97,4]},{"1194559":[3,150,29,150,29,96,231]},{"1194567":[3,134,29,134,29,97,7]},{"1194575":[3,150,29,150,29,96,234]},{"1194583":[3,134,29,134,29,97,10]},{"1194591":[3,150,29,150,29,96,237]},{"1194599":[3,134,29,134,29,97,13]},{"1194607":[3,150,29,150,29,96,240]},{"1194615":[3,134,29,134,29,97,16]},{"1194623":[3,150,29,150,29,96,243]},{"1194631":[3,134,29,134,29,97,19]},{"1194639":[3,150,29,150,29,96,246]},{"1194647":[3,134,29,134,29,97,22]},{"1194655":[3,150,29,150,29,96,249]},{"1194663":[3,134,29,134,29,97,25]},{"1194671":[3,150,29,150,29,96,196]},{"1194679":[3]},{"1194681":[2]},{"1194683":[2,96,196]},{"1194687":[3,103,222,103,158,97,130]},{"1194695":[7]},{"1194697":[2]},{"1194699":[2]},{"1194701":[2]},{"1194703":[2,97,162,128,3]},{"1194709":[2]},{"1194711":[2,97,165,128,3]},{"1194717":[2]},{"1194719":[2,97,226]},{"1194723":[7]},{"1194725":[2]},{"1194727":[2]},{"1194729":[2]},{"1194731":[2,97,130]},{"1194735":[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]},{"1194763":[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]},{"1194802":[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]},{"1194929":[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]},{"1194989":[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,244,187,164,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,90,160,24,34,128,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195108":[208,11,40,90,160,24,34,128,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,159,155,160,107,72,175,67,244,126,208,4,34,168,192,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,244,187,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,244,187,164,104,34,168,160,2,107,58,16,8,169]},{"1195364":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195378":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,244,187,169,1,143]},{"1195404":[80,127,156,70,6,156,66,6,76,244,187,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,168,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195627":[83,127,201,3,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,158,191,164,226,48,169]},{"1195665":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195723":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195781":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,41,191,34,231,244,30,32,105,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,73,133,8,169,191,105]},{"1195838":[133,9,34,117,223,5,34,92,220,6,96]},{"1195851":[247,255,198]},{"1195856":[2]},{"1195861":[200]},{"1195864":[2]},{"1195867":[248,255,198]},{"1195872":[2]},{"1195877":[202,64]},{"1195880":[2,175,103,129,48,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,202,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195938":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195964":[98,41,110,41,107,41,105,41,127]},{"1195974":[111,41,97,41,106,41,112,41,127]},{"1195984":[112,41,107,41,127]},{"1195990":[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]},{"1196037":[33,218,162,128,142]},{"1196043":[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]},{"1196071":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196088":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1196179":[208,33,8,194,48,162]},{"1196187":[224,64]},{"1196190":[176,11,169,127]},{"1196195":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196218":[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]},{"1196265":[240,7,224,2,240,3,130,137]},{"1196274":[130,132]},{"1196277":[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]},{"1196423":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196440":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196456":[224,28]},{"1196459":[176,12,191,170,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196476":[175,211,244,126,41,255]},{"1196483":[58,201,64]},{"1196487":[176,63,10,10,10,10,10,170,192,60]},{"1196498":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196521":[176,11,169,127]},{"1196526":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,141,184,160,122,218,90,8,194,48,162]},{"1196682":[224,16]},{"1196685":[176,12,191,198,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196702":[175,152,192,126,41,255]},{"1196709":[58,201,64]},{"1196713":[176,63,10,10,10,10,10,170,192,48]},{"1196724":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196747":[176,11,169,127]},{"1196752":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[192]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,193,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,162,133,164]},{"2027":[128,50]},{"2379":[34,214,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,68,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[2]},{"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,122,199,160]},{"21847":[34,82,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,235,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,126,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[110,163,160]},{"30994":[240,163,160]},{"31001":[110,163,160]},{"31011":[240,163,160]},{"31046":[4,188,164]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[235,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,23,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,136,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,174,150,164,234]},{"60423":[34,33,194,164]},{"60790":[7,189,164]},{"61077":[28,181,160]},{"61133":[34,108,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,16,239,160]},{"65607":[28,238,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,87,194,160,234]},{"65894":[34,133,194,160]},{"66284":[34,168,194,160]},{"66292":[92,68,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,18,241,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,152,189,164,234,234]},{"67934":[139,248,160]},{"68474":[34,135,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[143,248,160]},{"69737":[34,221,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[143,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,61,246,160,234]},{"72216":[189,187,164]},{"72241":[34,133,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[19,238,160]},{"73340":[34,241,128,160,234]},{"73937":[34,149,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,21,239,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,4,248,160,234]},{"78138":[205,246,160]},{"78172":[34,51,189,164,34,219,153,160,234,234]},{"79603":[34,241,187,164]},{"79767":[34,167,189,164]},{"82376":[234,234]},{"82676":[143,248,160]},{"87784":[234,234,234]},{"87892":[34,26,246,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,79,240,160]},{"90651":[34,115,237,160,234,234]},{"93230":[34,238,157,164,234,234]},{"93325":[34,170,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,238,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,205,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[107,194,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[95,181,160]},{"173058":[95,181,160]},{"173307":[95,181,160]},{"173320":[95,181,160]},{"183384":[34,250,247,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188235":[237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,158,236,160,128,13]},{"189655":[34,12,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[50,194,164]},{"191439":[34,41,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,61,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,81,195,160,234]},{"192121":[169,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,10,179,160]},{"193157":[34,3,179,160]},{"193440":[34,240,219,160]},{"193472":[51,236,160]},{"193546":[34,240,219,160]},{"193578":[251,235,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[209,194,160]},{"194141":[34,193,195,160,234,234,234,234,234]},{"194177":[34,39,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,158,236,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,39,199,160]},{"195589":[89,176,160]},{"195710":[34,117,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[50,176,160]},{"195909":[60,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[168,192,160]},{"198721":[34,210,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,38,187,164]},{"198942":[34,77,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,8,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[243,175,160]},{"199993":[34,70,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,173,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,36,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[69,194,164]},{"212610":[88,194,164]},{"213139":[27,191,164]},{"213169":[147,133,160]},{"214205":[34,168,180,160]},{"214972":[58,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,84,188,164]},{"217579":[34,74,193,160]},{"224597":[34,240,218,160]},{"224693":[34,4,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,18,220,160,234]},{"226304":[34,69,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,243,238,160]},{"229634":[34,117,192,164]},{"230816":[40,179,160]},{"230955":[40,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,252,238,160,234]},{"233987":[90,187,164]},{"234731":[34,183,187,164]},{"234747":[34,7,239,160]},{"235953":[34,35,133,160,144,3]},{"236024":[200,204,160]},{"236047":[42,193,160]},{"236578":[34,83,134,164]},{"237653":[34,108,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,0,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[249,197,160]},{"238498":[34,130,196,160,128,3]},{"238562":[34,197,198,160,240,4,234]},{"238751":[34,134,220,160]},{"238964":[34,134,220,160]},{"239190":[34,134,220,160]},{"239964":[77,189,164]},{"240044":[92,223,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,102,219,160]},{"241165":[34,102,219,160]},{"241175":[34,235,128,164]},{"241294":[34,102,219,160]},{"241304":[34,235,128,164]},{"241814":[34,102,219,160,24,125,139,176]},{"241869":[152,236,160]},{"241877":[34,102,219,160,24,125,139,176]},{"242942":[34,12,237,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,204,188,164,234]},{"243067":[234,234,34,181,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,132,219,160,234]},{"250478":[34,186,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,29,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,17,242,160,234]},{"273608":[34,164,182,160,76,230,172]},{"275716":[34,136,182,160,234]},{"276202":[34,197,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,115,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,86,239,160,234,234]},{"279880":[92,10,195,164]},{"280037":[34,44,235,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[152,236,160]},{"280106":[92,198,226,160,234]},{"280265":[168,210,160]},{"280287":[168,209,160]},{"280314":[168,210,160]},{"280335":[34,196,179,160]},{"282028":[34,98,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,68,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,102,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,201,200,160,234]},{"296453":[92,126,194,164,234]},{"296466":[168,211]},{"296471":[169,211]},{"296480":[168,213]},{"296488":[168,211]},{"296493":[169,211]},{"296502":[168,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[168,214]},{"296810":[184,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[216,206]},{"297052":[200,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,96,226,160,234]},{"297144":[168,209]},{"297200":[216,206]},{"297225":[200,207]},{"297263":[169,215]},{"297292":[34,20,195,160]},{"297309":[176,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,28,195,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,8,224,160]},{"324619":[34,11,153,160]},{"324675":[34,182,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,100,237,160,34,158,188,164,234,234,234,234,234,234]},{"324996":[34,149,194,160]},{"325098":[169,2,0,234]},{"325131":[34,148,237,160]},{"325203":[34,155,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":[44,239,160]},{"342245":[34,59,132,160,34,31,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,125,247,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,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[235,187,164]},{"409856":[34,25,227,160]},{"410028":[94,255,161]},{"410347":[34,155,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[233,238,160]},{"412876":[92,105,178,164]},{"413015":[107]},{"413094":[126,148,164]},{"413109":[34,64,237,160]},{"413141":[34,142,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,35,149,164,234,234,234,234]},{"413264":[34,74,149,164,234,234,234,234,234,234]},{"413297":[92,113,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,204,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,142,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,106,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,251,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,106,178,164]},{"415678":[34,163,149,164]},{"416378":[22,150,164]},{"416491":[34,237,149,164,234]},{"416529":[34,200,149,164]},{"416588":[234,234,234,234]},{"416912":[34,228,149,164]},{"416937":[34,214,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":[69,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,110,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,106,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,136,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,85,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,23,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,106,155,160]},{"450360":[34,224,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,76,184,160,234]},{"450492":[34,74,155,160,234,234,234]},{"450861":[34,98,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,240,132,164]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,221,155,160,234]},{"452559":[34,203,155,160,234]},{"452581":[34,239,155,160,234]},{"452634":[96]},{"453064":[34,10,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,98,193,160,234,234,76,230,236]},{"453867":[34,1,156,160,234]},{"453892":[34,19,156,160]},{"454092":[34,124,155,160,234,234,234,234,234]},{"454233":[34,124,155,160,234,234,234,234,234]},{"454256":[34,202,194,160,234]},{"454282":[34,124,155,160,234,234,234,234,234]},{"454459":[34,124,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,209,216,160]},{"457513":[34,247,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,40,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,84,237,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,42,227,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[36,235,160]},{"487403":[169,2,0,234]},{"487935":[34,82,227,160]},{"488156":[34,82,227,160]},{"488213":[34,82,227,160]},{"488242":[34,82,227,160]},{"488309":[34,82,227,160]},{"488340":[34,82,227,160]},{"488721":[34,82,227,160]},{"489560":[34,82,227,160]},{"490022":[34,82,227,160]},{"490060":[34,82,227,160]},{"490164":[34,82,227,160]},{"490184":[34,82,227,160]},{"490209":[34,82,227,160]},{"490257":[34,82,227,160]},{"490438":[34,98,227,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,156,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,80,241,160]},{"900244":[34,164,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,155,241,160,234]},{"900437":[92,53,240,160,234]},{"900447":[34,12,246,160,234,234,234]},{"900458":[34,241,187,164]},{"901799":[34,110,153,164,107,32,222,201,107]},{"903876":[34,221,241,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,138,235,160,96]},{"954852":[187,181,160]},{"955117":[105,235,160]},{"955529":[183,181,160]},{"962925":[148,181,160]},{"962951":[148,181,160]},{"963167":[148,181,160]},{"963214":[148,181,160]},{"965041":[148,181,160]},{"965069":[148,181,160]},{"965214":[148,181,160]},{"965298":[148,181,160]},{"965316":[148,181,160]},{"967797":[34,252,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,22,180,160]},{"972824":[99,181,160]},{"972834":[99,181,160]},{"972851":[99,181,160]},{"974665":[92,149,197,160,234]},{"974706":[210,197,160]},{"974722":[183,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,166,197,160,234,234]},{"975332":[34,132,197,160,234,234]},{"975401":[255]},{"976357":[144,181,160]},{"976423":[144,181,160]},{"978658":[128,181,160]},{"979078":[34,4,220,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":[4,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,96,196,160]},{"983466":[128,181,160]},{"983651":[128,181,160]},{"988539":[140,181,160]},{"988657":[140,181,160]},{"988668":[140,181,160]},{"988874":[140,181,160]},{"988902":[140,181,160]},{"989142":[140,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[132,181,160]},{"999246":[136,181,160]},{"999265":[136,181,160]},{"999359":[136,181,160]},{"999574":[136,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,90,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[103,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[103,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,166,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,122,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,141,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,137,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,112,179,160,122,250,107,218,90,34,168,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,59,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,59,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,59,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,59,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,59,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,59,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,59,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,59,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,59,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,59,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,59,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,59,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,59,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,59,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,59,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,59,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,59,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,59,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,170,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,98,217,160,76,49,145,201,251,208,7,34,30,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,170,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,98,217,160,76,114,147,201,251,208,7,34,30,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,170,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,98,217,160,128,8,201,99,208,4,34,30,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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]},{"1055520":[240,5,169,8]},{"1055525":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055538":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055560":[2,107,175,19,130,48,41,255]},{"1055569":[240,5,169,8]},{"1055574":[128,7,175,72,128,48,41,255]},{"1055583":[24,101,234,48,3,169]},{"1055591":[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]},{"1055618":[201,255]},{"1055621":[208,1,107,175,22,244,126,41,32]},{"1055631":[240,4,169]},{"1055636":[107,173,12,4,41,255]},{"1055643":[201,255]},{"1055646":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055670":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,81,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055702":[107,169,136,21,133]},{"1055708":[107,175,69,128,48,208,6,169,16,22,133]},{"1055720":[107,169,144,21,133]},{"1055726":[107,175,69,128,48,208,6,169,24,22,133]},{"1055738":[107,169,152,21,133]},{"1055744":[107,175,69,128,48,208,6,169,32,22,133]},{"1055756":[107,169,160,21,133]},{"1055762":[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]},{"1055854":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055868":[144,240,175,22,244,126,41,32]},{"1055877":[240,3,130,200,1,175,69,128,48,41,1]},{"1055889":[208,3,130,231]},{"1055894":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055916":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055933":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055950":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055967":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055984":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056001":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056018":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056035":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056052":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056069":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056086":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056103":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056120":[141,165,22,194,32,175,69,128,48,41,2]},{"1056132":[208,3,130,201]},{"1056137":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056150":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056165":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056180":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056195":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056210":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056225":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056240":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056255":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056270":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056285":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056300":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056315":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056330":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056345":[208,3,130,170,1,175,69,128,48,41,4]},{"1056357":[208,3,130,201]},{"1056362":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056375":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056390":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056405":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056420":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056435":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056450":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056465":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056480":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056495":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056510":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056525":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056540":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056555":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056570":[208,3,130,201]},{"1056575":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056588":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056603":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056618":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056633":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056648":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056663":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056678":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056693":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056708":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056723":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056738":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056753":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056768":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056787":[191,82,161,160,157,234,18,191,102,161,160,157,42,19,191,122,161,160,157,106,19,191,142,161,160,157,170,19,191,162,161,160,157,234,19,191,182,161,160,157,42,20,191,202,161,160,157,106,20,191,222,161,160,157,170,20,191,242,161,160,157,234,20,232,232,224,20]},{"1056855":[144,186,175,116,243,126,41,4]},{"1056864":[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]},{"1056897":[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]},{"1056930":[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]},{"1056963":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056984":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057005":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057026":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057047":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057068":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057089":[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]},{"1057712":[143,114,243,126,173,10,2,208,14,169]},{"1057723":[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]},{"1057757":[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]},{"1057838":[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]},{"1057881":[165,12,201,232,3,144,3,130,24]},{"1057891":[201,100]},{"1057894":[144,3,130,97]},{"1057899":[201,10]},{"1057902":[144,3,130,170]},{"1057907":[201,1]},{"1057910":[144,3,130,243]},{"1057915":[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]},{"1057945":[166,133,14,165,14,159]},{"1057952":[201,126,232,232,169,56]},{"1057959":[159]},{"1057961":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1057975":[201,126,232,232,169]},{"1057982":[159]},{"1057984":[201,126,232,232,165,14,24,105,8]},{"1057994":[133,14,100,10,165,12,201,100]},{"1058003":[144,8,56,233,100]},{"1058009":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121]},{"1058026":[166,133,14,165,14,159]},{"1058033":[201,126,232,232,169,56]},{"1058040":[159]},{"1058042":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058056":[201,126,232,232,169]},{"1058063":[159]},{"1058065":[201,126,232,232,165,14,24,105,8]},{"1058075":[133,14,100,10,165,12,201,10]},{"1058084":[144,8,56,233,10]},{"1058090":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121]},{"1058107":[166,133,14,165,14,159]},{"1058114":[201,126,232,232,169,56]},{"1058121":[159]},{"1058123":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058137":[201,126,232,232,169]},{"1058144":[159]},{"1058146":[201,126,232,232,165,14,24,105,8]},{"1058156":[133,14,100,10,165,12,201,1]},{"1058165":[144,8,56,233,1]},{"1058171":[230,10,128,243,133,12,192,255,208,10,160]},{"1058183":[165,14,24,121]},{"1058188":[166,133,14,165,14,159]},{"1058195":[201,126,232,232,169,56]},{"1058202":[159]},{"1058204":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058218":[201,126,232,232,169]},{"1058225":[159]},{"1058227":[201,126,232,232,165,14,24,105,8]},{"1058237":[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]},{"1058308":[252,255,248,255,218,90,8,194,48,162]},{"1058320":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058335":[208,13,175,153,80,127,41,255]},{"1058344":[223,3,200,48,208,44,226,32,191]},{"1058354":[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]},{"1058396":[200,48,41,255]},{"1058401":[201,255]},{"1058404":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058427":[226,32,162]},{"1058432":[160]},{"1058435":[152,207,96,80,127,144,3,130,172]},{"1058445":[191,1,201,48,201,255,208,3,130,161]},{"1058456":[191]},{"1058458":[201,48,207,80,80,127,240,3,130,137]},{"1058469":[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]},{"1058506":[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,180,167,160,170,32,211,167,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]},{"1058637":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058651":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,14,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,15,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,16,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]},{"1058744":[128]},{"1058749":[1]},{"1058752":[169,234,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,49,145,160,34,45,213]},{"1058791":[194,16,96,32,238,167,107,173]},{"1058800":[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]},{"1058830":[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]},{"1058867":[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]},{"1059008":[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]},{"1059173":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059194":[175,81,80,127,201,255,208,3,76,103,169,139,75,171,34,231,244,30,32,181,169,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]},{"1059245":[32,210,173,32,210,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059268":[201,2,208,3,130,227]},{"1059275":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059290":[165,26,41,16,240,12,189,73,170,159]},{"1059301":[201,126,232,224,16,144,244,189,89,170,159]},{"1059313":[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]},{"1059372":[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]},{"1059403":[248,255]},{"1059408":[2]},{"1059413":[16]},{"1059416":[2]},{"1059419":[248,255]},{"1059424":[2]},{"1059429":[16,64]},{"1059432":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,158,133,8,169,170,133,9,128,8,169,166,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059490":[70,10]},{"1059493":[2]},{"1059498":[70,74]},{"1059501":[2,218,162]},{"1059505":[165,26,41,64,240,12,189,32,171,159]},{"1059516":[201,126,232,224,16,144,244,189,48,171,159]},{"1059528":[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]},{"1059587":[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]},{"1059618":[248,255,132]},{"1059623":[2]},{"1059628":[16]},{"1059631":[2]},{"1059634":[248,255,132]},{"1059639":[2]},{"1059644":[16,64]},{"1059647":[2,218,162]},{"1059651":[165,26,41,64,240,12,189,178,171,159]},{"1059662":[201,126,232,224,16,144,244,189,194,171,159]},{"1059674":[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]},{"1059733":[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]},{"1059764":[248,255,142]},{"1059769":[2]},{"1059774":[16]},{"1059777":[2]},{"1059780":[248,255,142]},{"1059785":[2]},{"1059790":[16,64]},{"1059793":[2,218,90,8,160]},{"1059799":[90,152,74,74,168,175,95,80,127,57,14,173,240,3,122,128,48,122,173,238]},{"1059820":[221,32,15,208,39,32,165,173,32,17,173,34,230,131,6,144,3,32,197,173,32,123,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,39,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]},{"1059948":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059964":[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,14,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,14,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]},{"1060117":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060138":[58,10,168,185,199,174,133]},{"1060146":[122,104,24,113]},{"1060151":[24,105,2]},{"1060155":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060168":[13,194,32,90,200,200,24,113]},{"1060177":[122,72,175,81,80,127,41,128]},{"1060186":[240,7,104,24,105,4]},{"1060193":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060216":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060233":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060246":[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]},{"1060274":[165,35,105]},{"1060278":[133,8,165,32,105,8,133,1,165,33,105]},{"1060290":[133,9,96,218,34]},{"1060296":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060318":[160]},{"1060320":[175,81,80,127,41,3,201,3,208,5,32,3,174,128,4,201,2,208,5,32,3,174,128,4,201,1,208,3,32,3,174,122,250,171,96,175,95,80,127,57,14,173,240,3,130,178]},{"1060367":[90,175,81,80,127,41,3,58,10,168,194,32,185,199,174,133]},{"1060384":[163,1,10,10,168,177]},{"1060391":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060404":[208,8,177]},{"1060408":[143,39,192,126,128,10,177]},{"1060416":[24,105,4]},{"1060420":[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,229,174,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,114,147,160,143,42,192,126,169]},{"1060487":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060513":[143,44,192,126,32,186,175,169,2,218,72,175,97,80,127,170,104,32,113,175,250,175,81,80,127,41,128,208,3,32,232,174,200,232,232,232,232,96,205,174,209,174,217,174,8]},{"1060559":[40]},{"1060561":[240,255,40]},{"1060565":[32]},{"1060567":[40]},{"1060569":[216,255,40]},{"1060573":[8]},{"1060575":[40]},{"1060577":[56]},{"1060579":[40]},{"1060581":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060600":[58,10,168,185,199,174,133]},{"1060608":[185,95,175,133,2,122,90,152,10,10,168,177]},{"1060621":[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,82,164,226,32,133,6,100,7,72,169]},{"1060660":[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,101,175,103,175,107,175]},{"1060710":[255]},{"1060712":[128,128,255]},{"1060716":[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]},{"1060797":[194,32,191,37,192,126,24,105,4]},{"1060807":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060823":[159,47,192,126,191,41,192,126,24,105,16]},{"1060835":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060877":[72,165,2,72,169,16,128,133]},{"1060886":[169,48]},{"1060889":[133,2,169,2]},{"1060894":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060941":[143]},{"1060943":[80,127,32,156,176,34,79,150,160,107,72,175]},{"1060956":[80,127,240,6,34,75,176,160,128,13,32,156,176,34,12,151,160,169]},{"1060975":[143,152,192,126,104,107,32,156,176,201,36,208,24,90,160,36,34,141,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061060":[143,152,192,126,169,36,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]},{"1061335":[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]},{"1061402":[191,227,178,160,197,4,144,3,232,128,245,191,228,178,160,133,6,100,7,194,32,138,10,10,170,191,229,178,160,141,232,80,191,231,178,160,141,234,80,173]},{"1061443":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061461":[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,207,176,173,236,80,10,10,170,189]},{"1061498":[81,56,229,8,157]},{"1061504":[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]},{"1061536":[81,141,228,80,189,2,81,141,230,80,32,207,176,173]},{"1061551":[81,56,229,8,141]},{"1061557":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,203,176,160,141,232,80,173,234,80,239,205,176,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,34,49,145,160,72,165,138,201,3,240,6,34,246,178,160,128,4,34,233,178,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,17,179,160,169,235,143]},{"1061703":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061727":[13,165,33,153,32,13,169]},{"1061735":[153,32,15,169,127,153,112,15,107,72,8,34,154,179,160,144,31,156,18,1,156,239,3,169]},{"1061760":[133,93,194,32,165,138,201,48]},{"1061769":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061793":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061806":[128,16,201,48]},{"1061811":[208,11,165,34,201]},{"1061817":[2,144,4,56,130,1]},{"1061824":[24,226,32,107,191,168,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061845":[226,32,34,16,247,8,169,52,145,144,200,191,168,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061880":[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]},{"1061942":[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,162,180,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]},{"1062089":[13,173,219,15,233]},{"1062095":[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]},{"1062134":[13,173,219,15,233]},{"1062140":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062165":[254,127,208,245,169,4,107,34,227,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,245,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,245,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062238":[107,169]},{"1062241":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,211,181,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,211,181,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,211,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,211,181,160,107,218,8,194,32,41,127]},{"1062362":[10,170,191]},{"1062366":[82,127,26,41,255,3,159]},{"1062374":[82,127,170,10,191]},{"1062380":[128,175,40,250,107,218,8,194,48,162]},{"1062392":[191,40,182,160,159]},{"1062398":[82,127,232,232,191,40,182,160,159]},{"1062408":[82,127,232,232,191,40,182,160,159]},{"1062418":[82,127,232,232,191,40,182,160,159]},{"1062428":[82,127,232,232,224,127]},{"1062435":[144,211,40,250,107]},{"1062442":[64]},{"1062444":[128]},{"1062446":[192]},{"1062449":[1,64,1,128,1,192,1]},{"1062457":[2,64,2,128,2,192,2]},{"1062465":[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,72,182,160,175,35,128,48,208,4,34,104,182,160,104,107,72,169]},{"1062567":[143,65,80,127,175,34,128,48,201,1,208,4,34,72,182,160,175,35,128,48,201,1,208,4,34,104,182,160,104,107,72,175,34,128,48,201,2,208,4,34,72,182,160,175,35,128,48,201,2,208,4,34,104,182,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]},{"1062733":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062750":[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]},{"1062821":[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]},{"1062857":[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,28,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]},{"1062982":[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]},{"1063008":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063028":[2,156,5,2,169]},{"1063034":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,126,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063065":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063082":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063099":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063116":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063133":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063150":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063167":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063184":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063207":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063224":[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]},{"1063257":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063280":[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]},{"1063312":[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]},{"1063370":[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]},{"1063396":[192,59,208,3,130,96]},{"1063403":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063428":[201,15,1,208,3,130,59]},{"1063436":[201,16,1,208,3,130,51]},{"1063444":[201,28,1,208,3,130,43]},{"1063452":[201,31,1,208,3,130,35]},{"1063460":[201,255]},{"1063463":[208,3,130,27]},{"1063468":[201,20,1,208,3,130,19]},{"1063476":[201,21,1,208,3,130,11]},{"1063484":[201,22,1,208,3,130,3]},{"1063492":[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]},{"1063524":[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]},{"1063677":[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]},{"1063715":[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]},{"1063753":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063771":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063789":[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]},{"1063825":[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]},{"1063863":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063881":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,106,192,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]},{"1063985":[208,9,32,4,191,32,53,191,130,64,2,192,1,208,6,32,4,191,130,54,2,192,2,208,6,32,4,191,130,44,2,192,3,208,6,32,4,191,130,34,2,192,4,208,6,32,53,191,130,24,2,192,5,208,6,32,53,191,130,14,2,192,6,208,6,32,53,191,130,4,2,192,7,144,10,192,14,176,6,32,102,191,130,246,1,192,20,208,9,32,194,190,32,102,191,130,233,1,192,15,144,10,192,23,176,6,32,102,191,130,219,1,192,23,208,6,32,202,191,130,209,1,192,24,144,10,192,26,176,6,32,102,191,130,195,1,192,26,208,9,32,227,190,32,102,191,130,182,1,192,29,208,6,32,102,191,130,172,1,192,27,144,10,192,32,176,6,32,114,191,130,158,1,192,32,208,6,32,242,191,130,148,1,192,33,208,6,32,102,191,130,138,1,192,34,144,10,192,36,176,6,32,14,192,130,124,1,192,36,208,6,32,30,192,130,114,1,192,37,208,6,32,62,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,134,192,130,87,1,192,40,208,6,32,134,192,130,77,1,192,41,208,6,32,102,191,130,67,1,192,42,144,10,192,46,176,6,32,102,191,130,53,1,192,49,208,6,32,134,192,130,43,1,192,50,208,6,32,94,192,130,33,1,192,51,208,6,32,156,192,130,23,1,192,55,144,10,192,58,176,6,32,142,191,130,9,1,192,58,144,10,192,60,176,6,32,83,191,130,251]},{"1064321":[192,60,208,6,32,102,191,130,241]},{"1064331":[192,61,208,6,32,102,191,130,231]},{"1064341":[192,62,144,10,192,64,176,6,32,230,191,130,217]},{"1064355":[192,72,208,6,32,102,191,130,207]},{"1064365":[192,73,208,6,32,4,191,130,197]},{"1064375":[192,74,208,9,32,194,190,32,102,191,130,184]},{"1064388":[192,75,208,9,32,161,190,32,114,191,130,171]},{"1064401":[192,76,208,9,32,170,191,32,134,192,130,158]},{"1064414":[192,77,144,10,192,80,176,6,32,170,191,130,144]},{"1064428":[192,80,208,6,32,4,191,130,134]},{"1064438":[192,81,144,10,192,85,176,6,32,170,191,130,120]},{"1064452":[192,88,208,6,32,83,191,130,110]},{"1064462":[192,94,208,6,32,4,191,130,100]},{"1064472":[192,95,208,6,32,53,191,130,90]},{"1064482":[192,96,208,6,32,14,192,130,80]},{"1064492":[192,97,208,6,32,114,191,130,70]},{"1064502":[192,100,144,10,192,102,176,6,32,83,191,130,56]},{"1064516":[192,112,144,10,192,128,176,6,32,156,192,130,42]},{"1064530":[192,128,144,10,192,144,176,6,32,62,192,130,28]},{"1064544":[192,144,144,10,192,160,176,6,32,94,192,130,14]},{"1064558":[192,160,144,10,192,176,176,6,32,30,192,130]},{"1064572":[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,128,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064724":[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,30,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,102,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,172,192,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,81,239,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]},{"1065320":[201,2]},{"1065323":[208,14,175,140,243,126,41,192]},{"1065332":[201,192]},{"1065335":[240,79,128,64,201,1]},{"1065342":[208,14,175,142,243,126,41,192]},{"1065351":[201,192]},{"1065354":[240,60,128,45,201,5]},{"1065361":[208,14,175,140,243,126,41,48]},{"1065370":[201,48]},{"1065373":[240,41,128,26,201,13]},{"1065380":[208,16,175,140,243,126,137,4]},{"1065389":[240,12,41,3]},{"1065394":[208,20,128,5,201,16]},{"1065401":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065414":[208,5,169,79,61,128,6,32,215,193,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]},{"1065461":[41,255,239,153,4]},{"1065467":[185,62]},{"1065470":[41,255,239,153,62]},{"1065476":[185,68]},{"1065479":[41,255,239,153,68]},{"1065485":[185,128]},{"1065488":[41,255,239,153,128]},{"1065494":[185,130]},{"1065497":[41,255,239,153,130]},{"1065503":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065524":[41,255,239,153,132]},{"1065530":[185,126]},{"1065533":[41,255,239,153,126]},{"1065539":[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]},{"1065577":[201,144]},{"1065580":[208,3,169,127]},{"1065585":[9]},{"1065587":[36,143,100,199,126,165,5,41,255]},{"1065597":[9]},{"1065599":[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,198,241,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065711":[72,165,2,72,169,16,128,133]},{"1065720":[169,48]},{"1065723":[133,2,169,4]},{"1065728":[34,59,150,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065774":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065795":[143]},{"1065797":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065811":[157,192,13,72,169,1,143]},{"1065819":[80,127,165,93,201,20,240,68,169]},{"1065829":[143]},{"1065831":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065859":[72,165,2,72,169,16,128,133]},{"1065868":[169,48]},{"1065871":[133,2,169,3]},{"1065876":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065901":[80,127,240,6,34,86,195,160,128,7,189,128,14,34,187,150,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]},{"1065944":[72,165,2,72,169,16,128,133]},{"1065953":[169,48]},{"1065956":[133,2,169,4]},{"1065961":[34,59,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,151,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]},{"1066019":[143,68,243,126,107,175,123,243,126,41,255]},{"1066031":[201,2]},{"1066034":[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]},{"1066067":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066082":[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]},{"1066118":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066132":[173,91,3,41,1,208,3,130,134]},{"1066142":[90,8,139,75,171,226,48,165,27,240,3,76,33,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066179":[129,48,143]},{"1066183":[254,127,34,93,246,29,162]},{"1066191":[165,47,201,4,240,1,232,191,37,197,160,153,80,13,169]},{"1066207":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,39,197,160,41,240,153,16,13,165,35,105]},{"1066241":[153,48,13,165,32,24,105,22,41,240,153]},{"1066253":[13,165,33,105]},{"1066258":[153,32,13,169]},{"1066263":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066280":[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]},{"1066311":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066332":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066402":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066433":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066527":[72,165,2,72,169,64,129,133]},{"1066536":[169,48]},{"1066539":[133,2,169,10]},{"1066544":[34,59,150,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066564":[254,127,34,93,246,29,162]},{"1066572":[165,47,201,4,240,1,232,191,169,198,160,153,80,13,169]},{"1066588":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,171,198,160,41,240,153,16,13,165,35,105]},{"1066622":[153,48,13,165,32,24,105,22,41,240,153]},{"1066634":[13,165,33,105]},{"1066639":[153,32,13,169]},{"1066644":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066668":[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]},{"1066747":[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]},{"1066774":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066813":[72,165,2,72,169,16,128,133]},{"1066822":[169,48]},{"1066825":[133,2,169,5]},{"1066830":[34,59,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]},{"1066884":[201,35,208,6,160,93,92,71,213]},{"1066894":[201,72,208,6,160,96,92,71,213]},{"1066904":[201,36,176,6,160,91,92,71,213]},{"1066914":[201,55,176,6,160,92,92,71,213]},{"1066924":[201,57,176,6,160,93,92,71,213]},{"1066934":[160,50,92,71,213]},{"1066940":[192,9,48]},{"1066944":[96]},{"1066946":[144]},{"1066948":[192]},{"1066951":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066975":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066993":[9,48,9,96,9,144,9,240,9]},{"1067004":[240]},{"1067006":[32,10,80,10,96,6]},{"1067013":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067035":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067051":[6,48,6]},{"1067055":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067071":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067092":[127,188,199,160,107,165]},{"1067099":[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]},{"1067130":[132,175,24,105]},{"1067135":[136,133]},{"1067138":[226,32,169,175,133,2,34,116,227,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,202,218,160,162,1,128,2,162]},{"1067196":[171,40,122,104,133,2,104,133,1,104,133]},{"1067208":[96,218,173,216,2,34,170,227,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067691":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,202,218,160,130,116,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,202,218,160,130,72,1,201,109,208,7,34,225,190,164,130,61,1,201,110,208,7,34,225,190,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067938":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067963":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1067986":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068005":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068022":[56,233,8,170,169,1,224]},{"1068030":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068053":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068072":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068089":[56,233,8,170,169,1,224]},{"1068097":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068120":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068142":[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]},{"1068174":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068193":[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]},{"1068219":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,74,239,160,173,216,2,72,175,152,192,126,208,12,104,32,121,218,141,216,2,32,79,218,128,1,104,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,170,218,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]},{"1068382":[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]},{"1068495":[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]},{"1068535":[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]},{"1068565":[175,91,243,126,201]},{"1068571":[208,8,169,34,141,216,2,130,171]},{"1068581":[169,35,141,216,2,130,163]},{"1068589":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068607":[169,28,141,216,2,130,137]},{"1068615":[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]},{"1068647":[175,64,243,126,26,74,201]},{"1068655":[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,98,217,160,141,216,2,235,32,237,217,169,255,143,144,80,127,128,36,201,99,208,15,34,30,218,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]},{"1068752":[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]},{"1069007":[4,4,4,4,4,5]},{"1069019":[4]},{"1069021":[4]},{"1069024":[4]},{"1069036":[4]},{"1069042":[5]},{"1069052":[4,4,4]},{"1069066":[4,4]},{"1069069":[4]},{"1069073":[4]},{"1069080":[4]},{"1069089":[4]},{"1069160":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069240":[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]},{"1069289":[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]},{"1069328":[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]},{"1069485":[2,2]},{"1069493":[2,2,2,2,2,2]},{"1069500":[2]},{"1069502":[2,2]},{"1069505":[2,2,2,2,2,2,2,2,2,2,2]},{"1069517":[2,2,2,2,2]},{"1069523":[2,2,2,2,2,2,2,2,2]},{"1069535":[2,2,2,2,2,2,2,2,2,2,2]},{"1069548":[2]},{"1069550":[2,2,2]},{"1069554":[2,2,2,2,2,2]},{"1069561":[2,2,2,2,2,2,2,2]},{"1069570":[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]},{"1069656":[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]},{"1069842":[4,4,4]},{"1069848":[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]},{"1070761":[128]},{"1070763":[64]},{"1070765":[32]},{"1070767":[16]},{"1070769":[8]},{"1070771":[4]},{"1070773":[2]},{"1070775":[1,128]},{"1070778":[64]},{"1070780":[32]},{"1070782":[16]},{"1070784":[8]},{"1070786":[4]},{"1071017":[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,121,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,247,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,247,216,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]},{"1071471":[160,48,107,162]},{"1071476":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071489":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071503":[168,152,32,201,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071523":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071547":[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]},{"1071587":[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]},{"1071624":[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]},{"1071663":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071676":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071699":[191]},{"1071701":[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]},{"1071741":[191]},{"1071743":[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,162]},{"1071788":[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,96,100,17,100,176,92,167,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071851":[13,24,105,3,107,189,32,14,201,136,208,9,32,40,219,201,4,144,1,58,107,32,40,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071897":[200,49,74,74,74,74,107,40,191]},{"1071907":[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]},{"1071957":[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]},{"1071991":[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,20,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]},{"1072193":[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]},{"1072248":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072274":[165,27,240,121,194,32,165,160,201,14]},{"1072285":[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]},{"1072320":[201,126]},{"1072323":[208,33,165,34,41,255,1,201,104]},{"1072333":[144,60,201,136]},{"1072338":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072358":[201,222]},{"1072361":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072386":[144,7,201,154]},{"1072391":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,111,221,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,111,221,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]},{"1072529":[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]},{"1072582":[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,131,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072635":[174,2,32,224,83,45,240,3,130,253]},{"1072646":[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]},{"1072711":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072811":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072869":[90,194,32,191]},{"1072874":[217,48,133]},{"1072878":[226,32,178]},{"1072882":[122,132]},{"1072885":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072905":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072926":[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]},{"1073038":[208,13,173,11,1,41,255]},{"1073046":[201,59]},{"1073049":[208,63,128,56,201,107]},{"1073056":[208,58,175,19,130,48,201,1]},{"1073065":[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]},{"1073098":[240,14,175,167,80,127,41,4]},{"1073107":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073122":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073141":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073166":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073182":[66,169,255,141,64,33,169,34,133]},{"1073192":[169,248,133,1,169,160,34,29,137]},{"1073202":[169,129,141]},{"1073206":[66,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]},{"1073242":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073258":[232,226,32,168,173]},{"1073264":[32,137,64,208,249,173]},{"1073271":[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]},{"1073308":[32,137,64,208,249,173]},{"1073315":[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]},{"1073366":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073392":[175,169,80,127,240,85,173]},{"1073400":[32,137,64,240,4,92,220,128]},{"1073409":[173]},{"1073411":[32,137,8,240,4,92,220,128]},{"1073420":[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]},{"1073456":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073475":[143,169,80,127,92,220,128]},{"1073483":[173,39,1,205,41,1,208,4,92,220,128]},{"1073495":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073525":[224,255,208,4,92,220,128]},{"1073533":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073549":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073565":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073582":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073596":[141,43,1,92,220,128]},{"1073603":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073622":[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]},{"1073654":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073679":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073721":[90,194,32,191]},{"1073726":[217,48,133]},{"1073730":[226,32,178]},{"1073734":[122,132]},{"1073737":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073760":[141,44,1,72,34,114,221,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]},{"1073829":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073842":[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]},{"1073912":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073925":[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]},{"1073992":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1074010":[87,127,107,191]},{"1074015":[18,127,107,156,240,28,156,241,28,169]},{"1074026":[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]},{"1074058":[226,32,183]},{"1074062":[159]},{"1074064":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074083":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074107":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074125":[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]},{"1074151":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074169":[226,32,183]},{"1074173":[159]},{"1074175":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074194":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074214":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074232":[226,32,183]},{"1074236":[159]},{"1074238":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074257":[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]},{"1074288":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074306":[226,32,183]},{"1074310":[159]},{"1074312":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074331":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074351":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074369":[226,32,183]},{"1074373":[159]},{"1074375":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074394":[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]},{"1074423":[133]},{"1074425":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074443":[226,32,183]},{"1074447":[159]},{"1074449":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074468":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074488":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074506":[226,32,183]},{"1074510":[159]},{"1074512":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074531":[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]},{"1074562":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074580":[226,32,183]},{"1074584":[159]},{"1074586":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074605":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074625":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074643":[226,32,183]},{"1074647":[159]},{"1074649":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074668":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074689":[133]},{"1074691":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074709":[226,32,183]},{"1074713":[159]},{"1074715":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074734":[143,148,80,127,226,32,130,213]},{"1074743":[201,128,208,56,169,52,133]},{"1074751":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074769":[226,32,183]},{"1074773":[159]},{"1074775":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074794":[143,148,80,127,226,32,130,153]},{"1074803":[201,144,208,55,169,112,133]},{"1074811":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074829":[226,32,183]},{"1074833":[159]},{"1074835":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074854":[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]},{"1074881":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074899":[226,32,183]},{"1074903":[159]},{"1074905":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074924":[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]},{"1075003":[208,56,169,216,133]},{"1075009":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075027":[226,32,183]},{"1075031":[159]},{"1075033":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075052":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075069":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075087":[226,32,183]},{"1075091":[159]},{"1075093":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075112":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075129":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075147":[226,32,183]},{"1075151":[159]},{"1075153":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075172":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075189":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075207":[226,32,183]},{"1075211":[159]},{"1075213":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075232":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075249":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075267":[226,32,183]},{"1075271":[159]},{"1075273":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075292":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075309":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075327":[226,32,183]},{"1075331":[159]},{"1075333":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075352":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075369":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075387":[226,32,183]},{"1075391":[159]},{"1075393":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075412":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075429":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075447":[226,32,183]},{"1075451":[159]},{"1075453":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075472":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075489":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075507":[226,32,183]},{"1075511":[159]},{"1075513":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075532":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075549":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075567":[226,32,183]},{"1075571":[159]},{"1075573":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075592":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075609":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075627":[226,32,183]},{"1075631":[159]},{"1075633":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075652":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075669":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075687":[226,32,183]},{"1075691":[159]},{"1075693":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075712":[143,148,80,127,226,32,130,235]},{"1075721":[201,12,208,56,169,12,133]},{"1075729":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075747":[226,32,183]},{"1075751":[159]},{"1075753":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075772":[143,148,80,127,226,32,130,175]},{"1075781":[201,13,208,55,169,41,133]},{"1075789":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075807":[226,32,183]},{"1075811":[159]},{"1075813":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075832":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075848":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075866":[226,32,183]},{"1075870":[159]},{"1075872":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075891":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075907":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075925":[226,32,183]},{"1075929":[159]},{"1075931":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075950":[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]},{"1075983":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075998":[171,40,122,250,104,107,34,78,216]},{"1076008":[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]},{"1076072":[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,158,236,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,158,236,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]},{"1076343":[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]},{"1076388":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076412":[226,48,160]},{"1076416":[183]},{"1076418":[201,254,208,39,200,183]},{"1076425":[201,110,208,32,200,183]},{"1076432":[208,27,200,183]},{"1076437":[201,254,208,20,200,183]},{"1076444":[201,107,208,13,200,183]},{"1076451":[201,4,208,6,156,232,28,130,19]},{"1076461":[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]},{"1076489":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076506":[10,10,69,138,41,8]},{"1076513":[240,6,152,24,105,16]},{"1076520":[168,165,35,41,2]},{"1076526":[74,69,138,41,1]},{"1076532":[240,4,152,26,26,168,152,41,255]},{"1076542":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,9,151,164,34,255,147,164,107,34,230,244,160,34,158,173,164,34]},{"1076574":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,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,145,188,164,107,194,16,34,61,137]},{"1076770":[169,7,141,12,33,175,240,244,126,208,10,34,131,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076822":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,34,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]},{"1076902":[191]},{"1076904":[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]},{"1076978":[107,34,212,152,160,34,235,245,160,107,34,71,153,160,34,80,153,160,162,4,107,34,235,245,160,169,20,133,17,107,34,235,245,160,107,34,63,132,160,34,44,153,160,34,4,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]},{"1077053":[2,107,169]},{"1077057":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1077080":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,152,236,160,169]},{"1077102":[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]},{"1077138":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077163":[208,4,169]},{"1077168":[107,201,1]},{"1077172":[208,16,175,197,243,126,41,15]},{"1077181":[201,2]},{"1077184":[176,84,32,26,240,107,201,2]},{"1077193":[208,75,32,26,240,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077217":[107,175,74,128,48,41,255]},{"1077225":[240,43,175,195,242,126,41,32]},{"1077234":[208,34,173,8,3,41,128]},{"1077242":[240,4,169,1]},{"1077247":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077269":[107,169]},{"1077273":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077296":[96,169]},{"1077300":[96,175,76,128,48,41,255]},{"1077308":[240,4,92,90,189,27,224,118]},{"1077317":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077334":[72,170,191,64,130,48,208,3,130,175]},{"1077345":[58,133]},{"1077348":[10,10,24,101]},{"1077353":[10,10,170,169,22]},{"1077359":[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]},{"1077387":[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]},{"1077430":[137,128]},{"1077433":[240,3,9]},{"1077437":[255,143,106,193,126,191,98,130,48,41,255]},{"1077449":[137,128]},{"1077452":[240,3,9]},{"1077456":[255,143,110,193,126,169]},{"1077464":[56,239,106,193,126,143,108,193,126,169]},{"1077476":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077492":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077510":[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]},{"1077587":[165]},{"1077589":[223]},{"1077591":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077611":[165]},{"1077613":[223]},{"1077615":[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]},{"1077661":[175,74,128,48,41,255]},{"1077668":[240,25,175,93]},{"1077674":[41,255]},{"1077677":[201,20]},{"1077680":[208,13,165,138,41,64]},{"1077687":[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]},{"1077744":[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]},{"1077810":[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]},{"1077844":[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]},{"1077943":[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]},{"1077974":[201,2]},{"1077977":[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]},{"1078009":[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,228,244,160,144,10,208,8,175,140,80,127,207,226,244,160,144,114,175,145,129,48,41,255]},{"1078065":[208,24,169,2]},{"1078070":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078094":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078107":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078121":[143,142,80,127,169,1]},{"1078128":[143,126,80,127,128,54,201,2]},{"1078137":[208,24,169,2]},{"1078142":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,202,218,160,194,48,96,175,146,129,48,41,255]},{"1078179":[240,7,169]},{"1078184":[143,126,80,127,175,142,80,127,207,216,244,160,144,10,208,8,175,140,80,127,207,214,244,160,144,53,175,128,80,127,26,201,10]},{"1078218":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078232":[143,128,80,127,175,140,80,127,56,239,214,244,160,143,140,80,127,175,142,80,127,239,216,244,160,143,142,80,127,128,181,175,142,80,127,207,220,244,160,144,10,208,8,175,140,80,127,207,218,244,160,144,53,175,132,80,127,26,201,10]},{"1078293":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078307":[143,132,80,127,175,140,80,127,56,239,218,244,160,143,140,80,127,175,142,80,127,239,220,244,160,143,142,80,127,128,181,175,142,80,127,207,224,244,160,144,10,208,8,175,140,80,127,207,222,244,160,144,53,175,136,80,127,26,201,10]},{"1078368":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078382":[143,136,80,127,175,140,80,127,56,239,222,244,160,143,140,80,127,175,142,80,127,239,224,244,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]},{"1078490":[16,14]},{"1078494":[60]},{"1078498":[255,255,255,127,175,204,80,127,41,255]},{"1078509":[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]},{"1078580":[240,93,175,145,129,48,41,255]},{"1078589":[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]},{"1078682":[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]},{"1078757":[208,3,32,180,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078787":[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]},{"1078821":[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,33,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]},{"1078895":[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]},{"1079001":[255,157]},{"1079004":[27,157,64,27,157,128,27,157,192,27,157]},{"1079016":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079030":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079044":[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]},{"1079082":[208,12,175]},{"1079086":[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]},{"1079160":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079183":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079333":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079349":[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]},{"1079421":[244,111,4]},{"1079425":[115,10,95]},{"1079429":[7]},{"1079435":[34,149,189,164,34,58,135,1,194,16,166,160,191,47,251,160,226,16,34,156,135]},{"1079457":[179,248,160,180,248,160,65,249,160,206,249,160,91,250,160,197,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079493":[32,126,232,232,159]},{"1079499":[32,126,232,232,159]},{"1079505":[32,126,232,232,159]},{"1079511":[32,126,232,232,162,220,25,159]},{"1079520":[32,126,232,232,169,202,12,159]},{"1079529":[32,126,232,232,169,203,12,159]},{"1079538":[32,126,232,232,169,208,8,159]},{"1079547":[32,126,232,232,162,92,26,159]},{"1079556":[32,126,232,232,169,218,12,159]},{"1079565":[32,126,232,232,169,219,12,159]},{"1079574":[32,126,232,232,169,208,8,159]},{"1079583":[32,126,232,232,162,220,26,159]},{"1079592":[32,126,232,232,159]},{"1079598":[32,126,232,232,159]},{"1079604":[32,126,232,232,159]},{"1079610":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079634":[32,126,232,232,159]},{"1079640":[32,126,232,232,159]},{"1079646":[32,126,232,232,159]},{"1079652":[32,126,232,232,162,156,25,159]},{"1079661":[32,126,232,232,169,202,12,159]},{"1079670":[32,126,232,232,169,203,12,159]},{"1079679":[32,126,232,232,169,208,8,159]},{"1079688":[32,126,232,232,162,28,26,159]},{"1079697":[32,126,232,232,169,218,12,159]},{"1079706":[32,126,232,232,169,219,12,159]},{"1079715":[32,126,232,232,169,208,8,159]},{"1079724":[32,126,232,232,162,156,26,159]},{"1079733":[32,126,232,232,159]},{"1079739":[32,126,232,232,159]},{"1079745":[32,126,232,232,159]},{"1079751":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079775":[32,126,232,232,159]},{"1079781":[32,126,232,232,159]},{"1079787":[32,126,232,232,159]},{"1079793":[32,126,232,232,162,220,9,159]},{"1079802":[32,126,232,232,169,202,12,159]},{"1079811":[32,126,232,232,169,203,12,159]},{"1079820":[32,126,232,232,169,208,8,159]},{"1079829":[32,126,232,232,162,92,10,159]},{"1079838":[32,126,232,232,169,218,12,159]},{"1079847":[32,126,232,232,169,219,12,159]},{"1079856":[32,126,232,232,169,208,8,159]},{"1079865":[32,126,232,232,162,220,10,159]},{"1079874":[32,126,232,232,159]},{"1079880":[32,126,232,232,159]},{"1079886":[32,126,232,232,159]},{"1079892":[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]},{"1080125":[1]},{"1080207":[5]},{"1080209":[4]},{"1080237":[2]},{"1080333":[3]},{"1080431":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080448":[134,1,133,2,32,111,252,176,4,92,83,230]},{"1080461":[169,49,133,2,194,32,169]},{"1080469":[192,133]},{"1080472":[162,128,167]},{"1080476":[141,24,33,230]},{"1080481":[230]},{"1080483":[167]},{"1080485":[141,24,33,230]},{"1080490":[230]},{"1080492":[167]},{"1080494":[141,24,33,230]},{"1080499":[230]},{"1080501":[167]},{"1080503":[141,24,33,230]},{"1080508":[230]},{"1080510":[167]},{"1080512":[141,24,33,230]},{"1080517":[230]},{"1080519":[167]},{"1080521":[141,24,33,230]},{"1080526":[230]},{"1080528":[167]},{"1080530":[141,24,33,230]},{"1080535":[230]},{"1080537":[167]},{"1080539":[141,24,33,230]},{"1080544":[230]},{"1080546":[202,208,181,226,32,92,81,230]},{"1080555":[226,48,175,248,194,126,168,32,111,252,194,48,176,10,162]},{"1080572":[160,64]},{"1080575":[92,104,223]},{"1080579":[162]},{"1080581":[192,160]},{"1080585":[169]},{"1080587":[8,139,84,127,177,171,162]},{"1080595":[8,169]},{"1080598":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,114,221,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,230,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,234,167,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,77,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,27,224,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,107,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,124,236,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,151,148,164,194,16,34,179,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,176,148,164,34,28,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,37,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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]},{"1180922":[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]},{"1180981":[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]},{"1181009":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181025":[128,3,169]},{"1181030":[226,32,250,201]},{"1181035":[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]},{"1181072":[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]},{"1181099":[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]},{"1181131":[66,240,3,73]},{"1181136":[66,137]},{"1181139":[132,240,3,73]},{"1181144":[132,133]},{"1181147":[226,32,92,222,131]},{"1181153":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181176":[12,240,3,73]},{"1181181":[12,137]},{"1181184":[3,240,3,73]},{"1181189":[3,133]},{"1181192":[226,32,92,222,131]},{"1181198":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181221":[226,32,92,222,131]},{"1181227":[173,24,66,133]},{"1181232":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181253":[173,24,66,133]},{"1181258":[173,25,66,133,1,92,222,131]},{"1181267":[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,127,134,164,34,236,134,164,107,169,14,143,1,40]},{"1181317":[169,4,143,1,40]},{"1181323":[169,13,143,1,40]},{"1181329":[169,14,143,1,40]},{"1181335":[169]},{"1181337":[143,1,40]},{"1181341":[169]},{"1181343":[143,1,40]},{"1181347":[169]},{"1181349":[143,1,40]},{"1181353":[169]},{"1181355":[143,1,40]},{"1181359":[169]},{"1181361":[143,1,40]},{"1181365":[169]},{"1181367":[143,1,40]},{"1181371":[169]},{"1181373":[143,1,40]},{"1181377":[169,1,143,1,40]},{"1181383":[169]},{"1181385":[143,1,40]},{"1181389":[169,1,143,1,40]},{"1181395":[169]},{"1181397":[143,1,40]},{"1181401":[169]},{"1181403":[143,1,40]},{"1181407":[169,10,143,1,40]},{"1181413":[169,13,143,1,40]},{"1181419":[107,72,218,162]},{"1181424":[175]},{"1181426":[40]},{"1181428":[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]},{"1181455":[175]},{"1181457":[40]},{"1181459":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181473":[232,128,235,56,175]},{"1181479":[40]},{"1181481":[72,175]},{"1181484":[40]},{"1181486":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181504":[175]},{"1181506":[40]},{"1181508":[72,175]},{"1181511":[40]},{"1181513":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181533":[40]},{"1181535":[72,175]},{"1181538":[40]},{"1181540":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181560":[40]},{"1181562":[72,175]},{"1181565":[40]},{"1181567":[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]},{"1181652":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181670":[133]},{"1181672":[165,3,41,255]},{"1181677":[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,31,136,164,132,2,100,3,24,101]},{"1181719":[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]},{"1181774":[175]},{"1181776":[40]},{"1181778":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181792":[232,128,235,56,175]},{"1181798":[40]},{"1181800":[72,175]},{"1181803":[40]},{"1181805":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181823":[175]},{"1181825":[40]},{"1181827":[72,175]},{"1181830":[40]},{"1181832":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181852":[40]},{"1181854":[72,175]},{"1181857":[40]},{"1181859":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181879":[40]},{"1181881":[72,175]},{"1181884":[40]},{"1181886":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181906":[40]},{"1181908":[133,4,175]},{"1181912":[40]},{"1181914":[72,175]},{"1181917":[40]},{"1181919":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181939":[40]},{"1181941":[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]},{"1182010":[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]},{"1182049":[153]},{"1182052":[189,2]},{"1182055":[153,2]},{"1182058":[189,4]},{"1182061":[153,64]},{"1182064":[189,6]},{"1182067":[153,66]},{"1182070":[96,189]},{"1182074":[41,255,227,9]},{"1182079":[16,153]},{"1182083":[189,2]},{"1182086":[41,255,227,9]},{"1182091":[16,153,2]},{"1182095":[189,4]},{"1182098":[41,255,227,9]},{"1182103":[16,153,64]},{"1182107":[189,6]},{"1182110":[41,255,227,9]},{"1182115":[16,153,66]},{"1182119":[96,41,255]},{"1182123":[240,3,76,94,137,76,119,137,41,255]},{"1182134":[208,6,162,148,144,76,119,137,58,58,208,6,162,148,144,76,94,137,58,208,6,162,156,144,76,94,137,58,208,6,162,164,144,76,94,137,58,208,6,162,172,144,76,94,137,58,208,6,162,180,144,76,94,137,58,208,6,162,188,144,76,94,137,162,196,144,76,94,137,165,26,41,1]},{"1182208":[240,2,128,14,32,33,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182238":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182254":[5,112,9]},{"1182258":[28,141,142,17,24,105,16]},{"1182266":[141,206,17,175,2,5,112,9]},{"1182275":[28,141,144,17,24,105,16]},{"1182283":[141,208,17,175,4,5,112,9]},{"1182292":[28,141,146,17,24,105,16]},{"1182300":[141,210,17,175,6,5,112,9]},{"1182309":[28,141,148,17,24,105,16]},{"1182317":[141,212,17,175,8,5,112,9]},{"1182326":[28,141,78,18,24,105,16]},{"1182334":[141,142,18,175,10,5,112,9]},{"1182343":[28,141,80,18,24,105,16]},{"1182351":[141,144,18,175,12,5,112,9]},{"1182360":[28,141,82,18,24,105,16]},{"1182368":[141,146,18,175,14,5,112,9]},{"1182377":[28,141,84,18,24,105,16]},{"1182385":[141,148,18,32,204,144,175,142,3,112,41,64]},{"1182398":[240,31,175,64,3,112,41,255]},{"1182407":[240,11,162,20,143,160,220,16,32,94,137,128,40,162,36,143,160,220,16,32,94,137,128,29,175,64,3,112,41,255]},{"1182438":[240,11,162,12,143,160,220,16,32,94,137,128,9,162,12,143,160,220,16,32,119,137,175,140,3,112,41,192]},{"1182467":[201,192]},{"1182470":[208,11,162,60,143,160,224,16,32,94,137,128,49,175,140,3,112,41,64]},{"1182490":[240,11,162,52,143,160,224,16,32,94,137,128,29,175,140,3,112,41,128]},{"1182510":[240,11,162,44,143,160,224,16,32,94,137,128,9,162,44,143,160,224,16,32,119,137,162,68,143,160,228,16,175,66,3,112,32,168,137,175,140,3,112,41,16]},{"1182552":[240,11,162,28,144,160,236,16,32,94,137,128,9,162,28,144,160,236,16,32,119,137,175,140,3,112,41,8]},{"1182581":[240,11,162,20,144,160,232,16,32,94,137,128,9,162,20,144,160,232,16,32,119,137,175,140,3,112,41,3]},{"1182610":[240,11,162,156,143,160,228,17,32,94,137,128,9,162,156,143,160,228,17,32,119,137,175,140,3,112,41,4]},{"1182639":[240,11,162,148,143,160,92,18,32,94,137,128,9,162,148,143,160,92,18,32,119,137,162,84,143,160,92,17,175,69,3,112,32,168,137,162,92,143,160,96,17,175,70,3,112,32,168,137,162,100,143,160,100,17,175,71,3,112,32,168,137,162,108,143,160,104,17,175,72,3,112,32,168,137,162,116,143,160,108,17,175,73,3,112,32,168,137,162,124,143,160,220,17,175,74,3,112,32,168,137,162,132,143,160,224,17,175,75,3,112,32,168,137,162,140,143,160,232,17,175,77,3,112,32,168,137,162,164,143,160,236,17,175,78,3,112,32,168,137,162,172,143,160,96,18,175,80,3,112,32,168,137,162,180,143,160,100,18,175,81,3,112,32,168,137,162,188,143,160,104,18,175,82,3,112,32,168,137,162,196,143,160,108,18,175,83,3,112,32,168,137,160,242,16,175,92,3,112,32,179,137,160,114,17,175,93,3,112,32,179,137,160,242,17,175,94,3,112,32,179,137,160,114,18,175,95,3,112,32,179,137,175,89,3,112,41,255]},{"1182877":[208,11,162,36,144,160,248,16,32,119,137,128,65,58,208,11,162,36,144,160,248,16,32,94,137,128,51,58,208,11,162,44,144,160,248,16,32,94,137,128,37,58,208,11,162,52,144,160,248,16,32,94,137,128,23,58,208,11,162,60,144,160,248,16,32,94,137,128,9,162,36,144,160,248,16,32,119,137,175,90,3,112,41,255]},{"1182962":[208,11,162,68,144,160,120,17,32,119,137,128,37,58,208,11,162,68,144,160,120,17,32,94,137,128,23,58,208,11,162,76,144,160,120,17,32,94,137,128,9,162,84,144,160,120,17,32,94,137,175,91,3,112,41,255]},{"1183019":[208,11,162,92,144,160,248,17,32,94,137,128,23,58,208,11,162,100,144,160,248,17,32,94,137,128,9,162,108,144,160,248,17,32,94,137,175,107,3,112,41,255]},{"1183062":[208,11,162,116,144,160,120,18,32,94,137,128,37,58,208,11,162,124,144,160,120,18,32,94,137,128,23,58,208,11,162,132,144,160,120,18,32,94,137,128,9,162,140,144,160,120,18,32,94,137,175,72,4,112,41,255]},{"1183119":[34,249,151,160,175,6,80,127,41,255]},{"1183130":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183144":[24,105,16,30,141,250,18,162,212,143,160,252,16,175,85,3,112,32,168,137,175,84,3,112,41,255]},{"1183171":[208,11,162,4,144,160,124,17,32,119,137,128,23,58,208,11,162,4,144,160,124,17,32,94,137,128,9,162,12,144,160,124,17,32,94,137,162,204,143,160,252,17,175,86,3,112,32,168,137,162,220,143,160,124,18,175,87,3,112,32,168,137,175,116,3,112,41,4]},{"1183240":[240,11,162,236,143,160,28,19,32,94,137,128,9,162,228,143,160,28,19,32,94,137,175,116,3,112,41,2]},{"1183269":[240,11,162,244,143,160,32,19,32,94,137,128,9,162,228,143,160,32,19,32,94,137,175,116,3,112,41,1]},{"1183298":[240,11,162,252,143,160,36,19,32,94,137,128,9,162,228,143,160,36,19,32,94,137,175,122,3,112,41,2]},{"1183327":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183351":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183375":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183399":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183423":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183447":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183471":[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]},{"1183517":[10,186,10,185,6]},{"1183523":[10]},{"1183525":[10,20,10,19,6]},{"1183531":[10,5,14,6,14]},{"1183537":[30,22,14,5,6,6,6]},{"1183545":[30,22,6,182,14,182,6,182,142,182,134]},{"1183557":[6,21,6,48,6]},{"1183563":[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,249,151,160,175,4,80,127,41,255]},{"1183973":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183987":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1184001":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1184015":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184039":[34,249,151,160,175,6,80,127,41,255]},{"1184050":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184064":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184078":[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]},{"1184109":[34,249,151,160,175,6,80,127,41,255]},{"1184120":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184134":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184151":[4,169,136,1,157]},{"1184157":[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]},{"1184260":[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]},{"1184312":[141,2,20,165,16,41,255]},{"1184320":[201,1]},{"1184323":[208,107,175,135,128,48,41,255]},{"1184332":[201,2]},{"1184335":[208,95,8,226,48,218,90,34,53,181,164,122,250,40,41,255]},{"1184352":[208,78,169,110,29,141,142,19,24,105,16]},{"1184364":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184377":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184390":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184403":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184416":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184429":[141,216,19,226,32,107,34,147,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]},{"1184545":[189,4,16,9]},{"1184550":[32,157,4,16,202,202,208,243,162,60]},{"1184561":[189,68,16,9]},{"1184566":[32,157,68,16,202,202,208,243,162,60]},{"1184577":[189,132,16,9]},{"1184582":[32,157,132,16,202,202,208,243,162,60]},{"1184593":[189,196,16,9]},{"1184598":[32,157,196,16,202,202,208,243,162,60]},{"1184609":[189,4,17,9]},{"1184614":[32,157,4,17,202,202,208,243,162,60]},{"1184625":[189,68,17,9]},{"1184630":[32,157,68,17,202,202,208,243,162,60]},{"1184641":[189,132,17,9]},{"1184646":[32,157,132,17,202,202,208,243,162,60]},{"1184657":[189,196,17,9]},{"1184662":[32,157,196,17,202,202,208,243,162,60]},{"1184673":[189,4,18,9]},{"1184678":[32,157,4,18,202,202,208,243,162,60]},{"1184689":[189,68,18,9]},{"1184694":[32,157,68,18,202,202,208,243,162,60]},{"1184705":[189,132,18,9]},{"1184710":[32,157,132,18,202,202,208,243,162,60]},{"1184721":[189,196,18,9]},{"1184726":[32,157,196,18,202,202,208,243,162,60]},{"1184737":[189,4,19,9]},{"1184742":[32,157,4,19,202,202,208,243,162,60]},{"1184753":[189,68,19,9]},{"1184758":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184771":[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]},{"1184806":[67,169,24,141,1,67,169]},{"1184814":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184829":[141,2,67,169,208,141,3,67,173]},{"1184839":[33,72,169,128,141]},{"1184845":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184862":[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]},{"1184890":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,151,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184927":[128,51,159]},{"1184931":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184952":[28,141,206,16,24,105,16]},{"1184960":[141,14,17,175,219,3,112,9]},{"1184969":[28,141,208,16,24,105,16]},{"1184977":[141,16,17,175,221,3,112,9]},{"1184986":[28,141,210,16,24,105,16]},{"1184994":[141,18,17,175,223,3,112,9]},{"1185003":[28,141,212,16,24,105,16]},{"1185011":[141,20,17,175,108,3,112,41,255]},{"1185021":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185035":[153]},{"1185038":[200,200,202,208,8,72,152,24,105,44]},{"1185049":[168,104,198,2,208,236,32,33,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185073":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185095":[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]},{"1185134":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,53,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]},{"1185189":[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]},{"1185227":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185241":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,254,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185274":[141,18,11,107,110]},{"1185280":[111]},{"1185282":[112]},{"1185284":[113]},{"1185286":[115]},{"1185288":[116]},{"1185290":[117]},{"1185292":[118]},{"1185294":[120]},{"1185296":[121]},{"1185298":[122]},{"1185300":[123]},{"1185302":[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]},{"1185330":[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]},{"1185366":[143]},{"1185368":[81,127,200,200,183]},{"1185374":[143,2,81,127,200,200,183]},{"1185382":[143,4,81,127,200,200,183]},{"1185390":[143,6,81,127,169,2]},{"1185397":[133,4,34,14,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185425":[170,191]},{"1185428":[81,127,72,169]},{"1185434":[143]},{"1185436":[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]},{"1185498":[72,165,2,72,169,188,234,133]},{"1185507":[169,1]},{"1185510":[133,2,138,74,34,59,150,164,133,12,104,133,2,104,133]},{"1185526":[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]},{"1185558":[189,238,152,159]},{"1185563":[201,126,232,232,224,128,144,243,160]},{"1185573":[162]},{"1185575":[218,187,191,21,130,48,250,41,31]},{"1185585":[10,10,10,90,168,185,238,151,159,24,201,126,185,240,151,159,26,201,126,185,242,151,159,88,201,126,185,244,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,105,151,40,122,250,104,171,107,72,218,173]},{"1185645":[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]},{"1185675":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185696":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185719":[33,72,169,128,141]},{"1185725":[33,169,1,141,11,66,104,141]},{"1185734":[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]},{"1185762":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185787":[30,22,14]},{"1185791":[6,21,6,48,6]},{"1185797":[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]},{"1186167":[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]},{"1186243":[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]},{"1186340":[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]},{"1186397":[39,1,1,1,1,1,2,2,39,39,39]},{"1186413":[39,1,1,1,32,1,2,2,39,39,39]},{"1186429":[39,1,1,1,1,32,2,2,2,2,2]},{"1186445":[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]},{"1186489":[44]},{"1186491":[78,79,1,1,1,1,1,1,2,1,2]},{"1186503":[46]},{"1186507":[2,34,1,1,2]},{"1186515":[24,18,2,2]},{"1186520":[72]},{"1186525":[1,1,2]},{"1186529":[1,1,16,26,2]},{"1186536":[72]},{"1186541":[16,16,2]},{"1186545":[1,1,1,1]},{"1186551":[72]},{"1186554":[9]},{"1186557":[2,2,2]},{"1186561":[1,1,43]},{"1186566":[9]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186621":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186637":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186653":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186670":[2,2,2]},{"1186675":[2,2,2,2]},{"1186686":[2,2,2,2,41,2,2,2,2]},{"1186701":[1,1,1,1,1,1,1,1,1,1,1]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186731":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186749":[1,1,67,1,1,1,1,1,2,2,2]},{"1186765":[80,2,84,81,87,87,86,86,39,39,39]},{"1186777":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186793":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186809":[72,2,2]},{"1186813":[39,2,82,83,9,1,26,16,85,85]},{"1186825":[72,2,2]},{"1186829":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186851":[9,9,9,9,9,72,9,41]},{"1186860":[75,2,2,2]},{"1186865":[8,2,2]},{"1186872":[1]},{"1186875":[32]},{"1186877":[2,2,2,2,2,2,2]},{"1186886":[1,1,1,2]},{"1186891":[8]},{"1186893":[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]},{"1186993":[240,2,128,23,169,15,2,166,138,224,51]},{"1187005":[208,4,143,168,34,126,224,47]},{"1187014":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187028":[208,5,175,135,242,126,107,169,32]},{"1187038":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187061":[191,54,157,164,197,34,176,29,191,56,157,164,197,34,144,21,191,58,157,164,197,32,176,13,191,60,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187103":[201,184]},{"1187106":[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]},{"1187137":[10]},{"1187139":[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]},{"1187169":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187192":[143]},{"1187194":[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]},{"1187225":[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]},{"1187268":[112]},{"1187270":[240,14,48,15,32,1,96,1,208,10]},{"1187281":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187300":[64]},{"1187302":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187316":[201,5]},{"1187319":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187335":[208,18,173,10,4,41,255]},{"1187343":[201,67]},{"1187346":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187362":[208,25,173,10,4,41,255]},{"1187370":[201,91]},{"1187373":[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]},{"1187409":[176,5,10,170,252,98,158,171,194,48,162,30]},{"1187422":[169,190,13,107,98,159,98,159,98,159,99,159,98,159,142,159,98,159,136,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,215,160,98,159,98,159,98,159,222,160,98,159,98,159,98,159,98,159,98,159,98,159,253,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,151,163,98,159,98,159,98,159,98,159,98,159,98,159,179,163,98,159,117,167,248,169,98,159,255,169,98,159,98,159,98,159,98,159,54,170,98,159,11,167,98,159,98,159,98,159,98,159,98,159,98,159,172,170,98,159,35,171,98,159,1,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,42,171,98,159,98,159,98,159,49,171,98,159,98,159,98,159,98,159,98,159,98,159,77,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,31,173,45,173,98,159,98,159,38,173,98,159,52,173,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187698":[141,186,41,169,4,1,141,188,41,169,198]},{"1187710":[141,52,42,141,56,42,141,58,42,169,52]},{"1187722":[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]},{"1187825":[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]},{"1187972":[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]},{"1188051":[141,38,40,96,169,52]},{"1188058":[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]},{"1188171":[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]},{"1188207":[141,40,44,141,174,47,169,52]},{"1188216":[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]},{"1188255":[141,54,44,141,168,47,169,174]},{"1188264":[141,172,44,169,175]},{"1188270":[141,174,44,169,126]},{"1188276":[141,176,44,169,127]},{"1188282":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188300":[141,44,45,169,20]},{"1188306":[141,46,45,169,21]},{"1188312":[141,48,45,169,168]},{"1188318":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188336":[141,172,45,169,28]},{"1188342":[141,174,45,169,29]},{"1188348":[141,176,45,169,118]},{"1188354":[141,178,45,169,241]},{"1188360":[141,44,46,169,78]},{"1188366":[141,46,46,169,79]},{"1188372":[141,48,46,169,217]},{"1188378":[141,50,46,169,154]},{"1188384":[141,172,46,169,155]},{"1188390":[141,174,46,169,156]},{"1188396":[141,176,46,169,149]},{"1188402":[141,178,46,169,52]},{"1188408":[141,40,48,141,44,48,169,53]},{"1188417":[141,42,48,141,50,48,169,218]},{"1188426":[141,46,48,169,226]},{"1188432":[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]},{"1188513":[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]},{"1188597":[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]},{"1188654":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188670":[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]},{"1188762":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188783":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188799":[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]},{"1188841":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188862":[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]},{"1188928":[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]},{"1188958":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188976":[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]},{"1189003":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189024":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189042":[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]},{"1189111":[141,226,34,169,2,3,141,228,34,169,204]},{"1189123":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189147":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189168":[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]},{"1189210":[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]},{"1189243":[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]},{"1189338":[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]},{"1189471":[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]},{"1189564":[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]},{"1189639":[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]},{"1189773":[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]},{"1189818":[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]},{"1190136":[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]},{"1190181":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190199":[141,134,41,169,229]},{"1190205":[141,136,41,169]},{"1190210":[1,141,162,41,169,113]},{"1190217":[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]},{"1190262":[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]},{"1190298":[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]},{"1190325":[141,26,44,169,206]},{"1190331":[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]},{"1190395":[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]},{"1190450":[141,86,47,96,169,116,7,141]},{"1190459":[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]},{"1190501":[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]},{"1190717":[141,162,36,141,164,36,169,227]},{"1190726":[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]},{"1190853":[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]},{"1190883":[141,30,50,169,218]},{"1190889":[141,32,50,141,154,50,169,225]},{"1190898":[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]},{"1190943":[141,26,50,169,242]},{"1190949":[141,184,59,169,8,1,141,56,60,169,52]},{"1190961":[141,190,59,175,197,243,126,41,255]},{"1190971":[201,3]},{"1190974":[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]},{"1191117":[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,131,176,194,32,166,6,138,9]},{"1191348":[36,143,90,199,126,166,7,138,9]},{"1191358":[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,33,176,166,4,138,9]},{"1191391":[36,143,80,199,126,166,5,138,9]},{"1191401":[36,143,82,199,126,166,6,138,9]},{"1191411":[36,143,84,199,126,166,7,138,9]},{"1191421":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,131,176,194,32,166,6,138,9]},{"1191454":[36,143,96,199,126,166,7,138,9]},{"1191464":[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]},{"1191496":[175,24,244,126,32,92,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191518":[36,143,44,199,126,166,6,138,9]},{"1191528":[36,143,46,199,126,166,7,138,9]},{"1191538":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,92,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191574":[36,143,52,199,126,166,6,138,9]},{"1191584":[36,143,54,199,126,166,7,138,9]},{"1191594":[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]},{"1191627":[240,4,34,157,176,164,226,32,175,111,243,126,201,255,240,34,32,131,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191658":[9]},{"1191660":[36,143,100,199,126,166,7,138,9]},{"1191670":[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]},{"1191701":[24,105,7]},{"1191705":[41,248,255,170,175,202,80,127,41,255]},{"1191716":[208,3,130,215]},{"1191721":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191734":[165,26,41,12]},{"1191739":[74,74,240,58,201,1]},{"1191746":[240,98,201,2]},{"1191751":[208,3,130,180]},{"1191756":[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]},{"1191989":[144,6,200,233,100]},{"1191995":[128,245,132,5,160,144,201,10]},{"1192004":[144,6,200,233,10]},{"1192010":[128,245,132,6,160,144,201,1]},{"1192019":[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]},{"1192109":[240,11,175,100,243,126,63,222,176,164,208,1,107,124,250,176,32,131,176,194,32,166,6,138,9]},{"1192135":[36,143,148,199,126,166,7,138,9]},{"1192145":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192159":[128]},{"1192161":[64]},{"1192163":[32]},{"1192165":[16]},{"1192167":[8]},{"1192169":[4]},{"1192171":[2]},{"1192173":[1,128]},{"1192176":[64]},{"1192178":[32]},{"1192180":[16]},{"1192182":[8]},{"1192184":[4]},{"1192186":[22,177,22,177,49,177,74,177,102,177,127,177,152,177,177,177,202,177,229,177]},{"1192207":[178,27,178,52,178,79,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,189,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,189,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,189,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,189,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,189,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,189,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,189,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,189,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,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,189,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,189,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,189,176,107,159]},{"1192556":[4,112,159]},{"1192560":[5,112,159]},{"1192564":[6,112,159]},{"1192568":[7,112,159]},{"1192572":[8,112,159]},{"1192576":[9,112,159]},{"1192580":[10,112,159]},{"1192584":[11,112,159]},{"1192588":[12,112,159]},{"1192592":[13,112,159]},{"1192596":[14,112,159]},{"1192600":[15,112,107,159]},{"1192605":[244,126,159]},{"1192609":[101,127,159]},{"1192613":[102,127,159]},{"1192617":[103,127,159]},{"1192621":[104,127,159]},{"1192625":[105,127,159]},{"1192629":[106,127,159]},{"1192633":[107,127,159]},{"1192637":[108,127,159]},{"1192641":[109,127,159]},{"1192645":[110,127,159]},{"1192649":[111,127,107,72,226,48,173]},{"1192657":[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]},{"1192685":[141]},{"1192687":[67,169,128,141,1,67,169]},{"1192695":[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]},{"1192723":[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]},{"1192763":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192778":[72,171,173]},{"1192782":[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]},{"1192812":[67,141,1,67,169]},{"1192818":[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]},{"1192846":[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]},{"1192886":[67,194,48,171,104,162]},{"1192894":[138,107,165,17,34,156,135]},{"1192902":[213,179,164,237,179,164,12,180,164,13,181,164,35,181,164,169,128,141,16,7,34,61,137]},{"1192926":[34,51,131]},{"1192930":[34,151,148,164,169,7,133,20,230,17,107,32,44,182,100,200,100,201,34,53,181,164,208,11,162,15,169]},{"1192958":[159]},{"1192960":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,156,182,165,246,41,16,240,3,32,232,183,165,246,41,32,240,3,32,245,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,233,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,245,183,128,52,201,242,208,5,32,232,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193151":[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,154,183,32,79,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,53,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]},{"1193275":[16,112,208,3,130,161]},{"1193282":[202,16,244,194,32,162,14,169]},{"1193292":[159,208,80,127,202,202,16,248,32,232,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]},{"1193333":[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]},{"1193362":[133,4,34,14,178,160,226,32,175]},{"1193372":[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]},{"1193447":[107,169]},{"1193451":[133]},{"1193453":[133,2,169,11]},{"1193458":[133,4,166]},{"1193462":[191]},{"1193464":[16,112,58,41,31]},{"1193470":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193495":[16,6,24,105,8]},{"1193501":[230,2,133,4,165]},{"1193507":[26,133]},{"1193510":[201,16]},{"1193513":[144,201,96,173]},{"1193518":[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]},{"1193546":[141]},{"1193548":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,196,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]},{"1193626":[67,96,194,32,165,200,41,255]},{"1193635":[10,170,191,231,182,164,24,105,132,96,235,143,2,17]},{"1193650":[165,201,41,255]},{"1193655":[10,170,191,7,183,164,24,105,163,97,235,143,18,17]},{"1193670":[235,24,105,32]},{"1193675":[235,143,30,17]},{"1193680":[235,24,105,3]},{"1193685":[235,143,38,17]},{"1193690":[235,24,105,61]},{"1193695":[235,143,46,17]},{"1193700":[226,32,96,64]},{"1193705":[67]},{"1193707":[70]},{"1193709":[73]},{"1193711":[76]},{"1193713":[79]},{"1193715":[82]},{"1193717":[85]},{"1193719":[160]},{"1193721":[163]},{"1193723":[166]},{"1193725":[169]},{"1193727":[172]},{"1193729":[175]},{"1193731":[178]},{"1193733":[181]},{"1193735":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193755":[66]},{"1193757":[69]},{"1193759":[72]},{"1193761":[75]},{"1193763":[78]},{"1193765":[81]},{"1193767":[84]},{"1193769":[87]},{"1193771":[159]},{"1193773":[162]},{"1193775":[165]},{"1193777":[168]},{"1193779":[171]},{"1193781":[174]},{"1193783":[177]},{"1193785":[180]},{"1193787":[183]},{"1193789":[255]},{"1193791":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193814":[10,170,191,231,182,164,24,105,132,96,235,143,10,17]},{"1193829":[165,201,41,255]},{"1193834":[10,170,191,7,183,164,24,105,163,97,235,143,58,17]},{"1193849":[235,24,105,32]},{"1193854":[235,143,70,17]},{"1193859":[235,24,105,3]},{"1193864":[235,143,78,17]},{"1193869":[235,24,105,61]},{"1193874":[235,143,86,17]},{"1193879":[226,32,96,194,48,162,15]},{"1193887":[191]},{"1193889":[16,112,41,255]},{"1193894":[155,10,10,10,133]},{"1193900":[152,10,10,10,10,133,3,166]},{"1193909":[191,230,151,164,166,3,157,6,16,166]},{"1193920":[191,232,151,164,166,3,157,8,16,166]},{"1193931":[191,234,151,164,166,3,157,14,16,166]},{"1193942":[191,236,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]},{"1193989":[51,1,10,2,10]},{"1193995":[2,5,14,6,14]},{"1194001":[2]},{"1194003":[6,21,6]},{"1194007":[2,12,14,13,14]},{"1194013":[2,98,6,99,6]},{"1194019":[2,10,2,11,2]},{"1194025":[2,32,14,33,14]},{"1194031":[2,133,26,134,26]},{"1194037":[2,171,30,171,30,97,195]},{"1194045":[51,17,10,18,10]},{"1194051":[2]},{"1194053":[30,22,14]},{"1194057":[2,48,6]},{"1194061":[30]},{"1194063":[2,28,14,28,78]},{"1194069":[2,114,6,115,6]},{"1194075":[2,26,2,27,2]},{"1194081":[2,48,14,49,14]},{"1194087":[2,149,26,150,26]},{"1194093":[2,171,30,171,30,98,3]},{"1194101":[51,7,10,23,202]},{"1194107":[2,8,10,24,202]},{"1194113":[2,9,10,25,202]},{"1194119":[2,44,6,44,70]},{"1194125":[2,34,2,35,2]},{"1194131":[2,36,2,37,2]},{"1194137":[2,38,14,39,14]},{"1194143":[2,40,10,41,10]},{"1194149":[2,138,29]},{"1194153":[2,98,35]},{"1194157":[51,23,10,7,202]},{"1194163":[2,24,10,8,202]},{"1194169":[2,25,10,9,202]},{"1194175":[2,60,6,61,6]},{"1194181":[2,50,2,51,2]},{"1194187":[2,52,2,53,2]},{"1194193":[2,54,14,55,14]},{"1194199":[2,56,10,57,10]},{"1194205":[2,154,29]},{"1194209":[2,98,99]},{"1194213":[51,42,26,43,26]},{"1194219":[2,64,30,65,30]},{"1194225":[2,66,26,66,90]},{"1194231":[2,29,6,30,6]},{"1194237":[2,72,6,73,6]},{"1194243":[2,74,14,75,14]},{"1194249":[2,76,22,77,22]},{"1194255":[2,78,2,79,2]},{"1194261":[2]},{"1194263":[2,139,29,98,131]},{"1194269":[51,58,26,59,26]},{"1194275":[2,80,30,81,30]},{"1194281":[2,82,26,83,26]},{"1194287":[2,45,6,46,6]},{"1194293":[2,88,6,89,6]},{"1194299":[2,90,14,91,14]},{"1194305":[2,92,22,93,22]},{"1194311":[2,94,2,95,2]},{"1194317":[2]},{"1194319":[2,155,29,98,195]},{"1194325":[51,14,14,15,14]},{"1194331":[2,100,6,101,6]},{"1194337":[2,109,10,110,10]},{"1194343":[2,111,26,111,90]},{"1194349":[2,129,6,129,70]},{"1194355":[2,130,10,131,10]},{"1194361":[2,132,6,132,70]},{"1194367":[2,47,74,47,10]},{"1194373":[2,103,94,103,30,98,227]},{"1194381":[51,31,78,31,14]},{"1194387":[2,116,6,117,6]},{"1194393":[2,125,10,126,10]},{"1194399":[2,127,26,127,90]},{"1194405":[2,145,6,145,70]},{"1194411":[2,146,10,147,10]},{"1194417":[2,148,6,148,70]},{"1194423":[2,62,10,63,10]},{"1194429":[2,103,222,103,158,255,255,96,132]},{"1194439":[3,134,29,134,29,96,164]},{"1194447":[3,150,29,150,29,96,135]},{"1194455":[3,134,29,134,29,96,167]},{"1194463":[3,150,29,150,29,96,138]},{"1194471":[3,134,29,134,29,96,170]},{"1194479":[3,150,29,150,29,96,141]},{"1194487":[3,134,29,134,29,96,173]},{"1194495":[3,150,29,150,29,96,144]},{"1194503":[3,134,29,134,29,96,176]},{"1194511":[3,150,29,150,29,96,147]},{"1194519":[3,134,29,134,29,96,179]},{"1194527":[3,150,29,150,29,96,150]},{"1194535":[3,134,29,134,29,96,182]},{"1194543":[3,150,29,150,29,96,153]},{"1194551":[3,134,29,134,29,96,185]},{"1194559":[3,150,29,150,29,96,228]},{"1194567":[3,134,29,134,29,97,4]},{"1194575":[3,150,29,150,29,96,231]},{"1194583":[3,134,29,134,29,97,7]},{"1194591":[3,150,29,150,29,96,234]},{"1194599":[3,134,29,134,29,97,10]},{"1194607":[3,150,29,150,29,96,237]},{"1194615":[3,134,29,134,29,97,13]},{"1194623":[3,150,29,150,29,96,240]},{"1194631":[3,134,29,134,29,97,16]},{"1194639":[3,150,29,150,29,96,243]},{"1194647":[3,134,29,134,29,97,19]},{"1194655":[3,150,29,150,29,96,246]},{"1194663":[3,134,29,134,29,97,22]},{"1194671":[3,150,29,150,29,96,249]},{"1194679":[3,134,29,134,29,97,25]},{"1194687":[3,150,29,150,29,96,196]},{"1194695":[3]},{"1194697":[2]},{"1194699":[2,96,196]},{"1194703":[3,103,222,103,158,97,130]},{"1194711":[7]},{"1194713":[2]},{"1194715":[2]},{"1194717":[2]},{"1194719":[2,97,162,128,3]},{"1194725":[2]},{"1194727":[2,97,165,128,3]},{"1194733":[2]},{"1194735":[2,97,226]},{"1194739":[7]},{"1194741":[2]},{"1194743":[2]},{"1194745":[2]},{"1194747":[2,97,130]},{"1194751":[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]},{"1194779":[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]},{"1194818":[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]},{"1194945":[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]},{"1195005":[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,4,188,164,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,90,160,24,34,128,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195124":[208,11,40,90,160,24,34,128,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,159,155,160,107,72,175,67,244,126,208,4,34,168,192,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,4,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,4,188,164,104,34,168,160,2,107,58,16,8,169]},{"1195380":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195394":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,4,188,169,1,143]},{"1195420":[80,127,156,70,6,156,66,6,76,4,188,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,168,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195643":[83,127,201,3,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,174,191,164,226,48,169]},{"1195681":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195739":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195797":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,57,191,34,231,244,30,32,121,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,89,133,8,169,191,105]},{"1195854":[133,9,34,117,223,5,34,92,220,6,96]},{"1195867":[247,255,198]},{"1195872":[2]},{"1195877":[200]},{"1195880":[2]},{"1195883":[248,255,198]},{"1195888":[2]},{"1195893":[202,64]},{"1195896":[2,175,103,129,48,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,202,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195954":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195980":[98,41,110,41,107,41,105,41,127]},{"1195990":[111,41,97,41,106,41,112,41,127]},{"1196000":[112,41,107,41,127]},{"1196006":[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]},{"1196053":[33,218,162,128,142]},{"1196059":[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]},{"1196087":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196104":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1196195":[208,33,8,194,48,162]},{"1196203":[224,64]},{"1196206":[176,11,169,127]},{"1196211":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196234":[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]},{"1196281":[240,7,224,2,240,3,130,137]},{"1196290":[130,132]},{"1196293":[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]},{"1196439":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196456":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196472":[224,28]},{"1196475":[176,12,191,186,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196492":[175,211,244,126,41,255]},{"1196499":[58,201,64]},{"1196503":[176,63,10,10,10,10,10,170,192,60]},{"1196514":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196537":[176,11,169,127]},{"1196542":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,141,184,160,122,218,90,8,194,48,162]},{"1196698":[224,16]},{"1196701":[176,12,191,214,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196718":[175,152,192,126,41,255]},{"1196725":[58,201,64]},{"1196729":[176,63,10,10,10,10,10,170,192,48]},{"1196740":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196763":[176,11,169,127]},{"1196768":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 From 7aa9622c5e713e5fbba2b2e428ec5c1c8ea1b352 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 06:42:45 +0100 Subject: [PATCH 143/185] Escape assist: only get infinite bombs with enemizer or bombs/cane/bow start + high hp --- ItemList.py | 37 ++++++++++++++++++++----------------- Main.py | 2 +- 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/ItemList.py b/ItemList.py index c5f2f3de..01cfb3e1 100644 --- a/ItemList.py +++ b/ItemList.py @@ -182,24 +182,27 @@ def generate_itempool(world, player): for item in precollected_items: world.push_precollected(ItemFactory(item, player)) - if world.mode[player] == 'standard' and not world.state.has_blunt_weapon(player) and "Link's Uncle" not in placed_items: - found_sword = False - found_bow = False - possible_weapons = [] - for item in pool: - if item in ['Progressive Sword', 'Fighter Sword', 'Master Sword', 'Tempered Sword', 'Golden Sword']: - if not found_sword and world.swords[player] != 'swordless': - found_sword = True + if world.mode[player] == 'standard' and not world.state.has_blunt_weapon(player): + if "Link's Uncle" not in placed_items: + found_sword = False + found_bow = False + possible_weapons = [] + for item in pool: + if item in ['Progressive Sword', 'Fighter Sword', 'Master Sword', 'Tempered Sword', 'Golden Sword']: + if not found_sword and world.swords[player] != 'swordless': + found_sword = True + possible_weapons.append(item) + if item in ['Progressive Bow', 'Bow'] and not found_bow: + found_bow = True possible_weapons.append(item) - if item in ['Progressive Bow', 'Bow'] and not found_bow: - found_bow = True - possible_weapons.append(item) - if item in ['Hammer', 'Bombs (10)', 'Fire Rod', 'Cane of Somaria', 'Cane of Byrna']: - if item not in possible_weapons: - possible_weapons.append(item) - starting_weapon = random.choice(possible_weapons) - placed_items["Link's Uncle"] = starting_weapon - pool.remove(starting_weapon) + if item in ['Hammer', 'Bombs (10)', 'Fire Rod', 'Cane of Somaria', 'Cane of Byrna']: + if item not in possible_weapons: + possible_weapons.append(item) + starting_weapon = random.choice(possible_weapons) + placed_items["Link's Uncle"] = starting_weapon + pool.remove(starting_weapon) + if placed_items["Link's Uncle"] in ['Bow', 'Progressive Bow', 'Bombs (10)', 'Cane of Somaria', 'Cane of Byrna'] and world.enemy_health[player] not in ['default', 'easy']: + world.escape_assist[player].append('bombs') for (location, item) in placed_items.items(): world.push_item(world.get_location(location, player), ItemFactory(item, player), False) diff --git a/Main.py b/Main.py index 80f94552..f8af954c 100644 --- a/Main.py +++ b/Main.py @@ -61,7 +61,7 @@ def main(args, seed=None): for player in range(1, world.players + 1): world.difficulty_requirements[player] = difficulties[world.difficulty[player]] - if world.mode[player] == 'standard' and (world.enemy_shuffle[player] != 'none' or world.enemy_health[player] not in ['default', 'easy']): + if world.mode[player] == 'standard' and world.enemy_shuffle[player] != 'none': world.escape_assist[player].append('bombs') # enemized escape assumes infinite bombs available and will likely be unbeatable without it if world.mode[player] != 'inverted': From 8f5d1999684715dbff7a570e2bc9b52550c0eb9c Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 06:46:29 +0100 Subject: [PATCH 144/185] Inverted: Dark Lake Hylia Shop should not be replaceable --- InvertedRegions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvertedRegions.py b/InvertedRegions.py index 66c8f925..d0f0e8bc 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -377,7 +377,7 @@ def mark_dark_world_regions(world, player): shop_table = { 'Cave Shop (Dark Death Mountain)': (0x0112, 0xC1, True), 'Red Shield Shop': (0x0110, 0xC1, True), - 'Dark Lake Hylia Shop': (0x010F, 0xC1, True), + 'Dark Lake Hylia Shop': (0x010F, 0xC1, False), 'Dark World Lumberjack Shop': (0x010F, 0xC1, True), 'Village of Outcasts Shop': (0x010F, 0xC1, True), 'Dark World Potion Shop': (0x010F, 0xC1, True), From 7088c148a2372a58d74cbac082444708f976f882 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 20:28:33 +0100 Subject: [PATCH 145/185] Beemizer: fix potentially replacing all heart containers for progression --- ItemList.py | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/ItemList.py b/ItemList.py index 01cfb3e1..19eb83e3 100644 --- a/ItemList.py +++ b/ItemList.py @@ -209,18 +209,7 @@ def generate_itempool(world, player): world.get_location(location, player).event = True world.get_location(location, player).locked = True - beeweights = {0: {None: 100}, - 1: {None: 75, 'trap': 25}, - 2: {None: 40, 'trap': 40, 'bee': 20}, - 3: {'trap': 50, 'bee': 50}, - 4: {'trap': 100}} - def beemizer(item): - if world.beemizer[item.player] and not item.advancement and not item.priority and not item.type: - choice = random.choices(list(beeweights[world.beemizer[item.player]].keys()), weights=list(beeweights[world.beemizer[item.player]].values()))[0] - return item if not choice else ItemFactory("Bee Trap", player) if choice == 'trap' else ItemFactory("Bee", player) - return item - - world.itempool += [beemizer(item) for item in ItemFactory(pool, player)] + items = ItemFactory(pool, player) world.lamps_needed_for_dark_rooms = lamps_needed_for_dark_rooms @@ -242,12 +231,25 @@ def generate_itempool(world, player): # rather than making all hearts/heart pieces progression items (which slows down generation considerably) # We mark one random heart container as an advancement item (or 4 heart pieces in expert mode) if world.difficulty[player] in ['normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): - [item for item in world.itempool if item.name == 'Boss Heart Container' and item.player == player][0].advancement = True + [item for item in items if item.name == 'Boss Heart Container'][0].advancement = True elif world.difficulty[player] in ['expert'] and not (world.custom and world.customitemarray[29] < 4): - adv_heart_pieces = [item for item in world.itempool if item.name == 'Piece of Heart' and item.player == player][0:4] + adv_heart_pieces = [item for item in items if item.name == 'Piece of Heart'][0:4] for hp in adv_heart_pieces: hp.advancement = True + beeweights = {0: {None: 100}, + 1: {None: 75, 'trap': 25}, + 2: {None: 40, 'trap': 40, 'bee': 20}, + 3: {'trap': 50, 'bee': 50}, + 4: {'trap': 100}} + def beemizer(item): + if world.beemizer[item.player] and not item.advancement and not item.priority and not item.type: + choice = random.choices(list(beeweights[world.beemizer[item.player]].keys()), weights=list(beeweights[world.beemizer[item.player]].values()))[0] + return item if not choice else ItemFactory("Bee Trap", player) if choice == 'trap' else ItemFactory("Bee", player) + return item + + world.itempool += [beemizer(item) for item in items] + # shuffle medallions mm_medallion = ['Ether', 'Quake', 'Bombos'][random.randint(0, 2)] tr_medallion = ['Ether', 'Quake', 'Bombos'][random.randint(0, 2)] From 63eecaa96cd232b91957e05093f84d6bc3ffac5b Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 30 Dec 2019 20:43:43 +0100 Subject: [PATCH 146/185] Fix arguments pre-parsing intercepting --help command --- EntranceRandomizer.py | 2 +- Mystery.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 2e5416f6..91fa5bfa 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -22,7 +22,7 @@ def parse_arguments(argv, no_defaults=False): return value if not no_defaults else None # we need to know how many players we have first - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser(add_help=False) parser.add_argument('--multi', default=defval(1), type=lambda value: min(max(int(value), 1), 255)) multiargs, _ = parser.parse_known_args(argv) diff --git a/Mystery.py b/Mystery.py index f97ae275..06f57aca 100644 --- a/Mystery.py +++ b/Mystery.py @@ -26,7 +26,7 @@ def parse_yaml(txt): return ret def main(): - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser(add_help=False) parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) multiargs, _ = parser.parse_known_args() From 2bce64778d4f3dcc13ebb5115f105cf085d599f8 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 31 Dec 2019 01:16:41 +0100 Subject: [PATCH 147/185] Gui: fix default arguments for multiworld --- Gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gui.py b/Gui.py index 88bb9df4..b897866b 100755 --- a/Gui.py +++ b/Gui.py @@ -425,7 +425,7 @@ def guiMain(args=None): guiargs.rom = romVar.get() guiargs.sprite = sprite # get default values for missing parameters - for k,v in vars(parse_arguments([])).items(): + for k,v in vars(parse_arguments(['--multi', str(guiargs.multi)])).items(): if k not in vars(guiargs): setattr(guiargs, k, v) elif type(v) is dict: # use same settings for every player From 1fc86274cc02616faa7d29c54db98113adf39db8 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 31 Dec 2019 15:47:18 +0100 Subject: [PATCH 148/185] Items: consumables texts --- Items.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Items.py b/Items.py index e07f1187..ff3d9e13 100644 --- a/Items.py +++ b/Items.py @@ -162,11 +162,11 @@ item_table = {'Bow': (True, False, None, 0x0B, 'You have\nchosen the\narcher cla 'Small Key (Universal)': (False, True, None, 0xAF, 'A small key for any door', 'and the key', 'the unlocking kid', 'keys for sale', 'unlock the fungus', 'key boy opens door again', 'a small key'), 'Nothing': (False, False, None, 0x5A, 'Some Hot Air', 'and the Nothing', 'the zen kid', 'outright theft', 'shroom theft', 'empty boy is bored again', 'nothing'), 'Bee Trap': (False, False, None, 0xB0, 'We will sting your face a whole lot!', 'and the sting buddies', 'the beekeeper kid', 'insects for sale', 'shroom pollenation', 'bottle boy has mad bees again', 'friendship'), - 'Red Potion': (False, False, None, 0x2E, None, None, None, None, None, None, None), - 'Green Potion': (False, False, None, 0x2F, None, None, None, None, None, None, None), - 'Blue Potion': (False, False, None, 0x30, None, None, None, None, None, None, None), - 'Bee': (False, False, None, 0x0E, None, None, None, None, None, None, None), - 'Small Heart': (False, False, None, 0x42, None, None, None, None, None, None, None), + 'Red Potion': (False, False, None, 0x2E, 'Hearty red goop!', 'and the red goo', 'the liquid kid', 'potion for sale', 'free samples', 'bottle boy has red goo again', 'a red potion'), + 'Green Potion': (False, False, None, 0x2F, 'Refreshing green goop!', 'and the green goo', 'the liquid kid', 'potion for sale', 'free samples', 'bottle boy has green goo again', 'a green potion'), + 'Blue Potion': (False, False, None, 0x30, 'Delicious blue goop!', 'and the blue goo', 'the liquid kid', 'potion for sale', 'free samples', 'bottle boy has blue goo again', 'a blue potion'), + 'Bee': (False, False, None, 0x0E, 'I will sting your foes a few times', 'and the sting buddy', 'the beekeeper kid', 'insect for sale', 'shroom pollenation', 'bottle boy has mad bee again', 'a bee'), + 'Small Heart': (False, False, None, 0x42, 'Just a little\npiece of love!', 'and the heart', 'the life-giving kid', 'little love for sale', 'fungus for life', 'life boy feels some love again', 'a heart'), 'Beat Agahnim 1': (True, False, 'Event', None, None, None, None, None, None, None, None), 'Beat Agahnim 2': (True, False, 'Event', None, None, None, None, None, None, None, None), 'Get Frog': (True, False, 'Event', None, None, None, None, None, None, None, None), From 636a18cee9972f033d59ad373cf02fcc70b88d71 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 31 Dec 2019 15:47:49 +0100 Subject: [PATCH 149/185] Rom: sanitize hint_text input --- Rom.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Rom.py b/Rom.py index f6b9e0e4..aa4c150a 100644 --- a/Rom.py +++ b/Rom.py @@ -1337,13 +1337,18 @@ def write_strings(rom, world, player): tt['kakariko_flophouse_man'] = 'I really hate mowing my yard.\n{PAGEBREAK}\nI should move.' def hint_text(dest, ped_hint=False): - hint = dest.hint_text if not ped_hint else dest.pedestal_hint_text + if not dest: + return "nothing" + 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 dest.player != player: if ped_hint: hint += " for p%d!" % dest.player elif type(dest) in [Region, Location]: hint += " in p%d's world" % dest.player - elif type(dest) is Item: + else: hint += " for p%d" % dest.player return hint From 0de0467b5c83dbfd08d3d2cae154d235284e7565 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 1 Jan 2020 18:12:15 +0100 Subject: [PATCH 150/185] Inverted: connect lake hylia island to lw --- EntranceShuffle.py | 3 ++- InvertedRegions.py | 2 +- Rules.py | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/EntranceShuffle.py b/EntranceShuffle.py index a96811b8..49339ab2 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -2987,7 +2987,8 @@ mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central ('Pyramid Drop', 'East Dark World') ] -inverted_mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), +inverted_mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), + ('Lake Hylia Island', 'Lake Hylia Island'), ('Zoras River', 'Zoras River'), ('Kings Grave Outer Rocks', 'Kings Grave Area'), ('Kings Grave Inner Rocks', 'Light World'), diff --git a/InvertedRegions.py b/InvertedRegions.py index d0f0e8bc..e1915d39 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -9,7 +9,7 @@ def create_inverted_regions(world, player): ["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', 'Blacksmiths Hut', 'Bat Cave Drop Ledge', 'Bat Cave Cave', 'Sick Kids House', 'Hobo Bridge', 'Lost Woods Hideout Drop', 'Lost Woods Hideout Stump', - 'Lumberjack Tree Tree', 'Lumberjack Tree Cave', 'Mini Moldorm Cave', 'Ice Rod Cave', 'Lake Hylia Central Island Pier', + 'Lumberjack Tree Tree', 'Lumberjack Tree Cave', 'Mini Moldorm Cave', 'Ice Rod Cave', 'Lake Hylia Central Island Pier', 'Lake Hylia Island', 'Bonk Rock Cave', 'Library', 'Two Brothers House (East)', 'Desert Palace Stairs', 'Eastern Palace', 'Master Sword Meadow', 'Sanctuary', 'Sanctuary Grave', 'Death Mountain Entrance Rock', 'Light World River Drop', 'Elder House (East)', 'Elder House (West)', 'North Fairy Cave', 'North Fairy Cave Drop', 'Lost Woods Gamble', 'Snitch Lady (East)', 'Snitch Lady (West)', 'Tavern (Front)', diff --git a/Rules.py b/Rules.py index 5ce634d4..49154002 100644 --- a/Rules.py +++ b/Rules.py @@ -627,6 +627,7 @@ def no_glitches_rules(world, player): else: set_rule(world.get_entrance('Zoras River', player), lambda state: state.has_Pearl(player) and (state.has('Flippers', player) or state.can_lift_rocks(player))) set_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 + set_rule(world.get_entrance('Lake Hylia Island', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) set_rule(world.get_entrance('Hobo Bridge', player), lambda state: state.has_Pearl(player) and state.has('Flippers', player)) set_rule(world.get_entrance('Dark Lake Hylia Drop (East)', player), lambda state: state.has('Flippers', player)) set_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))) From 6966b0a7980d2da53ed1047ef57224897d592608 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 1 Jan 2020 18:42:36 +0100 Subject: [PATCH 151/185] Add a --keysanity shortcut to enable all dungeon items shuffles for convenience --- EntranceRandomizer.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 91fa5bfa..204fb40b 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -211,6 +211,7 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument('--compassshuffle', default=defval(False), help='Compasses are no longer restricted to their dungeons, but can be anywhere', action='store_true') parser.add_argument('--keyshuffle', default=defval(False), help='Small Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') parser.add_argument('--bigkeyshuffle', default=defval(False), help='Big Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true') + parser.add_argument('--keysanity', default=defval(False), help=argparse.SUPPRESS, action='store_true') parser.add_argument('--retro', default=defval(False), help='''\ Keys are universal, shooting arrows costs rupees, and a few other little things make this more like Zelda-1. @@ -273,6 +274,8 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument(f'--p{player}', default=defval(''), help=argparse.SUPPRESS) ret = parser.parse_args(argv) + if ret.keysanity: + ret.mapshuffle, ret.compassshuffle, ret.keyshuffle, ret.bigkeyshuffle = [True] * 4 if multiargs.multi: defaults = copy.deepcopy(ret) From 28e7819fab83612cf2d5e654694cb2eff966a6ec Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 4 Jan 2020 18:45:42 +0100 Subject: [PATCH 152/185] Items table: include the 2nd progressive bow --- Items.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Items.py b/Items.py index ff3d9e13..d134fdd4 100644 --- a/Items.py +++ b/Items.py @@ -25,6 +25,7 @@ def ItemFactory(items, player): # Format: Name: (Advancement, Priority, Type, ItemCode, Pedestal Hint Text, Pedestal Credit Text, Sick Kid Credit Text, Zora Credit Text, Witch Credit Text, Flute Boy Credit Text, Hint Text) item_table = {'Bow': (True, False, None, 0x0B, 'You have\nchosen the\narcher class.', 'the stick and twine', 'arrow-slinging kid', 'arrow sling for sale', 'witch and robin hood', 'archer boy shoots again', 'the Bow'), 'Progressive Bow': (True, False, None, 0x64, 'You have\nchosen the\narcher class.', 'the stick and twine', 'arrow-slinging kid', 'arrow sling for sale', 'witch and robin hood', 'archer boy shoots again', 'a Bow'), + 'Progressive Bow (Alt)': (True, False, None, 0x65, 'You have\nchosen the\narcher class.', 'the stick and twine', 'arrow-slinging kid', 'arrow sling for sale', 'witch and robin hood', 'archer boy shoots again', 'a Bow'), 'Book of Mudora': (True, False, None, 0x1D, 'This is a\nparadox?!', 'and the story book', 'the scholarly kid', 'moon runes for sale', 'drugs for literacy', 'book-worm boy can read again', 'the Book'), 'Hammer': (True, False, None, 0x09, 'stop\nhammer time!', 'and m c hammer', 'hammer-smashing kid', 'm c hammer for sale', 'stop... hammer time', 'stop, hammer time', 'the hammer'), 'Hookshot': (True, False, None, 0x0A, 'BOING!!!\nBOING!!!\nBOING!!!', 'and the tickle beam', 'tickle-monster kid', 'tickle beam for sale', 'witch and tickle boy', 'beam boy tickles again', 'the Hookshot'), From 1be0d62d4fff895899018edec7eb42b69b1c00fa Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sun, 5 Jan 2020 20:22:19 +0100 Subject: [PATCH 153/185] MultiClient: allow different protocols if a prefix is present --- MultiClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiClient.py b/MultiClient.py index fd7cfa9a..7435cc2f 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -543,7 +543,7 @@ async def server_loop(ctx : Context): print('Enter multiworld server address') ctx.server_address = await console_input(ctx) - address = 'ws://' + ctx.server_address + address = f"ws://{ctx.server_address}" if "://" not in ctx.server_address else ctx.server_address print('Connecting to multiworld server at %s' % address) try: From a3657c02aa6f9545911984c64b37e866645d7491 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Sat, 4 Jan 2020 22:08:13 +0100 Subject: [PATCH 154/185] Multidata/save: moved away from pickle and store a compressed json instead --- Main.py | 18 +++++++----------- MultiServer.py | 45 +++++++++++++++++++++++++-------------------- 2 files changed, 32 insertions(+), 31 deletions(-) diff --git a/Main.py b/Main.py index f8af954c..31b28244 100644 --- a/Main.py +++ b/Main.py @@ -4,9 +4,9 @@ from itertools import zip_longest import json import logging import os -import pickle import random import time +import zlib from BaseClasses import World, CollectionState, Item, Region, Location, Shop from Regions import create_regions, mark_light_world_regions @@ -140,12 +140,9 @@ def main(args, seed=None): player_names = parse_names_string(args.names) outfilebase = 'ER_%s' % (args.outputname if args.outputname else world.seed) + rom_names = [] jsonout = {} if not args.suppress_rom: - from MultiServer import MultiWorld - multidata = MultiWorld() - multidata.players = world.players - for player in range(1, world.players + 1): 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' @@ -161,16 +158,12 @@ def main(args, seed=None): else: rom = LocalRom(args.rom) patch_rom(world, player, rom, use_enemizer) + rom_names.append((player, list(rom.name))) enemizer_patch = [] if use_enemizer and (args.enemizercli or not args.jsonout): enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepalette[player], args.shufflepots[player]) - multidata.rom_names[player] = list(rom.name) - for location in world.get_filled_locations(player): - if type(location.address) is int: - multidata.locations[(location.address, player)] = (location.item.code, location.item.player) - if args.jsonout: jsonout[f'patch{player}'] = rom.patches if use_enemizer: @@ -209,7 +202,10 @@ def main(args, seed=None): rom.write_to_file(output_path(f'{outfilebase}{playername}{outfilesuffix}.sfc')) with open(output_path('%s_multidata' % outfilebase), 'wb') as f: - pickle.dump(multidata, f, pickle.HIGHEST_PROTOCOL) + jsonstr = json.dumps((world.players, + rom_names, + [((location.address, location.player), (location.item.code, location.item.player)) for location in world.get_filled_locations() if type(location.address) is int])) + f.write(zlib.compress(jsonstr.encode("utf-8"))) if args.create_spoiler and not args.jsonout: world.spoiler.to_file(output_path('%s_Spoiler.txt' % outfilebase)) diff --git a/MultiServer.py b/MultiServer.py index cb753721..87d1fd41 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -4,10 +4,10 @@ import asyncio import functools import json import logging -import pickle import re import urllib.request import websockets +import zlib import Items import Regions @@ -22,18 +22,14 @@ class Client: self.slot = None self.send_index = 0 -class MultiWorld: - def __init__(self): - self.players = None - self.rom_names = {} - self.locations = {} - class Context: def __init__(self, host, port, password): self.data_filename = None self.save_filename = None self.disable_save = False - self.world = MultiWorld() + self.players = 0 + self.rom_names = {} + self.locations = {} self.host = host self.port = port self.password = password @@ -44,7 +40,7 @@ class Context: def get_room_info(ctx : Context): return { 'password': ctx.password is not None, - 'slots': ctx.world.players, + 'slots': ctx.players, 'players': [(client.name, client.team, client.slot) for client in ctx.clients if client.auth] } @@ -175,8 +171,8 @@ def forfeit_player(ctx : Context, team, slot, name): def register_location_checks(ctx : Context, name, team, slot, locations): found_items = False for location in locations: - if (location, slot) in ctx.world.locations: - target_item, target_player = ctx.world.locations[(location, slot)] + if (location, slot) in ctx.locations: + target_item, target_player = ctx.locations[(location, slot)] if target_player != slot: found = False recvd_items = get_received_items(ctx, team, target_player) @@ -196,7 +192,10 @@ def register_location_checks(ctx : Context, name, team, slot, locations): if found_items and not ctx.disable_save: try: with open(ctx.save_filename, "wb") as f: - pickle.dump((ctx.world.players, ctx.world.rom_names, ctx.received_items), f, pickle.HIGHEST_PROTOCOL) + jsonstr = json.dumps((ctx.players, + [(k, v) for k, v in ctx.rom_names.items()], + [(k, [i.__dict__ for i in v]) for k, v in ctx.received_items.items()])) + f.write(zlib.compress(jsonstr.encode("utf-8"))) except Exception as e: logging.exception(e) @@ -233,13 +232,13 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): if 'slot' in args and any([c.slot == args['slot'] for c in ctx.clients if c.auth and same_team(c.team, client.team)]): errors.add('SlotAlreadyTaken') elif 'slot' not in args or not args['slot']: - for slot in range(1, ctx.world.players + 1): + for slot in range(1, ctx.players + 1): if slot not in [c.slot for c in ctx.clients if c.auth and same_team(c.team, client.team)]: client.slot = slot break - elif slot == ctx.world.players: + elif slot == ctx.players: errors.add('SlotAlreadyTaken') - elif args['slot'] not in range(1, ctx.world.players + 1): + elif args['slot'] not in range(1, ctx.players + 1): errors.add('InvalidSlot') else: client.slot = args['slot'] @@ -251,7 +250,7 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): await send_msgs(client.socket, [['ConnectionRefused', list(errors)]]) else: client.auth = True - reply = [['Connected', ctx.world.rom_names[client.slot]]] + reply = [['Connected', ctx.rom_names[client.slot]]] items = get_received_items(ctx, client.team, client.slot) if items: reply.append(['ReceivedItems', (0, tuplize_received_items(items))]) @@ -358,13 +357,16 @@ async def main(): ctx.data_filename = tkinter.filedialog.askopenfilename(filetypes=(("Multiworld data","*multidata"),)) with open(ctx.data_filename, 'rb') as f: - ctx.world = pickle.load(f) + jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) + ctx.players = jsonobj[0] + ctx.rom_names = {k: v for k, v in jsonobj[1]} + ctx.locations = {tuple(k): tuple(v) for k, v in jsonobj[2]} except Exception as e: print('Failed to read multiworld data (%s)' % e) return ip = urllib.request.urlopen('https://v4.ident.me').read().decode('utf8') if not ctx.host else ctx.host - print('Hosting game of %d players (%s) at %s:%d' % (ctx.world.players, 'No password' if not ctx.password else 'Password: %s' % ctx.password, ip, ctx.port)) + print('Hosting game of %d players (%s) at %s:%d' % (ctx.players, 'No password' if not ctx.password else 'Password: %s' % ctx.password, ip, ctx.port)) ctx.disable_save = args.disable_save if not ctx.disable_save: @@ -372,8 +374,11 @@ async def main(): ctx.save_filename = (ctx.data_filename[:-9] if ctx.data_filename[-9:] == 'multidata' else (ctx.data_filename + '_')) + 'multisave' try: with open(ctx.save_filename, 'rb') as f: - players, rom_names, received_items = pickle.load(f) - if players != ctx.world.players or rom_names != ctx.world.rom_names: + jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) + players = jsonobj[0] + rom_names = {k: v for k, v in jsonobj[1]} + received_items = {tuple(k): [ReceivedItem(**i) for i in v] for k, v in jsonobj[2]} + if players != ctx.players or rom_names != ctx.rom_names: raise Exception('Save file mismatch, will start a new game') ctx.received_items = received_items print('Loaded save file with %d received items for %d players' % (sum([len(p) for p in received_items.values()]), len(received_items))) From eb7ca4fdf975e95e9c23788c916735edd18abf5f Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 6 Jan 2020 19:13:42 +0100 Subject: [PATCH 155/185] Implement --startinventory --- EntranceRandomizer.py | 3 +- ItemList.py | 58 ++++++--------- Items.py | 2 +- Main.py | 6 ++ Rom.py | 164 ++++++++++++++++++++++++++++++++++++++---- 5 files changed, 180 insertions(+), 53 deletions(-) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 204fb40b..c6f03721 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -216,6 +216,7 @@ def parse_arguments(argv, no_defaults=False): Keys are universal, shooting arrows costs rupees, and a few other little things make this more like Zelda-1. ''', action='store_true') + parser.add_argument('--startinventory', default=defval(''), help='Specifies a list of items that will be in your starting inventory (separated by commas)') parser.add_argument('--custom', default=defval(False), help='Not supported.') parser.add_argument('--customitemarray', default=defval(False), help='Not supported.') parser.add_argument('--accessibility', default=defval('items'), const='items', nargs='?', choices=['items', 'locations', 'none'], help='''\ @@ -284,7 +285,7 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', - 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', + 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', 'startinventory', 'retro', 'accessibility', 'hints', 'shufflepalette', 'shufflepots', 'beemizer', 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) diff --git a/ItemList.py b/ItemList.py index 19eb83e3..73e40043 100644 --- a/ItemList.py +++ b/ItemList.py @@ -51,8 +51,8 @@ difficulties = { progressivearmor = ['Progressive Armor'] * 2, basicarmor = ['Blue Mail', 'Red Mail'], swordless = ['Rupees (20)'] * 4, - progressivesword = ['Progressive Sword'] * 3, - basicsword = ['Master Sword', 'Tempered Sword', 'Golden Sword'], + progressivesword = ['Progressive Sword'] * 4, + basicsword = ['Fighter Sword', 'Master Sword', 'Tempered Sword', 'Golden Sword'], basicbow = ['Bow', 'Silver Arrows'], timedohko = ['Green Clock'] * 25, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, @@ -78,8 +78,8 @@ difficulties = { progressivearmor = ['Progressive Armor'] * 2, basicarmor = ['Progressive Armor'] * 2, # neither will count swordless = ['Rupees (20)'] * 4, - progressivesword = ['Progressive Sword'] * 3, - basicsword = ['Master Sword', 'Master Sword', 'Tempered Sword'], + progressivesword = ['Progressive Sword'] * 4, + basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword', 'Tempered Sword'], basicbow = ['Bow'] * 2, timedohko = ['Green Clock'] * 25, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, @@ -105,8 +105,8 @@ difficulties = { progressivearmor = ['Progressive Armor'] * 2, # neither will count basicarmor = ['Progressive Armor'] * 2, # neither will count swordless = ['Rupees (20)'] * 4, - progressivesword = ['Progressive Sword'] * 3, - basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword'], + progressivesword = ['Progressive Sword'] * 4, + basicsword = ['Fighter Sword', 'Fighter Sword', 'Master Sword', 'Master Sword'], basicbow = ['Bow'] * 2, timedohko = ['Green Clock'] * 20 + ['Red Clock'] * 5, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, @@ -444,34 +444,17 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r else: pool.extend(diff.basicarmor) - if swords != 'swordless': - if want_progressives(): - pool.extend(['Progressive Bow'] * 2) - else: - pool.extend(diff.basicbow) + if want_progressives(): + pool.extend(['Progressive Bow'] * 2) + elif swords != 'swordless': + pool.extend(diff.basicbow) + else: + pool.extend(['Bow', 'Silver Arrows']) if swords == 'swordless': pool.extend(diff.swordless) - if want_progressives(): - pool.extend(['Progressive Bow'] * 2) - else: - pool.extend(['Bow', 'Silver Arrows']) - elif swords == 'assured': - precollected_items.append('Fighter Sword') - if want_progressives(): - pool.extend(diff.progressivesword) - pool.extend(['Rupees (100)']) - else: - pool.extend(diff.basicsword) - pool.extend(['Rupees (100)']) elif swords == 'vanilla': - swords_to_use = [] - if want_progressives(): - swords_to_use.extend(diff.progressivesword) - swords_to_use.extend(['Progressive Sword']) - else: - swords_to_use.extend(diff.basicsword) - swords_to_use.extend(['Fighter Sword']) + swords_to_use = diff.progressivesword.copy() if want_progressives() else diff.basicsword.copy() random.shuffle(swords_to_use) place_item('Link\'s Uncle', swords_to_use.pop()) @@ -482,12 +465,15 @@ def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, r else: place_item('Master Sword Pedestal', 'Triforce') else: - if want_progressives(): - pool.extend(diff.progressivesword) - pool.extend(['Progressive Sword']) - else: - pool.extend(diff.basicsword) - pool.extend(['Fighter Sword']) + pool.extend(diff.progressivesword if want_progressives() else diff.basicsword) + if swords == 'assured': + if want_progressives(): + precollected_items.append('Progressive Sword') + pool.remove('Progressive Sword') + else: + precollected_items.append('Fighter Sword') + pool.remove('Fighter Sword') + pool.extend(['Rupees (50)']) extraitems = total_items_to_place - len(pool) - len(placed_items) diff --git a/Items.py b/Items.py index d134fdd4..f2d4e910 100644 --- a/Items.py +++ b/Items.py @@ -44,8 +44,8 @@ item_table = {'Bow': (True, False, None, 0x0B, 'You have\nchosen the\narcher cla 'Flippers': (True, False, None, 0x1E, 'fancy a swim?', 'and the toewebs', 'the swimming kid', 'finger webs for sale', 'shrooms let you swim', 'swimming boy swims again', 'the flippers'), 'Ice Rod': (True, False, None, 0x08, 'I\'m the cold\nrod. I make\nthings freeze!', 'and the freeze ray', 'the ice-bending kid', 'freeze ray for sale', 'fungus for ice-rod', 'ice-cube boy freezes again', 'the ice rod'), 'Titans Mitts': (True, False, None, 0x1C, 'Now you can\nlift heavy\nstuff!', 'and the golden glove', 'body-building kid', 'carry glove for sale', 'fungus for bling-gloves', 'body-building boy has gold again', 'the mitts'), - 'Ether': (True, False, None, 0x10, 'This magic\ncoin freezes\neverything!', 'and the bolt coin', 'coin-collecting kid', 'bolt coin for sale', 'shrooms for bolt-coin', 'medallion boy sees floor again', 'Ether'), 'Bombos': (True, False, None, 0x0F, 'Burn, baby,\nburn! Fear my\nring of fire!', 'and the swirly coin', 'coin-collecting kid', 'swirly coin for sale', 'shrooms for swirly-coin', 'medallion boy melts room again', 'Bombos'), + 'Ether': (True, False, None, 0x10, 'This magic\ncoin freezes\neverything!', 'and the bolt coin', 'coin-collecting kid', 'bolt coin for sale', 'shrooms for bolt-coin', 'medallion boy sees floor again', 'Ether'), 'Quake': (True, False, None, 0x11, 'Maxing out the\nRichter scale\nis what I do!', 'and the wavy coin', 'coin-collecting kid', 'wavy coin for sale', 'shrooms for wavy-coin', 'medallion boy shakes dirt again', 'Quake'), 'Bottle': (True, False, None, 0x16, 'Now you can\nstore potions\nand stuff!', 'and the terrarium', 'the terrarium kid', 'terrarium for sale', 'special promotion', 'bottle boy has terrarium again', 'a Bottle'), 'Bottle (Red Potion)': (True, False, None, 0x2B, 'Hearty red goop!', 'and the red goo', 'the liquid kid', 'potion for sale', 'free samples', 'bottle boy has red goo again', 'a Bottle'), diff --git a/Main.py b/Main.py index 31b28244..8e7ccfb4 100644 --- a/Main.py +++ b/Main.py @@ -9,6 +9,7 @@ import time import zlib from BaseClasses import World, CollectionState, Item, Region, Location, Shop +from Items import ItemFactory from Regions import create_regions, mark_light_world_regions from InvertedRegions import create_inverted_regions, mark_dark_world_regions from EntranceShuffle import link_entrances, link_inverted_entrances @@ -64,6 +65,11 @@ def main(args, seed=None): if world.mode[player] == 'standard' and world.enemy_shuffle[player] != 'none': world.escape_assist[player].append('bombs') # enemized escape assumes infinite bombs available and will likely be unbeatable without it + for tok in filter(None, args.startinventory[player].split(',')): + item = ItemFactory(tok.strip(), player) + if item: + world.push_precollected(item) + if world.mode[player] != 'inverted': create_regions(world, player) else: diff --git a/Rom.py b/Rom.py index aa4c150a..adb462b8 100644 --- a/Rom.py +++ b/Rom.py @@ -9,13 +9,13 @@ import struct import sys import subprocess -from BaseClasses import ShopType, Region, Location, Item +from BaseClasses import CollectionState, ShopType, Region, Location from Dungeons import dungeon_music_addresses 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 from Utils import output_path, local_path, int16_as_bytes, int32_as_bytes, snes_to_pc -from Items import ItemFactory, item_table +from Items import ItemFactory from EntranceShuffle import door_addresses @@ -895,24 +895,158 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x1800A1, 0x01) # enable overworld screen transition draining for water level inside swamp rom.write_byte(0x180174, 0x01 if world.fix_fake_world[player] else 0x00) rom.write_byte(0x18017E, 0x01) # Fairy fountains only trade in bottles - rom.write_byte(0x180034, 0x0A) # starting max bombs - rom.write_byte(0x180035, 30) # starting max arrows - for x in range(0x183000, 0x18304F): - rom.write_byte(x, 0) # Zero the initial equipment array - rom.write_byte(0x18302C, 0x18) # starting max health - rom.write_byte(0x18302D, 0x18) # starting current health - rom.write_byte(0x183039, 0x68) # starting abilities, bit array - + + # Starting equipment + equip = [0] * (0x340 + 0x4F) + equip[0x36C] = 0x18 + equip[0x36D] = 0x18 + equip[0x379] = 0x68 + starting_max_bombs = 10 + starting_max_arrows = 30 + + startingstate = CollectionState(world) + + if startingstate.has('Bow', player): + equip[0x340] = 1 + equip[0x38E] |= 0x20 # progressive flag to get the correct hint in all cases + if not world.retro[player]: + equip[0x38E] |= 0x80 + if startingstate.has('Silver Arrows', player): + equip[0x38E] |= 0x40 + + if startingstate.has('Titans Mitts', player): + equip[0x354] = 2 + elif startingstate.has('Power Glove', player): + equip[0x354] = 1 + + if startingstate.has('Golden Sword', player): + equip[0x359] = 4 + elif startingstate.has('Tempered Sword', player): + equip[0x359] = 3 + elif startingstate.has('Master Sword', player): + equip[0x359] = 2 + elif startingstate.has('Fighter Sword', player): + equip[0x359] = 1 + + if startingstate.has('Mirror Shield', player): + equip[0x35A] = 3 + elif startingstate.has('Red Shield', player): + equip[0x35A] = 2 + elif startingstate.has('Blue Shield', player): + equip[0x35A] = 1 + + if startingstate.has('Red Mail', player): + equip[0x35B] = 2 + elif startingstate.has('Blue Mail', player): + equip[0x35B] = 1 + + if startingstate.has('Magic Upgrade (1/4)', player): + equip[0x37B] = 2 + equip[0x36E] = 0x80 + elif startingstate.has('Magic Upgrade (1/2)', player): + equip[0x37B] = 1 + equip[0x36E] = 0x80 + for item in world.precollected_items: if item.player != player: continue - if item.name == 'Fighter Sword': - rom.write_byte(0x183000+0x19, 0x01) - rom.write_byte(0x0271A6+0x19, 0x01) - rom.write_byte(0x180043, 0x01) # special starting sword byte + if item.name in ['Bow', 'Silver Arrows', 'Progressive Bow', 'Progressive Bow (Alt)', + 'Titans Mitts', 'Power Glove', 'Progressive Glove', + 'Golden Sword', 'Tempered Sword', 'Master Sword', 'Fighter Sword', 'Progressive Sword', + 'Mirror Shield', 'Red Shield', 'Blue Shield', 'Progressive Shield', + 'Red Mail', 'Blue Mail', 'Progressive Armor', + 'Magic Upgrade (1/4)', 'Magic Upgrade (1/2)']: + continue + + set_table = {'Book of Mudora': (0x34E, 1), 'Hammer': (0x34B, 1), 'Bug Catching Net': (0x34D, 1), 'Hookshot': (0x342, 1), 'Magic Mirror': (0x353, 2), + 'Cape': (0x352, 1), 'Lamp': (0x34A, 1), 'Moon Pearl': (0x357, 1), 'Cane of Somaria': (0x350, 1), 'Cane of Byrna': (0x351, 1), + 'Fire Rod': (0x345, 1), 'Ice Rod': (0x346, 1), 'Bombos': (0x347, 1), 'Ether': (0x348, 1), 'Quake': (0x349, 1)} + or_table = {'Green Pendant': (0x374, 0x04), 'Red Pendant': (0x374, 0x01), 'Blue Pendant': (0x374, 0x02), + 'Crystal 1': (0x37A, 0x02), 'Crystal 2': (0x37A, 0x10), 'Crystal 3': (0x37A, 0x40), 'Crystal 4': (0x37A, 0x20), + 'Crystal 5': (0x37A, 0x04), 'Crystal 6': (0x37A, 0x01), 'Crystal 7': (0x37A, 0x08), + 'Big Key (Eastern Palace)': (0x367, 0x20), 'Compass (Eastern Palace)': (0x365, 0x20), 'Map (Eastern Palace)': (0x369, 0x20), + 'Big Key (Desert Palace)': (0x367, 0x10), 'Compass (Desert Palace)': (0x365, 0x10), 'Map (Desert Palace)': (0x369, 0x10), + 'Big Key (Tower of Hera)': (0x366, 0x20), 'Compass (Tower of Hera)': (0x364, 0x20), 'Map (Tower of Hera)': (0x368, 0x20), + 'Big Key (Escape)': (0x367, 0xC0), 'Compass (Escape)': (0x365, 0xC0), 'Map (Escape)': (0x369, 0xC0), + 'Big Key (Palace of Darkness)': (0x367, 0x02), 'Compass (Palace of Darkness)': (0x365, 0x02), 'Map (Palace of Darkness)': (0x369, 0x02), + 'Big Key (Thieves Town)': (0x366, 0x10), 'Compass (Thieves Town)': (0x364, 0x10), 'Map (Thieves Town)': (0x368, 0x10), + 'Big Key (Skull Woods)': (0x366, 0x80), 'Compass (Skull Woods)': (0x364, 0x80), 'Map (Skull Woods)': (0x368, 0x80), + 'Big Key (Swamp Palace)': (0x367, 0x04), 'Compass (Swamp Palace)': (0x365, 0x04), 'Map (Swamp Palace)': (0x369, 0x04), + 'Big Key (Ice Palace)': (0x366, 0x40), 'Compass (Ice Palace)': (0x364, 0x40), 'Map (Ice Palace)': (0x368, 0x40), + 'Big Key (Misery Mire)': (0x367, 0x01), 'Compass (Misery Mire)': (0x365, 0x01), 'Map (Misery Mire)': (0x369, 0x01), + 'Big Key (Turtle Rock)': (0x366, 0x08), 'Compass (Turtle Rock)': (0x364, 0x08), 'Map (Turtle Rock)': (0x368, 0x08), + 'Big Key (Ganons Tower)': (0x366, 0x04), 'Compass (Ganons Tower)': (0x364, 0x04), 'Map (Ganons Tower)': (0x368, 0x04)} + set_or_table = {'Flippers': (0x356, 1, 0x379, 0x02),'Pegasus Boots': (0x355, 1, 0x379, 0x04), + 'Shovel': (0x34C, 1, 0x38C, 0x04), 'Ocarina': (0x34C, 3, 0x38C, 0x01), + 'Mushroom': (0x344, 1, 0x38C, 0x20 | 0x08), 'Magic Powder': (0x344, 2, 0x38C, 0x10), + 'Blue Boomerang': (0x341, 1, 0x38C, 0x80), 'Red Boomerang': (0x341, 2, 0x38C, 0x40)} + keys = {'Small Key (Eastern Palace)': [0x37E], 'Small Key (Desert Palace)': [0x37F], + 'Small Key (Tower of Hera)': [0x386], + 'Small Key (Agahnims Tower)': [0x380], 'Small Key (Palace of Darkness)': [0x382], + 'Small Key (Thieves Town)': [0x387], + 'Small Key (Skull Woods)': [0x384], 'Small Key (Swamp Palace)': [0x381], + 'Small Key (Ice Palace)': [0x385], + 'Small Key (Misery Mire)': [0x383], 'Small Key (Turtle Rock)': [0x388], + 'Small Key (Ganons Tower)': [0x389], + 'Small Key (Universal)': [0x38B], 'Small Key (Escape)': [0x37C, 0x37D]} + bottles = {'Bottle': 2, 'Bottle (Red Potion)': 3, 'Bottle (Green Potion)': 4, 'Bottle (Blue Potion)': 5, + 'Bottle (Fairy)': 6, 'Bottle (Bee)': 7, 'Bottle (Good Bee)': 8} + rupees = {'Rupee (1)': 1, 'Rupees (5)': 5, 'Rupees (20)': 20, 'Rupees (50)': 50, 'Rupees (100)': 100, 'Rupees (300)': 300} + bomb_caps = {'Bomb Upgrade (+5)': 5, 'Bomb Upgrade (+10)': 10} + arrow_caps = {'Arrow Upgrade (+5)': 5, 'Arrow Upgrade (+10)': 10} + bombs = {'Single Bomb': 1, 'Bombs (3)': 3, 'Bombs (10)': 10} + arrows = {'Single Arrow': 1, 'Arrows (10)': 10} + + if item.name in set_table: + equip[set_table[item.name][0]] = set_table[item.name][1] + elif item.name in or_table: + equip[or_table[item.name][0]] |= or_table[item.name][1] + elif item.name in set_or_table: + equip[set_or_table[item.name][0]] = set_or_table[item.name][1] + equip[set_or_table[item.name][2]] |= set_or_table[item.name][3] + elif item.name in keys: + for address in keys[item.name]: + equip[address] = min(equip[address] + 1, 99) + elif item.name in bottles: + if equip[0x34F] < world.difficulty_requirements[player].progressive_bottle_limit: + equip[0x35C + equip[0x34F]] = bottles[item.name] + equip[0x34F] += 1 + elif item.name in rupees: + equip[0x360:0x362] = list(min(equip[0x360] + (equip[0x361] << 8) + rupees[item.name], 9999).to_bytes(2, byteorder='little', signed=False)) + equip[0x362:0x364] = list(min(equip[0x362] + (equip[0x363] << 8) + rupees[item.name], 9999).to_bytes(2, byteorder='little', signed=False)) + elif item.name in bomb_caps: + starting_max_bombs = min(starting_max_bombs + bomb_caps[item.name], 50) + elif item.name in arrow_caps: + starting_max_arrows = min(starting_max_arrows + arrow_caps[item.name], 70) + elif item.name in bombs: + equip[0x343] += bombs[item.name] + elif item.name in arrows: + if world.retro[player]: + equip[0x38E] |= 0x80 + equip[0x377] = 1 + else: + equip[0x377] += arrows[item.name] + elif item.name in ['Piece of Heart', 'Boss Heart Container', 'Sanctuary Heart Container']: + if item.name == 'Piece of Heart': + equip[0x36B] = (equip[0x36B] + 1) % 4 + if item.name != 'Piece of Heart' or equip[0x36B] == 0: + equip[0x36C] = min(equip[0x36C] + 0x08, 0xA0) + equip[0x36D] = min(equip[0x36D] + 0x08, 0xA0) else: - raise RuntimeError("Unsupported pre-collected item: {}".format(item)) + raise RuntimeError(f'Unsupported item in starting equipment: {item.name}') + + equip[0x343] = min(equip[0x343], starting_max_bombs) + rom.write_byte(0x180034, starting_max_bombs) + equip[0x377] = min(equip[0x377], starting_max_arrows) + rom.write_byte(0x180035, starting_max_arrows) + rom.write_bytes(0x180046, equip[0x360:0x362]) + if equip[0x359]: + rom.write_byte(0x180043, equip[0x359]) + + assert equip[:0x340] == [0] * 0x340 + rom.write_bytes(0x183000, equip[0x340:]) + rom.write_bytes(0x271A6, equip[0x340:0x340+60]) rom.write_byte(0x18004A, 0x00 if world.mode[player] != 'inverted' else 0x01) # Inverted mode rom.write_byte(0x18005D, 0x00) # Hammer always breaks barrier From 71b4f6e94b567bd917b52acc0ef14c014652074e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 6 Jan 2020 18:39:18 +0100 Subject: [PATCH 156/185] Set default value for --enemizercli --- .gitignore | 3 ++- EntranceRandomizer.py | 2 +- Gui.py | 2 +- Mystery.py | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2c13bec1..83d5e97f 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,5 @@ README.html *multisave EnemizerCLI/ .mypy_cache/ -RaceRom.py \ No newline at end of file +RaceRom.py +weights/ diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index c6f03721..064d58ff 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -256,7 +256,7 @@ def parse_arguments(argv, no_defaults=False): for VT site integration, do not use otherwise. ''') parser.add_argument('--skip_playthrough', action='store_true', default=defval(False)) - parser.add_argument('--enemizercli', default=defval('')) + parser.add_argument('--enemizercli', default=defval('EnemizerCLI/EnemizerCLI.Core')) parser.add_argument('--shufflebosses', default=defval('none'), choices=['none', 'basic', 'normal', 'chaos']) parser.add_argument('--shuffleenemies', default=defval('none'), choices=['none', 'shuffled', 'chaos']) parser.add_argument('--enemy_health', default=defval('default'), choices=['default', 'easy', 'normal', 'hard', 'expert']) diff --git a/Gui.py b/Gui.py index b897866b..29b15442 100755 --- a/Gui.py +++ b/Gui.py @@ -309,7 +309,7 @@ def guiMain(args=None): enemizerPathFrame.grid(row=0, column=0, columnspan=3, sticky=W) enemizerCLIlabel = Label(enemizerPathFrame, text="EnemizerCLI path: ") enemizerCLIlabel.pack(side=LEFT) - enemizerCLIpathVar = StringVar() + enemizerCLIpathVar = StringVar(value="EnemizerCLI/EnemizerCLI.Core") enemizerCLIpathEntry = Entry(enemizerPathFrame, textvariable=enemizerCLIpathVar, width=80) enemizerCLIpathEntry.pack(side=LEFT) def EnemizerSelectPath(): diff --git a/Mystery.py b/Mystery.py index 06f57aca..d43ef6c5 100644 --- a/Mystery.py +++ b/Mystery.py @@ -75,7 +75,8 @@ def main(): if args.rom: erargs.rom = args.rom - erargs.enemizercli = args.enemizercli + if args.enemizercli: + erargs.enemizercli = args.enemizercli settings_cache = {k: (roll_settings(v) if args.samesettings else None) for k, v in weights_cache.items()} From 7d05d697dd6c2d916758a93db9859b85256c029b Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 6 Jan 2020 19:09:46 +0100 Subject: [PATCH 157/185] Mystery: can now roll for starting inventory items, eg: startinventory: Pegasus Boots: 'on': 1 'off': 0 Bombs (3): 'on': 1 'off': 1 --- Mystery.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Mystery.py b/Mystery.py index d43ef6c5..e19a5203 100644 --- a/Mystery.py +++ b/Mystery.py @@ -109,8 +109,8 @@ def get_weights(path): return parse_yaml(yaml) def roll_settings(weights): - def get_choice(option): - return random.choices(list(weights[option].keys()), weights=list(map(int,weights[option].values())))[0].replace('"','').replace("'",'') + def get_choice(option, root=weights): + return random.choices(list(root[option].keys()), weights=list(map(int,root[option].values())))[0].replace('"','').replace("'",'') ret = argparse.Namespace() @@ -202,6 +202,13 @@ def roll_settings(weights): ret.beemizer = int(get_choice('beemizer')) if 'beemizer' in weights.keys() else 1 # suck it :) + inventoryweights = weights.get('startinventory', {}) + startitems = [] + for item in inventoryweights.keys(): + if get_choice(item, inventoryweights) == 'on': + startitems.append(item) + ret.startinventory = ','.join(startitems) + return ret if __name__ == '__main__': From 48305adaa08f808316230e230e37af41791769a4 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 6 Jan 2020 20:01:03 +0100 Subject: [PATCH 158/185] Mystery: weights can now specify a default value for convenience, eg: dungeon_items: full startinventory: Pegasus Boots: on --- Mystery.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mystery.py b/Mystery.py index e19a5203..298b9217 100644 --- a/Mystery.py +++ b/Mystery.py @@ -110,6 +110,10 @@ def get_weights(path): def roll_settings(weights): def get_choice(option, root=weights): + if type(root[option]) is not dict: + return root[option] + if not root[option]: + return None return random.choices(list(root[option].keys()), weights=list(map(int,root[option].values())))[0].replace('"','').replace("'",'') ret = argparse.Namespace() From 99577d9e4c2398d84ee9facb13521d6aa1d80e6b Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 6 Jan 2020 20:14:16 +0100 Subject: [PATCH 159/185] Mystery: safer strip --- Mystery.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Mystery.py b/Mystery.py index 298b9217..9d7755ea 100644 --- a/Mystery.py +++ b/Mystery.py @@ -8,15 +8,18 @@ from EntranceRandomizer import parse_arguments from Main import main as ERmain def parse_yaml(txt): + def strip(s): + s = s.strip() + return '' if not s else s.strip('"') if s[0] == '"' else s.strip("'") if s[0] == "'" else s ret = {} indents = {len(txt) - len(txt.lstrip(' ')): ret} for line in txt.splitlines(): if not line: continue name, val = line.split(':', 1) - val = val.strip() + val = strip(val) spaces = len(name) - len(name.lstrip(' ')) - name = name.strip() + name = strip(name) if val: indents[spaces][name] = val else: @@ -114,7 +117,7 @@ def roll_settings(weights): return root[option] if not root[option]: return None - return random.choices(list(root[option].keys()), weights=list(map(int,root[option].values())))[0].replace('"','').replace("'",'') + return random.choices(list(root[option].keys()), weights=list(map(int,root[option].values())))[0] ret = argparse.Namespace() From 28011cf675ccef247e752f57db6d43fcf2a96cf3 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 8 Jan 2020 03:43:48 +0100 Subject: [PATCH 160/185] Built-in palette shuffle (including blackout) --- Adjuster.py | 7 +- AdjusterMain.py | 5 +- EntranceRandomizer.py | 8 +- Gui.py | 187 ++++++++++++++++++++++++++---------------- Main.py | 6 +- Plando.py | 6 +- Rom.py | 149 +++++++++++++++++++++++++++++++-- 7 files changed, 281 insertions(+), 87 deletions(-) diff --git a/Adjuster.py b/Adjuster.py index 393b7b75..d3a8239c 100755 --- a/Adjuster.py +++ b/Adjuster.py @@ -15,7 +15,8 @@ class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter): def main(): parser = argparse.ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter) - parser.add_argument('--rom', default='ER_base.sfc', help='Path to an ALttP JAP(1.0) rom to use as a base.') + parser.add_argument('--rom', default='ER_base.sfc', help='Path to an ALttPR rom to adjust.') + parser.add_argument('--baserom', default='Zelda no Densetsu - Kamigami no Triforce (Japan).sfc', help='Path to an ALttP JAP(1.0) rom to use as a base.') parser.add_argument('--loglevel', default='info', const='info', nargs='?', choices=['error', 'info', 'warning', 'debug'], help='Select level of logging for output.') parser.add_argument('--fastmenu', default='normal', const='normal', nargs='?', choices=['normal', 'instant', 'double', 'triple', 'quadruple', 'half'], help='''\ @@ -31,6 +32,8 @@ def main(): ''') parser.add_argument('--heartcolor', default='red', const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow', 'random'], help='Select the color of Link\'s heart meter. (default: %(default)s)') + parser.add_argument('--ow_palettes', default='default', choices=['default', 'random', 'blackout']) + parser.add_argument('--uw_palettes', default='default', choices=['default', 'random', 'blackout']) parser.add_argument('--sprite', help='''\ Path to a sprite sheet to use for Link. Needs to be in binary format and have a length of 0x7000 (28672) bytes, @@ -43,7 +46,7 @@ def main(): # ToDo: Validate files further than mere existance if not os.path.isfile(args.rom): - input('Could not find valid base rom for patching at expected path %s. Please run with -h to see help for further information. \nPress Enter to exit.' % args.rom) + input('Could not find valid rom for patching at expected path %s. Please run with -h to see help for further information. \nPress Enter to exit.' % args.rom) sys.exit(1) if args.sprite is not None and not os.path.isfile(args.sprite): input('Could not find link sprite sheet at given location. \nPress Enter to exit.' % args.sprite) diff --git a/AdjusterMain.py b/AdjusterMain.py index f4dbb663..5bf6eeb4 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -24,10 +24,13 @@ def adjust(args): if os.stat(args.rom).st_size in (0x200000, 0x400000) and os.path.splitext(args.rom)[-1].lower() == '.sfc': rom = LocalRom(args.rom, False) + if os.path.isfile(args.baserom): + baserom = LocalRom(args.baserom, True) + rom.orig_buffer = baserom.orig_buffer else: raise RuntimeError('Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.') - apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, sprite, parse_names_string(args.names)) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, sprite, args.ow_palettes, args.uw_palettes, parse_names_string(args.names)) rom.write_to_file(output_path('%s.sfc' % outfilebase)) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 064d58ff..c315c962 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -242,6 +242,8 @@ def parse_arguments(argv, no_defaults=False): ''') parser.add_argument('--heartcolor', default=defval('red'), const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow', 'random'], help='Select the color of Link\'s heart meter. (default: %(default)s)') + parser.add_argument('--ow_palettes', default=defval('default'), choices=['default', 'random', 'blackout']) + parser.add_argument('--uw_palettes', default=defval('default'), choices=['default', 'random', 'blackout']) parser.add_argument('--sprite', help='''\ Path to a sprite sheet to use for Link. Needs to be in binary format and have a length of 0x7000 (28672) bytes, @@ -261,7 +263,6 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument('--shuffleenemies', default=defval('none'), choices=['none', 'shuffled', 'chaos']) parser.add_argument('--enemy_health', default=defval('default'), choices=['default', 'easy', 'normal', 'hard', 'expert']) parser.add_argument('--enemy_damage', default=defval('default'), choices=['default', 'shuffled', 'chaos']) - parser.add_argument('--shufflepalette', default=defval(False), action='store_true') parser.add_argument('--shufflepots', default=defval(False), action='store_true') parser.add_argument('--beemizer', default=defval(0), type=lambda value: min(max(int(value), 0), 4)) parser.add_argument('--multi', default=defval(1), type=lambda value: min(max(int(value), 1), 255)) @@ -286,8 +287,9 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', 'startinventory', - 'retro', 'accessibility', 'hints', 'shufflepalette', 'shufflepots', 'beemizer', - 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage']: + 'retro', 'accessibility', 'hints', 'shufflepots', 'beemizer', + 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage', + 'ow_palettes', 'uw_palettes']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Gui.py b/Gui.py index 29b15442..cac05534 100755 --- a/Gui.py +++ b/Gui.py @@ -60,8 +60,6 @@ def guiMain(args=None): createSpoilerCheckbutton = Checkbutton(checkBoxFrame, text="Create Spoiler Log", variable=createSpoilerVar) suppressRomVar = IntVar() suppressRomCheckbutton = Checkbutton(checkBoxFrame, text="Do not create patched Rom", variable=suppressRomVar) - quickSwapVar = IntVar() - quickSwapCheckbutton = Checkbutton(checkBoxFrame, text="Enabled L/R Item quickswapping", variable=quickSwapVar) openpyramidVar = IntVar() openpyramidCheckbutton = Checkbutton(checkBoxFrame, text="Pre-open Pyramid Hole", variable=openpyramidVar) mcsbshuffleFrame = Frame(checkBoxFrame) @@ -76,8 +74,6 @@ def guiMain(args=None): bigkeyshuffleCheckbutton = Checkbutton(mcsbshuffleFrame, text="BigKeys", variable=bigkeyshuffleVar) retroVar = IntVar() retroCheckbutton = Checkbutton(checkBoxFrame, text="Retro mode (universal keys)", variable=retroVar) - disableMusicVar = IntVar() - disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar) shuffleGanonVar = IntVar() shuffleGanonVar.set(1) #set default shuffleGanonCheckbutton = Checkbutton(checkBoxFrame, text="Include Ganon's Tower and Pyramid Hole in shuffle pool", variable=shuffleGanonVar) @@ -89,7 +85,6 @@ def guiMain(args=None): createSpoilerCheckbutton.pack(expand=True, anchor=W) suppressRomCheckbutton.pack(expand=True, anchor=W) - quickSwapCheckbutton.pack(expand=True, anchor=W) openpyramidCheckbutton.pack(expand=True, anchor=W) mcsbshuffleFrame.pack(expand=True, anchor=W) mcsbLabel.grid(row=0, column=0) @@ -98,57 +93,23 @@ def guiMain(args=None): keyshuffleCheckbutton.grid(row=0, column=3) bigkeyshuffleCheckbutton.grid(row=0, column=4) retroCheckbutton.pack(expand=True, anchor=W) - disableMusicCheckbutton.pack(expand=True, anchor=W) shuffleGanonCheckbutton.pack(expand=True, anchor=W) hintsCheckbutton.pack(expand=True, anchor=W) customCheckbutton.pack(expand=True, anchor=W) - fileDialogFrame = Frame(rightHalfFrame) + romOptionsFrame = LabelFrame(rightHalfFrame, text="Rom options") + romOptionsFrame.columnconfigure(0, weight=1) + romOptionsFrame.columnconfigure(1, weight=1) + for i in range(5): + romOptionsFrame.rowconfigure(i, weight=1) - heartbeepFrame = Frame(fileDialogFrame) - heartbeepVar = StringVar() - heartbeepVar.set('normal') - heartbeepOptionMenu = OptionMenu(heartbeepFrame, heartbeepVar, 'double', 'normal', 'half', 'quarter', 'off') - heartbeepOptionMenu.pack(side=RIGHT) - heartbeepLabel = Label(heartbeepFrame, text='Heartbeep sound rate') - heartbeepLabel.pack(side=LEFT, padx=(0,52)) + disableMusicVar = IntVar() + disableMusicCheckbutton = Checkbutton(romOptionsFrame, text="Disable music", variable=disableMusicVar) + disableMusicCheckbutton.grid(row=0, column=0, sticky=E) - heartcolorFrame = Frame(fileDialogFrame) - heartcolorVar = StringVar() - heartcolorVar.set('red') - heartcolorOptionMenu = OptionMenu(heartcolorFrame, heartcolorVar, 'red', 'blue', 'green', 'yellow', 'random') - heartcolorOptionMenu.pack(side=RIGHT) - heartcolorLabel = Label(heartcolorFrame, text='Heart color') - heartcolorLabel.pack(side=LEFT, padx=(0,127)) - - fastMenuFrame = Frame(fileDialogFrame) - fastMenuVar = StringVar() - fastMenuVar.set('normal') - fastMenuOptionMenu = OptionMenu(fastMenuFrame, fastMenuVar, 'normal', 'instant', 'double', 'triple', 'quadruple', 'half') - fastMenuOptionMenu.pack(side=RIGHT) - fastMenuLabel = Label(fastMenuFrame, text='Menu speed') - fastMenuLabel.pack(side=LEFT, padx=(0,100)) - - heartbeepFrame.pack(expand=True, anchor=E) - heartcolorFrame.pack(expand=True, anchor=E) - fastMenuFrame.pack(expand=True, anchor=E) - - romDialogFrame = Frame(fileDialogFrame) - baseRomLabel = Label(romDialogFrame, text='Base Rom') - romVar = StringVar(value="Zelda no Densetsu - Kamigami no Triforce (Japan).sfc") - romEntry = Entry(romDialogFrame, textvariable=romVar) - - def RomSelect(): - rom = filedialog.askopenfilename(filetypes=[("Rom Files", (".sfc", ".smc")), ("All Files", "*")]) - romVar.set(rom) - romSelectButton = Button(romDialogFrame, text='Select Rom', command=RomSelect) - - baseRomLabel.pack(side=LEFT) - romEntry.pack(side=LEFT) - romSelectButton.pack(side=LEFT) - - spriteDialogFrame = Frame(fileDialogFrame) - baseSpriteLabel = Label(spriteDialogFrame, text='Link Sprite:') + spriteDialogFrame = Frame(romOptionsFrame) + spriteDialogFrame.grid(row=0, column=1) + baseSpriteLabel = Label(spriteDialogFrame, text='Sprite:') spriteNameVar = StringVar() sprite = None @@ -168,17 +129,79 @@ def guiMain(args=None): def SpriteSelect(): SpriteSelector(mainWindow, set_sprite) - spriteSelectButton = Button(spriteDialogFrame, text='Open Sprite Picker', command=SpriteSelect) + spriteSelectButton = Button(spriteDialogFrame, text='...', command=SpriteSelect) baseSpriteLabel.pack(side=LEFT) spriteEntry.pack(side=LEFT) spriteSelectButton.pack(side=LEFT) - romDialogFrame.pack() - spriteDialogFrame.pack() + quickSwapVar = IntVar() + quickSwapCheckbutton = Checkbutton(romOptionsFrame, text="L/R Quickswapping", variable=quickSwapVar) + quickSwapCheckbutton.grid(row=1, column=0, sticky=E) - checkBoxFrame.pack() - fileDialogFrame.pack() + fastMenuFrame = Frame(romOptionsFrame) + fastMenuFrame.grid(row=1, column=1, sticky=E) + fastMenuLabel = Label(fastMenuFrame, text='Menu speed') + fastMenuLabel.pack(side=LEFT) + fastMenuVar = StringVar() + fastMenuVar.set('normal') + fastMenuOptionMenu = OptionMenu(fastMenuFrame, fastMenuVar, 'normal', 'instant', 'double', 'triple', 'quadruple', 'half') + fastMenuOptionMenu.pack(side=LEFT) + + heartcolorFrame = Frame(romOptionsFrame) + heartcolorFrame.grid(row=2, column=0, sticky=E) + heartcolorLabel = Label(heartcolorFrame, text='Heart color') + heartcolorLabel.pack(side=LEFT) + heartcolorVar = StringVar() + heartcolorVar.set('red') + heartcolorOptionMenu = OptionMenu(heartcolorFrame, heartcolorVar, 'red', 'blue', 'green', 'yellow', 'random') + heartcolorOptionMenu.pack(side=LEFT) + + heartbeepFrame = Frame(romOptionsFrame) + heartbeepFrame.grid(row=2, column=1, sticky=E) + heartbeepLabel = Label(heartbeepFrame, text='Heartbeep') + heartbeepLabel.pack(side=LEFT) + heartbeepVar = StringVar() + heartbeepVar.set('normal') + heartbeepOptionMenu = OptionMenu(heartbeepFrame, heartbeepVar, 'double', 'normal', 'half', 'quarter', 'off') + heartbeepOptionMenu.pack(side=LEFT) + + owPalettesFrame = Frame(romOptionsFrame) + owPalettesFrame.grid(row=3, column=0, sticky=E) + owPalettesLabel = Label(owPalettesFrame, text='Overworld palettes') + owPalettesLabel.pack(side=LEFT) + owPalettesVar = StringVar() + owPalettesVar.set('default') + owPalettesOptionMenu = OptionMenu(owPalettesFrame, owPalettesVar, 'default', 'random', 'blackout') + owPalettesOptionMenu.pack(side=LEFT) + + uwPalettesFrame = Frame(romOptionsFrame) + uwPalettesFrame.grid(row=3, column=1, sticky=E) + uwPalettesLabel = Label(uwPalettesFrame, text='Dungeon palettes') + uwPalettesLabel.pack(side=LEFT) + uwPalettesVar = StringVar() + uwPalettesVar.set('default') + uwPalettesOptionMenu = OptionMenu(uwPalettesFrame, uwPalettesVar, 'default', 'random', 'blackout') + uwPalettesOptionMenu.pack(side=LEFT) + + romDialogFrame = Frame(romOptionsFrame) + romDialogFrame.grid(row=4, column=0, columnspan=2, sticky=W+E) + + baseRomLabel = Label(romDialogFrame, text='Base Rom: ') + romVar = StringVar(value="Zelda no Densetsu - Kamigami no Triforce (Japan).sfc") + romEntry = Entry(romDialogFrame, textvariable=romVar) + + def RomSelect(): + rom = filedialog.askopenfilename(filetypes=[("Rom Files", (".sfc", ".smc")), ("All Files", "*")]) + romVar.set(rom) + romSelectButton = Button(romDialogFrame, text='Select Rom', command=RomSelect) + + baseRomLabel.pack(side=LEFT) + romEntry.pack(side=LEFT, expand=True, fill=X) + romSelectButton.pack(side=LEFT) + + checkBoxFrame.pack(side=TOP, anchor=W, padx=5, pady=10) + romOptionsFrame.pack(expand=True, fill=BOTH, padx=3) drowDownFrame = Frame(topFrame) @@ -300,18 +323,19 @@ def guiMain(args=None): algorithmFrame.pack(expand=True, anchor=E) shuffleFrame.pack(expand=True, anchor=E) - enemizerFrame = LabelFrame(randomizerWindow, text="Enemizer", padx=5, pady=5) + enemizerFrame = LabelFrame(randomizerWindow, text="Enemizer", padx=5, pady=2) enemizerFrame.columnconfigure(0, weight=1) enemizerFrame.columnconfigure(1, weight=1) enemizerFrame.columnconfigure(2, weight=1) + enemizerFrame.columnconfigure(3, weight=1) enemizerPathFrame = Frame(enemizerFrame) - enemizerPathFrame.grid(row=0, column=0, columnspan=3, sticky=W) + enemizerPathFrame.grid(row=0, column=0, columnspan=3, sticky=W+E, padx=3) enemizerCLIlabel = Label(enemizerPathFrame, text="EnemizerCLI path: ") enemizerCLIlabel.pack(side=LEFT) enemizerCLIpathVar = StringVar(value="EnemizerCLI/EnemizerCLI.Core") - enemizerCLIpathEntry = Entry(enemizerPathFrame, textvariable=enemizerCLIpathVar, width=80) - enemizerCLIpathEntry.pack(side=LEFT) + enemizerCLIpathEntry = Entry(enemizerPathFrame, textvariable=enemizerCLIpathVar) + enemizerCLIpathEntry.pack(side=LEFT, expand=True, fill=X) def EnemizerSelectPath(): path = filedialog.askopenfilename(filetypes=[("EnemizerCLI executable", "*EnemizerCLI*")]) if path: @@ -319,18 +343,21 @@ def guiMain(args=None): enemizerCLIbrowseButton = Button(enemizerPathFrame, text='...', command=EnemizerSelectPath) enemizerCLIbrowseButton.pack(side=LEFT) - enemyShuffleVar = IntVar() - enemyShuffleButton = Checkbutton(enemizerFrame, text="Enemy shuffle", variable=enemyShuffleVar) - enemyShuffleButton.grid(row=1, column=0) - paletteShuffleVar = IntVar() - paletteShuffleButton = Checkbutton(enemizerFrame, text="Palette shuffle", variable=paletteShuffleVar) - paletteShuffleButton.grid(row=1, column=1) potShuffleVar = IntVar() potShuffleButton = Checkbutton(enemizerFrame, text="Pot shuffle", variable=potShuffleVar) - potShuffleButton.grid(row=1, column=2) + potShuffleButton.grid(row=0, column=3) + + enemizerEnemyFrame = Frame(enemizerFrame) + enemizerEnemyFrame.grid(row=1, column=0, pady=5) + enemizerEnemyLabel = Label(enemizerEnemyFrame, text='Enemy shuffle') + enemizerEnemyLabel.pack(side=LEFT) + enemyShuffleVar = StringVar() + enemyShuffleVar.set('none') + enemizerEnemyOption = OptionMenu(enemizerEnemyFrame, enemyShuffleVar, 'none', 'shuffled', 'chaos') + enemizerEnemyOption.pack(side=LEFT) enemizerBossFrame = Frame(enemizerFrame) - enemizerBossFrame.grid(row=2, column=0) + enemizerBossFrame.grid(row=1, column=1) enemizerBossLabel = Label(enemizerBossFrame, text='Boss shuffle') enemizerBossLabel.pack(side=LEFT) enemizerBossVar = StringVar() @@ -339,7 +366,7 @@ def guiMain(args=None): enemizerBossOption.pack(side=LEFT) enemizerDamageFrame = Frame(enemizerFrame) - enemizerDamageFrame.grid(row=2, column=1) + enemizerDamageFrame.grid(row=1, column=2) enemizerDamageLabel = Label(enemizerDamageFrame, text='Enemy damage') enemizerDamageLabel.pack(side=LEFT) enemizerDamageVar = StringVar() @@ -348,7 +375,7 @@ def guiMain(args=None): enemizerDamageOption.pack(side=LEFT) enemizerHealthFrame = Frame(enemizerFrame) - enemizerHealthFrame.grid(row=2, column=2) + enemizerHealthFrame.grid(row=1, column=3) enemizerHealthLabel = Label(enemizerHealthFrame, text='Enemy health') enemizerHealthLabel.pack(side=LEFT) enemizerHealthVar = StringVar() @@ -403,14 +430,15 @@ def guiMain(args=None): guiargs.retro = bool(retroVar.get()) guiargs.quickswap = bool(quickSwapVar.get()) guiargs.disablemusic = bool(disableMusicVar.get()) + guiargs.ow_palettes = owPalettesVar.get() + guiargs.uw_palettes = uwPalettesVar.get() guiargs.shuffleganon = bool(shuffleGanonVar.get()) guiargs.hints = bool(hintsVar.get()) guiargs.enemizercli = enemizerCLIpathVar.get() guiargs.shufflebosses = enemizerBossVar.get() - guiargs.shuffleenemies = 'chaos' if bool(enemyShuffleVar.get()) else 'none' + guiargs.shuffleenemies = enemyShuffleVar.get() guiargs.enemy_health = enemizerHealthVar.get() guiargs.enemy_damage = enemizerDamageVar.get() - guiargs.shufflepalette = bool(paletteShuffleVar.get()) guiargs.shufflepots = bool(potShuffleVar.get()) guiargs.custom = bool(customVar.get()) guiargs.customitemarray = [int(bowVar.get()), int(silverarrowVar.get()), int(boomerangVar.get()), int(magicboomerangVar.get()), int(hookshotVar.get()), int(mushroomVar.get()), int(magicpowderVar.get()), int(firerodVar.get()), @@ -534,6 +562,18 @@ def guiMain(args=None): fastMenuLabel2 = Label(fastMenuFrame2, text='Menu speed') fastMenuLabel2.pack(side=LEFT) + owPalettesFrame2 = Frame(drowDownFrame2) + owPalettesOptionMenu2 = OptionMenu(owPalettesFrame2, owPalettesVar, 'default', 'random', 'blackout') + owPalettesOptionMenu2.pack(side=RIGHT) + owPalettesLabel2 = Label(owPalettesFrame2, text='Overworld palettes') + owPalettesLabel2.pack(side=LEFT) + + uwPalettesFrame2 = Frame(drowDownFrame2) + uwPalettesOptionMenu2 = OptionMenu(uwPalettesFrame2, uwPalettesVar, 'default', 'random', 'blackout') + uwPalettesOptionMenu2.pack(side=RIGHT) + uwPalettesLabel2 = Label(uwPalettesFrame2, text='Dungeon palettes') + uwPalettesLabel2.pack(side=LEFT) + namesFrame2 = Frame(drowDownFrame2) namesLabel2 = Label(namesFrame2, text='Player names') namesVar2 = StringVar() @@ -545,6 +585,8 @@ def guiMain(args=None): heartbeepFrame2.pack(expand=True, anchor=E) heartcolorFrame2.pack(expand=True, anchor=E) fastMenuFrame2.pack(expand=True, anchor=E) + owPalettesFrame2.pack(expand=True, anchor=E) + uwPalettesFrame2.pack(expand=True, anchor=E) namesFrame2.pack(expand=True, anchor=E) bottomFrame2 = Frame(topFrame2) @@ -554,9 +596,12 @@ def guiMain(args=None): guiargs.heartbeep = heartbeepVar.get() guiargs.heartcolor = heartcolorVar.get() guiargs.fastmenu = fastMenuVar.get() + guiargs.ow_palettes = owPalettesVar.get() + guiargs.uw_palettes = uwPalettesVar.get() guiargs.quickswap = bool(quickSwapVar.get()) guiargs.disablemusic = bool(disableMusicVar.get()) guiargs.rom = romVar2.get() + guiargs.baserom = romVar.get() guiargs.sprite = sprite guiargs.names = namesEntry2.get() try: diff --git a/Main.py b/Main.py index 8e7ccfb4..f20940fb 100644 --- a/Main.py +++ b/Main.py @@ -152,7 +152,7 @@ def main(args, seed=None): for player in range(1, world.players + 1): 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.shufflepalette[player] or args.shufflepots[player]) + or args.shufflepots[player]) local_rom = None if args.jsonout: @@ -168,7 +168,7 @@ def main(args, seed=None): enemizer_patch = [] if use_enemizer and (args.enemizercli or not args.jsonout): - enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepalette[player], args.shufflepots[player]) + enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player]) if args.jsonout: jsonout[f'patch{player}'] = rom.patches @@ -185,7 +185,7 @@ def main(args, seed=None): for addr, values in get_race_rom_patches(rom).items(): rom.write_bytes(int(addr), values) - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, player_names) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, args.ow_palettes[player], args.uw_palettes[player], player_names) mcsb_name = '' if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): diff --git a/Plando.py b/Plando.py index 3011a023..cf1fbf51 100755 --- a/Plando.py +++ b/Plando.py @@ -74,9 +74,9 @@ def main(args): sprite = None rom = LocalRom(args.rom) - patch_rom(world, 1, rom) + patch_rom(world, 1, rom, False) - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, args.ow_palettes, args.uw_palettes) for textname, texttype, text in text_patches: if texttype == 'text': @@ -213,6 +213,8 @@ def start(): help='Select the rate at which the heart beep sound is played at low health.') parser.add_argument('--heartcolor', default='red', const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow'], help='Select the color of Link\'s heart meter. (default: %(default)s)') + parser.add_argument('--ow_palettes', default='default', choices=['default', 'random', 'blackout']) + parser.add_argument('--uw_palettes', default='default', choices=['default', 'random', 'blackout']) parser.add_argument('--sprite', help='Path to a sprite sheet to use for Link. Needs to be in binary format and have a length of 0x7000 (28672) bytes.') parser.add_argument('--plando', help='Filled out template to use for setting up the rom.') args = parser.parse_args() diff --git a/Rom.py b/Rom.py index adb462b8..8af1a23e 100644 --- a/Rom.py +++ b/Rom.py @@ -27,6 +27,7 @@ class JsonRom(object): def __init__(self): self.name = None + self.orig_buffer = None self.patches = {} self.addresses = [] @@ -72,10 +73,12 @@ class LocalRom(object): def __init__(self, file, patch=True): self.name = None + self.orig_buffer = None with open(file, 'rb') as stream: self.buffer = read_rom(stream) if patch: self.patch_base_rom() + self.orig_buffer = self.buffer.copy() def write_byte(self, address, value): self.buffer[address] = value @@ -161,7 +164,7 @@ def read_rom(stream): buffer = buffer[0x200:] return buffer -def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepalette, shufflepots): +def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepots): baserom_path = os.path.abspath(baserom_path) basepatch_path = os.path.abspath(local_path('data/base2current.json')) randopatch_path = os.path.abspath(output_path('enemizer_randopatch.json')) @@ -197,10 +200,10 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepal 'RandomizeBossDamageMinAmount': 0, 'RandomizeBossDamageMaxAmount': 200, 'RandomizeBossBehavior': False, - 'RandomizeDungeonPalettes': shufflepalette, + 'RandomizeDungeonPalettes': False, 'SetBlackoutMode': False, - 'RandomizeOverworldPalettes': shufflepalette, - 'RandomizeSpritePalettes': shufflepalette, + 'RandomizeOverworldPalettes': False, + 'RandomizeSpritePalettes': False, 'SetAdvancedSpritePalettes': False, 'PukeMode': False, 'NegativeMode': False, @@ -1278,7 +1281,7 @@ def hud_format_text(text): return output[:32] -def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite, names = None): +def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite, ow_palettes, uw_palettes, names = None): # enable instant item menu if fastmenu == 'instant': @@ -1439,6 +1442,18 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr if sprite is not None: write_sprite(rom, sprite) + default_ow_palettes(rom) + if ow_palettes == 'random': + randomize_ow_palettes(rom) + elif ow_palettes == 'blackout': + blackout_ow_palettes(rom) + + default_uw_palettes(rom) + if uw_palettes == 'random': + randomize_uw_palettes(rom) + elif uw_palettes == 'blackout': + blackout_uw_palettes(rom) + # set player names for player, name in names.items(): if 0 < player <= 64: @@ -1455,6 +1470,130 @@ def write_sprite(rom, sprite): rom.write_bytes(0xDD308, sprite.palette) rom.write_bytes(0xDEDF5, sprite.glove_palette) +def set_color(rom, address, color, shade): + r = round(min(color[0], 0xFF) * pow(0.8, shade) * 0x1F / 0xFF) + g = round(min(color[1], 0xFF) * pow(0.8, shade) * 0x1F / 0xFF) + b = round(min(color[2], 0xFF) * pow(0.8, shade) * 0x1F / 0xFF) + + rom.write_bytes(address, ((b << 10) | (g << 5) | (r << 0)).to_bytes(2, byteorder='little', signed=False)) + +def default_ow_palettes(rom): + if not rom.orig_buffer: + return + rom.write_bytes(0xDE604, rom.orig_buffer[0xDE604:0xDEBB4]) + + for address in [0x067FB4, 0x067F94, 0x067FC6, 0x067FE6, 0x067FE1, 0x05FEA9, 0x05FEB3]: + rom.write_bytes(address, rom.orig_buffer[address:address+2]) + +def randomize_ow_palettes(rom): + grass, grass2, grass3, dirt, dirt2, water, clouds, dwdirt,\ + dwgrass, dwwater, dwdmdirt, dwdmgrass, dwdmclouds1, dwdmclouds2 = [[random.randint(60, 215) for _ in range(3)] for _ in range(14)] + dwtree = [c + random.randint(-20, 10) for c in dwgrass] + treeleaf = [c + random.randint(-20, 10) for c in grass] + + patches = {0x067FB4: (grass, 0), 0x067F94: (grass, 0), 0x067FC6: (grass, 0), 0x067FE6: (grass, 0), 0x067FE1: (grass, 3), 0x05FEA9: (grass, 0), 0x05FEB3: (dwgrass, 1), + 0x0DD4AC: (grass, 2), 0x0DE6DE: (grass2, 2), 0x0DE6E0: (grass2, 1), 0x0DD4AE: (grass2, 1), 0x0DE9FA: (grass2, 1), 0x0DEA0E: (grass2, 1), 0x0DE9FE: (grass2, 0), + 0x0DD3D2: (grass2, 2), 0x0DE88C: (grass2, 2), 0x0DE8A8: (grass2, 2), 0x0DE9F8: (grass2, 2), 0x0DEA4E: (grass2, 2), 0x0DEAF6: (grass2, 2), 0x0DEB2E: (grass2, 2), 0x0DEB4A: (grass2, 2), + 0x0DE892: (grass, 1), 0x0DE886: (grass, 0), 0x0DE6D2: (grass, 0), 0x0DE6FA: (grass, 3), 0x0DE6FC: (grass, 0), 0x0DE6FE: (grass, 0), 0x0DE70A: (grass, 0), 0x0DE708: (grass, 2), 0x0DE70C: (grass, 1), + 0x0DE6D4: (dirt, 2), 0x0DE6CA: (dirt, 5), 0x0DE6CC: (dirt, 4), 0x0DE6CE: (dirt, 3), 0x0DE6E2: (dirt, 2), 0x0DE6D8: (dirt, 5), 0x0DE6DA: (dirt, 4), 0x0DE6DC: (dirt, 2), + 0x0DE6F0: (dirt, 2), 0x0DE6E6: (dirt, 5), 0x0DE6E8: (dirt, 4), 0x0DE6EA: (dirt, 2), 0x0DE6EC: (dirt, 4), 0x0DE6EE: (dirt, 2), + 0x0DE91E: (grass, 0), + 0x0DE920: (dirt, 2), 0x0DE916: (dirt, 3), 0x0DE934: (dirt, 3), + 0x0DE92C: (grass, 0), 0x0DE93A: (grass, 0), 0x0DE91C: (grass, 1), 0x0DE92A: (grass, 1), 0x0DEA1C: (grass, 0), 0x0DEA2A: (grass, 0), 0x0DEA30: (grass, 0), + 0x0DEA2E: (dirt, 5), + 0x0DE884: (grass, 3), 0x0DE8AE: (grass, 3), 0x0DE8BE: (grass, 3), 0x0DE8E4: (grass, 3), 0x0DE938: (grass, 3), 0x0DE9C4: (grass, 3), 0x0DE6D0: (grass, 4), + 0x0DE890: (treeleaf, 1), 0x0DE894: (treeleaf, 0), + 0x0DE924: (water, 3), 0x0DE668: (water, 3), 0x0DE66A: (water, 2), 0x0DE670: (water, 1), 0x0DE918: (water, 1), 0x0DE66C: (water, 0), 0x0DE91A: (water, 0), 0x0DE92E: (water, 1), 0x0DEA1A: (water, 1), 0x0DEA16: (water, 3), 0x0DEA10: (water, 4), + 0x0DE66E: (dirt, 3), 0x0DE672: (dirt, 2), 0x0DE932: (dirt, 4), 0x0DE936: (dirt, 2), 0x0DE93C: (dirt, 1), + 0x0DE756: (dirt2, 4), 0x0DE764: (dirt2, 4), 0x0DE772: (dirt2, 4), 0x0DE994: (dirt2, 4), 0x0DE9A2: (dirt2, 4), 0x0DE758: (dirt2, 3), 0x0DE766: (dirt2, 3), 0x0DE774: (dirt2, 3), + 0x0DE996: (dirt2, 3), 0x0DE9A4: (dirt2, 3), 0x0DE75A: (dirt2, 2), 0x0DE768: (dirt2, 2), 0x0DE776: (dirt2, 2), 0x0DE778: (dirt2, 2), 0x0DE998: (dirt2, 2), 0x0DE9A6: (dirt2, 2), + 0x0DE9AC: (dirt2, 1), 0x0DE99E: (dirt2, 1), 0x0DE760: (dirt2, 1), 0x0DE77A: (dirt2, 1), 0x0DE77C: (dirt2, 1), 0x0DE798: (dirt2, 1), 0x0DE980: (dirt2, 1), + 0x0DE75C: (grass3, 2), 0x0DE786: (grass3, 2), 0x0DE794: (grass3, 2), 0x0DE99A: (grass3, 2), 0x0DE75E: (grass3, 1), 0x0DE788: (grass3, 1), 0x0DE796: (grass3, 1), 0x0DE99C: (grass3, 1), + 0x0DE76A: (clouds, 2), 0x0DE9A8: (clouds, 2), 0x0DE76E: (clouds, 0), 0x0DE9AA: (clouds, 0), 0x0DE8DA: (clouds, 0), 0x0DE8D8: (clouds, 0), 0x0DE8D0: (clouds, 0), 0x0DE98C: (clouds, 2), 0x0DE990: (clouds, 0), + 0x0DEB34: (dwtree, 4), 0x0DEB30: (dwtree, 3), 0x0DEB32: (dwtree, 1), + 0x0DE710: (dwdirt, 5), 0x0DE71E: (dwdirt, 5), 0x0DE72C: (dwdirt, 5), 0x0DEAD6: (dwdirt, 5), 0x0DE712: (dwdirt, 4), 0x0DE720: (dwdirt, 4), 0x0DE72E: (dwdirt, 4), 0x0DE660: (dwdirt, 4), + 0x0DEAD8: (dwdirt, 4), 0x0DEADA: (dwdirt, 3), 0x0DE714: (dwdirt, 3), 0x0DE722: (dwdirt, 3), 0x0DE730: (dwdirt, 3), 0x0DE732: (dwdirt, 3), 0x0DE734: (dwdirt, 2), 0x0DE736: (dwdirt, 2), + 0x0DE728: (dwdirt, 2), 0x0DE71A: (dwdirt, 2), 0x0DE664: (dwdirt, 2), 0x0DEAE0: (dwdirt, 2), + 0x0DE716: (dwgrass, 3), 0x0DE740: (dwgrass, 3), 0x0DE74E: (dwgrass, 3), 0x0DEAC0: (dwgrass, 3), 0x0DEACE: (dwgrass, 3), 0x0DEADC: (dwgrass, 3), 0x0DEB24: (dwgrass, 3), 0x0DE752: (dwgrass, 2), + 0x0DE718: (dwgrass, 1), 0x0DE742: (dwgrass, 1), 0x0DE750: (dwgrass, 1), 0x0DEB26: (dwgrass, 1), 0x0DEAC2: (dwgrass, 1), 0x0DEAD0: (dwgrass, 1), 0x0DEADE: (dwgrass, 1), + 0x0DE65A: (dwwater, 5), 0x0DE65C: (dwwater, 3), 0x0DEAC8: (dwwater, 3), 0x0DEAD2: (dwwater, 2), 0x0DEABC: (dwwater, 2), 0x0DE662: (dwwater, 2), 0x0DE65E: (dwwater, 1), 0x0DEABE: (dwwater, 1), 0x0DEA98: (dwwater, 2), + 0x0DE79A: (dwdmdirt, 6), 0x0DE7A8: (dwdmdirt, 6), 0x0DE7B6: (dwdmdirt, 6), 0x0DEB60: (dwdmdirt, 6), 0x0DEB6E: (dwdmdirt, 6), 0x0DE93E: (dwdmdirt, 6), 0x0DE94C: (dwdmdirt, 6), 0x0DEBA6: (dwdmdirt, 6), + 0x0DE79C: (dwdmdirt, 4), 0x0DE7AA: (dwdmdirt, 4), 0x0DE7B8: (dwdmdirt, 4), 0x0DEB70: (dwdmdirt, 4), 0x0DEBA8: (dwdmdirt, 4), 0x0DEB72: (dwdmdirt, 3), 0x0DEB74: (dwdmdirt, 3), 0x0DE79E: (dwdmdirt, 3), 0x0DE7AC: (dwdmdirt, 3), 0x0DEBAA: (dwdmdirt, 3), 0x0DE7A0: (dwdmdirt, 3), + 0x0DE7BC: (dwdmgrass, 3), + 0x0DEBAC: (dwdmdirt, 2), 0x0DE7AE: (dwdmdirt, 2), 0x0DE7C2: (dwdmdirt, 2), 0x0DE7A6: (dwdmdirt, 2), 0x0DEB7A: (dwdmdirt, 2), 0x0DEB6C: (dwdmdirt, 2), 0x0DE7C0: (dwdmdirt, 2), + 0x0DE7A2: (dwdmgrass, 3), 0x0DE7BE: (dwdmgrass, 3), 0x0DE7CC: (dwdmgrass, 3), 0x0DE7DA: (dwdmgrass, 3), 0x0DEB6A: (dwdmgrass, 3), 0x0DE948: (dwdmgrass, 3), 0x0DE956: (dwdmgrass, 3), 0x0DE964: (dwdmgrass, 3), 0x0DE7CE: (dwdmgrass, 1), 0x0DE7A4: (dwdmgrass, 1), 0x0DEBA2: (dwdmgrass, 1), 0x0DEBB0: (dwdmgrass, 1), + 0x0DE644: (dwdmclouds1, 2), 0x0DEB84: (dwdmclouds1, 2), 0x0DE648: (dwdmclouds1, 1), 0x0DEB88: (dwdmclouds1, 1), + 0x0DEBAE: (dwdmclouds2, 2), 0x0DE7B0: (dwdmclouds2, 2), 0x0DE7B4: (dwdmclouds2, 0), 0x0DEB78: (dwdmclouds2, 0), 0x0DEBB2: (dwdmclouds2, 0) + } + for address, (color, shade) in patches.items(): + set_color(rom, address, color, shade) + +def blackout_ow_palettes(rom): + rom.write_bytes(0xDE604, [0] * 0xC4) + for i in range(0xDE6C8, 0xDE86C, 70): + rom.write_bytes(i, [0] * 64) + rom.write_bytes(i+66, [0] * 4) + rom.write_bytes(0xDE86C, [0] * 0x348) + + for address in [0x067FB4, 0x067F94, 0x067FC6, 0x067FE6, 0x067FE1, 0x05FEA9, 0x05FEB3]: + rom.write_bytes(address, [0,0]) + +def default_uw_palettes(rom): + if not rom.orig_buffer: + return + rom.write_bytes(0xDD734, rom.orig_buffer[0xDD734:0xDE544]) + +def randomize_uw_palettes(rom): + for dungeon in range(20): + wall, pot, chest, floor1, floor2, floor3 = [[random.randint(60, 240) for _ in range(3)] for _ in range(6)] + + for i in range(5): + shade = 10 - (i * 2) + set_color(rom, 0x0DD734 + (0xB4 * dungeon) + (i * 2), wall, shade) + set_color(rom, 0x0DD770 + (0xB4 * dungeon) + (i * 2), wall, shade) + set_color(rom, 0x0DD744 + (0xB4 * dungeon) + (i * 2), wall, shade) + if dungeon == 0: + set_color(rom, 0x0DD7CA + (0xB4 * dungeon) + (i * 2), wall, shade) + + if dungeon == 2: + set_color(rom, 0x0DD74E + (0xB4 * dungeon), wall, 3) + set_color(rom, 0x0DD750 + (0xB4 * dungeon), wall, 5) + set_color(rom, 0x0DD73E + (0xB4 * dungeon), wall, 3) + set_color(rom, 0x0DD740 + (0xB4 * dungeon), wall, 5) + + set_color(rom, 0x0DD7E4 + (0xB4 * dungeon), wall, 4) + set_color(rom, 0x0DD7E6 + (0xB4 * dungeon), wall, 2) + + set_color(rom, 0xDD7DA + (0xB4 * dungeon), wall, 10) + set_color(rom, 0xDD7DC + (0xB4 * dungeon), wall, 8) + + set_color(rom, 0x0DD75A + (0xB4 * dungeon), pot, 7) + set_color(rom, 0x0DD75C + (0xB4 * dungeon), pot, 1) + set_color(rom, 0x0DD75E + (0xB4 * dungeon), pot, 3) + + set_color(rom, 0x0DD76A + (0xB4 * dungeon), wall, 7) + set_color(rom, 0x0DD76C + (0xB4 * dungeon), wall, 2) + set_color(rom, 0x0DD76E + (0xB4 * dungeon), wall, 4) + + set_color(rom, 0x0DD7AE + (0xB4 * dungeon), chest, 2) + set_color(rom, 0x0DD7B0 + (0xB4 * dungeon), chest, 0) + + for i in range(3): + shade = 6 - (i * 2) + set_color(rom, 0x0DD764 + (0xB4 * dungeon) + (i * 2), floor1, shade) + set_color(rom, 0x0DD782 + (0xB4 * dungeon) + (i * 2), floor1, shade + 3) + + set_color(rom, 0x0DD7A0 + (0xB4 * dungeon) + (i * 2), floor2, shade) + set_color(rom, 0x0DD7BE + (0xB4 * dungeon) + (i * 2), floor2, shade + 3) + + set_color(rom, 0x0DD7E2 + (0xB4 * dungeon), floor3, 3) + set_color(rom, 0x0DD796 + (0xB4 * dungeon), floor3, 4) + +def blackout_uw_palettes(rom): + for i in range(0xDD734, 0xDE544, 180): + rom.write_bytes(i, [0] * 38) + rom.write_bytes(i+44, [0] * 76) + rom.write_bytes(i+136, [0] * 44) def write_string_to_rom(rom, target, string): address, maxbytes = text_addresses[target] From feb925d2b1f953e74c435d6fb08acd186002503d Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 8 Jan 2020 08:17:25 +0100 Subject: [PATCH 161/185] Rom: cleaner disable_music patches to match what the website does --- Rom.py | 114 ++------------------------------------------------------- 1 file changed, 4 insertions(+), 110 deletions(-) diff --git a/Rom.py b/Rom.py index 8af1a23e..cdb1a641 100644 --- a/Rom.py +++ b/Rom.py @@ -1307,119 +1307,13 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr rom.write_byte(0x18004B, 0x01 if quickswap else 0x00) - music_volumes = [ - (0x00, [0xD373B, 0xD375B, 0xD90F8]), - (0x14, [0xDA710, 0xDA7A4, 0xDA7BB, 0xDA7D2]), - (0x3C, [0xD5954, 0xD653B, 0xDA736, 0xDA752, 0xDA772, 0xDA792]), - (0x50, [0xD5B47, 0xD5B5E]), - (0x54, [0xD4306]), - (0x64, - [0xD6878, 0xD6883, 0xD6E48, 0xD6E76, 0xD6EFB, 0xD6F2D, 0xDA211, 0xDA35B, 0xDA37B, 0xDA38E, 0xDA39F, 0xDA5C3, - 0xDA691, 0xDA6A8, 0xDA6DF]), - (0x78, - [0xD2349, 0xD3F45, 0xD42EB, 0xD48B9, 0xD48FF, 0xD543F, 0xD5817, 0xD5957, 0xD5ACB, 0xD5AE8, 0xD5B4A, 0xDA5DE, - 0xDA608, 0xDA635, - 0xDA662, 0xDA71F, 0xDA7AF, 0xDA7C6, 0xDA7DD]), - (0x82, [0xD2F00, 0xDA3D5]), - (0xA0, - [0xD249C, 0xD24CD, 0xD2C09, 0xD2C53, 0xD2CAF, 0xD2CEB, 0xD2D91, 0xD2EE6, 0xD38ED, 0xD3C91, 0xD3CD3, 0xD3CE8, - 0xD3F0C, - 0xD3F82, 0xD405F, 0xD4139, 0xD4198, 0xD41D5, 0xD41F6, 0xD422B, 0xD4270, 0xD42B1, 0xD4334, 0xD4371, 0xD43A6, - 0xD43DB, - 0xD441E, 0xD4597, 0xD4B3C, 0xD4BAB, 0xD4C03, 0xD4C53, 0xD4C7F, 0xD4D9C, 0xD5424, 0xD65D2, 0xD664F, 0xD6698, - 0xD66FF, - 0xD6985, 0xD6C5C, 0xD6C6F, 0xD6C8E, 0xD6CB4, 0xD6D7D, 0xD827D, 0xD960C, 0xD9828, 0xDA233, 0xDA3A2, 0xDA49E, - 0xDA72B, - 0xDA745, 0xDA765, 0xDA785, 0xDABF6, 0xDAC0D, 0xDAEBE, 0xDAFAC]), - (0xAA, [0xD9A02, 0xD9BD6]), - (0xB4, - [0xD21CD, 0xD2279, 0xD2E66, 0xD2E70, 0xD2EAB, 0xD3B97, 0xD3BAC, 0xD3BE8, 0xD3C0D, 0xD3C39, 0xD3C68, 0xD3C9F, - 0xD3CBC, - 0xD401E, 0xD4290, 0xD443E, 0xD456F, 0xD47D3, 0xD4D43, 0xD4DCC, 0xD4EBA, 0xD4F0B, 0xD4FE5, 0xD5012, 0xD54BC, - 0xD54D5, - 0xD54F0, 0xD5509, 0xD57D8, 0xD59B9, 0xD5A2F, 0xD5AEB, 0xD5E5E, 0xD5FE9, 0xD658F, 0xD674A, 0xD6827, 0xD69D6, - 0xD69F5, - 0xD6A05, 0xD6AE9, 0xD6DCF, 0xD6E20, 0xD6ECB, 0xD71D4, 0xD71E6, 0xD7203, 0xD721E, 0xD8724, 0xD8732, 0xD9652, - 0xD9698, - 0xD9CBC, 0xD9DC0, 0xD9E49, 0xDAA68, 0xDAA77, 0xDAA88, 0xDAA99, 0xDAF04]), - (0x8c, - [0xD1D28, 0xD1D41, 0xD1D5C, 0xD1D77, 0xD1EEE, 0xD311D, 0xD31D1, 0xD4148, 0xD5543, 0xD5B6F, 0xD65B3, 0xD6760, - 0xD6B6B, - 0xD6DF6, 0xD6E0D, 0xD73A1, 0xD814C, 0xD825D, 0xD82BE, 0xD8340, 0xD8394, 0xD842C, 0xD8796, 0xD8903, 0xD892A, - 0xD91E8, - 0xD922B, 0xD92E0, 0xD937E, 0xD93C1, 0xDA958, 0xDA971, 0xDA98C, 0xDA9A7]), - (0xC8, - [0xD1D92, 0xD1DBD, 0xD1DEB, 0xD1F5D, 0xD1F9F, 0xD1FBD, 0xD1FDC, 0xD1FEA, 0xD20CA, 0xD21BB, 0xD22C9, 0xD2754, - 0xD284C, - 0xD2866, 0xD2887, 0xD28A0, 0xD28BA, 0xD28DB, 0xD28F4, 0xD293E, 0xD2BF3, 0xD2C1F, 0xD2C69, 0xD2CA1, 0xD2CC5, - 0xD2D05, - 0xD2D73, 0xD2DAF, 0xD2E3D, 0xD2F36, 0xD2F46, 0xD2F6F, 0xD2FCF, 0xD2FDF, 0xD302B, 0xD3086, 0xD3099, 0xD30A5, - 0xD30CD, - 0xD30F6, 0xD3154, 0xD3184, 0xD333A, 0xD33D9, 0xD349F, 0xD354A, 0xD35E5, 0xD3624, 0xD363C, 0xD3672, 0xD3691, - 0xD36B4, - 0xD36C6, 0xD3724, 0xD3767, 0xD38CB, 0xD3B1D, 0xD3B2F, 0xD3B55, 0xD3B70, 0xD3B81, 0xD3BBF, 0xD3F65, 0xD3FA6, - 0xD404F, - 0xD4087, 0xD417A, 0xD41A0, 0xD425C, 0xD4319, 0xD433C, 0xD43EF, 0xD440C, 0xD4452, 0xD4494, 0xD44B5, 0xD4512, - 0xD45D1, - 0xD45EF, 0xD4682, 0xD46C3, 0xD483C, 0xD4848, 0xD4855, 0xD4862, 0xD486F, 0xD487C, 0xD4A1C, 0xD4A3B, 0xD4A60, - 0xD4B27, - 0xD4C7A, 0xD4D12, 0xD4D81, 0xD4E90, 0xD4ED6, 0xD4EE2, 0xD5005, 0xD502E, 0xD503C, 0xD5081, 0xD51B1, 0xD51C7, - 0xD51CF, - 0xD51EF, 0xD520C, 0xD5214, 0xD5231, 0xD5257, 0xD526D, 0xD5275, 0xD52AF, 0xD52BD, 0xD52CD, 0xD52DB, 0xD549C, - 0xD5801, - 0xD58A4, 0xD5A68, 0xD5A7F, 0xD5C12, 0xD5D71, 0xD5E10, 0xD5E9A, 0xD5F8B, 0xD5FA4, 0xD651A, 0xD6542, 0xD65ED, - 0xD661D, - 0xD66D7, 0xD6776, 0xD68BD, 0xD68E5, 0xD6956, 0xD6973, 0xD69A8, 0xD6A51, 0xD6A86, 0xD6B96, 0xD6C3E, 0xD6D4A, - 0xD6E9C, - 0xD6F80, 0xD717E, 0xD7190, 0xD71B9, 0xD811D, 0xD8139, 0xD816B, 0xD818A, 0xD819E, 0xD81BE, 0xD829C, 0xD82E1, - 0xD8306, - 0xD830E, 0xD835E, 0xD83AB, 0xD83CA, 0xD83F0, 0xD83F8, 0xD844B, 0xD8479, 0xD849E, 0xD84CB, 0xD84EB, 0xD84F3, - 0xD854A, - 0xD8573, 0xD859D, 0xD85B4, 0xD85CE, 0xD862A, 0xD8681, 0xD87E3, 0xD87FF, 0xD887B, 0xD88C6, 0xD88E3, 0xD8944, - 0xD897B, - 0xD8C97, 0xD8CA4, 0xD8CB3, 0xD8CC2, 0xD8CD1, 0xD8D01, 0xD917B, 0xD918C, 0xD919A, 0xD91B5, 0xD91D0, 0xD91DD, - 0xD9220, - 0xD9273, 0xD9284, 0xD9292, 0xD92AD, 0xD92C8, 0xD92D5, 0xD9311, 0xD9322, 0xD9330, 0xD934B, 0xD9366, 0xD9373, - 0xD93B6, - 0xD97A6, 0xD97C2, 0xD97DC, 0xD97FB, 0xD9811, 0xD98FF, 0xD996F, 0xD99A8, 0xD99D5, 0xD9A30, 0xD9A4E, 0xD9A6B, - 0xD9A88, - 0xD9AF7, 0xD9B1D, 0xD9B43, 0xD9B7C, 0xD9BA9, 0xD9C84, 0xD9C8D, 0xD9CAC, 0xD9CE8, 0xD9CF3, 0xD9CFD, 0xD9D46, - 0xDA35E, - 0xDA37E, 0xDA391, 0xDA478, 0xDA4C3, 0xDA4D7, 0xDA4F6, 0xDA515, 0xDA6E2, 0xDA9C2, 0xDA9ED, 0xDAA1B, 0xDAA57, - 0xDABAF, - 0xDABC9, 0xDABE2, 0xDAC28, 0xDAC46, 0xDAC63, 0xDACB8, 0xDACEC, 0xDAD08, 0xDAD25, 0xDAD42, 0xDAD5F, 0xDAE17, - 0xDAE34, - 0xDAE51, 0xDAF2E, 0xDAF55, 0xDAF6B, 0xDAF81, 0xDB14F, 0xDB16B, 0xDB180, 0xDB195, 0xDB1AA]), - (0xD2, [0xD2B88, 0xD364A, 0xD369F, 0xD3747]), - (0xDC, - [0xD213F, 0xD2174, 0xD229E, 0xD2426, 0xD4731, 0xD4753, 0xD4774, 0xD4795, 0xD47B6, 0xD4AA5, 0xD4AE4, 0xD4B96, - 0xD4CA5, - 0xD5477, 0xD5A3D, 0xD6566, 0xD672C, 0xD67C0, 0xD69B8, 0xD6AB1, 0xD6C05, 0xD6DB3, 0xD71AB, 0xD8E2D, 0xD8F0D, - 0xD94E0, - 0xD9544, 0xD95A8, 0xD9982, 0xD9B56, 0xDA694, 0xDA6AB, 0xDAE88, 0xDAEC8, 0xDAEE6, 0xDB1BF]), - (0xE6, [0xD210A, 0xD22DC, 0xD2447, 0xD5A4D, 0xD5DDC, 0xDA251, 0xDA26C]), - (0xF0, [0xD945E, 0xD967D, 0xD96C2, 0xD9C95, 0xD9EE6, 0xDA5C6]), - (0xFA, - [0xD2047, 0xD24C2, 0xD24EC, 0xD25A4, 0xD51A8, 0xD51E6, 0xD524E, 0xD529E, 0xD6045, 0xD81DE, 0xD821E, 0xD94AA, - 0xD9A9E, - 0xD9AE4, 0xDA289]), - (0xFF, [0xD2085, 0xD21C5, 0xD5F28]) - ] - for volume, addresses in music_volumes: - for address in addresses: - rom.write_byte(address, volume if not disable_music else 0x00) + rom.write_byte(0x0CFE18, 0x00 if disable_music else rom.orig_buffer[0x0CFE18] if rom.orig_buffer else 0x70) + rom.write_byte(0x0CFEC1, 0x00 if disable_music else rom.orig_buffer[0x0CFEC1] if rom.orig_buffer else 0xC0) + rom.write_bytes(0x0D0000, [0x00, 0x00] if disable_music else rom.orig_buffer[0x0D0000:0x0D0002] if rom.orig_buffer else [0xDA, 0x58]) + rom.write_bytes(0x0D00E7, [0xC4, 0x58] if disable_music else rom.orig_buffer[0x0D00E7:0x0D00E9] if rom.orig_buffer else [0xDA, 0x58]) rom.write_byte(0x18021A, 1 if disable_music else 0x00) - # restore Mirror sound effect volumes (for existing seeds that lack it) - rom.write_byte(0xD3E04, 0xC8) - rom.write_byte(0xD3DC6, 0xC8) - rom.write_byte(0xD3D6E, 0xC8) - rom.write_byte(0xD3D34, 0xC8) - rom.write_byte(0xD3D55, 0xC8) - rom.write_byte(0xD3E38, 0xC8) - rom.write_byte(0xD3DAA, 0xFA) - # set heart beep rate rom.write_byte(0x180033, {'off': 0x00, 'half': 0x40, 'quarter': 0x80, 'normal': 0x20, 'double': 0x10}[beep]) From 5db7e066da271a89ddde52b8391947b49001a637 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 9 Jan 2020 02:30:00 +0100 Subject: [PATCH 162/185] Sprites are now player specific, can be chosen from their sprite name rather than file path, support "random" choice and support "randomonhit" enemizer-only option --- Adjuster.py | 5 +++-- AdjusterMain.py | 13 ++----------- EntranceRandomizer.py | 7 ++++--- Main.py | 29 ++++++++--------------------- Plando.py | 13 ++++--------- Rom.py | 43 ++++++++++++++++++++++++++++++++++++++----- 6 files changed, 59 insertions(+), 51 deletions(-) diff --git a/Adjuster.py b/Adjuster.py index d3a8239c..570bcef9 100755 --- a/Adjuster.py +++ b/Adjuster.py @@ -6,6 +6,7 @@ import textwrap import sys from AdjusterMain import adjust +from Rom import get_sprite_from_name class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter): @@ -48,8 +49,8 @@ def main(): if not os.path.isfile(args.rom): input('Could not find valid rom for patching at expected path %s. Please run with -h to see help for further information. \nPress Enter to exit.' % args.rom) sys.exit(1) - if args.sprite is not None and not os.path.isfile(args.sprite): - input('Could not find link sprite sheet at given location. \nPress Enter to exit.' % args.sprite) + if args.sprite is not None and not os.path.isfile(args.sprite) and not get_sprite_from_name(args.sprite): + input('Could not find link sprite sheet at given location. \nPress Enter to exit.') sys.exit(1) # set up logger diff --git a/AdjusterMain.py b/AdjusterMain.py index 5bf6eeb4..4bdfa50b 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -1,10 +1,9 @@ import os -import re import time import logging from Utils import output_path, parse_names_string -from Rom import LocalRom, Sprite, apply_rom_settings +from Rom import LocalRom, apply_rom_settings def adjust(args): @@ -12,14 +11,6 @@ def adjust(args): logger = logging.getLogger('') logger.info('Patching ROM.') - if args.sprite is not None: - if isinstance(args.sprite, Sprite): - sprite = args.sprite - else: - sprite = Sprite(args.sprite) - else: - sprite = None - outfilebase = os.path.basename(args.rom)[:-4] + '_adjusted' if os.stat(args.rom).st_size in (0x200000, 0x400000) and os.path.splitext(args.rom)[-1].lower() == '.sfc': @@ -30,7 +21,7 @@ def adjust(args): else: raise RuntimeError('Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.') - apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, sprite, args.ow_palettes, args.uw_palettes, parse_names_string(args.names)) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, args.sprite, args.ow_palettes, args.uw_palettes, parse_names_string(args.names)) rom.write_to_file(output_path('%s.sfc' % outfilebase)) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index c315c962..58d6d097 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -9,6 +9,7 @@ import shlex import sys from Main import main +from Rom import get_sprite_from_name from Utils import is_bundled, close_console @@ -289,7 +290,7 @@ def parse_arguments(argv, no_defaults=False): 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', 'startinventory', 'retro', 'accessibility', 'hints', 'shufflepots', 'beemizer', 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage', - 'ow_palettes', 'uw_palettes']: + 'ow_palettes', 'uw_palettes', 'sprite']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) @@ -315,9 +316,9 @@ def start(): if not args.jsonout and not os.path.isfile(args.rom): input('Could not find valid base rom for patching at expected path %s. Please run with -h to see help for further information. \nPress Enter to exit.' % args.rom) sys.exit(1) - if args.sprite is not None and not os.path.isfile(args.sprite): + if any([sprite is not None and not os.path.isfile(sprite) and not get_sprite_from_name(sprite) for sprite in args.sprite.values()]): if not args.jsonout: - input('Could not find link sprite sheet at given location. \nPress Enter to exit.' % args.sprite) + input('Could not find link sprite sheet at given location. \nPress Enter to exit.') sys.exit(1) else: raise IOError('Cannot find sprite file at %s' % args.sprite) diff --git a/Main.py b/Main.py index f20940fb..836a4d65 100644 --- a/Main.py +++ b/Main.py @@ -13,7 +13,7 @@ from Items import ItemFactory from Regions import create_regions, mark_light_world_regions from InvertedRegions import create_inverted_regions, mark_dark_world_regions from EntranceShuffle import link_entrances, link_inverted_entrances -from Rom import patch_rom, get_race_rom_patches, get_enemizer_patch, apply_rom_settings, Sprite, LocalRom, JsonRom +from Rom import patch_rom, get_race_rom_patches, get_enemizer_patch, apply_rom_settings, LocalRom, JsonRom 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 @@ -135,14 +135,6 @@ def main(args, seed=None): logger.info('Patching ROM.') - if args.sprite is not None: - if isinstance(args.sprite, Sprite): - sprite = args.sprite - else: - sprite = Sprite(args.sprite) - else: - sprite = None - player_names = parse_names_string(args.names) outfilebase = 'ER_%s' % (args.outputname if args.outputname else world.seed) @@ -150,25 +142,20 @@ def main(args, seed=None): jsonout = {} if not args.suppress_rom: for player in range(1, world.players + 1): + 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 args.shufflepots[player] or sprite_random_on_hit) + + rom = JsonRom() if args.jsonout or use_enemizer else LocalRom(args.rom) + local_rom = LocalRom(args.rom) if not args.jsonout and use_enemizer else None - local_rom = None - if args.jsonout: - rom = JsonRom() - else: - if use_enemizer: - local_rom = LocalRom(args.rom) - rom = JsonRom() - else: - rom = LocalRom(args.rom) patch_rom(world, player, rom, use_enemizer) rom_names.append((player, list(rom.name))) enemizer_patch = [] if use_enemizer and (args.enemizercli or not args.jsonout): - enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player]) + enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) if args.jsonout: jsonout[f'patch{player}'] = rom.patches @@ -185,7 +172,7 @@ def main(args, seed=None): for addr, values in get_race_rom_patches(rom).items(): rom.write_bytes(int(addr), values) - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, args.ow_palettes[player], args.uw_palettes[player], player_names) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, args.sprite[player], args.ow_palettes[player], args.uw_palettes[player], player_names) mcsb_name = '' if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): diff --git a/Plando.py b/Plando.py index cf1fbf51..917d4649 100755 --- a/Plando.py +++ b/Plando.py @@ -10,7 +10,7 @@ import sys from BaseClasses import World from Regions import create_regions from EntranceShuffle import link_entrances, connect_entrance, connect_two_way, connect_exit -from Rom import patch_rom, LocalRom, Sprite, write_string_to_rom, apply_rom_settings +from Rom import patch_rom, LocalRom, write_string_to_rom, apply_rom_settings, get_sprite_from_name from Rules import set_rules from Dungeons import create_dungeons from Items import ItemFactory @@ -68,15 +68,10 @@ def main(args): logger.info('Patching ROM.') - if args.sprite is not None: - sprite = Sprite(args.sprite) - else: - sprite = None - rom = LocalRom(args.rom) patch_rom(world, 1, rom, False) - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, sprite, args.ow_palettes, args.uw_palettes) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, args.sprite, args.ow_palettes, args.uw_palettes) for textname, texttype, text in text_patches: if texttype == 'text': @@ -226,8 +221,8 @@ def start(): if not os.path.isfile(args.plando): input('Could not find Plandomizer distribution at expected path %s. Please run with -h to see help for further information. \nPress Enter to exit.' % args.plando) sys.exit(1) - if args.sprite is not None and not os.path.isfile(args.rom): - input('Could not find link sprite sheet at given location. \nPress Enter to exit.' % args.sprite) + if args.sprite is not None and not os.path.isfile(args.sprite) and not get_sprite_from_name(args.sprite): + input('Could not find link sprite sheet at given location. \nPress Enter to exit.') sys.exit(1) # set up logger diff --git a/Rom.py b/Rom.py index cdb1a641..9d942511 100644 --- a/Rom.py +++ b/Rom.py @@ -37,8 +37,7 @@ class JsonRom(object): def write_bytes(self, startaddress, values): if not values: return - if type(values) is not list: - values = list(values) + values = list(values) pos = bisect.bisect_right(self.addresses, startaddress) intervalstart = self.addresses[pos-1] if pos else None @@ -164,7 +163,7 @@ def read_rom(stream): buffer = buffer[0x200:] return buffer -def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepots): +def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepots, random_sprite_on_hit): baserom_path = os.path.abspath(baserom_path) basepatch_path = os.path.abspath(local_path('data/base2current.json')) randopatch_path = os.path.abspath(output_path('enemizer_randopatch.json')) @@ -224,7 +223,7 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepot 'RandomizeTileTrapPattern': world.enemy_shuffle[player] == 'chaos', 'RandomizeTileTrapFloorTile': False, 'AllowKillableThief': bool(random.randint(0,1)) if world.enemy_shuffle[player] == 'chaos' else world.enemy_shuffle[player] != 'none', - 'RandomizeSpriteOnHit': False, + 'RandomizeSpriteOnHit': random_sprite_on_hit, 'DebugMode': False, 'DebugForceEnemy': False, 'DebugForceEnemyId': 0, @@ -260,7 +259,6 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepot options['ManualBosses']['GanonsTower2'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['middle'].enemizer_name options['ManualBosses']['GanonsTower3'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['top'].enemizer_name - rom.write_to_file(randopatch_path) with open(options_path, 'w') as f: @@ -287,8 +285,41 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepot if os.path.exists(enemizer_output_path): os.remove(enemizer_output_path) + if random_sprite_on_hit: + _populate_sprite_table() + sprites = list(_sprite_table.values()) + if sprites: + while len(sprites) < 32: + sprites.extend(sprites) + random.shuffle(sprites) + + for i, path in enumerate(sprites[:32]): + sprite = Sprite(path) + ret.append({"address": 0x300000 + (i * 0x8000), "patchData": list(sprite.sprite)}) + ret.append({"address": 0x307000 + (i * 0x8000), "patchData": list(sprite.palette)}) + ret.append({"address": 0x307078 + (i * 0x8000), "patchData": list(sprite.glove_palette)}) + return ret +_sprite_table = {} +def _populate_sprite_table(): + if not _sprite_table: + for dir in [local_path('data/sprites/official'), local_path('data/sprites/unofficial')]: + for file in os.listdir(dir): + filepath = os.path.join(dir, file) + if not os.path.isfile(filepath): + continue + sprite = Sprite(filepath) + if sprite.valid: + _sprite_table[sprite.name.lower()] = filepath + +def get_sprite_from_name(name): + _populate_sprite_table() + name = name.lower() + if name in ['random', 'randomonhit']: + return Sprite(random.choice(list(_sprite_table.values()))) + return Sprite(_sprite_table[name]) if name in _sprite_table else None + class Sprite(object): default_palette = [255, 127, 126, 35, 183, 17, 158, 54, 165, 20, 255, 1, 120, 16, 157, 89, 71, 54, 104, 59, 74, 10, 239, 18, 92, 42, 113, 21, 24, 122, @@ -1282,6 +1313,8 @@ def hud_format_text(text): def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite, ow_palettes, uw_palettes, names = None): + if sprite and not isinstance(sprite, Sprite): + sprite = Sprite(sprite) if os.path.isfile(sprite) else get_sprite_from_name(sprite) # enable instant item menu if fastmenu == 'instant': From 42b85d7a3cc30624691f61f76a9f95e5398cab92 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 9 Jan 2020 08:31:49 +0100 Subject: [PATCH 163/185] Include sphere0 items in the spoiler log and in the playthrough --- BaseClasses.py | 10 +++++++++- Main.py | 13 +++++++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 5fdf3b27..16a9935a 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -214,6 +214,8 @@ class World(object): return [location for location in self.get_locations() if location.item is not None and location.item.name == item and location.item.player == player] def push_precollected(self, item): + if (item.smallkey and self.keyshuffle[item.player]) or (item.bigkey and self.bigkeyshuffle[item.player]): + item.advancement = True self.precollected_items.append(item) self.state.collect(item, True) @@ -962,6 +964,7 @@ class Spoiler(object): self.medallions = {} self.playthrough = {} self.unreachables = [] + self.startinventory = [] self.locations = {} self.paths = {} self.metadata = {} @@ -984,6 +987,8 @@ class Spoiler(object): self.medallions['Misery Mire (Player %d)' % player] = self.world.required_medallions[player][0] self.medallions['Turtle Rock (Player %d)' % player] = self.world.required_medallions[player][1] + self.startinventory = self.world.precollected_items.copy() + self.locations = OrderedDict() listed_locations = set() @@ -1081,6 +1086,7 @@ class Spoiler(object): out = OrderedDict() out['Entrances'] = list(self.entrances.values()) out.update(self.locations) + out['Starting Inventory'] = self.startinventory out['Special'] = self.medallions if self.shops: out['Shops'] = self.shops @@ -1131,12 +1137,14 @@ class Spoiler(object): for player in range(1, self.world.players + 1): outfile.write('\nMisery Mire Medallion (Player %d): %s' % (player, self.medallions['Misery Mire (Player %d)' % player])) outfile.write('\nTurtle Rock Medallion (Player %d): %s' % (player, self.medallions['Turtle Rock (Player %d)' % player])) + outfile.write('\n\nStarting Inventory:\n\n') + outfile.write('\n'.join(map(str, self.startinventory))) outfile.write('\n\nLocations:\n\n') outfile.write('\n'.join(['%s: %s' % (location, item) for grouping in self.locations.values() for (location, item) in grouping.items()])) outfile.write('\n\nShops:\n\n') outfile.write('\n'.join("{} [{}]\n {}".format(shop['location'], shop['type'], "\n ".join(item for item in [shop.get('item_0', None), shop.get('item_1', None), shop.get('item_2', None)] if item)) for shop in self.shops)) outfile.write('\n\nPlaythrough:\n\n') - outfile.write('\n'.join(['%s: {\n%s\n}' % (sphere_nr, '\n'.join([' %s: %s' % (location, item) for (location, item) in sphere.items()])) for (sphere_nr, sphere) in self.playthrough.items()])) + outfile.write('\n'.join(['%s: {\n%s\n}' % (sphere_nr, '\n'.join([' %s: %s' % (location, item) for (location, item) in sphere.items()] if sphere_nr != '0' else [f' {item}' for item in sphere])) for (sphere_nr, sphere) in self.playthrough.items()])) if self.unreachables: outfile.write('\n\nUnreachable Items:\n\n') outfile.write('\n'.join(['%s: %s' % (unreachable.item, unreachable) for unreachable in self.unreachables])) diff --git a/Main.py b/Main.py index 836a4d65..6274ede1 100644 --- a/Main.py +++ b/Main.py @@ -380,7 +380,6 @@ def create_playthrough(world): logging.getLogger('').debug('Checking if %s (Player %d) is required to beat the game.', location.item.name, location.item.player) old_item = location.item location.item = None - state.remove(old_item) if world.can_beat_game(state_cache[num]): to_delete.append(location) else: @@ -391,6 +390,14 @@ def create_playthrough(world): for location in to_delete: sphere.remove(location) + # second phase, sphere 0 + for item in [i for i in world.precollected_items if i.advancement]: + logging.getLogger('').debug('Checking if %s (Player %d) is required to beat the game.', item.name, item.player) + world.precollected_items.remove(item) + world.state.remove(item) + if not world.can_beat_game(): + world.push_precollected(item) + # we are now down to just the required progress items in collection_spheres. Unfortunately # the previous pruning stage could potentially have made certain items dependant on others # in the same or later sphere (because the location had 2 ways to access but the item originally @@ -442,4 +449,6 @@ def create_playthrough(world): old_world.spoiler.paths[str(world.get_region('Inverted Big Bomb Shop', player))] = get_path(state, world.get_region('Inverted Big Bomb Shop', player)) # we can finally output our playthrough - old_world.spoiler.playthrough = OrderedDict([(str(i + 1), {str(location): str(location.item) for location in sphere}) for i, sphere in enumerate(collection_spheres)]) + old_world.spoiler.playthrough = OrderedDict([("0", [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} From 6bb71802ae886365c28e21f60feac0ff9281c906 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 9 Jan 2020 08:40:03 +0100 Subject: [PATCH 164/185] Dont tag capacity upgrade shop as replaceable --- InvertedRegions.py | 2 +- Regions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/InvertedRegions.py b/InvertedRegions.py index e1915d39..81422609 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -311,7 +311,7 @@ def create_inverted_regions(world, player): shop.add_inventory(index, item, price) region = world.get_region('Capacity Upgrade', player) - shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, True) + shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, False) region.shop = shop world.shops.append(shop) shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) diff --git a/Regions.py b/Regions.py index 021cf217..93959edf 100644 --- a/Regions.py +++ b/Regions.py @@ -302,7 +302,7 @@ def create_regions(world, player): shop.add_inventory(index, item, price) region = world.get_region('Capacity Upgrade', player) - shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, True) + shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, False) region.shop = shop world.shops.append(shop) shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) From 240cf2d84459b76d0534694a4cb9fe2e8d4ebda5 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 9 Jan 2020 09:13:50 +0100 Subject: [PATCH 165/185] Mystery: pot_shuffle (on/off) --- Mystery.py | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Mystery.py b/Mystery.py index 9d7755ea..0ebd1c06 100644 --- a/Mystery.py +++ b/Mystery.py @@ -113,6 +113,8 @@ def get_weights(path): def roll_settings(weights): def get_choice(option, root=weights): + if option not in weights: + return None if type(root[option]) is not dict: return root[option] if not root[option]: @@ -130,17 +132,11 @@ def roll_settings(weights): item_placement = get_choice('item_placement') # not supported in ER - if {'map_shuffle', 'compass_shuffle', 'smallkey_shuffle', 'bigkey_shuffle'}.issubset(weights.keys()): - ret.mapshuffle = get_choice('map_shuffle') == 'on' - ret.compassshuffle = get_choice('compass_shuffle') == 'on' - ret.keyshuffle = get_choice('smallkey_shuffle') == 'on' - ret.bigkeyshuffle = get_choice('bigkey_shuffle') == 'on' - else: - dungeon_items = get_choice('dungeon_items') - ret.mapshuffle = dungeon_items in ['mc', 'mcs', 'full'] - ret.compassshuffle = dungeon_items in ['mc', 'mcs', 'full'] - ret.keyshuffle = dungeon_items in ['mcs', 'full'] - ret.bigkeyshuffle = dungeon_items in ['full'] + dungeon_items = get_choice('dungeon_items') + ret.mapshuffle = get_choice('map_shuffle') == 'on' if 'map_shuffle' in weights else dungeon_items in ['mc', 'mcs', 'full'] + ret.compassshuffle = get_choice('compass_shuffle') == 'on' if 'compass_shuffle' in weights else dungeon_items in ['mc', 'mcs', 'full'] + ret.keyshuffle = get_choice('smallkey_shuffle') == 'on' if 'smallkey_shuffle' in weights else dungeon_items in ['mcs', 'full'] + ret.bigkeyshuffle = get_choice('bigkey_shuffle') == 'on' if 'bigkey_shuffle' in weights else dungeon_items in ['full'] accessibility = get_choice('accessibility') ret.accessibility = accessibility @@ -207,7 +203,10 @@ def roll_settings(weights): enemy_health = get_choice('enemy_health') ret.enemy_health = enemy_health - ret.beemizer = int(get_choice('beemizer')) if 'beemizer' in weights.keys() else 1 # suck it :) + pot_shuffle = get_choice('pot_shuffle') + ret.shufflepots = pot_shuffle == 'on' + + ret.beemizer = int(get_choice('beemizer')) if 'beemizer' in weights else 0 inventoryweights = weights.get('startinventory', {}) startitems = [] From 6bafdfafe6dc2833a4422eaf5896f8cfa51c002a Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Thu, 9 Jan 2020 17:46:07 +0100 Subject: [PATCH 166/185] Mystery: rom options can be set in weights file, eg rom: sprite: random: 1 randomonhit: 1 mog: 1 disablemusic: off quickswap: on: 1 off: 0 menuspeed: normal: 1 instant: 1 double: 1 triple: 1 quadruple: 1 half: 1 heartcolor: red: 1 blue: 1 green: 1 yellow: 1 random: 1 heartbeep: double: 1 normal: 1 half: 1 quarter: 1 off: 1 ow_palettes: default: 1 random: 1 blackout: 1 uw_palettes: default: 1 random: 1 blackout: 1 --- BaseClasses.py | 7 +---- EntranceRandomizer.py | 6 ++--- Main.py | 6 ++--- Mystery.py | 62 +++++++++++++++++++++---------------------- Plando.py | 4 +-- 5 files changed, 39 insertions(+), 46 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 16a9935a..3438fa20 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -9,7 +9,7 @@ from Utils import int16_as_bytes class World(object): - def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, quickswap, fastmenu, disable_music, retro, custom, customitemarray, hints): + def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, retro, custom, customitemarray, hints): self.players = players self.shuffle = shuffle.copy() self.logic = logic.copy() @@ -44,9 +44,6 @@ class World(object): self.accessibility = accessibility.copy() self.shuffle_ganon = shuffle_ganon self.fix_gtower_exit = self.shuffle_ganon - self.quickswap = quickswap - self.fastmenu = fastmenu - self.disable_music = disable_music self.retro = retro.copy() self.custom = custom self.customitemarray = customitemarray @@ -1124,8 +1121,6 @@ class Spoiler(object): outfile.write('Enemy health: %s\n' % self.metadata['enemy_health']) outfile.write('Enemy damage: %s\n' % self.metadata['enemy_damage']) outfile.write('Hints: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['hints'].items()}) - outfile.write('L\\R Quickswap enabled: %s\n' % ('Yes' if self.world.quickswap else 'No')) - outfile.write('Menu speed: %s' % self.world.fastmenu) if self.entrances: outfile.write('\n\nEntrances:\n\n') outfile.write('\n'.join(['%s%s %s %s' % ('Player {0}: '.format(entry['player']) if self.world.players >1 else '', entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 58d6d097..eb643baa 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -288,9 +288,9 @@ def parse_arguments(argv, no_defaults=False): for name in ['logic', 'mode', 'swords', 'goal', 'difficulty', 'item_functionality', 'shuffle', 'crystals_ganon', 'crystals_gt', 'openpyramid', 'mapshuffle', 'compassshuffle', 'keyshuffle', 'bigkeyshuffle', 'startinventory', - 'retro', 'accessibility', 'hints', 'shufflepots', 'beemizer', - 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage', - 'ow_palettes', 'uw_palettes', 'sprite']: + 'retro', 'accessibility', 'hints', 'beemizer', + 'shufflebosses', 'shuffleenemies', 'enemy_health', 'enemy_damage', 'shufflepots', + 'ow_palettes', 'uw_palettes', 'sprite', 'disablemusic', 'quickswap', 'fastmenu', 'heartcolor', 'heartbeep']: value = getattr(defaults, name) if getattr(playerargs, name) is None else getattr(playerargs, name) if player == 1: setattr(ret, name, {1: value}) diff --git a/Main.py b/Main.py index 6274ede1..8315569c 100644 --- a/Main.py +++ b/Main.py @@ -33,7 +33,7 @@ def main(args, seed=None): start = time.process_time() # initialize the world - world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, args.accessibility, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.retro, args.custom, args.customitemarray, args.hints) + world = World(args.multi, args.shuffle, args.logic, args.mode, args.swords, args.difficulty, args.item_functionality, args.timer, args.progressive, args.goal, args.algorithm, args.accessibility, args.shuffleganon, args.retro, args.custom, args.customitemarray, args.hints) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -172,7 +172,7 @@ def main(args, seed=None): for addr, values in get_race_rom_patches(rom).items(): rom.write_bytes(int(addr), values) - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, args.sprite[player], args.ow_palettes[player], args.uw_palettes[player], player_names) + apply_rom_settings(rom, args.heartbeep[player], args.heartcolor[player], args.quickswap[player], args.fastmenu[player], args.disablemusic[player], args.sprite[player], args.ow_palettes[player], args.uw_palettes[player], player_names) mcsb_name = '' if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): @@ -219,7 +219,7 @@ def main(args, seed=None): def copy_world(world): # ToDo: Not good yet - ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.retro, world.custom, world.customitemarray, world.hints) + ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.retro, world.custom, world.customitemarray, world.hints) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() diff --git a/Mystery.py b/Mystery.py index 0ebd1c06..0c5c848c 100644 --- a/Mystery.py +++ b/Mystery.py @@ -88,7 +88,8 @@ def main(): if path: settings = settings_cache[path] if settings_cache[path] else roll_settings(weights_cache[path]) for k, v in vars(settings).items(): - getattr(erargs, k)[player] = v + if v is not None: + getattr(erargs, k)[player] = v else: raise RuntimeError(f'No weights specified for player {player}') @@ -113,7 +114,7 @@ def get_weights(path): def roll_settings(weights): def get_choice(option, root=weights): - if option not in weights: + if option not in root: return None if type(root[option]) is not dict: return root[option] @@ -138,73 +139,59 @@ def roll_settings(weights): ret.keyshuffle = get_choice('smallkey_shuffle') == 'on' if 'smallkey_shuffle' in weights else dungeon_items in ['mcs', 'full'] ret.bigkeyshuffle = get_choice('bigkey_shuffle') == 'on' if 'bigkey_shuffle' in weights else dungeon_items in ['full'] - accessibility = get_choice('accessibility') - ret.accessibility = accessibility + ret.accessibility = get_choice('accessibility') entrance_shuffle = get_choice('entrance_shuffle') ret.shuffle = entrance_shuffle if entrance_shuffle != 'none' else 'vanilla' - goals = get_choice('goals') ret.goal = {'ganon': 'ganon', 'fast_ganon': 'crystals', 'dungeons': 'dungeons', 'pedestal': 'pedestal', 'triforce-hunt': 'triforcehunt' - }[goals] - ret.openpyramid = goals == 'fast_ganon' + }[get_choice('goals')] + ret.openpyramid = ret.goal == 'fast_ganon' - tower_open = get_choice('tower_open') - ret.crystals_gt = tower_open + ret.crystals_gt = get_choice('tower_open') - ganon_open = get_choice('ganon_open') - ret.crystals_ganon = ganon_open + ret.crystals_ganon = get_choice('ganon_open') - world_state = get_choice('world_state') - ret.mode = world_state - if world_state == 'retro': + ret.mode = get_choice('world_state') + if ret.mode == 'retro': ret.mode = 'open' ret.retro = True - hints = get_choice('hints') - ret.hints = hints == 'on' + ret.hints = get_choice('hints') == 'on' - weapons = get_choice('weapons') ret.swords = {'randomized': 'random', 'assured': 'assured', 'vanilla': 'vanilla', 'swordless': 'swordless' - }[weapons] + }[get_choice('weapons')] - item_pool = get_choice('item_pool') - ret.difficulty = item_pool + ret.difficulty = get_choice('item_pool') - item_functionality = get_choice('item_functionality') - ret.item_functionality = item_functionality + ret.item_functionality = get_choice('item_functionality') - boss_shuffle = get_choice('boss_shuffle') ret.shufflebosses = {'none': 'none', 'simple': 'basic', 'full': 'normal', 'random': 'chaos' - }[boss_shuffle] + }[get_choice('boss_shuffle')] - enemy_shuffle = get_choice('enemy_shuffle') ret.shuffleenemies = {'none': 'none', 'shuffled': 'shuffled', 'random': 'chaos' - }[enemy_shuffle] + }[get_choice('enemy_shuffle')] - enemy_damage = get_choice('enemy_damage') ret.enemy_damage = {'default': 'default', 'shuffled': 'shuffled', 'random': 'chaos' - }[enemy_damage] + }[get_choice('enemy_damage')] - enemy_health = get_choice('enemy_health') - ret.enemy_health = enemy_health + ret.enemy_health = get_choice('enemy_health') - pot_shuffle = get_choice('pot_shuffle') - ret.shufflepots = pot_shuffle == 'on' + ret.shufflepots = get_choice('pot_shuffle') == 'on' ret.beemizer = int(get_choice('beemizer')) if 'beemizer' in weights else 0 @@ -215,6 +202,17 @@ def roll_settings(weights): startitems.append(item) ret.startinventory = ','.join(startitems) + if 'rom' in weights: + romweights = weights['rom'] + ret.sprite = get_choice('sprite', romweights) + ret.disablemusic = get_choice('disablemusic', romweights) == 'on' + ret.quickswap = get_choice('quickswap', romweights) == 'on' + ret.fastmenu = get_choice('menuspeed', romweights) + ret.heartcolor = get_choice('heartcolor', romweights) + ret.heartbeep = get_choice('heartbeep', romweights) + ret.ow_palettes = get_choice('ow_palettes', romweights) + ret.uw_palettes = get_choice('uw_palettes', romweights) + return ret if __name__ == '__main__': diff --git a/Plando.py b/Plando.py index 917d4649..46af99c3 100755 --- a/Plando.py +++ b/Plando.py @@ -23,7 +23,7 @@ def main(args): start_time = time.process_time() # initialize the world - world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, False, None, False) + world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, False, False, False, None, False) logger = logging.getLogger('') hasher = hashlib.md5() @@ -71,7 +71,7 @@ def main(args): rom = LocalRom(args.rom) patch_rom(world, 1, rom, False) - apply_rom_settings(rom, args.heartbeep, args.heartcolor, world.quickswap, world.fastmenu, world.disable_music, args.sprite, args.ow_palettes, args.uw_palettes) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, args.sprite, args.ow_palettes, args.uw_palettes) for textname, texttype, text in text_patches: if texttype == 'text': From 77ae96cf1b7a84a0e6d2b37a7f0e1b8bf042fb7c Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 07:02:44 +0100 Subject: [PATCH 167/185] Refactor rom patching now that jsonrom patches can safely be merged --- BaseClasses.py | 4 +-- Main.py | 45 ++++++++++++++--------------- Rom.py | 77 ++++++++++++++++++++++---------------------------- 3 files changed, 56 insertions(+), 70 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index 3438fa20..ffdf060e 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -984,7 +984,7 @@ class Spoiler(object): self.medallions['Misery Mire (Player %d)' % player] = self.world.required_medallions[player][0] self.medallions['Turtle Rock (Player %d)' % player] = self.world.required_medallions[player][1] - self.startinventory = self.world.precollected_items.copy() + self.startinventory = list(map(str, self.world.precollected_items)) self.locations = OrderedDict() listed_locations = set() @@ -1133,7 +1133,7 @@ class Spoiler(object): outfile.write('\nMisery Mire Medallion (Player %d): %s' % (player, self.medallions['Misery Mire (Player %d)' % player])) outfile.write('\nTurtle Rock Medallion (Player %d): %s' % (player, self.medallions['Turtle Rock (Player %d)' % player])) outfile.write('\n\nStarting Inventory:\n\n') - outfile.write('\n'.join(map(str, self.startinventory))) + outfile.write('\n'.join(self.startinventory)) outfile.write('\n\nLocations:\n\n') outfile.write('\n'.join(['%s: %s' % (location, item) for grouping in self.locations.values() for (location, item) in grouping.items()])) outfile.write('\n\nShops:\n\n') diff --git a/Main.py b/Main.py index 8315569c..3b21c512 100644 --- a/Main.py +++ b/Main.py @@ -13,7 +13,7 @@ from Items import ItemFactory from Regions import create_regions, mark_light_world_regions from InvertedRegions import create_inverted_regions, mark_dark_world_regions from EntranceShuffle import link_entrances, link_inverted_entrances -from Rom import patch_rom, get_race_rom_patches, get_enemizer_patch, apply_rom_settings, LocalRom, JsonRom +from Rom import patch_rom, patch_race_rom, patch_enemizer, apply_rom_settings, LocalRom, JsonRom 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 @@ -148,32 +148,25 @@ def main(args, seed=None): or args.shufflepots[player] or sprite_random_on_hit) rom = JsonRom() if args.jsonout or use_enemizer else LocalRom(args.rom) - local_rom = LocalRom(args.rom) if not args.jsonout and use_enemizer else None patch_rom(world, player, rom, use_enemizer) rom_names.append((player, list(rom.name))) - enemizer_patch = [] if use_enemizer and (args.enemizercli or not args.jsonout): - enemizer_patch = get_enemizer_patch(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) + patch_enemizer(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) + if not args.jsonout: + patches = rom.patches + rom = LocalRom(args.rom) + rom.merge_enemizer_patches(patches) + + if args.race: + patch_race_rom(rom) + + apply_rom_settings(rom, args.heartbeep[player], args.heartcolor[player], args.quickswap[player], args.fastmenu[player], args.disablemusic[player], args.sprite[player], args.ow_palettes[player], args.uw_palettes[player], player_names) if args.jsonout: jsonout[f'patch{player}'] = rom.patches - if use_enemizer: - jsonout[f'enemizer{player}'] = enemizer_patch - if args.race: - jsonout[f'race{player}'] = get_race_rom_patches(rom) else: - if use_enemizer: - local_rom.patch_enemizer(rom.patches, os.path.join(os.path.dirname(args.enemizercli), "enemizerBasePatch.json"), enemizer_patch) - rom = local_rom - - if args.race: - for addr, values in get_race_rom_patches(rom).items(): - rom.write_bytes(int(addr), values) - - apply_rom_settings(rom, args.heartbeep[player], args.heartcolor[player], args.quickswap[player], args.fastmenu[player], args.disablemusic[player], args.sprite[player], args.ow_palettes[player], args.uw_palettes[player], player_names) - mcsb_name = '' if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): mcsb_name = '-keysanity' @@ -194,11 +187,15 @@ def main(args, seed=None): "-nohints" if not world.hints[player] else "")) if not args.outputname else '' rom.write_to_file(output_path(f'{outfilebase}{playername}{outfilesuffix}.sfc')) - with open(output_path('%s_multidata' % outfilebase), 'wb') as f: - jsonstr = json.dumps((world.players, - rom_names, - [((location.address, location.player), (location.item.code, location.item.player)) for location in world.get_filled_locations() if type(location.address) is int])) - f.write(zlib.compress(jsonstr.encode("utf-8"))) + multidata = zlib.compress(json.dumps((world.players, + rom_names, + [((location.address, location.player), (location.item.code, location.item.player)) for location in world.get_filled_locations() if type(location.address) is int]) + ).encode("utf-8")) + if args.jsonout: + jsonout["multidata"] = list(multidata) + else: + with open(output_path('%s_multidata' % outfilebase), 'wb') as f: + f.write(multidata) if args.create_spoiler and not args.jsonout: world.spoiler.to_file(output_path('%s_Spoiler.txt' % outfilebase)) @@ -449,6 +446,6 @@ def create_playthrough(world): old_world.spoiler.paths[str(world.get_region('Inverted Big Bomb Shop', player))] = get_path(state, world.get_region('Inverted Big Bomb Shop', player)) # we can finally output our playthrough - old_world.spoiler.playthrough = OrderedDict([("0", [item for item in world.precollected_items if item.advancement])]) + 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} diff --git a/Rom.py b/Rom.py index 9d942511..ec71854c 100644 --- a/Rom.py +++ b/Rom.py @@ -114,24 +114,11 @@ 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 patch_enemizer(self, rando_patch, base_enemizer_patch_path, enemizer_patch): - # extend to 4MB + def merge_enemizer_patches(self, patches): self.buffer.extend(bytearray([0x00] * (0x400000 - len(self.buffer)))) - - # apply randomizer patches - for address, values in rando_patch.items(): + for address, values in patches.items(): self.write_bytes(int(address), values) - # load base enemizer patches - with open(base_enemizer_patch_path, 'r') as f: - base_enemizer_patch = json.load(f) - for patch in base_enemizer_patch: - self.write_bytes(patch["address"], patch["patchData"]) - - # apply enemizer patches - for patch in enemizer_patch: - self.write_bytes(patch["address"], patch["patchData"]) - def write_crc(self): crc = (sum(self.buffer[:0x7FDC] + self.buffer[0x7FE0:]) + 0x01FE) & 0xFFFF inv = crc ^ 0xFFFF @@ -163,9 +150,10 @@ def read_rom(stream): buffer = buffer[0x200:] return buffer -def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepots, random_sprite_on_hit): +def patch_enemizer(world, player, rom, baserom_path, enemizercli, shufflepots, random_sprite_on_hit): baserom_path = os.path.abspath(baserom_path) basepatch_path = os.path.abspath(local_path('data/base2current.json')) + enemizer_basepatch_path = os.path.join(os.path.dirname(enemizercli), "enemizerBasePatch.json") randopatch_path = os.path.abspath(output_path('enemizer_randopatch.json')) options_path = os.path.abspath(output_path('enemizer_options.json')) enemizer_output_path = os.path.abspath(output_path('enemizer_output.json')) @@ -245,20 +233,14 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepot 'IcePalace': world.get_dungeon("Ice Palace", player).boss.enemizer_name, 'MiseryMire': world.get_dungeon("Misery Mire", player).boss.enemizer_name, 'TurtleRock': world.get_dungeon("Turtle Rock", player).boss.enemizer_name, + 'GanonsTower1': world.get_dungeon('Ganons Tower' if world.mode[player] != 'inverted' else 'Inverted Ganons Tower', player).bosses['bottom'].enemizer_name, + 'GanonsTower2': world.get_dungeon('Ganons Tower' if world.mode[player] != 'inverted' else 'Inverted Ganons Tower', player).bosses['middle'].enemizer_name, + 'GanonsTower3': world.get_dungeon('Ganons Tower' if world.mode[player] != 'inverted' else 'Inverted Ganons Tower', player).bosses['top'].enemizer_name, 'GanonsTower4': 'Agahnim2', 'Ganon': 'Ganon', } } - if world.mode[player] != 'inverted': - options['ManualBosses']['GanonsTower1'] = world.get_dungeon('Ganons Tower', player).bosses['bottom'].enemizer_name - options['ManualBosses']['GanonsTower2'] = world.get_dungeon('Ganons Tower', player).bosses['middle'].enemizer_name - options['ManualBosses']['GanonsTower3'] = world.get_dungeon('Ganons Tower', player).bosses['top'].enemizer_name - else: - options['ManualBosses']['GanonsTower1'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['bottom'].enemizer_name - options['ManualBosses']['GanonsTower2'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['middle'].enemizer_name - options['ManualBosses']['GanonsTower3'] = world.get_dungeon('Inverted Ganons Tower', player).bosses['top'].enemizer_name - rom.write_to_file(randopatch_path) with open(options_path, 'w') as f: @@ -273,17 +255,13 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepot '--output', enemizer_output_path], cwd=os.path.dirname(enemizercli), stdout=subprocess.DEVNULL) + with open(enemizer_basepatch_path, 'r') as f: + for patch in json.load(f): + rom.write_bytes(patch["address"], patch["patchData"]) + with open(enemizer_output_path, 'r') as f: - ret = json.load(f) - - if os.path.exists(randopatch_path): - os.remove(randopatch_path) - - if os.path.exists(options_path): - os.remove(options_path) - - if os.path.exists(enemizer_output_path): - os.remove(enemizer_output_path) + for patch in json.load(f): + rom.write_bytes(patch["address"], patch["patchData"]) if random_sprite_on_hit: _populate_sprite_table() @@ -295,11 +273,24 @@ def get_enemizer_patch(world, player, rom, baserom_path, enemizercli, shufflepot for i, path in enumerate(sprites[:32]): sprite = Sprite(path) - ret.append({"address": 0x300000 + (i * 0x8000), "patchData": list(sprite.sprite)}) - ret.append({"address": 0x307000 + (i * 0x8000), "patchData": list(sprite.palette)}) - ret.append({"address": 0x307078 + (i * 0x8000), "patchData": list(sprite.glove_palette)}) + rom.write_bytes(0x300000 + (i * 0x8000), sprite.sprite) + rom.write_bytes(0x307000 + (i * 0x8000), sprite.palette) + rom.write_bytes(0x307078 + (i * 0x8000), sprite.glove_palette) - return ret + try: + os.remove(randopatch_path) + except OSError: + pass + + try: + os.remove(options_path) + except OSError: + pass + + try: + os.remove(enemizer_output_path) + except OSError: + pass _sprite_table = {} def _populate_sprite_table(): @@ -1255,13 +1246,11 @@ try: except ImportError: RaceRom = None -def get_race_rom_patches(rom): - patches = {str(0x180213): [0x01, 0x00]} # Tournament Seed +def patch_race_rom(rom): + rom.write_bytes(0x180213, [0x01, 0x00]) # Tournament Seed if 'RaceRom' in sys.modules: - RaceRom.encrypt(rom, patches) - - return patches + RaceRom.encrypt(rom) def write_custom_shops(rom, world, player): shops = [shop for shop in world.shops if shop.replaceable and shop.active and shop.region.player == player] From 39a07a062475303a414e09291c3469834c7c7273 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 07:15:11 +0100 Subject: [PATCH 168/185] Rom: dont block HC exit in standard with vanilla entrances to match website mystery behavior --- Rom.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index ec71854c..5db57484 100644 --- a/Rom.py +++ b/Rom.py @@ -1097,7 +1097,9 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0x18005E, world.crystals_needed_for_gt[player]) rom.write_byte(0x18005F, world.crystals_needed_for_ganon[player]) - rom.write_byte(0x18008A, 0x01 if world.mode[player] == "standard" else 0x00) # block HC upstairs doors in rain state in standard mode + + # 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) rom.write_byte(0x18016A, 0x10 | ((0x01 if world.keyshuffle[player] else 0x00) | (0x02 if world.compassshuffle[player] else 0x00) From 239ea0f67c4b7a3bcbc77ec826bce41038892792 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 07:25:16 +0100 Subject: [PATCH 169/185] outputpath: use makedirs instead of mkdir --- Main.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Main.py b/Main.py index 3b21c512..5d5b974a 100644 --- a/Main.py +++ b/Main.py @@ -24,10 +24,7 @@ __version__ = '0.6.3-pre' def main(args, seed=None): if args.outputpath: - try: - os.mkdir(args.outputpath) - except OSError: - pass + os.makedirs(args.outputpath, exist_ok=True) output_path.cached_path = args.outputpath start = time.process_time() From 2f5a3e24dda9bbee50019d3a30f5e8d7b2d096e6 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 11:41:22 +0100 Subject: [PATCH 170/185] Small shops refactor, cleanup some inverted mess --- BaseClasses.py | 8 +- InvertedRegions.py | 309 +-------------------------------------------- ItemList.py | 25 ++-- Main.py | 7 +- Regions.py | 69 ++++------ Rom.py | 2 +- 6 files changed, 46 insertions(+), 374 deletions(-) diff --git a/BaseClasses.py b/BaseClasses.py index ffdf060e..7e3740cc 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -898,14 +898,14 @@ class ShopType(Enum): UpgradeShop = 2 class Shop(object): - def __init__(self, region, room_id, type, shopkeeper_config, replaceable): + def __init__(self, region, room_id, type, shopkeeper_config, custom, locked): self.region = region self.room_id = room_id self.type = type self.inventory = [None, None, None] self.shopkeeper_config = shopkeeper_config - self.replaceable = replaceable - self.active = False + self.custom = custom + self.locked = locked @property def item_count(self): @@ -1013,7 +1013,7 @@ class Spoiler(object): self.shops = [] for shop in self.world.shops: - if not shop.active: + if not shop.custom: continue shopdata = {'location': str(shop.region), 'type': 'Take Any' if shop.type == ShopType.TakeAny else 'Shop' diff --git a/InvertedRegions.py b/InvertedRegions.py index 81422609..cfbf5ed0 100644 --- a/InvertedRegions.py +++ b/InvertedRegions.py @@ -1,5 +1,6 @@ import collections -from BaseClasses import Region, Location, Entrance, RegionType, Shop, ShopType +from BaseClasses import RegionType +from Regions import create_lw_region, create_dw_region, create_cave_region, create_dungeon_region def create_inverted_regions(world, player): @@ -302,47 +303,8 @@ def create_inverted_regions(world, player): create_cave_region(player, 'The Sky', 'A Dark Sky', None, ['DDM Landing','NEDW Landing', 'WDW Landing', 'SDW Landing', 'EDW Landing', 'DD Landing', 'DLHL Landing']) ] - for region_name, (room_id, shopkeeper, replaceable) in shop_table.items(): - region = world.get_region(region_name, player) - shop = Shop(region, room_id, ShopType.Shop, shopkeeper, replaceable) - region.shop = shop - world.shops.append(shop) - for index, (item, price) in enumerate(default_shop_contents[region_name]): - shop.add_inventory(index, item, price) - - region = world.get_region('Capacity Upgrade', player) - shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, False) - region.shop = shop - world.shops.append(shop) - shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) - shop.add_inventory(1, 'Arrow Upgrade (+5)', 100, 7) world.initialize_regions() -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) - -def _create_region(player, name, type, hint='Hyrule', locations=None, exits=None): - ret = Region(name, type, hint, player) - if locations is None: - locations = [] - if exits is None: - exits = [] - - for exit in exits: - ret.exits.append(Entrance(player, exit, ret)) - for location in locations: - address, player_address, crystal, hint_text = location_table[location] - ret.locations.append(Location(player, location, address, crystal, hint_text, ret, player_address)) - return ret def mark_dark_world_regions(world, player): # cross world caves may have some sections marked as both in_light_world, and in_dark_work. @@ -372,270 +334,3 @@ def mark_dark_world_regions(world, player): if exit.connected_region not in seen: seen.add(exit.connected_region) queue.append(exit.connected_region) - -# (room_id, shopkeeper, replaceable) -shop_table = { - 'Cave Shop (Dark Death Mountain)': (0x0112, 0xC1, True), - 'Red Shield Shop': (0x0110, 0xC1, True), - 'Dark Lake Hylia Shop': (0x010F, 0xC1, False), - 'Dark World Lumberjack Shop': (0x010F, 0xC1, True), - 'Village of Outcasts Shop': (0x010F, 0xC1, True), - 'Dark World Potion Shop': (0x010F, 0xC1, True), - 'Light World Death Mountain Shop': (0x00FF, 0xA0, True), - 'Kakariko Shop': (0x011F, 0xA0, True), - 'Cave Shop (Lake Hylia)': (0x0112, 0xA0, True), - 'Potion Shop': (0x0109, 0xFF, False), - # Bomb Shop not currently modeled as a shop, due to special nature of items -} -# region, [item] -# slot, item, price, max=0, replacement=None, replacement_price=0 -# item = (item, price) - -_basic_shop_defaults = [('Red Potion', 150), ('Small Heart', 10), ('Bombs (10)', 50)] -_dark_world_shop_defaults = [('Red Potion', 150), ('Blue Shield', 50), ('Bombs (10)', 50)] -default_shop_contents = { - 'Cave Shop (Dark Death Mountain)': _basic_shop_defaults, - 'Red Shield Shop': [('Red Shield', 500), ('Bee', 10), ('Arrows (10)', 30)], - 'Dark Lake Hylia Shop': [('Blue Potion', 160), ('Blue Shield', 50), ('Bombs (10)', 50)], - 'Dark World Lumberjack Shop': _dark_world_shop_defaults, - 'Village of Outcasts Shop': _dark_world_shop_defaults, - 'Dark World Potion Shop': _dark_world_shop_defaults, - 'Light World Death Mountain Shop': _basic_shop_defaults, - 'Kakariko Shop': _basic_shop_defaults, - 'Cave Shop (Lake Hylia)': _basic_shop_defaults, - 'Potion Shop': [('Red Potion', 120), ('Green Potion', 60), ('Blue Potion', 160)], -} - -location_table = {'Mushroom': (0x180013, 0x186338, False, 'in the woods'), - 'Bottle Merchant': (0x2eb18, 0x186339, False, 'with a merchant'), - 'Flute Spot': (0x18014a, 0x18633d, False, 'underground'), - 'Sunken Treasure': (0x180145, 0x186354, False, 'underwater'), - 'Purple Chest': (0x33d68, 0x186359, False, 'from a box'), - "Blind's Hideout - Top": (0xeb0f, 0x1862e3, False, 'in a basement'), - "Blind's Hideout - Left": (0xeb12, 0x1862e6, False, 'in a basement'), - "Blind's Hideout - Right": (0xeb15, 0x1862e9, False, 'in a basement'), - "Blind's Hideout - Far Left": (0xeb18, 0x1862ec, False, 'in a basement'), - "Blind's Hideout - Far Right": (0xeb1b, 0x1862ef, False, 'in a basement'), - "Link's Uncle": (0x2df45, 0x18635f, False, 'with your uncle'), - 'Secret Passage': (0xe971, 0x186145, False, 'near your uncle'), - 'King Zora': (0xee1c3, 0x186360, False, 'at a high price'), - "Zora's Ledge": (0x180149, 0x186358, False, 'near Zora'), - 'Waterfall Fairy - Left': (0xe9b0, 0x186184, False, 'near a fairy'), - 'Waterfall Fairy - Right': (0xe9d1, 0x1861a5, False, 'near a fairy'), - "King's Tomb": (0xe97a, 0x18614e, False, 'alone in a cave'), - 'Floodgate Chest': (0xe98c, 0x186160, False, 'in the dam'), - "Link's House": (0xe9bc, 0x186190, False, 'in your home'), - 'Kakariko Tavern': (0xe9ce, 0x1861a2, False, 'in the bar'), - 'Chicken House': (0xe9e9, 0x1861bd, False, 'near poultry'), - "Aginah's Cave": (0xe9f2, 0x1861c6, False, 'with Aginah'), - "Sahasrahla's Hut - Left": (0xea82, 0x186256, False, 'near the elder'), - "Sahasrahla's Hut - Middle": (0xea85, 0x186259, False, 'near the elder'), - "Sahasrahla's Hut - Right": (0xea88, 0x18625c, False, 'near the elder'), - 'Sahasrahla': (0x2f1fc, 0x186365, False, 'with the elder'), - 'Kakariko Well - Top': (0xea8e, 0x186262, False, 'in a well'), - 'Kakariko Well - Left': (0xea91, 0x186265, False, 'in a well'), - 'Kakariko Well - Middle': (0xea94, 0x186268, False, 'in a well'), - 'Kakariko Well - Right': (0xea97, 0x18626b, False, 'in a well'), - 'Kakariko Well - Bottom': (0xea9a, 0x18626e, False, 'in a well'), - 'Blacksmith': (0x18002a, 0x186366, False, 'with the smith'), - 'Magic Bat': (0x180015, 0x18635e, False, 'with the bat'), - 'Sick Kid': (0x339cf, 0x186367, False, 'with the sick'), - 'Hobo': (0x33e7d, 0x186368, False, 'with the hobo'), - 'Lost Woods Hideout': (0x180000, 0x186348, False, 'near a thief'), - 'Lumberjack Tree': (0x180001, 0x186349, False, 'in a hole'), - 'Cave 45': (0x180003, 0x18634b, False, 'alone in a cave'), - 'Graveyard Cave': (0x180004, 0x18634c, False, 'alone in a cave'), - 'Checkerboard Cave': (0x180005, 0x18634d, False, 'alone in a cave'), - 'Mini Moldorm Cave - Far Left': (0xeb42, 0x186316, False, 'near Moldorms'), - 'Mini Moldorm Cave - Left': (0xeb45, 0x186319, False, 'near Moldorms'), - 'Mini Moldorm Cave - Right': (0xeb48, 0x18631c, False, 'near Moldorms'), - 'Mini Moldorm Cave - Far Right': (0xeb4b, 0x18631f, False, 'near Moldorms'), - 'Mini Moldorm Cave - Generous Guy': (0x180010, 0x18635a, False, 'near Moldorms'), - 'Ice Rod Cave': (0xeb4e, 0x186322, False, 'in a frozen cave'), - 'Bonk Rock Cave': (0xeb3f, 0x186313, False, 'alone in a cave'), - 'Library': (0x180012, 0x18635c, False, 'near books'), - 'Potion Shop': (0x180014, 0x18635d, False, 'near potions'), - 'Lake Hylia Island': (0x180144, 0x186353, False, 'on an island'), - 'Maze Race': (0x180142, 0x186351, False, 'at the race'), - 'Desert Ledge': (0x180143, 0x186352, False, 'in the desert'), - 'Desert Palace - Big Chest': (0xe98f, 0x186163, False, 'in Desert Palace'), - 'Desert Palace - Torch': (0x180160, 0x186362, False, 'in Desert Palace'), - 'Desert Palace - Map Chest': (0xe9b6, 0x18618a, False, 'in Desert Palace'), - 'Desert Palace - Compass Chest': (0xe9cb, 0x18619f, False, 'in Desert Palace'), - 'Desert Palace - Big Key Chest': (0xe9c2, 0x186196, False, 'in Desert Palace'), - 'Desert Palace - Boss': (0x180151, 0x18633f, False, 'with Lanmolas'), - 'Eastern Palace - Compass Chest': (0xe977, 0x18614b, False, 'in Eastern Palace'), - 'Eastern Palace - Big Chest': (0xe97d, 0x186151, False, 'in Eastern Palace'), - 'Eastern Palace - Cannonball Chest': (0xe9b3, 0x186187, False, 'in Eastern Palace'), - 'Eastern Palace - Big Key Chest': (0xe9b9, 0x18618d, False, 'in Eastern Palace'), - 'Eastern Palace - Map Chest': (0xe9f5, 0x1861c9, False, 'in Eastern Palace'), - 'Eastern Palace - Boss': (0x180150, 0x18633e, False, 'with the Armos'), - 'Master Sword Pedestal': (0x289b0, 0x186369, False, 'at the pedestal'), - 'Hyrule Castle - Boomerang Chest': (0xe974, 0x186148, False, 'in Hyrule Castle'), - 'Hyrule Castle - Map Chest': (0xeb0c, 0x1862e0, False, 'in Hyrule Castle'), - "Hyrule Castle - Zelda's Chest": (0xeb09, 0x1862dd, False, 'in Hyrule Castle'), - 'Sewers - Dark Cross': (0xe96e, 0x186142, False, 'in the sewers'), - 'Sewers - Secret Room - Left': (0xeb5d, 0x186331, False, 'in the sewers'), - 'Sewers - Secret Room - Middle': (0xeb60, 0x186334, False, 'in the sewers'), - 'Sewers - Secret Room - Right': (0xeb63, 0x186337, False, 'in the sewers'), - 'Sanctuary': (0xea79, 0x18624d, False, 'in Sanctuary'), - 'Castle Tower - Room 03': (0xeab5, 0x186289, False, 'in Castle Tower'), - 'Castle Tower - Dark Maze': (0xeab2, 0x186286, False, 'in Castle Tower'), - 'Old Man': (0xf69fa, 0x186364, False, 'with the old man'), - 'Spectacle Rock Cave': (0x180002, 0x18634a, False, 'alone in a cave'), - 'Paradox Cave Lower - Far Left': (0xeb2a, 0x1862fe, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Left': (0xeb2d, 0x186301, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Right': (0xeb30, 0x186304, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Far Right': (0xeb33, 0x186307, False, 'in a cave with seven chests'), - 'Paradox Cave Lower - Middle': (0xeb36, 0x18630a, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Left': (0xeb39, 0x18630d, False, 'in a cave with seven chests'), - 'Paradox Cave Upper - Right': (0xeb3c, 0x186310, False, 'in a cave with seven chests'), - 'Spiral Cave': (0xe9bf, 0x186193, False, 'in spiral cave'), - 'Ether Tablet': (0x180016, 0x18633b, False, 'at a monolith'), - 'Spectacle Rock': (0x180140, 0x18634f, False, 'atop a rock'), - 'Tower of Hera - Basement Cage': (0x180162, 0x18633a, False, 'in Tower of Hera'), - 'Tower of Hera - Map Chest': (0xe9ad, 0x186181, False, 'in Tower of Hera'), - 'Tower of Hera - Big Key Chest': (0xe9e6, 0x1861ba, False, 'in Tower of Hera'), - 'Tower of Hera - Compass Chest': (0xe9fb, 0x1861cf, False, 'in Tower of Hera'), - 'Tower of Hera - Big Chest': (0xe9f8, 0x1861cc, False, 'in Tower of Hera'), - 'Tower of Hera - Boss': (0x180152, 0x186340, False, 'with Moldorm'), - 'Pyramid': (0x180147, 0x186356, False, 'on the pyramid'), - 'Catfish': (0xee185, 0x186361, False, 'with a catfish'), - 'Stumpy': (0x330c7, 0x18636a, False, 'with tree boy'), - 'Digging Game': (0x180148, 0x186357, False, 'underground'), - 'Bombos Tablet': (0x180017, 0x18633c, False, 'at a monolith'), - 'Hype Cave - Top': (0xeb1e, 0x1862f2, False, 'near a bat-like man'), - 'Hype Cave - Middle Right': (0xeb21, 0x1862f5, False, 'near a bat-like man'), - 'Hype Cave - Middle Left': (0xeb24, 0x1862f8, False, 'near a bat-like man'), - 'Hype Cave - Bottom': (0xeb27, 0x1862fb, False, 'near a bat-like man'), - 'Hype Cave - Generous Guy': (0x180011, 0x18635b, False, 'with a bat-like man'), - 'Peg Cave': (0x180006, 0x18634e, False, 'alone in a cave'), - 'Pyramid Fairy - Left': (0xe980, 0x186154, False, 'near a fairy'), - 'Pyramid Fairy - Right': (0xe983, 0x186157, False, 'near a fairy'), - 'Brewery': (0xe9ec, 0x1861c0, False, 'alone in a home'), - 'C-Shaped House': (0xe9ef, 0x1861c3, False, 'alone in a home'), - 'Chest Game': (0xeda8, 0x18636b, False, 'as a prize'), - 'Bumper Cave Ledge': (0x180146, 0x186355, False, 'on a ledge'), - 'Mire Shed - Left': (0xea73, 0x186247, False, 'near sparks'), - 'Mire Shed - Right': (0xea76, 0x18624a, False, 'near sparks'), - 'Superbunny Cave - Top': (0xea7c, 0x186250, False, 'in a connection'), - 'Superbunny Cave - Bottom': (0xea7f, 0x186253, False, 'in a connection'), - 'Spike Cave': (0xea8b, 0x18625f, False, 'beyond spikes'), - 'Hookshot Cave - Top Right': (0xeb51, 0x186325, False, 'across pits'), - 'Hookshot Cave - Top Left': (0xeb54, 0x186328, False, 'across pits'), - 'Hookshot Cave - Bottom Right': (0xeb5a, 0x18632e, False, 'across pits'), - 'Hookshot Cave - Bottom Left': (0xeb57, 0x18632b, False, 'across pits'), - 'Floating Island': (0x180141, 0x186350, False, 'on an island'), - 'Mimic Cave': (0xe9c5, 0x186199, False, 'in a cave of mimicry'), - 'Swamp Palace - Entrance': (0xea9d, 0x186271, False, 'in Swamp Palace'), - 'Swamp Palace - Map Chest': (0xe986, 0x18615a, False, 'in Swamp Palace'), - 'Swamp Palace - Big Chest': (0xe989, 0x18615d, False, 'in Swamp Palace'), - 'Swamp Palace - Compass Chest': (0xeaa0, 0x186274, False, 'in Swamp Palace'), - 'Swamp Palace - Big Key Chest': (0xeaa6, 0x18627a, False, 'in Swamp Palace'), - 'Swamp Palace - West Chest': (0xeaa3, 0x186277, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Left': (0xeaa9, 0x18627d, False, 'in Swamp Palace'), - 'Swamp Palace - Flooded Room - Right': (0xeaac, 0x186280, False, 'in Swamp Palace'), - 'Swamp Palace - Waterfall Room': (0xeaaf, 0x186283, False, 'in Swamp Palace'), - 'Swamp Palace - Boss': (0x180154, 0x186342, False, 'with Arrghus'), - "Thieves' Town - Big Key Chest": (0xea04, 0x1861d8, False, "in Thieves' Town"), - "Thieves' Town - Map Chest": (0xea01, 0x1861d5, False, "in Thieves' Town"), - "Thieves' Town - Compass Chest": (0xea07, 0x1861db, False, "in Thieves' Town"), - "Thieves' Town - Ambush Chest": (0xea0a, 0x1861de, False, "in Thieves' Town"), - "Thieves' Town - Attic": (0xea0d, 0x1861e1, False, "in Thieves' Town"), - "Thieves' Town - Big Chest": (0xea10, 0x1861e4, False, "in Thieves' Town"), - "Thieves' Town - Blind's Cell": (0xea13, 0x1861e7, False, "in Thieves' Town"), - "Thieves' Town - Boss": (0x180156, 0x186344, False, 'with Blind'), - 'Skull Woods - Compass Chest': (0xe992, 0x186166, False, 'in Skull Woods'), - 'Skull Woods - Map Chest': (0xe99b, 0x18616f, False, 'in Skull Woods'), - 'Skull Woods - Big Chest': (0xe998, 0x18616c, False, 'in Skull Woods'), - 'Skull Woods - Pot Prison': (0xe9a1, 0x186175, False, 'in Skull Woods'), - 'Skull Woods - Pinball Room': (0xe9c8, 0x18619c, False, 'in Skull Woods'), - 'Skull Woods - Big Key Chest': (0xe99e, 0x186172, False, 'in Skull Woods'), - 'Skull Woods - Bridge Room': (0xe9fe, 0x1861d2, False, 'near Mothula'), - 'Skull Woods - Boss': (0x180155, 0x186343, False, 'with Mothula'), - 'Ice Palace - Compass Chest': (0xe9d4, 0x1861a8, False, 'in Ice Palace'), - 'Ice Palace - Freezor Chest': (0xe995, 0x186169, False, 'in Ice Palace'), - 'Ice Palace - Big Chest': (0xe9aa, 0x18617e, False, 'in Ice Palace'), - 'Ice Palace - Iced T Room': (0xe9e3, 0x1861b7, False, 'in Ice Palace'), - 'Ice Palace - Spike Room': (0xe9e0, 0x1861b4, False, 'in Ice Palace'), - 'Ice Palace - Big Key Chest': (0xe9a4, 0x186178, False, 'in Ice Palace'), - 'Ice Palace - Map Chest': (0xe9dd, 0x1861b1, False, 'in Ice Palace'), - 'Ice Palace - Boss': (0x180157, 0x186345, False, 'with Kholdstare'), - 'Misery Mire - Big Chest': (0xea67, 0x18623b, False, 'in Misery Mire'), - 'Misery Mire - Map Chest': (0xea6a, 0x18623e, False, 'in Misery Mire'), - 'Misery Mire - Main Lobby': (0xea5e, 0x186232, False, 'in Misery Mire'), - 'Misery Mire - Bridge Chest': (0xea61, 0x186235, False, 'in Misery Mire'), - 'Misery Mire - Spike Chest': (0xe9da, 0x1861ae, False, 'in Misery Mire'), - 'Misery Mire - Compass Chest': (0xea64, 0x186238, False, 'in Misery Mire'), - 'Misery Mire - Big Key Chest': (0xea6d, 0x186241, False, 'in Misery Mire'), - 'Misery Mire - Boss': (0x180158, 0x186346, False, 'with Vitreous'), - 'Turtle Rock - Compass Chest': (0xea22, 0x1861f6, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Left': (0xea1c, 0x1861f0, False, 'in Turtle Rock'), - 'Turtle Rock - Roller Room - Right': (0xea1f, 0x1861f3, False, 'in Turtle Rock'), - 'Turtle Rock - Chain Chomps': (0xea16, 0x1861ea, False, 'in Turtle Rock'), - 'Turtle Rock - Big Key Chest': (0xea25, 0x1861f9, False, 'in Turtle Rock'), - 'Turtle Rock - Big Chest': (0xea19, 0x1861ed, False, 'in Turtle Rock'), - 'Turtle Rock - Crystaroller Room': (0xea34, 0x186208, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Left': (0xea31, 0x186205, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Bottom Right': (0xea2e, 0x186202, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Left': (0xea2b, 0x1861ff, False, 'in Turtle Rock'), - 'Turtle Rock - Eye Bridge - Top Right': (0xea28, 0x1861fc, False, 'in Turtle Rock'), - 'Turtle Rock - Boss': (0x180159, 0x186347, False, 'with Trinexx'), - 'Palace of Darkness - Shooter Room': (0xea5b, 0x18622f, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Bridge': (0xea3d, 0x186211, False, 'in Palace of Darkness'), - 'Palace of Darkness - Stalfos Basement': (0xea49, 0x18621d, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Key Chest': (0xea37, 0x18620b, False, 'in Palace of Darkness'), - 'Palace of Darkness - The Arena - Ledge': (0xea3a, 0x18620e, False, 'in Palace of Darkness'), - 'Palace of Darkness - Map Chest': (0xea52, 0x186226, False, 'in Palace of Darkness'), - 'Palace of Darkness - Compass Chest': (0xea43, 0x186217, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Left': (0xea4c, 0x186220, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Basement - Right': (0xea4f, 0x186223, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Top': (0xea55, 0x186229, False, 'in Palace of Darkness'), - 'Palace of Darkness - Dark Maze - Bottom': (0xea58, 0x18622c, False, 'in Palace of Darkness'), - 'Palace of Darkness - Big Chest': (0xea40, 0x186214, False, 'in Palace of Darkness'), - 'Palace of Darkness - Harmless Hellway': (0xea46, 0x18621a, False, 'in Palace of Darkness'), - 'Palace of Darkness - Boss': (0x180153, 0x186341, False, 'with Helmasaur King'), - "Ganons Tower - Bob's Torch": (0x180161, 0x186363, False, "in Ganon's Tower"), - 'Ganons Tower - Hope Room - Left': (0xead9, 0x1862ad, False, "in Ganon's Tower"), - 'Ganons Tower - Hope Room - Right': (0xeadc, 0x1862b0, False, "in Ganon's Tower"), - 'Ganons Tower - Tile Room': (0xeae2, 0x1862b6, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Top Left': (0xeae5, 0x1862b9, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Top Right': (0xeae8, 0x1862bc, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Bottom Left': (0xeaeb, 0x1862bf, False, "in Ganon's Tower"), - 'Ganons Tower - Compass Room - Bottom Right': (0xeaee, 0x1862c2, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Top Left': (0xeab8, 0x18628c, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Top Right': (0xeabb, 0x18628f, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Bottom Left': (0xeabe, 0x186292, False, "in Ganon's Tower"), - 'Ganons Tower - DMs Room - Bottom Right': (0xeac1, 0x186295, False, "in Ganon's Tower"), - 'Ganons Tower - Map Chest': (0xead3, 0x1862a7, False, "in Ganon's Tower"), - 'Ganons Tower - Firesnake Room': (0xead0, 0x1862a4, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Top Left': (0xeac4, 0x186298, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Top Right': (0xeac7, 0x18629b, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Bottom Left': (0xeaca, 0x18629e, False, "in Ganon's Tower"), - 'Ganons Tower - Randomizer Room - Bottom Right': (0xeacd, 0x1862a1, False, "in Ganon's Tower"), - "Ganons Tower - Bob's Chest": (0xeadf, 0x1862b3, False, "in Ganon's Tower"), - 'Ganons Tower - Big Chest': (0xead6, 0x1862aa, False, "in Ganon's Tower"), - 'Ganons Tower - Big Key Room - Left': (0xeaf4, 0x1862c8, False, "in Ganon's Tower"), - 'Ganons Tower - Big Key Room - Right': (0xeaf7, 0x1862cb, False, "in Ganon's Tower"), - 'Ganons Tower - Big Key Chest': (0xeaf1, 0x1862c5, False, "in Ganon's Tower"), - 'Ganons Tower - Mini Helmasaur Room - Left': (0xeafd, 0x1862d1, False, "atop Ganon's Tower"), - 'Ganons Tower - Mini Helmasaur Room - Right': (0xeb00, 0x1862d4, False, "atop Ganon's Tower"), - 'Ganons Tower - Pre-Moldorm Chest': (0xeb03, 0x1862d7, False, "atop Ganon's Tower"), - 'Ganons Tower - Validation Chest': (0xeb06, 0x1862da, False, "atop Ganon's Tower"), - 'Ganon': (None, None, False, 'from me'), - 'Agahnim 1': (None, None, False, 'from Ganon\'s wizardry form'), - 'Agahnim 2': (None, None, False, 'from Ganon\'s wizardry form'), - 'Floodgate': (None, None, False, None), - 'Frog': (None, None, False, None), - 'Missing Smith': (None, None, False, None), - 'Dark Blacksmith Ruins': (None, None, False, None), - 'Eastern Palace - Prize': ([0x1209D, 0x53EF8, 0x53EF9, 0x180052, 0x18007C, 0xC6FE], None, True, 'Eastern Palace'), - 'Desert Palace - Prize': ([0x1209E, 0x53F1C, 0x53F1D, 0x180053, 0x180078, 0xC6FF], None, True, 'Desert Palace'), - 'Tower of Hera - Prize': ([0x120A5, 0x53F0A, 0x53F0B, 0x18005A, 0x18007A, 0xC706], None, True, 'Tower of Hera'), - 'Palace of Darkness - Prize': ([0x120A1, 0x53F00, 0x53F01, 0x180056, 0x18007D, 0xC702], None, True, 'Palace of Darkness'), - 'Swamp Palace - Prize': ([0x120A0, 0x53F6C, 0x53F6D, 0x180055, 0x180071, 0xC701], None, True, 'Swamp Palace'), - 'Thieves\' Town - Prize': ([0x120A6, 0x53F36, 0x53F37, 0x18005B, 0x180077, 0xC707], None, True, 'Thieves\' Town'), - 'Skull Woods - Prize': ([0x120A3, 0x53F12, 0x53F13, 0x180058, 0x18007B, 0xC704], None, True, 'Skull 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')} diff --git a/ItemList.py b/ItemList.py index 73e40043..7355a47f 100644 --- a/ItemList.py +++ b/ItemList.py @@ -269,7 +269,7 @@ take_any_locations = [ 'Bonk Fairy (Dark)', 'Lake Hylia Healer Fairy', 'Swamp Healer Fairy', 'Desert Healer Fairy', 'Dark Lake Hylia Healer Fairy', 'Dark Lake Hylia Ledge Healer Fairy', 'Dark Desert Healer Fairy', 'Dark Death Mountain Healer Fairy', 'Long Fairy Cave', 'Good Bee Cave', '20 Rupee Cave', - 'Kakariko Gamble Game', 'Capacity Upgrade', '50 Rupee Cave', 'Lost Woods Gamble', 'Hookshot Fairy', + 'Kakariko Gamble Game', '50 Rupee Cave', 'Lost Woods Gamble', 'Hookshot Fairy', 'Palace of Darkness Hint', 'East Dark World Hint', 'Archery Game', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave', 'Fortune Teller (Dark)', 'Dark Sanctuary Hint', 'Dark Desert Hint'] @@ -287,9 +287,8 @@ def set_up_take_anys(world, player): entrance = world.get_region(reg, player).entrances[0] connect_entrance(world, entrance, old_man_take_any, player) entrance.target = 0x58 - old_man_take_any.shop = Shop(old_man_take_any, 0x0112, ShopType.TakeAny, 0xE2, True) + old_man_take_any.shop = Shop(old_man_take_any, 0x0112, ShopType.TakeAny, 0xE2, True, True) world.shops.append(old_man_take_any.shop) - old_man_take_any.shop.active = True swords = [item for item in world.itempool if item.type == 'Sword' and item.player == player] if swords: @@ -310,9 +309,8 @@ def set_up_take_anys(world, player): entrance = world.get_region(reg, player).entrances[0] connect_entrance(world, entrance, take_any, player) entrance.target = target - take_any.shop = Shop(take_any, room_id, ShopType.TakeAny, 0xE3, True) + take_any.shop = Shop(take_any, room_id, ShopType.TakeAny, 0xE3, True, True) world.shops.append(take_any.shop) - take_any.shop.active = True take_any.shop.add_inventory(0, 'Blue Potion', 0, 0) take_any.shop.add_inventory(1, 'Boss Heart Container', 0, 0) @@ -365,26 +363,19 @@ def fill_prizes(world, attempts=15): def set_up_shops(world, player): - # Changes to basic Shops # TODO: move hard+ mode changes for sheilds here, utilizing the new shops - for shop in world.shops: - shop.active = True - if world.retro[player]: rss = world.get_region('Red Shield Shop', player).shop - rss.active = True - rss.add_inventory(2, 'Single Arrow', 80) - - # Randomized changes to Shops - if world.retro[player]: - for shop in random.sample([s for s in world.shops if s.replaceable and s.region.player == player], 5): - shop.active = True + if not rss.locked: + rss.add_inventory(2, 'Single Arrow', 80) + for shop in random.sample([s for s in world.shops if s.custom and not s.locked and s.region.player == player], 5): + shop.locked = True shop.add_inventory(0, 'Single Arrow', 80) shop.add_inventory(1, 'Small Key (Universal)', 100) shop.add_inventory(2, 'Bombs (10)', 50) + rss.locked = True - #special shop types def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode, swords, retro): pool = [] diff --git a/Main.py b/Main.py index 5d5b974a..1fb0f11b 100644 --- a/Main.py +++ b/Main.py @@ -10,7 +10,7 @@ import zlib from BaseClasses import World, CollectionState, Item, Region, Location, Shop from Items import ItemFactory -from Regions import create_regions, mark_light_world_regions +from Regions import create_regions, create_shops, mark_light_world_regions 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 @@ -71,6 +71,7 @@ def main(args, seed=None): create_regions(world, player) else: create_inverted_regions(world, player) + create_shops(world, player) create_dungeons(world, player) logger.info('Shuffling the World about.') @@ -251,6 +252,7 @@ def copy_world(world): create_regions(ret, player) else: create_inverted_regions(ret, player) + create_shops(ret, player) create_dungeons(ret, player) copy_dynamic_regions_and_locations(world, ret) @@ -262,7 +264,6 @@ def copy_world(world): for shop in world.shops: copied_shop = ret.get_region(shop.region.name, shop.region.player).shop - copied_shop.active = shop.active copied_shop.inventory = copy.copy(shop.inventory) # connect copied world @@ -308,7 +309,7 @@ def copy_dynamic_regions_and_locations(world, ret): # Note: ideally exits should be copied here, but the current use case (Take anys) do not require this if region.shop: - new_reg.shop = Shop(new_reg, region.shop.room_id, region.shop.type, region.shop.shopkeeper_config, region.shop.replaceable) + new_reg.shop = Shop(new_reg, region.shop.room_id, region.shop.type, region.shop.shopkeeper_config, region.shop.custom, region.shop.locked) ret.shops.append(new_reg.shop) for location in world.dynamic_locations: diff --git a/Regions.py b/Regions.py index 93959edf..e46b21c1 100644 --- a/Regions.py +++ b/Regions.py @@ -293,22 +293,9 @@ def create_regions(world, player): create_dw_region(player, 'Pyramid Ledge', None, ['Pyramid Entrance', 'Pyramid Drop']) ] - for region_name, (room_id, shopkeeper, replaceable) in shop_table.items(): - region = world.get_region(region_name, player) - shop = Shop(region, room_id, ShopType.Shop, shopkeeper, replaceable) - region.shop = shop - world.shops.append(shop) - for index, (item, price) in enumerate(default_shop_contents[region_name]): - shop.add_inventory(index, item, price) - - region = world.get_region('Capacity Upgrade', player) - shop = Shop(region, 0x0115, ShopType.UpgradeShop, 0x04, False) - region.shop = shop - world.shops.append(shop) - shop.add_inventory(0, 'Bomb Upgrade (+5)', 100, 7) - shop.add_inventory(1, 'Arrow Upgrade (+5)', 100, 7) world.initialize_regions() + def create_lw_region(player, name, locations=None, exits=None): return _create_region(player, name, RegionType.LightWorld, 'Light World', locations, exits) @@ -364,37 +351,35 @@ def mark_light_world_regions(world, player): seen.add(exit.connected_region) queue.append(exit.connected_region) -# (room_id, shopkeeper, replaceable) -shop_table = { - 'Cave Shop (Dark Death Mountain)': (0x0112, 0xC1, True), - 'Red Shield Shop': (0x0110, 0xC1, True), - 'Dark Lake Hylia Shop': (0x010F, 0xC1, True), - 'Dark World Lumberjack Shop': (0x010F, 0xC1, True), - 'Village of Outcasts Shop': (0x010F, 0xC1, True), - 'Dark World Potion Shop': (0x010F, 0xC1, True), - 'Light World Death Mountain Shop': (0x00FF, 0xA0, True), - 'Kakariko Shop': (0x011F, 0xA0, True), - 'Cave Shop (Lake Hylia)': (0x0112, 0xA0, True), - 'Potion Shop': (0x0109, 0xFF, False), - # Bomb Shop not currently modeled as a shop, due to special nature of items -} -# region, [item] -# slot, item, price, max=0, replacement=None, replacement_price=0 -# item = (item, price) +def create_shops(world, player): + for region_name, (room_id, type, shopkeeper, custom, locked, inventory) in shop_table.items(): + if world.mode[player] == 'inverted' and region_name == 'Dark Lake Hylia Shop': + locked = True + inventory = [('Blue Potion', 160), ('Blue Shield', 50), ('Bombs (10)', 50)] + region = world.get_region(region_name, player) + shop = Shop(region, room_id, type, shopkeeper, custom, locked) + region.shop = shop + world.shops.append(shop) + for index, item in enumerate(inventory): + shop.add_inventory(index, *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)] _dark_world_shop_defaults = [('Red Potion', 150), ('Blue Shield', 50), ('Bombs (10)', 50)] -default_shop_contents = { - 'Cave Shop (Dark Death Mountain)': _basic_shop_defaults, - 'Red Shield Shop': [('Red Shield', 500), ('Bee', 10), ('Arrows (10)', 30)], - 'Dark Lake Hylia Shop': _dark_world_shop_defaults, - 'Dark World Lumberjack Shop': _dark_world_shop_defaults, - 'Village of Outcasts Shop': _dark_world_shop_defaults, - 'Dark World Potion Shop': _dark_world_shop_defaults, - 'Light World Death Mountain Shop': _basic_shop_defaults, - 'Kakariko Shop': _basic_shop_defaults, - 'Cave Shop (Lake Hylia)': _basic_shop_defaults, - 'Potion Shop': [('Red Potion', 120), ('Green Potion', 60), ('Blue Potion', 160)], +shop_table = { + 'Cave Shop (Dark Death Mountain)': (0x0112, ShopType.Shop, 0xC1, True, False, _basic_shop_defaults), + 'Red Shield Shop': (0x0110, ShopType.Shop, 0xC1, True, False, [('Red Shield', 500), ('Bee', 10), ('Arrows (10)', 30)]), + 'Dark Lake Hylia Shop': (0x010F, ShopType.Shop, 0xC1, True, False, _dark_world_shop_defaults), + 'Dark World Lumberjack Shop': (0x010F, ShopType.Shop, 0xC1, True, False, _dark_world_shop_defaults), + 'Village of Outcasts Shop': (0x010F, ShopType.Shop, 0xC1, True, False, _dark_world_shop_defaults), + 'Dark World Potion Shop': (0x010F, ShopType.Shop, 0xC1, True, False, _dark_world_shop_defaults), + 'Light World Death Mountain Shop': (0x00FF, ShopType.Shop, 0xA0, True, False, _basic_shop_defaults), + 'Kakariko Shop': (0x011F, ShopType.Shop, 0xA0, True, False, _basic_shop_defaults), + 'Cave Shop (Lake Hylia)': (0x0112, ShopType.Shop, 0xA0, True, False, _basic_shop_defaults), + 'Potion Shop': (0x0109, ShopType.Shop, 0xFF, False, True, [('Red Potion', 120), ('Green Potion', 60), ('Blue Potion', 160)]), + 'Capacity Upgrade': (0x0115, ShopType.UpgradeShop, 0x04, True, True, [('Bomb Upgrade (+5)', 100, 7), ('Arrow Upgrade (+5)', 100, 7)]) } location_table = {'Mushroom': (0x180013, 0x186338, False, 'in the woods'), diff --git a/Rom.py b/Rom.py index 5db57484..7ad87f63 100644 --- a/Rom.py +++ b/Rom.py @@ -1255,7 +1255,7 @@ def patch_race_rom(rom): RaceRom.encrypt(rom) def write_custom_shops(rom, world, player): - shops = [shop for shop in world.shops if shop.replaceable and shop.active and shop.region.player == player] + shops = [shop for shop in world.shops if shop.custom and shop.region.player == player] shop_data = bytearray() items_data = bytearray() From 82a696177780d9af47e54f0114a7226297d3e66b Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 22:43:01 +0100 Subject: [PATCH 171/185] MultiClient: default port to 38281 --- MultiClient.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MultiClient.py b/MultiClient.py index 7435cc2f..18347d13 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -5,6 +5,7 @@ import logging import re import subprocess import sys +import urllib.parse import Items import Regions @@ -544,10 +545,11 @@ async def server_loop(ctx : Context): ctx.server_address = await console_input(ctx) address = f"ws://{ctx.server_address}" if "://" not in ctx.server_address else ctx.server_address + port = urllib.parse.urlparse(address).port or 38281 print('Connecting to multiworld server at %s' % address) try: - ctx.socket = await websockets.connect(address, ping_timeout=None, ping_interval=None) + ctx.socket = await websockets.connect(address, port=port, ping_timeout=None, ping_interval=None) print('Connected') async for data in ctx.socket: From 7631bf3041a4cf5ccc3a5a61678748a690556a14 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Fri, 10 Jan 2020 22:44:07 +0100 Subject: [PATCH 172/185] MultiServer: added a !countdown chat command for convenience --- MultiServer.py | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/MultiServer.py b/MultiServer.py index 87d1fd41..d64524fa 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -34,6 +34,7 @@ class Context: self.port = port self.password = password self.server = None + self.countdown_timer = 0 self.clients = [] self.received_items = {} @@ -117,6 +118,19 @@ async def on_client_joined(ctx : Context, client : Client): async def on_client_left(ctx : Context, client : Client): notify_all(ctx, "%s (Player %d, %s) has left the game" % (client.name, client.slot, "Default team" if not client.team else "Team %s" % client.team)) +async def countdown(ctx : Context, timer): + notify_all(ctx, f'[Server]: Starting countdown of {timer}s') + if ctx.countdown_timer: + ctx.countdown_timer = timer + return + + ctx.countdown_timer = timer + while ctx.countdown_timer > 0: + notify_all(ctx, f'[Server]: {ctx.countdown_timer}') + ctx.countdown_timer -= 1 + await asyncio.sleep(1) + notify_all(ctx, f'[Server]: GO') + def get_connected_players_string(ctx : Context): auth_clients = [c for c in ctx.clients if c.auth] if not auth_clients: @@ -280,10 +294,16 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): notify_all(ctx, client.name + ': ' + args) - if args[:8] == '!players': + if args.startswith('!players'): notify_all(ctx, get_connected_players_string(ctx)) - if args[:8] == '!forfeit': + if args.startswith('!forfeit'): forfeit_player(ctx, client.team, client.slot, client.name) + if args.startswith('!countdown'): + try: + timer = int(args.split()[1]) + except (IndexError, ValueError): + timer = 10 + asyncio.create_task(countdown(ctx, timer)) def set_password(ctx : Context, password): ctx.password = password From 85a4e9d40920e920be353f9b86fa719dd1805fb0 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 12 Jan 2020 17:03:30 +0100 Subject: [PATCH 173/185] initial upload --- HintedMultiServer.py | 421 +++++++++++++++++++++++++++++++++++++++++++ MultiMystery.py | 118 ++++++++++++ Mystery.py | 18 +- 3 files changed, 551 insertions(+), 6 deletions(-) create mode 100644 HintedMultiServer.py create mode 100644 MultiMystery.py diff --git a/HintedMultiServer.py b/HintedMultiServer.py new file mode 100644 index 00000000..7933dfa3 --- /dev/null +++ b/HintedMultiServer.py @@ -0,0 +1,421 @@ +import aioconsole +import argparse +import asyncio +import functools +import json +import logging +import re +import urllib.request +import websockets +import zlib +import datetime + +import Items +import Regions +from MultiClient import ReceivedItem, get_item_name_from_id, get_location_name_from_address + +class Client: + def __init__(self, socket): + self.socket = socket + self.auth = False + self.name = None + self.team = None + self.slot = None + self.send_index = 0 + self.hints_used = 0 + +class Context: + def __init__(self, host, port, password): + self.data_filename = None + self.save_filename = None + self.disable_save = False + self.players = 0 + self.rom_names = {} + self.locations = {} + self.host = host + self.port = port + self.password = password + self.server = None + self.clients = [] + self.received_items = {} + self.starttime = datetime.datetime.now() + +def get_room_info(ctx : Context): + return { + 'password': ctx.password is not None, + 'slots': ctx.players, + 'players': [(client.name, client.team, client.slot) for client in ctx.clients if client.auth] + } + +def same_name(lhs, rhs): + return lhs.lower() == rhs.lower() + +def same_team(lhs, rhs): + return (type(lhs) is type(rhs)) and ((not lhs and not rhs) or (lhs.lower() == rhs.lower())) + +async def send_msgs(websocket, msgs): + if not websocket or not websocket.open or websocket.closed: + return + try: + await websocket.send(json.dumps(msgs)) + except websockets.ConnectionClosed: + pass + +def broadcast_all(ctx : Context, msgs): + for client in ctx.clients: + if client.auth: + asyncio.create_task(send_msgs(client.socket, msgs)) + +def broadcast_team(ctx : Context, team, msgs): + for client in ctx.clients: + if client.auth and same_team(client.team, team): + asyncio.create_task(send_msgs(client.socket, msgs)) + +def notify_all(ctx : Context, text): + print("Notice (all): %s" % text) + broadcast_all(ctx, [['Print', text]]) + +def notify_team(ctx : Context, team : str, text : str): + print("Team notice (%s): %s" % ("Default" if not team else team, text)) + broadcast_team(ctx, team, [['Print', text]]) + +def notify_client(client : Client, text : str): + if not client.auth: + return + print("Player notice (%s): %s" % (client.name, text)) + asyncio.create_task(send_msgs(client.socket, [['Print', text]])) + +async def server(websocket, path, ctx : Context): + client = Client(websocket) + ctx.clients.append(client) + + try: + await on_client_connected(ctx, client) + async for data in websocket: + for msg in json.loads(data): + if len(msg) == 1: + cmd = msg + args = None + else: + cmd = msg[0] + args = msg[1] + await process_client_cmd(ctx, client, cmd, args) + except Exception as e: + if not isinstance(e, websockets.WebSocketException): + logging.exception(e) + finally: + await on_client_disconnected(ctx, client) + ctx.clients.remove(client) + +async def on_client_connected(ctx : Context, client : Client): + await send_msgs(client.socket, [['RoomInfo', get_room_info(ctx)]]) + +async def on_client_disconnected(ctx : Context, client : Client): + if client.auth: + await on_client_left(ctx, client) + +async def on_client_joined(ctx : Context, client : Client): + notify_all(ctx, "%s has joined the game as player %d for %s" % (client.name, client.slot, "the default team" if not client.team else "team %s" % client.team)) + +async def on_client_left(ctx : Context, client : Client): + notify_all(ctx, "%s (Player %d, %s) has left the game" % (client.name, client.slot, "Default team" if not client.team else "Team %s" % client.team)) + +def get_connected_players_string(ctx : Context): + auth_clients = [c for c in ctx.clients if c.auth] + if not auth_clients: + return 'No player connected' + + auth_clients.sort(key=lambda c: ('' if not c.team else c.team.lower(), c.slot)) + current_team = 0 + text = '' + for c in auth_clients: + if c.team != current_team: + text += '::' + ('default team' if not c.team else c.team) + ':: ' + current_team = c.team + text += '%d:%s ' % (c.slot, c.name) + return 'Connected players: ' + text[:-1] + +def get_player_name_in_team(ctx : Context, team, slot): + for client in ctx.clients: + if client.auth and same_team(team, client.team) and client.slot == slot: + return client.name + return "Player %d" % slot + +def get_client_from_name(ctx : Context, name): + for client in ctx.clients: + if client.auth and same_name(name, client.name): + return client + return None + +def get_received_items(ctx : Context, team, player): + for (c_team, c_id), items in ctx.received_items.items(): + if c_id == player and same_team(c_team, team): + return items + ctx.received_items[(team, player)] = [] + return ctx.received_items[(team, player)] + +def tuplize_received_items(items): + return [(item.item, item.location, item.player_id, item.player_name) for item in items] + +def send_new_items(ctx : Context): + for client in ctx.clients: + if not client.auth: + continue + items = get_received_items(ctx, client.team, client.slot) + if len(items) > client.send_index: + asyncio.create_task(send_msgs(client.socket, [['ReceivedItems', (client.send_index, tuplize_received_items(items)[client.send_index:])]])) + client.send_index = len(items) + +def forfeit_player(ctx : Context, team, slot, name): + all_locations = [values[0] for values in Regions.location_table.values() if type(values[0]) is int] + notify_all(ctx, "%s (Player %d) in team %s has forfeited" % (name, slot, team if team else 'default')) + register_location_checks(ctx, name, team, slot, all_locations) + +def register_location_checks(ctx : Context, name, team, slot, locations): + found_items = False + for location in locations: + if (location, slot) in ctx.locations: + target_item, target_player = ctx.locations[(location, slot)] + if target_player != slot: + found = False + recvd_items = get_received_items(ctx, team, target_player) + for recvd_item in recvd_items: + if recvd_item.location == location and recvd_item.player_id == slot: + found = True + break + if not found: + new_item = ReceivedItem(target_item, location, slot, name) + recvd_items.append(new_item) + target_player_name = get_player_name_in_team(ctx, team, target_player) + broadcast_team(ctx, team, [['ItemSent', (name, target_player_name, target_item, location)]]) + print('(%s) %s sent %s to %s (%s)' % (team if team else 'Team', name, get_item_name_from_id(target_item), target_player_name, get_location_name_from_address(location))) + found_items = True + send_new_items(ctx) + + if found_items and not ctx.disable_save: + try: + with open(ctx.save_filename, "wb") as f: + jsonstr = json.dumps((ctx.players, + [(k, v) for k, v in ctx.rom_names.items()], + [(k, [i.__dict__ for i in v]) for k, v in ctx.received_items.items()])) + f.write(zlib.compress(jsonstr.encode("utf-8"))) + except Exception as e: + logging.exception(e) + +async def process_client_cmd(ctx : Context, client : Client, cmd, args): + if type(cmd) is not str: + await send_msgs(client.socket, [['InvalidCmd']]) + return + + if cmd == 'Connect': + if not args or type(args) is not dict or \ + 'password' not in args or type(args['password']) not in [str, type(None)] or \ + 'name' not in args or type(args['name']) is not str or \ + 'team' not in args or type(args['team']) not in [str, type(None)] or \ + 'slot' not in args or type(args['slot']) not in [int, type(None)]: + await send_msgs(client.socket, [['InvalidArguments', 'Connect']]) + return + + errors = set() + if ctx.password is not None and ('password' not in args or args['password'] != ctx.password): + errors.add('InvalidPassword') + + if 'name' not in args or not args['name'] or not re.match(r'\w{1,10}', args['name']): + errors.add('InvalidName') + elif any([same_name(c.name, args['name']) for c in ctx.clients if c.auth]): + errors.add('NameAlreadyTaken') + else: + client.name = args['name'] + + if 'team' in args and args['team'] is not None and not re.match(r'\w{1,15}', args['team']): + errors.add('InvalidTeam') + else: + client.team = args['team'] if 'team' in args else None + + if 'slot' in args and any([c.slot == args['slot'] for c in ctx.clients if c.auth and same_team(c.team, client.team)]): + errors.add('SlotAlreadyTaken') + elif 'slot' not in args or not args['slot']: + for slot in range(1, ctx.players + 1): + if slot not in [c.slot for c in ctx.clients if c.auth and same_team(c.team, client.team)]: + client.slot = slot + break + elif slot == ctx.players: + errors.add('SlotAlreadyTaken') + elif args['slot'] not in range(1, ctx.players + 1): + errors.add('InvalidSlot') + else: + client.slot = args['slot'] + + if errors: + client.name = None + client.team = None + client.slot = None + await send_msgs(client.socket, [['ConnectionRefused', list(errors)]]) + else: + client.auth = True + reply = [['Connected', ctx.rom_names[client.slot]]] + items = get_received_items(ctx, client.team, client.slot) + if items: + reply.append(['ReceivedItems', (0, tuplize_received_items(items))]) + client.send_index = len(items) + await send_msgs(client.socket, reply) + await on_client_joined(ctx, client) + + if not client.auth: + return + + if cmd == 'Sync': + items = get_received_items(ctx, client.team, client.slot) + if items: + client.send_index = len(items) + await send_msgs(client.socket, ['ReceivedItems', (0, tuplize_received_items(items))]) + + if cmd == 'LocationChecks': + if type(args) is not list: + await send_msgs(client.socket, [['InvalidArguments', 'LocationChecks']]) + return + register_location_checks(ctx, client.name, client.team, client.slot, args) + + if cmd == 'Say': + if type(args) is not str or not args.isprintable(): + await send_msgs(client.socket, [['InvalidArguments', 'Say']]) + return + + notify_all(ctx, client.name + ': ' + args) + + if args[:8] == '!players': + notify_all(ctx, get_connected_players_string(ctx)) + elif args[:8] == '!forfeit': + forfeit_player(ctx, client.team, client.slot, client.name) + elif args.startswith("!hint"): + pass +def set_password(ctx : Context, password): + ctx.password = password + print('Password set to ' + password if password is not None else 'Password disabled') + +async def console(ctx : Context): + while True: + input = await aioconsole.ainput() + + command = input.split() + if not command: + continue + + if command[0] == '/exit': + ctx.server.ws_server.close() + break + try: + if command[0] == '/players': + print(get_connected_players_string(ctx)) + elif command[0] == '/password': + set_password(ctx, command[1] if len(command) > 1 else None) + elif command[0] == '/kick' and len(command) > 1: + client = get_client_from_name(ctx, command[1]) + if client and client.socket and not client.socket.closed: + await client.socket.close() + + elif command[0] == '/forfeitslot' and len(command) == 3 and command[2].isdigit(): + team = command[1] if command[1] != 'default' else None + slot = int(command[2]) + name = get_player_name_in_team(ctx, team, slot) + forfeit_player(ctx, team, slot, name) + elif command[0] == '/forfeitplayer' and len(command) > 1: + client = get_client_from_name(ctx, command[1]) + if client: + forfeit_player(ctx, client.team, client.slot, client.name) + elif command[0] == '/senditem' and len(command) > 2: + [(player, item)] = re.findall(r'\S* (\S*) (.*)', input) + if item in Items.item_table: + client = get_client_from_name(ctx, player) + if client: + new_item = ReceivedItem(Items.item_table[item][3], "cheat console", 0, "server") + get_received_items(ctx, client.team, client.slot).append(new_item) + notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) + send_new_items(ctx) + else: + print("Unknown item: " + item) + elif command[0] == '/hint': + if len(command) > 2: + player_number = int(command[1]) + item = " ".join(command[2:]) + if item in Items.item_table: + seeked_item_id = Items.item_table[item][3] + for check, result in ctx.locations.items(): + item_id, receiving_player = result + if receiving_player == player_number and item_id == seeked_item_id: + location_id, finding_player = check + notify_all(ctx, f"[Hint]: P{player_number}'s {item} can be found in {get_location_name_from_address(location_id)} in " + f"P{finding_player}'s World") + + else: + print("Unknown item: " + item) + else: + print("Use /hint {playernumber} {itemname}\nFor example /hint 1 Lamp") + elif command[0][0] != '/': + notify_all(ctx, '[Server]: ' + input) + except Exception as e: + import traceback + traceback.print_exc() +async def main(): + parser = argparse.ArgumentParser() + parser.add_argument('--host', default=None) + parser.add_argument('--port', default=38281, type=int) + parser.add_argument('--password', default=None) + parser.add_argument('--multidata', default=None) + parser.add_argument('--savefile', default=None) + parser.add_argument('--disable_save', default=False, action='store_true') + parser.add_argument('--hint_timer', default=-1) + args = parser.parse_args() + + ctx = Context(args.host, args.port, args.password) + + ctx.data_filename = args.multidata + + try: + if not ctx.data_filename: + import tkinter + import tkinter.filedialog + root = tkinter.Tk() + root.withdraw() + ctx.data_filename = tkinter.filedialog.askopenfilename(filetypes=(("Multiworld data","*multidata"),)) + + with open(ctx.data_filename, 'rb') as f: + jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) + ctx.players = jsonobj[0] + ctx.rom_names = {k: v for k, v in jsonobj[1]} + ctx.locations = {tuple(k): tuple(v) for k, v in jsonobj[2]} + except Exception as e: + print('Failed to read multiworld data (%s)' % e) + return + + ip = urllib.request.urlopen('https://v4.ident.me').read().decode('utf8') if not ctx.host else ctx.host + print('Hosting game of %d players (%s) at %s:%d' % (ctx.players, 'No password' if not ctx.password else 'Password: %s' % ctx.password, ip, ctx.port)) + + ctx.disable_save = args.disable_save + if not ctx.disable_save: + if not ctx.save_filename: + ctx.save_filename = (ctx.data_filename[:-9] if ctx.data_filename[-9:] == 'multidata' else (ctx.data_filename + '_')) + 'multisave' + try: + with open(ctx.save_filename, 'rb') as f: + jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) + players = jsonobj[0] + rom_names = {k: v for k, v in jsonobj[1]} + received_items = {tuple(k): [ReceivedItem(**i) for i in v] for k, v in jsonobj[2]} + if players != ctx.players or rom_names != ctx.rom_names: + raise Exception('Save file mismatch, will start a new game') + ctx.received_items = received_items + print('Loaded save file with %d received items for %d players' % (sum([len(p) for p in received_items.values()]), len(received_items))) + except FileNotFoundError: + print('No save data found, starting a new game') + except Exception as e: + print(e) + + ctx.server = websockets.serve(functools.partial(server,ctx=ctx), ctx.host, ctx.port, ping_timeout=None, ping_interval=None) + await ctx.server + await console(ctx) + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(main()) + loop.run_until_complete(asyncio.gather(*asyncio.Task.all_tasks())) + loop.close() diff --git a/MultiMystery.py b/MultiMystery.py new file mode 100644 index 00000000..76eb81b5 --- /dev/null +++ b/MultiMystery.py @@ -0,0 +1,118 @@ +__author__ = "Berserker55" # you can find me on the ALTTP Randomizer Discord +__version__ = 1.4 + +""" +This script launches a Multiplayer "Multiworld" Mystery Game + +.yaml files for all participating players should be placed in a /Players folder. +For every player a mystery game is rolled and a ROM created. +After generation the server is automatically launched. +It is still up to the host to forward the correct port (38281 by default) and distribute the roms to the players. +Regular Mystery has to work for this first, such as a ALTTP Base ROM and Enemizer Setup. +A guide can be found here: https://docs.google.com/document/d/19FoqUkuyStMqhOq8uGiocskMo1KMjOW4nEeG81xrKoI/edit +This script itself should be placed within the Bonta Multiworld folder, that you download in step 1 +""" + +####config#### +#location of your Enemizer CLI, available here: https://github.com/Bonta0/Enemizer/releases +enemizer_location:str = "EnemizerCLI/EnemizerCLI.Core.exe" + +#Where to place the resulting files +outputpath:str = "MultiMystery" + +#automatically launches {player_name}.yaml's ROM file using the OS's default program once generation completes. (likely your emulator) +#does nothing if the name is not found +#example: player_name = "Berserker" +player_name:str = "" + +#Zip the resulting roms +#0 -> Don't +#1 -> Create a zip +#2 -> Create a zip and delete the ROMs that will be in it, except the hosts (requires player_name to be set correctly) +zip_roms:int = 1 + +#create a spoiler file +create_spoiler:bool = True + +#folder from which the player yaml files are pulled from +player_files_folder:str = "Players" + +#Version of python to use for Bonta Multiworld. Probably leave this as is, if you don't know what this does. +#can be tagged for bitness, for example "3.8-32" would be latest installed 3.8 on 32 bits +py_version:str = "3.7" +####end of config#### + +import os +import subprocess +import sys + +def feedback(text:str): + print(text) + input("Press Enter to ignore and probably crash.") + + +if __name__ == "__main__": + if not os.path.exists(enemizer_location): + feedback(f"Enemizer not found at {enemizer_location}, please adjust the path in MultiMystery.py's config or put Enemizer in the default location.") + if not os.path.exists("Zelda no Densetsu - Kamigami no Triforce (Japan).sfc"): + feedback("Base rom is expected as Zelda no Densetsu - Kamigami no Triforce (Japan).sfc in the Multiworld root folder please place/rename it there.") + player_files = [] + os.makedirs(player_files_folder, exist_ok=True) + for file in os.listdir(player_files_folder): + if file.lower().endswith(".yaml"): + player_files.append(file) + print(f"Player {file[:-5]} found.") + if len(player_files) == 0: + feedback(f"No player files found. Please put them in a {player_files_folder} folder.") + player_string = "" + + for i,file in enumerate(player_files): + player_string += f"--p{i+1} {os.path.join(player_files_folder, file)} " + + player_names = list(file[:-5] for file in player_files) + + command = f"py -{py_version} Mystery.py --multi {len(player_files)} {player_string} " \ + f"--names {','.join(player_names)} --enemizercli {enemizer_location} " \ + f"--outputpath {outputpath}" + " --create_spoiler" if create_spoiler else "" + print(command) + import time + start = time.perf_counter() + text = subprocess.check_output(command, shell=True).decode() + print(f"Took {time.perf_counter()-start:3} seconds to generate seed.") + seedname = "" + + for segment in text.split(): + if segment.startswith("M"): + seedname = segment + break + + multidataname = f"ER_{seedname}_multidata" + + romfilename = "" + if player_name: + try: + index = player_names.index(player_name) + except IndexError: + print(f"Could not find Player {player_name}") + else: + romfilename = os.path.join(outputpath, f"ER_{seedname}_P{index+1}_{player_name}.sfc") + import webbrowser + if os.path.exists(romfilename): + print(f"Launching ROM file {romfilename}") + webbrowser.open(romfilename) + + if zip_roms: + zipname = os.path.join(outputpath, f"ER_{seedname}.zip") + print(f"Creating zipfile {zipname}") + import zipfile + with zipfile.ZipFile(zipname, "w", compression=zipfile.ZIP_DEFLATED, compresslevel=9) as zf: + for file in os.listdir(outputpath): + if file.endswith(".sfc") and seedname in file: + zf.write(os.path.join(outputpath, file), file) + print(f"Packed {file} into zipfile {zipname}") + if zip_roms == 2 and player_name.lower() not in file.lower(): + os.remove(file) + print(f"Removed file {file} that is now present in the zipfile") + + serverfile = "HintedMultiServer.py" if os.path.exists("HintedMultiServer.py") else "MultiServer.py" + subprocess.call(f"py -{py_version} {serverfile} --multidata {os.path.join(outputpath, multidataname)}") diff --git a/Mystery.py b/Mystery.py index 0c5c848c..0da5ce26 100644 --- a/Mystery.py +++ b/Mystery.py @@ -65,14 +65,17 @@ def main(): path = getattr(args, f'p{player}') if path: if path not in weights_cache: - weights_cache[path] = get_weights(path) + try: + weights_cache[path] = get_weights(path) + except: + raise ValueError(f"File {path} is destroyed. Please fix your yaml.") print(f"P{player} Weights: {path} >> {weights_cache[path]['description']}") erargs = parse_arguments(['--multi', str(args.multi)]) erargs.seed = seed erargs.names = args.names erargs.create_spoiler = args.create_spoiler - erargs.race = True + erargs.race = False erargs.outputname = seedname erargs.outputpath = args.outputpath @@ -86,10 +89,13 @@ def main(): for player in range(1, args.multi + 1): path = getattr(args, f'p{player}') if getattr(args, f'p{player}') else args.weights if path: - settings = settings_cache[path] if settings_cache[path] else roll_settings(weights_cache[path]) - for k, v in vars(settings).items(): - if v is not None: - getattr(erargs, k)[player] = v + try: + settings = settings_cache[path] if settings_cache[path] else roll_settings(weights_cache[path]) + for k, v in vars(settings).items(): + if v is not None: + getattr(erargs, k)[player] = v + except: + raise ValueError(f"File {path} is destroyed. Please fix your yaml.") else: raise RuntimeError(f'No weights specified for player {player}') From 2fad46c26e7dac428c1dac67036820ba2b86fcf3 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 13 Jan 2020 01:23:29 +0100 Subject: [PATCH 174/185] add player name as Hint target --- HintedMultiServer.py | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/HintedMultiServer.py b/HintedMultiServer.py index 7933dfa3..2ee4c070 100644 --- a/HintedMultiServer.py +++ b/HintedMultiServer.py @@ -336,21 +336,30 @@ async def console(ctx : Context): print("Unknown item: " + item) elif command[0] == '/hint': if len(command) > 2: - player_number = int(command[1]) - item = " ".join(command[2:]) - if item in Items.item_table: - seeked_item_id = Items.item_table[item][3] - for check, result in ctx.locations.items(): - item_id, receiving_player = result - if receiving_player == player_number and item_id == seeked_item_id: - location_id, finding_player = check - notify_all(ctx, f"[Hint]: P{player_number}'s {item} can be found in {get_location_name_from_address(location_id)} in " - f"P{finding_player}'s World") - + player_number = 0 + if command[1].isnumeric(): + player_number = int(command[1]) else: - print("Unknown item: " + item) + client = get_client_from_name(ctx, command[1]) + if client: + player_number = client.slot() + else: + print(f"Player with name {command[1]} not found.") + if player_number: + item = " ".join(command[2:]) + if item in Items.item_table: + seeked_item_id = Items.item_table[item][3] + for check, result in ctx.locations.items(): + item_id, receiving_player = result + if receiving_player == player_number and item_id == seeked_item_id: + location_id, finding_player = check + notify_all(ctx, f"[Hint]: P{player_number}'s {item} can be found in {get_location_name_from_address(location_id)} in " + f"P{finding_player}'s World") + + else: + print("Unknown item: " + item) else: - print("Use /hint {playernumber} {itemname}\nFor example /hint 1 Lamp") + print("Use /hint {Playernumber/Playername} {itemname}\nFor example /hint 1 Lamp") elif command[0][0] != '/': notify_all(ctx, '[Server]: ' + input) except Exception as e: From 7cdd12a43ca4d320887f3e3ca0a5edbd3067c88e Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 13 Jan 2020 01:58:21 +0100 Subject: [PATCH 175/185] some text updates --- MultiMystery.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/MultiMystery.py b/MultiMystery.py index 76eb81b5..afc1517d 100644 --- a/MultiMystery.py +++ b/MultiMystery.py @@ -1,5 +1,5 @@ __author__ = "Berserker55" # you can find me on the ALTTP Randomizer Discord -__version__ = 1.4 +__version__ = 1.5 """ This script launches a Multiplayer "Multiworld" Mystery Game @@ -52,6 +52,7 @@ def feedback(text:str): if __name__ == "__main__": + print(f"{__author__}'s MultiMystery Launcher V{__version__}") if not os.path.exists(enemizer_location): feedback(f"Enemizer not found at {enemizer_location}, please adjust the path in MultiMystery.py's config or put Enemizer in the default location.") if not os.path.exists("Zelda no Densetsu - Kamigami no Triforce (Japan).sfc"): @@ -62,10 +63,13 @@ if __name__ == "__main__": if file.lower().endswith(".yaml"): player_files.append(file) print(f"Player {file[:-5]} found.") - if len(player_files) == 0: + player_count = len(player_files) + if player_count == 0: feedback(f"No player files found. Please put them in a {player_files_folder} folder.") - player_string = "" + else: + print(player_count, "Players found.") + player_string = "" for i,file in enumerate(player_files): player_string += f"--p{i+1} {os.path.join(player_files_folder, file)} " @@ -78,7 +82,7 @@ if __name__ == "__main__": import time start = time.perf_counter() text = subprocess.check_output(command, shell=True).decode() - print(f"Took {time.perf_counter()-start:3} seconds to generate seed.") + print(f"Took {time.perf_counter()-start:.3f} seconds to generate seed.") seedname = "" for segment in text.split(): From 3e99c3c9a313769b48194d2a7a0f7413763e226d Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 13 Jan 2020 03:55:33 +0100 Subject: [PATCH 176/185] MultiClient: auto reconnect to snes --- MultiClient.py | 65 +++++++++++++++++++++++++++++++++++--------------- 1 file changed, 46 insertions(+), 19 deletions(-) diff --git a/MultiClient.py b/MultiClient.py index 18347d13..de8f3bd7 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -54,6 +54,8 @@ class Context: self.snes_socket = None self.snes_state = SNES_DISCONNECTED + self.snes_attached_device = None + self.snes_reconnect_address = None self.snes_recv_queue = asyncio.Queue() self.snes_request_lock = asyncio.Lock() self.is_sd2snes = False @@ -82,6 +84,7 @@ def color_code(*args): def color(text, *args): return color_code(*args) + text + color_code('reset') +RECONNECT_DELAY = 30 ROM_START = 0x000000 WRAM_START = 0xF50000 @@ -324,7 +327,7 @@ SNES_CONNECTING = 1 SNES_CONNECTED = 2 SNES_ATTACHED = 3 -async def snes_connect(ctx : Context, address = None): +async def snes_connect(ctx : Context, address): if ctx.snes_socket is not None: print('Already connected to snes') return @@ -332,8 +335,7 @@ async def snes_connect(ctx : Context, address = None): ctx.snes_state = SNES_CONNECTING recv_task = None - if address is None: - address = 'ws://' + ctx.snes_address + address = f"ws://{address}" if "://" not in address else address print("Connecting to QUsb2snes at %s ..." % address) @@ -358,17 +360,25 @@ async def snes_connect(ctx : Context, address = None): print("[%d] %s" % (id + 1, device)) device = None - while True: - print("Enter a number:") - choice = await console_input(ctx) - if choice is None: - raise Exception('Abort input') - if not choice.isdigit() or int(choice) < 1 or int(choice) > len(devices): - print("Invalid choice (%s)" % choice) - continue + if len(devices) == 1: + device = devices[0] + elif ctx.snes_reconnect_address: + if ctx.snes_attached_device[1] in devices: + device = ctx.snes_attached_device[1] + else: + device = devices[ctx.snes_attached_device[0]] + else: + while True: + print("Select a device:") + choice = await console_input(ctx) + if choice is None: + raise Exception('Abort input') + if not choice.isdigit() or int(choice) < 1 or int(choice) > len(devices): + print("Invalid choice (%s)" % choice) + continue - device = devices[int(choice) - 1] - break + device = devices[int(choice) - 1] + break print("Attaching to " + device) @@ -379,6 +389,7 @@ async def snes_connect(ctx : Context, address = None): } await ctx.snes_socket.send(json.dumps(Attach_Request)) ctx.snes_state = SNES_ATTACHED + ctx.snes_attached_device = (devices.index(device), device) if 'SD2SNES'.lower() in device.lower() or (len(device) == 4 and device[:3] == 'COM'): print("SD2SNES Detected") @@ -390,10 +401,10 @@ async def snes_connect(ctx : Context, address = None): else: ctx.is_sd2snes = False + ctx.snes_reconnect_address = address recv_task = asyncio.create_task(snes_recv_loop(ctx)) except Exception as e: - print("Error connecting to snes (%s)" % e) if recv_task is not None: if not ctx.snes_socket.closed: await ctx.snes_socket.close() @@ -403,16 +414,26 @@ async def snes_connect(ctx : Context, address = None): await ctx.snes_socket.close() ctx.snes_socket = None ctx.snes_state = SNES_DISCONNECTED + if not ctx.snes_reconnect_address: + print("Error connecting to snes (%s)" % e) + else: + print(f"Error connecting to snes, attempt again in {RECONNECT_DELAY}s") + asyncio.create_task(snes_reconnect(ctx)) + +async def snes_reconnect(ctx: Context): + await asyncio.sleep(RECONNECT_DELAY) + if ctx.snes_reconnect_address and ctx.snes_socket is None: + await snes_connect(ctx, ctx.snes_reconnect_address) async def snes_recv_loop(ctx : Context): try: async for msg in ctx.snes_socket: ctx.snes_recv_queue.put_nowait(msg) - print("Snes disconnected, type /snes to reconnect") + print("Snes disconnected") except Exception as e: - print("Lost connection to the snes, type /snes to reconnect") if not isinstance(e, websockets.WebSocketException): logging.exception(e) + print("Lost connection to the snes, type /snes to reconnect") finally: socket, ctx.snes_socket = ctx.snes_socket, None if socket is not None and not socket.closed: @@ -425,6 +446,10 @@ async def snes_recv_loop(ctx : Context): ctx.rom_confirmed = False ctx.last_rom = None + if ctx.snes_reconnect_address: + print(f"...reconnecting in {RECONNECT_DELAY}s") + asyncio.create_task(snes_reconnect(ctx)) + async def snes_read(ctx : Context, address, size): try: await ctx.snes_request_lock.acquire() @@ -698,8 +723,10 @@ async def console_loop(ctx : Context): colorama.init() if command[0] == '/snes': - asyncio.create_task(snes_connect(ctx, command[1] if len(command) > 1 else None)) + ctx.snes_reconnect_address = None + asyncio.create_task(snes_connect(ctx, command[1] if len(command) > 1 else ctx.snes_address)) if command[0] in ['/snes_close', '/snes_quit']: + ctx.snes_reconnect_address = None if ctx.snes_socket is not None and not ctx.snes_socket.closed: await ctx.snes_socket.close() @@ -883,7 +910,7 @@ async def main(): input_task = asyncio.create_task(console_loop(ctx)) - await snes_connect(ctx) + await snes_connect(ctx, ctx.snes_address) if ctx.server_task is None: ctx.server_task = asyncio.create_task(server_loop(ctx)) @@ -892,7 +919,7 @@ async def main(): await ctx.exit_event.wait() - + ctx.snes_reconnect_address = None await watcher_task From d9592e68fbf00c921e2f0f53ae88ad43bf1e3045 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Mon, 13 Jan 2020 04:07:45 +0100 Subject: [PATCH 177/185] Fix GT torch potentially overwritting playerid of chests in hope room --- data/base2current.json | 2 +- data/base2current_extendedmsu.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/base2current.json b/data/base2current.json index c467e24f..8bec2460 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[216]},{"127":[176]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,148,224,160,234]},{"827":[128,1]},{"980":[92,162,133,164]},{"2027":[128,50]},{"2379":[34,214,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,92,176,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[26]},{"5002":[181]},{"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,155,199,160]},{"21847":[34,115,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,8,253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,155,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[143,163,160]},{"30994":[17,164,160]},{"31001":[143,163,160]},{"31011":[17,164,160]},{"31046":[61,222,160]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[36,222,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,56,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,193,222,160]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,198,147,164,234]},{"60423":[34,56,188,164]},{"60790":[64,223,160]},{"61077":[61,181,160]},{"61133":[34,141,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,255,237,160]},{"65607":[11,237,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,120,194,160,234]},{"65894":[34,166,194,160]},{"66284":[34,201,194,160]},{"66292":[92,27,248,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,1,240,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,209,223,160,234,234]},{"67934":[168,248,160]},{"68495":[34,23,155,160,208,6,234]},{"68584":[172,248,160]},{"69776":[34,23,155,160,208,4,234]},{"70410":[172,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,20,248,160,234]},{"72216":[246,221,160]},{"72241":[34,166,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[2,237,160]},{"73340":[34,241,128,160,234]},{"73937":[34,182,194,160]},{"74833":[34,213,130,164]},{"76423":[34,4,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]},{"78172":[34,108,223,160,34,219,153,160,234,234]},{"79603":[34,42,222,160]},{"79767":[34,224,223,160]},{"82676":[172,248,160]},{"87892":[34,241,247,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,62,239,160]},{"90651":[34,98,236,160,234,234]},{"93230":[34,6,155,164,234,234]},{"93325":[34,194,153,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,6,155,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,229,153,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[130,188,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[128,181,160]},{"173058":[128,181,160]},{"173307":[128,181,160]},{"173320":[128,181,160]},{"183384":[34,158,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188234":[140,236,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,141,235,160,128,13]},{"189655":[34,45,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[73,188,164]},{"191439":[34,74,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,94,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,114,195,160,234]},{"192121":[202,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,43,179,160]},{"193157":[34,36,179,160]},{"193440":[34,17,220,160]},{"193472":[34,235,160]},{"193546":[34,17,220,160]},{"193578":[234,234,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[242,194,160]},{"194141":[34,226,195,160,234,234,234,234,234]},{"194177":[34,72,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,141,235,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,72,199,160]},{"195589":[122,176,160]},{"195710":[34,150,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[83,176,160]},{"195909":[93,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[201,192,160]},{"198721":[34,243,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,62,184,164]},{"198942":[34,101,153,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,41,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[20,176,160]},{"199993":[34,103,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,206,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,69,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[92,188,164]},{"212610":[111,188,164]},{"213139":[50,185,164]},{"213169":[147,133,160]},{"214205":[34,201,180,160]},{"214972":[91,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,141,222,160]},{"217579":[34,107,193,160]},{"224597":[34,17,219,160]},{"224693":[34,37,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,51,220,160,234]},{"226304":[34,102,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,226,237,160]},{"229634":[34,140,186,164]},{"230816":[73,179,160]},{"230955":[73,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,235,237,160,234]},{"233987":[147,221,160]},{"234731":[34,240,221,160]},{"234747":[34,246,237,160]},{"235953":[34,35,133,160,144,3]},{"236024":[233,204,160]},{"236047":[75,193,160]},{"236578":[34,83,134,164]},{"237653":[34,108,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,0,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[26,198,160]},{"238498":[34,163,196,160,128,3]},{"238562":[34,230,198,160,240,4,234]},{"238751":[34,167,220,160]},{"238964":[34,167,220,160]},{"239190":[34,167,220,160]},{"239964":[134,223,160]},{"240044":[92,247,153,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,135,219,160]},{"241165":[34,135,219,160]},{"241175":[34,235,128,164]},{"241294":[34,135,219,160]},{"241304":[34,235,128,164]},{"241814":[34,135,219,160,24,125,139,176]},{"241869":[135,235,160]},{"241877":[34,135,219,160,24,125,139,176]},{"242942":[34,251,235,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,5,223,160,234]},{"243067":[234,234,34,214,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,165,219,160,234]},{"250478":[34,219,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,53,151,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,232,243,160,234]},{"273608":[34,197,182,160,76,230,172]},{"275716":[34,169,182,160,234]},{"276202":[34,230,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,143,225,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,69,238,160,234,234]},{"279880":[92,33,189,164]},{"280037":[34,27,234,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[135,235,160]},{"280106":[92,212,225,160,234]},{"280265":[201,210,160]},{"280287":[201,209,160]},{"280314":[201,210,160]},{"280335":[34,229,179,160]},{"282028":[34,122,153,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,101,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,135,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,234,200,160,234]},{"296453":[92,149,188,164,234]},{"296466":[201,211]},{"296471":[202,211]},{"296480":[201,213]},{"296488":[201,211]},{"296493":[202,211]},{"296502":[201,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[201,214]},{"296810":[217,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[249,206]},{"297052":[233,207]},{"297087":[34,69,133,160,234,176]},{"297144":[201,209]},{"297200":[249,206]},{"297225":[233,207]},{"297263":[202,215]},{"297292":[34,53,195,160]},{"297309":[209,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,51,189,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]},{"324619":[34,11,153,160]},{"324675":[34,239,222,160]},{"324780":[8,8,16]},{"324896":[34,83,236,160,34,215,222,160,234,234,234,234,234,234]},{"324996":[34,182,194,160]},{"325098":[169,2,0,234]},{"325131":[34,131,236,160]},{"325203":[34,179,175,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":[27,238,160]},{"342245":[34,59,132,160,34,88,222,160,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[36,222,160]},{"410347":[34,179,175,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[216,237,160]},{"412876":[92,129,175,164]},{"413015":[107]},{"413095":[145,164]},{"413109":[34,47,236,160]},{"413141":[34,166,142,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,59,146,164,234,234,234,234]},{"413264":[34,98,146,164,234,234,234,234,234,234]},{"413297":[92,137,146,164,234]},{"413317":[234,234,234,234]},{"413448":[34,228,175,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,166,142,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,130,175,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,19,135,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,130,175,164]},{"415678":[34,187,146,164]},{"416378":[46,147,164]},{"416491":[34,5,147,164,234]},{"416529":[34,224,146,164]},{"416588":[234,234,234,234]},{"416912":[34,252,146,164]},{"416937":[34,238,146,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]},{"422780":[28,244,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,167,223,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,65,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,95,244,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,44,244,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,56,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,139,155,160]},{"450360":[34,1,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,109,184,160,234]},{"450492":[34,107,155,160,234,234,234]},{"450861":[34,131,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,240,132,164]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,254,155,160,234]},{"452559":[34,236,155,160,234]},{"452581":[34,16,156,160,234]},{"452634":[96]},{"453064":[34,43,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,131,193,160,234,234,76,230,236]},{"453867":[34,34,156,160,234]},{"453892":[34,52,156,160]},{"454092":[34,157,155,160,234,234,234,234,234]},{"454233":[34,157,155,160,234,234,234,234,234]},{"454256":[34,235,194,160,234]},{"454282":[34,157,155,160,234,234,234,234,234]},{"454459":[34,157,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,242,216,160]},{"457513":[34,24,217,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,73,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,67,236,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,25,226,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[19,234,160]},{"487403":[169,2,0,234]},{"487935":[34,65,226,160]},{"488156":[34,65,226,160]},{"488213":[34,65,226,160]},{"488242":[34,65,226,160]},{"488309":[34,65,226,160]},{"488340":[34,65,226,160]},{"488721":[34,65,226,160]},{"489560":[34,65,226,160]},{"490022":[34,65,226,160]},{"490060":[34,65,226,160]},{"490164":[34,65,226,160]},{"490184":[34,65,226,160]},{"490209":[34,65,226,160]},{"490257":[34,65,226,160]},{"490438":[34,81,226,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]},{"882113":[34,180,153,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,63,240,160]},{"900244":[34,147,238,160,208,39,234,234,234,234,234,234]},{"900357":[92,138,240,160,234]},{"900437":[92,36,239,160,234]},{"900447":[34,227,247,160,234,234,234]},{"900458":[34,42,222,160]},{"901799":[34,134,150,164,107,32,222,201,107]},{"903876":[34,204,240,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,121,234,160,96]},{"954852":[220,181,160]},{"955117":[88,234,160]},{"955529":[216,181,160]},{"962925":[181,181,160]},{"962951":[181,181,160]},{"963167":[181,181,160]},{"963214":[181,181,160]},{"965041":[181,181,160]},{"965069":[181,181,160]},{"965214":[181,181,160]},{"965298":[181,181,160]},{"965316":[181,181,160]},{"967797":[34,29,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,55,180,160]},{"972824":[132,181,160]},{"972834":[132,181,160]},{"972851":[132,181,160]},{"974665":[92,182,197,160,234]},{"974706":[243,197,160]},{"974722":[216,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,199,197,160,234,234]},{"975332":[34,165,197,160,234,234]},{"975401":[255]},{"976357":[177,181,160]},{"976423":[177,181,160]},{"978658":[161,181,160]},{"979078":[34,37,220,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":[37,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,129,196,160]},{"983466":[161,181,160]},{"983651":[161,181,160]},{"988539":[173,181,160]},{"988657":[173,181,160]},{"988668":[173,181,160]},{"988874":[173,181,160]},{"988902":[173,181,160]},{"989142":[173,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[165,181,160]},{"999246":[169,181,160]},{"999265":[169,181,160]},{"999359":[169,181,160]},{"999574":[169,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,123,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[136,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[136,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,125,244,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,155,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,174,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,194,221,160,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,145,179,160,122,250,107,218,90,34,201,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,83,147,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,83,147,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,83,147,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,83,147,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,83,147,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,83,147,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,83,147,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,83,147,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,83,147,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,83,147,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,83,147,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,83,147,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,83,147,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,83,147,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,83,147,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,83,147,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,83,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,83,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,83,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,83,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,83,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,83,147,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,83,147,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,83,147,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,83,147,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,83,147,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,83,147,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,83,147,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,83,147,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,83,147,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,83,147,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,83,147,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,83,147,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,83,147,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,203,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,131,217,160,76,49,145,201,251,208,7,34,63,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,203,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,131,217,160,76,114,147,201,251,208,7,34,63,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,203,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,131,217,160,128,8,201,99,208,4,34,63,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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,175,90,128,48,41,255]},{"1055518":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055531":[107,175,122,243,126,47,165,160,2,41,255]},{"1055543":[107,194,32,175,19,130,48,41,255]},{"1055553":[240,5,169,8]},{"1055558":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055571":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055593":[2,107,175,19,130,48,41,255]},{"1055602":[240,5,169,8]},{"1055607":[128,7,175,72,128,48,41,255]},{"1055616":[24,101,234,48,3,169]},{"1055624":[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]},{"1055651":[201,255]},{"1055654":[208,1,107,175,22,244,126,41,32]},{"1055664":[240,4,169]},{"1055669":[107,173,12,4,41,255]},{"1055676":[201,255]},{"1055679":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055703":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,64,238,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055735":[107,169,136,21,133]},{"1055741":[107,175,69,128,48,208,6,169,16,22,133]},{"1055753":[107,169,144,21,133]},{"1055759":[107,175,69,128,48,208,6,169,24,22,133]},{"1055771":[107,169,152,21,133]},{"1055777":[107,175,69,128,48,208,6,169,32,22,133]},{"1055789":[107,169,160,21,133]},{"1055795":[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]},{"1055887":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055901":[144,240,175,22,244,126,41,32]},{"1055910":[240,3,130,200,1,175,69,128,48,41,1]},{"1055922":[208,3,130,231]},{"1055927":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055949":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055966":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055983":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056000":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056017":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056034":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056051":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056068":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056085":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056102":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056119":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056136":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056153":[141,165,22,194,32,175,69,128,48,41,2]},{"1056165":[208,3,130,201]},{"1056170":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056183":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056198":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056213":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056228":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056243":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056258":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056273":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056288":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056303":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056318":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056333":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056348":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056363":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056378":[208,3,130,170,1,175,69,128,48,41,4]},{"1056390":[208,3,130,201]},{"1056395":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056408":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056423":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056438":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056453":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056468":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056483":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056498":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056513":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056528":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056543":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056558":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056573":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056588":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056603":[208,3,130,201]},{"1056608":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056621":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056636":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056651":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056666":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056681":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056696":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056711":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056726":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056741":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056756":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056771":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056786":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056801":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056820":[191,115,161,160,157,234,18,191,135,161,160,157,42,19,191,155,161,160,157,106,19,191,175,161,160,157,170,19,191,195,161,160,157,234,19,191,215,161,160,157,42,20,191,235,161,160,157,106,20,191,255,161,160,157,170,20,191,19,162,160,157,234,20,232,232,224,20]},{"1056888":[144,186,175,116,243,126,41,4]},{"1056897":[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]},{"1056930":[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]},{"1056963":[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]},{"1056996":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057017":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057038":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057059":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057080":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057101":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057122":[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]},{"1057745":[143,114,243,126,173,10,2,208,14,169]},{"1057756":[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]},{"1057790":[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]},{"1057871":[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]},{"1057914":[165,12,201,232,3,144,3,130,24]},{"1057924":[201,100]},{"1057927":[144,3,130,97]},{"1057932":[201,10]},{"1057935":[144,3,130,170]},{"1057940":[201,1]},{"1057943":[144,3,130,243]},{"1057948":[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,33,166,133,14,165,14,159]},{"1057985":[201,126,232,232,169,56]},{"1057992":[159]},{"1057994":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058008":[201,126,232,232,169]},{"1058015":[159]},{"1058017":[201,126,232,232,165,14,24,105,8]},{"1058027":[133,14,100,10,165,12,201,100]},{"1058036":[144,8,56,233,100]},{"1058042":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,33,166,133,14,165,14,159]},{"1058066":[201,126,232,232,169,56]},{"1058073":[159]},{"1058075":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058089":[201,126,232,232,169]},{"1058096":[159]},{"1058098":[201,126,232,232,165,14,24,105,8]},{"1058108":[133,14,100,10,165,12,201,10]},{"1058117":[144,8,56,233,10]},{"1058123":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,33,166,133,14,165,14,159]},{"1058147":[201,126,232,232,169,56]},{"1058154":[159]},{"1058156":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058170":[201,126,232,232,169]},{"1058177":[159]},{"1058179":[201,126,232,232,165,14,24,105,8]},{"1058189":[133,14,100,10,165,12,201,1]},{"1058198":[144,8,56,233,1]},{"1058204":[230,10,128,243,133,12,192,255,208,10,160]},{"1058216":[165,14,24,121,33,166,133,14,165,14,159]},{"1058228":[201,126,232,232,169,56]},{"1058235":[159]},{"1058237":[201,126,232,232,164,10,152,10,168,185,13,166,159]},{"1058251":[201,126,232,232,169]},{"1058258":[159]},{"1058260":[201,126,232,232,165,14,24,105,8]},{"1058270":[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]},{"1058341":[252,255,248,255,218,90,8,194,48,162]},{"1058353":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058368":[208,13,175,153,80,127,41,255]},{"1058377":[223,3,200,48,208,44,226,32,191]},{"1058387":[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]},{"1058429":[200,48,41,255]},{"1058434":[201,255]},{"1058437":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058460":[226,32,162]},{"1058465":[160]},{"1058468":[152,207,96,80,127,144,3,130,172]},{"1058478":[191,1,201,48,201,255,208,3,130,161]},{"1058489":[191]},{"1058491":[201,48,207,80,80,127,240,3,130,137]},{"1058502":[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]},{"1058539":[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,213,167,160,170,32,244,167,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]},{"1058670":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058684":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,47,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,48,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,49,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]},{"1058777":[128]},{"1058782":[1]},{"1058785":[169,11,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,49,145,160,34,45,213]},{"1058824":[194,16,96,32,15,168,107,173]},{"1058833":[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]},{"1058863":[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]},{"1058900":[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]},{"1059041":[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]},{"1059206":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059227":[175,81,80,127,201,255,208,3,76,136,169,139,75,171,34,231,244,30,32,214,169,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]},{"1059278":[32,243,173,32,243,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059301":[201,2,208,3,130,227]},{"1059308":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059323":[165,26,41,16,240,12,189,106,170,159]},{"1059334":[201,126,232,224,16,144,244,189,122,170,159]},{"1059346":[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]},{"1059405":[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]},{"1059436":[248,255]},{"1059441":[2]},{"1059446":[16]},{"1059449":[2]},{"1059452":[248,255]},{"1059457":[2]},{"1059462":[16,64]},{"1059465":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,191,133,8,169,170,133,9,128,8,169,199,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059523":[70,10]},{"1059526":[2]},{"1059531":[70,74]},{"1059534":[2,218,162]},{"1059538":[165,26,41,64,240,12,189,65,171,159]},{"1059549":[201,126,232,224,16,144,244,189,81,171,159]},{"1059561":[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]},{"1059620":[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]},{"1059651":[248,255,132]},{"1059656":[2]},{"1059661":[16]},{"1059664":[2]},{"1059667":[248,255,132]},{"1059672":[2]},{"1059677":[16,64]},{"1059680":[2,218,162]},{"1059684":[165,26,41,64,240,12,189,211,171,159]},{"1059695":[201,126,232,224,16,144,244,189,227,171,159]},{"1059707":[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]},{"1059766":[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]},{"1059797":[248,255,142]},{"1059802":[2]},{"1059807":[16]},{"1059810":[2]},{"1059813":[248,255,142]},{"1059818":[2]},{"1059823":[16,64]},{"1059826":[2,218,90,8,160]},{"1059832":[90,152,74,74,168,175,95,80,127,57,47,173,240,3,122,128,48,122,173,238]},{"1059853":[221,32,15,208,39,32,198,173,32,50,173,34,230,131,6,144,3,32,230,173,32,156,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,72,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]},{"1059981":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059997":[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,47,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,47,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]},{"1060150":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060171":[58,10,168,185,232,174,133]},{"1060179":[122,104,24,113]},{"1060184":[24,105,2]},{"1060188":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060201":[13,194,32,90,200,200,24,113]},{"1060210":[122,72,175,81,80,127,41,128]},{"1060219":[240,7,104,24,105,4]},{"1060226":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060249":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060266":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060279":[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]},{"1060307":[165,35,105]},{"1060311":[133,8,165,32,105,8,133,1,165,33,105]},{"1060323":[133,9,96,218,34]},{"1060329":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060351":[160]},{"1060353":[175,81,80,127,41,3,201,3,208,5,32,36,174,128,4,201,2,208,5,32,36,174,128,4,201,1,208,3,32,36,174,122,250,171,96,175,95,80,127,57,47,173,240,3,130,178]},{"1060400":[90,175,81,80,127,41,3,58,10,168,194,32,185,232,174,133]},{"1060417":[163,1,10,10,168,177]},{"1060424":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060437":[208,8,177]},{"1060441":[143,39,192,126,128,10,177]},{"1060449":[24,105,4]},{"1060453":[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,6,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,114,147,160,143,42,192,126,169]},{"1060520":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060546":[143,44,192,126,32,219,175,169,2,218,72,175,97,80,127,170,104,32,146,175,250,175,81,80,127,41,128,208,3,32,9,175,200,232,232,232,232,96,238,174,242,174,250,174,8]},{"1060592":[40]},{"1060594":[240,255,40]},{"1060598":[32]},{"1060600":[40]},{"1060602":[216,255,40]},{"1060606":[8]},{"1060608":[40]},{"1060610":[56]},{"1060612":[40]},{"1060614":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060633":[58,10,168,185,232,174,133]},{"1060641":[185,128,175,133,2,122,90,152,10,10,168,177]},{"1060654":[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,115,164,226,32,133,6,100,7,72,169]},{"1060693":[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,134,175,136,175,140,175]},{"1060743":[255]},{"1060745":[128,128,255]},{"1060749":[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]},{"1060830":[194,32,191,37,192,126,24,105,4]},{"1060840":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060856":[159,47,192,126,191,41,192,126,24,105,16]},{"1060868":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060910":[72,165,2,72,169,16,128,133]},{"1060919":[169,48]},{"1060922":[133,2,169,2]},{"1060927":[34,83,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060974":[143]},{"1060976":[80,127,32,189,176,34,79,150,160,107,72,175]},{"1060989":[80,127,240,6,34,108,176,160,128,13,32,189,176,34,12,151,160,169]},{"1061008":[143,152,192,126,104,107,32,189,176,201,36,208,24,90,160,36,34,174,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061093":[143,152,192,126,169,36,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]},{"1061368":[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]},{"1061435":[191,4,179,160,197,4,144,3,232,128,245,191,5,179,160,133,6,100,7,194,32,138,10,10,170,191,6,179,160,141,232,80,191,8,179,160,141,234,80,173]},{"1061476":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061494":[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,240,176,173,236,80,10,10,170,189]},{"1061531":[81,56,229,8,157]},{"1061537":[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]},{"1061569":[81,141,228,80,189,2,81,141,230,80,32,240,176,173]},{"1061584":[81,56,229,8,141]},{"1061590":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,236,176,160,141,232,80,173,234,80,239,238,176,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,34,49,145,160,72,165,138,201,3,240,6,34,23,179,160,128,4,34,10,179,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,50,179,160,169,235,143]},{"1061736":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061760":[13,165,33,153,32,13,169]},{"1061768":[153,32,15,169,127,153,112,15,107,72,8,34,187,179,160,144,31,156,18,1,156,239,3,169]},{"1061793":[133,93,194,32,165,138,201,48]},{"1061802":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061826":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061839":[128,16,201,48]},{"1061844":[208,11,165,34,201]},{"1061850":[2,144,4,56,130,1]},{"1061857":[24,226,32,107,191,201,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061878":[226,32,34,16,247,8,169,52,145,144,200,191,201,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061913":[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]},{"1061975":[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,195,180,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]},{"1062122":[13,173,219,15,233]},{"1062128":[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]},{"1062167":[13,173,219,15,233]},{"1062173":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062198":[254,127,208,245,169,4,107,34,28,223,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,46,223,160,107,169,51,133,200,173,3,4,41,64,208,11,175,107,227,48,143,152,192,126,169,7,107,34,46,223,160,34,113,186,13,41,7,201,7,208,2,169]},{"1062271":[107,169]},{"1062274":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,244,181,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,244,181,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,244,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,244,181,160,107,218,8,194,32,41,127]},{"1062395":[10,170,191]},{"1062399":[82,127,26,41,255,3,159]},{"1062407":[82,127,170,10,191]},{"1062413":[128,175,40,250,107,218,8,194,48,162]},{"1062425":[191,73,182,160,159]},{"1062431":[82,127,232,232,191,73,182,160,159]},{"1062441":[82,127,232,232,191,73,182,160,159]},{"1062451":[82,127,232,232,191,73,182,160,159]},{"1062461":[82,127,232,232,224,127]},{"1062468":[144,211,40,250,107]},{"1062475":[64]},{"1062477":[128]},{"1062479":[192]},{"1062482":[1,64,1,128,1,192,1]},{"1062490":[2,64,2,128,2,192,2]},{"1062498":[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,105,182,160,175,35,128,48,208,4,34,137,182,160,104,107,72,169]},{"1062600":[143,65,80,127,175,34,128,48,201,1,208,4,34,105,182,160,175,35,128,48,201,1,208,4,34,137,182,160,104,107,72,175,34,128,48,201,2,208,4,34,105,182,160,175,35,128,48,201,2,208,4,34,137,182,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]},{"1062766":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062783":[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]},{"1062854":[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]},{"1062890":[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,61,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]},{"1063015":[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]},{"1063041":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063061":[2,156,5,2,169]},{"1063067":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,159,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063098":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063115":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063132":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063149":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063166":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063183":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063200":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063217":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063240":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063257":[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]},{"1063290":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063313":[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]},{"1063345":[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]},{"1063403":[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]},{"1063429":[192,59,208,3,130,96]},{"1063436":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063461":[201,15,1,208,3,130,59]},{"1063469":[201,16,1,208,3,130,51]},{"1063477":[201,28,1,208,3,130,43]},{"1063485":[201,31,1,208,3,130,35]},{"1063493":[201,255]},{"1063496":[208,3,130,27]},{"1063501":[201,20,1,208,3,130,19]},{"1063509":[201,21,1,208,3,130,11]},{"1063517":[201,22,1,208,3,130,3]},{"1063525":[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]},{"1063557":[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]},{"1063710":[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]},{"1063748":[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]},{"1063786":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063804":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063822":[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]},{"1063858":[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]},{"1063896":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063914":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,139,192,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]},{"1064018":[208,9,32,37,191,32,86,191,130,64,2,192,1,208,6,32,37,191,130,54,2,192,2,208,6,32,37,191,130,44,2,192,3,208,6,32,37,191,130,34,2,192,4,208,6,32,86,191,130,24,2,192,5,208,6,32,86,191,130,14,2,192,6,208,6,32,86,191,130,4,2,192,7,144,10,192,14,176,6,32,135,191,130,246,1,192,20,208,9,32,227,190,32,135,191,130,233,1,192,15,144,10,192,23,176,6,32,135,191,130,219,1,192,23,208,6,32,235,191,130,209,1,192,24,144,10,192,26,176,6,32,135,191,130,195,1,192,26,208,9,32,4,191,32,135,191,130,182,1,192,29,208,6,32,135,191,130,172,1,192,27,144,10,192,32,176,6,32,147,191,130,158,1,192,32,208,6,32,19,192,130,148,1,192,33,208,6,32,135,191,130,138,1,192,34,144,10,192,36,176,6,32,47,192,130,124,1,192,36,208,6,32,63,192,130,114,1,192,37,208,6,32,95,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,167,192,130,87,1,192,40,208,6,32,167,192,130,77,1,192,41,208,6,32,135,191,130,67,1,192,42,144,10,192,46,176,6,32,135,191,130,53,1,192,49,208,6,32,167,192,130,43,1,192,50,208,6,32,127,192,130,33,1,192,51,208,6,32,189,192,130,23,1,192,55,144,10,192,58,176,6,32,175,191,130,9,1,192,58,144,10,192,60,176,6,32,116,191,130,251]},{"1064354":[192,60,208,6,32,135,191,130,241]},{"1064364":[192,61,208,6,32,135,191,130,231]},{"1064374":[192,62,144,10,192,64,176,6,32,7,192,130,217]},{"1064388":[192,72,208,6,32,135,191,130,207]},{"1064398":[192,73,208,6,32,37,191,130,197]},{"1064408":[192,74,208,9,32,227,190,32,135,191,130,184]},{"1064421":[192,75,208,9,32,194,190,32,147,191,130,171]},{"1064434":[192,76,208,9,32,203,191,32,167,192,130,158]},{"1064447":[192,77,144,10,192,80,176,6,32,203,191,130,144]},{"1064461":[192,80,208,6,32,37,191,130,134]},{"1064471":[192,81,144,10,192,85,176,6,32,203,191,130,120]},{"1064485":[192,88,208,6,32,116,191,130,110]},{"1064495":[192,94,208,6,32,37,191,130,100]},{"1064505":[192,95,208,6,32,86,191,130,90]},{"1064515":[192,96,208,6,32,47,192,130,80]},{"1064525":[192,97,208,6,32,147,191,130,70]},{"1064535":[192,100,144,10,192,102,176,6,32,116,191,130,56]},{"1064549":[192,112,144,10,192,128,176,6,32,189,192,130,42]},{"1064563":[192,128,144,10,192,144,176,6,32,95,192,130,28]},{"1064577":[192,144,144,10,192,160,176,6,32,127,192,130,14]},{"1064591":[192,160,144,10,192,176,176,6,32,63,192,130]},{"1064605":[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,161,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064757":[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,63,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,135,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,205,192,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,64,238,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]},{"1065353":[201,2]},{"1065356":[208,14,175,140,243,126,41,192]},{"1065365":[201,192]},{"1065368":[240,79,128,64,201,1]},{"1065375":[208,14,175,142,243,126,41,192]},{"1065384":[201,192]},{"1065387":[240,60,128,45,201,5]},{"1065394":[208,14,175,140,243,126,41,48]},{"1065403":[201,48]},{"1065406":[240,41,128,26,201,13]},{"1065413":[208,16,175,140,243,126,137,4]},{"1065422":[240,12,41,3]},{"1065427":[208,20,128,5,201,16]},{"1065434":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065447":[208,5,169,79,61,128,6,32,248,193,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]},{"1065494":[41,255,239,153,4]},{"1065500":[185,62]},{"1065503":[41,255,239,153,62]},{"1065509":[185,68]},{"1065512":[41,255,239,153,68]},{"1065518":[185,128]},{"1065521":[41,255,239,153,128]},{"1065527":[185,130]},{"1065530":[41,255,239,153,130]},{"1065536":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065557":[41,255,239,153,132]},{"1065563":[185,126]},{"1065566":[41,255,239,153,126]},{"1065572":[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]},{"1065610":[201,144]},{"1065613":[208,3,169,127]},{"1065618":[9]},{"1065620":[36,143,100,199,126,165,5,41,255]},{"1065630":[9]},{"1065632":[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,181,240,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065744":[72,165,2,72,169,16,128,133]},{"1065753":[169,48]},{"1065756":[133,2,169,4]},{"1065761":[34,83,147,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065807":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065828":[143]},{"1065830":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065844":[157,192,13,72,169,1,143]},{"1065852":[80,127,165,93,201,20,240,68,169]},{"1065862":[143]},{"1065864":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065892":[72,165,2,72,169,16,128,133]},{"1065901":[169,48]},{"1065904":[133,2,169,3]},{"1065909":[34,83,147,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065934":[80,127,240,6,34,119,195,160,128,7,189,128,14,34,187,150,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]},{"1065977":[72,165,2,72,169,16,128,133]},{"1065986":[169,48]},{"1065989":[133,2,169,4]},{"1065994":[34,83,147,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,151,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]},{"1066052":[143,68,243,126,107,175,123,243,126,41,255]},{"1066064":[201,2]},{"1066067":[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]},{"1066100":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066115":[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]},{"1066151":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066165":[173,91,3,41,1,208,3,130,134]},{"1066175":[90,8,139,75,171,226,48,165,27,240,3,76,66,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066212":[129,48,143]},{"1066216":[254,127,34,93,246,29,162]},{"1066224":[165,47,201,4,240,1,232,191,70,197,160,153,80,13,169]},{"1066240":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,72,197,160,41,240,153,16,13,165,35,105]},{"1066274":[153,48,13,165,32,24,105,22,41,240,153]},{"1066286":[13,165,33,105]},{"1066291":[153,32,13,169]},{"1066296":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066313":[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]},{"1066344":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066365":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066435":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066466":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066560":[72,165,2,72,169,64,129,133]},{"1066569":[169,48]},{"1066572":[133,2,169,10]},{"1066577":[34,83,147,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066597":[254,127,34,93,246,29,162]},{"1066605":[165,47,201,4,240,1,232,191,202,198,160,153,80,13,169]},{"1066621":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,204,198,160,41,240,153,16,13,165,35,105]},{"1066655":[153,48,13,165,32,24,105,22,41,240,153]},{"1066667":[13,165,33,105]},{"1066672":[153,32,13,169]},{"1066677":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066701":[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]},{"1066780":[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]},{"1066807":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066846":[72,165,2,72,169,16,128,133]},{"1066855":[169,48]},{"1066858":[133,2,169,5]},{"1066863":[34,83,147,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]},{"1066917":[201,35,208,6,160,93,92,71,213]},{"1066927":[201,72,208,6,160,96,92,71,213]},{"1066937":[201,36,176,6,160,91,92,71,213]},{"1066947":[201,55,176,6,160,92,92,71,213]},{"1066957":[201,57,176,6,160,93,92,71,213]},{"1066967":[160,50,92,71,213]},{"1066973":[192,9,48]},{"1066977":[96]},{"1066979":[144]},{"1066981":[192]},{"1066984":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067008":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067026":[9,48,9,96,9,144,9,240,9]},{"1067037":[240]},{"1067039":[32,10,80,10,96,6]},{"1067046":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067068":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067084":[6,48,6]},{"1067088":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067104":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067125":[127,221,199,160,107,165]},{"1067132":[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]},{"1067163":[132,175,24,105]},{"1067168":[136,133]},{"1067171":[226,32,169,175,133,2,34,99,226,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,235,218,160,162,1,128,2,162]},{"1067229":[171,40,122,104,133,2,104,133,1,104,133]},{"1067241":[96,218,173,216,2,34,153,226,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067724":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,235,218,160,130,116,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,235,218,160,130,72,1,201,109,208,7,34,248,184,164,130,61,1,201,110,208,7,34,248,184,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067971":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067996":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068019":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068038":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068055":[56,233,8,170,169,1,224]},{"1068063":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068086":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068105":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068122":[56,233,8,170,169,1,224]},{"1068130":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068153":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068175":[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]},{"1068207":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068226":[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]},{"1068252":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,57,238,160,173,216,2,72,175,152,192,126,208,12,104,32,154,218,141,216,2,32,112,218,128,1,104,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,203,218,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]},{"1068415":[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]},{"1068528":[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]},{"1068568":[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]},{"1068598":[175,91,243,126,201]},{"1068604":[208,8,169,34,141,216,2,130,171]},{"1068614":[169,35,141,216,2,130,163]},{"1068622":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068640":[169,28,141,216,2,130,137]},{"1068648":[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]},{"1068680":[175,64,243,126,26,74,201]},{"1068688":[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,131,217,160,141,216,2,235,32,14,218,169,255,143,144,80,127,128,36,201,99,208,15,34,63,218,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]},{"1068785":[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]},{"1069040":[4,4,4,4,4,5]},{"1069052":[4]},{"1069054":[4]},{"1069057":[4]},{"1069069":[4]},{"1069075":[5]},{"1069085":[4,4,4]},{"1069099":[4,4]},{"1069102":[4]},{"1069106":[4]},{"1069113":[4]},{"1069122":[4]},{"1069193":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069273":[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]},{"1069322":[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]},{"1069361":[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]},{"1069518":[2,2]},{"1069526":[2,2,2,2,2,2]},{"1069533":[2]},{"1069535":[2,2]},{"1069538":[2,2,2,2,2,2,2,2,2,2,2]},{"1069550":[2,2,2,2,2]},{"1069556":[2,2,2,2,2,2,2,2,2]},{"1069568":[2,2,2,2,2,2,2,2,2,2,2]},{"1069581":[2]},{"1069583":[2,2,2]},{"1069587":[2,2,2,2,2,2]},{"1069594":[2,2,2,2,2,2,2,2]},{"1069603":[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]},{"1069689":[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]},{"1069875":[4,4,4]},{"1069881":[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]},{"1070794":[128]},{"1070796":[64]},{"1070798":[32]},{"1070800":[16]},{"1070802":[8]},{"1070804":[4]},{"1070806":[2]},{"1070808":[1,128]},{"1070811":[64]},{"1070813":[32]},{"1070815":[16]},{"1070817":[8]},{"1070819":[4]},{"1071050":[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,154,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,24,217,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,24,217,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]},{"1071504":[160,48,107,162]},{"1071509":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071522":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071536":[168,152,32,234,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071556":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071580":[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]},{"1071620":[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]},{"1071657":[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]},{"1071696":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071709":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071732":[191]},{"1071734":[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]},{"1071774":[191]},{"1071776":[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,162]},{"1071821":[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,96,100,17,100,176,92,224,223,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071884":[13,24,105,3,107,189,32,14,201,136,208,9,32,73,219,201,4,144,1,58,107,32,73,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071930":[200,49,74,74,74,74,107,40,191]},{"1071940":[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]},{"1071990":[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]},{"1072024":[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,20,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]},{"1072226":[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]},{"1072281":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072307":[165,27,240,121,194,32,165,160,201,14]},{"1072318":[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]},{"1072353":[201,126]},{"1072356":[208,33,165,34,41,255,1,201,104]},{"1072366":[144,60,201,136]},{"1072371":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072391":[201,222]},{"1072394":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072419":[144,7,201,154]},{"1072424":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,144,221,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,144,221,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,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]},{"1072634":[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]},{"1072694":[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,61,222,160,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,90,160,24,34,161,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,59,192,160,34,192,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1072813":[208,11,40,90,160,24,34,161,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,192,155,160,107,72,175,67,244,126,208,4,34,201,192,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,61,222,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,61,222,160,104,34,168,160,2,107,58,16,8,169]},{"1073069":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1073083":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,61,222,169,1,143]},{"1073109":[80,127,156,70,6,156,66,6,76,61,222,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,201,192,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1073321":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1073352":[32,137,64,240,4,92,220,128]},{"1073361":[173]},{"1073363":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1073388":[143,155,80,127,92,220,128]},{"1073396":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1073415":[173,39,1,205,41,1,208,4,92,220,128]},{"1073427":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073457":[224,255,208,4,92,220,128]},{"1073465":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073481":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073497":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1073514":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1073527":[142,4,32,156,5,32,156,7,32,191]},{"1073538":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1073551":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073587":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073600":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1073656":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1073669":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1073719":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1073737":[87,127,107,191]},{"1073742":[18,127,107,156,240,28,156,241,28,169]},{"1073753":[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]},{"1073785":[226,32,183]},{"1073789":[159]},{"1073791":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073810":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073834":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073852":[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]},{"1073878":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073896":[226,32,183]},{"1073900":[159]},{"1073902":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073921":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073941":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073959":[226,32,183]},{"1073963":[159]},{"1073965":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073984":[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]},{"1074015":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074033":[226,32,183]},{"1074037":[159]},{"1074039":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074058":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074078":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074096":[226,32,183]},{"1074100":[159]},{"1074102":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074121":[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]},{"1074150":[133]},{"1074152":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074170":[226,32,183]},{"1074174":[159]},{"1074176":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074195":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074215":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074233":[226,32,183]},{"1074237":[159]},{"1074239":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074258":[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]},{"1074289":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074307":[226,32,183]},{"1074311":[159]},{"1074313":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074332":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074352":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074370":[226,32,183]},{"1074374":[159]},{"1074376":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074395":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074416":[133]},{"1074418":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074436":[226,32,183]},{"1074440":[159]},{"1074442":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074461":[143,148,80,127,226,32,130,213]},{"1074470":[201,128,208,56,169,52,133]},{"1074478":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074496":[226,32,183]},{"1074500":[159]},{"1074502":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074521":[143,148,80,127,226,32,130,153]},{"1074530":[201,144,208,55,169,112,133]},{"1074538":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074556":[226,32,183]},{"1074560":[159]},{"1074562":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074581":[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]},{"1074608":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074626":[226,32,183]},{"1074630":[159]},{"1074632":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074651":[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]},{"1074730":[208,56,169,216,133]},{"1074736":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074754":[226,32,183]},{"1074758":[159]},{"1074760":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074779":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074796":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074814":[226,32,183]},{"1074818":[159]},{"1074820":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074839":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074856":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074874":[226,32,183]},{"1074878":[159]},{"1074880":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074899":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074916":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074934":[226,32,183]},{"1074938":[159]},{"1074940":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074959":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074976":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074994":[226,32,183]},{"1074998":[159]},{"1075000":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075019":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075036":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075054":[226,32,183]},{"1075058":[159]},{"1075060":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075079":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075096":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075114":[226,32,183]},{"1075118":[159]},{"1075120":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075139":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075156":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075174":[226,32,183]},{"1075178":[159]},{"1075180":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075199":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075216":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075234":[226,32,183]},{"1075238":[159]},{"1075240":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075259":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075276":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075294":[226,32,183]},{"1075298":[159]},{"1075300":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075319":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075336":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075354":[226,32,183]},{"1075358":[159]},{"1075360":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075379":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075396":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075414":[226,32,183]},{"1075418":[159]},{"1075420":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075439":[143,148,80,127,226,32,130,235]},{"1075448":[201,12,208,56,169,12,133]},{"1075456":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075474":[226,32,183]},{"1075478":[159]},{"1075480":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075499":[143,148,80,127,226,32,130,175]},{"1075508":[201,13,208,55,169,41,133]},{"1075516":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075534":[226,32,183]},{"1075538":[159]},{"1075540":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075559":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075575":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075593":[226,32,183]},{"1075597":[159]},{"1075599":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075618":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075634":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075652":[226,32,183]},{"1075656":[159]},{"1075658":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075677":[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]},{"1075710":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075725":[171,40,122,250,104,107,34,78,216]},{"1075735":[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]},{"1075799":[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,141,235,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,141,235,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]},{"1076070":[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]},{"1076115":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076139":[226,48,160]},{"1076143":[183]},{"1076145":[201,254,208,39,200,183]},{"1076152":[201,110,208,32,200,183]},{"1076159":[208,27,200,183]},{"1076164":[201,254,208,20,200,183]},{"1076171":[201,107,208,13,200,183]},{"1076178":[201,4,208,6,156,232,28,130,19]},{"1076188":[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]},{"1076216":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076233":[10,10,69,138,41,8]},{"1076240":[240,6,152,24,105,16]},{"1076247":[168,165,35,41,2]},{"1076253":[74,69,138,41,1]},{"1076259":[240,4,152,26,26,168,152,41,255]},{"1076269":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,33,148,164,34,23,145,164,107,34,189,246,160,34,182,170,164,34]},{"1076301":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,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,202,222,160,107,194,16,34,61,137]},{"1076497":[169,7,141,12,33,175,240,244,126,208,10,34,114,237,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076549":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,58,147,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]},{"1076629":[191]},{"1076631":[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]},{"1076705":[107,34,212,152,160,34,194,247,160,107,34,71,153,160,34,80,153,160,162,4,107,34,194,247,160,169,20,133,17,107,34,194,247,160,107,34,63,132,160,34,44,153,160,34,61,222,160,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]},{"1076780":[2,107,169]},{"1076784":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1076807":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,135,235,160,169]},{"1076829":[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]},{"1076865":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076890":[208,4,169]},{"1076895":[107,201,1]},{"1076899":[208,16,175,197,243,126,41,15]},{"1076908":[201,2]},{"1076911":[176,84,32,9,239,107,201,2]},{"1076920":[208,75,32,9,239,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076944":[107,175,74,128,48,41,255]},{"1076952":[240,43,175,195,242,126,41,32]},{"1076961":[208,34,173,8,3,41,128]},{"1076969":[240,4,169,1]},{"1076974":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076996":[107,169]},{"1077000":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077023":[96,169]},{"1077027":[96,175,76,128,48,41,255]},{"1077035":[240,4,92,90,189,27,224,118]},{"1077044":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077061":[72,170,191,64,130,48,208,3,130,175]},{"1077072":[58,133]},{"1077075":[10,10,24,101]},{"1077080":[10,10,170,169,22]},{"1077086":[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]},{"1077114":[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]},{"1077157":[137,128]},{"1077160":[240,3,9]},{"1077164":[255,143,106,193,126,191,98,130,48,41,255]},{"1077176":[137,128]},{"1077179":[240,3,9]},{"1077183":[255,143,110,193,126,169]},{"1077191":[56,239,106,193,126,143,108,193,126,169]},{"1077203":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077219":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077237":[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]},{"1077314":[165]},{"1077316":[223]},{"1077318":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077338":[165]},{"1077340":[223]},{"1077342":[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]},{"1077388":[175,74,128,48,41,255]},{"1077395":[240,25,175,93]},{"1077401":[41,255]},{"1077404":[201,20]},{"1077407":[208,13,165,138,41,64]},{"1077414":[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]},{"1077471":[107,104,141,228,2,141,193,15,141,16,7,107,34,244,240,160,34,97,241,160,107,169,14,143,1,40]},{"1077498":[169,4,143,1,40]},{"1077504":[169,13,143,1,40]},{"1077510":[169,14,143,1,40]},{"1077516":[169]},{"1077518":[143,1,40]},{"1077522":[169]},{"1077524":[143,1,40]},{"1077528":[169]},{"1077530":[143,1,40]},{"1077534":[169]},{"1077536":[143,1,40]},{"1077540":[169]},{"1077542":[143,1,40]},{"1077546":[169]},{"1077548":[143,1,40]},{"1077552":[169]},{"1077554":[143,1,40]},{"1077558":[169,1,143,1,40]},{"1077564":[169]},{"1077566":[143,1,40]},{"1077570":[169,1,143,1,40]},{"1077576":[169]},{"1077578":[143,1,40]},{"1077582":[169]},{"1077584":[143,1,40]},{"1077588":[169,10,143,1,40]},{"1077594":[169,13,143,1,40]},{"1077600":[107,72,218,162]},{"1077605":[175]},{"1077607":[40]},{"1077609":[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]},{"1077636":[175]},{"1077638":[40]},{"1077640":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1077654":[232,128,235,56,175]},{"1077660":[40]},{"1077662":[72,175]},{"1077665":[40]},{"1077667":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1077685":[175]},{"1077687":[40]},{"1077689":[72,175]},{"1077692":[40]},{"1077694":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1077714":[40]},{"1077716":[72,175]},{"1077719":[40]},{"1077721":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1077741":[40]},{"1077743":[72,175]},{"1077746":[40]},{"1077748":[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]},{"1077833":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1077851":[133]},{"1077853":[165,3,41,255]},{"1077858":[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,148,242,160,132,2,100,3,24,101]},{"1077900":[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]},{"1077955":[175]},{"1077957":[40]},{"1077959":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1077973":[232,128,235,56,175]},{"1077979":[40]},{"1077981":[72,175]},{"1077984":[40]},{"1077986":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1078004":[175]},{"1078006":[40]},{"1078008":[72,175]},{"1078011":[40]},{"1078013":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1078033":[40]},{"1078035":[72,175]},{"1078038":[40]},{"1078040":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1078060":[40]},{"1078062":[72,175]},{"1078065":[40]},{"1078067":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1078087":[40]},{"1078089":[133,4,175]},{"1078093":[40]},{"1078095":[72,175]},{"1078098":[40]},{"1078100":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1078120":[40]},{"1078122":[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]},{"1078191":[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,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]},{"1078281":[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]},{"1078315":[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]},{"1078414":[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]},{"1078445":[201,2]},{"1078448":[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]},{"1078480":[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,187,246,160,144,10,208,8,175,140,80,127,207,185,246,160,144,114,175,145,129,48,41,255]},{"1078536":[208,24,169,2]},{"1078541":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078565":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078578":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078592":[143,142,80,127,169,1]},{"1078599":[143,126,80,127,128,54,201,2]},{"1078608":[208,24,169,2]},{"1078613":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,235,218,160,194,48,96,175,146,129,48,41,255]},{"1078650":[240,7,169]},{"1078655":[143,126,80,127,175,142,80,127,207,175,246,160,144,10,208,8,175,140,80,127,207,173,246,160,144,53,175,128,80,127,26,201,10]},{"1078689":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078703":[143,128,80,127,175,140,80,127,56,239,173,246,160,143,140,80,127,175,142,80,127,239,175,246,160,143,142,80,127,128,181,175,142,80,127,207,179,246,160,144,10,208,8,175,140,80,127,207,177,246,160,144,53,175,132,80,127,26,201,10]},{"1078764":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078778":[143,132,80,127,175,140,80,127,56,239,177,246,160,143,140,80,127,175,142,80,127,239,179,246,160,143,142,80,127,128,181,175,142,80,127,207,183,246,160,144,10,208,8,175,140,80,127,207,181,246,160,144,53,175,136,80,127,26,201,10]},{"1078839":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078853":[143,136,80,127,175,140,80,127,56,239,181,246,160,143,140,80,127,175,142,80,127,239,183,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]},{"1078961":[16,14]},{"1078965":[60]},{"1078969":[255,255,255,127,175,204,80,127,41,255]},{"1078980":[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]},{"1079051":[240,93,175,145,129,48,41,255]},{"1079060":[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]},{"1079153":[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]},{"1079228":[208,3,32,139,244,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1079258":[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]},{"1079292":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1079376":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,206,223,160,34,58,135,1,194,16,166,160,191,76,251,160,226,16,34,156,135]},{"1079486":[208,248,160,209,248,160,94,249,160,235,249,160,120,250,160,226,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079522":[32,126,232,232,159]},{"1079528":[32,126,232,232,159]},{"1079534":[32,126,232,232,159]},{"1079540":[32,126,232,232,162,220,25,159]},{"1079549":[32,126,232,232,169,202,12,159]},{"1079558":[32,126,232,232,169,203,12,159]},{"1079567":[32,126,232,232,169,208,8,159]},{"1079576":[32,126,232,232,162,92,26,159]},{"1079585":[32,126,232,232,169,218,12,159]},{"1079594":[32,126,232,232,169,219,12,159]},{"1079603":[32,126,232,232,169,208,8,159]},{"1079612":[32,126,232,232,162,220,26,159]},{"1079621":[32,126,232,232,159]},{"1079627":[32,126,232,232,159]},{"1079633":[32,126,232,232,159]},{"1079639":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079663":[32,126,232,232,159]},{"1079669":[32,126,232,232,159]},{"1079675":[32,126,232,232,159]},{"1079681":[32,126,232,232,162,156,25,159]},{"1079690":[32,126,232,232,169,202,12,159]},{"1079699":[32,126,232,232,169,203,12,159]},{"1079708":[32,126,232,232,169,208,8,159]},{"1079717":[32,126,232,232,162,28,26,159]},{"1079726":[32,126,232,232,169,218,12,159]},{"1079735":[32,126,232,232,169,219,12,159]},{"1079744":[32,126,232,232,169,208,8,159]},{"1079753":[32,126,232,232,162,156,26,159]},{"1079762":[32,126,232,232,159]},{"1079768":[32,126,232,232,159]},{"1079774":[32,126,232,232,159]},{"1079780":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079804":[32,126,232,232,159]},{"1079810":[32,126,232,232,159]},{"1079816":[32,126,232,232,159]},{"1079822":[32,126,232,232,162,220,9,159]},{"1079831":[32,126,232,232,169,202,12,159]},{"1079840":[32,126,232,232,169,203,12,159]},{"1079849":[32,126,232,232,169,208,8,159]},{"1079858":[32,126,232,232,162,92,10,159]},{"1079867":[32,126,232,232,169,218,12,159]},{"1079876":[32,126,232,232,169,219,12,159]},{"1079885":[32,126,232,232,169,208,8,159]},{"1079894":[32,126,232,232,162,220,10,159]},{"1079903":[32,126,232,232,159]},{"1079909":[32,126,232,232,159]},{"1079915":[32,126,232,232,159]},{"1079921":[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]},{"1080154":[1]},{"1080236":[5]},{"1080238":[4]},{"1080266":[2]},{"1080362":[3]},{"1080460":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080477":[134,1,133,2,32,140,252,176,4,92,83,230]},{"1080490":[169,49,133,2,194,32,169]},{"1080498":[192,133]},{"1080501":[162,128,167]},{"1080505":[141,24,33,230]},{"1080510":[230]},{"1080512":[167]},{"1080514":[141,24,33,230]},{"1080519":[230]},{"1080521":[167]},{"1080523":[141,24,33,230]},{"1080528":[230]},{"1080530":[167]},{"1080532":[141,24,33,230]},{"1080537":[230]},{"1080539":[167]},{"1080541":[141,24,33,230]},{"1080546":[230]},{"1080548":[167]},{"1080550":[141,24,33,230]},{"1080555":[230]},{"1080557":[167]},{"1080559":[141,24,33,230]},{"1080564":[230]},{"1080566":[167]},{"1080568":[141,24,33,230]},{"1080573":[230]},{"1080575":[202,208,181,226,32,92,81,230]},{"1080584":[226,48,175,248,194,126,168,32,140,252,194,48,176,10,162]},{"1080601":[160,64]},{"1080604":[92,104,223]},{"1080608":[162]},{"1080610":[192,160]},{"1080614":[169]},{"1080616":[8,139,84,127,177,171,162]},{"1080624":[8,169]},{"1080627":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,253,185,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,11,168,160,40,175,67,244,126,41,255]},{"1081469":[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,101,151,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]},{"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,90,235,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,107,235,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,175,145,164,194,16,34,203,143,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,200,145,164,34,52,144,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,70,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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]},{"1180922":[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]},{"1180981":[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]},{"1181009":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181025":[128,3,169]},{"1181030":[226,32,250,201]},{"1181035":[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]},{"1181072":[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]},{"1181099":[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]},{"1181131":[66,240,3,73]},{"1181136":[66,137]},{"1181139":[132,240,3,73]},{"1181144":[132,133]},{"1181147":[226,32,92,222,131]},{"1181153":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181176":[12,240,3,73]},{"1181181":[12,137]},{"1181184":[3,240,3,73]},{"1181189":[3,133]},{"1181192":[226,32,92,222,131]},{"1181198":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181221":[226,32,92,222,131]},{"1181227":[173,24,66,133]},{"1181232":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181253":[173,24,66,133]},{"1181258":[173,25,66,133,1,92,222,131]},{"1181267":[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,189]},{"1181305":[153]},{"1181308":[189,2]},{"1181311":[153,2]},{"1181314":[189,4]},{"1181317":[153,64]},{"1181320":[189,6]},{"1181323":[153,66]},{"1181326":[96,189]},{"1181330":[41,255,227,9]},{"1181335":[16,153]},{"1181339":[189,2]},{"1181342":[41,255,227,9]},{"1181347":[16,153,2]},{"1181351":[189,4]},{"1181354":[41,255,227,9]},{"1181359":[16,153,64]},{"1181363":[189,6]},{"1181366":[41,255,227,9]},{"1181371":[16,153,66]},{"1181375":[96,41,255]},{"1181379":[240,3,76,118,134,76,143,134,41,255]},{"1181390":[208,6,162,172,141,76,143,134,58,58,208,6,162,172,141,76,118,134,58,208,6,162,180,141,76,118,134,58,208,6,162,188,141,76,118,134,58,208,6,162,196,141,76,118,134,58,208,6,162,204,141,76,118,134,58,208,6,162,212,141,76,118,134,162,220,141,76,118,134,165,26,41,1]},{"1181464":[240,2,128,14,32,57,135,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1181494":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1181510":[5,112,9]},{"1181514":[28,141,142,17,24,105,16]},{"1181522":[141,206,17,175,2,5,112,9]},{"1181531":[28,141,144,17,24,105,16]},{"1181539":[141,208,17,175,4,5,112,9]},{"1181548":[28,141,146,17,24,105,16]},{"1181556":[141,210,17,175,6,5,112,9]},{"1181565":[28,141,148,17,24,105,16]},{"1181573":[141,212,17,175,8,5,112,9]},{"1181582":[28,141,78,18,24,105,16]},{"1181590":[141,142,18,175,10,5,112,9]},{"1181599":[28,141,80,18,24,105,16]},{"1181607":[141,144,18,175,12,5,112,9]},{"1181616":[28,141,82,18,24,105,16]},{"1181624":[141,146,18,175,14,5,112,9]},{"1181633":[28,141,84,18,24,105,16]},{"1181641":[141,148,18,32,228,141,175,142,3,112,41,64]},{"1181654":[240,31,175,64,3,112,41,255]},{"1181663":[240,11,162,44,140,160,220,16,32,118,134,128,40,162,60,140,160,220,16,32,118,134,128,29,175,64,3,112,41,255]},{"1181694":[240,11,162,36,140,160,220,16,32,118,134,128,9,162,36,140,160,220,16,32,143,134,175,140,3,112,41,192]},{"1181723":[201,192]},{"1181726":[208,11,162,84,140,160,224,16,32,118,134,128,49,175,140,3,112,41,64]},{"1181746":[240,11,162,76,140,160,224,16,32,118,134,128,29,175,140,3,112,41,128]},{"1181766":[240,11,162,68,140,160,224,16,32,118,134,128,9,162,68,140,160,224,16,32,143,134,162,92,140,160,228,16,175,66,3,112,32,192,134,175,140,3,112,41,16]},{"1181808":[240,11,162,52,141,160,236,16,32,118,134,128,9,162,52,141,160,236,16,32,143,134,175,140,3,112,41,8]},{"1181837":[240,11,162,44,141,160,232,16,32,118,134,128,9,162,44,141,160,232,16,32,143,134,175,140,3,112,41,3]},{"1181866":[240,11,162,180,140,160,228,17,32,118,134,128,9,162,180,140,160,228,17,32,143,134,175,140,3,112,41,4]},{"1181895":[240,11,162,172,140,160,92,18,32,118,134,128,9,162,172,140,160,92,18,32,143,134,162,108,140,160,92,17,175,69,3,112,32,192,134,162,116,140,160,96,17,175,70,3,112,32,192,134,162,124,140,160,100,17,175,71,3,112,32,192,134,162,132,140,160,104,17,175,72,3,112,32,192,134,162,140,140,160,108,17,175,73,3,112,32,192,134,162,148,140,160,220,17,175,74,3,112,32,192,134,162,156,140,160,224,17,175,75,3,112,32,192,134,162,164,140,160,232,17,175,77,3,112,32,192,134,162,188,140,160,236,17,175,78,3,112,32,192,134,162,196,140,160,96,18,175,80,3,112,32,192,134,162,204,140,160,100,18,175,81,3,112,32,192,134,162,212,140,160,104,18,175,82,3,112,32,192,134,162,220,140,160,108,18,175,83,3,112,32,192,134,160,242,16,175,92,3,112,32,203,134,160,114,17,175,93,3,112,32,203,134,160,242,17,175,94,3,112,32,203,134,160,114,18,175,95,3,112,32,203,134,175,89,3,112,41,255]},{"1182133":[208,11,162,60,141,160,248,16,32,143,134,128,65,58,208,11,162,60,141,160,248,16,32,118,134,128,51,58,208,11,162,68,141,160,248,16,32,118,134,128,37,58,208,11,162,76,141,160,248,16,32,118,134,128,23,58,208,11,162,84,141,160,248,16,32,118,134,128,9,162,60,141,160,248,16,32,143,134,175,90,3,112,41,255]},{"1182218":[208,11,162,92,141,160,120,17,32,143,134,128,37,58,208,11,162,92,141,160,120,17,32,118,134,128,23,58,208,11,162,100,141,160,120,17,32,118,134,128,9,162,108,141,160,120,17,32,118,134,175,91,3,112,41,255]},{"1182275":[208,11,162,116,141,160,248,17,32,118,134,128,23,58,208,11,162,124,141,160,248,17,32,118,134,128,9,162,132,141,160,248,17,32,118,134,175,107,3,112,41,255]},{"1182318":[208,11,162,140,141,160,120,18,32,118,134,128,37,58,208,11,162,148,141,160,120,18,32,118,134,128,23,58,208,11,162,156,141,160,120,18,32,118,134,128,9,162,164,141,160,120,18,32,118,134,175,72,4,112,41,255]},{"1182375":[34,249,151,160,175,6,80,127,41,255]},{"1182386":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1182400":[24,105,16,30,141,250,18,162,236,140,160,252,16,175,85,3,112,32,192,134,175,84,3,112,41,255]},{"1182427":[208,11,162,28,141,160,124,17,32,143,134,128,23,58,208,11,162,28,141,160,124,17,32,118,134,128,9,162,36,141,160,124,17,32,118,134,162,228,140,160,252,17,175,86,3,112,32,192,134,162,244,140,160,124,18,175,87,3,112,32,192,134,175,116,3,112,41,4]},{"1182496":[240,11,162,4,141,160,28,19,32,118,134,128,9,162,252,140,160,28,19,32,118,134,175,116,3,112,41,2]},{"1182525":[240,11,162,12,141,160,32,19,32,118,134,128,9,162,252,140,160,32,19,32,118,134,175,116,3,112,41,1]},{"1182554":[240,11,162,20,141,160,36,19,32,118,134,128,9,162,252,140,160,36,19,32,118,134,175,122,3,112,41,2]},{"1182583":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1182607":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1182631":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1182655":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1182679":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1182703":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1182727":[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]},{"1182773":[10,186,10,185,6]},{"1182779":[10]},{"1182781":[10,20,10,19,6]},{"1182787":[10,5,14,6,14]},{"1182793":[30,22,14,5,6,6,6]},{"1182801":[30,22,6,182,14,182,6,182,142,182,134]},{"1182813":[6,21,6,48,6]},{"1182819":[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,249,151,160,175,4,80,127,41,255]},{"1183229":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183243":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1183257":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1183271":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1183295":[34,249,151,160,175,6,80,127,41,255]},{"1183306":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1183320":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1183334":[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]},{"1183365":[34,249,151,160,175,6,80,127,41,255]},{"1183376":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1183390":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1183407":[4,169,136,1,157]},{"1183413":[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]},{"1183516":[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]},{"1183568":[141,2,20,165,16,41,255]},{"1183576":[201,1]},{"1183579":[208,107,175,135,128,48,41,255]},{"1183588":[201,2]},{"1183591":[208,95,8,226,48,218,90,34,77,178,164,122,250,40,41,255]},{"1183608":[208,78,169,110,29,141,142,19,24,105,16]},{"1183620":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1183633":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1183646":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1183659":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1183672":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1183685":[141,216,19,226,32,107,34,171,142,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]},{"1183801":[189,4,16,9]},{"1183806":[32,157,4,16,202,202,208,243,162,60]},{"1183817":[189,68,16,9]},{"1183822":[32,157,68,16,202,202,208,243,162,60]},{"1183833":[189,132,16,9]},{"1183838":[32,157,132,16,202,202,208,243,162,60]},{"1183849":[189,196,16,9]},{"1183854":[32,157,196,16,202,202,208,243,162,60]},{"1183865":[189,4,17,9]},{"1183870":[32,157,4,17,202,202,208,243,162,60]},{"1183881":[189,68,17,9]},{"1183886":[32,157,68,17,202,202,208,243,162,60]},{"1183897":[189,132,17,9]},{"1183902":[32,157,132,17,202,202,208,243,162,60]},{"1183913":[189,196,17,9]},{"1183918":[32,157,196,17,202,202,208,243,162,60]},{"1183929":[189,4,18,9]},{"1183934":[32,157,4,18,202,202,208,243,162,60]},{"1183945":[189,68,18,9]},{"1183950":[32,157,68,18,202,202,208,243,162,60]},{"1183961":[189,132,18,9]},{"1183966":[32,157,132,18,202,202,208,243,162,60]},{"1183977":[189,196,18,9]},{"1183982":[32,157,196,18,202,202,208,243,162,60]},{"1183993":[189,4,19,9]},{"1183998":[32,157,4,19,202,202,208,243,162,60]},{"1184009":[189,68,19,9]},{"1184014":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184027":[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]},{"1184062":[67,169,24,141,1,67,169]},{"1184070":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184085":[141,2,67,169,208,141,3,67,173]},{"1184095":[33,72,169,128,141]},{"1184101":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184118":[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]},{"1184146":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,175,145,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184183":[128,51,159]},{"1184187":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184208":[28,141,206,16,24,105,16]},{"1184216":[141,14,17,175,219,3,112,9]},{"1184225":[28,141,208,16,24,105,16]},{"1184233":[141,16,17,175,221,3,112,9]},{"1184242":[28,141,210,16,24,105,16]},{"1184250":[141,18,17,175,223,3,112,9]},{"1184259":[28,141,212,16,24,105,16]},{"1184267":[141,20,17,175,108,3,112,41,255]},{"1184277":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1184291":[153]},{"1184294":[200,200,202,208,8,72,152,24,105,44]},{"1184305":[168,104,198,2,208,236,32,57,135,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1184329":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1184351":[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]},{"1184390":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,77,178,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]},{"1184445":[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]},{"1184483":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1184497":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,22,147,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1184530":[141,18,11,107,110]},{"1184536":[111]},{"1184538":[112]},{"1184540":[113]},{"1184542":[115]},{"1184544":[116]},{"1184546":[117]},{"1184548":[118]},{"1184550":[120]},{"1184552":[121]},{"1184554":[122]},{"1184556":[123]},{"1184558":[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]},{"1184586":[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]},{"1184622":[143]},{"1184624":[81,127,200,200,183]},{"1184630":[143,2,81,127,200,200,183]},{"1184638":[143,4,81,127,200,200,183]},{"1184646":[143,6,81,127,169,2]},{"1184653":[133,4,34,47,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1184681":[170,191]},{"1184684":[81,127,72,169]},{"1184690":[143]},{"1184692":[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]},{"1184754":[72,165,2,72,169,188,234,133]},{"1184763":[169,1]},{"1184766":[133,2,138,74,34,83,147,164,133,12,104,133,2,104,133]},{"1184782":[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]},{"1184814":[189,6,150,159]},{"1184819":[201,126,232,232,224,128,144,243,160]},{"1184829":[162]},{"1184831":[218,187,191,21,130,48,250,41,31]},{"1184841":[10,10,10,90,168,185,6,149,159,24,201,126,185,8,149,159,26,201,126,185,10,149,159,88,201,126,185,12,149,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,129,148,40,122,250,104,171,107,72,218,173]},{"1184901":[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]},{"1184931":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1184952":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1184975":[33,72,169,128,141]},{"1184981":[33,169,1,141,11,66,104,141]},{"1184990":[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]},{"1185018":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185043":[30,22,14]},{"1185047":[6,21,6,48,6]},{"1185053":[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]},{"1185423":[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]},{"1185499":[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]},{"1185596":[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]},{"1185653":[39,1,1,1,1,1,2,2,39,39,39]},{"1185669":[39,1,1,1,32,1,2,2,39,39,39]},{"1185685":[39,1,1,1,1,32,2,2,2,2,2]},{"1185701":[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]},{"1185745":[44]},{"1185747":[78,79,1,1,1,1,1,1,2,1,2]},{"1185759":[46]},{"1185763":[2,34,1,1,2]},{"1185771":[24,18,2,2]},{"1185776":[72]},{"1185781":[1,1,2]},{"1185785":[1,1,16,26,2]},{"1185792":[72]},{"1185797":[16,16,2]},{"1185801":[1,1,1,1]},{"1185807":[72]},{"1185810":[9]},{"1185813":[2,2,2]},{"1185817":[1,1,43]},{"1185822":[9]},{"1185829":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185845":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185861":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1185877":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1185893":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1185909":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1185926":[2,2,2]},{"1185931":[2,2,2,2]},{"1185942":[2,2,2,2,41,2,2,2,2]},{"1185957":[1,1,1,1,1,1,1,1,1,1,1]},{"1185971":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1185987":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186005":[1,1,67,1,1,1,1,1,2,2,2]},{"1186021":[80,2,84,81,87,87,86,86,39,39,39]},{"1186033":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186049":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186065":[72,2,2]},{"1186069":[39,2,82,83,9,1,26,16,85,85]},{"1186081":[72,2,2]},{"1186085":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186107":[9,9,9,9,9,72,9,41]},{"1186116":[75,2,2,2]},{"1186121":[8,2,2]},{"1186128":[1]},{"1186131":[32]},{"1186133":[2,2,2,2,2,2,2]},{"1186142":[1,1,1,2]},{"1186147":[8]},{"1186149":[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]},{"1186249":[240,2,128,23,169,15,2,166,138,224,51]},{"1186261":[208,4,143,168,34,126,224,47]},{"1186270":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1186284":[208,5,175,135,242,126,107,169,32]},{"1186294":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1186317":[191,78,154,164,197,34,176,29,191,80,154,164,197,34,144,21,191,82,154,164,197,32,176,13,191,84,154,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1186359":[201,184]},{"1186362":[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]},{"1186393":[10]},{"1186395":[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]},{"1186425":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1186448":[143]},{"1186450":[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]},{"1186481":[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]},{"1186524":[112]},{"1186526":[240,14,48,15,32,1,96,1,208,10]},{"1186537":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1186556":[64]},{"1186558":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1186572":[201,5]},{"1186575":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1186591":[208,18,173,10,4,41,255]},{"1186599":[201,67]},{"1186602":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1186618":[208,25,173,10,4,41,255]},{"1186626":[201,91]},{"1186629":[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]},{"1186665":[176,5,10,170,252,122,155,171,194,48,162,30]},{"1186678":[169,190,13,107,122,156,122,156,122,156,123,156,122,156,166,156,122,156,160,157,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,239,157,122,156,122,156,122,156,246,157,122,156,122,156,122,156,122,156,122,156,122,156,21,158,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,175,160,122,156,122,156,122,156,122,156,122,156,122,156,203,160,122,156,141,164,16,167,122,156,23,167,122,156,122,156,122,156,122,156,78,167,122,156,35,164,122,156,122,156,122,156,122,156,122,156,122,156,196,167,122,156,59,168,122,156,25,168,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,66,168,122,156,122,156,122,156,73,168,122,156,122,156,122,156,122,156,122,156,122,156,101,168,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,55,170,69,170,122,156,122,156,62,170,122,156,76,170,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,122,156,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1186954":[141,186,41,169,4,1,141,188,41,169,198]},{"1186966":[141,52,42,141,56,42,141,58,42,169,52]},{"1186978":[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]},{"1187081":[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]},{"1187228":[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]},{"1187307":[141,38,40,96,169,52]},{"1187314":[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]},{"1187427":[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]},{"1187463":[141,40,44,141,174,47,169,52]},{"1187472":[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]},{"1187511":[141,54,44,141,168,47,169,174]},{"1187520":[141,172,44,169,175]},{"1187526":[141,174,44,169,126]},{"1187532":[141,176,44,169,127]},{"1187538":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1187556":[141,44,45,169,20]},{"1187562":[141,46,45,169,21]},{"1187568":[141,48,45,169,168]},{"1187574":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1187592":[141,172,45,169,28]},{"1187598":[141,174,45,169,29]},{"1187604":[141,176,45,169,118]},{"1187610":[141,178,45,169,241]},{"1187616":[141,44,46,169,78]},{"1187622":[141,46,46,169,79]},{"1187628":[141,48,46,169,217]},{"1187634":[141,50,46,169,154]},{"1187640":[141,172,46,169,155]},{"1187646":[141,174,46,169,156]},{"1187652":[141,176,46,169,149]},{"1187658":[141,178,46,169,52]},{"1187664":[141,40,48,141,44,48,169,53]},{"1187673":[141,42,48,141,50,48,169,218]},{"1187682":[141,46,48,169,226]},{"1187688":[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]},{"1187769":[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]},{"1187853":[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]},{"1187910":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1187926":[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]},{"1188018":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188039":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188055":[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]},{"1188097":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188118":[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]},{"1188184":[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]},{"1188214":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188232":[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]},{"1188259":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1188280":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1188298":[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]},{"1188367":[141,226,34,169,2,3,141,228,34,169,204]},{"1188379":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1188403":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1188424":[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]},{"1188466":[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]},{"1188499":[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]},{"1188594":[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]},{"1188727":[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]},{"1188820":[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]},{"1188895":[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]},{"1189029":[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]},{"1189074":[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]},{"1189392":[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]},{"1189437":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1189455":[141,134,41,169,229]},{"1189461":[141,136,41,169]},{"1189466":[1,141,162,41,169,113]},{"1189473":[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]},{"1189518":[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]},{"1189554":[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]},{"1189581":[141,26,44,169,206]},{"1189587":[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]},{"1189651":[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]},{"1189706":[141,86,47,96,169,116,7,141]},{"1189715":[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]},{"1189757":[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]},{"1189973":[141,162,36,141,164,36,169,227]},{"1189982":[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]},{"1190109":[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]},{"1190139":[141,30,50,169,218]},{"1190145":[141,32,50,141,154,50,169,225]},{"1190154":[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]},{"1190199":[141,26,50,169,242]},{"1190205":[141,184,59,169,8,1,141,56,60,169,52]},{"1190217":[141,190,59,175,197,243,126,41,255]},{"1190227":[201,3]},{"1190230":[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]},{"1190373":[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,155,173,194,32,166,6,138,9]},{"1190604":[36,143,90,199,126,166,7,138,9]},{"1190614":[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,57,173,166,4,138,9]},{"1190647":[36,143,80,199,126,166,5,138,9]},{"1190657":[36,143,82,199,126,166,6,138,9]},{"1190667":[36,143,84,199,126,166,7,138,9]},{"1190677":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,155,173,194,32,166,6,138,9]},{"1190710":[36,143,96,199,126,166,7,138,9]},{"1190720":[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]},{"1190752":[175,24,244,126,32,116,173,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1190774":[36,143,44,199,126,166,6,138,9]},{"1190784":[36,143,46,199,126,166,7,138,9]},{"1190794":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,116,173,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1190830":[36,143,52,199,126,166,6,138,9]},{"1190840":[36,143,54,199,126,166,7,138,9]},{"1190850":[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]},{"1190883":[240,4,34,181,173,164,226,32,175,111,243,126,201,255,240,34,32,155,173,194,32,166,6,138,224,144,208,3,169,127]},{"1190914":[9]},{"1190916":[36,143,100,199,126,166,7,138,9]},{"1190926":[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]},{"1190957":[24,105,7]},{"1190961":[41,248,255,170,175,202,80,127,41,255]},{"1190972":[208,3,130,215]},{"1190977":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1190990":[165,26,41,12]},{"1190995":[74,74,240,58,201,1]},{"1191002":[240,98,201,2]},{"1191007":[208,3,130,180]},{"1191012":[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]},{"1191245":[144,6,200,233,100]},{"1191251":[128,245,132,5,160,144,201,10]},{"1191260":[144,6,200,233,10]},{"1191266":[128,245,132,6,160,144,201,1]},{"1191275":[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]},{"1191365":[240,11,175,100,243,126,63,246,173,164,208,1,107,124,18,174,32,155,173,194,32,166,6,138,9]},{"1191391":[36,143,148,199,126,166,7,138,9]},{"1191401":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1191415":[128]},{"1191417":[64]},{"1191419":[32]},{"1191421":[16]},{"1191423":[8]},{"1191425":[4]},{"1191427":[2]},{"1191429":[1,128]},{"1191432":[64]},{"1191434":[32]},{"1191436":[16]},{"1191438":[8]},{"1191440":[4]},{"1191442":[46,174,46,174,73,174,98,174,126,174,151,174,176,174,201,174,226,174,253,174,24,175,51,175,76,175,103,175,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,213,173,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,213,173,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,213,173,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,213,173,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,213,173,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,213,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,213,173,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,213,173,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,213,173,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,213,173,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,213,173,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,213,173,169,146,36,143,154,199,126,169,151,36,143,156,199,126,226,32,175,54,244,126,74,74,74,76,213,173,107,159]},{"1191812":[4,112,159]},{"1191816":[5,112,159]},{"1191820":[6,112,159]},{"1191824":[7,112,159]},{"1191828":[8,112,159]},{"1191832":[9,112,159]},{"1191836":[10,112,159]},{"1191840":[11,112,159]},{"1191844":[12,112,159]},{"1191848":[13,112,159]},{"1191852":[14,112,159]},{"1191856":[15,112,107,159]},{"1191861":[244,126,159]},{"1191865":[101,127,159]},{"1191869":[102,127,159]},{"1191873":[103,127,159]},{"1191877":[104,127,159]},{"1191881":[105,127,159]},{"1191885":[106,127,159]},{"1191889":[107,127,159]},{"1191893":[108,127,159]},{"1191897":[109,127,159]},{"1191901":[110,127,159]},{"1191905":[111,127,107,72,226,48,173]},{"1191913":[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]},{"1191941":[141]},{"1191943":[67,169,128,141,1,67,169]},{"1191951":[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]},{"1191979":[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]},{"1192019":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192034":[72,171,173]},{"1192038":[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]},{"1192068":[67,141,1,67,169]},{"1192074":[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]},{"1192102":[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]},{"1192142":[67,194,48,171,104,162]},{"1192150":[138,107,165,17,34,156,135]},{"1192158":[237,176,164,5,177,164,36,177,164,37,178,164,59,178,164,169,128,141,16,7,34,61,137]},{"1192182":[34,51,131]},{"1192186":[34,175,145,164,169,7,133,20,230,17,107,32,68,179,100,200,100,201,34,77,178,164,208,11,162,15,169]},{"1192214":[159]},{"1192216":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,180,179,165,246,41,16,240,3,32]},{"1192242":[181,165,246,41,32,240,3,32,13,181,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,1,178,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,13,181,128,52,201,242,208,5,32]},{"1192383":[181,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1192407":[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,178,180,32,103,180,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,77,178,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]},{"1192531":[16,112,208,3,130,161]},{"1192538":[202,16,244,194,32,162,14,169]},{"1192548":[159,208,80,127,202,202,16,248,32]},{"1192558":[179,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]},{"1192589":[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]},{"1192618":[133,4,34,47,178,160,226,32,175]},{"1192628":[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]},{"1192703":[107,169]},{"1192707":[133]},{"1192709":[133,2,169,11]},{"1192714":[133,4,166]},{"1192718":[191]},{"1192720":[16,112,58,41,31]},{"1192726":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1192751":[16,6,24,105,8]},{"1192757":[230,2,133,4,165]},{"1192763":[26,133]},{"1192766":[201,16]},{"1192769":[144,201,96,173]},{"1192774":[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]},{"1192802":[141]},{"1192804":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,220,141,2,67,169,182,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]},{"1192882":[67,96,194,32,165,200,41,255]},{"1192891":[10,170,191,255,179,164,24,105,132,96,235,143,2,17]},{"1192906":[165,201,41,255]},{"1192911":[10,170,191,31,180,164,24,105,163,97,235,143,18,17]},{"1192926":[235,24,105,32]},{"1192931":[235,143,30,17]},{"1192936":[235,24,105,3]},{"1192941":[235,143,38,17]},{"1192946":[235,24,105,61]},{"1192951":[235,143,46,17]},{"1192956":[226,32,96,64]},{"1192961":[67]},{"1192963":[70]},{"1192965":[73]},{"1192967":[76]},{"1192969":[79]},{"1192971":[82]},{"1192973":[85]},{"1192975":[160]},{"1192977":[163]},{"1192979":[166]},{"1192981":[169]},{"1192983":[172]},{"1192985":[175]},{"1192987":[178]},{"1192989":[181]},{"1192991":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193011":[66]},{"1193013":[69]},{"1193015":[72]},{"1193017":[75]},{"1193019":[78]},{"1193021":[81]},{"1193023":[84]},{"1193025":[87]},{"1193027":[159]},{"1193029":[162]},{"1193031":[165]},{"1193033":[168]},{"1193035":[171]},{"1193037":[174]},{"1193039":[177]},{"1193041":[180]},{"1193043":[183]},{"1193045":[255]},{"1193047":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193070":[10,170,191,255,179,164,24,105,132,96,235,143,10,17]},{"1193085":[165,201,41,255]},{"1193090":[10,170,191,31,180,164,24,105,163,97,235,143,58,17]},{"1193105":[235,24,105,32]},{"1193110":[235,143,70,17]},{"1193115":[235,24,105,3]},{"1193120":[235,143,78,17]},{"1193125":[235,24,105,61]},{"1193130":[235,143,86,17]},{"1193135":[226,32,96,194,48,162,15]},{"1193143":[191]},{"1193145":[16,112,41,255]},{"1193150":[155,10,10,10,133]},{"1193156":[152,10,10,10,10,133,3,166]},{"1193165":[191,254,148,164,166,3,157,6,16,166]},{"1193176":[191]},{"1193178":[149,164,166,3,157,8,16,166]},{"1193187":[191,2,149,164,166,3,157,14,16,166]},{"1193198":[191,4,149,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]},{"1193245":[51,1,10,2,10]},{"1193251":[2,5,14,6,14]},{"1193257":[2]},{"1193259":[6,21,6]},{"1193263":[2,12,14,13,14]},{"1193269":[2,98,6,99,6]},{"1193275":[2,10,2,11,2]},{"1193281":[2,32,14,33,14]},{"1193287":[2,133,26,134,26]},{"1193293":[2,171,30,171,30,97,195]},{"1193301":[51,17,10,18,10]},{"1193307":[2]},{"1193309":[30,22,14]},{"1193313":[2,48,6]},{"1193317":[30]},{"1193319":[2,28,14,28,78]},{"1193325":[2,114,6,115,6]},{"1193331":[2,26,2,27,2]},{"1193337":[2,48,14,49,14]},{"1193343":[2,149,26,150,26]},{"1193349":[2,171,30,171,30,98,3]},{"1193357":[51,7,10,23,202]},{"1193363":[2,8,10,24,202]},{"1193369":[2,9,10,25,202]},{"1193375":[2,44,6,44,70]},{"1193381":[2,34,2,35,2]},{"1193387":[2,36,2,37,2]},{"1193393":[2,38,14,39,14]},{"1193399":[2,40,10,41,10]},{"1193405":[2,138,29]},{"1193409":[2,98,35]},{"1193413":[51,23,10,7,202]},{"1193419":[2,24,10,8,202]},{"1193425":[2,25,10,9,202]},{"1193431":[2,60,6,61,6]},{"1193437":[2,50,2,51,2]},{"1193443":[2,52,2,53,2]},{"1193449":[2,54,14,55,14]},{"1193455":[2,56,10,57,10]},{"1193461":[2,154,29]},{"1193465":[2,98,99]},{"1193469":[51,42,26,43,26]},{"1193475":[2,64,30,65,30]},{"1193481":[2,66,26,66,90]},{"1193487":[2,29,6,30,6]},{"1193493":[2,72,6,73,6]},{"1193499":[2,74,14,75,14]},{"1193505":[2,76,22,77,22]},{"1193511":[2,78,2,79,2]},{"1193517":[2]},{"1193519":[2,139,29,98,131]},{"1193525":[51,58,26,59,26]},{"1193531":[2,80,30,81,30]},{"1193537":[2,82,26,83,26]},{"1193543":[2,45,6,46,6]},{"1193549":[2,88,6,89,6]},{"1193555":[2,90,14,91,14]},{"1193561":[2,92,22,93,22]},{"1193567":[2,94,2,95,2]},{"1193573":[2]},{"1193575":[2,155,29,98,195]},{"1193581":[51,14,14,15,14]},{"1193587":[2,100,6,101,6]},{"1193593":[2,109,10,110,10]},{"1193599":[2,111,26,111,90]},{"1193605":[2,129,6,129,70]},{"1193611":[2,130,10,131,10]},{"1193617":[2,132,6,132,70]},{"1193623":[2,47,74,47,10]},{"1193629":[2,103,94,103,30,98,227]},{"1193637":[51,31,78,31,14]},{"1193643":[2,116,6,117,6]},{"1193649":[2,125,10,126,10]},{"1193655":[2,127,26,127,90]},{"1193661":[2,145,6,145,70]},{"1193667":[2,146,10,147,10]},{"1193673":[2,148,6,148,70]},{"1193679":[2,62,10,63,10]},{"1193685":[2,103,222,103,158,255,255,96,132]},{"1193695":[3,134,29,134,29,96,164]},{"1193703":[3,150,29,150,29,96,135]},{"1193711":[3,134,29,134,29,96,167]},{"1193719":[3,150,29,150,29,96,138]},{"1193727":[3,134,29,134,29,96,170]},{"1193735":[3,150,29,150,29,96,141]},{"1193743":[3,134,29,134,29,96,173]},{"1193751":[3,150,29,150,29,96,144]},{"1193759":[3,134,29,134,29,96,176]},{"1193767":[3,150,29,150,29,96,147]},{"1193775":[3,134,29,134,29,96,179]},{"1193783":[3,150,29,150,29,96,150]},{"1193791":[3,134,29,134,29,96,182]},{"1193799":[3,150,29,150,29,96,153]},{"1193807":[3,134,29,134,29,96,185]},{"1193815":[3,150,29,150,29,96,228]},{"1193823":[3,134,29,134,29,97,4]},{"1193831":[3,150,29,150,29,96,231]},{"1193839":[3,134,29,134,29,97,7]},{"1193847":[3,150,29,150,29,96,234]},{"1193855":[3,134,29,134,29,97,10]},{"1193863":[3,150,29,150,29,96,237]},{"1193871":[3,134,29,134,29,97,13]},{"1193879":[3,150,29,150,29,96,240]},{"1193887":[3,134,29,134,29,97,16]},{"1193895":[3,150,29,150,29,96,243]},{"1193903":[3,134,29,134,29,97,19]},{"1193911":[3,150,29,150,29,96,246]},{"1193919":[3,134,29,134,29,97,22]},{"1193927":[3,150,29,150,29,96,249]},{"1193935":[3,134,29,134,29,97,25]},{"1193943":[3,150,29,150,29,96,196]},{"1193951":[3]},{"1193953":[2]},{"1193955":[2,96,196]},{"1193959":[3,103,222,103,158,97,130]},{"1193967":[7]},{"1193969":[2]},{"1193971":[2]},{"1193973":[2]},{"1193975":[2,97,162,128,3]},{"1193981":[2]},{"1193983":[2,97,165,128,3]},{"1193989":[2]},{"1193991":[2,97,226]},{"1193995":[7]},{"1193997":[2]},{"1193999":[2]},{"1194001":[2]},{"1194003":[2,97,130]},{"1194007":[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]},{"1194035":[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]},{"1194074":[240,11,169,133,157,210,12,169,4,157,80,14,107,169,128,157,210,12,169,1,157,80,14,107,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1194130":[83,127,201,3,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,197,185,164,226,48,169]},{"1194168":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1194226":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1194284":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,80,185,34,231,244,30,32,144,185,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,112,133,8,169,185,105]},{"1194341":[133,9,34,117,223,5,34,92,220,6,96]},{"1194354":[247,255,198]},{"1194359":[2]},{"1194364":[200]},{"1194367":[2]},{"1194370":[248,255,198]},{"1194375":[2]},{"1194380":[202,64]},{"1194383":[2,175,103,129,48,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,235,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1194441":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1194467":[98,41,110,41,107,41,105,41,127]},{"1194477":[111,41,97,41,106,41,112,41,127]},{"1194487":[112,41,107,41,127]},{"1194493":[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]},{"1194540":[33,218,162,128,142]},{"1194546":[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]},{"1194574":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1194591":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1194682":[208,33,8,194,48,162]},{"1194690":[224,64]},{"1194693":[176,11,169,127]},{"1194698":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1194721":[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]},{"1194768":[240,7,224,2,240,3,130,137]},{"1194777":[130,132]},{"1194780":[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]},{"1194926":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1194943":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1194959":[224,28]},{"1194962":[176,12,191,209,185,164,159,88,192,126,232,232,128,239,160,28]},{"1194979":[175,211,244,126,41,255]},{"1194986":[58,201,64]},{"1194990":[176,63,10,10,10,10,10,170,192,60]},{"1195001":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195024":[176,11,169,127]},{"1195029":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,174,184,160,122,218,90,8,194,48,162]},{"1195185":[224,16]},{"1195188":[176,12,191,237,185,164,159,88,192,126,232,232,128,239,160,16]},{"1195205":[175,152,192,126,41,255]},{"1195212":[58,201,64]},{"1195216":[176,63,10,10,10,10,10,170,192,48]},{"1195227":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1195250":[176,11,169,127]},{"1195255":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[192]},{"127":[179]},{"155":[164]},{"204":[92,66,128,161]},{"215":[92,168,221,160,234]},{"827":[128,1]},{"980":[92,162,133,164]},{"2027":[128,50]},{"2379":[34,214,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,68,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[2]},{"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,176,199,160]},{"21847":[34,136,200,160,234]},{"21854":[34,98,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,52,247]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,199,246,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[149,163,160]},{"30994":[23,164,160]},{"31001":[149,163,160]},{"31011":[23,164,160]},{"31046":[4,188,164]},{"31102":[34,225,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[235,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,77,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,136,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,174,150,164,234]},{"60423":[34,33,194,164]},{"60790":[7,189,164]},{"61077":[82,181,160]},{"61133":[34,162,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,19,235,160]},{"65607":[31,234,160]},{"65778":[34,40,143,160,234,234]},{"65879":[34,141,194,160,234]},{"65894":[34,187,194,160]},{"66284":[34,222,194,160]},{"66292":[92,71,242,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,21,237,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,152,189,164,234,234]},{"67934":[212,242,160]},{"68495":[34,29,155,160,208,6,234]},{"68584":[216,242,160]},{"69776":[34,29,155,160,208,4,234]},{"70410":[216,242,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,64,242,160,234]},{"72216":[189,187,164]},{"72241":[34,187,194,160]},{"72246":[252,153,160]},{"73041":[34,248,154,160]},{"73263":[22,234,160]},{"73340":[34,241,128,160,234]},{"73937":[34,203,194,160]},{"74833":[34,213,130,164]},{"76423":[34,24,235,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]},{"78172":[34,51,189,164,34,225,153,160,234,234]},{"79603":[34,241,187,164]},{"79767":[34,167,189,164]},{"82676":[216,242,160]},{"87892":[34,29,242,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,82,236,160]},{"90651":[34,118,233,160,234,234]},{"93230":[34,238,157,164,234,234]},{"93325":[34,170,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,238,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,205,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[107,194,164]},{"166331":[34,248,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[149,181,160]},{"173058":[149,181,160]},{"173307":[149,181,160]},{"173320":[149,181,160]},{"183384":[34,202,242,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,248,154,160]},{"187902":[34,15,155,160]},{"188153":[0]},{"188234":[160,233,160]},{"188261":[34,143,130,164,96]},{"188337":[34,230,151,160]},{"188959":[34,161,232,160,128,13]},{"189655":[34,66,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[50,194,164]},{"191439":[34,95,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,115,197,160,234,234]},{"192037":[34,15,155,160]},{"192083":[34,113,143,160,234,234]},{"192095":[34,135,195,160,234]},{"192121":[223,195,160]},{"192140":[34,80,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,109,133,160]},{"192350":[197,133,160]},{"192378":[13,133,160]},{"192463":[198,132,160]},{"192506":[34]},{"192508":[133,160,234,234,234,234,234,234]},{"192561":[216,132,160]},{"192650":[34,126,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,99,143,160]},{"192893":[34,15,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,248,154,160]},{"193025":[13,144,160]},{"193033":[34,248,154,160]},{"193140":[34,60,179,160]},{"193157":[34,53,179,160]},{"193440":[34,38,220,160]},{"193472":[54,232,160]},{"193546":[34,38,220,160]},{"193578":[254,231,160]},{"193854":[34,122,143,160]},{"193859":[32]},{"193888":[7,195,160]},{"194141":[34,247,195,160,234,234,234,234,234]},{"194177":[34,93,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,161,232,160]},{"195327":[34,33,143,160,240,2,96,234]},{"195539":[34,93,199,160]},{"195589":[135,176,160]},{"195710":[34,157,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[89,176,160]},{"195909":[99,176,160]},{"196477":[34,15,155,160]},{"196497":[34,248,154,160]},{"197750":[222,192,160]},{"198721":[34,8,219,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,38,187,164]},{"198942":[34,77,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,70,143,160]},{"199659":[34,47,166,160,96,234]},{"199950":[34,106,143,160]},{"199964":[26,176,160]},{"199993":[34,109,176,160]},{"200070":[34,56,143,160]},{"200470":[34,49,143,160]},{"200845":[34,63,143,160,201]},{"200851":[240]},{"200853":[34,63,143,160]},{"200858":[8]},{"200893":[34,70,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,227,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[79,143,160]},{"208994":[34,70,143,160,234,234]},{"209010":[139]},{"209098":[242,143,160]},{"209199":[41,247]},{"210057":[92,90,220,160,234,234,234,234]},{"210164":[149,143,160]},{"211413":[215,143,160]},{"212333":[69,194,164]},{"212610":[88,194,164]},{"213139":[27,191,164]},{"213169":[151,133,160]},{"214205":[34,222,180,160]},{"214972":[112,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,84,188,164]},{"217579":[34,128,193,160]},{"224597":[34,38,219,160]},{"224693":[34,58,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,72,220,160,234]},{"226304":[34,123,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,246,234,160]},{"229634":[34,117,192,164]},{"230816":[90,179,160]},{"230955":[90,179,160]},{"233256":[39,153,160]},{"233266":[34,165,128,160]},{"233297":[34,255,234,160,234]},{"233987":[90,187,164]},{"234731":[34,183,187,164]},{"234747":[34,10,235,160]},{"235953":[34,39,133,160,144,3]},{"236024":[254,204,160]},{"236047":[96,193,160]},{"236578":[34,83,134,164]},{"237653":[34,108,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,0,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[47,198,160]},{"238498":[34,184,196,160,128,3]},{"238562":[34,251,198,160,240,4,234]},{"238751":[34,188,220,160]},{"238964":[34,188,220,160]},{"239190":[34,188,220,160]},{"239964":[77,189,164]},{"240044":[92,223,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,156,219,160]},{"241165":[34,156,219,160]},{"241175":[34,235,128,164]},{"241294":[34,156,219,160]},{"241304":[34,235,128,164]},{"241814":[34,156,219,160,24,125,139,176]},{"241869":[155,232,160]},{"241877":[34,156,219,160,24,125,139,176]},{"242942":[34,15,233,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,204,188,164,234]},{"243067":[234,234,34,235,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,186,219,160,234]},{"250478":[34,240,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,29,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,20,238,160,234]},{"273608":[34,218,182,160,76,230,172]},{"275716":[34,190,182,160,234]},{"276202":[34,251,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,163,222,160,234]},{"279601":[34,156,128,160,234]},{"279644":[241,133,160,92,89,235,160,234,234]},{"279880":[92,10,195,164]},{"280037":[34,47,231,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[155,232,160]},{"280106":[92,232,222,160,234]},{"280265":[222,210,160]},{"280287":[222,209,160]},{"280314":[222,210,160]},{"280335":[34,250,179,160]},{"282028":[34,98,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,122,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,156,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,255,200,160,234]},{"296453":[92,126,194,164,234]},{"296466":[222,211]},{"296471":[223,211]},{"296480":[222,213]},{"296488":[222,211]},{"296493":[223,211]},{"296502":[222,213,34,0,128,160]},{"296583":[34,248,154,160]},{"296619":[222,214]},{"296810":[238,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[14,207]},{"297052":[254,207]},{"297087":[34,73,133,160,234,176]},{"297144":[222,209]},{"297200":[14,207]},{"297225":[254,207]},{"297263":[223,215]},{"297292":[34,74,195,160]},{"297309":[230,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,28,195,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]},{"324619":[34,17,153,160]},{"324675":[34,182,188,164]},{"324780":[8,8,16]},{"324896":[34,103,233,160,34,158,188,164,234,234,234,234,234,234]},{"324996":[34,203,194,160]},{"325098":[169,2,0,234]},{"325131":[34,151,233,160]},{"325203":[34,155,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":[47,235,160]},{"342245":[34,59,132,160,34,31,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]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,15,155,160]},{"344119":[34,15,155,160]},{"344185":[34,15,155,160]},{"344248":[34,15,155,160]},{"344312":[34,15,155,160]},{"344375":[34,15,155,160]},{"344441":[34,15,155,160]},{"344499":[34,15,155,160]},{"344565":[34,15,155,160]},{"344623":[34,15,155,160]},{"344689":[34,15,155,160]},{"344747":[34,15,155,160]},{"344813":[34,15,155,160]},{"344871":[34,15,155,160]},{"344937":[34,15,155,160]},{"345406":[34,45,154,160]},{"345531":[34,64,154,160,96]},{"345560":[34,64,154,160,96]},{"393133":[235,187,164]},{"410347":[34,155,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[236,234,160]},{"412876":[92,105,178,164]},{"413015":[107]},{"413094":[126,148,164]},{"413109":[34,67,233,160]},{"413141":[34,142,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,35,149,164,234,234,234,234]},{"413264":[34,74,149,164,234,234,234,234,234,234]},{"413297":[92,113,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,204,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,142,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,106,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,251,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,106,178,164]},{"415678":[34,163,149,164]},{"416378":[22,150,164]},{"416491":[34,237,149,164,234]},{"416529":[34,200,149,164]},{"416588":[234,234,234,234]},{"416912":[34,228,149,164]},{"416937":[34,214,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]},{"422780":[72,238,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,15,155,160]},{"449502":[34,110,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,109,238,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,139,238,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,88,238,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,62,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,145,155,160]},{"450360":[34,22,183,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,130,184,160,234]},{"450492":[34,113,155,160,234,234,234]},{"450861":[34,152,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,240,132,164]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,4,156,160,234]},{"452559":[34,242,155,160,234]},{"452581":[34,22,156,160,234]},{"452634":[96]},{"453064":[34,49,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,152,193,160,234,234,76,230,236]},{"453867":[34,40,156,160,234]},{"453892":[34,58,156,160]},{"454092":[34,163,155,160,234,234,234,234,234]},{"454233":[34,163,155,160,234,234,234,234,234]},{"454256":[34,0,195,160,234]},{"454282":[34,163,155,160,234,234,234,234,234]},{"454459":[34,163,155,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,243,131,160]},{"457344":[34,19,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,7,217,160]},{"457513":[34,45,217,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,94,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,87,233,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,45,223,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[39,231,160]},{"487403":[169,2,0,234]},{"487935":[34,85,223,160]},{"488156":[34,85,223,160]},{"488213":[34,85,223,160]},{"488242":[34,85,223,160]},{"488309":[34,85,223,160]},{"488340":[34,85,223,160]},{"488721":[34,85,223,160]},{"489560":[34,85,223,160]},{"490022":[34,85,223,160]},{"490060":[34,85,223,160]},{"490164":[34,85,223,160]},{"490184":[34,85,223,160]},{"490209":[34,85,223,160]},{"490257":[34,85,223,160]},{"490438":[34,101,223,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]},{"882113":[34,156,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,83,237,160]},{"900244":[34,167,235,160,208,39,234,234,234,234,234,234]},{"900357":[92,158,237,160,234]},{"900437":[92,56,236,160,234]},{"900447":[34,15,242,160,234,234,234]},{"900458":[34,241,187,164]},{"901799":[34,110,153,164,107,32,222,201,107]},{"903876":[34,224,237,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,141,231,160,96]},{"954852":[241,181,160]},{"955117":[108,231,160]},{"955529":[237,181,160]},{"962925":[202,181,160]},{"962951":[202,181,160]},{"963167":[202,181,160]},{"963214":[202,181,160]},{"965041":[202,181,160]},{"965069":[202,181,160]},{"965214":[202,181,160]},{"965298":[202,181,160]},{"965316":[202,181,160]},{"967797":[34,50,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,76,180,160]},{"972824":[153,181,160]},{"972834":[153,181,160]},{"972851":[153,181,160]},{"974665":[92,203,197,160,234]},{"974706":[8,198,160]},{"974722":[237,197,160]},{"975106":[34,129,143,160]},{"975132":[34,129,143,160]},{"975265":[34,220,197,160,234,234]},{"975332":[34,186,197,160,234,234]},{"975401":[255]},{"976357":[198,181,160]},{"976423":[198,181,160]},{"978658":[182,181,160]},{"979078":[34,58,220,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":[58,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,150,196,160]},{"983466":[182,181,160]},{"983651":[182,181,160]},{"988539":[194,181,160]},{"988657":[194,181,160]},{"988668":[194,181,160]},{"988874":[194,181,160]},{"988902":[194,181,160]},{"989142":[194,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[186,181,160]},{"999246":[190,181,160]},{"999265":[190,181,160]},{"999359":[190,181,160]},{"999574":[190,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,144,197,160]},{"1003229":[34,248,154,160]},{"1003277":[34,248,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[157,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[157,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,169,238,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,40,143,160,234,234]},{"1010175":[175,143,160]},{"1011427":[34,161,169,160,96,234]},{"1011808":[34,170,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,195,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,137,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,225,133,160,168,34,9,134,160,34,107,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]},{"1049778":[34,179,145,7,34,157,153,7,24,130,1]},{"1049790":[56,34,166,179,160,122,250,107,218,90,34,222,192,160,188,128,14,208,5,34,214,138,160,168,128,182,8,34,126,151,160,144,44,72,90,175]},{"1049827":[80,127,240,7,34,151,133,160,130,27]},{"1049838":[189,128,14,72,34,114,149,160,144,8,189,96,14,9,32,157,96,14,104,34,193,150,160,34,92,220,6,122,104,40,107,8,34,126,151,160,144,247,72,90,175]},{"1049880":[80,127,240,6,34,197,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,9,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,9,141,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049978":[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]},{"1050014":[169,1,143]},{"1050018":[80,127,165,93,201,20,240,25,169]},{"1050028":[143]},{"1050030":[80,127,34,107,141,160,143,153,192,126,34,225,133,160,157,128,14,34,85,150,160,104,107,72,169]},{"1050056":[143]},{"1050058":[80,127,34,107,141,160,143,153,192,126,34,214,138,160,157,128,14,34,85,150,160,104,107,165,27,240,7,34,38,134,160,130,4]},{"1050092":[34,195,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050117":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050134":[208,11,175,22,244,126,9,1]},{"1050143":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050158":[208,50,175,135,128,48,208,6,175]},{"1050168":[128,48,128,35,218,8,194,48,165]},{"1050178":[72,165,2,72,169]},{"1050184":[128,133]},{"1050187":[169,48]},{"1050190":[133,2,169]},{"1050195":[34,59,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050213":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050233":[72,165,2,72,169]},{"1050239":[128,133]},{"1050242":[169,48]},{"1050245":[133,2,169,1]},{"1050250":[34,59,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050268":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050288":[72,165,2,72,169]},{"1050294":[128,133]},{"1050297":[169,48]},{"1050300":[133,2,169,2]},{"1050305":[34,59,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050320":[201,27,1,208,108,165,34,235,41,1]},{"1050331":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050351":[72,165,2,72,169]},{"1050357":[128,133]},{"1050360":[169,48]},{"1050363":[133,2,169,3]},{"1050368":[34,59,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050383":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050401":[72,165,2,72,169]},{"1050407":[128,133]},{"1050410":[169,48]},{"1050413":[133,2,169,4]},{"1050418":[34,59,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050433":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050456":[72,165,2,72,169]},{"1050462":[128,133]},{"1050465":[169,48]},{"1050468":[133,2,169,5]},{"1050473":[34,59,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050488":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050511":[72,165,2,72,169]},{"1050517":[128,133]},{"1050520":[169,48]},{"1050523":[133,2,169,6]},{"1050528":[34,59,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050543":[201,135]},{"1050546":[208,7,175,98,129,48,130,3]},{"1050555":[169,23]},{"1050558":[41,255]},{"1050561":[40,107,8,194,32,165,138,201,3]},{"1050571":[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]},{"1050598":[72,165,2,72,169,64,129,133]},{"1050607":[169,48]},{"1050610":[133,2,169]},{"1050615":[34,59,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]},{"1050648":[72,165,2,72,169,16,128,133]},{"1050657":[169,48]},{"1050660":[133,2,169,6]},{"1050665":[34,59,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050683":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050703":[72,165,2,72,169,64,129,133]},{"1050712":[169,48]},{"1050715":[133,2,169,1]},{"1050720":[34,59,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050738":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050758":[72,165,2,72,169,64,129,133]},{"1050767":[169,48]},{"1050770":[133,2,169,2]},{"1050775":[34,59,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050793":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050813":[72,165,2,72,169,64,129,133]},{"1050822":[169,48]},{"1050825":[133,2,169,10]},{"1050830":[34,59,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050848":[208,107,165,34,201]},{"1050854":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050875":[72,165,2,72,169,64,129,133]},{"1050884":[169,48]},{"1050887":[133,2,169,3]},{"1050892":[34,59,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]},{"1050925":[72,165,2,72,169,16,128,133]},{"1050934":[169,48]},{"1050937":[133,2,169,7]},{"1050942":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050960":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050980":[72,165,2,72,169,64,129,133]},{"1050989":[169,48]},{"1050992":[133,2,169,4]},{"1050997":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051015":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051035":[72,165,2,72,169,64,129,133]},{"1051044":[169,48]},{"1051047":[133,2,169,5]},{"1051052":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051070":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051090":[72,165,2,72,169,64,129,133]},{"1051099":[169,48]},{"1051102":[133,2,169,6]},{"1051107":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051122":[201,74]},{"1051125":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051145":[72,165,2,72,169,64,129,133]},{"1051154":[169,48]},{"1051157":[133,2,169,6]},{"1051162":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051177":[201,91]},{"1051180":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051200":[72,165,2,72,169,64,129,133]},{"1051209":[169,48]},{"1051212":[133,2,169,7]},{"1051217":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051232":[201,104]},{"1051235":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051255":[72,165,2,72,169,64,129,133]},{"1051264":[169,48]},{"1051267":[133,2,169,8]},{"1051272":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051287":[201,129]},{"1051290":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051310":[72,165,2,72,169,64,129,133]},{"1051319":[169,48]},{"1051322":[133,2,169,9]},{"1051327":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051342":[169,23]},{"1051345":[41,255]},{"1051348":[40,107,8,194,32,165,160,201,200]},{"1051358":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051378":[72,165,2,72,169,80,129,133]},{"1051387":[169,48]},{"1051390":[133,2,169]},{"1051395":[34,59,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051413":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051433":[72,165,2,72,169,80,129,133]},{"1051442":[169,48]},{"1051445":[133,2,169,1]},{"1051450":[34,59,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051468":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051488":[72,165,2,72,169,80,129,133]},{"1051497":[169,48]},{"1051500":[133,2,169,2]},{"1051505":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051523":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051543":[72,165,2,72,169,80,129,133]},{"1051552":[169,48]},{"1051555":[133,2,169,3]},{"1051560":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051578":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051598":[72,165,2,72,169,80,129,133]},{"1051607":[169,48]},{"1051610":[133,2,169,4]},{"1051615":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051633":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051653":[72,165,2,72,169,80,129,133]},{"1051662":[169,48]},{"1051665":[133,2,169,5]},{"1051670":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051685":[201,172]},{"1051688":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051708":[72,165,2,72,169,80,129,133]},{"1051717":[169,48]},{"1051720":[133,2,169,6]},{"1051725":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051740":[201,222]},{"1051743":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051763":[72,165,2,72,169,80,129,133]},{"1051772":[169,48]},{"1051775":[133,2,169,7]},{"1051780":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051795":[201,144]},{"1051798":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051818":[72,165,2,72,169,80,129,133]},{"1051827":[169,48]},{"1051830":[133,2,169,8]},{"1051835":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051850":[201,164]},{"1051853":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051873":[72,165,2,72,169,80,129,133]},{"1051882":[169,48]},{"1051885":[133,2,169,9]},{"1051890":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051905":[169,62]},{"1051908":[41,255]},{"1051911":[40,107,194,32,165,160,201,200]},{"1051920":[208,4,56,130,82]},{"1051926":[201,51]},{"1051929":[208,4,56,130,73]},{"1051935":[201,7]},{"1051938":[208,4,56,130,64]},{"1051944":[201,90]},{"1051947":[208,4,56,130,55]},{"1051953":[201,6]},{"1051956":[208,4,56,130,46]},{"1051962":[201,41]},{"1051965":[208,4,56,130,37]},{"1051971":[201,172]},{"1051974":[208,4,56,130,28]},{"1051980":[201,222]},{"1051983":[208,4,56,130,19]},{"1051989":[201,144]},{"1051992":[208,4,56,130,10]},{"1051998":[201,164]},{"1052001":[208,4,56,130,1]},{"1052007":[24,226,32,107,90,165,27,208,3,130,230]},{"1052019":[8,194,32,165,160,201,135]},{"1052027":[208,7,175,58,227,48,130,137,1,201,200]},{"1052039":[208,7,175,62,227,48,130,125,1,201,51]},{"1052051":[208,7,175,63,227,48,130,113,1,201,7]},{"1052063":[208,7,175,64,227,48,130,101,1,201,90]},{"1052075":[208,7,175,65,227,48,130,89,1,201,6]},{"1052087":[208,7,175,66,227,48,130,77,1,201,41]},{"1052099":[208,7,175,67,227,48,130,65,1,201,172]},{"1052111":[208,7,175,68,227,48,130,53,1,201,222]},{"1052123":[208,7,175,69,227,48,130,41,1,201,144]},{"1052135":[208,7,175,70,227,48,130,29,1,201,164]},{"1052147":[208,7,175,71,227,48,130,17,1,201,225]},{"1052159":[208,7,175,72,227,48,130,5,1,201,226]},{"1052171":[208,7,175,73,227,48,130,249]},{"1052180":[201,234]},{"1052183":[208,7,175,74,227,48,130,237]},{"1052192":[201,27,1,208,22,165,34,235,41,1]},{"1052203":[208,7,175,75,227,48,130,217]},{"1052212":[175,76,227,48,130,210]},{"1052219":[201,38,1,208,7,175,77,227,48,130,198]},{"1052231":[201,39,1,208,44,175,78,227,48,130,186]},{"1052243":[169]},{"1052246":[130,180]},{"1052249":[8,194,32,165,138,201,3]},{"1052257":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052273":[175,59,227,48,130,149]},{"1052280":[201,5]},{"1052283":[208,7,175,80,227,48,130,137]},{"1052292":[201,40]},{"1052295":[208,7,175,81,227,48,130,125]},{"1052304":[201,42]},{"1052307":[208,7,175,61,227,48,130,113]},{"1052316":[201,48]},{"1052319":[208,21,165,34,201]},{"1052325":[2,176,7,175,82,227,48,130,94]},{"1052335":[175,60,227,48,130,87]},{"1052342":[201,53]},{"1052345":[208,7,175,83,227,48,130,75]},{"1052354":[201,59]},{"1052357":[208,7,175,84,227,48,130,63]},{"1052366":[201,66]},{"1052369":[208,7,175,85,227,48,130,51]},{"1052378":[201,74]},{"1052381":[208,7,175,85,227,48,130,39]},{"1052390":[201,91]},{"1052393":[208,7,175,86,227,48,130,27]},{"1052402":[201,104]},{"1052405":[208,7,175,87,227,48,130,15]},{"1052414":[201,129]},{"1052417":[208,7,175,88,227,48,130,3]},{"1052426":[169]},{"1052429":[41,255]},{"1052432":[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]},{"1052786":[72,165,2,72,169,16,128,133]},{"1052795":[169,48]},{"1052798":[133,2,169,3]},{"1052803":[34,59,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]},{"1052874":[72,165,2,72,169,16,128,133]},{"1052883":[169,48]},{"1052886":[133,2,169]},{"1052891":[34,59,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]},{"1052933":[72,165,2,72,169,16,128,133]},{"1052942":[169,48]},{"1052945":[133,2,169,1]},{"1052950":[34,59,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052972":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,224,218,207,150,128,48,144,16,175,153,192,126,208,10,104,175,151,128,48,34,55,145,160,107,104,218,139,75,171,170,191,120,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,152,217,160,76,55,145,201,251,208,7,34,84,218,160,76,55,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,55,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,55,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053168":[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,55,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053241":[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,55,145,160,107,175,64,243,126,26,74,201]},{"1053295":[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]},{"1053353":[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]},{"1053392":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,224,218,207,150,128,48,144,10,104,175,151,128,48,34,120,147,160,107,104,218,139,75,171,170,191,114,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,120,147,160,107,201]},{"1053652":[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,120,147,160,107,201]},{"1053707":[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,120,147,160,107,201]},{"1053747":[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,152,217,160,76,120,147,201,251,208,7,34,84,218,160,76,120,147,107]},{"1053811":[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]},{"1053849":[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]},{"1053898":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053916":[8,8,8]},{"1053922":[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,224,218,207,150,128,48,144,11,175,151,128,48,34,114,149,160,130,128]},{"1054121":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,114,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,114,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,114,149,160,128,37,201,98,208,6,34,152,217,160,128,8,201,99,208,4,34,84,218,160,162]},{"1054232":[224,36,176,12,223,45,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,32,109,150,34,55,145,160,34,45,213]},{"1054307":[169]},{"1054309":[143,153,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054325":[143,37,192,126,143,39,192,126,169]},{"1054335":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,120,147,160,143,42,192,126,143,50,192,126,104,34,114,149,160,176,2,128,27,194,32,169]},{"1054376":[143,44,192,126,143,51,192,126,169]},{"1054386":[8,143,46,192,126,169]},{"1054393":[52,143,48,192,126,40,104,96,34,114,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]},{"1054462":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,114,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]},{"1054543":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054573":[169]},{"1054576":[143,66,80,127,128,6,162,64,45,160,2]},{"1054588":[104,107,32,167,151,176,35,194,32,165,226,72,56,233,15]},{"1054604":[133,226,165,232,72,56,233,15]},{"1054613":[133,232,226,32,32,167,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054645":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054665":[13,133]},{"1054668":[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]},{"1054703":[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]},{"1054745":[144,8,230,5,56,233,100]},{"1054753":[128,243,201,10]},{"1054758":[144,8,230,6,56,233,10]},{"1054766":[128,243,201,1]},{"1054771":[144,8,230,7,56,233,1]},{"1054779":[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,97,152,127,97,152,160,171,107]},{"1054818":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054836":[16,41,127]},{"1054840":[157,2,16,232,232,104,10,41,255,127,9]},{"1054852":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054873":[16,169,1,133,20,194,32,107,218,174]},{"1054884":[16,41,127]},{"1054888":[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]},{"1054930":[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]},{"1054977":[143,109,243,126,169]},{"1054983":[143,1,80,127,40,175,109,243,126,107,162]},{"1054995":[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]},{"1055021":[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]},{"1055048":[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,115,153,160,107,72,173]},{"1055094":[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]},{"1055124":[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]},{"1055198":[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]},{"1055259":[143,23,192,126,175,139,243,126,107,169]},{"1055270":[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,227,154,160,170,191,104,243,126,31,20,244,126,250,63,237,154,160,208,3,130,98]},{"1055347":[191,216,154,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,230,154,160,170,191,104,243,126,31,20,244,126,250,63,241,154,160,208,3,130,44]},{"1055401":[191,220,154,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]},{"1055461":[1,1]},{"1055466":[1]},{"1055468":[1,32,32,16]},{"1055473":[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,175,90,128,48,41,255]},{"1055524":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1055537":[107,175,122,243,126,47,165,160,2,41,255]},{"1055549":[107,194,32,175,19,130,48,41,255]},{"1055559":[240,5,169,8]},{"1055564":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055577":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055599":[2,107,175,19,130,48,41,255]},{"1055608":[240,5,169,8]},{"1055613":[128,7,175,72,128,48,41,255]},{"1055622":[24,101,234,48,3,169]},{"1055630":[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]},{"1055657":[201,255]},{"1055660":[208,1,107,175,22,244,126,41,32]},{"1055670":[240,4,169]},{"1055675":[107,173,12,4,41,255]},{"1055682":[201,255]},{"1055685":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055709":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,84,235,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055741":[107,169,136,21,133]},{"1055747":[107,175,69,128,48,208,6,169,16,22,133]},{"1055759":[107,169,144,21,133]},{"1055765":[107,175,69,128,48,208,6,169,24,22,133]},{"1055777":[107,169,152,21,133]},{"1055783":[107,175,69,128,48,208,6,169,32,22,133]},{"1055795":[107,169,160,21,133]},{"1055801":[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]},{"1055893":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055907":[144,240,175,22,244,126,41,32]},{"1055916":[240,3,130,200,1,175,69,128,48,41,1]},{"1055928":[208,3,130,231]},{"1055933":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055955":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055972":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055989":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1056006":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1056023":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056040":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056057":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056074":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056091":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056108":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056125":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056142":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056159":[141,165,22,194,32,175,69,128,48,41,2]},{"1056171":[208,3,130,201]},{"1056176":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056189":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056204":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056219":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056234":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056249":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056264":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056279":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056294":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056309":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056324":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056339":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056354":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056369":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056384":[208,3,130,170,1,175,69,128,48,41,4]},{"1056396":[208,3,130,201]},{"1056401":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056414":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056429":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056444":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056459":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056474":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056489":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056504":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056519":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056534":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056549":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056564":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056579":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056594":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056609":[208,3,130,201]},{"1056614":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056627":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056642":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056657":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056672":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056687":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056702":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056717":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056732":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056747":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056762":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056777":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056792":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056807":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056826":[191,121,161,160,157,234,18,191,141,161,160,157,42,19,191,161,161,160,157,106,19,191,181,161,160,157,170,19,191,201,161,160,157,234,19,191,221,161,160,157,42,20,191,241,161,160,157,106,20,191,5,162,160,157,170,20,191,25,162,160,157,234,20,232,232,224,20]},{"1056894":[144,186,175,116,243,126,41,4]},{"1056903":[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]},{"1056936":[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]},{"1056969":[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]},{"1057002":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1057023":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057044":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057065":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057086":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057107":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057128":[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]},{"1057751":[143,114,243,126,173,10,2,208,14,169]},{"1057762":[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]},{"1057796":[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]},{"1057877":[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]},{"1057920":[165,12,201,232,3,144,3,130,24]},{"1057930":[201,100]},{"1057933":[144,3,130,97]},{"1057938":[201,10]},{"1057941":[144,3,130,170]},{"1057946":[201,1]},{"1057949":[144,3,130,243]},{"1057954":[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,39,166,133,14,165,14,159]},{"1057991":[201,126,232,232,169,56]},{"1057998":[159]},{"1058000":[201,126,232,232,164,10,152,10,168,185,19,166,159]},{"1058014":[201,126,232,232,169]},{"1058021":[159]},{"1058023":[201,126,232,232,165,14,24,105,8]},{"1058033":[133,14,100,10,165,12,201,100]},{"1058042":[144,8,56,233,100]},{"1058048":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,39,166,133,14,165,14,159]},{"1058072":[201,126,232,232,169,56]},{"1058079":[159]},{"1058081":[201,126,232,232,164,10,152,10,168,185,19,166,159]},{"1058095":[201,126,232,232,169]},{"1058102":[159]},{"1058104":[201,126,232,232,165,14,24,105,8]},{"1058114":[133,14,100,10,165,12,201,10]},{"1058123":[144,8,56,233,10]},{"1058129":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,39,166,133,14,165,14,159]},{"1058153":[201,126,232,232,169,56]},{"1058160":[159]},{"1058162":[201,126,232,232,164,10,152,10,168,185,19,166,159]},{"1058176":[201,126,232,232,169]},{"1058183":[159]},{"1058185":[201,126,232,232,165,14,24,105,8]},{"1058195":[133,14,100,10,165,12,201,1]},{"1058204":[144,8,56,233,1]},{"1058210":[230,10,128,243,133,12,192,255,208,10,160]},{"1058222":[165,14,24,121,39,166,133,14,165,14,159]},{"1058234":[201,126,232,232,169,56]},{"1058241":[159]},{"1058243":[201,126,232,232,164,10,152,10,168,185,19,166,159]},{"1058257":[201,126,232,232,169]},{"1058264":[159]},{"1058266":[201,126,232,232,165,14,24,105,8]},{"1058276":[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]},{"1058347":[252,255,248,255,218,90,8,194,48,162]},{"1058359":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058374":[208,13,175,153,80,127,41,255]},{"1058383":[223,3,200,48,208,44,226,32,191]},{"1058393":[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]},{"1058435":[200,48,41,255]},{"1058440":[201,255]},{"1058443":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058466":[226,32,162]},{"1058471":[160]},{"1058474":[152,207,96,80,127,144,3,130,172]},{"1058484":[191,1,201,48,201,255,208,3,130,161]},{"1058495":[191]},{"1058497":[201,48,207,80,80,127,240,3,130,137]},{"1058508":[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]},{"1058545":[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,219,167,160,170,32,250,167,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]},{"1058676":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058690":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,53,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,54,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,55,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]},{"1058783":[128]},{"1058788":[1]},{"1058791":[169,17,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,55,145,160,34,45,213]},{"1058830":[194,16,96,32,21,168,107,173]},{"1058839":[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]},{"1058869":[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]},{"1058906":[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]},{"1059047":[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]},{"1059212":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059233":[175,81,80,127,201,255,208,3,76,142,169,139,75,171,34,231,244,30,32,220,169,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]},{"1059284":[32,249,173,32,249,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059307":[201,2,208,3,130,227]},{"1059314":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059329":[165,26,41,16,240,12,189,112,170,159]},{"1059340":[201,126,232,224,16,144,244,189,128,170,159]},{"1059352":[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]},{"1059411":[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]},{"1059442":[248,255]},{"1059447":[2]},{"1059452":[16]},{"1059455":[2]},{"1059458":[248,255]},{"1059463":[2]},{"1059468":[16,64]},{"1059471":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,197,133,8,169,170,133,9,128,8,169,205,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059529":[70,10]},{"1059532":[2]},{"1059537":[70,74]},{"1059540":[2,218,162]},{"1059544":[165,26,41,64,240,12,189,71,171,159]},{"1059555":[201,126,232,224,16,144,244,189,87,171,159]},{"1059567":[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]},{"1059626":[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]},{"1059657":[248,255,132]},{"1059662":[2]},{"1059667":[16]},{"1059670":[2]},{"1059673":[248,255,132]},{"1059678":[2]},{"1059683":[16,64]},{"1059686":[2,218,162]},{"1059690":[165,26,41,64,240,12,189,217,171,159]},{"1059701":[201,126,232,224,16,144,244,189,233,171,159]},{"1059713":[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]},{"1059772":[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]},{"1059803":[248,255,142]},{"1059808":[2]},{"1059813":[16]},{"1059816":[2]},{"1059819":[248,255,142]},{"1059824":[2]},{"1059829":[16,64]},{"1059832":[2,218,90,8,160]},{"1059838":[90,152,74,74,168,175,95,80,127,57,53,173,240,3,122,128,48,122,173,238]},{"1059859":[221,32,15,208,39,32,204,173,32,56,173,34,230,131,6,144,3,32,236,173,32,162,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,78,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]},{"1059987":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1060003":[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,53,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,53,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]},{"1060156":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060177":[58,10,168,185,238,174,133]},{"1060185":[122,104,24,113]},{"1060190":[24,105,2]},{"1060194":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060207":[13,194,32,90,200,200,24,113]},{"1060216":[122,72,175,81,80,127,41,128]},{"1060225":[240,7,104,24,105,4]},{"1060232":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060255":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060272":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060285":[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]},{"1060313":[165,35,105]},{"1060317":[133,8,165,32,105,8,133,1,165,33,105]},{"1060329":[133,9,96,218,34]},{"1060335":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060357":[160]},{"1060359":[175,81,80,127,41,3,201,3,208,5,32,42,174,128,4,201,2,208,5,32,42,174,128,4,201,1,208,3,32,42,174,122,250,171,96,175,95,80,127,57,53,173,240,3,130,178]},{"1060406":[90,175,81,80,127,41,3,58,10,168,194,32,185,238,174,133]},{"1060423":[163,1,10,10,168,177]},{"1060430":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060443":[208,8,177]},{"1060447":[143,39,192,126,128,10,177]},{"1060455":[24,105,4]},{"1060459":[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,12,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,120,147,160,143,42,192,126,169]},{"1060526":[143,43,192,126,191,82,80,127,34,114,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060552":[143,44,192,126,32,225,175,169,2,218,72,175,97,80,127,170,104,32,152,175,250,175,81,80,127,41,128,208,3,32,15,175,200,232,232,232,232,96,244,174,248,174]},{"1060595":[175,8]},{"1060598":[40]},{"1060600":[240,255,40]},{"1060604":[32]},{"1060606":[40]},{"1060608":[216,255,40]},{"1060612":[8]},{"1060614":[40]},{"1060616":[56]},{"1060618":[40]},{"1060620":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060639":[58,10,168,185,238,174,133]},{"1060647":[185,134,175,133,2,122,90,152,10,10,168,177]},{"1060660":[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,121,164,226,32,133,6,100,7,72,169]},{"1060699":[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,140,175,142,175,146,175]},{"1060749":[255]},{"1060751":[128,128,255]},{"1060755":[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]},{"1060836":[194,32,191,37,192,126,24,105,4]},{"1060846":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060862":[159,47,192,126,191,41,192,126,24,105,16]},{"1060874":[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]},{"1060916":[72,165,2,72,169,16,128,133]},{"1060925":[169,48]},{"1060928":[133,2,169,2]},{"1060933":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,85,150,160,107,72,189,128,14,34,193,150,160,104,107,72,188,128,14,104,34,53,144,160,107,169,8,157,80,15,169]},{"1060980":[143]},{"1060982":[80,127,32,228,176,143,153,192,126,32,203,176,34,85,150,160,107,72,175]},{"1061002":[80,127,240,6,34,114,176,160,128,7,32,203,176,34,18,151,160,104,107,32,228,176,143,152,192,126,32,203,176,201,36,208,24,90,160,36,34,195,184,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]},{"1061116":[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]},{"1061385":[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]},{"1061452":[191,21,179,160,197,4,144,3,232,128,245,191,22,179,160,133,6,100,7,194,32,138,10,10,170,191,23,179,160,141,232,80,191,25,179,160,141,234,80,173]},{"1061493":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061511":[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,1,177,173,236,80,10,10,170,189]},{"1061548":[81,56,229,8,157]},{"1061554":[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]},{"1061586":[81,141,228,80,189,2,81,141,230,80,32,1,177,173]},{"1061601":[81,56,229,8,141]},{"1061607":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,253,176,160,141,232,80,173,234,80,239,255,176,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,34,55,145,160,72,165,138,201,3,240,6,34,40,179,160,128,4,34,27,179,160,104,107,34,107,141,160,143,153,192,126,34,195,135,160,72,34,85,150,160,169,1,143,51,80,127,143,52,80,127,34,67,179,160,169,235,143]},{"1061757":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061781":[13,165,33,153,32,13,169]},{"1061789":[153,32,15,169,127,153,112,15,107,72,8,34,208,179,160,144,31,156,18,1,156,239,3,169]},{"1061814":[133,93,194,32,165,138,201,48]},{"1061823":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061847":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061860":[128,16,201,48]},{"1061865":[208,11,165,34,201]},{"1061871":[2,144,4,56,130,1]},{"1061878":[24,226,32,107,191,222,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061899":[226,32,34,16,247,8,169,52,145,144,200,191,222,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061934":[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]},{"1061996":[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,216,180,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]},{"1062143":[13,173,219,15,233]},{"1062149":[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]},{"1062188":[13,173,219,15,233]},{"1062194":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062219":[254,127,208,245,169,4,107,34,227,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,245,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,245,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062292":[107,169]},{"1062295":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,9,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,9,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,9,182,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,9,182,160,107,218,8,194,32,41,127]},{"1062416":[10,170,191]},{"1062420":[82,127,26,41,255,3,159]},{"1062428":[82,127,170,10,191]},{"1062434":[128,175,40,250,107,218,8,194,48,162]},{"1062446":[191,94,182,160,159]},{"1062452":[82,127,232,232,191,94,182,160,159]},{"1062462":[82,127,232,232,191,94,182,160,159]},{"1062472":[82,127,232,232,191,94,182,160,159]},{"1062482":[82,127,232,232,224,127]},{"1062489":[144,211,40,250,107]},{"1062496":[64]},{"1062498":[128]},{"1062500":[192]},{"1062503":[1,64,1,128,1,192,1]},{"1062511":[2,64,2,128,2,192,2]},{"1062519":[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,126,182,160,175,35,128,48,208,4,34,158,182,160,104,107,72,169]},{"1062621":[143,65,80,127,175,34,128,48,201,1,208,4,34,126,182,160,175,35,128,48,201,1,208,4,34,158,182,160,104,107,72,175,34,128,48,201,2,208,4,34,126,182,160,175,35,128,48,201,2,208,4,34,158,182,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]},{"1062787":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062804":[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]},{"1062875":[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]},{"1062911":[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,82,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]},{"1063036":[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]},{"1063062":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063082":[2,156,5,2,169]},{"1063088":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,180,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063119":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063136":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063153":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063170":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063187":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063204":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063221":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063238":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063261":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063278":[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]},{"1063311":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063334":[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]},{"1063366":[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]},{"1063424":[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]},{"1063450":[192,59,208,3,130,96]},{"1063457":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063482":[201,15,1,208,3,130,59]},{"1063490":[201,16,1,208,3,130,51]},{"1063498":[201,28,1,208,3,130,43]},{"1063506":[201,31,1,208,3,130,35]},{"1063514":[201,255]},{"1063517":[208,3,130,27]},{"1063522":[201,20,1,208,3,130,19]},{"1063530":[201,21,1,208,3,130,11]},{"1063538":[201,22,1,208,3,130,3]},{"1063546":[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]},{"1063578":[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]},{"1063731":[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]},{"1063769":[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]},{"1063807":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063825":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063843":[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]},{"1063879":[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]},{"1063917":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063935":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,160,192,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]},{"1064039":[208,9,32,58,191,32,107,191,130,64,2,192,1,208,6,32,58,191,130,54,2,192,2,208,6,32,58,191,130,44,2,192,3,208,6,32,58,191,130,34,2,192,4,208,6,32,107,191,130,24,2,192,5,208,6,32,107,191,130,14,2,192,6,208,6,32,107,191,130,4,2,192,7,144,10,192,14,176,6,32,156,191,130,246,1,192,20,208,9,32,248,190,32,156,191,130,233,1,192,15,144,10,192,23,176,6,32,156,191,130,219,1,192,23,208,6,32]},{"1064157":[192,130,209,1,192,24,144,10,192,26,176,6,32,156,191,130,195,1,192,26,208,9,32,25,191,32,156,191,130,182,1,192,29,208,6,32,156,191,130,172,1,192,27,144,10,192,32,176,6,32,168,191,130,158,1,192,32,208,6,32,40,192,130,148,1,192,33,208,6,32,156,191,130,138,1,192,34,144,10,192,36,176,6,32,68,192,130,124,1,192,36,208,6,32,84,192,130,114,1,192,37,208,6,32,116,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,188,192,130,87,1,192,40,208,6,32,188,192,130,77,1,192,41,208,6,32,156,191,130,67,1,192,42,144,10,192,46,176,6,32,156,191,130,53,1,192,49,208,6,32,188,192,130,43,1,192,50,208,6,32,148,192,130,33,1,192,51,208,6,32,210,192,130,23,1,192,55,144,10,192,58,176,6,32,196,191,130,9,1,192,58,144,10,192,60,176,6,32,137,191,130,251]},{"1064375":[192,60,208,6,32,156,191,130,241]},{"1064385":[192,61,208,6,32,156,191,130,231]},{"1064395":[192,62,144,10,192,64,176,6,32,28,192,130,217]},{"1064409":[192,72,208,6,32,156,191,130,207]},{"1064419":[192,73,208,6,32,58,191,130,197]},{"1064429":[192,74,208,9,32,248,190,32,156,191,130,184]},{"1064442":[192,75,208,9,32,215,190,32,168,191,130,171]},{"1064455":[192,76,208,9,32,224,191,32,188,192,130,158]},{"1064468":[192,77,144,10,192,80,176,6,32,224,191,130,144]},{"1064482":[192,80,208,6,32,58,191,130,134]},{"1064492":[192,81,144,10,192,85,176,6,32,224,191,130,120]},{"1064506":[192,88,208,6,32,137,191,130,110]},{"1064516":[192,94,208,6,32,58,191,130,100]},{"1064526":[192,95,208,6,32,107,191,130,90]},{"1064536":[192,96,208,6,32,68,192,130,80]},{"1064546":[192,97,208,6,32,168,191,130,70]},{"1064556":[192,100,144,10,192,102,176,6,32,137,191,130,56]},{"1064570":[192,112,144,10,192,128,176,6,32,210,192,130,42]},{"1064584":[192,128,144,10,192,144,176,6,32,116,192,130,28]},{"1064598":[192,144,144,10,192,160,176,6,32,148,192,130,14]},{"1064612":[192,160,144,10,192,176,176,6,32,84,192,130]},{"1064626":[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,182,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064778":[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,84,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,156,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,226,192,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,84,235,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]},{"1065374":[201,2]},{"1065377":[208,14,175,140,243,126,41,192]},{"1065386":[201,192]},{"1065389":[240,79,128,64,201,1]},{"1065396":[208,14,175,142,243,126,41,192]},{"1065405":[201,192]},{"1065408":[240,60,128,45,201,5]},{"1065415":[208,14,175,140,243,126,41,48]},{"1065424":[201,48]},{"1065427":[240,41,128,26,201,13]},{"1065434":[208,16,175,140,243,126,137,4]},{"1065443":[240,12,41,3]},{"1065448":[208,20,128,5,201,16]},{"1065455":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065468":[208,5,169,79,61,128,6,32,13,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]},{"1065515":[41,255,239,153,4]},{"1065521":[185,62]},{"1065524":[41,255,239,153,62]},{"1065530":[185,68]},{"1065533":[41,255,239,153,68]},{"1065539":[185,128]},{"1065542":[41,255,239,153,128]},{"1065548":[185,130]},{"1065551":[41,255,239,153,130]},{"1065557":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065578":[41,255,239,153,132]},{"1065584":[185,126]},{"1065587":[41,255,239,153,126]},{"1065593":[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]},{"1065631":[201,144]},{"1065634":[208,3,169,127]},{"1065639":[9]},{"1065641":[36,143,100,199,126,165,5,41,255]},{"1065651":[9]},{"1065653":[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,201,237,160,34,189,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]},{"1065765":[72,165,2,72,169,16,128,133]},{"1065774":[169,48]},{"1065777":[133,2,169,4]},{"1065782":[34,59,150,164,250,134,2,250,134,1,40,250,153,160,13,34,85,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]},{"1065828":[80,127,240,23,175,93,227,48,143,153,192,126,189,160,13,34,85,150,160,169]},{"1065849":[143]},{"1065851":[80,127,128,7,189,160,13,34,193,150,160,107,169]},{"1065865":[157,192,13,72,169,1,143]},{"1065873":[80,127,165,93,201,20,240,68,169]},{"1065883":[143]},{"1065885":[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]},{"1065913":[72,165,2,72,169,16,128,133]},{"1065922":[169,48]},{"1065925":[133,2,169,3]},{"1065930":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,85,150,160,104,107,72,90,175]},{"1065955":[80,127,240,6,34,140,195,160,128,7,189,128,14,34,193,150,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]},{"1065998":[72,165,2,72,169,16,128,133]},{"1066007":[169,48]},{"1066010":[133,2,169,4]},{"1066015":[34,59,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,157,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]},{"1066073":[143,68,243,126,107,175,123,243,126,41,255]},{"1066085":[201,2]},{"1066088":[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]},{"1066121":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066136":[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]},{"1066172":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066186":[173,91,3,41,1,208,3,130,134]},{"1066196":[90,8,139,75,171,226,48,165,27,240,3,76,87,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066233":[129,48,143]},{"1066237":[254,127,34,93,246,29,162]},{"1066245":[165,47,201,4,240,1,232,191,91,197,160,153,80,13,169]},{"1066261":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,93,197,160,41,240,153,16,13,165,35,105]},{"1066295":[153,48,13,165,32,24,105,22,41,240,153]},{"1066307":[13,165,33,105]},{"1066312":[153,32,13,169]},{"1066317":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066334":[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]},{"1066365":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066386":[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,100,153,160,92,53,207,30,175,96,227,48,143,153,192,126,175,195,225,29,34,85,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066456":[92,82,223,29,175,97,227,48,143,153,192,126,175,133,225,29,34,85,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066487":[80,127,175,195,225,29,128,4,175,133,225,29,34,193,150,160,107,72,165,138,201,129,208,14,34,202,143,160,175,96,227,48,143,152,192,126,128,12,34,40,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]},{"1066581":[72,165,2,72,169,64,129,133]},{"1066590":[169,48]},{"1066593":[133,2,169,10]},{"1066598":[34,59,150,164,250,134,2,250,134,1,40,250,34,85,150,160,169,235,143]},{"1066618":[254,127,34,93,246,29,162]},{"1066626":[165,47,201,4,240,1,232,191,223,198,160,153,80,13,169]},{"1066642":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,225,198,160,41,240,153,16,13,165,35,105]},{"1066676":[153,48,13,165,32,24,105,22,41,240,153]},{"1066688":[13,165,33,105]},{"1066693":[153,32,13,169]},{"1066698":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066722":[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]},{"1066801":[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]},{"1066828":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,162,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066867":[72,165,2,72,169,16,128,133]},{"1066876":[169,48]},{"1066879":[133,2,169,5]},{"1066884":[34,59,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]},{"1066938":[201,35,208,6,160,93,92,71,213]},{"1066948":[201,72,208,6,160,96,92,71,213]},{"1066958":[201,36,176,6,160,91,92,71,213]},{"1066968":[201,55,176,6,160,92,92,71,213]},{"1066978":[201,57,176,6,160,93,92,71,213]},{"1066988":[160,50,92,71,213]},{"1066994":[192,9,48]},{"1066998":[96]},{"1067000":[144]},{"1067002":[192]},{"1067005":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1067029":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067047":[9,48,9,96,9,144,9,240,9]},{"1067058":[240]},{"1067060":[32,10,80,10,96,6]},{"1067067":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067089":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067105":[6,48,6]},{"1067109":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067125":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067146":[127,242,199,160,107,165]},{"1067153":[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]},{"1067184":[132,175,24,105]},{"1067189":[136,133]},{"1067192":[226,32,169,175,133,2,34,119,223,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]},{"1067242":[219,160,162,1,128,2,162]},{"1067250":[171,40,122,104,133,2,104,133,1,104,133]},{"1067262":[96,218,173,216,2,34,173,223,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067745":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34]},{"1067902":[219,160,130,116,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]},{"1067946":[219,160,130,72,1,201,109,208,7,34,225,190,164,130,61,1,201,110,208,7,34,225,190,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067992":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1068017":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068040":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068059":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068076":[56,233,8,170,169,1,224]},{"1068084":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068107":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068126":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068143":[56,233,8,170,169,1,224]},{"1068151":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068174":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068196":[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]},{"1068228":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068247":[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]},{"1068273":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,77,235,160,173,216,2,72,175,152,192,126,208,12,104,32,175,218,141,216,2,32,133,218,128,1,104,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,224,218,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]},{"1068436":[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]},{"1068549":[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]},{"1068589":[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]},{"1068619":[175,91,243,126,201]},{"1068625":[208,8,169,34,141,216,2,130,171]},{"1068635":[169,35,141,216,2,130,163]},{"1068643":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068661":[169,28,141,216,2,130,137]},{"1068669":[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]},{"1068701":[175,64,243,126,26,74,201]},{"1068709":[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,152,217,160,141,216,2,235,32,35,218,169,255,143,144,80,127,128,36,201,99,208,15,34,84,218,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]},{"1068806":[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]},{"1069061":[4,4,4,4,4,5]},{"1069073":[4]},{"1069075":[4]},{"1069078":[4]},{"1069090":[4]},{"1069096":[5]},{"1069106":[4,4,4]},{"1069120":[4,4]},{"1069123":[4]},{"1069127":[4]},{"1069134":[4]},{"1069143":[4]},{"1069214":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069294":[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]},{"1069343":[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]},{"1069382":[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]},{"1069539":[2,2]},{"1069547":[2,2,2,2,2,2]},{"1069554":[2]},{"1069556":[2,2]},{"1069559":[2,2,2,2,2,2,2,2,2,2,2]},{"1069571":[2,2,2,2,2]},{"1069577":[2,2,2,2,2,2,2,2,2]},{"1069589":[2,2,2,2,2,2,2,2,2,2,2]},{"1069602":[2]},{"1069604":[2,2,2]},{"1069608":[2,2,2,2,2,2]},{"1069615":[2,2,2,2,2,2,2,2]},{"1069624":[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]},{"1069710":[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]},{"1069896":[4,4,4]},{"1069902":[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]},{"1070815":[128]},{"1070817":[64]},{"1070819":[32]},{"1070821":[16]},{"1070823":[8]},{"1070825":[4]},{"1070827":[2]},{"1070829":[1,128]},{"1070832":[64]},{"1070834":[32]},{"1070836":[16]},{"1070838":[8]},{"1070840":[4]},{"1071071":[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,175,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,45,217,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,45,217,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]},{"1071525":[160,48,107,162]},{"1071530":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071543":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071557":[168,152,32,255,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071577":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071601":[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]},{"1071641":[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]},{"1071678":[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]},{"1071717":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071730":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071753":[191]},{"1071755":[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]},{"1071795":[191]},{"1071797":[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,162]},{"1071842":[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,96,100,17,100,176,92,167,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071905":[13,24,105,3,107,189,32,14,201,136,208,9,32,94,219,201,4,144,1,58,107,32,94,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071951":[200,49,74,74,74,74,107,40,191]},{"1071961":[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]},{"1072011":[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]},{"1072045":[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,26,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]},{"1072247":[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]},{"1072302":[143,96,243,126,226,32,34,149,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072328":[165,27,240,121,194,32,165,160,201,14]},{"1072339":[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]},{"1072374":[201,126]},{"1072377":[208,33,165,34,41,255,1,201,104]},{"1072387":[144,60,201,136]},{"1072392":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072412":[201,222]},{"1072415":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072440":[144,7,201,154]},{"1072445":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,165,221,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,165,221,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,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1072573":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,113,175,155,80,127,240,65,173]},{"1072604":[32,137,64,240,4,92,220,128]},{"1072613":[173]},{"1072615":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1072640":[143,155,80,127,92,220,128]},{"1072648":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1072667":[173,39,1,205,41,1,208,4,92,220,128]},{"1072679":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1072709":[224,255,208,4,92,220,128]},{"1072717":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1072733":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1072749":[224,241,208,13,142,64,33,156,41,1,156,43,1,92,220,128]},{"1072766":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1072779":[142,4,32,156,5,32,156,7,32,191]},{"1072790":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1072803":[175,19,130,48,208,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1072839":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1072852":[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,52,194,32,173,2,32,201,83,45,208,42,173,4,32,201,77,83,208,34,173,6,32,201,85,49,208,26,226,32,173]},{"1072908":[32,137,8,208,17,175,155,80,127,208,7,173]},{"1072921":[32,137,16,240,11,92,55,198,8,226,32,173,64,33,208,245,92,47,198,8,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]},{"1072971":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1072989":[87,127,107,191]},{"1072994":[18,127,107,156,240,28,156,241,28,169]},{"1073005":[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]},{"1073037":[226,32,183]},{"1073041":[159]},{"1073043":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073062":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073086":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1073104":[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]},{"1073130":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073148":[226,32,183]},{"1073152":[159]},{"1073154":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073173":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073193":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073211":[226,32,183]},{"1073215":[159]},{"1073217":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073236":[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]},{"1073267":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073285":[226,32,183]},{"1073289":[159]},{"1073291":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073310":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073330":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073348":[226,32,183]},{"1073352":[159]},{"1073354":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073373":[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]},{"1073402":[133]},{"1073404":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073422":[226,32,183]},{"1073426":[159]},{"1073428":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073447":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073467":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073485":[226,32,183]},{"1073489":[159]},{"1073491":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073510":[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]},{"1073541":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073559":[226,32,183]},{"1073563":[159]},{"1073565":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073584":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1073604":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073622":[226,32,183]},{"1073626":[159]},{"1073628":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073647":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1073668":[133]},{"1073670":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073688":[226,32,183]},{"1073692":[159]},{"1073694":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073713":[143,148,80,127,226,32,130,213]},{"1073722":[201,128,208,56,169,52,133]},{"1073730":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073748":[226,32,183]},{"1073752":[159]},{"1073754":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073773":[143,148,80,127,226,32,130,153]},{"1073782":[201,144,208,55,169,112,133]},{"1073790":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073808":[226,32,183]},{"1073812":[159]},{"1073814":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073833":[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]},{"1073860":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1073878":[226,32,183]},{"1073882":[159]},{"1073884":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073903":[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]},{"1073982":[208,56,169,216,133]},{"1073988":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074006":[226,32,183]},{"1074010":[159]},{"1074012":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074031":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1074048":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074066":[226,32,183]},{"1074070":[159]},{"1074072":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074091":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1074108":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074126":[226,32,183]},{"1074130":[159]},{"1074132":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074151":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1074168":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074186":[226,32,183]},{"1074190":[159]},{"1074192":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074211":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1074228":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074246":[226,32,183]},{"1074250":[159]},{"1074252":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074271":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1074288":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074306":[226,32,183]},{"1074310":[159]},{"1074312":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074331":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1074348":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074366":[226,32,183]},{"1074370":[159]},{"1074372":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074391":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1074408":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074426":[226,32,183]},{"1074430":[159]},{"1074432":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074451":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1074468":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074486":[226,32,183]},{"1074490":[159]},{"1074492":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074511":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1074528":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074546":[226,32,183]},{"1074550":[159]},{"1074552":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074571":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1074588":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074606":[226,32,183]},{"1074610":[159]},{"1074612":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074631":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1074648":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074666":[226,32,183]},{"1074670":[159]},{"1074672":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074691":[143,148,80,127,226,32,130,235]},{"1074700":[201,12,208,56,169,12,133]},{"1074708":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074726":[226,32,183]},{"1074730":[159]},{"1074732":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074751":[143,148,80,127,226,32,130,175]},{"1074760":[201,13,208,55,169,41,133]},{"1074768":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074786":[226,32,183]},{"1074790":[159]},{"1074792":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074811":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1074827":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074845":[226,32,183]},{"1074849":[159]},{"1074851":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074870":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1074886":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074904":[226,32,183]},{"1074908":[159]},{"1074910":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074929":[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]},{"1074962":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1074977":[171,40,122,250,104,107,34,78,216]},{"1074987":[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]},{"1075051":[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,161,232,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,161,232,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]},{"1075322":[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]},{"1075367":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1075391":[226,48,160]},{"1075395":[183]},{"1075397":[201,254,208,39,200,183]},{"1075404":[201,110,208,32,200,183]},{"1075411":[208,27,200,183]},{"1075416":[201,254,208,20,200,183]},{"1075423":[201,107,208,13,200,183]},{"1075430":[201,4,208,6,156,232,28,130,19]},{"1075440":[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]},{"1075468":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1075485":[10,10,69,138,41,8]},{"1075492":[240,6,152,24,105,16]},{"1075499":[168,165,35,41,2]},{"1075505":[74,69,138,41,1]},{"1075511":[240,4,152,26,26,168,152,41,255]},{"1075521":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,9,151,164,34,255,147,164,107,34,233,240,160,34,158,173,164,34]},{"1075553":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,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,145,188,164,107,194,16,34,61,137]},{"1075749":[169,7,141,12,33,175,240,244,126,208,10,34,134,234,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1075801":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,34,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]},{"1075881":[191]},{"1075883":[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]},{"1075957":[107,34,218,152,160,34,238,241,160,107,34,77,153,160,34,86,153,160,162,4,107,34,238,241,160,169,20,133,17,107,34,238,241,160,107,34,63,132,160,34,50,153,160,34,4,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]},{"1076032":[2,107,169]},{"1076036":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,100,153,160,107,169]},{"1076059":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,155,232,160,169]},{"1076081":[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]},{"1076117":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1076142":[208,4,169]},{"1076147":[107,201,1]},{"1076151":[208,16,175,197,243,126,41,15]},{"1076160":[201,2]},{"1076163":[176,84,32,29,236,107,201,2]},{"1076172":[208,75,32,29,236,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1076196":[107,175,74,128,48,41,255]},{"1076204":[240,43,175,195,242,126,41,32]},{"1076213":[208,34,173,8,3,41,128]},{"1076221":[240,4,169,1]},{"1076226":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1076248":[107,169]},{"1076252":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1076275":[96,169]},{"1076279":[96,175,76,128,48,41,255]},{"1076287":[240,4,92,90,189,27,224,118]},{"1076296":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1076313":[72,170,191,64,130,48,208,3,130,175]},{"1076324":[58,133]},{"1076327":[10,10,24,101]},{"1076332":[10,10,170,169,22]},{"1076338":[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]},{"1076366":[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]},{"1076409":[137,128]},{"1076412":[240,3,9]},{"1076416":[255,143,106,193,126,191,98,130,48,41,255]},{"1076428":[137,128]},{"1076431":[240,3,9]},{"1076435":[255,143,110,193,126,169]},{"1076443":[56,239,106,193,126,143,108,193,126,169]},{"1076455":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1076471":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1076489":[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]},{"1076566":[165]},{"1076568":[223]},{"1076570":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1076590":[165]},{"1076592":[223]},{"1076594":[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]},{"1076640":[175,74,128,48,41,255]},{"1076647":[240,25,175,93]},{"1076653":[41,255]},{"1076656":[201,20]},{"1076659":[208,13,165,138,41,64]},{"1076666":[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]},{"1076723":[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]},{"1076789":[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]},{"1076823":[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]},{"1076922":[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]},{"1076953":[201,2]},{"1076956":[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]},{"1076988":[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,231,240,160,144,10,208,8,175,140,80,127,207,229,240,160,144,114,175,145,129,48,41,255]},{"1077044":[208,24,169,2]},{"1077049":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1077073":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1077086":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1077100":[143,142,80,127,169,1]},{"1077107":[143,126,80,127,128,54,201,2]},{"1077116":[208,24,169,2]},{"1077121":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34]},{"1077146":[219,160,194,48,96,175,146,129,48,41,255]},{"1077158":[240,7,169]},{"1077163":[143,126,80,127,175,142,80,127,207,219,240,160,144,10,208,8,175,140,80,127,207,217,240,160,144,53,175,128,80,127,26,201,10]},{"1077197":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1077211":[143,128,80,127,175,140,80,127,56,239,217,240,160,143,140,80,127,175,142,80,127,239,219,240,160,143,142,80,127,128,181,175,142,80,127,207,223,240,160,144,10,208,8,175,140,80,127,207,221,240,160,144,53,175,132,80,127,26,201,10]},{"1077272":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1077286":[143,132,80,127,175,140,80,127,56,239,221,240,160,143,140,80,127,175,142,80,127,239,223,240,160,143,142,80,127,128,181,175,142,80,127,207,227,240,160,144,10,208,8,175,140,80,127,207,225,240,160,144,53,175,136,80,127,26,201,10]},{"1077347":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1077361":[143,136,80,127,175,140,80,127,56,239,225,240,160,143,140,80,127,175,142,80,127,239,227,240,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]},{"1077469":[16,14]},{"1077473":[60]},{"1077477":[255,255,255,127,175,204,80,127,41,255]},{"1077488":[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]},{"1077559":[240,93,175,145,129,48,41,255]},{"1077568":[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]},{"1077661":[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]},{"1077736":[208,3,32,183,238,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1077766":[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]},{"1077800":[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,33,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1077884":[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,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,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,173,10,4,201,24,208,2,165,27,107,34,149,189,164,34,58,135,1,194,16,166,160,191,120,245,160,226,16,34,156,135]},{"1077994":[252,242,160,253,242,160,138,243,160,23,244,160,164,244,160,14,245,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1078030":[32,126,232,232,159]},{"1078036":[32,126,232,232,159]},{"1078042":[32,126,232,232,159]},{"1078048":[32,126,232,232,162,220,25,159]},{"1078057":[32,126,232,232,169,202,12,159]},{"1078066":[32,126,232,232,169,203,12,159]},{"1078075":[32,126,232,232,169,208,8,159]},{"1078084":[32,126,232,232,162,92,26,159]},{"1078093":[32,126,232,232,169,218,12,159]},{"1078102":[32,126,232,232,169,219,12,159]},{"1078111":[32,126,232,232,169,208,8,159]},{"1078120":[32,126,232,232,162,220,26,159]},{"1078129":[32,126,232,232,159]},{"1078135":[32,126,232,232,159]},{"1078141":[32,126,232,232,159]},{"1078147":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1078171":[32,126,232,232,159]},{"1078177":[32,126,232,232,159]},{"1078183":[32,126,232,232,159]},{"1078189":[32,126,232,232,162,156,25,159]},{"1078198":[32,126,232,232,169,202,12,159]},{"1078207":[32,126,232,232,169,203,12,159]},{"1078216":[32,126,232,232,169,208,8,159]},{"1078225":[32,126,232,232,162,28,26,159]},{"1078234":[32,126,232,232,169,218,12,159]},{"1078243":[32,126,232,232,169,219,12,159]},{"1078252":[32,126,232,232,169,208,8,159]},{"1078261":[32,126,232,232,162,156,26,159]},{"1078270":[32,126,232,232,159]},{"1078276":[32,126,232,232,159]},{"1078282":[32,126,232,232,159]},{"1078288":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1078312":[32,126,232,232,159]},{"1078318":[32,126,232,232,159]},{"1078324":[32,126,232,232,159]},{"1078330":[32,126,232,232,162,220,9,159]},{"1078339":[32,126,232,232,169,202,12,159]},{"1078348":[32,126,232,232,169,203,12,159]},{"1078357":[32,126,232,232,169,208,8,159]},{"1078366":[32,126,232,232,162,92,10,159]},{"1078375":[32,126,232,232,169,218,12,159]},{"1078384":[32,126,232,232,169,219,12,159]},{"1078393":[32,126,232,232,169,208,8,159]},{"1078402":[32,126,232,232,162,220,10,159]},{"1078411":[32,126,232,232,159]},{"1078417":[32,126,232,232,159]},{"1078423":[32,126,232,232,159]},{"1078429":[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]},{"1078662":[1]},{"1078744":[5]},{"1078746":[4]},{"1078774":[2]},{"1078870":[3]},{"1078968":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1078985":[134,1,133,2,32,184,246,176,4,92,83,230]},{"1078998":[169,49,133,2,194,32,169]},{"1079006":[192,133]},{"1079009":[162,128,167]},{"1079013":[141,24,33,230]},{"1079018":[230]},{"1079020":[167]},{"1079022":[141,24,33,230]},{"1079027":[230]},{"1079029":[167]},{"1079031":[141,24,33,230]},{"1079036":[230]},{"1079038":[167]},{"1079040":[141,24,33,230]},{"1079045":[230]},{"1079047":[167]},{"1079049":[141,24,33,230]},{"1079054":[230]},{"1079056":[167]},{"1079058":[141,24,33,230]},{"1079063":[230]},{"1079065":[167]},{"1079067":[141,24,33,230]},{"1079072":[230]},{"1079074":[167]},{"1079076":[141,24,33,230]},{"1079081":[230]},{"1079083":[202,208,181,226,32,92,81,230]},{"1079092":[226,48,175,248,194,126,168,32,184,246,194,48,176,10,162]},{"1079109":[160,64]},{"1079112":[92,104,223]},{"1079116":[162]},{"1079118":[192,160]},{"1079122":[169]},{"1079124":[8,139,84,127,177,171,162]},{"1079132":[8,169]},{"1079135":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[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]},{"1081425":[143,68,80,127,175,69,80,127,240,10,169]},{"1081437":[143,69,80,127,34,230,191,164,175,70,80,127,240,10,169]},{"1081453":[143,70,80,127,34,17,168,160,40,175,67,244,126,41,255]},{"1081469":[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,77,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]},{"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,110,232,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,127,232,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,151,148,164,194,16,34,179,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,176,148,164,34,28,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,75,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,75,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,91,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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]},{"1180922":[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]},{"1180981":[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]},{"1181009":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181025":[128,3,169]},{"1181030":[226,32,250,201]},{"1181035":[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]},{"1181072":[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]},{"1181099":[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]},{"1181131":[66,240,3,73]},{"1181136":[66,137]},{"1181139":[132,240,3,73]},{"1181144":[132,133]},{"1181147":[226,32,92,222,131]},{"1181153":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181176":[12,240,3,73]},{"1181181":[12,137]},{"1181184":[3,240,3,73]},{"1181189":[3,133]},{"1181192":[226,32,92,222,131]},{"1181198":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181221":[226,32,92,222,131]},{"1181227":[173,24,66,133]},{"1181232":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181253":[173,24,66,133]},{"1181258":[173,25,66,133,1,92,222,131]},{"1181267":[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,127,134,164,34,236,134,164,107,169,14,143,1,40]},{"1181317":[169,4,143,1,40]},{"1181323":[169,13,143,1,40]},{"1181329":[169,14,143,1,40]},{"1181335":[169]},{"1181337":[143,1,40]},{"1181341":[169]},{"1181343":[143,1,40]},{"1181347":[169]},{"1181349":[143,1,40]},{"1181353":[169]},{"1181355":[143,1,40]},{"1181359":[169]},{"1181361":[143,1,40]},{"1181365":[169]},{"1181367":[143,1,40]},{"1181371":[169]},{"1181373":[143,1,40]},{"1181377":[169,1,143,1,40]},{"1181383":[169]},{"1181385":[143,1,40]},{"1181389":[169,1,143,1,40]},{"1181395":[169]},{"1181397":[143,1,40]},{"1181401":[169]},{"1181403":[143,1,40]},{"1181407":[169,10,143,1,40]},{"1181413":[169,13,143,1,40]},{"1181419":[107,72,218,162]},{"1181424":[175]},{"1181426":[40]},{"1181428":[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]},{"1181455":[175]},{"1181457":[40]},{"1181459":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181473":[232,128,235,56,175]},{"1181479":[40]},{"1181481":[72,175]},{"1181484":[40]},{"1181486":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181504":[175]},{"1181506":[40]},{"1181508":[72,175]},{"1181511":[40]},{"1181513":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181533":[40]},{"1181535":[72,175]},{"1181538":[40]},{"1181540":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181560":[40]},{"1181562":[72,175]},{"1181565":[40]},{"1181567":[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]},{"1181652":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181670":[133]},{"1181672":[165,3,41,255]},{"1181677":[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,31,136,164,132,2,100,3,24,101]},{"1181719":[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]},{"1181774":[175]},{"1181776":[40]},{"1181778":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181792":[232,128,235,56,175]},{"1181798":[40]},{"1181800":[72,175]},{"1181803":[40]},{"1181805":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181823":[175]},{"1181825":[40]},{"1181827":[72,175]},{"1181830":[40]},{"1181832":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181852":[40]},{"1181854":[72,175]},{"1181857":[40]},{"1181859":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181879":[40]},{"1181881":[72,175]},{"1181884":[40]},{"1181886":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181906":[40]},{"1181908":[133,4,175]},{"1181912":[40]},{"1181914":[72,175]},{"1181917":[40]},{"1181919":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181939":[40]},{"1181941":[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]},{"1182010":[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]},{"1182049":[153]},{"1182052":[189,2]},{"1182055":[153,2]},{"1182058":[189,4]},{"1182061":[153,64]},{"1182064":[189,6]},{"1182067":[153,66]},{"1182070":[96,189]},{"1182074":[41,255,227,9]},{"1182079":[16,153]},{"1182083":[189,2]},{"1182086":[41,255,227,9]},{"1182091":[16,153,2]},{"1182095":[189,4]},{"1182098":[41,255,227,9]},{"1182103":[16,153,64]},{"1182107":[189,6]},{"1182110":[41,255,227,9]},{"1182115":[16,153,66]},{"1182119":[96,41,255]},{"1182123":[240,3,76,94,137,76,119,137,41,255]},{"1182134":[208,6,162,148,144,76,119,137,58,58,208,6,162,148,144,76,94,137,58,208,6,162,156,144,76,94,137,58,208,6,162,164,144,76,94,137,58,208,6,162,172,144,76,94,137,58,208,6,162,180,144,76,94,137,58,208,6,162,188,144,76,94,137,162,196,144,76,94,137,165,26,41,1]},{"1182208":[240,2,128,14,32,33,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182238":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182254":[5,112,9]},{"1182258":[28,141,142,17,24,105,16]},{"1182266":[141,206,17,175,2,5,112,9]},{"1182275":[28,141,144,17,24,105,16]},{"1182283":[141,208,17,175,4,5,112,9]},{"1182292":[28,141,146,17,24,105,16]},{"1182300":[141,210,17,175,6,5,112,9]},{"1182309":[28,141,148,17,24,105,16]},{"1182317":[141,212,17,175,8,5,112,9]},{"1182326":[28,141,78,18,24,105,16]},{"1182334":[141,142,18,175,10,5,112,9]},{"1182343":[28,141,80,18,24,105,16]},{"1182351":[141,144,18,175,12,5,112,9]},{"1182360":[28,141,82,18,24,105,16]},{"1182368":[141,146,18,175,14,5,112,9]},{"1182377":[28,141,84,18,24,105,16]},{"1182385":[141,148,18,32,204,144,175,142,3,112,41,64]},{"1182398":[240,31,175,64,3,112,41,255]},{"1182407":[240,11,162,20,143,160,220,16,32,94,137,128,40,162,36,143,160,220,16,32,94,137,128,29,175,64,3,112,41,255]},{"1182438":[240,11,162,12,143,160,220,16,32,94,137,128,9,162,12,143,160,220,16,32,119,137,175,140,3,112,41,192]},{"1182467":[201,192]},{"1182470":[208,11,162,60,143,160,224,16,32,94,137,128,49,175,140,3,112,41,64]},{"1182490":[240,11,162,52,143,160,224,16,32,94,137,128,29,175,140,3,112,41,128]},{"1182510":[240,11,162,44,143,160,224,16,32,94,137,128,9,162,44,143,160,224,16,32,119,137,162,68,143,160,228,16,175,66,3,112,32,168,137,175,140,3,112,41,16]},{"1182552":[240,11,162,28,144,160,236,16,32,94,137,128,9,162,28,144,160,236,16,32,119,137,175,140,3,112,41,8]},{"1182581":[240,11,162,20,144,160,232,16,32,94,137,128,9,162,20,144,160,232,16,32,119,137,175,140,3,112,41,3]},{"1182610":[240,11,162,156,143,160,228,17,32,94,137,128,9,162,156,143,160,228,17,32,119,137,175,140,3,112,41,4]},{"1182639":[240,11,162,148,143,160,92,18,32,94,137,128,9,162,148,143,160,92,18,32,119,137,162,84,143,160,92,17,175,69,3,112,32,168,137,162,92,143,160,96,17,175,70,3,112,32,168,137,162,100,143,160,100,17,175,71,3,112,32,168,137,162,108,143,160,104,17,175,72,3,112,32,168,137,162,116,143,160,108,17,175,73,3,112,32,168,137,162,124,143,160,220,17,175,74,3,112,32,168,137,162,132,143,160,224,17,175,75,3,112,32,168,137,162,140,143,160,232,17,175,77,3,112,32,168,137,162,164,143,160,236,17,175,78,3,112,32,168,137,162,172,143,160,96,18,175,80,3,112,32,168,137,162,180,143,160,100,18,175,81,3,112,32,168,137,162,188,143,160,104,18,175,82,3,112,32,168,137,162,196,143,160,108,18,175,83,3,112,32,168,137,160,242,16,175,92,3,112,32,179,137,160,114,17,175,93,3,112,32,179,137,160,242,17,175,94,3,112,32,179,137,160,114,18,175,95,3,112,32,179,137,175,89,3,112,41,255]},{"1182877":[208,11,162,36,144,160,248,16,32,119,137,128,65,58,208,11,162,36,144,160,248,16,32,94,137,128,51,58,208,11,162,44,144,160,248,16,32,94,137,128,37,58,208,11,162,52,144,160,248,16,32,94,137,128,23,58,208,11,162,60,144,160,248,16,32,94,137,128,9,162,36,144,160,248,16,32,119,137,175,90,3,112,41,255]},{"1182962":[208,11,162,68,144,160,120,17,32,119,137,128,37,58,208,11,162,68,144,160,120,17,32,94,137,128,23,58,208,11,162,76,144,160,120,17,32,94,137,128,9,162,84,144,160,120,17,32,94,137,175,91,3,112,41,255]},{"1183019":[208,11,162,92,144,160,248,17,32,94,137,128,23,58,208,11,162,100,144,160,248,17,32,94,137,128,9,162,108,144,160,248,17,32,94,137,175,107,3,112,41,255]},{"1183062":[208,11,162,116,144,160,120,18,32,94,137,128,37,58,208,11,162,124,144,160,120,18,32,94,137,128,23,58,208,11,162,132,144,160,120,18,32,94,137,128,9,162,140,144,160,120,18,32,94,137,175,72,4,112,41,255]},{"1183119":[34,255,151,160,175,6,80,127,41,255]},{"1183130":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183144":[24,105,16,30,141,250,18,162,212,143,160,252,16,175,85,3,112,32,168,137,175,84,3,112,41,255]},{"1183171":[208,11,162,4,144,160,124,17,32,119,137,128,23,58,208,11,162,4,144,160,124,17,32,94,137,128,9,162,12,144,160,124,17,32,94,137,162,204,143,160,252,17,175,86,3,112,32,168,137,162,220,143,160,124,18,175,87,3,112,32,168,137,175,116,3,112,41,4]},{"1183240":[240,11,162,236,143,160,28,19,32,94,137,128,9,162,228,143,160,28,19,32,94,137,175,116,3,112,41,2]},{"1183269":[240,11,162,244,143,160,32,19,32,94,137,128,9,162,228,143,160,32,19,32,94,137,175,116,3,112,41,1]},{"1183298":[240,11,162,252,143,160,36,19,32,94,137,128,9,162,228,143,160,36,19,32,94,137,175,122,3,112,41,2]},{"1183327":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183351":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183375":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183399":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183423":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183447":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183471":[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]},{"1183517":[10,186,10,185,6]},{"1183523":[10]},{"1183525":[10,20,10,19,6]},{"1183531":[10,5,14,6,14]},{"1183537":[30,22,14,5,6,6,6]},{"1183545":[30,22,6,182,14,182,6,182,142,182,134]},{"1183557":[6,21,6,48,6]},{"1183563":[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,255,151,160,175,4,80,127,41,255]},{"1183973":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183987":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1184001":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1184015":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184039":[34,255,151,160,175,6,80,127,41,255]},{"1184050":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184064":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184078":[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]},{"1184109":[34,255,151,160,175,6,80,127,41,255]},{"1184120":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184134":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184151":[4,169,136,1,157]},{"1184157":[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]},{"1184260":[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]},{"1184312":[141,2,20,165,16,41,255]},{"1184320":[201,1]},{"1184323":[208,107,175,135,128,48,41,255]},{"1184332":[201,2]},{"1184335":[208,95,8,226,48,218,90,34,53,181,164,122,250,40,41,255]},{"1184352":[208,78,169,110,29,141,142,19,24,105,16]},{"1184364":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184377":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184390":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184403":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184416":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184429":[141,216,19,226,32,107,34,147,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]},{"1184545":[189,4,16,9]},{"1184550":[32,157,4,16,202,202,208,243,162,60]},{"1184561":[189,68,16,9]},{"1184566":[32,157,68,16,202,202,208,243,162,60]},{"1184577":[189,132,16,9]},{"1184582":[32,157,132,16,202,202,208,243,162,60]},{"1184593":[189,196,16,9]},{"1184598":[32,157,196,16,202,202,208,243,162,60]},{"1184609":[189,4,17,9]},{"1184614":[32,157,4,17,202,202,208,243,162,60]},{"1184625":[189,68,17,9]},{"1184630":[32,157,68,17,202,202,208,243,162,60]},{"1184641":[189,132,17,9]},{"1184646":[32,157,132,17,202,202,208,243,162,60]},{"1184657":[189,196,17,9]},{"1184662":[32,157,196,17,202,202,208,243,162,60]},{"1184673":[189,4,18,9]},{"1184678":[32,157,4,18,202,202,208,243,162,60]},{"1184689":[189,68,18,9]},{"1184694":[32,157,68,18,202,202,208,243,162,60]},{"1184705":[189,132,18,9]},{"1184710":[32,157,132,18,202,202,208,243,162,60]},{"1184721":[189,196,18,9]},{"1184726":[32,157,196,18,202,202,208,243,162,60]},{"1184737":[189,4,19,9]},{"1184742":[32,157,4,19,202,202,208,243,162,60]},{"1184753":[189,68,19,9]},{"1184758":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184771":[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]},{"1184806":[67,169,24,141,1,67,169]},{"1184814":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184829":[141,2,67,169,208,141,3,67,173]},{"1184839":[33,72,169,128,141]},{"1184845":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184862":[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]},{"1184890":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,151,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184927":[128,51,159]},{"1184931":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184952":[28,141,206,16,24,105,16]},{"1184960":[141,14,17,175,219,3,112,9]},{"1184969":[28,141,208,16,24,105,16]},{"1184977":[141,16,17,175,221,3,112,9]},{"1184986":[28,141,210,16,24,105,16]},{"1184994":[141,18,17,175,223,3,112,9]},{"1185003":[28,141,212,16,24,105,16]},{"1185011":[141,20,17,175,108,3,112,41,255]},{"1185021":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185035":[153]},{"1185038":[200,200,202,208,8,72,152,24,105,44]},{"1185049":[168,104,198,2,208,236,32,33,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185073":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185095":[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]},{"1185134":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,53,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]},{"1185189":[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]},{"1185227":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185241":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,254,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185274":[141,18,11,107,110]},{"1185280":[111]},{"1185282":[112]},{"1185284":[113]},{"1185286":[115]},{"1185288":[116]},{"1185290":[117]},{"1185292":[118]},{"1185294":[120]},{"1185296":[121]},{"1185298":[122]},{"1185300":[123]},{"1185302":[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]},{"1185330":[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]},{"1185366":[143]},{"1185368":[81,127,200,200,183]},{"1185374":[143,2,81,127,200,200,183]},{"1185382":[143,4,81,127,200,200,183]},{"1185390":[143,6,81,127,169,2]},{"1185397":[133,4,34,64,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185425":[170,191]},{"1185428":[81,127,72,169]},{"1185434":[143]},{"1185436":[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]},{"1185498":[72,165,2,72,169,188,234,133]},{"1185507":[169,1]},{"1185510":[133,2,138,74,34,59,150,164,133,12,104,133,2,104,133]},{"1185526":[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]},{"1185558":[189,238,152,159]},{"1185563":[201,126,232,232,224,128,144,243,160]},{"1185573":[162]},{"1185575":[218,187,191,21,130,48,250,41,31]},{"1185585":[10,10,10,90,168,185,238,151,159,24,201,126,185,240,151,159,26,201,126,185,242,151,159,88,201,126,185,244,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,105,151,40,122,250,104,171,107,72,218,173]},{"1185645":[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]},{"1185675":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185696":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185719":[33,72,169,128,141]},{"1185725":[33,169,1,141,11,66,104,141]},{"1185734":[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]},{"1185762":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185787":[30,22,14]},{"1185791":[6,21,6,48,6]},{"1185797":[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]},{"1186167":[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]},{"1186243":[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]},{"1186340":[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]},{"1186397":[39,1,1,1,1,1,2,2,39,39,39]},{"1186413":[39,1,1,1,32,1,2,2,39,39,39]},{"1186429":[39,1,1,1,1,32,2,2,2,2,2]},{"1186445":[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]},{"1186489":[44]},{"1186491":[78,79,1,1,1,1,1,1,2,1,2]},{"1186503":[46]},{"1186507":[2,34,1,1,2]},{"1186515":[24,18,2,2]},{"1186520":[72]},{"1186525":[1,1,2]},{"1186529":[1,1,16,26,2]},{"1186536":[72]},{"1186541":[16,16,2]},{"1186545":[1,1,1,1]},{"1186551":[72]},{"1186554":[9]},{"1186557":[2,2,2]},{"1186561":[1,1,43]},{"1186566":[9]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186621":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186637":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186653":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186670":[2,2,2]},{"1186675":[2,2,2,2]},{"1186686":[2,2,2,2,41,2,2,2,2]},{"1186701":[1,1,1,1,1,1,1,1,1,1,1]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186731":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186749":[1,1,67,1,1,1,1,1,2,2,2]},{"1186765":[80,2,84,81,87,87,86,86,39,39,39]},{"1186777":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186793":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186809":[72,2,2]},{"1186813":[39,2,82,83,9,1,26,16,85,85]},{"1186825":[72,2,2]},{"1186829":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186851":[9,9,9,9,9,72,9,41]},{"1186860":[75,2,2,2]},{"1186865":[8,2,2]},{"1186872":[1]},{"1186875":[32]},{"1186877":[2,2,2,2,2,2,2]},{"1186886":[1,1,1,2]},{"1186891":[8]},{"1186893":[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]},{"1186993":[240,2,128,23,169,15,2,166,138,224,51]},{"1187005":[208,4,143,168,34,126,224,47]},{"1187014":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187028":[208,5,175,135,242,126,107,169,32]},{"1187038":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187061":[191,54,157,164,197,34,176,29,191,56,157,164,197,34,144,21,191,58,157,164,197,32,176,13,191,60,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187103":[201,184]},{"1187106":[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]},{"1187137":[10]},{"1187139":[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]},{"1187169":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187192":[143]},{"1187194":[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]},{"1187225":[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]},{"1187268":[112]},{"1187270":[240,14,48,15,32,1,96,1,208,10]},{"1187281":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187300":[64]},{"1187302":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187316":[201,5]},{"1187319":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187335":[208,18,173,10,4,41,255]},{"1187343":[201,67]},{"1187346":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187362":[208,25,173,10,4,41,255]},{"1187370":[201,91]},{"1187373":[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]},{"1187409":[176,5,10,170,252,98,158,171,194,48,162,30]},{"1187422":[169,190,13,107,98,159,98,159,98,159,99,159,98,159,142,159,98,159,136,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,215,160,98,159,98,159,98,159,222,160,98,159,98,159,98,159,98,159,98,159,98,159,253,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,151,163,98,159,98,159,98,159,98,159,98,159,98,159,179,163,98,159,117,167,248,169,98,159,255,169,98,159,98,159,98,159,98,159,54,170,98,159,11,167,98,159,98,159,98,159,98,159,98,159,98,159,172,170,98,159,35,171,98,159,1,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,42,171,98,159,98,159,98,159,49,171,98,159,98,159,98,159,98,159,98,159,98,159,77,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,31,173,45,173,98,159,98,159,38,173,98,159,52,173,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187698":[141,186,41,169,4,1,141,188,41,169,198]},{"1187710":[141,52,42,141,56,42,141,58,42,169,52]},{"1187722":[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]},{"1187825":[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]},{"1187972":[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]},{"1188051":[141,38,40,96,169,52]},{"1188058":[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]},{"1188171":[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]},{"1188207":[141,40,44,141,174,47,169,52]},{"1188216":[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]},{"1188255":[141,54,44,141,168,47,169,174]},{"1188264":[141,172,44,169,175]},{"1188270":[141,174,44,169,126]},{"1188276":[141,176,44,169,127]},{"1188282":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188300":[141,44,45,169,20]},{"1188306":[141,46,45,169,21]},{"1188312":[141,48,45,169,168]},{"1188318":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188336":[141,172,45,169,28]},{"1188342":[141,174,45,169,29]},{"1188348":[141,176,45,169,118]},{"1188354":[141,178,45,169,241]},{"1188360":[141,44,46,169,78]},{"1188366":[141,46,46,169,79]},{"1188372":[141,48,46,169,217]},{"1188378":[141,50,46,169,154]},{"1188384":[141,172,46,169,155]},{"1188390":[141,174,46,169,156]},{"1188396":[141,176,46,169,149]},{"1188402":[141,178,46,169,52]},{"1188408":[141,40,48,141,44,48,169,53]},{"1188417":[141,42,48,141,50,48,169,218]},{"1188426":[141,46,48,169,226]},{"1188432":[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]},{"1188513":[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]},{"1188597":[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]},{"1188654":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188670":[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]},{"1188762":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188783":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188799":[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]},{"1188841":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188862":[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]},{"1188928":[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]},{"1188958":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188976":[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]},{"1189003":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189024":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189042":[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]},{"1189111":[141,226,34,169,2,3,141,228,34,169,204]},{"1189123":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189147":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189168":[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]},{"1189210":[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]},{"1189243":[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]},{"1189338":[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]},{"1189471":[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]},{"1189564":[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]},{"1189639":[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]},{"1189773":[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]},{"1189818":[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]},{"1190136":[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]},{"1190181":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190199":[141,134,41,169,229]},{"1190205":[141,136,41,169]},{"1190210":[1,141,162,41,169,113]},{"1190217":[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]},{"1190262":[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]},{"1190298":[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]},{"1190325":[141,26,44,169,206]},{"1190331":[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]},{"1190395":[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]},{"1190450":[141,86,47,96,169,116,7,141]},{"1190459":[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]},{"1190501":[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]},{"1190717":[141,162,36,141,164,36,169,227]},{"1190726":[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]},{"1190853":[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]},{"1190883":[141,30,50,169,218]},{"1190889":[141,32,50,141,154,50,169,225]},{"1190898":[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]},{"1190943":[141,26,50,169,242]},{"1190949":[141,184,59,169,8,1,141,56,60,169,52]},{"1190961":[141,190,59,175,197,243,126,41,255]},{"1190971":[201,3]},{"1190974":[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]},{"1191117":[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,131,176,194,32,166,6,138,9]},{"1191348":[36,143,90,199,126,166,7,138,9]},{"1191358":[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,33,176,166,4,138,9]},{"1191391":[36,143,80,199,126,166,5,138,9]},{"1191401":[36,143,82,199,126,166,6,138,9]},{"1191411":[36,143,84,199,126,166,7,138,9]},{"1191421":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,131,176,194,32,166,6,138,9]},{"1191454":[36,143,96,199,126,166,7,138,9]},{"1191464":[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]},{"1191496":[175,24,244,126,32,92,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191518":[36,143,44,199,126,166,6,138,9]},{"1191528":[36,143,46,199,126,166,7,138,9]},{"1191538":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,92,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191574":[36,143,52,199,126,166,6,138,9]},{"1191584":[36,143,54,199,126,166,7,138,9]},{"1191594":[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]},{"1191627":[240,4,34,157,176,164,226,32,175,111,243,126,201,255,240,34,32,131,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191658":[9]},{"1191660":[36,143,100,199,126,166,7,138,9]},{"1191670":[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]},{"1191701":[24,105,7]},{"1191705":[41,248,255,170,175,202,80,127,41,255]},{"1191716":[208,3,130,215]},{"1191721":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191734":[165,26,41,12]},{"1191739":[74,74,240,58,201,1]},{"1191746":[240,98,201,2]},{"1191751":[208,3,130,180]},{"1191756":[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]},{"1191989":[144,6,200,233,100]},{"1191995":[128,245,132,5,160,144,201,10]},{"1192004":[144,6,200,233,10]},{"1192010":[128,245,132,6,160,144,201,1]},{"1192019":[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]},{"1192109":[240,11,175,100,243,126,63,222,176,164,208,1,107,124,250,176,32,131,176,194,32,166,6,138,9]},{"1192135":[36,143,148,199,126,166,7,138,9]},{"1192145":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192159":[128]},{"1192161":[64]},{"1192163":[32]},{"1192165":[16]},{"1192167":[8]},{"1192169":[4]},{"1192171":[2]},{"1192173":[1,128]},{"1192176":[64]},{"1192178":[32]},{"1192180":[16]},{"1192182":[8]},{"1192184":[4]},{"1192186":[22,177,22,177,49,177,74,177,102,177,127,177,152,177,177,177,202,177,229,177]},{"1192207":[178,27,178,52,178,79,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,189,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,189,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,189,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,189,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,189,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,189,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,189,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,189,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,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,189,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,189,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,189,176,107,159]},{"1192556":[4,112,159]},{"1192560":[5,112,159]},{"1192564":[6,112,159]},{"1192568":[7,112,159]},{"1192572":[8,112,159]},{"1192576":[9,112,159]},{"1192580":[10,112,159]},{"1192584":[11,112,159]},{"1192588":[12,112,159]},{"1192592":[13,112,159]},{"1192596":[14,112,159]},{"1192600":[15,112,107,159]},{"1192605":[244,126,159]},{"1192609":[101,127,159]},{"1192613":[102,127,159]},{"1192617":[103,127,159]},{"1192621":[104,127,159]},{"1192625":[105,127,159]},{"1192629":[106,127,159]},{"1192633":[107,127,159]},{"1192637":[108,127,159]},{"1192641":[109,127,159]},{"1192645":[110,127,159]},{"1192649":[111,127,107,72,226,48,173]},{"1192657":[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]},{"1192685":[141]},{"1192687":[67,169,128,141,1,67,169]},{"1192695":[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]},{"1192723":[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]},{"1192763":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192778":[72,171,173]},{"1192782":[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]},{"1192812":[67,141,1,67,169]},{"1192818":[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]},{"1192846":[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]},{"1192886":[67,194,48,171,104,162]},{"1192894":[138,107,165,17,34,156,135]},{"1192902":[213,179,164,237,179,164,12,180,164,13,181,164,35,181,164,169,128,141,16,7,34,61,137]},{"1192926":[34,51,131]},{"1192930":[34,151,148,164,169,7,133,20,230,17,107,32,44,182,100,200,100,201,34,53,181,164,208,11,162,15,169]},{"1192958":[159]},{"1192960":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,156,182,165,246,41,16,240,3,32,232,183,165,246,41,32,240,3,32,245,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,233,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,245,183,128,52,201,242,208,5,32,232,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193151":[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,154,183,32,79,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,53,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]},{"1193275":[16,112,208,3,130,161]},{"1193282":[202,16,244,194,32,162,14,169]},{"1193292":[159,208,80,127,202,202,16,248,32,232,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]},{"1193333":[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]},{"1193362":[133,4,34,64,178,160,226,32,175]},{"1193372":[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]},{"1193447":[107,169]},{"1193451":[133]},{"1193453":[133,2,169,11]},{"1193458":[133,4,166]},{"1193462":[191]},{"1193464":[16,112,58,41,31]},{"1193470":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193495":[16,6,24,105,8]},{"1193501":[230,2,133,4,165]},{"1193507":[26,133]},{"1193510":[201,16]},{"1193513":[144,201,96,173]},{"1193518":[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]},{"1193546":[141]},{"1193548":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,196,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]},{"1193626":[67,96,194,32,165,200,41,255]},{"1193635":[10,170,191,231,182,164,24,105,132,96,235,143,2,17]},{"1193650":[165,201,41,255]},{"1193655":[10,170,191,7,183,164,24,105,163,97,235,143,18,17]},{"1193670":[235,24,105,32]},{"1193675":[235,143,30,17]},{"1193680":[235,24,105,3]},{"1193685":[235,143,38,17]},{"1193690":[235,24,105,61]},{"1193695":[235,143,46,17]},{"1193700":[226,32,96,64]},{"1193705":[67]},{"1193707":[70]},{"1193709":[73]},{"1193711":[76]},{"1193713":[79]},{"1193715":[82]},{"1193717":[85]},{"1193719":[160]},{"1193721":[163]},{"1193723":[166]},{"1193725":[169]},{"1193727":[172]},{"1193729":[175]},{"1193731":[178]},{"1193733":[181]},{"1193735":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193755":[66]},{"1193757":[69]},{"1193759":[72]},{"1193761":[75]},{"1193763":[78]},{"1193765":[81]},{"1193767":[84]},{"1193769":[87]},{"1193771":[159]},{"1193773":[162]},{"1193775":[165]},{"1193777":[168]},{"1193779":[171]},{"1193781":[174]},{"1193783":[177]},{"1193785":[180]},{"1193787":[183]},{"1193789":[255]},{"1193791":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193814":[10,170,191,231,182,164,24,105,132,96,235,143,10,17]},{"1193829":[165,201,41,255]},{"1193834":[10,170,191,7,183,164,24,105,163,97,235,143,58,17]},{"1193849":[235,24,105,32]},{"1193854":[235,143,70,17]},{"1193859":[235,24,105,3]},{"1193864":[235,143,78,17]},{"1193869":[235,24,105,61]},{"1193874":[235,143,86,17]},{"1193879":[226,32,96,194,48,162,15]},{"1193887":[191]},{"1193889":[16,112,41,255]},{"1193894":[155,10,10,10,133]},{"1193900":[152,10,10,10,10,133,3,166]},{"1193909":[191,230,151,164,166,3,157,6,16,166]},{"1193920":[191,232,151,164,166,3,157,8,16,166]},{"1193931":[191,234,151,164,166,3,157,14,16,166]},{"1193942":[191,236,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]},{"1193989":[51,1,10,2,10]},{"1193995":[2,5,14,6,14]},{"1194001":[2]},{"1194003":[6,21,6]},{"1194007":[2,12,14,13,14]},{"1194013":[2,98,6,99,6]},{"1194019":[2,10,2,11,2]},{"1194025":[2,32,14,33,14]},{"1194031":[2,133,26,134,26]},{"1194037":[2,171,30,171,30,97,195]},{"1194045":[51,17,10,18,10]},{"1194051":[2]},{"1194053":[30,22,14]},{"1194057":[2,48,6]},{"1194061":[30]},{"1194063":[2,28,14,28,78]},{"1194069":[2,114,6,115,6]},{"1194075":[2,26,2,27,2]},{"1194081":[2,48,14,49,14]},{"1194087":[2,149,26,150,26]},{"1194093":[2,171,30,171,30,98,3]},{"1194101":[51,7,10,23,202]},{"1194107":[2,8,10,24,202]},{"1194113":[2,9,10,25,202]},{"1194119":[2,44,6,44,70]},{"1194125":[2,34,2,35,2]},{"1194131":[2,36,2,37,2]},{"1194137":[2,38,14,39,14]},{"1194143":[2,40,10,41,10]},{"1194149":[2,138,29]},{"1194153":[2,98,35]},{"1194157":[51,23,10,7,202]},{"1194163":[2,24,10,8,202]},{"1194169":[2,25,10,9,202]},{"1194175":[2,60,6,61,6]},{"1194181":[2,50,2,51,2]},{"1194187":[2,52,2,53,2]},{"1194193":[2,54,14,55,14]},{"1194199":[2,56,10,57,10]},{"1194205":[2,154,29]},{"1194209":[2,98,99]},{"1194213":[51,42,26,43,26]},{"1194219":[2,64,30,65,30]},{"1194225":[2,66,26,66,90]},{"1194231":[2,29,6,30,6]},{"1194237":[2,72,6,73,6]},{"1194243":[2,74,14,75,14]},{"1194249":[2,76,22,77,22]},{"1194255":[2,78,2,79,2]},{"1194261":[2]},{"1194263":[2,139,29,98,131]},{"1194269":[51,58,26,59,26]},{"1194275":[2,80,30,81,30]},{"1194281":[2,82,26,83,26]},{"1194287":[2,45,6,46,6]},{"1194293":[2,88,6,89,6]},{"1194299":[2,90,14,91,14]},{"1194305":[2,92,22,93,22]},{"1194311":[2,94,2,95,2]},{"1194317":[2]},{"1194319":[2,155,29,98,195]},{"1194325":[51,14,14,15,14]},{"1194331":[2,100,6,101,6]},{"1194337":[2,109,10,110,10]},{"1194343":[2,111,26,111,90]},{"1194349":[2,129,6,129,70]},{"1194355":[2,130,10,131,10]},{"1194361":[2,132,6,132,70]},{"1194367":[2,47,74,47,10]},{"1194373":[2,103,94,103,30,98,227]},{"1194381":[51,31,78,31,14]},{"1194387":[2,116,6,117,6]},{"1194393":[2,125,10,126,10]},{"1194399":[2,127,26,127,90]},{"1194405":[2,145,6,145,70]},{"1194411":[2,146,10,147,10]},{"1194417":[2,148,6,148,70]},{"1194423":[2,62,10,63,10]},{"1194429":[2,103,222,103,158,255,255,96,132]},{"1194439":[3,134,29,134,29,96,164]},{"1194447":[3,150,29,150,29,96,135]},{"1194455":[3,134,29,134,29,96,167]},{"1194463":[3,150,29,150,29,96,138]},{"1194471":[3,134,29,134,29,96,170]},{"1194479":[3,150,29,150,29,96,141]},{"1194487":[3,134,29,134,29,96,173]},{"1194495":[3,150,29,150,29,96,144]},{"1194503":[3,134,29,134,29,96,176]},{"1194511":[3,150,29,150,29,96,147]},{"1194519":[3,134,29,134,29,96,179]},{"1194527":[3,150,29,150,29,96,150]},{"1194535":[3,134,29,134,29,96,182]},{"1194543":[3,150,29,150,29,96,153]},{"1194551":[3,134,29,134,29,96,185]},{"1194559":[3,150,29,150,29,96,228]},{"1194567":[3,134,29,134,29,97,4]},{"1194575":[3,150,29,150,29,96,231]},{"1194583":[3,134,29,134,29,97,7]},{"1194591":[3,150,29,150,29,96,234]},{"1194599":[3,134,29,134,29,97,10]},{"1194607":[3,150,29,150,29,96,237]},{"1194615":[3,134,29,134,29,97,13]},{"1194623":[3,150,29,150,29,96,240]},{"1194631":[3,134,29,134,29,97,16]},{"1194639":[3,150,29,150,29,96,243]},{"1194647":[3,134,29,134,29,97,19]},{"1194655":[3,150,29,150,29,96,246]},{"1194663":[3,134,29,134,29,97,22]},{"1194671":[3,150,29,150,29,96,249]},{"1194679":[3,134,29,134,29,97,25]},{"1194687":[3,150,29,150,29,96,196]},{"1194695":[3]},{"1194697":[2]},{"1194699":[2,96,196]},{"1194703":[3,103,222,103,158,97,130]},{"1194711":[7]},{"1194713":[2]},{"1194715":[2]},{"1194717":[2]},{"1194719":[2,97,162,128,3]},{"1194725":[2]},{"1194727":[2,97,165,128,3]},{"1194733":[2]},{"1194735":[2,97,226]},{"1194739":[7]},{"1194741":[2]},{"1194743":[2]},{"1194745":[2]},{"1194747":[2,97,130]},{"1194751":[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]},{"1194779":[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]},{"1194818":[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]},{"1194945":[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]},{"1195005":[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,4,188,164,107,143,111,243,126,218,175,67,244,126,208,4,34,80,192,160,34,198,155,160,90,160,24,34,182,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,80,192,160,34,198,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195124":[208,11,40,90,160,24,34,182,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,198,155,160,107,72,175,67,244,126,208,4,34,222,192,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,4,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,4,188,164,104,34,168,160,2,107,58,16,8,169]},{"1195380":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195394":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,4,188,169,1,143]},{"1195420":[80,127,156,70,6,156,66,6,76,4,188,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,222,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195643":[83,127,201,3,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,174,191,164,226,48,169]},{"1195681":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195739":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195797":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,57,191,34,231,244,30,32,121,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,89,133,8,169,191,105]},{"1195854":[133,9,34,117,223,5,34,92,220,6,96]},{"1195867":[247,255,198]},{"1195872":[2]},{"1195877":[200]},{"1195880":[2]},{"1195883":[248,255,198]},{"1195888":[2]},{"1195893":[202,64]},{"1195896":[2,175,103,129,48,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]},{"1195935":[219,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195954":[84,34,161,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195980":[98,41,110,41,107,41,105,41,127]},{"1195990":[111,41,97,41,106,41,112,41,127]},{"1196000":[112,41,107,41,127]},{"1196006":[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]},{"1196053":[33,218,162,128,142]},{"1196059":[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]},{"1196087":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196104":[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]},{"1196195":[208,33,8,194,48,162]},{"1196203":[224,64]},{"1196206":[176,11,169,127]},{"1196211":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196234":[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]},{"1196281":[240,7,224,2,240,3,130,137]},{"1196290":[130,132]},{"1196293":[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]},{"1196439":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196456":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196472":[224,28]},{"1196475":[176,12,191,186,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196492":[175,211,244,126,41,255]},{"1196499":[58,201,64]},{"1196503":[176,63,10,10,10,10,10,170,192,60]},{"1196514":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196537":[176,11,169,127]},{"1196542":[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,195,184,160,122,218,90,8,194,48,162]},{"1196698":[224,16]},{"1196701":[176,12,191,214,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196718":[175,152,192,126,41,255]},{"1196725":[58,201,64]},{"1196729":[176,63,10,10,10,10,10,170,192,48]},{"1196740":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196763":[176,11,169,127]},{"1196768":[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]},{"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]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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/base2current_extendedmsu.json b/data/base2current_extendedmsu.json index 821e91da..adf339c2 100644 --- a/data/base2current_extendedmsu.json +++ b/data/base2current_extendedmsu.json @@ -1 +1 @@ -[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[192]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,193,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,162,133,164]},{"2027":[128,50]},{"2379":[34,214,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,68,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[2]},{"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,122,199,160]},{"21847":[34,82,200,160,234]},{"21854":[34,92,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92,235,252]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,126,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[110,163,160]},{"30994":[240,163,160]},{"31001":[110,163,160]},{"31011":[240,163,160]},{"31046":[4,188,164]},{"31102":[34,219,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[235,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,23,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,136,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,174,150,164,234]},{"60423":[34,33,194,164]},{"60790":[7,189,164]},{"61077":[28,181,160]},{"61133":[34,108,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,16,239,160]},{"65607":[28,238,160]},{"65778":[34,34,143,160,234,234]},{"65879":[34,87,194,160,234]},{"65894":[34,133,194,160]},{"66284":[34,168,194,160]},{"66292":[92,68,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,18,241,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,152,189,164,234,234]},{"67934":[139,248,160]},{"68474":[34,135,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[143,248,160]},{"69737":[34,221,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[143,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,61,246,160,234]},{"72216":[189,187,164]},{"72241":[34,133,194,160]},{"72246":[246,153,160]},{"73041":[34,242,154,160]},{"73263":[19,238,160]},{"73340":[34,241,128,160,234]},{"73937":[34,149,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,21,239,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,4,248,160,234]},{"78138":[205,246,160]},{"78172":[34,51,189,164,34,219,153,160,234,234]},{"79603":[34,241,187,164]},{"79767":[34,167,189,164]},{"82376":[234,234]},{"82676":[143,248,160]},{"87784":[234,234,234]},{"87892":[34,26,246,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,79,240,160]},{"90651":[34,115,237,160,234,234]},{"93230":[34,238,157,164,234,234]},{"93325":[34,170,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,238,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,205,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[107,194,164]},{"166331":[34,242,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[95,181,160]},{"173058":[95,181,160]},{"173307":[95,181,160]},{"173320":[95,181,160]},{"183384":[34,250,247,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,242,154,160]},{"187902":[34,9,155,160]},{"188153":[0]},{"188235":[237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,224,151,160]},{"188959":[34,158,236,160,128,13]},{"189655":[34,12,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[50,194,164]},{"191439":[34,41,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,61,197,160,234,234]},{"192037":[34,9,155,160]},{"192083":[34,107,143,160,234,234]},{"192095":[34,81,195,160,234]},{"192121":[169,195,160]},{"192140":[34,74,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,105,133,160]},{"192350":[189,133,160]},{"192378":[9,133,160]},{"192463":[194,132,160]},{"192506":[34,124,133,160,234,234,234,234,234,234]},{"192561":[212,132,160]},{"192650":[34,126,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,93,143,160]},{"192893":[34,9,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,242,154,160]},{"193025":[7,144,160]},{"193033":[34,242,154,160]},{"193140":[34,10,179,160]},{"193157":[34,3,179,160]},{"193440":[34,240,219,160]},{"193472":[51,236,160]},{"193546":[34,240,219,160]},{"193578":[251,235,160]},{"193854":[34,116,143,160]},{"193859":[32]},{"193888":[209,194,160]},{"194141":[34,193,195,160,234,234,234,234,234]},{"194177":[34,39,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,158,236,160]},{"195327":[34,27,143,160,240,2,96,234]},{"195539":[34,39,199,160]},{"195589":[89,176,160]},{"195710":[34,117,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[50,176,160]},{"195909":[60,176,160]},{"196477":[34,9,155,160]},{"196497":[34,242,154,160]},{"197750":[168,192,160]},{"198721":[34,210,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,38,187,164]},{"198942":[34,77,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,64,143,160]},{"199659":[34,8,166,160,96,234]},{"199950":[34,100,143,160]},{"199964":[243,175,160]},{"199993":[34,70,176,160]},{"200070":[34,50,143,160]},{"200470":[34,43,143,160]},{"200845":[34,57,143,160,201]},{"200851":[240]},{"200853":[34,57,143,160]},{"200858":[8]},{"200893":[34,64,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,173,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[73,143,160]},{"208994":[34,64,143,160,234,234]},{"209010":[139]},{"209098":[236,143,160]},{"209199":[41,247]},{"210057":[92,36,220,160,234,234,234,234]},{"210164":[143,143,160]},{"211413":[209,143,160]},{"212333":[69,194,164]},{"212610":[88,194,164]},{"213139":[27,191,164]},{"213169":[147,133,160]},{"214205":[34,168,180,160]},{"214972":[58,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,84,188,164]},{"217579":[34,74,193,160]},{"224597":[34,240,218,160]},{"224693":[34,4,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,18,220,160,234]},{"226304":[34,69,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,243,238,160]},{"229634":[34,117,192,164]},{"230816":[40,179,160]},{"230955":[40,179,160]},{"233256":[33,153,160]},{"233266":[34,165,128,160]},{"233297":[34,252,238,160,234]},{"233987":[90,187,164]},{"234731":[34,183,187,164]},{"234747":[34,7,239,160]},{"235953":[34,35,133,160,144,3]},{"236024":[200,204,160]},{"236047":[42,193,160]},{"236578":[34,83,134,164]},{"237653":[34,108,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,0,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[249,197,160]},{"238498":[34,130,196,160,128,3]},{"238562":[34,197,198,160,240,4,234]},{"238751":[34,134,220,160]},{"238964":[34,134,220,160]},{"239190":[34,134,220,160]},{"239964":[77,189,164]},{"240044":[92,223,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,102,219,160]},{"241165":[34,102,219,160]},{"241175":[34,235,128,164]},{"241294":[34,102,219,160]},{"241304":[34,235,128,164]},{"241814":[34,102,219,160,24,125,139,176]},{"241869":[152,236,160]},{"241877":[34,102,219,160,24,125,139,176]},{"242942":[34,12,237,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,204,188,164,234]},{"243067":[234,234,34,181,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,132,219,160,234]},{"250478":[34,186,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,29,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,17,242,160,234]},{"273608":[34,164,182,160,76,230,172]},{"275716":[34,136,182,160,234]},{"276202":[34,197,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,115,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[229,133,160,92,86,239,160,234,234]},{"279880":[92,10,195,164]},{"280037":[34,44,235,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[152,236,160]},{"280106":[92,198,226,160,234]},{"280265":[168,210,160]},{"280287":[168,209,160]},{"280314":[168,210,160]},{"280335":[34,196,179,160]},{"282028":[34,98,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,68,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34,102,219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,201,200,160,234]},{"296453":[92,126,194,164,234]},{"296466":[168,211]},{"296471":[169,211]},{"296480":[168,213]},{"296488":[168,211]},{"296493":[169,211]},{"296502":[168,213,34,0,128,160]},{"296583":[34,242,154,160]},{"296619":[168,214]},{"296810":[184,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[216,206]},{"297052":[200,207]},{"297087":[34,69,133,160,234,176]},{"297120":[92,96,226,160,234]},{"297144":[168,209]},{"297200":[216,206]},{"297225":[200,207]},{"297263":[169,215]},{"297292":[34,20,195,160]},{"297309":[176,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,28,195,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,8,224,160]},{"324619":[34,11,153,160]},{"324675":[34,182,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,100,237,160,34,158,188,164,234,234,234,234,234,234]},{"324996":[34,149,194,160]},{"325098":[169,2,0,234]},{"325131":[34,148,237,160]},{"325203":[34,155,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":[44,239,160]},{"342245":[34,59,132,160,34,31,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,125,247,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,9,155,160]},{"344119":[34,9,155,160]},{"344185":[34,9,155,160]},{"344248":[34,9,155,160]},{"344312":[34,9,155,160]},{"344375":[34,9,155,160]},{"344441":[34,9,155,160]},{"344499":[34,9,155,160]},{"344565":[34,9,155,160]},{"344623":[34,9,155,160]},{"344689":[34,9,155,160]},{"344747":[34,9,155,160]},{"344813":[34,9,155,160]},{"344871":[34,9,155,160]},{"344937":[34,9,155,160]},{"345406":[34,39,154,160]},{"345531":[34,58,154,160,96]},{"345560":[34,58,154,160,96]},{"393133":[235,187,164]},{"409856":[34,25,227,160]},{"410028":[94,255,161]},{"410347":[34,155,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[233,238,160]},{"412876":[92,105,178,164]},{"413015":[107]},{"413094":[126,148,164]},{"413109":[34,64,237,160]},{"413141":[34,142,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,35,149,164,234,234,234,234]},{"413264":[34,74,149,164,234,234,234,234,234,234]},{"413297":[92,113,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,204,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,142,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,106,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,251,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,106,178,164]},{"415678":[34,163,149,164]},{"416378":[22,150,164]},{"416491":[34,237,149,164,234]},{"416529":[34,200,149,164]},{"416588":[234,234,234,234]},{"416912":[34,228,149,164]},{"416937":[34,214,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":[69,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,9,155,160]},{"449502":[34,110,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,106,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,136,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,85,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,23,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,106,155,160]},{"450360":[34,224,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,76,184,160,234]},{"450492":[34,74,155,160,234,234,234]},{"450861":[34,98,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,240,132,164]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,221,155,160,234]},{"452559":[34,203,155,160,234]},{"452581":[34,239,155,160,234]},{"452634":[96]},{"453064":[34,10,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,98,193,160,234,234,76,230,236]},{"453867":[34,1,156,160,234]},{"453892":[34,19,156,160]},{"454092":[34,124,155,160,234,234,234,234,234]},{"454233":[34,124,155,160,234,234,234,234,234]},{"454256":[34,202,194,160,234]},{"454282":[34,124,155,160,234,234,234,234,234]},{"454459":[34,124,155,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,243,131,160]},{"457344":[34,13,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,209,216,160]},{"457513":[34,247,216,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,40,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,84,237,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,42,227,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[36,235,160]},{"487403":[169,2,0,234]},{"487935":[34,82,227,160]},{"488156":[34,82,227,160]},{"488213":[34,82,227,160]},{"488242":[34,82,227,160]},{"488309":[34,82,227,160]},{"488340":[34,82,227,160]},{"488721":[34,82,227,160]},{"489560":[34,82,227,160]},{"490022":[34,82,227,160]},{"490060":[34,82,227,160]},{"490164":[34,82,227,160]},{"490184":[34,82,227,160]},{"490209":[34,82,227,160]},{"490257":[34,82,227,160]},{"490438":[34,98,227,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,156,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,80,241,160]},{"900244":[34,164,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,155,241,160,234]},{"900437":[92,53,240,160,234]},{"900447":[34,12,246,160,234,234,234]},{"900458":[34,241,187,164]},{"901799":[34,110,153,164,107,32,222,201,107]},{"903876":[34,221,241,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,138,235,160,96]},{"954852":[187,181,160]},{"955117":[105,235,160]},{"955529":[183,181,160]},{"962925":[148,181,160]},{"962951":[148,181,160]},{"963167":[148,181,160]},{"963214":[148,181,160]},{"965041":[148,181,160]},{"965069":[148,181,160]},{"965214":[148,181,160]},{"965298":[148,181,160]},{"965316":[148,181,160]},{"967797":[34,252,179,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,22,180,160]},{"972824":[99,181,160]},{"972834":[99,181,160]},{"972851":[99,181,160]},{"974665":[92,149,197,160,234]},{"974706":[210,197,160]},{"974722":[183,197,160]},{"975106":[34,123,143,160]},{"975132":[34,123,143,160]},{"975265":[34,166,197,160,234,234]},{"975332":[34,132,197,160,234,234]},{"975401":[255]},{"976357":[144,181,160]},{"976423":[144,181,160]},{"978658":[128,181,160]},{"979078":[34,4,220,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":[4,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,96,196,160]},{"983466":[128,181,160]},{"983651":[128,181,160]},{"988539":[140,181,160]},{"988657":[140,181,160]},{"988668":[140,181,160]},{"988874":[140,181,160]},{"988902":[140,181,160]},{"989142":[140,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[132,181,160]},{"999246":[136,181,160]},{"999265":[136,181,160]},{"999359":[136,181,160]},{"999574":[136,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,90,197,160]},{"1003229":[34,242,154,160]},{"1003277":[34,242,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[103,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[103,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,166,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,34,143,160,234,234]},{"1010175":[169,143,160]},{"1011427":[34,122,169,160,96,234]},{"1011808":[34,164,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,141,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,137,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,213,133,160,168,34,253,133,160,34,95,141,160,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]},{"1049774":[34,179,145,7,34,157,153,7,24,130,1]},{"1049786":[56,34,112,179,160,122,250,107,218,90,34,168,192,160,188,128,14,208,5,34,202,138,160,168,128,186,8,34,120,151,160,144,44,72,90,175]},{"1049823":[80,127,240,7,34,147,133,160,130,27]},{"1049834":[189,128,14,72,34,108,149,160,144,8,189,96,14,9,32,157,96,14,104,34,187,150,160,34,92,220,6,122,104,40,107,8,34,120,151,160,144,247,72,90,175]},{"1049876":[80,127,240,6,34,189,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,253,140,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,253,140,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049974":[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]},{"1050010":[169,1,143]},{"1050014":[80,127,165,93,201,20,240,21,169]},{"1050024":[143]},{"1050026":[80,127,34,213,133,160,157,128,14,34,95,141,160,34,79,150,160,104,107,72,169]},{"1050048":[143]},{"1050050":[80,127,34,202,138,160,157,128,14,34,95,141,160,34,79,150,160,104,107,165,27,240,7,34,26,134,160,130,4]},{"1050080":[34,183,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050105":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050122":[208,11,175,22,244,126,9,1]},{"1050131":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050146":[208,50,175,135,128,48,208,6,175]},{"1050156":[128,48,128,35,218,8,194,48,165]},{"1050166":[72,165,2,72,169]},{"1050172":[128,133]},{"1050175":[169,48]},{"1050178":[133,2,169]},{"1050183":[34,59,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050201":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050221":[72,165,2,72,169]},{"1050227":[128,133]},{"1050230":[169,48]},{"1050233":[133,2,169,1]},{"1050238":[34,59,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050256":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050276":[72,165,2,72,169]},{"1050282":[128,133]},{"1050285":[169,48]},{"1050288":[133,2,169,2]},{"1050293":[34,59,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050308":[201,27,1,208,108,165,34,235,41,1]},{"1050319":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050339":[72,165,2,72,169]},{"1050345":[128,133]},{"1050348":[169,48]},{"1050351":[133,2,169,3]},{"1050356":[34,59,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050371":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050389":[72,165,2,72,169]},{"1050395":[128,133]},{"1050398":[169,48]},{"1050401":[133,2,169,4]},{"1050406":[34,59,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050421":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050444":[72,165,2,72,169]},{"1050450":[128,133]},{"1050453":[169,48]},{"1050456":[133,2,169,5]},{"1050461":[34,59,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050476":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050499":[72,165,2,72,169]},{"1050505":[128,133]},{"1050508":[169,48]},{"1050511":[133,2,169,6]},{"1050516":[34,59,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050531":[201,135]},{"1050534":[208,7,175,98,129,48,130,3]},{"1050543":[169,23]},{"1050546":[41,255]},{"1050549":[40,107,8,194,32,165,138,201,3]},{"1050559":[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]},{"1050586":[72,165,2,72,169,64,129,133]},{"1050595":[169,48]},{"1050598":[133,2,169]},{"1050603":[34,59,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]},{"1050636":[72,165,2,72,169,16,128,133]},{"1050645":[169,48]},{"1050648":[133,2,169,6]},{"1050653":[34,59,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050671":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050691":[72,165,2,72,169,64,129,133]},{"1050700":[169,48]},{"1050703":[133,2,169,1]},{"1050708":[34,59,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050726":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050746":[72,165,2,72,169,64,129,133]},{"1050755":[169,48]},{"1050758":[133,2,169,2]},{"1050763":[34,59,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050781":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050801":[72,165,2,72,169,64,129,133]},{"1050810":[169,48]},{"1050813":[133,2,169,10]},{"1050818":[34,59,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050836":[208,107,165,34,201]},{"1050842":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050863":[72,165,2,72,169,64,129,133]},{"1050872":[169,48]},{"1050875":[133,2,169,3]},{"1050880":[34,59,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]},{"1050913":[72,165,2,72,169,16,128,133]},{"1050922":[169,48]},{"1050925":[133,2,169,7]},{"1050930":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050948":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050968":[72,165,2,72,169,64,129,133]},{"1050977":[169,48]},{"1050980":[133,2,169,4]},{"1050985":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051003":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051023":[72,165,2,72,169,64,129,133]},{"1051032":[169,48]},{"1051035":[133,2,169,5]},{"1051040":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051058":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051078":[72,165,2,72,169,64,129,133]},{"1051087":[169,48]},{"1051090":[133,2,169,6]},{"1051095":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051110":[201,74]},{"1051113":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051133":[72,165,2,72,169,64,129,133]},{"1051142":[169,48]},{"1051145":[133,2,169,6]},{"1051150":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051165":[201,91]},{"1051168":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051188":[72,165,2,72,169,64,129,133]},{"1051197":[169,48]},{"1051200":[133,2,169,7]},{"1051205":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051220":[201,104]},{"1051223":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051243":[72,165,2,72,169,64,129,133]},{"1051252":[169,48]},{"1051255":[133,2,169,8]},{"1051260":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051275":[201,129]},{"1051278":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051298":[72,165,2,72,169,64,129,133]},{"1051307":[169,48]},{"1051310":[133,2,169,9]},{"1051315":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051330":[169,23]},{"1051333":[41,255]},{"1051336":[40,107,8,194,32,165,160,201,200]},{"1051346":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051366":[72,165,2,72,169,80,129,133]},{"1051375":[169,48]},{"1051378":[133,2,169]},{"1051383":[34,59,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051401":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051421":[72,165,2,72,169,80,129,133]},{"1051430":[169,48]},{"1051433":[133,2,169,1]},{"1051438":[34,59,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051456":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051476":[72,165,2,72,169,80,129,133]},{"1051485":[169,48]},{"1051488":[133,2,169,2]},{"1051493":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051511":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051531":[72,165,2,72,169,80,129,133]},{"1051540":[169,48]},{"1051543":[133,2,169,3]},{"1051548":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051566":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051586":[72,165,2,72,169,80,129,133]},{"1051595":[169,48]},{"1051598":[133,2,169,4]},{"1051603":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051621":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051641":[72,165,2,72,169,80,129,133]},{"1051650":[169,48]},{"1051653":[133,2,169,5]},{"1051658":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051673":[201,172]},{"1051676":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051696":[72,165,2,72,169,80,129,133]},{"1051705":[169,48]},{"1051708":[133,2,169,6]},{"1051713":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051728":[201,222]},{"1051731":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051751":[72,165,2,72,169,80,129,133]},{"1051760":[169,48]},{"1051763":[133,2,169,7]},{"1051768":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051783":[201,144]},{"1051786":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051806":[72,165,2,72,169,80,129,133]},{"1051815":[169,48]},{"1051818":[133,2,169,8]},{"1051823":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051838":[201,164]},{"1051841":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051861":[72,165,2,72,169,80,129,133]},{"1051870":[169,48]},{"1051873":[133,2,169,9]},{"1051878":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051893":[169,62]},{"1051896":[41,255]},{"1051899":[40,107,194,32,165,160,201,200]},{"1051908":[208,4,56,130,82]},{"1051914":[201,51]},{"1051917":[208,4,56,130,73]},{"1051923":[201,7]},{"1051926":[208,4,56,130,64]},{"1051932":[201,90]},{"1051935":[208,4,56,130,55]},{"1051941":[201,6]},{"1051944":[208,4,56,130,46]},{"1051950":[201,41]},{"1051953":[208,4,56,130,37]},{"1051959":[201,172]},{"1051962":[208,4,56,130,28]},{"1051968":[201,222]},{"1051971":[208,4,56,130,19]},{"1051977":[201,144]},{"1051980":[208,4,56,130,10]},{"1051986":[201,164]},{"1051989":[208,4,56,130,1]},{"1051995":[24,226,32,107,72,90,165,27,208,3,130,230]},{"1052008":[8,194,32,165,160,201,135]},{"1052016":[208,7,175,58,227,48,130,137,1,201,200]},{"1052028":[208,7,175,62,227,48,130,125,1,201,51]},{"1052040":[208,7,175,63,227,48,130,113,1,201,7]},{"1052052":[208,7,175,64,227,48,130,101,1,201,90]},{"1052064":[208,7,175,65,227,48,130,89,1,201,6]},{"1052076":[208,7,175,66,227,48,130,77,1,201,41]},{"1052088":[208,7,175,67,227,48,130,65,1,201,172]},{"1052100":[208,7,175,68,227,48,130,53,1,201,222]},{"1052112":[208,7,175,69,227,48,130,41,1,201,144]},{"1052124":[208,7,175,70,227,48,130,29,1,201,164]},{"1052136":[208,7,175,71,227,48,130,17,1,201,225]},{"1052148":[208,7,175,72,227,48,130,5,1,201,226]},{"1052160":[208,7,175,73,227,48,130,249]},{"1052169":[201,234]},{"1052172":[208,7,175,74,227,48,130,237]},{"1052181":[201,27,1,208,22,165,34,235,41,1]},{"1052192":[208,7,175,75,227,48,130,217]},{"1052201":[175,76,227,48,130,210]},{"1052208":[201,38,1,208,7,175,77,227,48,130,198]},{"1052220":[201,39,1,208,44,175,78,227,48,130,186]},{"1052232":[169]},{"1052235":[130,180]},{"1052238":[8,194,32,165,138,201,3]},{"1052246":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052262":[175,59,227,48,130,149]},{"1052269":[201,5]},{"1052272":[208,7,175,80,227,48,130,137]},{"1052281":[201,40]},{"1052284":[208,7,175,81,227,48,130,125]},{"1052293":[201,42]},{"1052296":[208,7,175,61,227,48,130,113]},{"1052305":[201,48]},{"1052308":[208,21,165,34,201]},{"1052314":[2,176,7,175,82,227,48,130,94]},{"1052324":[175,60,227,48,130,87]},{"1052331":[201,53]},{"1052334":[208,7,175,83,227,48,130,75]},{"1052343":[201,59]},{"1052346":[208,7,175,84,227,48,130,63]},{"1052355":[201,66]},{"1052358":[208,7,175,85,227,48,130,51]},{"1052367":[201,74]},{"1052370":[208,7,175,85,227,48,130,39]},{"1052379":[201,91]},{"1052382":[208,7,175,86,227,48,130,27]},{"1052391":[201,104]},{"1052394":[208,7,175,87,227,48,130,15]},{"1052403":[201,129]},{"1052406":[208,7,175,88,227,48,130,3]},{"1052415":[169]},{"1052418":[41,255]},{"1052421":[40,143,152,192,126,122,104,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]},{"1052780":[72,165,2,72,169,16,128,133]},{"1052789":[169,48]},{"1052792":[133,2,169,3]},{"1052797":[34,59,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]},{"1052868":[72,165,2,72,169,16,128,133]},{"1052877":[169,48]},{"1052880":[133,2,169]},{"1052885":[34,59,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]},{"1052927":[72,165,2,72,169,16,128,133]},{"1052936":[169,48]},{"1052939":[133,2,169,1]},{"1052944":[34,59,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052966":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,170,218,207,150,128,48,144,16,175,152,192,126,208,10,104,175,151,128,48,34,49,145,160,107,104,218,139,75,171,170,191,114,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,98,217,160,76,49,145,201,251,208,7,34,30,218,160,76,49,145,201,253,208,28,175,152,192,126,208,19,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,49,145,160,107,169,4,107,201,254,208,60,175,152,192,126,208,19,175,89,243,126,207,144,128,48,144,13,175,145,128,48,34,49,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053162":[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,152,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,49,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053235":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,201,248,208,43,175,152,192,126,208,21,175,64,243,126,26,74,207,152,128,48,144,15,175,153,128,48,34,49,145,160,107,175,64,243,126,26,74,201]},{"1053289":[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]},{"1053347":[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]},{"1053386":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,170,218,207,150,128,48,144,10,104,175,151,128,48,34,114,147,160,107,104,218,139,75,171,170,191,108,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,114,147,160,107,201]},{"1053646":[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,114,147,160,107,201]},{"1053701":[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,114,147,160,107,201]},{"1053741":[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,98,217,160,76,114,147,201,251,208,7,34,30,218,160,76,114,147,107]},{"1053805":[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]},{"1053843":[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]},{"1053892":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053910":[8,8,8]},{"1053916":[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,170,218,207,150,128,48,144,11,175,151,128,48,34,108,149,160,130,128]},{"1054115":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,108,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,108,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,108,149,160,128,37,201,98,208,6,34,98,217,160,128,8,201,99,208,4,34,30,218,160,162]},{"1054226":[224,36,176,12,223,39,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,32,103,150,34,49,145,160,34,45,213]},{"1054301":[169]},{"1054303":[143,152,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054319":[143,37,192,126,143,39,192,126,169]},{"1054329":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,114,147,160,143,42,192,126,143,50,192,126,104,34,108,149,160,176,2,128,27,194,32,169]},{"1054370":[143,44,192,126,143,51,192,126,169]},{"1054380":[8,143,46,192,126,169]},{"1054387":[52,143,48,192,126,40,104,96,34,108,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]},{"1054456":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,108,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]},{"1054537":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054567":[169]},{"1054570":[143,66,80,127,128,6,162,64,45,160,2]},{"1054582":[104,107,32,161,151,176,35,194,32,165,226,72,56,233,15]},{"1054598":[133,226,165,232,72,56,233,15]},{"1054607":[133,232,226,32,32,161,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054639":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054659":[13,133]},{"1054662":[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]},{"1054697":[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]},{"1054739":[144,8,230,5,56,233,100]},{"1054747":[128,243,201,10]},{"1054752":[144,8,230,6,56,233,10]},{"1054760":[128,243,201,1]},{"1054765":[144,8,230,7,56,233,1]},{"1054773":[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,91,152,127,91,152,160,171,107]},{"1054812":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054830":[16,41,127]},{"1054834":[157,2,16,232,232,104,10,41,255,127,9]},{"1054846":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054867":[16,169,1,133,20,194,32,107,218,174]},{"1054878":[16,41,127]},{"1054882":[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]},{"1054924":[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]},{"1054971":[143,109,243,126,169]},{"1054977":[143,1,80,127,40,175,109,243,126,107,162]},{"1054989":[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]},{"1055015":[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]},{"1055042":[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,109,153,160,107,72,173]},{"1055088":[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]},{"1055118":[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]},{"1055192":[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]},{"1055253":[143,23,192,126,175,139,243,126,107,169]},{"1055264":[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,221,154,160,170,191,104,243,126,31,20,244,126,250,63,231,154,160,208,3,130,98]},{"1055341":[191,210,154,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,224,154,160,170,191,104,243,126,31,20,244,126,250,63,235,154,160,208,3,130,44]},{"1055395":[191,214,154,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]},{"1055455":[1,1]},{"1055460":[1]},{"1055462":[1,32,32,16]},{"1055467":[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]},{"1055520":[240,5,169,8]},{"1055525":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055538":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055560":[2,107,175,19,130,48,41,255]},{"1055569":[240,5,169,8]},{"1055574":[128,7,175,72,128,48,41,255]},{"1055583":[24,101,234,48,3,169]},{"1055591":[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]},{"1055618":[201,255]},{"1055621":[208,1,107,175,22,244,126,41,32]},{"1055631":[240,4,169]},{"1055636":[107,173,12,4,41,255]},{"1055643":[201,255]},{"1055646":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055670":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,81,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055702":[107,169,136,21,133]},{"1055708":[107,175,69,128,48,208,6,169,16,22,133]},{"1055720":[107,169,144,21,133]},{"1055726":[107,175,69,128,48,208,6,169,24,22,133]},{"1055738":[107,169,152,21,133]},{"1055744":[107,175,69,128,48,208,6,169,32,22,133]},{"1055756":[107,169,160,21,133]},{"1055762":[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]},{"1055854":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055868":[144,240,175,22,244,126,41,32]},{"1055877":[240,3,130,200,1,175,69,128,48,41,1]},{"1055889":[208,3,130,231]},{"1055894":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055916":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055933":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055950":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055967":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055984":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056001":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056018":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056035":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056052":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056069":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056086":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056103":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056120":[141,165,22,194,32,175,69,128,48,41,2]},{"1056132":[208,3,130,201]},{"1056137":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056150":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056165":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056180":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056195":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056210":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056225":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056240":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056255":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056270":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056285":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056300":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056315":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056330":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056345":[208,3,130,170,1,175,69,128,48,41,4]},{"1056357":[208,3,130,201]},{"1056362":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056375":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056390":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056405":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056420":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056435":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056450":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056465":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056480":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056495":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056510":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056525":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056540":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056555":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056570":[208,3,130,201]},{"1056575":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056588":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056603":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056618":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056633":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056648":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056663":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056678":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056693":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056708":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056723":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056738":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056753":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056768":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056787":[191,82,161,160,157,234,18,191,102,161,160,157,42,19,191,122,161,160,157,106,19,191,142,161,160,157,170,19,191,162,161,160,157,234,19,191,182,161,160,157,42,20,191,202,161,160,157,106,20,191,222,161,160,157,170,20,191,242,161,160,157,234,20,232,232,224,20]},{"1056855":[144,186,175,116,243,126,41,4]},{"1056864":[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]},{"1056897":[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]},{"1056930":[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]},{"1056963":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056984":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057005":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057026":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057047":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057068":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057089":[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]},{"1057712":[143,114,243,126,173,10,2,208,14,169]},{"1057723":[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]},{"1057757":[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]},{"1057838":[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]},{"1057881":[165,12,201,232,3,144,3,130,24]},{"1057891":[201,100]},{"1057894":[144,3,130,97]},{"1057899":[201,10]},{"1057902":[144,3,130,170]},{"1057907":[201,1]},{"1057910":[144,3,130,243]},{"1057915":[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]},{"1057945":[166,133,14,165,14,159]},{"1057952":[201,126,232,232,169,56]},{"1057959":[159]},{"1057961":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1057975":[201,126,232,232,169]},{"1057982":[159]},{"1057984":[201,126,232,232,165,14,24,105,8]},{"1057994":[133,14,100,10,165,12,201,100]},{"1058003":[144,8,56,233,100]},{"1058009":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121]},{"1058026":[166,133,14,165,14,159]},{"1058033":[201,126,232,232,169,56]},{"1058040":[159]},{"1058042":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058056":[201,126,232,232,169]},{"1058063":[159]},{"1058065":[201,126,232,232,165,14,24,105,8]},{"1058075":[133,14,100,10,165,12,201,10]},{"1058084":[144,8,56,233,10]},{"1058090":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121]},{"1058107":[166,133,14,165,14,159]},{"1058114":[201,126,232,232,169,56]},{"1058121":[159]},{"1058123":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058137":[201,126,232,232,169]},{"1058144":[159]},{"1058146":[201,126,232,232,165,14,24,105,8]},{"1058156":[133,14,100,10,165,12,201,1]},{"1058165":[144,8,56,233,1]},{"1058171":[230,10,128,243,133,12,192,255,208,10,160]},{"1058183":[165,14,24,121]},{"1058188":[166,133,14,165,14,159]},{"1058195":[201,126,232,232,169,56]},{"1058202":[159]},{"1058204":[201,126,232,232,164,10,152,10,168,185,236,165,159]},{"1058218":[201,126,232,232,169]},{"1058225":[159]},{"1058227":[201,126,232,232,165,14,24,105,8]},{"1058237":[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]},{"1058308":[252,255,248,255,218,90,8,194,48,162]},{"1058320":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058335":[208,13,175,153,80,127,41,255]},{"1058344":[223,3,200,48,208,44,226,32,191]},{"1058354":[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]},{"1058396":[200,48,41,255]},{"1058401":[201,255]},{"1058404":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058427":[226,32,162]},{"1058432":[160]},{"1058435":[152,207,96,80,127,144,3,130,172]},{"1058445":[191,1,201,48,201,255,208,3,130,161]},{"1058456":[191]},{"1058458":[201,48,207,80,80,127,240,3,130,137]},{"1058469":[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]},{"1058506":[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,180,167,160,170,32,211,167,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]},{"1058637":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058651":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,14,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,15,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,16,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]},{"1058744":[128]},{"1058749":[1]},{"1058752":[169,234,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,49,145,160,34,45,213]},{"1058791":[194,16,96,32,238,167,107,173]},{"1058800":[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]},{"1058830":[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]},{"1058867":[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]},{"1059008":[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]},{"1059173":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059194":[175,81,80,127,201,255,208,3,76,103,169,139,75,171,34,231,244,30,32,181,169,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]},{"1059245":[32,210,173,32,210,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059268":[201,2,208,3,130,227]},{"1059275":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059290":[165,26,41,16,240,12,189,73,170,159]},{"1059301":[201,126,232,224,16,144,244,189,89,170,159]},{"1059313":[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]},{"1059372":[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]},{"1059403":[248,255]},{"1059408":[2]},{"1059413":[16]},{"1059416":[2]},{"1059419":[248,255]},{"1059424":[2]},{"1059429":[16,64]},{"1059432":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,158,133,8,169,170,133,9,128,8,169,166,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059490":[70,10]},{"1059493":[2]},{"1059498":[70,74]},{"1059501":[2,218,162]},{"1059505":[165,26,41,64,240,12,189,32,171,159]},{"1059516":[201,126,232,224,16,144,244,189,48,171,159]},{"1059528":[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]},{"1059587":[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]},{"1059618":[248,255,132]},{"1059623":[2]},{"1059628":[16]},{"1059631":[2]},{"1059634":[248,255,132]},{"1059639":[2]},{"1059644":[16,64]},{"1059647":[2,218,162]},{"1059651":[165,26,41,64,240,12,189,178,171,159]},{"1059662":[201,126,232,224,16,144,244,189,194,171,159]},{"1059674":[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]},{"1059733":[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]},{"1059764":[248,255,142]},{"1059769":[2]},{"1059774":[16]},{"1059777":[2]},{"1059780":[248,255,142]},{"1059785":[2]},{"1059790":[16,64]},{"1059793":[2,218,90,8,160]},{"1059799":[90,152,74,74,168,175,95,80,127,57,14,173,240,3,122,128,48,122,173,238]},{"1059820":[221,32,15,208,39,32,165,173,32,17,173,34,230,131,6,144,3,32,197,173,32,123,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,39,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]},{"1059948":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059964":[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,14,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,14,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]},{"1060117":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060138":[58,10,168,185,199,174,133]},{"1060146":[122,104,24,113]},{"1060151":[24,105,2]},{"1060155":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060168":[13,194,32,90,200,200,24,113]},{"1060177":[122,72,175,81,80,127,41,128]},{"1060186":[240,7,104,24,105,4]},{"1060193":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060216":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060233":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060246":[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]},{"1060274":[165,35,105]},{"1060278":[133,8,165,32,105,8,133,1,165,33,105]},{"1060290":[133,9,96,218,34]},{"1060296":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060318":[160]},{"1060320":[175,81,80,127,41,3,201,3,208,5,32,3,174,128,4,201,2,208,5,32,3,174,128,4,201,1,208,3,32,3,174,122,250,171,96,175,95,80,127,57,14,173,240,3,130,178]},{"1060367":[90,175,81,80,127,41,3,58,10,168,194,32,185,199,174,133]},{"1060384":[163,1,10,10,168,177]},{"1060391":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060404":[208,8,177]},{"1060408":[143,39,192,126,128,10,177]},{"1060416":[24,105,4]},{"1060420":[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,229,174,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,114,147,160,143,42,192,126,169]},{"1060487":[143,43,192,126,191,82,80,127,34,108,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060513":[143,44,192,126,32,186,175,169,2,218,72,175,97,80,127,170,104,32,113,175,250,175,81,80,127,41,128,208,3,32,232,174,200,232,232,232,232,96,205,174,209,174,217,174,8]},{"1060559":[40]},{"1060561":[240,255,40]},{"1060565":[32]},{"1060567":[40]},{"1060569":[216,255,40]},{"1060573":[8]},{"1060575":[40]},{"1060577":[56]},{"1060579":[40]},{"1060581":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060600":[58,10,168,185,199,174,133]},{"1060608":[185,95,175,133,2,122,90,152,10,10,168,177]},{"1060621":[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,82,164,226,32,133,6,100,7,72,169]},{"1060660":[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,101,175,103,175,107,175]},{"1060710":[255]},{"1060712":[128,128,255]},{"1060716":[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]},{"1060797":[194,32,191,37,192,126,24,105,4]},{"1060807":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060823":[159,47,192,126,191,41,192,126,24,105,16]},{"1060835":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,92,227,48,143,152,192,126,175,135,128,48,208,6,175,18,128,48,128,35,218,8,194,48,165]},{"1060877":[72,165,2,72,169,16,128,133]},{"1060886":[169,48]},{"1060889":[133,2,169,2]},{"1060894":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,107,72,189,128,14,34,187,150,160,104,107,72,188,128,14,104,34,47,144,160,107,169,8,157,80,15,169]},{"1060941":[143]},{"1060943":[80,127,32,156,176,34,79,150,160,107,72,175]},{"1060956":[80,127,240,6,34,75,176,160,128,13,32,156,176,34,12,151,160,169]},{"1060975":[143,152,192,126,104,107,32,156,176,201,36,208,24,90,160,36,34,141,184,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,14,175,98,227,48,143,152,192,126,175,96,129,48,128,26,201,140,208,14,175,99,227,48,143,152,192,126,175,97,129,48,128,8,169]},{"1061060":[143,152,192,126,169,36,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]},{"1061335":[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]},{"1061402":[191,227,178,160,197,4,144,3,232,128,245,191,228,178,160,133,6,100,7,194,32,138,10,10,170,191,229,178,160,141,232,80,191,231,178,160,141,234,80,173]},{"1061443":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061461":[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,207,176,173,236,80,10,10,170,189]},{"1061498":[81,56,229,8,157]},{"1061504":[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]},{"1061536":[81,141,228,80,189,2,81,141,230,80,32,207,176,173]},{"1061551":[81,56,229,8,141]},{"1061557":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,203,176,160,141,232,80,173,234,80,239,205,176,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,34,49,145,160,72,165,138,201,3,240,6,34,246,178,160,128,4,34,233,178,160,104,107,34,183,135,160,72,34,95,141,160,34,79,150,160,169,1,143,51,80,127,143,52,80,127,34,17,179,160,169,235,143]},{"1061703":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061727":[13,165,33,153,32,13,169]},{"1061735":[153,32,15,169,127,153,112,15,107,72,8,34,154,179,160,144,31,156,18,1,156,239,3,169]},{"1061760":[133,93,194,32,165,138,201,48]},{"1061769":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061793":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061806":[128,16,201,48]},{"1061811":[208,11,165,34,201]},{"1061817":[2,144,4,56,130,1]},{"1061824":[24,226,32,107,191,168,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061845":[226,32,34,16,247,8,169,52,145,144,200,191,168,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061880":[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]},{"1061942":[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,162,180,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]},{"1062089":[13,173,219,15,233]},{"1062095":[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]},{"1062134":[13,173,219,15,233]},{"1062140":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062165":[254,127,208,245,169,4,107,34,227,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,245,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,245,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062238":[107,169]},{"1062241":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,211,181,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,211,181,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,211,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,211,181,160,107,218,8,194,32,41,127]},{"1062362":[10,170,191]},{"1062366":[82,127,26,41,255,3,159]},{"1062374":[82,127,170,10,191]},{"1062380":[128,175,40,250,107,218,8,194,48,162]},{"1062392":[191,40,182,160,159]},{"1062398":[82,127,232,232,191,40,182,160,159]},{"1062408":[82,127,232,232,191,40,182,160,159]},{"1062418":[82,127,232,232,191,40,182,160,159]},{"1062428":[82,127,232,232,224,127]},{"1062435":[144,211,40,250,107]},{"1062442":[64]},{"1062444":[128]},{"1062446":[192]},{"1062449":[1,64,1,128,1,192,1]},{"1062457":[2,64,2,128,2,192,2]},{"1062465":[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,72,182,160,175,35,128,48,208,4,34,104,182,160,104,107,72,169]},{"1062567":[143,65,80,127,175,34,128,48,201,1,208,4,34,72,182,160,175,35,128,48,201,1,208,4,34,104,182,160,104,107,72,175,34,128,48,201,2,208,4,34,72,182,160,175,35,128,48,201,2,208,4,34,104,182,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]},{"1062733":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062750":[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]},{"1062821":[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]},{"1062857":[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,28,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]},{"1062982":[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]},{"1063008":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063028":[2,156,5,2,169]},{"1063034":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,126,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063065":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063082":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063099":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063116":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063133":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063150":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063167":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063184":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063207":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063224":[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]},{"1063257":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063280":[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]},{"1063312":[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]},{"1063370":[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]},{"1063396":[192,59,208,3,130,96]},{"1063403":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063428":[201,15,1,208,3,130,59]},{"1063436":[201,16,1,208,3,130,51]},{"1063444":[201,28,1,208,3,130,43]},{"1063452":[201,31,1,208,3,130,35]},{"1063460":[201,255]},{"1063463":[208,3,130,27]},{"1063468":[201,20,1,208,3,130,19]},{"1063476":[201,21,1,208,3,130,11]},{"1063484":[201,22,1,208,3,130,3]},{"1063492":[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]},{"1063524":[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]},{"1063677":[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]},{"1063715":[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]},{"1063753":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063771":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063789":[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]},{"1063825":[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]},{"1063863":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063881":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,106,192,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]},{"1063985":[208,9,32,4,191,32,53,191,130,64,2,192,1,208,6,32,4,191,130,54,2,192,2,208,6,32,4,191,130,44,2,192,3,208,6,32,4,191,130,34,2,192,4,208,6,32,53,191,130,24,2,192,5,208,6,32,53,191,130,14,2,192,6,208,6,32,53,191,130,4,2,192,7,144,10,192,14,176,6,32,102,191,130,246,1,192,20,208,9,32,194,190,32,102,191,130,233,1,192,15,144,10,192,23,176,6,32,102,191,130,219,1,192,23,208,6,32,202,191,130,209,1,192,24,144,10,192,26,176,6,32,102,191,130,195,1,192,26,208,9,32,227,190,32,102,191,130,182,1,192,29,208,6,32,102,191,130,172,1,192,27,144,10,192,32,176,6,32,114,191,130,158,1,192,32,208,6,32,242,191,130,148,1,192,33,208,6,32,102,191,130,138,1,192,34,144,10,192,36,176,6,32,14,192,130,124,1,192,36,208,6,32,30,192,130,114,1,192,37,208,6,32,62,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,134,192,130,87,1,192,40,208,6,32,134,192,130,77,1,192,41,208,6,32,102,191,130,67,1,192,42,144,10,192,46,176,6,32,102,191,130,53,1,192,49,208,6,32,134,192,130,43,1,192,50,208,6,32,94,192,130,33,1,192,51,208,6,32,156,192,130,23,1,192,55,144,10,192,58,176,6,32,142,191,130,9,1,192,58,144,10,192,60,176,6,32,83,191,130,251]},{"1064321":[192,60,208,6,32,102,191,130,241]},{"1064331":[192,61,208,6,32,102,191,130,231]},{"1064341":[192,62,144,10,192,64,176,6,32,230,191,130,217]},{"1064355":[192,72,208,6,32,102,191,130,207]},{"1064365":[192,73,208,6,32,4,191,130,197]},{"1064375":[192,74,208,9,32,194,190,32,102,191,130,184]},{"1064388":[192,75,208,9,32,161,190,32,114,191,130,171]},{"1064401":[192,76,208,9,32,170,191,32,134,192,130,158]},{"1064414":[192,77,144,10,192,80,176,6,32,170,191,130,144]},{"1064428":[192,80,208,6,32,4,191,130,134]},{"1064438":[192,81,144,10,192,85,176,6,32,170,191,130,120]},{"1064452":[192,88,208,6,32,83,191,130,110]},{"1064462":[192,94,208,6,32,4,191,130,100]},{"1064472":[192,95,208,6,32,53,191,130,90]},{"1064482":[192,96,208,6,32,14,192,130,80]},{"1064492":[192,97,208,6,32,114,191,130,70]},{"1064502":[192,100,144,10,192,102,176,6,32,83,191,130,56]},{"1064516":[192,112,144,10,192,128,176,6,32,156,192,130,42]},{"1064530":[192,128,144,10,192,144,176,6,32,62,192,130,28]},{"1064544":[192,144,144,10,192,160,176,6,32,94,192,130,14]},{"1064558":[192,160,144,10,192,176,176,6,32,30,192,130]},{"1064572":[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,128,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064724":[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,30,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,102,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,172,192,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,81,239,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]},{"1065320":[201,2]},{"1065323":[208,14,175,140,243,126,41,192]},{"1065332":[201,192]},{"1065335":[240,79,128,64,201,1]},{"1065342":[208,14,175,142,243,126,41,192]},{"1065351":[201,192]},{"1065354":[240,60,128,45,201,5]},{"1065361":[208,14,175,140,243,126,41,48]},{"1065370":[201,48]},{"1065373":[240,41,128,26,201,13]},{"1065380":[208,16,175,140,243,126,137,4]},{"1065389":[240,12,41,3]},{"1065394":[208,20,128,5,201,16]},{"1065401":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065414":[208,5,169,79,61,128,6,32,215,193,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]},{"1065461":[41,255,239,153,4]},{"1065467":[185,62]},{"1065470":[41,255,239,153,62]},{"1065476":[185,68]},{"1065479":[41,255,239,153,68]},{"1065485":[185,128]},{"1065488":[41,255,239,153,128]},{"1065494":[185,130]},{"1065497":[41,255,239,153,130]},{"1065503":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065524":[41,255,239,153,132]},{"1065530":[185,126]},{"1065533":[41,255,239,153,126]},{"1065539":[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]},{"1065577":[201,144]},{"1065580":[208,3,169,127]},{"1065585":[9]},{"1065587":[36,143,100,199,126,165,5,41,255]},{"1065597":[9]},{"1065599":[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,198,241,160,34,189,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,152,192,126,175,135,128,48,208,6,175,20,128,48,128,35,218,8,194,48,165]},{"1065711":[72,165,2,72,169,16,128,133]},{"1065720":[169,48]},{"1065723":[133,2,169,4]},{"1065728":[34,59,150,164,250,134,2,250,134,1,40,250,153,160,13,34,79,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]},{"1065774":[80,127,240,23,175,93,227,48,143,152,192,126,189,160,13,34,79,150,160,169]},{"1065795":[143]},{"1065797":[80,127,128,7,189,160,13,34,187,150,160,107,169]},{"1065811":[157,192,13,72,169,1,143]},{"1065819":[80,127,165,93,201,20,240,68,169]},{"1065829":[143]},{"1065831":[80,127,175,56,227,48,143,152,192,126,175,135,128,48,208,6,175,19,128,48,128,35,218,8,194,48,165]},{"1065859":[72,165,2,72,169,16,128,133]},{"1065868":[169,48]},{"1065871":[133,2,169,3]},{"1065876":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,79,150,160,104,107,72,90,175]},{"1065901":[80,127,240,6,34,86,195,160,128,7,189,128,14,34,187,150,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]},{"1065944":[72,165,2,72,169,16,128,133]},{"1065953":[169,48]},{"1065956":[133,2,169,4]},{"1065961":[34,59,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,151,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]},{"1066019":[143,68,243,126,107,175,123,243,126,41,255]},{"1066031":[201,2]},{"1066034":[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]},{"1066067":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066082":[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]},{"1066118":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066132":[173,91,3,41,1,208,3,130,134]},{"1066142":[90,8,139,75,171,226,48,165,27,240,3,76,33,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066179":[129,48,143]},{"1066183":[254,127,34,93,246,29,162]},{"1066191":[165,47,201,4,240,1,232,191,37,197,160,153,80,13,169]},{"1066207":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,39,197,160,41,240,153,16,13,165,35,105]},{"1066241":[153,48,13,165,32,24,105,22,41,240,153]},{"1066253":[13,165,33,105]},{"1066258":[153,32,13,169]},{"1066263":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066280":[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]},{"1066311":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066332":[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,94,153,160,92,53,207,30,175,96,227,48,143,152,192,126,175,195,225,29,34,79,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066402":[92,82,223,29,175,97,227,48,143,152,192,126,175,133,225,29,34,79,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066433":[80,127,175,195,225,29,128,4,175,133,225,29,34,187,150,160,107,72,165,138,201,129,208,14,34,196,143,160,175,96,227,48,143,152,192,126,128,12,34,34,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,152,192,126,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1066527":[72,165,2,72,169,64,129,133]},{"1066536":[169,48]},{"1066539":[133,2,169,10]},{"1066544":[34,59,150,164,250,134,2,250,134,1,40,250,34,79,150,160,169,235,143]},{"1066564":[254,127,34,93,246,29,162]},{"1066572":[165,47,201,4,240,1,232,191,169,198,160,153,80,13,169]},{"1066588":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,171,198,160,41,240,153,16,13,165,35,105]},{"1066622":[153,48,13,165,32,24,105,22,41,240,153]},{"1066634":[13,165,33,105]},{"1066639":[153,32,13,169]},{"1066644":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066668":[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]},{"1066747":[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]},{"1066774":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,156,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066813":[72,165,2,72,169,16,128,133]},{"1066822":[169,48]},{"1066825":[133,2,169,5]},{"1066830":[34,59,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]},{"1066884":[201,35,208,6,160,93,92,71,213]},{"1066894":[201,72,208,6,160,96,92,71,213]},{"1066904":[201,36,176,6,160,91,92,71,213]},{"1066914":[201,55,176,6,160,92,92,71,213]},{"1066924":[201,57,176,6,160,93,92,71,213]},{"1066934":[160,50,92,71,213]},{"1066940":[192,9,48]},{"1066944":[96]},{"1066946":[144]},{"1066948":[192]},{"1066951":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066975":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1066993":[9,48,9,96,9,144,9,240,9]},{"1067004":[240]},{"1067006":[32,10,80,10,96,6]},{"1067013":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067035":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067051":[6,48,6]},{"1067055":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067071":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067092":[127,188,199,160,107,165]},{"1067099":[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]},{"1067130":[132,175,24,105]},{"1067135":[136,133]},{"1067138":[226,32,169,175,133,2,34,116,227,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,202,218,160,162,1,128,2,162]},{"1067196":[171,40,122,104,133,2,104,133,1,104,133]},{"1067208":[96,218,173,216,2,34,170,227,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067691":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,202,218,160,130,116,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,202,218,160,130,72,1,201,109,208,7,34,225,190,164,130,61,1,201,110,208,7,34,225,190,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067938":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067963":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1067986":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068005":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068022":[56,233,8,170,169,1,224]},{"1068030":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068053":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068072":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068089":[56,233,8,170,169,1,224]},{"1068097":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068120":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068142":[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]},{"1068174":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068193":[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]},{"1068219":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,74,239,160,173,216,2,72,175,152,192,126,208,12,104,32,121,218,141,216,2,32,79,218,128,1,104,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,170,218,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]},{"1068382":[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]},{"1068495":[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]},{"1068535":[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]},{"1068565":[175,91,243,126,201]},{"1068571":[208,8,169,34,141,216,2,130,171]},{"1068581":[169,35,141,216,2,130,163]},{"1068589":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068607":[169,28,141,216,2,130,137]},{"1068615":[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]},{"1068647":[175,64,243,126,26,74,201]},{"1068655":[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,98,217,160,141,216,2,235,32,237,217,169,255,143,144,80,127,128,36,201,99,208,15,34,30,218,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]},{"1068752":[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]},{"1069007":[4,4,4,4,4,5]},{"1069019":[4]},{"1069021":[4]},{"1069024":[4]},{"1069036":[4]},{"1069042":[5]},{"1069052":[4,4,4]},{"1069066":[4,4]},{"1069069":[4]},{"1069073":[4]},{"1069080":[4]},{"1069089":[4]},{"1069160":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069240":[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]},{"1069289":[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]},{"1069328":[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]},{"1069485":[2,2]},{"1069493":[2,2,2,2,2,2]},{"1069500":[2]},{"1069502":[2,2]},{"1069505":[2,2,2,2,2,2,2,2,2,2,2]},{"1069517":[2,2,2,2,2]},{"1069523":[2,2,2,2,2,2,2,2,2]},{"1069535":[2,2,2,2,2,2,2,2,2,2,2]},{"1069548":[2]},{"1069550":[2,2,2]},{"1069554":[2,2,2,2,2,2]},{"1069561":[2,2,2,2,2,2,2,2]},{"1069570":[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]},{"1069656":[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]},{"1069842":[4,4,4]},{"1069848":[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]},{"1070761":[128]},{"1070763":[64]},{"1070765":[32]},{"1070767":[16]},{"1070769":[8]},{"1070771":[4]},{"1070773":[2]},{"1070775":[1,128]},{"1070778":[64]},{"1070780":[32]},{"1070782":[16]},{"1070784":[8]},{"1070786":[4]},{"1071017":[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,121,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,247,216,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,247,216,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]},{"1071471":[160,48,107,162]},{"1071476":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071489":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071503":[168,152,32,201,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071523":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071547":[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]},{"1071587":[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]},{"1071624":[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]},{"1071663":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071676":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071699":[191]},{"1071701":[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]},{"1071741":[191]},{"1071743":[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,162]},{"1071788":[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,96,100,17,100,176,92,167,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071851":[13,24,105,3,107,189,32,14,201,136,208,9,32,40,219,201,4,144,1,58,107,32,40,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071897":[200,49,74,74,74,74,107,40,191]},{"1071907":[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]},{"1071957":[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]},{"1071991":[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,20,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]},{"1072193":[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]},{"1072248":[143,96,243,126,226,32,34,143,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072274":[165,27,240,121,194,32,165,160,201,14]},{"1072285":[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]},{"1072320":[201,126]},{"1072323":[208,33,165,34,41,255,1,201,104]},{"1072333":[144,60,201,136]},{"1072338":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072358":[201,222]},{"1072361":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072386":[144,7,201,154]},{"1072391":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,111,221,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,111,221,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]},{"1072529":[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]},{"1072582":[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,131,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072635":[174,2,32,224,83,45,240,3,130,253]},{"1072646":[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]},{"1072711":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072811":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072869":[90,194,32,191]},{"1072874":[217,48,133]},{"1072878":[226,32,178]},{"1072882":[122,132]},{"1072885":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072905":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072926":[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]},{"1073038":[208,13,173,11,1,41,255]},{"1073046":[201,59]},{"1073049":[208,63,128,56,201,107]},{"1073056":[208,58,175,19,130,48,201,1]},{"1073065":[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]},{"1073098":[240,14,175,167,80,127,41,4]},{"1073107":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073122":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073141":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073166":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073182":[66,169,255,141,64,33,169,34,133]},{"1073192":[169,248,133,1,169,160,34,29,137]},{"1073202":[169,129,141]},{"1073206":[66,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]},{"1073242":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073258":[232,226,32,168,173]},{"1073264":[32,137,64,208,249,173]},{"1073271":[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]},{"1073308":[32,137,64,208,249,173]},{"1073315":[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]},{"1073366":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073392":[175,169,80,127,240,85,173]},{"1073400":[32,137,64,240,4,92,220,128]},{"1073409":[173]},{"1073411":[32,137,8,240,4,92,220,128]},{"1073420":[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]},{"1073456":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073475":[143,169,80,127,92,220,128]},{"1073483":[173,39,1,205,41,1,208,4,92,220,128]},{"1073495":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073525":[224,255,208,4,92,220,128]},{"1073533":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073549":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073565":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073582":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073596":[141,43,1,92,220,128]},{"1073603":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073622":[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]},{"1073654":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073679":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073721":[90,194,32,191]},{"1073726":[217,48,133]},{"1073730":[226,32,178]},{"1073734":[122,132]},{"1073737":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073760":[141,44,1,72,34,114,221,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]},{"1073829":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073842":[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]},{"1073912":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073925":[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]},{"1073992":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1074010":[87,127,107,191]},{"1074015":[18,127,107,156,240,28,156,241,28,169]},{"1074026":[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]},{"1074058":[226,32,183]},{"1074062":[159]},{"1074064":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074083":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074107":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074125":[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]},{"1074151":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074169":[226,32,183]},{"1074173":[159]},{"1074175":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074194":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074214":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074232":[226,32,183]},{"1074236":[159]},{"1074238":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074257":[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]},{"1074288":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074306":[226,32,183]},{"1074310":[159]},{"1074312":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074331":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074351":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074369":[226,32,183]},{"1074373":[159]},{"1074375":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074394":[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]},{"1074423":[133]},{"1074425":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074443":[226,32,183]},{"1074447":[159]},{"1074449":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074468":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074488":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074506":[226,32,183]},{"1074510":[159]},{"1074512":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074531":[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]},{"1074562":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074580":[226,32,183]},{"1074584":[159]},{"1074586":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074605":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074625":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074643":[226,32,183]},{"1074647":[159]},{"1074649":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074668":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074689":[133]},{"1074691":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074709":[226,32,183]},{"1074713":[159]},{"1074715":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074734":[143,148,80,127,226,32,130,213]},{"1074743":[201,128,208,56,169,52,133]},{"1074751":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074769":[226,32,183]},{"1074773":[159]},{"1074775":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074794":[143,148,80,127,226,32,130,153]},{"1074803":[201,144,208,55,169,112,133]},{"1074811":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074829":[226,32,183]},{"1074833":[159]},{"1074835":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074854":[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]},{"1074881":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074899":[226,32,183]},{"1074903":[159]},{"1074905":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074924":[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]},{"1075003":[208,56,169,216,133]},{"1075009":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075027":[226,32,183]},{"1075031":[159]},{"1075033":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075052":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075069":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075087":[226,32,183]},{"1075091":[159]},{"1075093":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075112":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075129":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075147":[226,32,183]},{"1075151":[159]},{"1075153":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075172":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075189":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075207":[226,32,183]},{"1075211":[159]},{"1075213":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075232":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075249":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075267":[226,32,183]},{"1075271":[159]},{"1075273":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075292":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075309":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075327":[226,32,183]},{"1075331":[159]},{"1075333":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075352":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075369":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075387":[226,32,183]},{"1075391":[159]},{"1075393":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075412":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075429":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075447":[226,32,183]},{"1075451":[159]},{"1075453":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075472":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075489":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075507":[226,32,183]},{"1075511":[159]},{"1075513":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075532":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075549":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075567":[226,32,183]},{"1075571":[159]},{"1075573":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075592":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075609":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075627":[226,32,183]},{"1075631":[159]},{"1075633":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075652":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075669":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075687":[226,32,183]},{"1075691":[159]},{"1075693":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075712":[143,148,80,127,226,32,130,235]},{"1075721":[201,12,208,56,169,12,133]},{"1075729":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075747":[226,32,183]},{"1075751":[159]},{"1075753":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075772":[143,148,80,127,226,32,130,175]},{"1075781":[201,13,208,55,169,41,133]},{"1075789":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075807":[226,32,183]},{"1075811":[159]},{"1075813":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075832":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075848":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075866":[226,32,183]},{"1075870":[159]},{"1075872":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075891":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075907":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075925":[226,32,183]},{"1075929":[159]},{"1075931":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075950":[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]},{"1075983":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1075998":[171,40,122,250,104,107,34,78,216]},{"1076008":[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]},{"1076072":[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,158,236,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,158,236,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]},{"1076343":[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]},{"1076388":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076412":[226,48,160]},{"1076416":[183]},{"1076418":[201,254,208,39,200,183]},{"1076425":[201,110,208,32,200,183]},{"1076432":[208,27,200,183]},{"1076437":[201,254,208,20,200,183]},{"1076444":[201,107,208,13,200,183]},{"1076451":[201,4,208,6,156,232,28,130,19]},{"1076461":[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]},{"1076489":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076506":[10,10,69,138,41,8]},{"1076513":[240,6,152,24,105,16]},{"1076520":[168,165,35,41,2]},{"1076526":[74,69,138,41,1]},{"1076532":[240,4,152,26,26,168,152,41,255]},{"1076542":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,9,151,164,34,255,147,164,107,34,230,244,160,34,158,173,164,34]},{"1076574":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,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,145,188,164,107,194,16,34,61,137]},{"1076770":[169,7,141,12,33,175,240,244,126,208,10,34,131,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076822":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,34,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]},{"1076902":[191]},{"1076904":[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]},{"1076978":[107,34,212,152,160,34,235,245,160,107,34,71,153,160,34,80,153,160,162,4,107,34,235,245,160,169,20,133,17,107,34,235,245,160,107,34,63,132,160,34,44,153,160,34,4,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]},{"1077053":[2,107,169]},{"1077057":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,94,153,160,107,169]},{"1077080":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,152,236,160,169]},{"1077102":[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]},{"1077138":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077163":[208,4,169]},{"1077168":[107,201,1]},{"1077172":[208,16,175,197,243,126,41,15]},{"1077181":[201,2]},{"1077184":[176,84,32,26,240,107,201,2]},{"1077193":[208,75,32,26,240,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077217":[107,175,74,128,48,41,255]},{"1077225":[240,43,175,195,242,126,41,32]},{"1077234":[208,34,173,8,3,41,128]},{"1077242":[240,4,169,1]},{"1077247":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077269":[107,169]},{"1077273":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077296":[96,169]},{"1077300":[96,175,76,128,48,41,255]},{"1077308":[240,4,92,90,189,27,224,118]},{"1077317":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077334":[72,170,191,64,130,48,208,3,130,175]},{"1077345":[58,133]},{"1077348":[10,10,24,101]},{"1077353":[10,10,170,169,22]},{"1077359":[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]},{"1077387":[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]},{"1077430":[137,128]},{"1077433":[240,3,9]},{"1077437":[255,143,106,193,126,191,98,130,48,41,255]},{"1077449":[137,128]},{"1077452":[240,3,9]},{"1077456":[255,143,110,193,126,169]},{"1077464":[56,239,106,193,126,143,108,193,126,169]},{"1077476":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077492":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077510":[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]},{"1077587":[165]},{"1077589":[223]},{"1077591":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077611":[165]},{"1077613":[223]},{"1077615":[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]},{"1077661":[175,74,128,48,41,255]},{"1077668":[240,25,175,93]},{"1077674":[41,255]},{"1077677":[201,20]},{"1077680":[208,13,165,138,41,64]},{"1077687":[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]},{"1077744":[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]},{"1077810":[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]},{"1077844":[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]},{"1077943":[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]},{"1077974":[201,2]},{"1077977":[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]},{"1078009":[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,228,244,160,144,10,208,8,175,140,80,127,207,226,244,160,144,114,175,145,129,48,41,255]},{"1078065":[208,24,169,2]},{"1078070":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078094":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078107":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078121":[143,142,80,127,169,1]},{"1078128":[143,126,80,127,128,54,201,2]},{"1078137":[208,24,169,2]},{"1078142":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,202,218,160,194,48,96,175,146,129,48,41,255]},{"1078179":[240,7,169]},{"1078184":[143,126,80,127,175,142,80,127,207,216,244,160,144,10,208,8,175,140,80,127,207,214,244,160,144,53,175,128,80,127,26,201,10]},{"1078218":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078232":[143,128,80,127,175,140,80,127,56,239,214,244,160,143,140,80,127,175,142,80,127,239,216,244,160,143,142,80,127,128,181,175,142,80,127,207,220,244,160,144,10,208,8,175,140,80,127,207,218,244,160,144,53,175,132,80,127,26,201,10]},{"1078293":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078307":[143,132,80,127,175,140,80,127,56,239,218,244,160,143,140,80,127,175,142,80,127,239,220,244,160,143,142,80,127,128,181,175,142,80,127,207,224,244,160,144,10,208,8,175,140,80,127,207,222,244,160,144,53,175,136,80,127,26,201,10]},{"1078368":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078382":[143,136,80,127,175,140,80,127,56,239,222,244,160,143,140,80,127,175,142,80,127,239,224,244,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]},{"1078490":[16,14]},{"1078494":[60]},{"1078498":[255,255,255,127,175,204,80,127,41,255]},{"1078509":[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]},{"1078580":[240,93,175,145,129,48,41,255]},{"1078589":[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]},{"1078682":[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]},{"1078757":[208,3,32,180,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078787":[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]},{"1078821":[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,33,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]},{"1078895":[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]},{"1079001":[255,157]},{"1079004":[27,157,64,27,157,128,27,157,192,27,157]},{"1079016":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079030":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079044":[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]},{"1079082":[208,12,175]},{"1079086":[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]},{"1079160":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079183":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079333":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079349":[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]},{"1079421":[244,111,4]},{"1079425":[115,10,95]},{"1079429":[7]},{"1079435":[34,149,189,164,34,58,135,1,194,16,166,160,191,47,251,160,226,16,34,156,135]},{"1079457":[179,248,160,180,248,160,65,249,160,206,249,160,91,250,160,197,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079493":[32,126,232,232,159]},{"1079499":[32,126,232,232,159]},{"1079505":[32,126,232,232,159]},{"1079511":[32,126,232,232,162,220,25,159]},{"1079520":[32,126,232,232,169,202,12,159]},{"1079529":[32,126,232,232,169,203,12,159]},{"1079538":[32,126,232,232,169,208,8,159]},{"1079547":[32,126,232,232,162,92,26,159]},{"1079556":[32,126,232,232,169,218,12,159]},{"1079565":[32,126,232,232,169,219,12,159]},{"1079574":[32,126,232,232,169,208,8,159]},{"1079583":[32,126,232,232,162,220,26,159]},{"1079592":[32,126,232,232,159]},{"1079598":[32,126,232,232,159]},{"1079604":[32,126,232,232,159]},{"1079610":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079634":[32,126,232,232,159]},{"1079640":[32,126,232,232,159]},{"1079646":[32,126,232,232,159]},{"1079652":[32,126,232,232,162,156,25,159]},{"1079661":[32,126,232,232,169,202,12,159]},{"1079670":[32,126,232,232,169,203,12,159]},{"1079679":[32,126,232,232,169,208,8,159]},{"1079688":[32,126,232,232,162,28,26,159]},{"1079697":[32,126,232,232,169,218,12,159]},{"1079706":[32,126,232,232,169,219,12,159]},{"1079715":[32,126,232,232,169,208,8,159]},{"1079724":[32,126,232,232,162,156,26,159]},{"1079733":[32,126,232,232,159]},{"1079739":[32,126,232,232,159]},{"1079745":[32,126,232,232,159]},{"1079751":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079775":[32,126,232,232,159]},{"1079781":[32,126,232,232,159]},{"1079787":[32,126,232,232,159]},{"1079793":[32,126,232,232,162,220,9,159]},{"1079802":[32,126,232,232,169,202,12,159]},{"1079811":[32,126,232,232,169,203,12,159]},{"1079820":[32,126,232,232,169,208,8,159]},{"1079829":[32,126,232,232,162,92,10,159]},{"1079838":[32,126,232,232,169,218,12,159]},{"1079847":[32,126,232,232,169,219,12,159]},{"1079856":[32,126,232,232,169,208,8,159]},{"1079865":[32,126,232,232,162,220,10,159]},{"1079874":[32,126,232,232,159]},{"1079880":[32,126,232,232,159]},{"1079886":[32,126,232,232,159]},{"1079892":[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]},{"1080125":[1]},{"1080207":[5]},{"1080209":[4]},{"1080237":[2]},{"1080333":[3]},{"1080431":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080448":[134,1,133,2,32,111,252,176,4,92,83,230]},{"1080461":[169,49,133,2,194,32,169]},{"1080469":[192,133]},{"1080472":[162,128,167]},{"1080476":[141,24,33,230]},{"1080481":[230]},{"1080483":[167]},{"1080485":[141,24,33,230]},{"1080490":[230]},{"1080492":[167]},{"1080494":[141,24,33,230]},{"1080499":[230]},{"1080501":[167]},{"1080503":[141,24,33,230]},{"1080508":[230]},{"1080510":[167]},{"1080512":[141,24,33,230]},{"1080517":[230]},{"1080519":[167]},{"1080521":[141,24,33,230]},{"1080526":[230]},{"1080528":[167]},{"1080530":[141,24,33,230]},{"1080535":[230]},{"1080537":[167]},{"1080539":[141,24,33,230]},{"1080544":[230]},{"1080546":[202,208,181,226,32,92,81,230]},{"1080555":[226,48,175,248,194,126,168,32,111,252,194,48,176,10,162]},{"1080572":[160,64]},{"1080575":[92,104,223]},{"1080579":[162]},{"1080581":[192,160]},{"1080585":[169]},{"1080587":[8,139,84,127,177,171,162]},{"1080595":[8,169]},{"1080598":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,114,221,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,230,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,234,167,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,77,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,27,224,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,107,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,124,236,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,151,148,164,194,16,34,179,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,176,148,164,34,28,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,69,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,69,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,37,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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]},{"1180922":[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]},{"1180981":[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]},{"1181009":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181025":[128,3,169]},{"1181030":[226,32,250,201]},{"1181035":[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]},{"1181072":[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]},{"1181099":[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]},{"1181131":[66,240,3,73]},{"1181136":[66,137]},{"1181139":[132,240,3,73]},{"1181144":[132,133]},{"1181147":[226,32,92,222,131]},{"1181153":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181176":[12,240,3,73]},{"1181181":[12,137]},{"1181184":[3,240,3,73]},{"1181189":[3,133]},{"1181192":[226,32,92,222,131]},{"1181198":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181221":[226,32,92,222,131]},{"1181227":[173,24,66,133]},{"1181232":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181253":[173,24,66,133]},{"1181258":[173,25,66,133,1,92,222,131]},{"1181267":[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,127,134,164,34,236,134,164,107,169,14,143,1,40]},{"1181317":[169,4,143,1,40]},{"1181323":[169,13,143,1,40]},{"1181329":[169,14,143,1,40]},{"1181335":[169]},{"1181337":[143,1,40]},{"1181341":[169]},{"1181343":[143,1,40]},{"1181347":[169]},{"1181349":[143,1,40]},{"1181353":[169]},{"1181355":[143,1,40]},{"1181359":[169]},{"1181361":[143,1,40]},{"1181365":[169]},{"1181367":[143,1,40]},{"1181371":[169]},{"1181373":[143,1,40]},{"1181377":[169,1,143,1,40]},{"1181383":[169]},{"1181385":[143,1,40]},{"1181389":[169,1,143,1,40]},{"1181395":[169]},{"1181397":[143,1,40]},{"1181401":[169]},{"1181403":[143,1,40]},{"1181407":[169,10,143,1,40]},{"1181413":[169,13,143,1,40]},{"1181419":[107,72,218,162]},{"1181424":[175]},{"1181426":[40]},{"1181428":[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]},{"1181455":[175]},{"1181457":[40]},{"1181459":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181473":[232,128,235,56,175]},{"1181479":[40]},{"1181481":[72,175]},{"1181484":[40]},{"1181486":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181504":[175]},{"1181506":[40]},{"1181508":[72,175]},{"1181511":[40]},{"1181513":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181533":[40]},{"1181535":[72,175]},{"1181538":[40]},{"1181540":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181560":[40]},{"1181562":[72,175]},{"1181565":[40]},{"1181567":[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]},{"1181652":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181670":[133]},{"1181672":[165,3,41,255]},{"1181677":[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,31,136,164,132,2,100,3,24,101]},{"1181719":[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]},{"1181774":[175]},{"1181776":[40]},{"1181778":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181792":[232,128,235,56,175]},{"1181798":[40]},{"1181800":[72,175]},{"1181803":[40]},{"1181805":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181823":[175]},{"1181825":[40]},{"1181827":[72,175]},{"1181830":[40]},{"1181832":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181852":[40]},{"1181854":[72,175]},{"1181857":[40]},{"1181859":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181879":[40]},{"1181881":[72,175]},{"1181884":[40]},{"1181886":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181906":[40]},{"1181908":[133,4,175]},{"1181912":[40]},{"1181914":[72,175]},{"1181917":[40]},{"1181919":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181939":[40]},{"1181941":[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]},{"1182010":[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]},{"1182049":[153]},{"1182052":[189,2]},{"1182055":[153,2]},{"1182058":[189,4]},{"1182061":[153,64]},{"1182064":[189,6]},{"1182067":[153,66]},{"1182070":[96,189]},{"1182074":[41,255,227,9]},{"1182079":[16,153]},{"1182083":[189,2]},{"1182086":[41,255,227,9]},{"1182091":[16,153,2]},{"1182095":[189,4]},{"1182098":[41,255,227,9]},{"1182103":[16,153,64]},{"1182107":[189,6]},{"1182110":[41,255,227,9]},{"1182115":[16,153,66]},{"1182119":[96,41,255]},{"1182123":[240,3,76,94,137,76,119,137,41,255]},{"1182134":[208,6,162,148,144,76,119,137,58,58,208,6,162,148,144,76,94,137,58,208,6,162,156,144,76,94,137,58,208,6,162,164,144,76,94,137,58,208,6,162,172,144,76,94,137,58,208,6,162,180,144,76,94,137,58,208,6,162,188,144,76,94,137,162,196,144,76,94,137,165,26,41,1]},{"1182208":[240,2,128,14,32,33,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182238":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182254":[5,112,9]},{"1182258":[28,141,142,17,24,105,16]},{"1182266":[141,206,17,175,2,5,112,9]},{"1182275":[28,141,144,17,24,105,16]},{"1182283":[141,208,17,175,4,5,112,9]},{"1182292":[28,141,146,17,24,105,16]},{"1182300":[141,210,17,175,6,5,112,9]},{"1182309":[28,141,148,17,24,105,16]},{"1182317":[141,212,17,175,8,5,112,9]},{"1182326":[28,141,78,18,24,105,16]},{"1182334":[141,142,18,175,10,5,112,9]},{"1182343":[28,141,80,18,24,105,16]},{"1182351":[141,144,18,175,12,5,112,9]},{"1182360":[28,141,82,18,24,105,16]},{"1182368":[141,146,18,175,14,5,112,9]},{"1182377":[28,141,84,18,24,105,16]},{"1182385":[141,148,18,32,204,144,175,142,3,112,41,64]},{"1182398":[240,31,175,64,3,112,41,255]},{"1182407":[240,11,162,20,143,160,220,16,32,94,137,128,40,162,36,143,160,220,16,32,94,137,128,29,175,64,3,112,41,255]},{"1182438":[240,11,162,12,143,160,220,16,32,94,137,128,9,162,12,143,160,220,16,32,119,137,175,140,3,112,41,192]},{"1182467":[201,192]},{"1182470":[208,11,162,60,143,160,224,16,32,94,137,128,49,175,140,3,112,41,64]},{"1182490":[240,11,162,52,143,160,224,16,32,94,137,128,29,175,140,3,112,41,128]},{"1182510":[240,11,162,44,143,160,224,16,32,94,137,128,9,162,44,143,160,224,16,32,119,137,162,68,143,160,228,16,175,66,3,112,32,168,137,175,140,3,112,41,16]},{"1182552":[240,11,162,28,144,160,236,16,32,94,137,128,9,162,28,144,160,236,16,32,119,137,175,140,3,112,41,8]},{"1182581":[240,11,162,20,144,160,232,16,32,94,137,128,9,162,20,144,160,232,16,32,119,137,175,140,3,112,41,3]},{"1182610":[240,11,162,156,143,160,228,17,32,94,137,128,9,162,156,143,160,228,17,32,119,137,175,140,3,112,41,4]},{"1182639":[240,11,162,148,143,160,92,18,32,94,137,128,9,162,148,143,160,92,18,32,119,137,162,84,143,160,92,17,175,69,3,112,32,168,137,162,92,143,160,96,17,175,70,3,112,32,168,137,162,100,143,160,100,17,175,71,3,112,32,168,137,162,108,143,160,104,17,175,72,3,112,32,168,137,162,116,143,160,108,17,175,73,3,112,32,168,137,162,124,143,160,220,17,175,74,3,112,32,168,137,162,132,143,160,224,17,175,75,3,112,32,168,137,162,140,143,160,232,17,175,77,3,112,32,168,137,162,164,143,160,236,17,175,78,3,112,32,168,137,162,172,143,160,96,18,175,80,3,112,32,168,137,162,180,143,160,100,18,175,81,3,112,32,168,137,162,188,143,160,104,18,175,82,3,112,32,168,137,162,196,143,160,108,18,175,83,3,112,32,168,137,160,242,16,175,92,3,112,32,179,137,160,114,17,175,93,3,112,32,179,137,160,242,17,175,94,3,112,32,179,137,160,114,18,175,95,3,112,32,179,137,175,89,3,112,41,255]},{"1182877":[208,11,162,36,144,160,248,16,32,119,137,128,65,58,208,11,162,36,144,160,248,16,32,94,137,128,51,58,208,11,162,44,144,160,248,16,32,94,137,128,37,58,208,11,162,52,144,160,248,16,32,94,137,128,23,58,208,11,162,60,144,160,248,16,32,94,137,128,9,162,36,144,160,248,16,32,119,137,175,90,3,112,41,255]},{"1182962":[208,11,162,68,144,160,120,17,32,119,137,128,37,58,208,11,162,68,144,160,120,17,32,94,137,128,23,58,208,11,162,76,144,160,120,17,32,94,137,128,9,162,84,144,160,120,17,32,94,137,175,91,3,112,41,255]},{"1183019":[208,11,162,92,144,160,248,17,32,94,137,128,23,58,208,11,162,100,144,160,248,17,32,94,137,128,9,162,108,144,160,248,17,32,94,137,175,107,3,112,41,255]},{"1183062":[208,11,162,116,144,160,120,18,32,94,137,128,37,58,208,11,162,124,144,160,120,18,32,94,137,128,23,58,208,11,162,132,144,160,120,18,32,94,137,128,9,162,140,144,160,120,18,32,94,137,175,72,4,112,41,255]},{"1183119":[34,249,151,160,175,6,80,127,41,255]},{"1183130":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183144":[24,105,16,30,141,250,18,162,212,143,160,252,16,175,85,3,112,32,168,137,175,84,3,112,41,255]},{"1183171":[208,11,162,4,144,160,124,17,32,119,137,128,23,58,208,11,162,4,144,160,124,17,32,94,137,128,9,162,12,144,160,124,17,32,94,137,162,204,143,160,252,17,175,86,3,112,32,168,137,162,220,143,160,124,18,175,87,3,112,32,168,137,175,116,3,112,41,4]},{"1183240":[240,11,162,236,143,160,28,19,32,94,137,128,9,162,228,143,160,28,19,32,94,137,175,116,3,112,41,2]},{"1183269":[240,11,162,244,143,160,32,19,32,94,137,128,9,162,228,143,160,32,19,32,94,137,175,116,3,112,41,1]},{"1183298":[240,11,162,252,143,160,36,19,32,94,137,128,9,162,228,143,160,36,19,32,94,137,175,122,3,112,41,2]},{"1183327":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183351":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183375":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183399":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183423":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183447":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183471":[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]},{"1183517":[10,186,10,185,6]},{"1183523":[10]},{"1183525":[10,20,10,19,6]},{"1183531":[10,5,14,6,14]},{"1183537":[30,22,14,5,6,6,6]},{"1183545":[30,22,6,182,14,182,6,182,142,182,134]},{"1183557":[6,21,6,48,6]},{"1183563":[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,249,151,160,175,4,80,127,41,255]},{"1183973":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183987":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1184001":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1184015":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184039":[34,249,151,160,175,6,80,127,41,255]},{"1184050":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184064":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184078":[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]},{"1184109":[34,249,151,160,175,6,80,127,41,255]},{"1184120":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184134":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184151":[4,169,136,1,157]},{"1184157":[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]},{"1184260":[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]},{"1184312":[141,2,20,165,16,41,255]},{"1184320":[201,1]},{"1184323":[208,107,175,135,128,48,41,255]},{"1184332":[201,2]},{"1184335":[208,95,8,226,48,218,90,34,53,181,164,122,250,40,41,255]},{"1184352":[208,78,169,110,29,141,142,19,24,105,16]},{"1184364":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184377":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184390":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184403":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184416":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184429":[141,216,19,226,32,107,34,147,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]},{"1184545":[189,4,16,9]},{"1184550":[32,157,4,16,202,202,208,243,162,60]},{"1184561":[189,68,16,9]},{"1184566":[32,157,68,16,202,202,208,243,162,60]},{"1184577":[189,132,16,9]},{"1184582":[32,157,132,16,202,202,208,243,162,60]},{"1184593":[189,196,16,9]},{"1184598":[32,157,196,16,202,202,208,243,162,60]},{"1184609":[189,4,17,9]},{"1184614":[32,157,4,17,202,202,208,243,162,60]},{"1184625":[189,68,17,9]},{"1184630":[32,157,68,17,202,202,208,243,162,60]},{"1184641":[189,132,17,9]},{"1184646":[32,157,132,17,202,202,208,243,162,60]},{"1184657":[189,196,17,9]},{"1184662":[32,157,196,17,202,202,208,243,162,60]},{"1184673":[189,4,18,9]},{"1184678":[32,157,4,18,202,202,208,243,162,60]},{"1184689":[189,68,18,9]},{"1184694":[32,157,68,18,202,202,208,243,162,60]},{"1184705":[189,132,18,9]},{"1184710":[32,157,132,18,202,202,208,243,162,60]},{"1184721":[189,196,18,9]},{"1184726":[32,157,196,18,202,202,208,243,162,60]},{"1184737":[189,4,19,9]},{"1184742":[32,157,4,19,202,202,208,243,162,60]},{"1184753":[189,68,19,9]},{"1184758":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184771":[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]},{"1184806":[67,169,24,141,1,67,169]},{"1184814":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184829":[141,2,67,169,208,141,3,67,173]},{"1184839":[33,72,169,128,141]},{"1184845":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184862":[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]},{"1184890":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,151,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184927":[128,51,159]},{"1184931":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184952":[28,141,206,16,24,105,16]},{"1184960":[141,14,17,175,219,3,112,9]},{"1184969":[28,141,208,16,24,105,16]},{"1184977":[141,16,17,175,221,3,112,9]},{"1184986":[28,141,210,16,24,105,16]},{"1184994":[141,18,17,175,223,3,112,9]},{"1185003":[28,141,212,16,24,105,16]},{"1185011":[141,20,17,175,108,3,112,41,255]},{"1185021":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185035":[153]},{"1185038":[200,200,202,208,8,72,152,24,105,44]},{"1185049":[168,104,198,2,208,236,32,33,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185073":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185095":[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]},{"1185134":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,53,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]},{"1185189":[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]},{"1185227":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185241":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,254,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185274":[141,18,11,107,110]},{"1185280":[111]},{"1185282":[112]},{"1185284":[113]},{"1185286":[115]},{"1185288":[116]},{"1185290":[117]},{"1185292":[118]},{"1185294":[120]},{"1185296":[121]},{"1185298":[122]},{"1185300":[123]},{"1185302":[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]},{"1185330":[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]},{"1185366":[143]},{"1185368":[81,127,200,200,183]},{"1185374":[143,2,81,127,200,200,183]},{"1185382":[143,4,81,127,200,200,183]},{"1185390":[143,6,81,127,169,2]},{"1185397":[133,4,34,14,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185425":[170,191]},{"1185428":[81,127,72,169]},{"1185434":[143]},{"1185436":[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]},{"1185498":[72,165,2,72,169,188,234,133]},{"1185507":[169,1]},{"1185510":[133,2,138,74,34,59,150,164,133,12,104,133,2,104,133]},{"1185526":[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]},{"1185558":[189,238,152,159]},{"1185563":[201,126,232,232,224,128,144,243,160]},{"1185573":[162]},{"1185575":[218,187,191,21,130,48,250,41,31]},{"1185585":[10,10,10,90,168,185,238,151,159,24,201,126,185,240,151,159,26,201,126,185,242,151,159,88,201,126,185,244,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,105,151,40,122,250,104,171,107,72,218,173]},{"1185645":[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]},{"1185675":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185696":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185719":[33,72,169,128,141]},{"1185725":[33,169,1,141,11,66,104,141]},{"1185734":[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]},{"1185762":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185787":[30,22,14]},{"1185791":[6,21,6,48,6]},{"1185797":[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]},{"1186167":[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]},{"1186243":[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]},{"1186340":[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]},{"1186397":[39,1,1,1,1,1,2,2,39,39,39]},{"1186413":[39,1,1,1,32,1,2,2,39,39,39]},{"1186429":[39,1,1,1,1,32,2,2,2,2,2]},{"1186445":[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]},{"1186489":[44]},{"1186491":[78,79,1,1,1,1,1,1,2,1,2]},{"1186503":[46]},{"1186507":[2,34,1,1,2]},{"1186515":[24,18,2,2]},{"1186520":[72]},{"1186525":[1,1,2]},{"1186529":[1,1,16,26,2]},{"1186536":[72]},{"1186541":[16,16,2]},{"1186545":[1,1,1,1]},{"1186551":[72]},{"1186554":[9]},{"1186557":[2,2,2]},{"1186561":[1,1,43]},{"1186566":[9]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186621":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186637":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186653":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186670":[2,2,2]},{"1186675":[2,2,2,2]},{"1186686":[2,2,2,2,41,2,2,2,2]},{"1186701":[1,1,1,1,1,1,1,1,1,1,1]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186731":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186749":[1,1,67,1,1,1,1,1,2,2,2]},{"1186765":[80,2,84,81,87,87,86,86,39,39,39]},{"1186777":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186793":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186809":[72,2,2]},{"1186813":[39,2,82,83,9,1,26,16,85,85]},{"1186825":[72,2,2]},{"1186829":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186851":[9,9,9,9,9,72,9,41]},{"1186860":[75,2,2,2]},{"1186865":[8,2,2]},{"1186872":[1]},{"1186875":[32]},{"1186877":[2,2,2,2,2,2,2]},{"1186886":[1,1,1,2]},{"1186891":[8]},{"1186893":[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]},{"1186993":[240,2,128,23,169,15,2,166,138,224,51]},{"1187005":[208,4,143,168,34,126,224,47]},{"1187014":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187028":[208,5,175,135,242,126,107,169,32]},{"1187038":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187061":[191,54,157,164,197,34,176,29,191,56,157,164,197,34,144,21,191,58,157,164,197,32,176,13,191,60,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187103":[201,184]},{"1187106":[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]},{"1187137":[10]},{"1187139":[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]},{"1187169":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187192":[143]},{"1187194":[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]},{"1187225":[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]},{"1187268":[112]},{"1187270":[240,14,48,15,32,1,96,1,208,10]},{"1187281":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187300":[64]},{"1187302":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187316":[201,5]},{"1187319":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187335":[208,18,173,10,4,41,255]},{"1187343":[201,67]},{"1187346":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187362":[208,25,173,10,4,41,255]},{"1187370":[201,91]},{"1187373":[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]},{"1187409":[176,5,10,170,252,98,158,171,194,48,162,30]},{"1187422":[169,190,13,107,98,159,98,159,98,159,99,159,98,159,142,159,98,159,136,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,215,160,98,159,98,159,98,159,222,160,98,159,98,159,98,159,98,159,98,159,98,159,253,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,151,163,98,159,98,159,98,159,98,159,98,159,98,159,179,163,98,159,117,167,248,169,98,159,255,169,98,159,98,159,98,159,98,159,54,170,98,159,11,167,98,159,98,159,98,159,98,159,98,159,98,159,172,170,98,159,35,171,98,159,1,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,42,171,98,159,98,159,98,159,49,171,98,159,98,159,98,159,98,159,98,159,98,159,77,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,31,173,45,173,98,159,98,159,38,173,98,159,52,173,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187698":[141,186,41,169,4,1,141,188,41,169,198]},{"1187710":[141,52,42,141,56,42,141,58,42,169,52]},{"1187722":[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]},{"1187825":[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]},{"1187972":[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]},{"1188051":[141,38,40,96,169,52]},{"1188058":[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]},{"1188171":[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]},{"1188207":[141,40,44,141,174,47,169,52]},{"1188216":[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]},{"1188255":[141,54,44,141,168,47,169,174]},{"1188264":[141,172,44,169,175]},{"1188270":[141,174,44,169,126]},{"1188276":[141,176,44,169,127]},{"1188282":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188300":[141,44,45,169,20]},{"1188306":[141,46,45,169,21]},{"1188312":[141,48,45,169,168]},{"1188318":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188336":[141,172,45,169,28]},{"1188342":[141,174,45,169,29]},{"1188348":[141,176,45,169,118]},{"1188354":[141,178,45,169,241]},{"1188360":[141,44,46,169,78]},{"1188366":[141,46,46,169,79]},{"1188372":[141,48,46,169,217]},{"1188378":[141,50,46,169,154]},{"1188384":[141,172,46,169,155]},{"1188390":[141,174,46,169,156]},{"1188396":[141,176,46,169,149]},{"1188402":[141,178,46,169,52]},{"1188408":[141,40,48,141,44,48,169,53]},{"1188417":[141,42,48,141,50,48,169,218]},{"1188426":[141,46,48,169,226]},{"1188432":[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]},{"1188513":[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]},{"1188597":[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]},{"1188654":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188670":[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]},{"1188762":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188783":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188799":[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]},{"1188841":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188862":[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]},{"1188928":[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]},{"1188958":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188976":[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]},{"1189003":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189024":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189042":[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]},{"1189111":[141,226,34,169,2,3,141,228,34,169,204]},{"1189123":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189147":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189168":[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]},{"1189210":[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]},{"1189243":[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]},{"1189338":[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]},{"1189471":[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]},{"1189564":[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]},{"1189639":[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]},{"1189773":[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]},{"1189818":[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]},{"1190136":[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]},{"1190181":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190199":[141,134,41,169,229]},{"1190205":[141,136,41,169]},{"1190210":[1,141,162,41,169,113]},{"1190217":[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]},{"1190262":[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]},{"1190298":[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]},{"1190325":[141,26,44,169,206]},{"1190331":[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]},{"1190395":[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]},{"1190450":[141,86,47,96,169,116,7,141]},{"1190459":[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]},{"1190501":[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]},{"1190717":[141,162,36,141,164,36,169,227]},{"1190726":[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]},{"1190853":[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]},{"1190883":[141,30,50,169,218]},{"1190889":[141,32,50,141,154,50,169,225]},{"1190898":[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]},{"1190943":[141,26,50,169,242]},{"1190949":[141,184,59,169,8,1,141,56,60,169,52]},{"1190961":[141,190,59,175,197,243,126,41,255]},{"1190971":[201,3]},{"1190974":[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]},{"1191117":[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,131,176,194,32,166,6,138,9]},{"1191348":[36,143,90,199,126,166,7,138,9]},{"1191358":[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,33,176,166,4,138,9]},{"1191391":[36,143,80,199,126,166,5,138,9]},{"1191401":[36,143,82,199,126,166,6,138,9]},{"1191411":[36,143,84,199,126,166,7,138,9]},{"1191421":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,131,176,194,32,166,6,138,9]},{"1191454":[36,143,96,199,126,166,7,138,9]},{"1191464":[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]},{"1191496":[175,24,244,126,32,92,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191518":[36,143,44,199,126,166,6,138,9]},{"1191528":[36,143,46,199,126,166,7,138,9]},{"1191538":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,92,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191574":[36,143,52,199,126,166,6,138,9]},{"1191584":[36,143,54,199,126,166,7,138,9]},{"1191594":[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]},{"1191627":[240,4,34,157,176,164,226,32,175,111,243,126,201,255,240,34,32,131,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191658":[9]},{"1191660":[36,143,100,199,126,166,7,138,9]},{"1191670":[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]},{"1191701":[24,105,7]},{"1191705":[41,248,255,170,175,202,80,127,41,255]},{"1191716":[208,3,130,215]},{"1191721":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191734":[165,26,41,12]},{"1191739":[74,74,240,58,201,1]},{"1191746":[240,98,201,2]},{"1191751":[208,3,130,180]},{"1191756":[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]},{"1191989":[144,6,200,233,100]},{"1191995":[128,245,132,5,160,144,201,10]},{"1192004":[144,6,200,233,10]},{"1192010":[128,245,132,6,160,144,201,1]},{"1192019":[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]},{"1192109":[240,11,175,100,243,126,63,222,176,164,208,1,107,124,250,176,32,131,176,194,32,166,6,138,9]},{"1192135":[36,143,148,199,126,166,7,138,9]},{"1192145":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192159":[128]},{"1192161":[64]},{"1192163":[32]},{"1192165":[16]},{"1192167":[8]},{"1192169":[4]},{"1192171":[2]},{"1192173":[1,128]},{"1192176":[64]},{"1192178":[32]},{"1192180":[16]},{"1192182":[8]},{"1192184":[4]},{"1192186":[22,177,22,177,49,177,74,177,102,177,127,177,152,177,177,177,202,177,229,177]},{"1192207":[178,27,178,52,178,79,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,189,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,189,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,189,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,189,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,189,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,189,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,189,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,189,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,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,189,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,189,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,189,176,107,159]},{"1192556":[4,112,159]},{"1192560":[5,112,159]},{"1192564":[6,112,159]},{"1192568":[7,112,159]},{"1192572":[8,112,159]},{"1192576":[9,112,159]},{"1192580":[10,112,159]},{"1192584":[11,112,159]},{"1192588":[12,112,159]},{"1192592":[13,112,159]},{"1192596":[14,112,159]},{"1192600":[15,112,107,159]},{"1192605":[244,126,159]},{"1192609":[101,127,159]},{"1192613":[102,127,159]},{"1192617":[103,127,159]},{"1192621":[104,127,159]},{"1192625":[105,127,159]},{"1192629":[106,127,159]},{"1192633":[107,127,159]},{"1192637":[108,127,159]},{"1192641":[109,127,159]},{"1192645":[110,127,159]},{"1192649":[111,127,107,72,226,48,173]},{"1192657":[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]},{"1192685":[141]},{"1192687":[67,169,128,141,1,67,169]},{"1192695":[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]},{"1192723":[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]},{"1192763":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192778":[72,171,173]},{"1192782":[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]},{"1192812":[67,141,1,67,169]},{"1192818":[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]},{"1192846":[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]},{"1192886":[67,194,48,171,104,162]},{"1192894":[138,107,165,17,34,156,135]},{"1192902":[213,179,164,237,179,164,12,180,164,13,181,164,35,181,164,169,128,141,16,7,34,61,137]},{"1192926":[34,51,131]},{"1192930":[34,151,148,164,169,7,133,20,230,17,107,32,44,182,100,200,100,201,34,53,181,164,208,11,162,15,169]},{"1192958":[159]},{"1192960":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,156,182,165,246,41,16,240,3,32,232,183,165,246,41,32,240,3,32,245,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,233,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,245,183,128,52,201,242,208,5,32,232,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193151":[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,154,183,32,79,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,53,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]},{"1193275":[16,112,208,3,130,161]},{"1193282":[202,16,244,194,32,162,14,169]},{"1193292":[159,208,80,127,202,202,16,248,32,232,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]},{"1193333":[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]},{"1193362":[133,4,34,14,178,160,226,32,175]},{"1193372":[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]},{"1193447":[107,169]},{"1193451":[133]},{"1193453":[133,2,169,11]},{"1193458":[133,4,166]},{"1193462":[191]},{"1193464":[16,112,58,41,31]},{"1193470":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193495":[16,6,24,105,8]},{"1193501":[230,2,133,4,165]},{"1193507":[26,133]},{"1193510":[201,16]},{"1193513":[144,201,96,173]},{"1193518":[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]},{"1193546":[141]},{"1193548":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,196,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]},{"1193626":[67,96,194,32,165,200,41,255]},{"1193635":[10,170,191,231,182,164,24,105,132,96,235,143,2,17]},{"1193650":[165,201,41,255]},{"1193655":[10,170,191,7,183,164,24,105,163,97,235,143,18,17]},{"1193670":[235,24,105,32]},{"1193675":[235,143,30,17]},{"1193680":[235,24,105,3]},{"1193685":[235,143,38,17]},{"1193690":[235,24,105,61]},{"1193695":[235,143,46,17]},{"1193700":[226,32,96,64]},{"1193705":[67]},{"1193707":[70]},{"1193709":[73]},{"1193711":[76]},{"1193713":[79]},{"1193715":[82]},{"1193717":[85]},{"1193719":[160]},{"1193721":[163]},{"1193723":[166]},{"1193725":[169]},{"1193727":[172]},{"1193729":[175]},{"1193731":[178]},{"1193733":[181]},{"1193735":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193755":[66]},{"1193757":[69]},{"1193759":[72]},{"1193761":[75]},{"1193763":[78]},{"1193765":[81]},{"1193767":[84]},{"1193769":[87]},{"1193771":[159]},{"1193773":[162]},{"1193775":[165]},{"1193777":[168]},{"1193779":[171]},{"1193781":[174]},{"1193783":[177]},{"1193785":[180]},{"1193787":[183]},{"1193789":[255]},{"1193791":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193814":[10,170,191,231,182,164,24,105,132,96,235,143,10,17]},{"1193829":[165,201,41,255]},{"1193834":[10,170,191,7,183,164,24,105,163,97,235,143,58,17]},{"1193849":[235,24,105,32]},{"1193854":[235,143,70,17]},{"1193859":[235,24,105,3]},{"1193864":[235,143,78,17]},{"1193869":[235,24,105,61]},{"1193874":[235,143,86,17]},{"1193879":[226,32,96,194,48,162,15]},{"1193887":[191]},{"1193889":[16,112,41,255]},{"1193894":[155,10,10,10,133]},{"1193900":[152,10,10,10,10,133,3,166]},{"1193909":[191,230,151,164,166,3,157,6,16,166]},{"1193920":[191,232,151,164,166,3,157,8,16,166]},{"1193931":[191,234,151,164,166,3,157,14,16,166]},{"1193942":[191,236,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]},{"1193989":[51,1,10,2,10]},{"1193995":[2,5,14,6,14]},{"1194001":[2]},{"1194003":[6,21,6]},{"1194007":[2,12,14,13,14]},{"1194013":[2,98,6,99,6]},{"1194019":[2,10,2,11,2]},{"1194025":[2,32,14,33,14]},{"1194031":[2,133,26,134,26]},{"1194037":[2,171,30,171,30,97,195]},{"1194045":[51,17,10,18,10]},{"1194051":[2]},{"1194053":[30,22,14]},{"1194057":[2,48,6]},{"1194061":[30]},{"1194063":[2,28,14,28,78]},{"1194069":[2,114,6,115,6]},{"1194075":[2,26,2,27,2]},{"1194081":[2,48,14,49,14]},{"1194087":[2,149,26,150,26]},{"1194093":[2,171,30,171,30,98,3]},{"1194101":[51,7,10,23,202]},{"1194107":[2,8,10,24,202]},{"1194113":[2,9,10,25,202]},{"1194119":[2,44,6,44,70]},{"1194125":[2,34,2,35,2]},{"1194131":[2,36,2,37,2]},{"1194137":[2,38,14,39,14]},{"1194143":[2,40,10,41,10]},{"1194149":[2,138,29]},{"1194153":[2,98,35]},{"1194157":[51,23,10,7,202]},{"1194163":[2,24,10,8,202]},{"1194169":[2,25,10,9,202]},{"1194175":[2,60,6,61,6]},{"1194181":[2,50,2,51,2]},{"1194187":[2,52,2,53,2]},{"1194193":[2,54,14,55,14]},{"1194199":[2,56,10,57,10]},{"1194205":[2,154,29]},{"1194209":[2,98,99]},{"1194213":[51,42,26,43,26]},{"1194219":[2,64,30,65,30]},{"1194225":[2,66,26,66,90]},{"1194231":[2,29,6,30,6]},{"1194237":[2,72,6,73,6]},{"1194243":[2,74,14,75,14]},{"1194249":[2,76,22,77,22]},{"1194255":[2,78,2,79,2]},{"1194261":[2]},{"1194263":[2,139,29,98,131]},{"1194269":[51,58,26,59,26]},{"1194275":[2,80,30,81,30]},{"1194281":[2,82,26,83,26]},{"1194287":[2,45,6,46,6]},{"1194293":[2,88,6,89,6]},{"1194299":[2,90,14,91,14]},{"1194305":[2,92,22,93,22]},{"1194311":[2,94,2,95,2]},{"1194317":[2]},{"1194319":[2,155,29,98,195]},{"1194325":[51,14,14,15,14]},{"1194331":[2,100,6,101,6]},{"1194337":[2,109,10,110,10]},{"1194343":[2,111,26,111,90]},{"1194349":[2,129,6,129,70]},{"1194355":[2,130,10,131,10]},{"1194361":[2,132,6,132,70]},{"1194367":[2,47,74,47,10]},{"1194373":[2,103,94,103,30,98,227]},{"1194381":[51,31,78,31,14]},{"1194387":[2,116,6,117,6]},{"1194393":[2,125,10,126,10]},{"1194399":[2,127,26,127,90]},{"1194405":[2,145,6,145,70]},{"1194411":[2,146,10,147,10]},{"1194417":[2,148,6,148,70]},{"1194423":[2,62,10,63,10]},{"1194429":[2,103,222,103,158,255,255,96,132]},{"1194439":[3,134,29,134,29,96,164]},{"1194447":[3,150,29,150,29,96,135]},{"1194455":[3,134,29,134,29,96,167]},{"1194463":[3,150,29,150,29,96,138]},{"1194471":[3,134,29,134,29,96,170]},{"1194479":[3,150,29,150,29,96,141]},{"1194487":[3,134,29,134,29,96,173]},{"1194495":[3,150,29,150,29,96,144]},{"1194503":[3,134,29,134,29,96,176]},{"1194511":[3,150,29,150,29,96,147]},{"1194519":[3,134,29,134,29,96,179]},{"1194527":[3,150,29,150,29,96,150]},{"1194535":[3,134,29,134,29,96,182]},{"1194543":[3,150,29,150,29,96,153]},{"1194551":[3,134,29,134,29,96,185]},{"1194559":[3,150,29,150,29,96,228]},{"1194567":[3,134,29,134,29,97,4]},{"1194575":[3,150,29,150,29,96,231]},{"1194583":[3,134,29,134,29,97,7]},{"1194591":[3,150,29,150,29,96,234]},{"1194599":[3,134,29,134,29,97,10]},{"1194607":[3,150,29,150,29,96,237]},{"1194615":[3,134,29,134,29,97,13]},{"1194623":[3,150,29,150,29,96,240]},{"1194631":[3,134,29,134,29,97,16]},{"1194639":[3,150,29,150,29,96,243]},{"1194647":[3,134,29,134,29,97,19]},{"1194655":[3,150,29,150,29,96,246]},{"1194663":[3,134,29,134,29,97,22]},{"1194671":[3,150,29,150,29,96,249]},{"1194679":[3,134,29,134,29,97,25]},{"1194687":[3,150,29,150,29,96,196]},{"1194695":[3]},{"1194697":[2]},{"1194699":[2,96,196]},{"1194703":[3,103,222,103,158,97,130]},{"1194711":[7]},{"1194713":[2]},{"1194715":[2]},{"1194717":[2]},{"1194719":[2,97,162,128,3]},{"1194725":[2]},{"1194727":[2,97,165,128,3]},{"1194733":[2]},{"1194735":[2,97,226]},{"1194739":[7]},{"1194741":[2]},{"1194743":[2]},{"1194745":[2]},{"1194747":[2,97,130]},{"1194751":[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]},{"1194779":[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]},{"1194818":[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]},{"1194945":[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]},{"1195005":[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,4,188,164,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,90,160,24,34,128,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,26,192,160,34,159,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195124":[208,11,40,90,160,24,34,128,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,159,155,160,107,72,175,67,244,126,208,4,34,168,192,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,4,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,4,188,164,104,34,168,160,2,107,58,16,8,169]},{"1195380":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195394":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,4,188,169,1,143]},{"1195420":[80,127,156,70,6,156,66,6,76,4,188,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,168,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195643":[83,127,201,3,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,174,191,164,226,48,169]},{"1195681":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195739":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195797":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,57,191,34,231,244,30,32,121,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,89,133,8,169,191,105]},{"1195854":[133,9,34,117,223,5,34,92,220,6,96]},{"1195867":[247,255,198]},{"1195872":[2]},{"1195877":[200]},{"1195880":[2]},{"1195883":[248,255,198]},{"1195888":[2]},{"1195893":[202,64]},{"1195896":[2,175,103,129,48,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,202,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195954":[84,34,155,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195980":[98,41,110,41,107,41,105,41,127]},{"1195990":[111,41,97,41,106,41,112,41,127]},{"1196000":[112,41,107,41,127]},{"1196006":[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]},{"1196053":[33,218,162,128,142]},{"1196059":[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]},{"1196087":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196104":[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,153,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,153,192,126,240,42,58,143,153,192,126,201]},{"1196195":[208,33,8,194,48,162]},{"1196203":[224,64]},{"1196206":[176,11,169,127]},{"1196211":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196234":[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]},{"1196281":[240,7,224,2,240,3,130,137]},{"1196290":[130,132]},{"1196293":[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]},{"1196439":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196456":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196472":[224,28]},{"1196475":[176,12,191,186,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196492":[175,211,244,126,41,255]},{"1196499":[58,201,64]},{"1196503":[176,63,10,10,10,10,10,170,192,60]},{"1196514":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196537":[176,11,169,127]},{"1196542":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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,141,184,160,122,218,90,8,194,48,162]},{"1196698":[224,16]},{"1196701":[176,12,191,214,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196718":[175,152,192,126,41,255]},{"1196725":[58,201,64]},{"1196729":[176,63,10,10,10,10,10,170,192,48]},{"1196740":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196763":[176,11,169,127]},{"1196768":[159,88,192,126,232,232,128,240,226,32,169,1,143,69,80,127,143,68,80,127,169,120,143,153,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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"99":[192]},{"127":[179]},{"155":[164]},{"204":[92,70,128,161]},{"215":[92,214,224,160,234]},{"221":[43]},{"257":[43]},{"827":[128,1]},{"980":[92,162,133,164]},{"2027":[128,50]},{"2379":[34,214,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,68,179,164]},{"2561":[165,188]},{"3097":[34,125,132,164,234]},{"4993":[2]},{"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,143,199,160]},{"21847":[34,103,200,160,234]},{"21854":[34,98,151]},{"21858":[234,234]},{"23454":[63]},{"23562":[63]},{"24418":[92]},{"24420":[253]},{"24422":[234,234]},{"25951":[32]},{"26189":[92,147,252,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[116,163,160]},{"30994":[246,163,160]},{"31001":[116,163,160]},{"31011":[246,163,160]},{"31046":[4,188,164]},{"31102":[34,225,153,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[235,187,164]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,44,199,160,234,234,234,234]},{"51019":[234,234]},{"51027":[0]},{"53095":[34,136,188,164]},{"59775":[1,8]},{"59778":[1,7]},{"60395":[92,174,150,164,234]},{"60423":[34,33,194,164]},{"60790":[7,189,164]},{"61077":[49,181,160]},{"61133":[34,129,196,160,234]},{"62723":[34,52,132,160]},{"65511":[34,37,239,160]},{"65607":[49,238,160]},{"65778":[34,40,143,160,234,234]},{"65879":[34,108,194,160,234]},{"65894":[34,154,194,160]},{"66284":[34,189,194,160]},{"66292":[92,89,246,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"66710":[92,39,241,160]},{"67552":[34,126,128,164,234,234,234,234,234]},{"67579":[34,213,130,164]},{"67619":[34,143,128,160]},{"67793":[34,152,189,164,234,234]},{"67934":[160,248,160]},{"68474":[34,156,223]},{"68496":[15,240]},{"68499":[208,6,234]},{"68584":[164,248,160]},{"69737":[34,242,223]},{"69777":[15,240]},{"69780":[208,4,234]},{"70410":[164,248,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,82,246,160,234]},{"72216":[189,187,164]},{"72241":[34,154,194,160]},{"72246":[252,153,160]},{"73041":[34,248,154,160]},{"73263":[40,238,160]},{"73340":[34,241,128,160,234]},{"73937":[34,170,194,160]},{"74833":[34,213,130,164]},{"76178":[234,234]},{"76208":[234,234]},{"76423":[34,42,239,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,25,248,160,234]},{"78138":[226,246,160]},{"78172":[34,51,189,164,34,225,153,160,234,234]},{"79603":[34,241,187,164]},{"79767":[34,167,189,164]},{"82376":[234,234]},{"82676":[164,248,160]},{"87784":[234,234,234]},{"87892":[34,47,246,160,234,234,234,234,234]},{"88488":[4]},{"88505":[34,100,240,160]},{"90651":[34,136,237,160,234,234]},{"93230":[34,238,157,164,234,234]},{"93325":[34,170,156,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"93521":[34,238,157,164,234,234]},{"97647":[34,122,129,160,107]},{"97776":[34,146,129,160,96]},{"130070":[177,198,249,201,198,249]},{"157614":[34,205,156,164]},{"166195":[5]},{"166200":[1]},{"166205":[7]},{"166325":[107,194,164]},{"166331":[34,248,154,160]},{"167201":[4]},{"167203":[252]},{"167207":[254]},{"173045":[116,181,160]},{"173058":[116,181,160]},{"173307":[116,181,160]},{"173320":[116,181,160]},{"183384":[34,15,248,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187802":[34,248,154,160]},{"187902":[34,15,155,160]},{"188153":[0]},{"188234":[178,237,160]},{"188261":[34,143,130,164,96]},{"188337":[34,230,151,160]},{"188959":[34,179,236,160,128,13]},{"189655":[34,33,196,160,234,234]},{"190938":[0]},{"190954":[64]},{"190970":[0]},{"190986":[64]},{"191002":[0]},{"191018":[0]},{"191034":[64]},{"191050":[64]},{"191262":[50,194,164]},{"191439":[34,62,197,160,234,234]},{"191760":[234,234,234,234,234]},{"191967":[34,82,197,160,234,234]},{"192037":[34,15,155,160]},{"192083":[34,113,143,160,234,234]},{"192095":[34,102,195,160,234]},{"192121":[190,195,160]},{"192140":[34,80,144,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,109,133,160]},{"192350":[197,133,160]},{"192378":[13,133,160]},{"192463":[198,132,160]},{"192506":[34]},{"192508":[133,160,234,234,234,234,234,234]},{"192561":[216,132,160]},{"192650":[34,126,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,99,143,160]},{"192893":[34,15,155,160]},{"192937":[0,128,162]},{"192957":[0,128,162]},{"192975":[0,128,162]},{"192985":[0,128,162]},{"193014":[34,248,154,160]},{"193025":[13,144,160]},{"193033":[34,248,154,160]},{"193140":[34,27,179,160]},{"193157":[34,20,179,160]},{"193440":[34,5,220,160]},{"193472":[72,236,160]},{"193546":[34,5,220,160]},{"193578":[16,236,160]},{"193854":[34,122,143,160]},{"193859":[32]},{"193888":[230,194,160]},{"194141":[34,214,195,160,234,234,234,234,234]},{"194177":[34,60,195,160,96,234,234,234,234,234,234,234,234]},{"195214":[92,179,236,160]},{"195327":[34,33,143,160,240,2,96,234]},{"195539":[34,60,199,160]},{"195589":[102,176,160]},{"195710":[34,124,176,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[56,176,160]},{"195909":[66,176,160]},{"196477":[34,15,155,160]},{"196497":[34,248,154,160]},{"197750":[189,192,160]},{"198721":[34,231,218,160,234,234]},{"198801":[234,234,234,234,234,234,234,234,34,38,187,164]},{"198942":[34,77,156,164]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,70,143,160]},{"199659":[34,14,166,160,96,234]},{"199950":[34,106,143,160]},{"199964":[249,175,160]},{"199993":[34,76,176,160]},{"200070":[34,56,143,160]},{"200470":[34,49,143,160]},{"200845":[34,63,143,160,201]},{"200851":[240]},{"200853":[34,63,143,160]},{"200858":[8]},{"200893":[34,70,143,160]},{"201132":[34,0,128,164,234,234]},{"207430":[11]},{"207432":[11]},{"207434":[11]},{"207436":[11]},{"207438":[75]},{"207532":[240]},{"208729":[92,194,198,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[79,143,160]},{"208994":[34,70,143,160,234,234]},{"209010":[139]},{"209098":[242,143,160]},{"209199":[41,247]},{"210057":[92,57,220,160,234,234,234,234]},{"210164":[149,143,160]},{"211413":[215,143,160]},{"212333":[69,194,164]},{"212610":[88,194,164]},{"213139":[27,191,164]},{"213169":[151,133,160]},{"214205":[34,189,180,160]},{"214972":[79,180,160]},{"215101":[48]},{"215190":[3]},{"215429":[3]},{"217490":[34,84,188,164]},{"217579":[34,95,193,160]},{"224597":[34,5,219,160]},{"224693":[34,25,219,160]},{"224710":[34,75,129,164]},{"225501":[34,12,128,164,234,234]},{"225992":[34,154,129,164]},{"226026":[34,39,220,160,234]},{"226304":[34,90,219,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,8,239,160]},{"229634":[34,117,192,164]},{"230816":[57,179,160]},{"230955":[57,179,160]},{"233256":[39,153,160]},{"233266":[34,165,128,160]},{"233297":[34,17,239,160,234]},{"233987":[90,187,164]},{"234731":[34,183,187,164]},{"234747":[34,28,239,160]},{"235953":[34,39,133,160,144,3]},{"236024":[221,204,160]},{"236047":[63,193,160]},{"236578":[34,83,134,164]},{"237653":[34,108,133,164,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,0,133,164]},{"237682":[234,175]},{"238447":[234,234,234,234,234]},{"238458":[14,198,160]},{"238498":[34,151,196,160,128,3]},{"238562":[34,218,198,160,240,4,234]},{"238751":[34,155,220,160]},{"238964":[34,155,220,160]},{"239190":[34,155,220,160]},{"239964":[77,189,164]},{"240044":[92,223,156,164]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34]},{"241117":[219,160]},{"241165":[34]},{"241167":[219,160]},{"241175":[34,235,128,164]},{"241294":[34]},{"241296":[219,160]},{"241304":[34,235,128,164]},{"241814":[34,123,219,160,24,125,139,176]},{"241869":[173,236,160]},{"241877":[34,123,219,160,24,125,139,176]},{"242942":[34,33,237,160]},{"242973":[255]},{"243003":[255]},{"243060":[34,204,188,164,234]},{"243067":[234,234,34,202,216,160,234]},{"250411":[34,156,128,164,234,234]},{"250420":[34,153,219,160,234]},{"250478":[34,207,219,160,234]},{"259329":[142,1]},{"259373":[144,1,145,1]},{"259455":[144,1]},{"259501":[145,1]},{"261983":[34,29,154,164,96]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273121":[34,38,242,160,234]},{"273608":[34,185,182,160,76,230,172]},{"275716":[34,157,182,160,234]},{"276202":[34,218,182,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279585":[92,136,226,160,234]},{"279601":[34,156,128,160,234]},{"279644":[241,133,160,92,107,239,160,234,234]},{"279880":[92,10,195,164]},{"280037":[34,65,235,160,234,234]},{"280055":[234,234,234,234,234]},{"280063":[173,236,160]},{"280106":[92,219,226,160,234]},{"280265":[189,210,160]},{"280287":[189,209,160]},{"280314":[189,210,160]},{"280335":[34,217,179,160]},{"282028":[34,98,156,164,234,234,234,234,234]},{"282124":[92,32,130,164,234,234,234]},{"282393":[34,73,130,164]},{"282569":[107]},{"283541":[34,89,194,160,234,234]},{"285863":[34,27,129,164,234]},{"285881":[34]},{"285883":[219,160]},{"285891":[34,182,128,164]},{"295207":[34,198,132,164]},{"295219":[34,223,132,164]},{"296429":[34,222,200,160,234]},{"296453":[92,126,194,164,234]},{"296466":[189,211]},{"296471":[190,211]},{"296480":[189,213]},{"296488":[189,211]},{"296493":[190,211]},{"296502":[189,213,34,0,128,160]},{"296583":[34,248,154,160]},{"296619":[189,214]},{"296810":[205,208]},{"296882":[34,194,129,160]},{"296888":[234,234,234]},{"296927":[234,234,234]},{"297038":[237,206]},{"297052":[221,207]},{"297087":[34,73,133,160,234,176]},{"297120":[92,117,226,160,234]},{"297144":[189,209]},{"297200":[237,206]},{"297225":[221,207]},{"297263":[190,215]},{"297292":[34,41,195,160]},{"297309":[197,215]},{"297904":[34,91,129,160,234]},{"301947":[34,126,130,164,234,234,234,234,144]},{"302146":[92,28,195,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,29,224,160]},{"324619":[34,17,153,160]},{"324675":[34,182,188,164]},{"324780":[8,8,16]},{"324882":[43]},{"324896":[34,121,237,160,34,158,188,164,234,234,234,234,234,234]},{"324996":[34,170,194,160]},{"325098":[169,2,0,234]},{"325131":[34,169,237,160]},{"325203":[34,155,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":[65,239,160]},{"342245":[34,59,132,160,34,31,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,146,247,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,15,155,160]},{"344119":[34,15,155,160]},{"344185":[34,15,155,160]},{"344248":[34,15,155,160]},{"344312":[34,15,155,160]},{"344375":[34,15,155,160]},{"344441":[34,15,155,160]},{"344499":[34,15,155,160]},{"344565":[34,15,155,160]},{"344623":[34,15,155,160]},{"344689":[34,15,155,160]},{"344747":[34,15,155,160]},{"344813":[34,15,155,160]},{"344871":[34,15,155,160]},{"344937":[34,15,155,160]},{"345406":[34,45,154,160]},{"345531":[34,64,154,160,96]},{"345560":[34,64,154,160,96]},{"393133":[235,187,164]},{"409856":[34,46,227,160]},{"410028":[94,255,161]},{"410347":[34,155,178,164]},{"412057":[234,234,234,234]},{"412775":[66,0,0,175]},{"412810":[254,238,160]},{"412876":[92,105,178,164]},{"413015":[107]},{"413094":[126,148,164]},{"413109":[34,85,237,160]},{"413141":[34,142,145,164,234,234,234,234,234,234,234,234]},{"413199":[234,234,234,234,234,234,234,234,234]},{"413249":[34,35,149,164,234,234,234,234]},{"413264":[34,74,149,164,234,234,234,234,234,234]},{"413297":[92,113,149,164,234]},{"413317":[234,234,234,234]},{"413448":[34,204,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,142,145,164,234,234,234,234,234,234,234,234]},{"414774":[68]},{"414776":[36]},{"414790":[128]},{"414947":[34,106,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,251,137,164,234]},{"415036":[66]},{"415040":[234,234]},{"415090":[64]},{"415102":[61]},{"415421":[81]},{"415659":[34,106,178,164]},{"415678":[34,163,149,164]},{"416378":[22,150,164]},{"416491":[34,237,149,164,234]},{"416529":[34,200,149,164]},{"416588":[234,234,234,234]},{"416912":[34,228,149,164]},{"416937":[34,214,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":[90,242,160,234,234]},{"436680":[165,2,105,0]},{"439171":[7]},{"439312":[75]},{"443170":[7]},{"444489":[34,15,155,160]},{"449502":[34,110,189,164,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,127,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,157,242,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,106,242,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,29,155,160,96]},{"450208":[4]},{"450227":[34,180,132,164]},{"450334":[34,112,155,160]},{"450360":[34,245,182,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,97,184,160,234]},{"450492":[34,80,155,160,234,234,234]},{"450861":[34,119,184,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451485":[34,240,132,164]},{"451775":[34,209,132,164]},{"452340":[128]},{"452537":[34,227,155,160,234]},{"452559":[34,209,155,160,234]},{"452581":[34,245,155,160,234]},{"452634":[96]},{"453064":[34,16,160,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,119,193,160,234,234,76,230,236]},{"453867":[34,7,156,160,234]},{"453892":[34,25,156,160]},{"454092":[34,130,155,160,234,234,234,234,234]},{"454233":[34,130,155,160,234,234,234,234,234]},{"454256":[34,223,194,160,234]},{"454282":[34,130,155,160,234,234,234,234,234]},{"454459":[34,130,155,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,243,131,160]},{"457344":[34,19,154,160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,230,216,160]},{"457513":[34,12,217,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,61,196,160,128,15,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,92,105,237,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,63,227,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,187,131,164,234,234]},{"486677":[34,187,131,164,234,234]},{"486698":[34,200,131,164,234,234]},{"486832":[172,179,35]},{"486873":[34,192,179,35]},{"487006":[57,235,160]},{"487403":[169,2,0,234]},{"487935":[34,103,227,160]},{"488156":[34,103,227,160]},{"488213":[34,103,227,160]},{"488242":[34,103,227,160]},{"488309":[34,103,227,160]},{"488340":[34,103,227,160]},{"488721":[34,103,227,160]},{"489560":[34,103,227,160]},{"490022":[34,103,227,160]},{"490060":[34,103,227,160]},{"490164":[34,103,227,160]},{"490184":[34,103,227,160]},{"490209":[34,103,227,160]},{"490257":[34,103,227,160]},{"490438":[34,119,227,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,156,156,164]},{"883347":[15]},{"883371":[15]},{"883395":[15]},{"883419":[15]},{"883443":[15]},{"883467":[15]},{"883789":[34,36,132,160]},{"883797":[234,234,234,234,234,234]},{"899214":[92,101,241,160]},{"900244":[34,185,239,160,208,39,234,234,234,234,234,234]},{"900357":[92,176,241,160,234]},{"900437":[92,74,240,160,234]},{"900447":[34,33,246,160,234,234,234]},{"900458":[34,241,187,164]},{"901799":[34,110,153,164,107,32,222,201,107]},{"903876":[34,242,241,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,159,235,160,96]},{"954852":[208,181,160]},{"955117":[126,235,160]},{"955529":[204,181,160]},{"962925":[169,181,160]},{"962951":[169,181,160]},{"963167":[169,181,160]},{"963214":[169,181,160]},{"965041":[169,181,160]},{"965069":[169,181,160]},{"965214":[169,181,160]},{"965298":[169,181,160]},{"965316":[169,181,160]},{"967797":[34,17,180,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,43,180,160]},{"972824":[120,181,160]},{"972834":[120,181,160]},{"972851":[120,181,160]},{"974665":[92,170,197,160,234]},{"974706":[231,197,160]},{"974722":[204,197,160]},{"975106":[34,129,143,160]},{"975132":[34,129,143,160]},{"975265":[34,187,197,160,234,234]},{"975332":[34,153,197,160,234,234]},{"975401":[255]},{"976357":[165,181,160]},{"976423":[165,181,160]},{"978658":[149,181,160]},{"979078":[34,25,220,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":[25,181,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,117,196,160]},{"983466":[149,181,160]},{"983651":[149,181,160]},{"988539":[161,181,160]},{"988657":[161,181,160]},{"988668":[161,181,160]},{"988874":[161,181,160]},{"988902":[161,181,160]},{"989142":[161,181,160]},{"994007":[157,80]},{"994143":[157,80]},{"995192":[106,129,160]},{"996856":[153,181,160]},{"999246":[157,181,160]},{"999265":[157,181,160]},{"999359":[157,181,160]},{"999574":[157,181,160]},{"1002731":[92,57,205,30]},{"1003079":[92,111,197,160]},{"1003229":[34,248,154,160]},{"1003277":[34,248,154,160]},{"1004410":[220,130,160]},{"1004774":[34,79,128,164,234,234]},{"1004919":[92,92,128,164]},{"1005119":[124,181,160]},{"1005176":[234,234,34,111,128,164]},{"1005296":[124,181,160]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[0,128,162]},{"1008025":[34,187,242,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1009927":[4,240]},{"1009930":[34,40,143,160,234,234]},{"1010175":[175,143,160]},{"1011427":[34]},{"1011429":[169,160,96,234]},{"1011808":[34,170,144]},{"1011812":[234]},{"1012601":[234,234,234,234]},{"1041509":[30]},{"1048568":[32,25,8,49]},{"1048576":[34,162,184,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,16,34,165,128,160,208,10,32,13,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]},{"1048905":[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]},{"1048969":[34,149,253,2,34,48,128,191,107,165,16,201,14,3,240,25,201,14,7,240,20,167]},{"1048992":[159]},{"1048994":[195,126,159]},{"1048998":[197,126,230]},{"1049002":[230]},{"1049004":[232,232,136,16,237,107,167]},{"1049012":[159]},{"1049014":[197,126,230]},{"1049018":[230]},{"1049020":[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,204,130,160,34,137,187,164,107,175,74,128,48,240,3,76,86,130,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1049092":[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,135,130,165,27,240,17,173,12,4,201,255,208,13,165,160,208,6,175,113,129,48,208,12,76,227,129,175,162,128,48,208,23,76,248,129,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,175,83,243,126,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]},{"1049218":[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,227,129,175,162,128,48,208,23,76,98,130,169]},{"1049258":[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]},{"1049303":[143,204,243,126,107,169]},{"1049310":[143,204,243,126,34,69,249]},{"1049318":[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]},{"1049532":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1049546":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1049560":[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,243,131,160,133,29,107,34,204,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,10,175,106,240,126,41,127,143,106,240,126,107,218,90,188,128,14,208,5,34,225,133,160,168,34,9,134,160,34,107,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]},{"1049778":[34,179,145,7,34,157,153,7,24,130,1]},{"1049790":[56,34,133,179,160,122,250,107,218,90,34,189,192,160,188,128,14,208,5,34,214,138,160,168,128,182,8,34,126,151,160,144,44,72,90,175]},{"1049827":[80,127,240,7,34,151,133,160,130,27]},{"1049838":[189,128,14,72,34,114,149,160,144,8,189,96,14,9,32,157,96,14,104,34,193,150,160,34,92,220,6,122,104,40,107,8,34,126,151,160,144,247,72,90,175]},{"1049880":[80,127,240,6,34,197,133,160,128,231,189,128,14,128,202,175,152,192,126,208,26,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,9,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,9,141,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049978":[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]},{"1050014":[169,1,143]},{"1050018":[80,127,165,93,201,20,240,25,169]},{"1050028":[143]},{"1050030":[80,127,34,107,141,160,143,153,192,126,34,225,133,160,157,128,14,34,85,150,160,104,107,72,169]},{"1050056":[143]},{"1050058":[80,127,34,107,141,160,143,153,192,126,34,214,138,160,157,128,14,34,85,150,160,104,107,165,27,240,7,34,38,134,160,130,4]},{"1050092":[34,195,135,160,107,72,175,152,192,126,208,7,104,34,88,173,9,128,1,104,72,169,1,143]},{"1050117":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1050134":[208,11,175,22,244,126,9,1]},{"1050143":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1050158":[208,50,175,135,128,48,208,6,175]},{"1050168":[128,48,128,35,218,8,194,48,165]},{"1050178":[72,165,2,72,169]},{"1050184":[128,133]},{"1050187":[169,48]},{"1050190":[133,2,169]},{"1050195":[34,59,150,164,250,134,2,250,134,1,40,250,130,92,1,201,226]},{"1050213":[208,50,175,135,128,48,208,6,175,1,128,48,128,35,218,8,194,48,165]},{"1050233":[72,165,2,72,169]},{"1050239":[128,133]},{"1050242":[169,48]},{"1050245":[133,2,169,1]},{"1050250":[34,59,150,164,250,134,2,250,134,1,40,250,130,37,1,201,234]},{"1050268":[208,50,175,135,128,48,208,6,175,2,128,48,128,35,218,8,194,48,165]},{"1050288":[72,165,2,72,169]},{"1050294":[128,133]},{"1050297":[169,48]},{"1050300":[133,2,169,2]},{"1050305":[34,59,150,164,250,134,2,250,134,1,40,250,130,238]},{"1050320":[201,27,1,208,108,165,34,235,41,1]},{"1050331":[208,50,175,135,128,48,208,6,175,3,128,48,128,35,218,8,194,48,165]},{"1050351":[72,165,2,72,169]},{"1050357":[128,133]},{"1050360":[169,48]},{"1050363":[133,2,169,3]},{"1050368":[34,59,150,164,250,134,2,250,134,1,40,250,130,175]},{"1050383":[175,135,128,48,208,6,175,4,128,48,128,35,218,8,194,48,165]},{"1050401":[72,165,2,72,169]},{"1050407":[128,133]},{"1050410":[169,48]},{"1050413":[133,2,169,4]},{"1050418":[34,59,150,164,250,134,2,250,134,1,40,250,130,125]},{"1050433":[201,38,1,208,50,175,135,128,48,208,6,175,5,128,48,128,35,218,8,194,48,165]},{"1050456":[72,165,2,72,169]},{"1050462":[128,133]},{"1050465":[169,48]},{"1050468":[133,2,169,5]},{"1050473":[34,59,150,164,250,134,2,250,134,1,40,250,130,70]},{"1050488":[201,39,1,208,50,175,135,128,48,208,6,175,6,128,48,128,35,218,8,194,48,165]},{"1050511":[72,165,2,72,169]},{"1050517":[128,133]},{"1050520":[169,48]},{"1050523":[133,2,169,6]},{"1050528":[34,59,150,164,250,134,2,250,134,1,40,250,130,15]},{"1050543":[201,135]},{"1050546":[208,7,175,98,129,48,130,3]},{"1050555":[169,23]},{"1050558":[41,255]},{"1050561":[40,107,8,194,32,165,138,201,3]},{"1050571":[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]},{"1050598":[72,165,2,72,169,64,129,133]},{"1050607":[169,48]},{"1050610":[133,2,169]},{"1050615":[34,59,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]},{"1050648":[72,165,2,72,169,16,128,133]},{"1050657":[169,48]},{"1050660":[133,2,169,6]},{"1050665":[34,59,150,164,250,134,2,250,134,1,40,250,130,153,2,201,5]},{"1050683":[208,50,175,135,128,48,208,6,175,65,129,48,128,35,218,8,194,48,165]},{"1050703":[72,165,2,72,169,64,129,133]},{"1050712":[169,48]},{"1050715":[133,2,169,1]},{"1050720":[34,59,150,164,250,134,2,250,134,1,40,250,130,98,2,201,40]},{"1050738":[208,50,175,135,128,48,208,6,175,66,129,48,128,35,218,8,194,48,165]},{"1050758":[72,165,2,72,169,64,129,133]},{"1050767":[169,48]},{"1050770":[133,2,169,2]},{"1050775":[34,59,150,164,250,134,2,250,134,1,40,250,130,43,2,201,42]},{"1050793":[208,50,175,135,128,48,208,6,175,74,129,48,128,35,218,8,194,48,165]},{"1050813":[72,165,2,72,169,64,129,133]},{"1050822":[169,48]},{"1050825":[133,2,169,10]},{"1050830":[34,59,150,164,250,134,2,250,134,1,40,250,130,244,1,201,48]},{"1050848":[208,107,165,34,201]},{"1050854":[2,176,50,175,135,128,48,208,6,175,67,129,48,128,35,218,8,194,48,165]},{"1050875":[72,165,2,72,169,64,129,133]},{"1050884":[169,48]},{"1050887":[133,2,169,3]},{"1050892":[34,59,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]},{"1050925":[72,165,2,72,169,16,128,133]},{"1050934":[169,48]},{"1050937":[133,2,169,7]},{"1050942":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,53]},{"1050960":[208,50,175,135,128,48,208,6,175,68,129,48,128,35,218,8,194,48,165]},{"1050980":[72,165,2,72,169,64,129,133]},{"1050989":[169,48]},{"1050992":[133,2,169,4]},{"1050997":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,59]},{"1051015":[208,50,175,135,128,48,208,6,175,69,129,48,128,35,218,8,194,48,165]},{"1051035":[72,165,2,72,169,64,129,133]},{"1051044":[169,48]},{"1051047":[133,2,169,5]},{"1051052":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,66]},{"1051070":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051090":[72,165,2,72,169,64,129,133]},{"1051099":[169,48]},{"1051102":[133,2,169,6]},{"1051107":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051122":[201,74]},{"1051125":[208,50,175,135,128,48,208,6,175,70,129,48,128,35,218,8,194,48,165]},{"1051145":[72,165,2,72,169,64,129,133]},{"1051154":[169,48]},{"1051157":[133,2,169,6]},{"1051162":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051177":[201,91]},{"1051180":[208,50,175,135,128,48,208,6,175,71,129,48,128,35,218,8,194,48,165]},{"1051200":[72,165,2,72,169,64,129,133]},{"1051209":[169,48]},{"1051212":[133,2,169,7]},{"1051217":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051232":[201,104]},{"1051235":[208,50,175,135,128,48,208,6,175,72,129,48,128,35,218,8,194,48,165]},{"1051255":[72,165,2,72,169,64,129,133]},{"1051264":[169,48]},{"1051267":[133,2,169,8]},{"1051272":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051287":[201,129]},{"1051290":[208,50,175,135,128,48,208,6,175,73,129,48,128,35,218,8,194,48,165]},{"1051310":[72,165,2,72,169,64,129,133]},{"1051319":[169,48]},{"1051322":[133,2,169,9]},{"1051327":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051342":[169,23]},{"1051345":[41,255]},{"1051348":[40,107,8,194,32,165,160,201,200]},{"1051358":[208,50,175,135,128,48,208,6,175,80,129,48,128,35,218,8,194,48,165]},{"1051378":[72,165,2,72,169,80,129,133]},{"1051387":[169,48]},{"1051390":[133,2,169]},{"1051395":[34,59,150,164,250,134,2,250,134,1,40,250,130,242,1,201,51]},{"1051413":[208,50,175,135,128,48,208,6,175,81,129,48,128,35,218,8,194,48,165]},{"1051433":[72,165,2,72,169,80,129,133]},{"1051442":[169,48]},{"1051445":[133,2,169,1]},{"1051450":[34,59,150,164,250,134,2,250,134,1,40,250,130,187,1,201,7]},{"1051468":[208,50,175,135,128,48,208,6,175,82,129,48,128,35,218,8,194,48,165]},{"1051488":[72,165,2,72,169,80,129,133]},{"1051497":[169,48]},{"1051500":[133,2,169,2]},{"1051505":[34,59,150,164,250,134,2,250,134,1,40,250,130,132,1,201,90]},{"1051523":[208,50,175,135,128,48,208,6,175,83,129,48,128,35,218,8,194,48,165]},{"1051543":[72,165,2,72,169,80,129,133]},{"1051552":[169,48]},{"1051555":[133,2,169,3]},{"1051560":[34,59,150,164,250,134,2,250,134,1,40,250,130,77,1,201,6]},{"1051578":[208,50,175,135,128,48,208,6,175,84,129,48,128,35,218,8,194,48,165]},{"1051598":[72,165,2,72,169,80,129,133]},{"1051607":[169,48]},{"1051610":[133,2,169,4]},{"1051615":[34,59,150,164,250,134,2,250,134,1,40,250,130,22,1,201,41]},{"1051633":[208,50,175,135,128,48,208,6,175,85,129,48,128,35,218,8,194,48,165]},{"1051653":[72,165,2,72,169,80,129,133]},{"1051662":[169,48]},{"1051665":[133,2,169,5]},{"1051670":[34,59,150,164,250,134,2,250,134,1,40,250,130,223]},{"1051685":[201,172]},{"1051688":[208,50,175,135,128,48,208,6,175,86,129,48,128,35,218,8,194,48,165]},{"1051708":[72,165,2,72,169,80,129,133]},{"1051717":[169,48]},{"1051720":[133,2,169,6]},{"1051725":[34,59,150,164,250,134,2,250,134,1,40,250,130,168]},{"1051740":[201,222]},{"1051743":[208,50,175,135,128,48,208,6,175,87,129,48,128,35,218,8,194,48,165]},{"1051763":[72,165,2,72,169,80,129,133]},{"1051772":[169,48]},{"1051775":[133,2,169,7]},{"1051780":[34,59,150,164,250,134,2,250,134,1,40,250,130,113]},{"1051795":[201,144]},{"1051798":[208,50,175,135,128,48,208,6,175,88,129,48,128,35,218,8,194,48,165]},{"1051818":[72,165,2,72,169,80,129,133]},{"1051827":[169,48]},{"1051830":[133,2,169,8]},{"1051835":[34,59,150,164,250,134,2,250,134,1,40,250,130,58]},{"1051850":[201,164]},{"1051853":[208,50,175,135,128,48,208,6,175,89,129,48,128,35,218,8,194,48,165]},{"1051873":[72,165,2,72,169,80,129,133]},{"1051882":[169,48]},{"1051885":[133,2,169,9]},{"1051890":[34,59,150,164,250,134,2,250,134,1,40,250,130,3]},{"1051905":[169,62]},{"1051908":[41,255]},{"1051911":[40,107,194,32,165,160,201,200]},{"1051920":[208,4,56,130,82]},{"1051926":[201,51]},{"1051929":[208,4,56,130,73]},{"1051935":[201,7]},{"1051938":[208,4,56,130,64]},{"1051944":[201,90]},{"1051947":[208,4,56,130,55]},{"1051953":[201,6]},{"1051956":[208,4,56,130,46]},{"1051962":[201,41]},{"1051965":[208,4,56,130,37]},{"1051971":[201,172]},{"1051974":[208,4,56,130,28]},{"1051980":[201,222]},{"1051983":[208,4,56,130,19]},{"1051989":[201,144]},{"1051992":[208,4,56,130,10]},{"1051998":[201,164]},{"1052001":[208,4,56,130,1]},{"1052007":[24,226,32,107,90,165,27,208,3,130,230]},{"1052019":[8,194,32,165,160,201,135]},{"1052027":[208,7,175,58,227,48,130,137,1,201,200]},{"1052039":[208,7,175,62,227,48,130,125,1,201,51]},{"1052051":[208,7,175,63,227,48,130,113,1,201,7]},{"1052063":[208,7,175,64,227,48,130,101,1,201,90]},{"1052075":[208,7,175,65,227,48,130,89,1,201,6]},{"1052087":[208,7,175,66,227,48,130,77,1,201,41]},{"1052099":[208,7,175,67,227,48,130,65,1,201,172]},{"1052111":[208,7,175,68,227,48,130,53,1,201,222]},{"1052123":[208,7,175,69,227,48,130,41,1,201,144]},{"1052135":[208,7,175,70,227,48,130,29,1,201,164]},{"1052147":[208,7,175,71,227,48,130,17,1,201,225]},{"1052159":[208,7,175,72,227,48,130,5,1,201,226]},{"1052171":[208,7,175,73,227,48,130,249]},{"1052180":[201,234]},{"1052183":[208,7,175,74,227,48,130,237]},{"1052192":[201,27,1,208,22,165,34,235,41,1]},{"1052203":[208,7,175,75,227,48,130,217]},{"1052212":[175,76,227,48,130,210]},{"1052219":[201,38,1,208,7,175,77,227,48,130,198]},{"1052231":[201,39,1,208,44,175,78,227,48,130,186]},{"1052243":[169]},{"1052246":[130,180]},{"1052249":[8,194,32,165,138,201,3]},{"1052257":[208,21,165,34,201,98,7,144,7,175,79,227,48,130,156]},{"1052273":[175,59,227,48,130,149]},{"1052280":[201,5]},{"1052283":[208,7,175,80,227,48,130,137]},{"1052292":[201,40]},{"1052295":[208,7,175,81,227,48,130,125]},{"1052304":[201,42]},{"1052307":[208,7,175,61,227,48,130,113]},{"1052316":[201,48]},{"1052319":[208,21,165,34,201]},{"1052325":[2,176,7,175,82,227,48,130,94]},{"1052335":[175,60,227,48,130,87]},{"1052342":[201,53]},{"1052345":[208,7,175,83,227,48,130,75]},{"1052354":[201,59]},{"1052357":[208,7,175,84,227,48,130,63]},{"1052366":[201,66]},{"1052369":[208,7,175,85,227,48,130,51]},{"1052378":[201,74]},{"1052381":[208,7,175,85,227,48,130,39]},{"1052390":[201,91]},{"1052393":[208,7,175,86,227,48,130,27]},{"1052402":[201,104]},{"1052405":[208,7,175,87,227,48,130,15]},{"1052414":[201,129]},{"1052417":[208,7,175,88,227,48,130,3]},{"1052426":[169]},{"1052429":[41,255]},{"1052432":[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]},{"1052786":[72,165,2,72,169,16,128,133]},{"1052795":[169,48]},{"1052798":[133,2,169,3]},{"1052803":[34,59,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]},{"1052874":[72,165,2,72,169,16,128,133]},{"1052883":[169,48]},{"1052886":[133,2,169]},{"1052891":[34,59,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]},{"1052933":[72,165,2,72,169,16,128,133]},{"1052942":[169,48]},{"1052945":[133,2,169,1]},{"1052950":[34,59,150,164,250,134,2,250,134,1,40,250,168,175,91,227,48,128,5,169]},{"1052972":[160,70,226,32,143,152,192,126,40,104,107,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,27,72,32,191,218,207,150,128,48,144,16,175,153,192,126,208,10,104,175,151,128,48,34,55,145,160,107,104,218,139,75,171,170,191,120,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,119,217,160,76,55,145,201,251,208,7,34,51,218,160,76,55,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,55,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,55,145,160,107,175,89,243,126,201,255,208,3,169,67,107,201]},{"1053168":[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,55,145,160,107,175,22,244,126,41,192,74,74,74,74,74,74,201]},{"1053241":[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,55,145,160,107,175,64,243,126,26,74,201]},{"1053295":[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]},{"1053353":[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]},{"1053392":[65,36,71,72,72,72,254,255,253,13,250,251,248,248,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,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,191,218,207,150,128,48,144,10,104,175,151,128,48,34,120,147,160,107,104,218,139,75,171,170,191,114,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,120,147,160,107,201]},{"1053652":[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,120,147,160,107,201]},{"1053707":[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,120,147,160,107,201]},{"1053747":[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,119,217,160,76,120,147,201,251,208,7,34,51,218,160,76,120,147,107]},{"1053811":[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]},{"1053849":[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]},{"1053898":[2,6,2,2,4,8,253,254,255,252,250,251,248,248]},{"1053916":[8,8,8]},{"1053922":[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,191,218,207,150,128,48,144,11,175,151,128,48,34,114,149,160,130,128]},{"1054121":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,114,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,114,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,114,149,160,128,37,201,98,208,6,34,119,217,160,128,8,201,99,208,4,34,51,218,160,162]},{"1054232":[224,36,176,12,223,45,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,32,109,150,34,55,145,160,34,45,213]},{"1054307":[169]},{"1054309":[143,153,192,126,122,250,104,107,72,8,72,194,32,169]},{"1054325":[143,37,192,126,143,39,192,126,169]},{"1054335":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,120,147,160,143,42,192,126,143,50,192,126,104,34,114,149,160,176,2,128,27,194,32,169]},{"1054376":[143,44,192,126,143,51,192,126,169]},{"1054386":[8,143,46,192,126,169]},{"1054393":[52,143,48,192,126,40,104,96,34,114,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]},{"1054462":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,114,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]},{"1054543":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1054573":[169]},{"1054576":[143,66,80,127,128,6,162,64,45,160,2]},{"1054588":[104,107,32,167,151,176,35,194,32,165,226,72,56,233,15]},{"1054604":[133,226,165,232,72,56,233,15]},{"1054613":[133,232,226,32,32,167,151,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1054645":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1054665":[13,133]},{"1054668":[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]},{"1054703":[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]},{"1054745":[144,8,230,5,56,233,100]},{"1054753":[128,243,201,10]},{"1054758":[144,8,230,6,56,233,10]},{"1054766":[128,243,201,1]},{"1054771":[144,8,230,7,56,233,1]},{"1054779":[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,97,152,127,97,152,160,171,107]},{"1054818":[1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,218,174]},{"1054836":[16,41,127]},{"1054840":[157,2,16,232,232,104,10,41,255,127,9]},{"1054852":[112,157,2,16,232,232,152,157,2,16,232,232,226,32,169,255,157,2,16,142]},{"1054873":[16,169,1,133,20,194,32,107,218,174]},{"1054884":[16,41,127]},{"1054888":[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]},{"1054930":[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]},{"1054977":[143,109,243,126,169]},{"1054983":[143,1,80,127,40,175,109,243,126,107,162]},{"1054995":[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]},{"1055021":[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]},{"1055048":[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,115,153,160,107,72,173]},{"1055094":[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]},{"1055124":[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]},{"1055198":[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]},{"1055259":[143,23,192,126,175,139,243,126,107,169]},{"1055270":[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,227,154,160,170,191,104,243,126,31,20,244,126,250,63,237,154,160,208,3,130,98]},{"1055347":[191,216,154,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,230,154,160,170,191,104,243,126,31,20,244,126,250,63,241,154,160,208,3,130,44]},{"1055401":[191,220,154,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]},{"1055461":[1,1]},{"1055466":[1]},{"1055468":[1,32,32,16]},{"1055473":[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]},{"1055526":[240,5,169,8]},{"1055531":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1055544":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1055566":[2,107,175,19,130,48,41,255]},{"1055575":[240,5,169,8]},{"1055580":[128,7,175,72,128,48,41,255]},{"1055589":[24,101,234,48,3,169]},{"1055597":[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]},{"1055624":[201,255]},{"1055627":[208,1,107,175,22,244,126,41,32]},{"1055637":[240,4,169]},{"1055642":[107,173,12,4,41,255]},{"1055649":[201,255]},{"1055652":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1055676":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,102,239,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1055708":[107,169,136,21,133]},{"1055714":[107,175,69,128,48,208,6,169,16,22,133]},{"1055726":[107,169,144,21,133]},{"1055732":[107,175,69,128,48,208,6,169,24,22,133]},{"1055744":[107,169,152,21,133]},{"1055750":[107,175,69,128,48,208,6,169,32,22,133]},{"1055762":[107,169,160,21,133]},{"1055768":[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]},{"1055860":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1055874":[144,240,175,22,244,126,41,32]},{"1055883":[240,3,130,200,1,175,69,128,48,41,1]},{"1055895":[208,3,130,231]},{"1055900":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1055922":[141,135,22,169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1055939":[141,137,22,169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1055956":[141,141,22,169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1055973":[141,143,22,169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1055990":[141,145,22,169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1056007":[141,149,22,169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1056024":[141,151,22,169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1056041":[141,153,22,169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1056058":[141,155,22,169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1056075":[141,157,22,169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1056092":[141,159,22,169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1056109":[141,161,22,169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1056126":[141,165,22,194,32,175,69,128,48,41,2]},{"1056138":[208,3,130,201]},{"1056143":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1056156":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1056171":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1056186":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1056201":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1056216":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1056231":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1056246":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1056261":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1056276":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1056291":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1056306":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1056321":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1056336":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1056351":[208,3,130,170,1,175,69,128,48,41,4]},{"1056363":[208,3,130,201]},{"1056368":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1056381":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1056396":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1056411":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1056426":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1056441":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1056456":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1056471":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1056486":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1056501":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1056516":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1056531":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1056546":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1056561":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1056576":[208,3,130,201]},{"1056581":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1056594":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1056609":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1056624":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1056639":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1056654":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1056669":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1056684":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1056699":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1056714":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1056729":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1056744":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1056759":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1056774":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1056793":[191,88,161,160,157,234,18,191,108,161,160,157,42,19,191,128,161,160,157,106,19,191,148,161,160,157,170,19,191,168,161,160,157,234,19,191,188,161,160,157,42,20,191,208,161,160,157,106,20,191,228,161,160,157,170,20,191,248,161,160,157,234,20,232,232,224,20]},{"1056861":[144,186,175,116,243,126,41,4]},{"1056870":[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]},{"1056903":[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]},{"1056936":[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]},{"1056969":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1056990":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1057011":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1057032":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1057053":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1057074":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1057095":[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]},{"1057718":[143,114,243,126,173,10,2,208,14,169]},{"1057729":[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]},{"1057763":[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]},{"1057844":[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]},{"1057887":[165,12,201,232,3,144,3,130,24]},{"1057897":[201,100]},{"1057900":[144,3,130,97]},{"1057905":[201,10]},{"1057908":[144,3,130,170]},{"1057913":[201,1]},{"1057916":[144,3,130,243]},{"1057921":[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,6,166,133,14,165,14,159]},{"1057958":[201,126,232,232,169,56]},{"1057965":[159]},{"1057967":[201,126,232,232,164,10,152,10,168,185,242,165,159]},{"1057981":[201,126,232,232,169]},{"1057988":[159]},{"1057990":[201,126,232,232,165,14,24,105,8]},{"1058000":[133,14,100,10,165,12,201,100]},{"1058009":[144,8,56,233,100]},{"1058015":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,6,166,133,14,165,14,159]},{"1058039":[201,126,232,232,169,56]},{"1058046":[159]},{"1058048":[201,126,232,232,164,10,152,10,168,185,242,165,159]},{"1058062":[201,126,232,232,169]},{"1058069":[159]},{"1058071":[201,126,232,232,165,14,24,105,8]},{"1058081":[133,14,100,10,165,12,201,10]},{"1058090":[144,8,56,233,10]},{"1058096":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,6,166,133,14,165,14,159]},{"1058120":[201,126,232,232,169,56]},{"1058127":[159]},{"1058129":[201,126,232,232,164,10,152,10,168,185,242,165,159]},{"1058143":[201,126,232,232,169]},{"1058150":[159]},{"1058152":[201,126,232,232,165,14,24,105,8]},{"1058162":[133,14,100,10,165,12,201,1]},{"1058171":[144,8,56,233,1]},{"1058177":[230,10,128,243,133,12,192,255,208,10,160]},{"1058189":[165,14,24,121,6,166,133,14,165,14,159]},{"1058201":[201,126,232,232,169,56]},{"1058208":[159]},{"1058210":[201,126,232,232,164,10,152,10,168,185,242,165,159]},{"1058224":[201,126,232,232,169]},{"1058231":[159]},{"1058233":[201,126,232,232,165,14,24,105,8]},{"1058243":[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]},{"1058314":[252,255,248,255,218,90,8,194,48,162]},{"1058326":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1058341":[208,13,175,153,80,127,41,255]},{"1058350":[223,3,200,48,208,44,226,32,191]},{"1058360":[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]},{"1058402":[200,48,41,255]},{"1058407":[201,255]},{"1058410":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,200]},{"1058433":[226,32,162]},{"1058438":[160]},{"1058441":[152,207,96,80,127,144,3,130,172]},{"1058451":[191,1,201,48,201,255,208,3,130,161]},{"1058462":[191]},{"1058464":[201,48,207,80,80,127,240,3,130,137]},{"1058475":[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]},{"1058512":[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,186,167,160,170,32,217,167,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]},{"1058643":[235,175,98,80,127,170,191,2,243,126,128,2,169]},{"1058657":[143,95,80,127,175,82,80,127,201,255,208,12,175,95,80,127,15,20,173,160,143,95,80,127,175,86,80,127,201,255,208,12,175,95,80,127,15,21,173,160,143,95,80,127,175,90,80,127,201,255,208,12,175,95,80,127,15,22,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]},{"1058750":[128]},{"1058755":[1]},{"1058758":[169,240,143,68,80,127,169,167,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,55,145,160,34,45,213]},{"1058797":[194,16,96,32,244,167,107,173]},{"1058806":[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]},{"1058836":[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]},{"1058873":[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]},{"1059014":[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]},{"1059179":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1059200":[175,81,80,127,201,255,208,3,76,109,169,139,75,171,34,231,244,30,32,187,169,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]},{"1059251":[32,216,173,32,216,171,171,107,175,99,80,127,41,7,240,26,201,1,208,3,130,165]},{"1059274":[201,2,208,3,130,227]},{"1059281":[201,3,208,3,130,110,1,201,4,208,1,96,218,162]},{"1059296":[165,26,41,16,240,12,189,79,170,159]},{"1059307":[201,126,232,224,16,144,244,189,95,170,159]},{"1059319":[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]},{"1059378":[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]},{"1059409":[248,255]},{"1059414":[2]},{"1059419":[16]},{"1059422":[2]},{"1059425":[248,255]},{"1059430":[2]},{"1059435":[16,64]},{"1059438":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,164,133,8,169,170,133,9,128,8,169,172,133,8,169,170,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1059496":[70,10]},{"1059499":[2]},{"1059504":[70,74]},{"1059507":[2,218,162]},{"1059511":[165,26,41,64,240,12,189,38,171,159]},{"1059522":[201,126,232,224,16,144,244,189,54,171,159]},{"1059534":[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]},{"1059593":[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]},{"1059624":[248,255,132]},{"1059629":[2]},{"1059634":[16]},{"1059637":[2]},{"1059640":[248,255,132]},{"1059645":[2]},{"1059650":[16,64]},{"1059653":[2,218,162]},{"1059657":[165,26,41,64,240,12,189,184,171,159]},{"1059668":[201,126,232,224,16,144,244,189,200,171,159]},{"1059680":[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]},{"1059739":[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]},{"1059770":[248,255,142]},{"1059775":[2]},{"1059780":[16]},{"1059783":[2]},{"1059786":[248,255,142]},{"1059791":[2]},{"1059796":[16,64]},{"1059799":[2,218,90,8,160]},{"1059805":[90,152,74,74,168,175,95,80,127,57,20,173,240,3,122,128,48,122,173,238]},{"1059826":[221,32,15,208,39,32,171,173,32,23,173,34,230,131,6,144,3,32,203,173,32,129,173,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,45,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]},{"1059954":[169,107,160,1,34,25,226,5,169,60,141,46,1,130,143]},{"1059970":[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,20,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,20,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]},{"1060123":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1060144":[58,10,168,185,205,174,133]},{"1060152":[122,104,24,113]},{"1060157":[24,105,2]},{"1060161":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1060174":[13,194,32,90,200,200,24,113]},{"1060183":[122,72,175,81,80,127,41,128]},{"1060192":[240,7,104,24,105,4]},{"1060199":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1060222":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1060239":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1060252":[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]},{"1060280":[165,35,105]},{"1060284":[133,8,165,32,105,8,133,1,165,33,105]},{"1060296":[133,9,96,218,34]},{"1060302":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1060324":[160]},{"1060326":[175,81,80,127,41,3,201,3,208,5,32,9,174,128,4,201,2,208,5,32,9,174,128,4,201,1,208,3,32,9,174,122,250,171,96,175,95,80,127,57,20,173,240,3,130,178]},{"1060373":[90,175,81,80,127,41,3,58,10,168,194,32,185,205,174,133]},{"1060390":[163,1,10,10,168,177]},{"1060397":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1060410":[208,8,177]},{"1060414":[143,39,192,126,128,10,177]},{"1060422":[24,105,4]},{"1060426":[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,235,174,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,120,147,160,143,42,192,126,169]},{"1060493":[143,43,192,126,191,82,80,127,34,114,149,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1060519":[143,44,192,126,32,192,175,169,2,218,72,175,97,80,127,170,104,32,119,175,250,175,81,80,127,41,128,208,3,32,238,174,200,232,232,232,232,96,211,174,215,174,223,174,8]},{"1060565":[40]},{"1060567":[240,255,40]},{"1060571":[32]},{"1060573":[40]},{"1060575":[216,255,40]},{"1060579":[8]},{"1060581":[40]},{"1060583":[56]},{"1060585":[40]},{"1060587":[198,200,202,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1060606":[58,10,168,185,205,174,133]},{"1060614":[185,101,175,133,2,122,90,152,10,10,168,177]},{"1060627":[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,88,164,226,32,133,6,100,7,72,169]},{"1060666":[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,107,175,109,175,113,175]},{"1060716":[255]},{"1060718":[128,128,255]},{"1060722":[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]},{"1060803":[194,32,191,37,192,126,24,105,4]},{"1060813":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1060829":[159,47,192,126,191,41,192,126,24,105,16]},{"1060841":[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]},{"1060883":[72,165,2,72,169,16,128,133]},{"1060892":[169,48]},{"1060895":[133,2,169,2]},{"1060900":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,85,150,160,107,72,189,128,14,34,193,150,160,104,107,72,188,128,14,104,34,53,144,160,107,169,8,157,80,15,169]},{"1060947":[143]},{"1060949":[80,127,32,195,176,143,153,192,126,32,170,176,34,85,150,160,107,72,175]},{"1060969":[80,127,240,6,34,81,176,160,128,7,32,170,176,34,18,151,160,104,107,32,195,176,143,152,192,126,32,170,176,201,36,208,24,90,160,36,34,162,184,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]},{"1061083":[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]},{"1061352":[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]},{"1061419":[191,244,178,160,197,4,144,3,232,128,245,191,245,178,160,133,6,100,7,194,32,138,10,10,170,191,246,178,160,141,232,80,191,248,178,160,141,234,80,173]},{"1061460":[81,141,224,80,173,2,81,141,226,80,173,232,80,74,74,41,3]},{"1061478":[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,224,176,173,236,80,10,10,170,189]},{"1061515":[81,56,229,8,157]},{"1061521":[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]},{"1061553":[81,141,228,80,189,2,81,141,230,80,32,224,176,173]},{"1061568":[81,56,229,8,141]},{"1061574":[81,141,224,80,173,2,81,229,10,141,2,81,141,226,80,173,232,80,56,239,220,176,160,141,232,80,173,234,80,239,222,176,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,34,55,145,160,72,165,138,201,3,240,6,34,7,179,160,128,4,34,250,178,160,104,107,34,107,141,160,143,153,192,126,34,195,135,160,72,34,85,150,160,169,1,143,51,80,127,143,52,80,127,34,34,179,160,169,235,143]},{"1061724":[254,127,34,93,246,29,104,153,128,14,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1061748":[13,165,33,153,32,13,169]},{"1061756":[153,32,15,169,127,153,112,15,107,72,8,34,175,179,160,144,31,156,18,1,156,239,3,169]},{"1061781":[133,93,194,32,165,138,201,48]},{"1061790":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1061814":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1061827":[128,16,201,48]},{"1061832":[208,11,165,34,201]},{"1061838":[2,144,4,56,130,1]},{"1061845":[24,226,32,107,191,189,209,160,145,146,107,201,2,240,44,194,32,165,8,133]},{"1061866":[226,32,34,16,247,8,169,52,145,144,200,191,189,210,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1061901":[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]},{"1061963":[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,183,180,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]},{"1062110":[13,173,219,15,233]},{"1062116":[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]},{"1062155":[13,173,219,15,233]},{"1062161":[153,32,13,158,208,13,40,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1062186":[254,127,208,245,169,4,107,34,227,188,164,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,27,34,245,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,245,188,164,34,113,186,13,41,7,201,7,208,2,169]},{"1062259":[107,169]},{"1062262":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,232,181,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,232,181,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,232,181,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,232,181,160,107,218,8,194,32,41,127]},{"1062383":[10,170,191]},{"1062387":[82,127,26,41,255,3,159]},{"1062395":[82,127,170,10,191]},{"1062401":[128,175,40,250,107,218,8,194,48,162]},{"1062413":[191,61,182,160,159]},{"1062419":[82,127,232,232,191,61,182,160,159]},{"1062429":[82,127,232,232,191,61,182,160,159]},{"1062439":[82,127,232,232,191,61,182,160,159]},{"1062449":[82,127,232,232,224,127]},{"1062456":[144,211,40,250,107]},{"1062463":[64]},{"1062465":[128]},{"1062467":[192]},{"1062470":[1,64,1,128,1,192,1]},{"1062478":[2,64,2,128,2,192,2]},{"1062486":[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,93,182,160,175,35,128,48,208,4,34,125,182,160,104,107,72,169]},{"1062588":[143,65,80,127,175,34,128,48,201,1,208,4,34,93,182,160,175,35,128,48,201,1,208,4,34,125,182,160,104,107,72,175,34,128,48,201,2,208,4,34,93,182,160,175,35,128,48,201,2,208,4,34,125,182,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]},{"1062754":[201,1,208,84,175,142,243,126,41,192,201,192,208,76,218,162]},{"1062771":[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]},{"1062842":[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]},{"1062878":[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,49,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]},{"1063003":[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]},{"1063029":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1063049":[2,156,5,2,169]},{"1063055":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,147,185,72,218,8,175,152,192,126,240,3,130,229]},{"1063086":[192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,212]},{"1063103":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,195]},{"1063120":[192,41,208,13,175,140,243,126,9,40,143,140,243,126,130,178]},{"1063137":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,161]},{"1063154":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,144]},{"1063171":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,127]},{"1063188":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,110]},{"1063205":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,87]},{"1063228":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,70]},{"1063245":[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]},{"1063278":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1063301":[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]},{"1063333":[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]},{"1063391":[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]},{"1063417":[192,59,208,3,130,96]},{"1063424":[165,27,240,92,173,233,2,201,1,240,85,8,194,32,173,142,4,201,18,1,208,3,130,67]},{"1063449":[201,15,1,208,3,130,59]},{"1063457":[201,16,1,208,3,130,51]},{"1063465":[201,28,1,208,3,130,43]},{"1063473":[201,31,1,208,3,130,35]},{"1063481":[201,255]},{"1063484":[208,3,130,27]},{"1063489":[201,20,1,208,3,130,19]},{"1063497":[201,21,1,208,3,130,11]},{"1063505":[201,22,1,208,3,130,3]},{"1063513":[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]},{"1063545":[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]},{"1063698":[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]},{"1063736":[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]},{"1063774":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1063792":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1063810":[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]},{"1063846":[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]},{"1063884":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1063902":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,127,192,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]},{"1064006":[208,9,32,25,191,32,74,191,130,64,2,192,1,208,6,32,25,191,130,54,2,192,2,208,6,32,25,191,130,44,2,192,3,208,6,32,25,191,130,34,2,192,4,208,6,32,74,191,130,24,2,192,5,208,6,32,74,191,130,14,2,192,6,208,6,32,74,191,130,4,2,192,7,144,10,192,14,176,6,32,123,191,130,246,1,192,20,208,9,32,215,190,32,123,191,130,233,1,192,15,144,10,192,23,176,6,32,123,191,130,219,1,192,23,208,6,32,223,191,130,209,1,192,24,144,10,192,26,176,6,32,123,191,130,195,1,192,26,208,9,32,248,190,32,123,191,130,182,1,192,29,208,6,32,123,191,130,172,1,192,27,144,10,192,32,176,6,32,135,191,130,158,1,192,32,208,6,32,7,192,130,148,1,192,33,208,6,32,123,191,130,138,1,192,34,144,10,192,36,176,6,32,35,192,130,124,1,192,36,208,6,32,51,192,130,114,1,192,37,208,6,32,83,192,130,104,1,192,38,208,3,130,97,1,192,39,208,6,32,155,192,130,87,1,192,40,208,6,32,155,192,130,77,1,192,41,208,6,32,123,191,130,67,1,192,42,144,10,192,46,176,6,32,123,191,130,53,1,192,49,208,6,32,155,192,130,43,1,192,50,208,6,32,115,192,130,33,1,192,51,208,6,32,177,192,130,23,1,192,55,144,10,192,58,176,6,32,163,191,130,9,1,192,58,144,10,192,60,176,6,32,104,191,130,251]},{"1064342":[192,60,208,6,32,123,191,130,241]},{"1064352":[192,61,208,6,32,123,191,130,231]},{"1064362":[192,62,144,10,192,64,176,6,32,251,191,130,217]},{"1064376":[192,72,208,6,32,123,191,130,207]},{"1064386":[192,73,208,6,32,25,191,130,197]},{"1064396":[192,74,208,9,32,215,190,32,123,191,130,184]},{"1064409":[192,75,208,9,32,182,190,32,135,191,130,171]},{"1064422":[192,76,208,9,32,191,191,32,155,192,130,158]},{"1064435":[192,77,144,10,192,80,176,6,32,191,191,130,144]},{"1064449":[192,80,208,6,32,25,191,130,134]},{"1064459":[192,81,144,10,192,85,176,6,32,191,191,130,120]},{"1064473":[192,88,208,6,32,104,191,130,110]},{"1064483":[192,94,208,6,32,25,191,130,100]},{"1064493":[192,95,208,6,32,74,191,130,90]},{"1064503":[192,96,208,6,32,35,192,130,80]},{"1064513":[192,97,208,6,32,135,191,130,70]},{"1064523":[192,100,144,10,192,102,176,6,32,104,191,130,56]},{"1064537":[192,112,144,10,192,128,176,6,32,177,192,130,42]},{"1064551":[192,128,144,10,192,144,176,6,32,83,192,130,28]},{"1064565":[192,144,144,10,192,160,176,6,32,115,192,130,14]},{"1064579":[192,160,144,10,192,176,176,6,32,51,192,130]},{"1064593":[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,149,190,152,201,80,208,2,169,1,201,73,208,2,169]},{"1064745":[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,51,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,123,191,96,175,40,244,126,24,105,16,143,40,244,126,96,32,193,192,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,102,239,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]},{"1065341":[201,2]},{"1065344":[208,14,175,140,243,126,41,192]},{"1065353":[201,192]},{"1065356":[240,79,128,64,201,1]},{"1065363":[208,14,175,142,243,126,41,192]},{"1065372":[201,192]},{"1065375":[240,60,128,45,201,5]},{"1065382":[208,14,175,140,243,126,41,48]},{"1065391":[201,48]},{"1065394":[240,41,128,26,201,13]},{"1065401":[208,16,175,140,243,126,137,4]},{"1065410":[240,12,41,3]},{"1065415":[208,20,128,5,201,16]},{"1065422":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1065435":[208,5,169,79,61,128,6,32,236,193,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]},{"1065482":[41,255,239,153,4]},{"1065488":[185,62]},{"1065491":[41,255,239,153,62]},{"1065497":[185,68]},{"1065500":[41,255,239,153,68]},{"1065506":[185,128]},{"1065509":[41,255,239,153,128]},{"1065515":[185,130]},{"1065518":[41,255,239,153,130]},{"1065524":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1065545":[41,255,239,153,132]},{"1065551":[185,126]},{"1065554":[41,255,239,153,126]},{"1065560":[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]},{"1065598":[201,144]},{"1065601":[208,3,169,127]},{"1065606":[9]},{"1065608":[36,143,100,199,126,165,5,41,255]},{"1065618":[9]},{"1065620":[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,219,241,160,34,189,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]},{"1065732":[72,165,2,72,169,16,128,133]},{"1065741":[169,48]},{"1065744":[133,2,169,4]},{"1065749":[34,59,150,164,250,134,2,250,134,1,40,250,153,160,13,34,85,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]},{"1065795":[80,127,240,23,175,93,227,48,143,153,192,126,189,160,13,34,85,150,160,169]},{"1065816":[143]},{"1065818":[80,127,128,7,189,160,13,34,193,150,160,107,169]},{"1065832":[157,192,13,72,169,1,143]},{"1065840":[80,127,165,93,201,20,240,68,169]},{"1065850":[143]},{"1065852":[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]},{"1065880":[72,165,2,72,169,16,128,133]},{"1065889":[169,48]},{"1065892":[133,2,169,3]},{"1065897":[34,59,150,164,250,134,2,250,134,1,40,250,157,128,14,34,85,150,160,104,107,72,90,175]},{"1065922":[80,127,240,6,34,107,195,160,128,7,189,128,14,34,193,150,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]},{"1065965":[72,165,2,72,169,16,128,133]},{"1065974":[169,48]},{"1065977":[133,2,169,4]},{"1065982":[34,59,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,157,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]},{"1066040":[143,68,243,126,107,175,123,243,126,41,255]},{"1066052":[201,2]},{"1066055":[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]},{"1066088":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1066103":[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]},{"1066139":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1066153":[173,91,3,41,1,208,3,130,134]},{"1066163":[90,8,139,75,171,226,48,165,27,240,3,76,54,197,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1066200":[129,48,143]},{"1066204":[254,127,34,93,246,29,162]},{"1066212":[165,47,201,4,240,1,232,191,58,197,160,153,80,13,169]},{"1066228":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,60,197,160,41,240,153,16,13,165,35,105]},{"1066262":[153,48,13,165,32,24,105,22,41,240,153]},{"1066274":[13,165,33,105]},{"1066279":[153,32,13,169]},{"1066284":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1066301":[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]},{"1066332":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1066353":[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,100,153,160,92,53,207,30,175,96,227,48,143,153,192,126,175,195,225,29,34,85,150,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1066423":[92,82,223,29,175,97,227,48,143,153,192,126,175,133,225,29,34,85,150,160,107,165,138,201,129,208,12,169,1,143]},{"1066454":[80,127,175,195,225,29,128,4,175,133,225,29,34,193,150,160,107,72,165,138,201,129,208,14,34,202,143,160,175,96,227,48,143,152,192,126,128,12,34,40,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]},{"1066548":[72,165,2,72,169,64,129,133]},{"1066557":[169,48]},{"1066560":[133,2,169,10]},{"1066565":[34,59,150,164,250,134,2,250,134,1,40,250,34,85,150,160,169,235,143]},{"1066585":[254,127,34,93,246,29,162]},{"1066593":[165,47,201,4,240,1,232,191,190,198,160,153,80,13,169]},{"1066609":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,192,198,160,41,240,153,16,13,165,35,105]},{"1066643":[153,48,13,165,32,24,105,22,41,240,153]},{"1066655":[13,165,33,105]},{"1066660":[153,32,13,169]},{"1066665":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1066689":[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]},{"1066768":[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]},{"1066795":[107,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,162,143,160,175,135,128,48,208,6,175,21,128,48,128,35,218,8,194,48,165]},{"1066834":[72,165,2,72,169,16,128,133]},{"1066843":[169,48]},{"1066846":[133,2,169,5]},{"1066851":[34,59,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]},{"1066905":[201,35,208,6,160,93,92,71,213]},{"1066915":[201,72,208,6,160,96,92,71,213]},{"1066925":[201,36,176,6,160,91,92,71,213]},{"1066935":[201,55,176,6,160,92,92,71,213]},{"1066945":[201,57,176,6,160,93,92,71,213]},{"1066955":[160,50,92,71,213]},{"1066961":[192,9,48]},{"1066965":[96]},{"1066967":[144]},{"1066969":[192]},{"1066972":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1066996":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1067014":[9,48,9,96,9,144,9,240,9]},{"1067025":[240]},{"1067027":[32,10,80,10,96,6]},{"1067034":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1067056":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1067072":[6,48,6]},{"1067076":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1067092":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1067113":[127,209,199,160,107,165]},{"1067120":[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]},{"1067151":[132,175,24,105]},{"1067156":[136,133]},{"1067159":[226,32,169,175,133,2,34,137,227,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,223,218,160,162,1,128,2,162]},{"1067217":[171,40,122,104,133,2,104,133,1,104,133]},{"1067229":[96,218,173,216,2,34,191,227,160,72,175,152,192,126,240,4,104,130,229,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,201,3,201,59,208,29,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,168,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,144,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,120,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,94,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,75,3,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,54,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,28,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,2,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,232,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,206,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,175,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,144,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,113,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,42,2,201,90,208,3,130,35,2,201,91,208,32,194,32,175,84,244,126,24,111]},{"1067712":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,255,1,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,219,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,183,1,201,94,208,3,130,176,1,201,95,208,3,130,169,1,201,96,208,3,130,162,1,201,97,208,3,130,155,1,201,98,208,3,130,148,1,201,99,208,3,130,141,1,201,100,208,3,130,134,1,201,101,208,3,130,127,1,201,106,208,7,34,223,218,160,130,116,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,223,218,160,130,72,1,201,109,208,7,34,225,190,164,130,61,1,201,110,208,7,34,225,190,164,130,50,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1067959":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,14,1,56,233,8,170,169,1,224]},{"1067984":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,239]},{"1068007":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068026":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,203]},{"1068043":[56,233,8,170,169,1,224]},{"1068051":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,172]},{"1068074":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1068093":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,136]},{"1068110":[56,233,8,170,169,1,224]},{"1068118":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,105]},{"1068141":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1068163":[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]},{"1068195":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130,32]},{"1068214":[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]},{"1068240":[13,165,33,153,32,13,250,173,233,2,201,1,107,72,218,34,95,239,160,173,216,2,72,175,152,192,126,208,12,104,32,142,218,141,216,2,32,100,218,128,1,104,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,191,218,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]},{"1068403":[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]},{"1068516":[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]},{"1068556":[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]},{"1068586":[175,91,243,126,201]},{"1068592":[208,8,169,34,141,216,2,130,171]},{"1068602":[169,35,141,216,2,130,163]},{"1068610":[201,97,208,22,175,84,243,126,208,8,169,27,141,216,2,130,145]},{"1068628":[169,28,141,216,2,130,137]},{"1068636":[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]},{"1068668":[175,64,243,126,26,74,201]},{"1068676":[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,119,217,160,141,216,2,235,32,2,218,169,255,143,144,80,127,128,36,201,99,208,15,34,51,218,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]},{"1068773":[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]},{"1069028":[4,4,4,4,4,5]},{"1069040":[4]},{"1069042":[4]},{"1069045":[4]},{"1069057":[4]},{"1069063":[5]},{"1069073":[4,4,4]},{"1069087":[4,4]},{"1069090":[4]},{"1069094":[4]},{"1069101":[4]},{"1069110":[4]},{"1069181":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1069261":[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]},{"1069310":[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]},{"1069349":[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]},{"1069506":[2,2]},{"1069514":[2,2,2,2,2,2]},{"1069521":[2]},{"1069523":[2,2]},{"1069526":[2,2,2,2,2,2,2,2,2,2,2]},{"1069538":[2,2,2,2,2]},{"1069544":[2,2,2,2,2,2,2,2,2]},{"1069556":[2,2,2,2,2,2,2,2,2,2,2]},{"1069569":[2]},{"1069571":[2,2,2]},{"1069575":[2,2,2,2,2,2]},{"1069582":[2,2,2,2,2,2,2,2]},{"1069591":[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]},{"1069677":[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]},{"1069863":[4,4,4]},{"1069869":[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]},{"1070782":[128]},{"1070784":[64]},{"1070786":[32]},{"1070788":[16]},{"1070790":[8]},{"1070792":[4]},{"1070794":[2]},{"1070796":[1,128]},{"1070799":[64]},{"1070801":[32]},{"1070803":[16]},{"1070805":[8]},{"1070807":[4]},{"1071038":[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,142,218,128,1,152,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,12,217,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,12,217,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]},{"1071492":[160,48,107,162]},{"1071497":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1071510":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1071524":[168,152,32,222,217,240,30,175,32,80,127,26,207,127,160,48,144,2,169]},{"1071544":[143,32,80,127,232,168,138,207,127,160,48,144,224,169,90,128,4,175,32,80,127,170,191]},{"1071568":[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]},{"1071608":[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]},{"1071645":[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]},{"1071684":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1071697":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1071720":[191]},{"1071722":[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]},{"1071762":[191]},{"1071764":[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,162]},{"1071809":[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,96,100,17,100,176,92,167,189,164,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1071872":[13,24,105,3,107,189,32,14,201,136,208,9,32,61,219,201,4,144,1,58,107,32,61,219,107,224,24,9,208,5,175,157,80,127,107,8,194,32,138,74,170,176,10,40,191]},{"1071918":[200,49,74,74,74,74,107,40,191]},{"1071928":[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]},{"1071978":[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]},{"1072012":[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,26,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]},{"1072214":[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]},{"1072269":[143,96,243,126,226,32,34,149,143,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1072295":[165,27,240,121,194,32,165,160,201,14]},{"1072306":[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]},{"1072341":[201,126]},{"1072344":[208,33,165,34,41,255,1,201,104]},{"1072354":[144,60,201,136]},{"1072359":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1072379":[201,222]},{"1072382":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1072407":[144,7,201,154]},{"1072412":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,132,221,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,132,221,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]},{"1072550":[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]},{"1072603":[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,152,224,160,173,44,1,201,8,240,17,175,26,130,48,208,8,175,171,80,127,201,254,208,3,130,186]},{"1072656":[174,2,32,224,83,45,240,3,130,253]},{"1072667":[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]},{"1072732":[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,191,216,48,58,72,41,7,168,104,74,74,74,170,191,160,80,127,240,20,201,255,240,12,192]},{"1072832":[240,4,74,136,128,248,41,1,240,4,169,250,128,76,174,44,1,191,127,216,48,218,170,191,191,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]},{"1072890":[90,194,32,191]},{"1072895":[217,48,133]},{"1072899":[226,32,178]},{"1072903":[122,132]},{"1072906":[226,16,171,170,191,191,216,48,141,44,1,130,139,255,169,251,194,16,156]},{"1072926":[66,141,64,33,205,64,33,208,251,156,64,33,173,64,33,208,251,169,129,141]},{"1072947":[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]},{"1073059":[208,13,173,11,1,41,255]},{"1073067":[201,59]},{"1073070":[208,63,128,56,201,107]},{"1073077":[208,58,175,19,130,48,201,1]},{"1073086":[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]},{"1073119":[240,14,175,167,80,127,41,4]},{"1073128":[240,5,162,241,142,44,1,165,160,107,165,160,201,12]},{"1073143":[208,14,174,48,1,224,241,208,24,162,22,142,44,1,128,17,201,107]},{"1073162":[208,12,174,48,1,224,241,208,5,162,59,142,44,1,162,28,165,160,107,143,39,194,126,173]},{"1073187":[32,137,16,240,7,173,11,1,143,39,194,126,107,8,156]},{"1073203":[66,169,255,141,64,33,169,55,133]},{"1073213":[169,248,133,1,169,160,34,29,137]},{"1073223":[169,129,141]},{"1073227":[66,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]},{"1073263":[162,255,160,1,226,32,152,194,32,141,4,32,24,105,100]},{"1073279":[232,226,32,168,173]},{"1073285":[32,137,64,208,249,173]},{"1073292":[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]},{"1073329":[32,137,64,208,249,173]},{"1073336":[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]},{"1073387":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,43,1,240,3,130,133]},{"1073413":[175,169,80,127,240,85,173]},{"1073421":[32,137,64,240,4,92,220,128]},{"1073430":[173]},{"1073432":[32,137,8,240,4,92,220,128]},{"1073441":[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]},{"1073477":[240,4,74,136,128,248,41,1,240,4,175,169,80,127,141,7,32,169]},{"1073496":[143,169,80,127,92,220,128]},{"1073504":[173,39,1,205,41,1,208,4,92,220,128]},{"1073516":[144,12,233,2,176,14,156,39,1,156,7,32,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1073546":[224,255,208,4,92,220,128]},{"1073554":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1073570":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1073586":[224,241,208,13,142,64,33,156,41,1,156,11,1,92,220,128]},{"1073603":[224,240,144,17,224,250,240,4,224,251,208,5,169]},{"1073617":[141,43,1,92,220,128]},{"1073624":[236,11,1,208,7,224,27,240,3,138,128,126,236,51,1,240,244,169]},{"1073643":[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]},{"1073675":[202,208,249,141,4,32,226,32,156,7,32,250,142,11,1,175,171,80,127,201,254,144,4,169]},{"1073700":[128,4,191,63,216,48,143,169,80,127,191,127,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]},{"1073742":[90,194,32,191]},{"1073747":[217,48,133]},{"1073751":[226,32,178]},{"1073755":[122,132]},{"1073758":[226,16,171,170,223,127,216,48,240,6,191,127,216,48,128,243,141,43,1,92,220,128]},{"1073781":[141,44,1,72,34,135,221,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]},{"1073850":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073863":[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]},{"1073933":[32,137,8,208,17,175,169,80,127,208,7,173]},{"1073946":[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]},{"1074013":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1074031":[87,127,107,191]},{"1074036":[18,127,107,156,240,28,156,241,28,169]},{"1074047":[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]},{"1074079":[226,32,183]},{"1074083":[159]},{"1074085":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074104":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1074128":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,74,7,169]},{"1074146":[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]},{"1074172":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074190":[226,32,183]},{"1074194":[159]},{"1074196":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074215":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074235":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074253":[226,32,183]},{"1074257":[159]},{"1074259":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074278":[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]},{"1074309":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074327":[226,32,183]},{"1074331":[159]},{"1074333":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074352":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074372":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074390":[226,32,183]},{"1074394":[159]},{"1074396":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074415":[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]},{"1074444":[133]},{"1074446":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074464":[226,32,183]},{"1074468":[159]},{"1074470":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074489":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074509":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074527":[226,32,183]},{"1074531":[159]},{"1074533":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074552":[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]},{"1074583":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074601":[226,32,183]},{"1074605":[159]},{"1074607":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074626":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1074646":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074664":[226,32,183]},{"1074668":[159]},{"1074670":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074689":[143,148,80,127,226,32,130,255,4,175,64,80,127,41,240,201,112,208,56,169]},{"1074710":[133]},{"1074712":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074730":[226,32,183]},{"1074734":[159]},{"1074736":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074755":[143,148,80,127,226,32,130,213]},{"1074764":[201,128,208,56,169,52,133]},{"1074772":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074790":[226,32,183]},{"1074794":[159]},{"1074796":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074815":[143,148,80,127,226,32,130,153]},{"1074824":[201,144,208,55,169,112,133]},{"1074832":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074850":[226,32,183]},{"1074854":[159]},{"1074856":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074875":[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]},{"1074902":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1074920":[226,32,183]},{"1074924":[159]},{"1074926":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1074945":[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]},{"1075024":[208,56,169,216,133]},{"1075030":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075048":[226,32,183]},{"1075052":[159]},{"1075054":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075073":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1075090":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075108":[226,32,183]},{"1075112":[159]},{"1075114":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075133":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1075150":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075168":[226,32,183]},{"1075172":[159]},{"1075174":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075193":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1075210":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075228":[226,32,183]},{"1075232":[159]},{"1075234":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075253":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1075270":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075288":[226,32,183]},{"1075292":[159]},{"1075294":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075313":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1075330":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075348":[226,32,183]},{"1075352":[159]},{"1075354":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075373":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1075390":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075408":[226,32,183]},{"1075412":[159]},{"1075414":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075433":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1075450":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075468":[226,32,183]},{"1075472":[159]},{"1075474":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075493":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1075510":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075528":[226,32,183]},{"1075532":[159]},{"1075534":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075553":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1075570":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075588":[226,32,183]},{"1075592":[159]},{"1075594":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075613":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1075630":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075648":[226,32,183]},{"1075652":[159]},{"1075654":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075673":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1075690":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075708":[226,32,183]},{"1075712":[159]},{"1075714":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075733":[143,148,80,127,226,32,130,235]},{"1075742":[201,12,208,56,169,12,133]},{"1075750":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075768":[226,32,183]},{"1075772":[159]},{"1075774":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075793":[143,148,80,127,226,32,130,175]},{"1075802":[201,13,208,55,169,41,133]},{"1075810":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075828":[226,32,183]},{"1075832":[159]},{"1075834":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075853":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1075869":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075887":[226,32,183]},{"1075891":[159]},{"1075893":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075912":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1075928":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1075946":[226,32,183]},{"1075950":[159]},{"1075952":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1075971":[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]},{"1076004":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1076019":[171,40,122,250,104,107,34,78,216]},{"1076029":[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]},{"1076093":[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,179,236,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,179,236,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]},{"1076364":[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]},{"1076409":[72,165,1,72,165,2,72,169,28,133,2,194,48,173,240,28,10,170,191,192,113,127,133]},{"1076433":[226,48,160]},{"1076437":[183]},{"1076439":[201,254,208,39,200,183]},{"1076446":[201,110,208,32,200,183]},{"1076453":[208,27,200,183]},{"1076458":[201,254,208,20,200,183]},{"1076465":[201,107,208,13,200,183]},{"1076472":[201,4,208,6,156,232,28,130,19]},{"1076482":[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]},{"1076510":[122,250,107,165,138,10,168,173,18,7,240,42,165,33,41,2]},{"1076527":[10,10,69,138,41,8]},{"1076534":[240,6,152,24,105,16]},{"1076541":[168,165,35,41,2]},{"1076547":[74,69,138,41,1]},{"1076553":[240,4,152,26,26,168,152,41,255]},{"1076563":[168,107,165,17,201,3,208,5,169,6,133,20,107,34,9,151,164,34,255,147,164,107,34,251,244,160,34,158,173,164,34]},{"1076595":[128,191,92,21,253,13,72,34,23,130,160,34,221,131,160,34,231,130,160,104,107,72,8,226,32,34,74,129,160,40,104,141,12,4,156,172,4,72,8,34,120,250,13,34,109,132,160,34,221,131,160,40,104,107,34,74,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,145,188,164,107,194,16,34,61,137]},{"1076791":[169,7,141,12,33,175,240,244,126,208,10,34,152,238,160,169,255,143,240,244,126,173,10,1,208,10,175,17,192,126,208,4,34,227,129,160,34,204,130,160,34,157,130,164,169,255,143,144,80,127,169]},{"1076843":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,34,221,131,160,34,231,130,160,34,140,131,160,175,135,128,48,201,1,208,4,34,34,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]},{"1076923":[191]},{"1076925":[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]},{"1076999":[107,34,218,152,160,34]},{"1077006":[246,160,107,34,77,153,160,34,86,153,160,162,4,107,34]},{"1077022":[246,160,169,20,133,17,107,34]},{"1077031":[246,160,107,34,63,132,160,34,50,153,160,34,4,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]},{"1077074":[2,107,169]},{"1077078":[143,156,80,127,34,153,186,10,107,169,1,143,145,80,127,107,34,100,153,160,107,169]},{"1077101":[143,145,80,127,175,159,80,127,240,16,156,240,28,156,241,28,34,173,236,160,169]},{"1077123":[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]},{"1077159":[143,152,192,126,92,5,197,8,156,233,2,189,94,12,92,101,196,8,175,105,129,48,41,255]},{"1077184":[208,4,169]},{"1077189":[107,201,1]},{"1077193":[208,16,175,197,243,126,41,15]},{"1077202":[201,2]},{"1077205":[176,84,32,47,240,107,201,2]},{"1077214":[208,75,32,47,240,240,70,218,90,226,48,34,126,130,164,194,48,122,250,176,4,169,1]},{"1077238":[107,175,74,128,48,41,255]},{"1077246":[240,43,175,195,242,126,41,32]},{"1077255":[208,34,173,8,3,41,128]},{"1077263":[240,4,169,1]},{"1077268":[107,226,48,34,111,155,9,175,195,242,126,9,32,143,195,242,126,194,48,169,1]},{"1077290":[107,169]},{"1077294":[107,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1077317":[96,169]},{"1077321":[96,175,76,128,48,41,255]},{"1077329":[240,4,92,90,189,27,224,118]},{"1077338":[176,4,92,240,188,27,92,90,189,27,175,200,243,126,41,255]},{"1077355":[72,170,191,64,130,48,208,3,130,175]},{"1077366":[58,133]},{"1077369":[10,10,24,101]},{"1077374":[10,10,170,169,22]},{"1077380":[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]},{"1077408":[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]},{"1077451":[137,128]},{"1077454":[240,3,9]},{"1077458":[255,143,106,193,126,191,98,130,48,41,255]},{"1077470":[137,128]},{"1077473":[240,3,9]},{"1077477":[255,143,110,193,126,169]},{"1077485":[56,239,106,193,126,143,108,193,126,169]},{"1077497":[56,239,110,193,126,143,112,193,126,191,82,130,48,41,255]},{"1077513":[143,76,193,126,143,64,193,126,156,152,6,156,153,6,226,32,166]},{"1077531":[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]},{"1077608":[165]},{"1077610":[223]},{"1077612":[184,27,208,9,173,10,4,223,38,184,27,240,32,202,202,16,235,162,30]},{"1077632":[165]},{"1077634":[223]},{"1077636":[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]},{"1077682":[175,74,128,48,41,255]},{"1077689":[240,25,175,93]},{"1077695":[41,255]},{"1077698":[201,20]},{"1077701":[208,13,165,138,41,64]},{"1077708":[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]},{"1077765":[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]},{"1077831":[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]},{"1077865":[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]},{"1077964":[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]},{"1077995":[201,2]},{"1077998":[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]},{"1078030":[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,249,244,160,144,10,208,8,175,140,80,127,207,247,244,160,144,114,175,145,129,48,41,255]},{"1078086":[208,24,169,2]},{"1078091":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1078115":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1078128":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1078142":[143,142,80,127,169,1]},{"1078149":[143,126,80,127,128,54,201,2]},{"1078158":[208,24,169,2]},{"1078163":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,226,48,34,223,218,160,194,48,96,175,146,129,48,41,255]},{"1078200":[240,7,169]},{"1078205":[143,126,80,127,175,142,80,127,207,237,244,160,144,10,208,8,175,140,80,127,207,235,244,160,144,53,175,128,80,127,26,201,10]},{"1078239":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1078253":[143,128,80,127,175,140,80,127,56,239,235,244,160,143,140,80,127,175,142,80,127,239,237,244,160,143,142,80,127,128,181,175,142,80,127,207,241,244,160,144,10,208,8,175,140,80,127,207,239,244,160,144,53,175,132,80,127,26,201,10]},{"1078314":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1078328":[143,132,80,127,175,140,80,127,56,239,239,244,160,143,140,80,127,175,142,80,127,239,241,244,160,143,142,80,127,128,181,175,142,80,127,207,245,244,160,144,10,208,8,175,140,80,127,207,243,244,160,144,53,175,136,80,127,26,201,10]},{"1078389":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1078403":[143,136,80,127,175,140,80,127,56,239,243,244,160,143,140,80,127,175,142,80,127,239,245,244,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]},{"1078511":[16,14]},{"1078515":[60]},{"1078519":[255,255,255,127,175,204,80,127,41,255]},{"1078530":[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]},{"1078601":[240,93,175,145,129,48,41,255]},{"1078610":[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]},{"1078703":[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]},{"1078778":[208,3,32,201,242,107,175,204,80,127,208,16,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1078808":[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]},{"1078842":[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,33,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]},{"1078916":[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]},{"1079022":[255,157]},{"1079025":[27,157,64,27,157,128,27,157,192,27,157]},{"1079037":[28,157,64,28,157,128,28,202,202,16,231,169]},{"1079051":[143,7,192,126,143,9,192,126,226,32,34,200,215]},{"1079065":[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]},{"1079103":[208,12,175]},{"1079107":[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]},{"1079181":[2,156,16,7,107,165,138,201,64,176,24,162,7,165,138,201,24,240,28,162,5,175]},{"1079204":[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,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,15,201,69,240,11,201,71,240,7,169,5,141,45,1,128,7,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,89]},{"1079354":[7,104,240,208,3,95,129,10,104,250,208,28,196,244,232]},{"1079370":[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]},{"1079442":[244,111,4]},{"1079446":[115,10,95]},{"1079450":[7]},{"1079456":[34,149,189,164,34,58,135,1,194,16,166,160,191,68,251,160,226,16,34,156,135]},{"1079478":[200,248,160,201,248,160,86,249,160,227,249,160,112,250,160,218,250,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1079514":[32,126,232,232,159]},{"1079520":[32,126,232,232,159]},{"1079526":[32,126,232,232,159]},{"1079532":[32,126,232,232,162,220,25,159]},{"1079541":[32,126,232,232,169,202,12,159]},{"1079550":[32,126,232,232,169,203,12,159]},{"1079559":[32,126,232,232,169,208,8,159]},{"1079568":[32,126,232,232,162,92,26,159]},{"1079577":[32,126,232,232,169,218,12,159]},{"1079586":[32,126,232,232,169,219,12,159]},{"1079595":[32,126,232,232,169,208,8,159]},{"1079604":[32,126,232,232,162,220,26,159]},{"1079613":[32,126,232,232,159]},{"1079619":[32,126,232,232,159]},{"1079625":[32,126,232,232,159]},{"1079631":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1079655":[32,126,232,232,159]},{"1079661":[32,126,232,232,159]},{"1079667":[32,126,232,232,159]},{"1079673":[32,126,232,232,162,156,25,159]},{"1079682":[32,126,232,232,169,202,12,159]},{"1079691":[32,126,232,232,169,203,12,159]},{"1079700":[32,126,232,232,169,208,8,159]},{"1079709":[32,126,232,232,162,28,26,159]},{"1079718":[32,126,232,232,169,218,12,159]},{"1079727":[32,126,232,232,169,219,12,159]},{"1079736":[32,126,232,232,169,208,8,159]},{"1079745":[32,126,232,232,162,156,26,159]},{"1079754":[32,126,232,232,159]},{"1079760":[32,126,232,232,159]},{"1079766":[32,126,232,232,159]},{"1079772":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1079796":[32,126,232,232,159]},{"1079802":[32,126,232,232,159]},{"1079808":[32,126,232,232,159]},{"1079814":[32,126,232,232,162,220,9,159]},{"1079823":[32,126,232,232,169,202,12,159]},{"1079832":[32,126,232,232,169,203,12,159]},{"1079841":[32,126,232,232,169,208,8,159]},{"1079850":[32,126,232,232,162,92,10,159]},{"1079859":[32,126,232,232,169,218,12,159]},{"1079868":[32,126,232,232,169,219,12,159]},{"1079877":[32,126,232,232,169,208,8,159]},{"1079886":[32,126,232,232,162,220,10,159]},{"1079895":[32,126,232,232,159]},{"1079901":[32,126,232,232,159]},{"1079907":[32,126,232,232,159]},{"1079913":[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]},{"1080146":[1]},{"1080228":[5]},{"1080230":[4]},{"1080258":[2]},{"1080354":[3]},{"1080452":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1080469":[134,1,133,2,32,132,252,176,4,92,83,230]},{"1080482":[169,49,133,2,194,32,169]},{"1080490":[192,133]},{"1080493":[162,128,167]},{"1080497":[141,24,33,230]},{"1080502":[230]},{"1080504":[167]},{"1080506":[141,24,33,230]},{"1080511":[230]},{"1080513":[167]},{"1080515":[141,24,33,230]},{"1080520":[230]},{"1080522":[167]},{"1080524":[141,24,33,230]},{"1080529":[230]},{"1080531":[167]},{"1080533":[141,24,33,230]},{"1080538":[230]},{"1080540":[167]},{"1080542":[141,24,33,230]},{"1080547":[230]},{"1080549":[167]},{"1080551":[141,24,33,230]},{"1080556":[230]},{"1080558":[167]},{"1080560":[141,24,33,230]},{"1080565":[230]},{"1080567":[202,208,181,226,32,92,81,230]},{"1080576":[226,48,175,248,194,126,168,32,132,252,194,48,176,10,162]},{"1080593":[160,64]},{"1080596":[92,104,223]},{"1080600":[162]},{"1080602":[192,160]},{"1080606":[169]},{"1080608":[8,139,84,127,177,171,162]},{"1080616":[8,169]},{"1080619":[102,133,3,92,110,223]},{"1081344":[34,181,128]},{"1081348":[34,135,221,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,230,191,164,175,70,80,127,240,10,169]},{"1081457":[143,70,80,127,34,240,167,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,77,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,48,224,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,128,236,160,128,20,194,32,175,124,129,48,15,20,244,126,143,20,244,126,226,32,34,145,236,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,151,148,164,194,16,34,179,146,164,32,202,179,92,3,236]},{"1160128":[194,16,32,202,179,194,32,162,14,107,34,176,148,164,34,28,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,98,201,1,240,92,201,2,208,40,175,116,243,126,41,7,201,7,208,78,175,122,243,126,41,127,201,127,208,68,175,197,243,126,201,3,144,60,175,219,242,126,41,32,201,32,208,50,128,50,201,4,208,8,34,109,130,164,144,38,128,38,201,3,208,18,34,109,130,164,144,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,24,244,126,201,100,144,2,128,2,24,107,56,107,240,4,34,89,207,8,175,94,128,48,201]},{"1180204":[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]},{"1180239":[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,75,152,160,122,250,207,95,128,48,107,218,90,175,122,243,126,34,75,152,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,71,131,165,242,137,32,208,13,128,36,32,129,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,58,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]},{"1180497":[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]},{"1180537":[232,34,180,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,180,132,164,240,203,96,90,218,187,191]},{"1180608":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1180621":[149,48,41,255]},{"1180626":[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]},{"1180723":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1180738":[13,165,233,105]},{"1180743":[153,32,13,128,34,165,15,101,232,153]},{"1180754":[13,165,233,105]},{"1180759":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1180779":[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]},{"1180806":[208,30,166,162,224,239]},{"1180813":[208,23,174,24,1,224]},{"1180820":[24,240,21,224]},{"1180825":[26,240,16,224]},{"1180830":[28,240,5,224]},{"1180835":[30,240]},{"1180838":[169,1,141,11,66,107,162,192]},{"1180847":[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]},{"1180888":[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]},{"1180922":[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]},{"1180981":[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]},{"1181009":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1181025":[128,3,169]},{"1181030":[226,32,250,201]},{"1181035":[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]},{"1181072":[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]},{"1181099":[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]},{"1181131":[66,240,3,73]},{"1181136":[66,137]},{"1181139":[132,240,3,73]},{"1181144":[132,133]},{"1181147":[226,32,92,222,131]},{"1181153":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,137]},{"1181176":[12,240,3,73]},{"1181181":[12,137]},{"1181184":[3,240,3,73]},{"1181189":[3,133]},{"1181192":[226,32,92,222,131]},{"1181198":[194,32,173,24,66,137,64,128,240,3,73,64,128,137,128,64,240,3,73,128,64,133]},{"1181221":[226,32,92,222,131]},{"1181227":[173,24,66,133]},{"1181232":[173,25,66,137,12,240,2,73,12,137,3,240,2,73,3,133,1,92,222,131]},{"1181253":[173,24,66,133]},{"1181258":[173,25,66,133,1,92,222,131]},{"1181267":[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,127,134,164,34,236,134,164,107,169,14,143,1,40]},{"1181317":[169,4,143,1,40]},{"1181323":[169,13,143,1,40]},{"1181329":[169,14,143,1,40]},{"1181335":[169]},{"1181337":[143,1,40]},{"1181341":[169]},{"1181343":[143,1,40]},{"1181347":[169]},{"1181349":[143,1,40]},{"1181353":[169]},{"1181355":[143,1,40]},{"1181359":[169]},{"1181361":[143,1,40]},{"1181365":[169]},{"1181367":[143,1,40]},{"1181371":[169]},{"1181373":[143,1,40]},{"1181377":[169,1,143,1,40]},{"1181383":[169]},{"1181385":[143,1,40]},{"1181389":[169,1,143,1,40]},{"1181395":[169]},{"1181397":[143,1,40]},{"1181401":[169]},{"1181403":[143,1,40]},{"1181407":[169,10,143,1,40]},{"1181413":[169,13,143,1,40]},{"1181419":[107,72,218,162]},{"1181424":[175]},{"1181426":[40]},{"1181428":[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]},{"1181455":[175]},{"1181457":[40]},{"1181459":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1181473":[232,128,235,56,175]},{"1181479":[40]},{"1181481":[72,175]},{"1181484":[40]},{"1181486":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181504":[175]},{"1181506":[40]},{"1181508":[72,175]},{"1181511":[40]},{"1181513":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181533":[40]},{"1181535":[72,175]},{"1181538":[40]},{"1181540":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181560":[40]},{"1181562":[72,175]},{"1181565":[40]},{"1181567":[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]},{"1181652":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1181670":[133]},{"1181672":[165,3,41,255]},{"1181677":[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,31,136,164,132,2,100,3,24,101]},{"1181719":[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]},{"1181774":[175]},{"1181776":[40]},{"1181778":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1181792":[232,128,235,56,175]},{"1181798":[40]},{"1181800":[72,175]},{"1181803":[40]},{"1181805":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1181823":[175]},{"1181825":[40]},{"1181827":[72,175]},{"1181830":[40]},{"1181832":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1181852":[40]},{"1181854":[72,175]},{"1181857":[40]},{"1181859":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1181879":[40]},{"1181881":[72,175]},{"1181884":[40]},{"1181886":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1181906":[40]},{"1181908":[133,4,175]},{"1181912":[40]},{"1181914":[72,175]},{"1181917":[40]},{"1181919":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1181939":[40]},{"1181941":[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]},{"1182010":[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]},{"1182049":[153]},{"1182052":[189,2]},{"1182055":[153,2]},{"1182058":[189,4]},{"1182061":[153,64]},{"1182064":[189,6]},{"1182067":[153,66]},{"1182070":[96,189]},{"1182074":[41,255,227,9]},{"1182079":[16,153]},{"1182083":[189,2]},{"1182086":[41,255,227,9]},{"1182091":[16,153,2]},{"1182095":[189,4]},{"1182098":[41,255,227,9]},{"1182103":[16,153,64]},{"1182107":[189,6]},{"1182110":[41,255,227,9]},{"1182115":[16,153,66]},{"1182119":[96,41,255]},{"1182123":[240,3,76,94,137,76,119,137,41,255]},{"1182134":[208,6,162,148,144,76,119,137,58,58,208,6,162,148,144,76,94,137,58,208,6,162,156,144,76,94,137,58,208,6,162,164,144,76,94,137,58,208,6,162,172,144,76,94,137,58,208,6,162,180,144,76,94,137,58,208,6,162,188,144,76,94,137,162,196,144,76,94,137,165,26,41,1]},{"1182208":[240,2,128,14,32,33,138,238,16,7,169,97,1,141,2,16,128,9,156,16,7,169,255,255,141,2,16,169,4]},{"1182238":[133,2,107,218,90,139,226,32,169,164,72,171,194,32,175]},{"1182254":[5,112,9]},{"1182258":[28,141,142,17,24,105,16]},{"1182266":[141,206,17,175,2,5,112,9]},{"1182275":[28,141,144,17,24,105,16]},{"1182283":[141,208,17,175,4,5,112,9]},{"1182292":[28,141,146,17,24,105,16]},{"1182300":[141,210,17,175,6,5,112,9]},{"1182309":[28,141,148,17,24,105,16]},{"1182317":[141,212,17,175,8,5,112,9]},{"1182326":[28,141,78,18,24,105,16]},{"1182334":[141,142,18,175,10,5,112,9]},{"1182343":[28,141,80,18,24,105,16]},{"1182351":[141,144,18,175,12,5,112,9]},{"1182360":[28,141,82,18,24,105,16]},{"1182368":[141,146,18,175,14,5,112,9]},{"1182377":[28,141,84,18,24,105,16]},{"1182385":[141,148,18,32,204,144,175,142,3,112,41,64]},{"1182398":[240,31,175,64,3,112,41,255]},{"1182407":[240,11,162,20,143,160,220,16,32,94,137,128,40,162,36,143,160,220,16,32,94,137,128,29,175,64,3,112,41,255]},{"1182438":[240,11,162,12,143,160,220,16,32,94,137,128,9,162,12,143,160,220,16,32,119,137,175,140,3,112,41,192]},{"1182467":[201,192]},{"1182470":[208,11,162,60,143,160,224,16,32,94,137,128,49,175,140,3,112,41,64]},{"1182490":[240,11,162,52,143,160,224,16,32,94,137,128,29,175,140,3,112,41,128]},{"1182510":[240,11,162,44,143,160,224,16,32,94,137,128,9,162,44,143,160,224,16,32,119,137,162,68,143,160,228,16,175,66,3,112,32,168,137,175,140,3,112,41,16]},{"1182552":[240,11,162,28,144,160,236,16,32,94,137,128,9,162,28,144,160,236,16,32,119,137,175,140,3,112,41,8]},{"1182581":[240,11,162,20,144,160,232,16,32,94,137,128,9,162,20,144,160,232,16,32,119,137,175,140,3,112,41,3]},{"1182610":[240,11,162,156,143,160,228,17,32,94,137,128,9,162,156,143,160,228,17,32,119,137,175,140,3,112,41,4]},{"1182639":[240,11,162,148,143,160,92,18,32,94,137,128,9,162,148,143,160,92,18,32,119,137,162,84,143,160,92,17,175,69,3,112,32,168,137,162,92,143,160,96,17,175,70,3,112,32,168,137,162,100,143,160,100,17,175,71,3,112,32,168,137,162,108,143,160,104,17,175,72,3,112,32,168,137,162,116,143,160,108,17,175,73,3,112,32,168,137,162,124,143,160,220,17,175,74,3,112,32,168,137,162,132,143,160,224,17,175,75,3,112,32,168,137,162,140,143,160,232,17,175,77,3,112,32,168,137,162,164,143,160,236,17,175,78,3,112,32,168,137,162,172,143,160,96,18,175,80,3,112,32,168,137,162,180,143,160,100,18,175,81,3,112,32,168,137,162,188,143,160,104,18,175,82,3,112,32,168,137,162,196,143,160,108,18,175,83,3,112,32,168,137,160,242,16,175,92,3,112,32,179,137,160,114,17,175,93,3,112,32,179,137,160,242,17,175,94,3,112,32,179,137,160,114,18,175,95,3,112,32,179,137,175,89,3,112,41,255]},{"1182877":[208,11,162,36,144,160,248,16,32,119,137,128,65,58,208,11,162,36,144,160,248,16,32,94,137,128,51,58,208,11,162,44,144,160,248,16,32,94,137,128,37,58,208,11,162,52,144,160,248,16,32,94,137,128,23,58,208,11,162,60,144,160,248,16,32,94,137,128,9,162,36,144,160,248,16,32,119,137,175,90,3,112,41,255]},{"1182962":[208,11,162,68,144,160,120,17,32,119,137,128,37,58,208,11,162,68,144,160,120,17,32,94,137,128,23,58,208,11,162,76,144,160,120,17,32,94,137,128,9,162,84,144,160,120,17,32,94,137,175,91,3,112,41,255]},{"1183019":[208,11,162,92,144,160,248,17,32,94,137,128,23,58,208,11,162,100,144,160,248,17,32,94,137,128,9,162,108,144,160,248,17,32,94,137,175,107,3,112,41,255]},{"1183062":[208,11,162,116,144,160,120,18,32,94,137,128,37,58,208,11,162,124,144,160,120,18,32,94,137,128,23,58,208,11,162,132,144,160,120,18,32,94,137,128,9,162,140,144,160,120,18,32,94,137,175,72,4,112,41,255]},{"1183119":[34,255,151,160,175,6,80,127,41,255]},{"1183130":[24,105,16,30,141,248,18,175,7,80,127,41,255]},{"1183144":[24,105,16,30,141,250,18,162,212,143,160,252,16,175,85,3,112,32,168,137,175,84,3,112,41,255]},{"1183171":[208,11,162,4,144,160,124,17,32,119,137,128,23,58,208,11,162,4,144,160,124,17,32,94,137,128,9,162,12,144,160,124,17,32,94,137,162,204,143,160,252,17,175,86,3,112,32,168,137,162,220,143,160,124,18,175,87,3,112,32,168,137,175,116,3,112,41,4]},{"1183240":[240,11,162,236,143,160,28,19,32,94,137,128,9,162,228,143,160,28,19,32,94,137,175,116,3,112,41,2]},{"1183269":[240,11,162,244,143,160,32,19,32,94,137,128,9,162,228,143,160,32,19,32,94,137,175,116,3,112,41,1]},{"1183298":[240,11,162,252,143,160,36,19,32,94,137,128,9,162,228,143,160,36,19,32,94,137,175,122,3,112,41,2]},{"1183327":[240,5,169,151,14,128,3,169,135,18,141,104,19,26,141,106,19,175,122,3,112,41,16]},{"1183351":[240,5,169,151,14,128,3,169,135,18,141,42,19,26,141,44,19,175,122,3,112,41,64]},{"1183375":[240,5,169,151,14,128,3,169,135,18,141,108,19,26,141,110,19,175,122,3,112,41,32]},{"1183399":[240,5,169,151,14,128,3,169,135,18,141,46,19,26,141,48,19,175,122,3,112,41,4]},{"1183423":[240,5,169,151,6,128,3,169,135,18,141,112,19,26,141,114,19,175,122,3,112,41,1]},{"1183447":[240,5,169,151,6,128,3,169,135,18,141,50,19,26,141,52,19,175,122,3,112,41,8]},{"1183471":[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]},{"1183517":[10,186,10,185,6]},{"1183523":[10]},{"1183525":[10,20,10,19,6]},{"1183531":[10,5,14,6,14]},{"1183537":[30,22,14,5,6,6,6]},{"1183545":[30,22,6,182,14,182,6,182,142,182,134]},{"1183557":[6,21,6,48,6]},{"1183563":[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,255,151,160,175,4,80,127,41,255]},{"1183973":[24,105,16,30,141,86,16,175,5,80,127,41,255]},{"1183987":[24,105,16,30,141,88,16,175,6,80,127,41,255]},{"1184001":[24,105,16,30,141,90,16,175,7,80,127,41,255]},{"1184015":[24,105,16,30,141,92,16,169,139,14,141,32,16,26,141,34,16,175,67,3,112,41,255]},{"1184039":[34,255,151,160,175,6,80,127,41,255]},{"1184050":[24,105,16,30,141,96,16,175,7,80,127,41,255]},{"1184064":[24,105,16,30,141,98,16,175,142,3,112,41,64]},{"1184078":[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]},{"1184109":[34,255,151,160,175,6,80,127,41,255]},{"1184120":[24,105,16,30,141,102,16,175,7,80,127,41,255]},{"1184134":[24,105,16,30,141,104,16,96,169,2,141,12,33,194,32,162]},{"1184151":[4,169,136,1,157]},{"1184157":[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]},{"1184260":[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]},{"1184312":[141,2,20,165,16,41,255]},{"1184320":[201,1]},{"1184323":[208,107,175,135,128,48,41,255]},{"1184332":[201,2]},{"1184335":[208,95,8,226,48,218,90,34,53,181,164,122,250,40,41,255]},{"1184352":[208,78,169,110,29,141,142,19,24,105,16]},{"1184364":[141,206,19,169,103,29,141,144,19,24,105,16]},{"1184377":[141,208,19,169,101,29,141,146,19,24,105,16]},{"1184390":[141,210,19,169,104,29,141,148,19,24,105,16]},{"1184403":[141,212,19,169,76,29,141,150,19,24,105,16]},{"1184416":[141,214,19,169,100,29,141,152,19,24,105,16]},{"1184429":[141,216,19,226,32,107,34,147,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]},{"1184545":[189,4,16,9]},{"1184550":[32,157,4,16,202,202,208,243,162,60]},{"1184561":[189,68,16,9]},{"1184566":[32,157,68,16,202,202,208,243,162,60]},{"1184577":[189,132,16,9]},{"1184582":[32,157,132,16,202,202,208,243,162,60]},{"1184593":[189,196,16,9]},{"1184598":[32,157,196,16,202,202,208,243,162,60]},{"1184609":[189,4,17,9]},{"1184614":[32,157,4,17,202,202,208,243,162,60]},{"1184625":[189,68,17,9]},{"1184630":[32,157,68,17,202,202,208,243,162,60]},{"1184641":[189,132,17,9]},{"1184646":[32,157,132,17,202,202,208,243,162,60]},{"1184657":[189,196,17,9]},{"1184662":[32,157,196,17,202,202,208,243,162,60]},{"1184673":[189,4,18,9]},{"1184678":[32,157,4,18,202,202,208,243,162,60]},{"1184689":[189,68,18,9]},{"1184694":[32,157,68,18,202,202,208,243,162,60]},{"1184705":[189,132,18,9]},{"1184710":[32,157,132,18,202,202,208,243,162,60]},{"1184721":[189,196,18,9]},{"1184726":[32,157,196,18,202,202,208,243,162,60]},{"1184737":[189,4,19,9]},{"1184742":[32,157,4,19,202,202,208,243,162,60]},{"1184753":[189,68,19,9]},{"1184758":[32,157,68,19,202,202,208,243,107,72,218,173]},{"1184771":[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]},{"1184806":[67,169,24,141,1,67,169]},{"1184814":[141,22,33,169,48,141,23,33,169,49,141,4,67,169]},{"1184829":[141,2,67,169,208,141,3,67,173]},{"1184839":[33,72,169,128,141]},{"1184845":[33,156,5,67,169,16,141,6,67,169,1,141,11,66,104,141]},{"1184862":[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]},{"1184890":[67,250,104,107,165,16,201,4,208,11,169,1,141,178,10,34,82,238,27,128,4,34,151,148,164,92,150,239,27,72,218,194,32,162,64,191]},{"1184927":[128,51,159]},{"1184931":[197,126,202,202,16,244,226,32,230,21,250,104,107,194,32,175,217,3,112,9]},{"1184952":[28,141,206,16,24,105,16]},{"1184960":[141,14,17,175,219,3,112,9]},{"1184969":[28,141,208,16,24,105,16]},{"1184977":[141,16,17,175,221,3,112,9]},{"1184986":[28,141,210,16,24,105,16]},{"1184994":[141,18,17,175,223,3,112,9]},{"1185003":[28,141,212,16,24,105,16]},{"1185011":[141,20,17,175,108,3,112,41,255]},{"1185021":[74,74,74,133,2,160,44,16,169,143,6,162,10]},{"1185035":[153]},{"1185038":[200,200,202,208,8,72,152,24,105,44]},{"1185049":[168,104,198,2,208,236,32,33,138,107,165,200,208,4,169,4,128,28,201,3,208,4,169]},{"1185073":[128,20,175,135,128,48,201,2,208,10,175,158,80,127,208,4,169,3,128,2,169]},{"1185095":[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]},{"1185134":[133,200,107,175,135,128,48,201,2,208,18,156,46,1,218,90,34,53,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]},{"1185189":[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]},{"1185227":[144,4,159,248,4,112,159,217,3,112,107,224,8]},{"1185241":[144,4,191,248,4,112,191,217,3,112,107,139,75,171,25,254,149,235,171,107,173,18,11,16,2,169,11,201,12,144,2,169]},{"1185274":[141,18,11,107,110]},{"1185280":[111]},{"1185282":[112]},{"1185284":[113]},{"1185286":[115]},{"1185288":[116]},{"1185290":[117]},{"1185292":[118]},{"1185294":[120]},{"1185296":[121]},{"1185298":[122]},{"1185300":[123]},{"1185302":[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]},{"1185330":[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]},{"1185366":[143]},{"1185368":[81,127,200,200,183]},{"1185374":[143,2,81,127,200,200,183]},{"1185382":[143,4,81,127,200,200,183]},{"1185390":[143,6,81,127,169,2]},{"1185397":[133,4,34,31,178,160,104,133,14,104,133,12,104,133,10,104,133,8,104,133,6,104,133,4,104,41,7]},{"1185425":[170,191]},{"1185428":[81,127,72,169]},{"1185434":[143]},{"1185436":[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]},{"1185498":[72,165,2,72,169,188,234,133]},{"1185507":[169,1]},{"1185510":[133,2,138,74,34,59,150,164,133,12,104,133,2,104,133]},{"1185526":[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]},{"1185558":[189,238,152,159]},{"1185563":[201,126,232,232,224,128,144,243,160]},{"1185573":[162]},{"1185575":[218,187,191,21,130,48,250,41,31]},{"1185585":[10,10,10,90,168,185,238,151,159,24,201,126,185,240,151,159,26,201,126,185,242,151,159,88,201,126,185,244,151,159,90,201,126,122,232,232,232,232,232,232,200,224,25,144,201,226,32,32,105,151,40,122,250,104,171,107,72,218,173]},{"1185645":[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]},{"1185675":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1185696":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1185719":[33,72,169,128,141]},{"1185725":[33,169,1,141,11,66,104,141]},{"1185734":[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]},{"1185762":[67,250,104,96,134,29,134,29,150,29,150,29,1,10,2,10,17,10,18,10,5,14,6,14]},{"1185787":[30,22,14]},{"1185791":[6,21,6,48,6]},{"1185797":[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]},{"1186167":[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]},{"1186243":[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]},{"1186340":[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]},{"1186397":[39,1,1,1,1,1,2,2,39,39,39]},{"1186413":[39,1,1,1,32,1,2,2,39,39,39]},{"1186429":[39,1,1,1,1,32,2,2,2,2,2]},{"1186445":[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]},{"1186489":[44]},{"1186491":[78,79,1,1,1,1,1,1,2,1,2]},{"1186503":[46]},{"1186507":[2,34,1,1,2]},{"1186515":[24,18,2,2]},{"1186520":[72]},{"1186525":[1,1,2]},{"1186529":[1,1,16,26,2]},{"1186536":[72]},{"1186541":[16,16,2]},{"1186545":[1,1,1,1]},{"1186551":[72]},{"1186554":[9]},{"1186557":[2,2,2]},{"1186561":[1,1,43]},{"1186566":[9]},{"1186573":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186589":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186605":[1,1,1,70,1,1,2,2,2,2,2,2,2]},{"1186621":[1,1,1,1,1,1,2,2,2,2,2,2,2]},{"1186637":[2,2,66,2,2,2,2,2,2,2,41,34]},{"1186653":[2,2,2,2,2,2,2,2,2,2,41,34]},{"1186670":[2,2,2]},{"1186675":[2,2,2,2]},{"1186686":[2,2,2,2,41,2,2,2,2]},{"1186701":[1,1,1,1,1,1,1,1,1,1,1]},{"1186715":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186731":[2,68,1,1,1,1,1,1,1,1,2,2,2]},{"1186749":[1,1,67,1,1,1,1,1,2,2,2]},{"1186765":[80,2,84,81,87,87,86,86,39,39,39]},{"1186777":[64,64,72,72,80,2,84,81,87,42,86,86,39,39,39]},{"1186793":[64,64,87,72,39,2,82,83,2,1,18,24,85,85]},{"1186809":[72,2,2]},{"1186813":[39,2,82,83,9,1,26,16,85,85]},{"1186825":[72,2,2]},{"1186829":[2,2,24,8,8,8,9,9,8,8,41,2,2,2,26,2,8,8,16,8,18]},{"1186851":[9,9,9,9,9,72,9,41]},{"1186860":[75,2,2,2]},{"1186865":[8,2,2]},{"1186872":[1]},{"1186875":[32]},{"1186877":[2,2,2,2,2,2,2]},{"1186886":[1,1,1,2]},{"1186891":[8]},{"1186893":[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]},{"1186993":[240,2,128,23,169,15,2,166,138,224,51]},{"1187005":[208,4,143,168,34,126,224,47]},{"1187014":[208,4,143,178,43,126,107,175,74,128,48,41,255]},{"1187028":[208,5,175,135,242,126,107,169,32]},{"1187038":[107,175,74,128,48,240,69,218,8,139,75,171,165,138,41,64,240,55,194,48,162]},{"1187061":[191,54,157,164,197,34,176,29,191,56,157,164,197,34,144,21,191,58,157,164,197,32,176,13,191,60,157,164,197,32,144,5,171,40,250,128,24,138,24,105,8]},{"1187103":[201,184]},{"1187106":[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]},{"1187137":[10]},{"1187139":[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]},{"1187169":[10,96,6,48,8,184,7,72,8,224,8,112,9,239,2,33,3,22,12,162,12,72]},{"1187192":[143]},{"1187194":[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]},{"1187225":[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]},{"1187268":[112]},{"1187270":[240,14,48,15,32,1,96,1,208,10]},{"1187281":[11,80,11,112,11,48,11,96,11,80,11,112,11,120,6,240,6,16]},{"1187300":[64]},{"1187302":[168,2,232,2,144,12,192,12,173,10,4,41,255]},{"1187316":[201,5]},{"1187319":[208,7,169,1,1,143,24,46,126,175,74,128,48,41,255]},{"1187335":[208,18,173,10,4,41,255]},{"1187343":[201,67]},{"1187346":[208,7,169,1,1,143,80,37,126,175,74,128,48,41,255]},{"1187362":[208,25,173,10,4,41,255]},{"1187370":[201,91]},{"1187373":[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]},{"1187409":[176,5,10,170,252,98,158,171,194,48,162,30]},{"1187422":[169,190,13,107,98,159,98,159,98,159,99,159,98,159,142,159,98,159,136,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,215,160,98,159,98,159,98,159,222,160,98,159,98,159,98,159,98,159,98,159,98,159,253,160,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,151,163,98,159,98,159,98,159,98,159,98,159,98,159,179,163,98,159,117,167,248,169,98,159,255,169,98,159,98,159,98,159,98,159,54,170,98,159,11,167,98,159,98,159,98,159,98,159,98,159,98,159,172,170,98,159,35,171,98,159,1,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,42,171,98,159,98,159,98,159,49,171,98,159,98,159,98,159,98,159,98,159,98,159,77,171,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,31,173,45,173,98,159,98,159,38,173,98,159,52,173,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,98,159,96,169,26,2,141,182,41,169,243,1,141,184,41,169,160]},{"1187698":[141,186,41,169,4,1,141,188,41,169,198]},{"1187710":[141,52,42,141,56,42,141,58,42,169,52]},{"1187722":[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]},{"1187825":[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]},{"1187972":[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]},{"1188051":[141,38,40,96,169,52]},{"1188058":[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]},{"1188171":[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]},{"1188207":[141,40,44,141,174,47,169,52]},{"1188216":[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]},{"1188255":[141,54,44,141,168,47,169,174]},{"1188264":[141,172,44,169,175]},{"1188270":[141,174,44,169,126]},{"1188276":[141,176,44,169,127]},{"1188282":[141,178,44,169,186,4,141,180,44,141,180,45,141,180,46,169,176]},{"1188300":[141,44,45,169,20]},{"1188306":[141,46,45,169,21]},{"1188312":[141,48,45,169,168]},{"1188318":[141,50,45,169,187,4,141,52,45,141,52,46,141,52,47,169,137]},{"1188336":[141,172,45,169,28]},{"1188342":[141,174,45,169,29]},{"1188348":[141,176,45,169,118]},{"1188354":[141,178,45,169,241]},{"1188360":[141,44,46,169,78]},{"1188366":[141,46,46,169,79]},{"1188372":[141,48,46,169,217]},{"1188378":[141,50,46,169,154]},{"1188384":[141,172,46,169,155]},{"1188390":[141,174,46,169,156]},{"1188396":[141,176,46,169,149]},{"1188402":[141,178,46,169,52]},{"1188408":[141,40,48,141,44,48,169,53]},{"1188417":[141,42,48,141,50,48,169,218]},{"1188426":[141,46,48,169,226]},{"1188432":[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]},{"1188513":[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]},{"1188597":[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]},{"1188654":[141,206,40,141,208,40,141,210,40,175,219,242,126,41,32]},{"1188670":[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]},{"1188762":[141,136,34,141,8,35,141,136,35,141,8,36,141,136,36,141,138,36,169,54]},{"1188783":[141,134,35,96,169,126,1,141,80,32,141,206,32,169,209]},{"1188799":[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]},{"1188841":[141,96,32,141,226,32,141,100,33,169,131,1,141,208,32,141,78,33,169,201]},{"1188862":[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]},{"1188928":[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]},{"1188958":[141,96,33,141,226,33,141,100,34,141,218,40,141,92,41,169,220]},{"1188976":[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]},{"1189003":[141,224,33,141,98,34,141,90,40,141,220,40,169,120,1,141,78,34,169,227]},{"1189024":[141,82,34,141,84,34,169,134,1,141,208,34,141,78,35,169,52]},{"1189042":[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]},{"1189111":[141,226,34,169,2,3,141,228,34,169,204]},{"1189123":[141,230,34,141,232,34,141,234,34,141,236,34,141,238,34,141,240,34,141,76,35,169,206]},{"1189147":[141,98,35,141,226,35,141,216,37,141,88,38,141,216,38,141,88,39,169,197]},{"1189168":[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]},{"1189210":[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]},{"1189243":[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]},{"1189338":[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]},{"1189471":[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]},{"1189564":[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]},{"1189639":[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]},{"1189773":[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]},{"1189818":[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]},{"1190136":[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]},{"1190181":[141,20,41,141,22,41,141,148,41,141,150,41,141,18,45,169,228]},{"1190199":[141,134,41,169,229]},{"1190205":[141,136,41,169]},{"1190210":[1,141,162,41,169,113]},{"1190217":[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]},{"1190262":[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]},{"1190298":[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]},{"1190325":[141,26,44,169,206]},{"1190331":[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]},{"1190395":[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]},{"1190450":[141,86,47,96,169,116,7,141]},{"1190459":[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]},{"1190501":[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]},{"1190717":[141,162,36,141,164,36,169,227]},{"1190726":[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]},{"1190853":[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]},{"1190883":[141,30,50,169,218]},{"1190889":[141,32,50,141,154,50,169,225]},{"1190898":[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]},{"1190943":[141,26,50,169,242]},{"1190949":[141,184,59,169,8,1,141,56,60,169,52]},{"1190961":[141,190,59,175,197,243,126,41,255]},{"1190971":[201,3]},{"1190974":[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]},{"1191117":[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,131,176,194,32,166,6,138,9]},{"1191348":[36,143,90,199,126,166,7,138,9]},{"1191358":[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,33,176,166,4,138,9]},{"1191391":[36,143,80,199,126,166,5,138,9]},{"1191401":[36,143,82,199,126,166,6,138,9]},{"1191411":[36,143,84,199,126,166,7,138,9]},{"1191421":[36,143,86,199,126,226,32,175,117,129,48,208,51,175,200,80,127,208,31,175,119,243,126,32,131,176,194,32,166,6,138,9]},{"1191454":[36,143,96,199,126,166,7,138,9]},{"1191464":[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]},{"1191496":[175,24,244,126,32,92,176,194,32,175,101,129,48,143,42,199,126,166,5,138,9]},{"1191518":[36,143,44,199,126,166,6,138,9]},{"1191528":[36,143,46,199,126,166,7,138,9]},{"1191538":[36,143,48,199,126,226,32,175,103,129,48,201,255,240,48,175,103,129,48,32,92,176,194,32,169,48,40,143,50,199,126,166,5,138,9]},{"1191574":[36,143,52,199,126,166,6,138,9]},{"1191584":[36,143,54,199,126,166,7,138,9]},{"1191594":[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]},{"1191627":[240,4,34,157,176,164,226,32,175,111,243,126,201,255,240,34,32,131,176,194,32,166,6,138,224,144,208,3,169,127]},{"1191658":[9]},{"1191660":[36,143,100,199,126,166,7,138,9]},{"1191670":[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]},{"1191701":[24,105,7]},{"1191705":[41,248,255,170,175,202,80,127,41,255]},{"1191716":[208,3,130,215]},{"1191721":[226,32,169,128,143,110,243,126,194,48,162,128]},{"1191734":[165,26,41,12]},{"1191739":[74,74,240,58,201,1]},{"1191746":[240,98,201,2]},{"1191751":[208,3,130,180]},{"1191756":[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]},{"1191989":[144,6,200,233,100]},{"1191995":[128,245,132,5,160,144,201,10]},{"1192004":[144,6,200,233,10]},{"1192010":[128,245,132,6,160,144,201,1]},{"1192019":[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]},{"1192109":[240,11,175,100,243,126,63,222,176,164,208,1,107,124,250,176,32,131,176,194,32,166,6,138,9]},{"1192135":[36,143,148,199,126,166,7,138,9]},{"1192145":[36,143,150,199,126,169,48,40,143,152,199,126,107]},{"1192159":[128]},{"1192161":[64]},{"1192163":[32]},{"1192165":[16]},{"1192167":[8]},{"1192169":[4]},{"1192171":[2]},{"1192173":[1,128]},{"1192176":[64]},{"1192178":[32]},{"1192180":[16]},{"1192182":[8]},{"1192184":[4]},{"1192186":[22,177,22,177,49,177,74,177,102,177,127,177,152,177,177,177,202,177,229,177]},{"1192207":[178,27,178,52,178,79,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,189,176,169,144,36,143,154,199,126,169,150,36,143,156,199,126,226,32,175,54,244,126,41,7,76,189,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,189,176,169,144,36,143,154,199,126,169,146,36,143,156,199,126,226,32,175,53,244,126,41,2,76,189,176,169,145,36,143,154,199,126,169,144,36,143,156,199,126,226,32,175,57,244,126,41,15,76,189,176,169,145,36,143,154,199,126,169,148,36,143,156,199,126,226,32,175,52,244,126,41,15,76,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,56,244,126,41,15,76,189,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,189,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,189,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,189,176,169,144,36,143,154,199,126,169,152,36,143,156,199,126,226,32,175,55,244,126,41,15,76,189,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,189,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,189,176,107,159]},{"1192556":[4,112,159]},{"1192560":[5,112,159]},{"1192564":[6,112,159]},{"1192568":[7,112,159]},{"1192572":[8,112,159]},{"1192576":[9,112,159]},{"1192580":[10,112,159]},{"1192584":[11,112,159]},{"1192588":[12,112,159]},{"1192592":[13,112,159]},{"1192596":[14,112,159]},{"1192600":[15,112,107,159]},{"1192605":[244,126,159]},{"1192609":[101,127,159]},{"1192613":[102,127,159]},{"1192617":[103,127,159]},{"1192621":[104,127,159]},{"1192625":[105,127,159]},{"1192629":[106,127,159]},{"1192633":[107,127,159]},{"1192637":[108,127,159]},{"1192641":[109,127,159]},{"1192645":[110,127,159]},{"1192649":[111,127,107,72,226,48,173]},{"1192657":[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]},{"1192685":[141]},{"1192687":[67,169,128,141,1,67,169]},{"1192695":[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]},{"1192723":[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]},{"1192763":[67,194,48,104,143,13,192,126,107,72,139,226,48,169]},{"1192778":[72,171,173]},{"1192782":[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]},{"1192812":[67,141,1,67,169]},{"1192818":[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]},{"1192846":[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]},{"1192886":[67,194,48,171,104,162]},{"1192894":[138,107,165,17,34,156,135]},{"1192902":[213,179,164,237,179,164,12,180,164,13,181,164,35,181,164,169,128,141,16,7,34,61,137]},{"1192926":[34,51,131]},{"1192930":[34,151,148,164,169,7,133,20,230,17,107,32,44,182,100,200,100,201,34,53,181,164,208,11,162,15,169]},{"1192958":[159]},{"1192960":[16,112,202,16,249,169,15,133,19,230,17,107,139,75,171,32,156,182,165,246,41,16,240,3,32,232,183,165,246,41,32,240,3,32,245,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,233,180,164,16,43,201,240,208,4,230,17,128,69,201,241,208,5,32,245,183,128,52,201,242,208,5,32,232,183,128,43,201,243,208,11,230,17,230,17,169,44,141,46,1,128,36,128,26,166,200,159]},{"1193151":[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,154,183,32,79,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,53,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]},{"1193275":[16,112,208,3,130,161]},{"1193282":[202,16,244,194,32,162,14,169]},{"1193292":[159,208,80,127,202,202,16,248,32,232,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]},{"1193333":[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]},{"1193362":[133,4,34,31,178,160,226,32,175]},{"1193372":[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]},{"1193447":[107,169]},{"1193451":[133]},{"1193453":[133,2,169,11]},{"1193458":[133,4,166]},{"1193462":[191]},{"1193464":[16,112,58,41,31]},{"1193470":[164,4,240,4,10,136,128,250,235,166,2,31,208,80,127,159,208,80,127,165,4,56,233,5]},{"1193495":[16,6,24,105,8]},{"1193501":[230,2,133,4,165]},{"1193507":[26,133]},{"1193510":[201,16]},{"1193513":[144,201,96,173]},{"1193518":[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]},{"1193546":[141]},{"1193548":[67,169,128,141,1,67,169,2,141,129,33,169,16,141,130,33,169,126,141,131,33,169,196,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]},{"1193626":[67,96,194,32,165,200,41,255]},{"1193635":[10,170,191,231,182,164,24,105,132,96,235,143,2,17]},{"1193650":[165,201,41,255]},{"1193655":[10,170,191,7,183,164,24,105,163,97,235,143,18,17]},{"1193670":[235,24,105,32]},{"1193675":[235,143,30,17]},{"1193680":[235,24,105,3]},{"1193685":[235,143,38,17]},{"1193690":[235,24,105,61]},{"1193695":[235,143,46,17]},{"1193700":[226,32,96,64]},{"1193705":[67]},{"1193707":[70]},{"1193709":[73]},{"1193711":[76]},{"1193713":[79]},{"1193715":[82]},{"1193717":[85]},{"1193719":[160]},{"1193721":[163]},{"1193723":[166]},{"1193725":[169]},{"1193727":[172]},{"1193729":[175]},{"1193731":[178]},{"1193733":[181]},{"1193735":[223,255,226,255,229,255,232,255,235,255,238,255,241,255,244,255,247,255,63]},{"1193755":[66]},{"1193757":[69]},{"1193759":[72]},{"1193761":[75]},{"1193763":[78]},{"1193765":[81]},{"1193767":[84]},{"1193769":[87]},{"1193771":[159]},{"1193773":[162]},{"1193775":[165]},{"1193777":[168]},{"1193779":[171]},{"1193781":[174]},{"1193783":[177]},{"1193785":[180]},{"1193787":[183]},{"1193789":[255]},{"1193791":[2,1,5,1,8,1,11,1,14,1,17,1,20,1,23,1,194,32,165,200,41,255]},{"1193814":[10,170,191,231,182,164,24,105,132,96,235,143,10,17]},{"1193829":[165,201,41,255]},{"1193834":[10,170,191,7,183,164,24,105,163,97,235,143,58,17]},{"1193849":[235,24,105,32]},{"1193854":[235,143,70,17]},{"1193859":[235,24,105,3]},{"1193864":[235,143,78,17]},{"1193869":[235,24,105,61]},{"1193874":[235,143,86,17]},{"1193879":[226,32,96,194,48,162,15]},{"1193887":[191]},{"1193889":[16,112,41,255]},{"1193894":[155,10,10,10,133]},{"1193900":[152,10,10,10,10,133,3,166]},{"1193909":[191,230,151,164,166,3,157,6,16,166]},{"1193920":[191,232,151,164,166,3,157,8,16,166]},{"1193931":[191,234,151,164,166,3,157,14,16,166]},{"1193942":[191,236,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]},{"1193989":[51,1,10,2,10]},{"1193995":[2,5,14,6,14]},{"1194001":[2]},{"1194003":[6,21,6]},{"1194007":[2,12,14,13,14]},{"1194013":[2,98,6,99,6]},{"1194019":[2,10,2,11,2]},{"1194025":[2,32,14,33,14]},{"1194031":[2,133,26,134,26]},{"1194037":[2,171,30,171,30,97,195]},{"1194045":[51,17,10,18,10]},{"1194051":[2]},{"1194053":[30,22,14]},{"1194057":[2,48,6]},{"1194061":[30]},{"1194063":[2,28,14,28,78]},{"1194069":[2,114,6,115,6]},{"1194075":[2,26,2,27,2]},{"1194081":[2,48,14,49,14]},{"1194087":[2,149,26,150,26]},{"1194093":[2,171,30,171,30,98,3]},{"1194101":[51,7,10,23,202]},{"1194107":[2,8,10,24,202]},{"1194113":[2,9,10,25,202]},{"1194119":[2,44,6,44,70]},{"1194125":[2,34,2,35,2]},{"1194131":[2,36,2,37,2]},{"1194137":[2,38,14,39,14]},{"1194143":[2,40,10,41,10]},{"1194149":[2,138,29]},{"1194153":[2,98,35]},{"1194157":[51,23,10,7,202]},{"1194163":[2,24,10,8,202]},{"1194169":[2,25,10,9,202]},{"1194175":[2,60,6,61,6]},{"1194181":[2,50,2,51,2]},{"1194187":[2,52,2,53,2]},{"1194193":[2,54,14,55,14]},{"1194199":[2,56,10,57,10]},{"1194205":[2,154,29]},{"1194209":[2,98,99]},{"1194213":[51,42,26,43,26]},{"1194219":[2,64,30,65,30]},{"1194225":[2,66,26,66,90]},{"1194231":[2,29,6,30,6]},{"1194237":[2,72,6,73,6]},{"1194243":[2,74,14,75,14]},{"1194249":[2,76,22,77,22]},{"1194255":[2,78,2,79,2]},{"1194261":[2]},{"1194263":[2,139,29,98,131]},{"1194269":[51,58,26,59,26]},{"1194275":[2,80,30,81,30]},{"1194281":[2,82,26,83,26]},{"1194287":[2,45,6,46,6]},{"1194293":[2,88,6,89,6]},{"1194299":[2,90,14,91,14]},{"1194305":[2,92,22,93,22]},{"1194311":[2,94,2,95,2]},{"1194317":[2]},{"1194319":[2,155,29,98,195]},{"1194325":[51,14,14,15,14]},{"1194331":[2,100,6,101,6]},{"1194337":[2,109,10,110,10]},{"1194343":[2,111,26,111,90]},{"1194349":[2,129,6,129,70]},{"1194355":[2,130,10,131,10]},{"1194361":[2,132,6,132,70]},{"1194367":[2,47,74,47,10]},{"1194373":[2,103,94,103,30,98,227]},{"1194381":[51,31,78,31,14]},{"1194387":[2,116,6,117,6]},{"1194393":[2,125,10,126,10]},{"1194399":[2,127,26,127,90]},{"1194405":[2,145,6,145,70]},{"1194411":[2,146,10,147,10]},{"1194417":[2,148,6,148,70]},{"1194423":[2,62,10,63,10]},{"1194429":[2,103,222,103,158,255,255,96,132]},{"1194439":[3,134,29,134,29,96,164]},{"1194447":[3,150,29,150,29,96,135]},{"1194455":[3,134,29,134,29,96,167]},{"1194463":[3,150,29,150,29,96,138]},{"1194471":[3,134,29,134,29,96,170]},{"1194479":[3,150,29,150,29,96,141]},{"1194487":[3,134,29,134,29,96,173]},{"1194495":[3,150,29,150,29,96,144]},{"1194503":[3,134,29,134,29,96,176]},{"1194511":[3,150,29,150,29,96,147]},{"1194519":[3,134,29,134,29,96,179]},{"1194527":[3,150,29,150,29,96,150]},{"1194535":[3,134,29,134,29,96,182]},{"1194543":[3,150,29,150,29,96,153]},{"1194551":[3,134,29,134,29,96,185]},{"1194559":[3,150,29,150,29,96,228]},{"1194567":[3,134,29,134,29,97,4]},{"1194575":[3,150,29,150,29,96,231]},{"1194583":[3,134,29,134,29,97,7]},{"1194591":[3,150,29,150,29,96,234]},{"1194599":[3,134,29,134,29,97,10]},{"1194607":[3,150,29,150,29,96,237]},{"1194615":[3,134,29,134,29,97,13]},{"1194623":[3,150,29,150,29,96,240]},{"1194631":[3,134,29,134,29,97,16]},{"1194639":[3,150,29,150,29,96,243]},{"1194647":[3,134,29,134,29,97,19]},{"1194655":[3,150,29,150,29,96,246]},{"1194663":[3,134,29,134,29,97,22]},{"1194671":[3,150,29,150,29,96,249]},{"1194679":[3,134,29,134,29,97,25]},{"1194687":[3,150,29,150,29,96,196]},{"1194695":[3]},{"1194697":[2]},{"1194699":[2,96,196]},{"1194703":[3,103,222,103,158,97,130]},{"1194711":[7]},{"1194713":[2]},{"1194715":[2]},{"1194717":[2]},{"1194719":[2,97,162,128,3]},{"1194725":[2]},{"1194727":[2,97,165,128,3]},{"1194733":[2]},{"1194735":[2,97,226]},{"1194739":[7]},{"1194741":[2]},{"1194743":[2]},{"1194745":[2]},{"1194747":[2,97,130]},{"1194751":[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]},{"1194779":[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]},{"1194818":[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]},{"1194945":[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]},{"1195005":[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,4,188,164,107,143,111,243,126,218,175,67,244,126,208,4,34,47,192,160,34,165,155,160,90,160,24,34,149,184,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,47,192,160,34,165,155,160,165,27,240,23,8,194,32,173,142,4,201,135]},{"1195124":[208,11,40,90,160,24,34,149,184,160,122,128,1,40,34,120,250,13,250,107,143,111,243,126,34,165,155,160,107,72,175,67,244,126,208,4,34,189,192,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,4,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,4,188,164,104,34,168,160,2,107,58,16,8,169]},{"1195380":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1195394":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,76,4,188,169,1,143]},{"1195420":[80,127,156,70,6,156,66,6,76,4,188,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,189,192,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,175,127,83,127,240,2,56,107,169,1,143,127,83,127,175,1,83,127,143,160,244,126,175,2,83,127,143,161,244,126,175]},{"1195643":[83,127,201,3,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,174,191,164,226,48,169]},{"1195681":[143,127,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,1,143,128,83,127,169]},{"1195739":[143,255,83,127,24,107,175,255,83,127,240,2,56,107,169,1,143,255,83,127,165,123,143,129,83,127,165,27,143,130,83,127,165,160,143,131,83,127,165,161,143,132,83,127,165,118,143,133,83,127,169,2,143,128,83,127,169]},{"1195797":[143,255,83,127,24,107,165,138,201,27,240,4,92,205,240,5,139,75,171,169,7,157,80,15,32,57,191,34,231,244,30,32,121,191,171,107,169,2,133,6,100,7,189,192,13,10,10,10,10,105,89,133,8,169,191,105]},{"1195854":[133,9,34,117,223,5,34,92,220,6,96]},{"1195867":[247,255,198]},{"1195872":[2]},{"1195877":[200]},{"1195880":[2]},{"1195883":[248,255,198]},{"1195888":[2]},{"1195893":[202,64]},{"1195896":[2,175,103,129,48,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,223,218,160,165,26,74,74,74,74,74,41,1,157,192,13,96,90,8,172]},{"1195954":[84,34,161,152,160,40,122,107,110,41,97,41,95,41,97,41,101,41,114,41,97,41,96,41,127]},{"1195980":[98,41,110,41,107,41,105,41,127]},{"1195990":[111,41,97,41,106,41,112,41,127]},{"1196000":[112,41,107,41,127]},{"1196006":[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]},{"1196053":[33,218,162,128,142]},{"1196059":[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]},{"1196087":[141,69,67,169,1,24,141,64,67,162,16,142,11,66,250,142]},{"1196104":[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]},{"1196195":[208,33,8,194,48,162]},{"1196203":[224,64]},{"1196206":[176,11,169,127]},{"1196211":[159,88,192,126,232,232,128,240,40,169,1,143,69,80,127,143,68,80,127,165,93,201]},{"1196234":[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]},{"1196281":[240,7,224,2,240,3,130,137]},{"1196290":[130,132]},{"1196293":[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]},{"1196439":[143,152,192,126,156,233,2,34,179,145,7,34,157,153,7,169]},{"1196456":[143,210,244,126,143,87,192,126,218,90,8,194,48,162]},{"1196472":[224,28]},{"1196475":[176,12,191,186,191,164,159,88,192,126,232,232,128,239,160,28]},{"1196492":[175,211,244,126,41,255]},{"1196499":[58,201,64]},{"1196503":[176,63,10,10,10,10,10,170,192,60]},{"1196514":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196537":[176,11,169,127]},{"1196542":[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,162,184,160,122,218,90,8,194,48,162]},{"1196698":[224,16]},{"1196701":[176,12,191,214,191,164,159,88,192,126,232,232,128,239,160,16]},{"1196718":[175,152,192,126,41,255]},{"1196725":[58,201,64]},{"1196729":[176,63,10,10,10,10,10,170,192,48]},{"1196740":[176,17,191,128,227,48,218,187,159,88,192,126,250,232,232,200,200,128,234,187,224,64]},{"1196763":[176,11,169,127]},{"1196768":[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]},{"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]},{"1595394":[74,10]},{"1595397":[1]},{"1595399":[243,10]},{"1595402":[2]},{"1595404":[50,12]},{"1595408":[1]},{"1595410":[25,13,52]},{"1595415":[255,255,255,255,255,255,255,255,255,1]},{"1595426":[74,10,112,1]},{"1595431":[243,10,192,2]},{"1595436":[50,12,218,88,1]},{"1595442":[25,13,52]},{"1595447":[255,255,255,255,255,255,255,255,255,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]},{"1595520":[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]},{"1595584":[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]},{"1598336":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127]},{"1598352":[127]},{"1598354":[127]},{"1598356":[127]},{"1598358":[127]},{"1598360":[127]},{"1598362":[127]},{"1598364":[127]},{"1598366":[127]},{"1598368":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127]},{"1598384":[127]},{"1598386":[127]},{"1598388":[127]},{"1598390":[127]},{"1598392":[127]},{"1598394":[127]},{"1598396":[127]},{"1598398":[127]},{"1598400":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127]},{"1598416":[127]},{"1598418":[127]},{"1598420":[127]},{"1598422":[127]},{"1598424":[127]},{"1598426":[127]},{"1598428":[127]},{"1598430":[127]},{"1598432":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127]},{"1598448":[127]},{"1598450":[127]},{"1598452":[127]},{"1598454":[127]},{"1598456":[127]},{"1598458":[127]},{"1598460":[127]},{"1598462":[127]},{"1598464":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127]},{"1598480":[127]},{"1598482":[127]},{"1598484":[127]},{"1598486":[127]},{"1598488":[127]},{"1598490":[127]},{"1598492":[127]},{"1598494":[127]},{"1598496":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,127]},{"1598512":[127]},{"1598514":[127]},{"1598516":[127]},{"1598518":[127]},{"1598520":[127]},{"1598522":[127]},{"1598524":[127]},{"1598526":[127]},{"1598528":[108,41,104,41,93,41,117,41,97,41,110,41,126,41,127]},{"1598544":[127]},{"1598546":[127]},{"1598548":[127]},{"1598550":[127]},{"1598552":[127]},{"1598554":[127]},{"1598556":[127]},{"1598558":[127]},{"1598560":[108,41,104,41,93,41,117,41,97,41,110,41,127,41,127]},{"1598576":[127]},{"1598578":[127]},{"1598580":[127]},{"1598582":[127]},{"1598584":[127]},{"1598586":[127]},{"1598588":[127]},{"1598590":[127]},{"1598592":[108,41,104,41,93,41,117,41,97,41,110,41,75,41,127]},{"1598608":[127]},{"1598610":[127]},{"1598612":[127]},{"1598614":[127]},{"1598616":[127]},{"1598618":[127]},{"1598620":[127]},{"1598622":[127]},{"1598624":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,119,41,127]},{"1598642":[127]},{"1598644":[127]},{"1598646":[127]},{"1598648":[127]},{"1598650":[127]},{"1598652":[127]},{"1598654":[127]},{"1598656":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,120,41,127]},{"1598674":[127]},{"1598676":[127]},{"1598678":[127]},{"1598680":[127]},{"1598682":[127]},{"1598684":[127]},{"1598686":[127]},{"1598688":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,121,41,127]},{"1598706":[127]},{"1598708":[127]},{"1598710":[127]},{"1598712":[127]},{"1598714":[127]},{"1598716":[127]},{"1598718":[127]},{"1598720":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,122,41,127]},{"1598738":[127]},{"1598740":[127]},{"1598742":[127]},{"1598744":[127]},{"1598746":[127]},{"1598748":[127]},{"1598750":[127]},{"1598752":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,123,41,127]},{"1598770":[127]},{"1598772":[127]},{"1598774":[127]},{"1598776":[127]},{"1598778":[127]},{"1598780":[127]},{"1598782":[127]},{"1598784":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,124,41,127]},{"1598802":[127]},{"1598804":[127]},{"1598806":[127]},{"1598808":[127]},{"1598810":[127]},{"1598812":[127]},{"1598814":[127]},{"1598816":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,125,41,127]},{"1598834":[127]},{"1598836":[127]},{"1598838":[127]},{"1598840":[127]},{"1598842":[127]},{"1598844":[127]},{"1598846":[127]},{"1598848":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,126,41,127]},{"1598866":[127]},{"1598868":[127]},{"1598870":[127]},{"1598872":[127]},{"1598874":[127]},{"1598876":[127]},{"1598878":[127]},{"1598880":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,127,41,127]},{"1598898":[127]},{"1598900":[127]},{"1598902":[127]},{"1598904":[127]},{"1598906":[127]},{"1598908":[127]},{"1598910":[127]},{"1598912":[108,41,104,41,93,41,117,41,97,41,110,41,120,41,75,41,127]},{"1598930":[127]},{"1598932":[127]},{"1598934":[127]},{"1598936":[127]},{"1598938":[127]},{"1598940":[127]},{"1598942":[127]},{"1598944":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,119,41,127]},{"1598962":[127]},{"1598964":[127]},{"1598966":[127]},{"1598968":[127]},{"1598970":[127]},{"1598972":[127]},{"1598974":[127]},{"1598976":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,120,41,127]},{"1598994":[127]},{"1598996":[127]},{"1598998":[127]},{"1599000":[127]},{"1599002":[127]},{"1599004":[127]},{"1599006":[127]},{"1599008":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,121,41,127]},{"1599026":[127]},{"1599028":[127]},{"1599030":[127]},{"1599032":[127]},{"1599034":[127]},{"1599036":[127]},{"1599038":[127]},{"1599040":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,122,41,127]},{"1599058":[127]},{"1599060":[127]},{"1599062":[127]},{"1599064":[127]},{"1599066":[127]},{"1599068":[127]},{"1599070":[127]},{"1599072":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,123,41,127]},{"1599090":[127]},{"1599092":[127]},{"1599094":[127]},{"1599096":[127]},{"1599098":[127]},{"1599100":[127]},{"1599102":[127]},{"1599104":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,124,41,127]},{"1599122":[127]},{"1599124":[127]},{"1599126":[127]},{"1599128":[127]},{"1599130":[127]},{"1599132":[127]},{"1599134":[127]},{"1599136":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,125,41,127]},{"1599154":[127]},{"1599156":[127]},{"1599158":[127]},{"1599160":[127]},{"1599162":[127]},{"1599164":[127]},{"1599166":[127]},{"1599168":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,126,41,127]},{"1599186":[127]},{"1599188":[127]},{"1599190":[127]},{"1599192":[127]},{"1599194":[127]},{"1599196":[127]},{"1599198":[127]},{"1599200":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,127,41,127]},{"1599218":[127]},{"1599220":[127]},{"1599222":[127]},{"1599224":[127]},{"1599226":[127]},{"1599228":[127]},{"1599230":[127]},{"1599232":[108,41,104,41,93,41,117,41,97,41,110,41,121,41,75,41,127]},{"1599250":[127]},{"1599252":[127]},{"1599254":[127]},{"1599256":[127]},{"1599258":[127]},{"1599260":[127]},{"1599262":[127]},{"1599264":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,119,41,127]},{"1599282":[127]},{"1599284":[127]},{"1599286":[127]},{"1599288":[127]},{"1599290":[127]},{"1599292":[127]},{"1599294":[127]},{"1599296":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,120,41,127]},{"1599314":[127]},{"1599316":[127]},{"1599318":[127]},{"1599320":[127]},{"1599322":[127]},{"1599324":[127]},{"1599326":[127]},{"1599328":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,121,41,127]},{"1599346":[127]},{"1599348":[127]},{"1599350":[127]},{"1599352":[127]},{"1599354":[127]},{"1599356":[127]},{"1599358":[127]},{"1599360":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,122,41,127]},{"1599378":[127]},{"1599380":[127]},{"1599382":[127]},{"1599384":[127]},{"1599386":[127]},{"1599388":[127]},{"1599390":[127]},{"1599392":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,123,41,127]},{"1599410":[127]},{"1599412":[127]},{"1599414":[127]},{"1599416":[127]},{"1599418":[127]},{"1599420":[127]},{"1599422":[127]},{"1599424":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,124,41,127]},{"1599442":[127]},{"1599444":[127]},{"1599446":[127]},{"1599448":[127]},{"1599450":[127]},{"1599452":[127]},{"1599454":[127]},{"1599456":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,125,41,127]},{"1599474":[127]},{"1599476":[127]},{"1599478":[127]},{"1599480":[127]},{"1599482":[127]},{"1599484":[127]},{"1599486":[127]},{"1599488":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,126,41,127]},{"1599506":[127]},{"1599508":[127]},{"1599510":[127]},{"1599512":[127]},{"1599514":[127]},{"1599516":[127]},{"1599518":[127]},{"1599520":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,127,41,127]},{"1599538":[127]},{"1599540":[127]},{"1599542":[127]},{"1599544":[127]},{"1599546":[127]},{"1599548":[127]},{"1599550":[127]},{"1599552":[108,41,104,41,93,41,117,41,97,41,110,41,122,41,75,41,127]},{"1599570":[127]},{"1599572":[127]},{"1599574":[127]},{"1599576":[127]},{"1599578":[127]},{"1599580":[127]},{"1599582":[127]},{"1599584":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,119,41,127]},{"1599602":[127]},{"1599604":[127]},{"1599606":[127]},{"1599608":[127]},{"1599610":[127]},{"1599612":[127]},{"1599614":[127]},{"1599616":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,120,41,127]},{"1599634":[127]},{"1599636":[127]},{"1599638":[127]},{"1599640":[127]},{"1599642":[127]},{"1599644":[127]},{"1599646":[127]},{"1599648":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,121,41,127]},{"1599666":[127]},{"1599668":[127]},{"1599670":[127]},{"1599672":[127]},{"1599674":[127]},{"1599676":[127]},{"1599678":[127]},{"1599680":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,122,41,127]},{"1599698":[127]},{"1599700":[127]},{"1599702":[127]},{"1599704":[127]},{"1599706":[127]},{"1599708":[127]},{"1599710":[127]},{"1599712":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,123,41,127]},{"1599730":[127]},{"1599732":[127]},{"1599734":[127]},{"1599736":[127]},{"1599738":[127]},{"1599740":[127]},{"1599742":[127]},{"1599744":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,124,41,127]},{"1599762":[127]},{"1599764":[127]},{"1599766":[127]},{"1599768":[127]},{"1599770":[127]},{"1599772":[127]},{"1599774":[127]},{"1599776":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,125,41,127]},{"1599794":[127]},{"1599796":[127]},{"1599798":[127]},{"1599800":[127]},{"1599802":[127]},{"1599804":[127]},{"1599806":[127]},{"1599808":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,126,41,127]},{"1599826":[127]},{"1599828":[127]},{"1599830":[127]},{"1599832":[127]},{"1599834":[127]},{"1599836":[127]},{"1599838":[127]},{"1599840":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,127,41,127]},{"1599858":[127]},{"1599860":[127]},{"1599862":[127]},{"1599864":[127]},{"1599866":[127]},{"1599868":[127]},{"1599870":[127]},{"1599872":[108,41,104,41,93,41,117,41,97,41,110,41,123,41,75,41,127]},{"1599890":[127]},{"1599892":[127]},{"1599894":[127]},{"1599896":[127]},{"1599898":[127]},{"1599900":[127]},{"1599902":[127]},{"1599904":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,119,41,127]},{"1599922":[127]},{"1599924":[127]},{"1599926":[127]},{"1599928":[127]},{"1599930":[127]},{"1599932":[127]},{"1599934":[127]},{"1599936":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,120,41,127]},{"1599954":[127]},{"1599956":[127]},{"1599958":[127]},{"1599960":[127]},{"1599962":[127]},{"1599964":[127]},{"1599966":[127]},{"1599968":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,121,41,127]},{"1599986":[127]},{"1599988":[127]},{"1599990":[127]},{"1599992":[127]},{"1599994":[127]},{"1599996":[127]},{"1599998":[127]},{"1600000":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,122,41,127]},{"1600018":[127]},{"1600020":[127]},{"1600022":[127]},{"1600024":[127]},{"1600026":[127]},{"1600028":[127]},{"1600030":[127]},{"1600032":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,123,41,127]},{"1600050":[127]},{"1600052":[127]},{"1600054":[127]},{"1600056":[127]},{"1600058":[127]},{"1600060":[127]},{"1600062":[127]},{"1600064":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,124,41,127]},{"1600082":[127]},{"1600084":[127]},{"1600086":[127]},{"1600088":[127]},{"1600090":[127]},{"1600092":[127]},{"1600094":[127]},{"1600096":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,125,41,127]},{"1600114":[127]},{"1600116":[127]},{"1600118":[127]},{"1600120":[127]},{"1600122":[127]},{"1600124":[127]},{"1600126":[127]},{"1600128":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,126,41,127]},{"1600146":[127]},{"1600148":[127]},{"1600150":[127]},{"1600152":[127]},{"1600154":[127]},{"1600156":[127]},{"1600158":[127]},{"1600160":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,127,41,127]},{"1600178":[127]},{"1600180":[127]},{"1600182":[127]},{"1600184":[127]},{"1600186":[127]},{"1600188":[127]},{"1600190":[127]},{"1600192":[108,41,104,41,93,41,117,41,97,41,110,41,124,41,75,41,127]},{"1600210":[127]},{"1600212":[127]},{"1600214":[127]},{"1600216":[127]},{"1600218":[127]},{"1600220":[127]},{"1600222":[127]},{"1600224":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,119,41,127]},{"1600242":[127]},{"1600244":[127]},{"1600246":[127]},{"1600248":[127]},{"1600250":[127]},{"1600252":[127]},{"1600254":[127]},{"1600256":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,120,41,127]},{"1600274":[127]},{"1600276":[127]},{"1600278":[127]},{"1600280":[127]},{"1600282":[127]},{"1600284":[127]},{"1600286":[127]},{"1600288":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,121,41,127]},{"1600306":[127]},{"1600308":[127]},{"1600310":[127]},{"1600312":[127]},{"1600314":[127]},{"1600316":[127]},{"1600318":[127]},{"1600320":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,122,41,127]},{"1600338":[127]},{"1600340":[127]},{"1600342":[127]},{"1600344":[127]},{"1600346":[127]},{"1600348":[127]},{"1600350":[127]},{"1600352":[108,41,104,41,93,41,117,41,97,41,110,41,125,41,123,41,127]},{"1600370":[127]},{"1600372":[127]},{"1600374":[127]},{"1600376":[127]},{"1600378":[127]},{"1600380":[127]},{"1600382":[127]},{"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]},{"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]},{"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 From 0c6ce5df00642636154a3705f6e9ef9eda1d260f Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 13 Jan 2020 04:46:19 +0100 Subject: [PATCH 178/185] fix a dumb --- HintedMultiServer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HintedMultiServer.py b/HintedMultiServer.py index 2ee4c070..150fc530 100644 --- a/HintedMultiServer.py +++ b/HintedMultiServer.py @@ -342,7 +342,7 @@ async def console(ctx : Context): else: client = get_client_from_name(ctx, command[1]) if client: - player_number = client.slot() + player_number = client.slot else: print(f"Player with name {command[1]} not found.") if player_number: From b3ec435b7e0eda8e688ccae7c508d32ccf0b9d9f Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 13 Jan 2020 19:47:30 +0100 Subject: [PATCH 179/185] implement race as an option and cmd argument --- MultiMystery.py | 5 ++++- Mystery.py | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/MultiMystery.py b/MultiMystery.py index afc1517d..5a248155 100644 --- a/MultiMystery.py +++ b/MultiMystery.py @@ -34,6 +34,9 @@ zip_roms:int = 1 #create a spoiler file create_spoiler:bool = True +#create roms as race coms +race:bool= False + #folder from which the player yaml files are pulled from player_files_folder:str = "Players" @@ -77,7 +80,7 @@ if __name__ == "__main__": command = f"py -{py_version} Mystery.py --multi {len(player_files)} {player_string} " \ f"--names {','.join(player_names)} --enemizercli {enemizer_location} " \ - f"--outputpath {outputpath}" + " --create_spoiler" if create_spoiler else "" + f"--outputpath {outputpath}" + " --create_spoiler" if create_spoiler else "" + " --race" if race else "" print(command) import time start = time.perf_counter() diff --git a/Mystery.py b/Mystery.py index 0da5ce26..debf51d8 100644 --- a/Mystery.py +++ b/Mystery.py @@ -43,6 +43,7 @@ def main(): parser.add_argument('--rom') parser.add_argument('--enemizercli') parser.add_argument('--outputpath') + parser.add_argument('--race', action='store_true') for player in range(1, multiargs.multi + 1): parser.add_argument(f'--p{player}', help=argparse.SUPPRESS) args = parser.parse_args() @@ -75,7 +76,7 @@ def main(): erargs.seed = seed erargs.names = args.names erargs.create_spoiler = args.create_spoiler - erargs.race = False + erargs.race = args.race erargs.outputname = seedname erargs.outputpath = args.outputpath From ad278f91d6ac9633852bab85d3f68e2f9e739d16 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 14 Jan 2020 10:42:27 +0100 Subject: [PATCH 180/185] Multiworld: clients will now be automatically be identified from the rom name and have their names and teams set by the host, meaning those need to be configured during seed gen Player names will show up in spoiler log and hint tiles instead of player id MultiClient: autoreconnect to mw server --- AdjusterMain.py | 4 +- BaseClasses.py | 117 +++++++++++++------------ EntranceRandomizer.py | 1 + Gui.py | 24 +---- Main.py | 108 +++++++++++++---------- MultiClient.py | 199 +++++++++++++++++++----------------------- MultiServer.py | 174 +++++++++++++++--------------------- Mystery.py | 1 + Plando.py | 3 +- Rom.py | 40 ++++++--- Utils.py | 15 +++- 11 files changed, 328 insertions(+), 358 deletions(-) diff --git a/AdjusterMain.py b/AdjusterMain.py index 4bdfa50b..30092b15 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -2,7 +2,7 @@ import os import time import logging -from Utils import output_path, parse_names_string +from Utils import output_path from Rom import LocalRom, apply_rom_settings @@ -21,7 +21,7 @@ def adjust(args): else: raise RuntimeError('Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.') - apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, args.sprite, args.ow_palettes, args.uw_palettes, parse_names_string(args.names)) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, args.sprite, args.ow_palettes, args.uw_palettes) rom.write_to_file(output_path('%s.sfc' % outfilebase)) diff --git a/BaseClasses.py b/BaseClasses.py index 7e3740cc..ac4ec9fc 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -11,6 +11,7 @@ class World(object): def __init__(self, players, shuffle, logic, mode, swords, difficulty, difficulty_adjustments, timer, progressive, goal, algorithm, accessibility, shuffle_ganon, retro, custom, customitemarray, hints): self.players = players + self.teams = 1 self.shuffle = shuffle.copy() self.logic = logic.copy() self.mode = mode.copy() @@ -58,6 +59,7 @@ class World(object): def set_player_attr(attr, val): self.__dict__.setdefault(attr, {})[player] = val set_player_attr('_region_cache', {}) + set_player_attr('player_names', []) set_player_attr('required_medallions', ['Ether', 'Quake']) set_player_attr('swamp_patch_required', False) set_player_attr('powder_patch_required', False) @@ -90,6 +92,12 @@ class World(object): set_player_attr('treasure_hunt_icon', 'Triforce Piece') set_player_attr('treasure_hunt_count', 0) + 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)})' + + def get_player_names(self, player): + return ", ".join([name for i, name in enumerate(self.player_names[player]) if self.player_names[player].index(name) == i]) + def initialize_regions(self, regions=None): for region in regions if regions else self.regions: region.world = self @@ -211,6 +219,7 @@ class World(object): return [location for location in self.get_locations() if location.item is not None and location.item.name == item and location.item.player == player] def push_precollected(self, item): + item.world = self if (item.smallkey and self.keyshuffle[item.player]) or (item.bigkey and self.bigkeyshuffle[item.player]): item.advancement = True self.precollected_items.append(item) @@ -223,6 +232,7 @@ class World(object): if location.can_fill(self.state, item, False): location.item = item item.location = location + item.world = self if collect: self.state.collect(item, location.event, location) @@ -707,10 +717,7 @@ class Region(object): return str(self.__unicode__()) def __unicode__(self): - if self.world and self.world.players == 1: - return self.name - else: - return '%s (Player %d)' % (self.name, self.player) + return self.world.get_name_string_for_object(self) if self.world else f'{self.name} (Player {self.player})' class Entrance(object): @@ -746,11 +753,8 @@ class Entrance(object): return str(self.__unicode__()) def __unicode__(self): - if self.parent_region and self.parent_region.world and self.parent_region.world.players == 1: - return self.name - else: - return '%s (Player %d)' % (self.name, self.player) - + 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): @@ -787,10 +791,7 @@ class Dungeon(object): return str(self.__unicode__()) def __unicode__(self): - if self.world and self.world.players==1: - return self.name - else: - return '%s (Player %d)' % (self.name, self.player) + return self.world.get_name_string_for_object(self) if self.world else f'{self.name} (Player {self.player})' class Boss(object): def __init__(self, name, enemizer_name, defeat_rule, player): @@ -833,10 +834,8 @@ class Location(object): return str(self.__unicode__()) def __unicode__(self): - if self.parent_region and self.parent_region.world and self.parent_region.world.players == 1: - return self.name - else: - return '%s (Player %d)' % (self.name, self.player) + world = self.parent_region.world if self.parent_region and self.parent_region.world else None + return world.get_name_string_for_object(self) if world else f'{self.name} (Player {self.player})' class Item(object): @@ -855,6 +854,7 @@ class Item(object): self.hint_text = hint_text self.code = code self.location = None + self.world = None self.player = player @property @@ -881,10 +881,7 @@ class Item(object): return str(self.__unicode__()) def __unicode__(self): - if self.location and self.location.parent_region and self.location.parent_region.world and self.location.parent_region.world.players == 1: - return self.name - else: - return '%s (Player %d)' % (self.name, self.player) + return self.world.get_name_string_for_object(self) if self.world else f'{self.name} (Player {self.player})' # have 6 address that need to be filled @@ -957,6 +954,7 @@ class Spoiler(object): def __init__(self, world): self.world = world + self.hashes = {} self.entrances = OrderedDict() self.medallions = {} self.playthrough = {} @@ -981,8 +979,8 @@ class Spoiler(object): self.medallions['Turtle Rock'] = self.world.required_medallions[1][1] else: for player in range(1, self.world.players + 1): - self.medallions['Misery Mire (Player %d)' % player] = self.world.required_medallions[player][0] - self.medallions['Turtle Rock (Player %d)' % player] = self.world.required_medallions[player][1] + self.medallions[f'Misery Mire ({self.world.get_player_names(player)})'] = self.world.required_medallions[player][0] + self.medallions[f'Turtle Rock ({self.world.get_player_names(player)})'] = self.world.required_medallions[player][1] self.startinventory = list(map(str, self.world.precollected_items)) @@ -1075,7 +1073,8 @@ class Spoiler(object): 'enemy_shuffle': self.world.enemy_shuffle, 'enemy_health': self.world.enemy_health, 'enemy_damage': self.world.enemy_damage, - 'players': self.world.players + 'players': self.world.players, + 'teams': self.world.teams } def to_json(self): @@ -1085,6 +1084,8 @@ class Spoiler(object): out.update(self.locations) out['Starting Inventory'] = self.startinventory out['Special'] = self.medallions + if self.hashes: + out['Hashes'] = {f"{self.world.player_names[player][team]} (Team {team+1})": hash for (player, team), hash in self.hashes.items()} if self.shops: out['Shops'] = self.shops out['playthrough'] = self.playthrough @@ -1098,42 +1099,44 @@ class Spoiler(object): self.parse_data() with open(filename, 'w') as outfile: outfile.write('ALttP Entrance Randomizer Version %s - Seed: %s\n\n' % (self.metadata['version'], self.world.seed)) - outfile.write('Players: %d\n' % self.world.players) outfile.write('Filling Algorithm: %s\n' % self.world.algorithm) - outfile.write('Logic: %s\n' % self.metadata['logic']) - outfile.write('Mode: %s\n' % self.metadata['mode']) - outfile.write('Retro: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['retro'].items()}) - outfile.write('Swords: %s\n' % self.metadata['weapons']) - outfile.write('Goal: %s\n' % self.metadata['goal']) - outfile.write('Difficulty: %s\n' % self.metadata['item_pool']) - outfile.write('Item Functionality: %s\n' % self.metadata['item_functionality']) - outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle']) - outfile.write('Crystals required for GT: %s\n' % self.metadata['gt_crystals']) - outfile.write('Crystals required for Ganon: %s\n' % self.metadata['ganon_crystals']) - outfile.write('Pyramid hole pre-opened: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['open_pyramid'].items()}) - outfile.write('Accessibility: %s\n' % self.metadata['accessibility']) - outfile.write('Map shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['mapshuffle'].items()}) - outfile.write('Compass shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['compassshuffle'].items()}) - outfile.write('Small Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['keyshuffle'].items()}) - outfile.write('Big Key shuffle: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['bigkeyshuffle'].items()}) - outfile.write('Boss shuffle: %s\n' % self.metadata['boss_shuffle']) - outfile.write('Enemy shuffle: %s\n' % self.metadata['enemy_shuffle']) - outfile.write('Enemy health: %s\n' % self.metadata['enemy_health']) - outfile.write('Enemy damage: %s\n' % self.metadata['enemy_damage']) - outfile.write('Hints: %s\n' % {k: 'Yes' if v else 'No' for k, v in self.metadata['hints'].items()}) + outfile.write('Players: %d\n' % self.world.players) + outfile.write('Teams: %d\n' % self.world.teams) + for player in range(1, self.world.players + 1): + if self.world.players > 1: + outfile.write('\nPlayer %d: %s\n' % (player, self.world.get_player_names(player))) + for team in range(self.world.teams): + outfile.write('%s%s\n' % (f"Hash - {self.world.player_names[player][team]} (Team {team+1}): " if self.world.teams > 1 else 'Hash: ', self.hashes[player, team])) + outfile.write('Logic: %s\n' % self.metadata['logic'][player]) + outfile.write('Mode: %s\n' % self.metadata['mode'][player]) + outfile.write('Retro: %s\n' % ('Yes' if self.metadata['retro'][player] else 'No')) + outfile.write('Swords: %s\n' % self.metadata['weapons'][player]) + outfile.write('Goal: %s\n' % self.metadata['goal'][player]) + outfile.write('Difficulty: %s\n' % self.metadata['item_pool'][player]) + outfile.write('Item Functionality: %s\n' % self.metadata['item_functionality'][player]) + outfile.write('Entrance Shuffle: %s\n' % self.metadata['shuffle'][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]) + 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')) + outfile.write('Compass shuffle: %s\n' % ('Yes' if self.metadata['compassshuffle'][player] else 'No')) + outfile.write('Small Key shuffle: %s\n' % ('Yes' if self.metadata['keyshuffle'][player] else 'No')) + outfile.write('Big Key shuffle: %s\n' % ('Yes' if self.metadata['bigkeyshuffle'][player] else 'No')) + outfile.write('Boss shuffle: %s\n' % self.metadata['boss_shuffle'][player]) + outfile.write('Enemy shuffle: %s\n' % self.metadata['enemy_shuffle'][player]) + outfile.write('Enemy health: %s\n' % self.metadata['enemy_health'][player]) + outfile.write('Enemy damage: %s\n' % self.metadata['enemy_damage'][player]) + outfile.write('Hints: %s\n' % ('Yes' if self.metadata['hints'][player] else 'No')) if self.entrances: outfile.write('\n\nEntrances:\n\n') - outfile.write('\n'.join(['%s%s %s %s' % ('Player {0}: '.format(entry['player']) if self.world.players >1 else '', entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) - outfile.write('\n\nMedallions\n') - if self.world.players == 1: - outfile.write('\nMisery Mire Medallion: %s' % (self.medallions['Misery Mire'])) - outfile.write('\nTurtle Rock Medallion: %s' % (self.medallions['Turtle Rock'])) - else: - for player in range(1, self.world.players + 1): - outfile.write('\nMisery Mire Medallion (Player %d): %s' % (player, self.medallions['Misery Mire (Player %d)' % player])) - outfile.write('\nTurtle Rock Medallion (Player %d): %s' % (player, self.medallions['Turtle Rock (Player %d)' % player])) - outfile.write('\n\nStarting Inventory:\n\n') - outfile.write('\n'.join(self.startinventory)) + outfile.write('\n'.join(['%s%s %s %s' % (f'{self.world.get_player_names(entry["player"])}: ' if self.world.players > 1 else '', entry['entrance'], '<=>' if entry['direction'] == 'both' else '<=' if entry['direction'] == 'exit' else '=>', entry['exit']) for entry in self.entrances.values()])) + outfile.write('\n\nMedallions:\n') + for dungeon, medallion in self.medallions.items(): + outfile.write(f'\n{dungeon}: {medallion}') + if self.startinventory: + outfile.write('\n\nStarting Inventory:\n\n') + outfile.write('\n'.join(self.startinventory)) outfile.write('\n\nLocations:\n\n') outfile.write('\n'.join(['%s: %s' % (location, item) for grouping in self.locations.values() for (location, item) in grouping.items()])) outfile.write('\n\nShops:\n\n') diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index eb643baa..6c854b9c 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -268,6 +268,7 @@ def parse_arguments(argv, no_defaults=False): parser.add_argument('--beemizer', default=defval(0), type=lambda value: min(max(int(value), 0), 4)) parser.add_argument('--multi', default=defval(1), type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--names', default=defval('')) + parser.add_argument('--teams', default=defval(1), type=lambda value: max(int(value), 1)) parser.add_argument('--outputpath') parser.add_argument('--race', default=defval(False), action='store_true') parser.add_argument('--outputname') diff --git a/Gui.py b/Gui.py index cac05534..38129832 100755 --- a/Gui.py +++ b/Gui.py @@ -15,7 +15,7 @@ from EntranceRandomizer import parse_arguments from GuiUtils import ToolTips, set_icon, BackgroundTaskProgress from Main import main, __version__ as ESVersion from Rom import Sprite -from Utils import is_bundled, local_path, output_path, open_file, parse_names_string +from Utils import is_bundled, local_path, output_path, open_file def guiMain(args=None): @@ -470,11 +470,7 @@ def guiMain(args=None): logging.exception(e) messagebox.showerror(title="Error while creating seed", message=str(e)) else: - msgtxt = "Rom patched successfully" - if guiargs.names: - for player, name in parse_names_string(guiargs.names).items(): - msgtxt += "\nPlayer %d => %s" % (player, name) - messagebox.showinfo(title="Success", message=msgtxt) + messagebox.showinfo(title="Success", message="Rom patched successfully") generateButton = Button(bottomFrame, text='Generate Patched Rom', command=generateRom) @@ -574,20 +570,11 @@ def guiMain(args=None): uwPalettesLabel2 = Label(uwPalettesFrame2, text='Dungeon palettes') uwPalettesLabel2.pack(side=LEFT) - namesFrame2 = Frame(drowDownFrame2) - namesLabel2 = Label(namesFrame2, text='Player names') - namesVar2 = StringVar() - namesEntry2 = Entry(namesFrame2, textvariable=namesVar2) - - namesLabel2.pack(side=LEFT) - namesEntry2.pack(side=LEFT) - heartbeepFrame2.pack(expand=True, anchor=E) heartcolorFrame2.pack(expand=True, anchor=E) fastMenuFrame2.pack(expand=True, anchor=E) owPalettesFrame2.pack(expand=True, anchor=E) uwPalettesFrame2.pack(expand=True, anchor=E) - namesFrame2.pack(expand=True, anchor=E) bottomFrame2 = Frame(topFrame2) @@ -603,18 +590,13 @@ def guiMain(args=None): guiargs.rom = romVar2.get() guiargs.baserom = romVar.get() guiargs.sprite = sprite - guiargs.names = namesEntry2.get() try: adjust(args=guiargs) except Exception as e: logging.exception(e) messagebox.showerror(title="Error while creating seed", message=str(e)) else: - msgtxt = "Rom patched successfully" - if guiargs.names: - for player, name in parse_names_string(guiargs.names).items(): - msgtxt += "\nPlayer %d => %s" % (player, name) - messagebox.showinfo(title="Success", message=msgtxt) + messagebox.showinfo(title="Success", message="Rom patched successfully") adjustButton = Button(bottomFrame2, text='Adjust Rom', command=adjustRom) diff --git a/Main.py b/Main.py index 1fb0f11b..166f966f 100644 --- a/Main.py +++ b/Main.py @@ -13,12 +13,12 @@ from Items import ItemFactory from Regions import create_regions, create_shops, mark_light_world_regions 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 +from Rom import patch_rom, patch_race_rom, patch_enemizer, apply_rom_settings, LocalRom, JsonRom, get_hash_string 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 Utils import output_path, parse_names_string +from Utils import output_path, parse_player_names __version__ = '0.6.3-pre' @@ -54,7 +54,16 @@ def main(args, seed=None): world.rom_seeds = {player: random.randint(0, 999999999) for player in range(1, world.players + 1)} - logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n\n', __version__, world.seed) + logger.info('ALttP Entrance Randomizer Version %s - Seed: %s\n', __version__, world.seed) + + parsed_names = parse_player_names(args.names, world.players, args.teams) + world.teams = len(parsed_names) + for i, team in enumerate(parsed_names, 1): + if world.players > 1: + logger.info('%s%s', 'Team%d: ' % i if world.teams > 1 else 'Players: ', ', '.join(team)) + for player, name in enumerate(team, 1): + world.player_names[player].append(name) + logger.info('') for player in range(1, world.players + 1): world.difficulty_requirements[player] = difficulties[world.difficulty[player]] @@ -133,60 +142,64 @@ def main(args, seed=None): logger.info('Patching ROM.') - player_names = parse_names_string(args.names) outfilebase = 'ER_%s' % (args.outputname if args.outputname else world.seed) rom_names = [] jsonout = {} if not args.suppress_rom: - for player in range(1, world.players + 1): - 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) + for team in range(world.teams): + for player in range(1, world.players + 1): + 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) - rom = JsonRom() if args.jsonout or use_enemizer else LocalRom(args.rom) + rom = JsonRom() if args.jsonout or use_enemizer else LocalRom(args.rom) - patch_rom(world, player, rom, use_enemizer) - rom_names.append((player, list(rom.name))) + patch_rom(world, rom, player, team, use_enemizer) - if use_enemizer and (args.enemizercli or not args.jsonout): - patch_enemizer(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) - if not args.jsonout: - patches = rom.patches - rom = LocalRom(args.rom) - rom.merge_enemizer_patches(patches) + if use_enemizer and (args.enemizercli or not args.jsonout): + patch_enemizer(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) + if not args.jsonout: + patches = rom.patches + rom = LocalRom(args.rom) + rom.merge_enemizer_patches(patches) - if args.race: - patch_race_rom(rom) + if args.race: + patch_race_rom(rom) - apply_rom_settings(rom, args.heartbeep[player], args.heartcolor[player], args.quickswap[player], args.fastmenu[player], args.disablemusic[player], args.sprite[player], args.ow_palettes[player], args.uw_palettes[player], player_names) + rom_names.append((player, team, list(rom.name))) + world.spoiler.hashes[(player, team)] = get_hash_string(rom.hash) - if args.jsonout: - jsonout[f'patch{player}'] = rom.patches - else: - mcsb_name = '' - if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): - mcsb_name = '-keysanity' - elif [world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]].count(True) == 1: - mcsb_name = '-mapshuffle' if world.mapshuffle[player] else '-compassshuffle' if world.compassshuffle[player] else '-keyshuffle' if world.keyshuffle[player] else '-bigkeyshuffle' - elif any([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): - mcsb_name = '-%s%s%s%sshuffle' % ( - 'M' if world.mapshuffle[player] else '', 'C' if world.compassshuffle[player] else '', - 'S' if world.keyshuffle[player] else '', 'B' if world.bigkeyshuffle[player] else '') + apply_rom_settings(rom, args.heartbeep[player], args.heartcolor[player], args.quickswap[player], args.fastmenu[player], args.disablemusic[player], args.sprite[player], args.ow_palettes[player], args.uw_palettes[player]) - playername = f"{f'_P{player}' if world.players > 1 else ''}{f'_{player_names[player]}' if player in player_names else ''}" - outfilesuffix = ('_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], - world.mode[player], world.goal[player], - "" if world.timer in ['none', 'display'] else "-" + world.timer, - world.shuffle[player], world.algorithm, mcsb_name, - "-retro" if world.retro[player] else "", - "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", - "-nohints" if not world.hints[player] else "")) if not args.outputname else '' - rom.write_to_file(output_path(f'{outfilebase}{playername}{outfilesuffix}.sfc')) + if args.jsonout: + jsonout[f'patch_t{team}_p{player}'] = rom.patches + else: + mcsb_name = '' + if all([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): + mcsb_name = '-keysanity' + elif [world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]].count(True) == 1: + mcsb_name = '-mapshuffle' if world.mapshuffle[player] else '-compassshuffle' if world.compassshuffle[player] else '-keyshuffle' if world.keyshuffle[player] else '-bigkeyshuffle' + elif any([world.mapshuffle[player], world.compassshuffle[player], world.keyshuffle[player], world.bigkeyshuffle[player]]): + mcsb_name = '-%s%s%s%sshuffle' % ( + 'M' if world.mapshuffle[player] else '', 'C' if world.compassshuffle[player] else '', + 'S' if world.keyshuffle[player] else '', 'B' if world.bigkeyshuffle[player] else '') - multidata = zlib.compress(json.dumps((world.players, - rom_names, + outfilepname = f'_T{team+1}' if world.teams > 1 else '' + if world.players > 1: + outfilepname += f'_P{player}' + outfilepname += f"_{world.player_names[player][team].replace(' ', '_')}" if world.player_names[player][team] != 'Player %d' % player else '' + outfilesuffix = ('_%s_%s-%s-%s-%s%s_%s-%s%s%s%s%s' % (world.logic[player], world.difficulty[player], world.difficulty_adjustments[player], + world.mode[player], world.goal[player], + "" if world.timer in ['none', 'display'] else "-" + world.timer, + world.shuffle[player], world.algorithm, mcsb_name, + "-retro" if world.retro[player] else "", + "-prog_" + world.progressive if world.progressive in ['off', 'random'] else "", + "-nohints" if not world.hints[player] else "")) if not args.outputname else '' + rom.write_to_file(output_path(f'{outfilebase}{outfilepname}{outfilesuffix}.sfc')) + + multidata = zlib.compress(json.dumps((parsed_names, rom_names, [((location.address, location.player), (location.item.code, location.item.player)) for location in world.get_filled_locations() if type(location.address) is int]) ).encode("utf-8")) if args.jsonout: @@ -215,6 +228,8 @@ def main(args, seed=None): def copy_world(world): # ToDo: Not good yet ret = World(world.players, world.shuffle, world.logic, world.mode, world.swords, world.difficulty, world.difficulty_adjustments, world.timer, world.progressive, world.goal, world.algorithm, world.accessibility, world.shuffle_ganon, world.retro, world.custom, world.customitemarray, world.hints) + ret.teams = world.teams + ret.player_names = copy.deepcopy(world.player_names) ret.required_medallions = world.required_medallions.copy() ret.swamp_patch_required = world.swamp_patch_required.copy() ret.ganon_at_pyramid = world.ganon_at_pyramid.copy() @@ -280,6 +295,7 @@ def copy_world(world): 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) + item.world = ret if location.event: ret.get_location(location.name, location.player).event = True if location.locked: @@ -289,9 +305,11 @@ def copy_world(world): for item in world.itempool: ret.itempool.append(Item(item.name, item.advancement, item.priority, item.type, player = item.player)) + for item in world.precollected_items: + ret.push_precollected(ItemFactory(item.name, item.player)) + # copy progress items in state ret.state.prog_items = world.state.prog_items.copy() - ret.precollected_items = world.precollected_items.copy() ret.state.stale = {player: True for player in range(1, world.players + 1)} for player in range(1, world.players + 1): diff --git a/MultiClient.py b/MultiClient.py index de8f3bd7..2768ed7e 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -2,7 +2,7 @@ import argparse import asyncio import json import logging -import re +import shlex import subprocess import sys import urllib.parse @@ -36,14 +36,13 @@ except ImportError: colorama = None class ReceivedItem: - def __init__(self, item, location, player_id, player_name): + def __init__(self, item, location, player): self.item = item self.location = location - self.player_id = player_id - self.player_name = player_name + self.player = player class Context: - def __init__(self, snes_address, server_address, password, name, team, slot): + def __init__(self, snes_address, server_address, password): self.snes_address = snes_address self.server_address = server_address @@ -65,15 +64,14 @@ class Context: self.socket = None self.password = password - self.name = name - self.team = team - self.slot = slot - + self.team = None + self.slot = None + self.player_names = {} self.locations_checked = set() self.items_received = [] - self.last_rom = None - self.expected_rom = None - self.rom_confirmed = False + self.awaiting_rom = False + self.rom = None + self.auth = None def color_code(*args): codes = {'reset': 0, 'bold': 1, 'underline': 4, 'black': 30, 'red': 31, 'green': 32, 'yellow': 33, 'blue': 34, @@ -418,9 +416,9 @@ async def snes_connect(ctx : Context, address): print("Error connecting to snes (%s)" % e) else: print(f"Error connecting to snes, attempt again in {RECONNECT_DELAY}s") - asyncio.create_task(snes_reconnect(ctx)) + asyncio.create_task(snes_autoreconnect(ctx)) -async def snes_reconnect(ctx: Context): +async def snes_autoreconnect(ctx: Context): await asyncio.sleep(RECONNECT_DELAY) if ctx.snes_reconnect_address and ctx.snes_socket is None: await snes_connect(ctx, ctx.snes_reconnect_address) @@ -443,12 +441,11 @@ async def snes_recv_loop(ctx : Context): ctx.snes_recv_queue = asyncio.Queue() ctx.hud_message_queue = [] - ctx.rom_confirmed = False - ctx.last_rom = None + ctx.rom = None if ctx.snes_reconnect_address: print(f"...reconnecting in {RECONNECT_DELAY}s") - asyncio.create_task(snes_reconnect(ctx)) + asyncio.create_task(snes_autoreconnect(ctx)) async def snes_read(ctx : Context, address, size): try: @@ -560,22 +557,26 @@ async def send_msgs(websocket, msgs): except websockets.ConnectionClosed: pass -async def server_loop(ctx : Context): +async def server_loop(ctx : Context, address = None): if ctx.socket is not None: print('Already connected') return - while not ctx.server_address: - print('Enter multiworld server address') - ctx.server_address = await console_input(ctx) + if address is None: + address = ctx.server_address - address = f"ws://{ctx.server_address}" if "://" not in ctx.server_address else ctx.server_address + while not address: + print('Enter multiworld server address') + address = await console_input(ctx) + + address = f"ws://{address}" if "://" not in address else address port = urllib.parse.urlparse(address).port or 38281 print('Connecting to multiworld server at %s' % address) try: ctx.socket = await websockets.connect(address, port=port, ping_timeout=None, ping_interval=None) print('Connected') + ctx.server_address = address async for data in ctx.socket: for msg in json.loads(data): @@ -591,15 +592,21 @@ async def server_loop(ctx : Context): if not isinstance(e, websockets.WebSocketException): logging.exception(e) finally: - ctx.name = None - ctx.team = None - ctx.slot = None - ctx.expected_rom = None - ctx.rom_confirmed = False + ctx.awaiting_rom = False + ctx.auth = None + ctx.items_received = [] socket, ctx.socket = ctx.socket, None if socket is not None and not socket.closed: await socket.close() ctx.server_task = None + if ctx.server_address: + print(f"... reconnecting in {RECONNECT_DELAY}s") + asyncio.create_task(server_autoreconnect(ctx)) + +async def server_autoreconnect(ctx: Context): + await asyncio.sleep(RECONNECT_DELAY) + if ctx.server_address and ctx.server_task is None: + ctx.server_task = asyncio.create_task(server_loop(ctx)) async def process_server_cmd(ctx : Context, cmd, args): if cmd == 'RoomInfo': @@ -608,53 +615,36 @@ async def process_server_cmd(ctx : Context, cmd, args): print('--------------------------------') if args['password']: print('Password required') - print('%d players seed' % args['slots']) if len(args['players']) < 1: print('No player connected') else: - args['players'].sort(key=lambda player: ('' if not player[1] else player[1].lower(), player[2])) + args['players'].sort(key=lambda _, t, s: (t, s)) current_team = 0 print('Connected players:') + print(' Team #1') for name, team, slot in args['players']: if team != current_team: - print(' Default team' if not team else ' Team: %s' % team) + print(' Team #d' % team + 1) current_team = team print(' %s (Player %d)' % (name, slot)) await server_auth(ctx, args['password']) if cmd == 'ConnectionRefused': - password_requested = False if 'InvalidPassword' in args: print('Invalid password') ctx.password = None - password_requested = True - if 'InvalidName' in args: - print('Invalid name') - ctx.name = None - if 'NameAlreadyTaken' in args: - print('Name already taken') - ctx.name = None - if 'InvalidTeam' in args: - print('Invalid team name') - ctx.team = None - if 'InvalidSlot' in args: - print('Invalid player slot') - ctx.slot = None + await server_auth(ctx, True) + if 'InvalidRom' in args: + raise Exception('Invalid ROM detected, please verify that you have loaded the correct rom and reconnect your snes') if 'SlotAlreadyTaken' in args: - print('Player slot already in use for that team') - ctx.team = None - ctx.slot = None - await server_auth(ctx, password_requested) + raise Exception('Player slot already in use for that team') + raise Exception('Connection refused by the multiworld host') if cmd == 'Connected': - ctx.expected_rom = args - if ctx.last_rom is not None: - if ctx.last_rom[:len(args)] == ctx.expected_rom: - rom_confirmed(ctx) - if ctx.locations_checked: - await send_msgs(ctx.socket, [['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]]) - else: - raise Exception('Different ROM expected from server') + ctx.team, ctx.slot = args[0] + ctx.player_names = {p: n for p, n in args[1]} + if ctx.locations_checked: + await send_msgs(ctx.socket, [['LocationChecks', [Regions.location_table[loc][0] for loc in ctx.locations_checked]]]) if cmd == 'ReceivedItems': start_index, items = args @@ -667,14 +657,14 @@ async def process_server_cmd(ctx : Context, cmd, args): await send_msgs(ctx.socket, sync_msg) if start_index == len(ctx.items_received): for item in items: - ctx.items_received.append(ReceivedItem(item[0], item[1], item[2], item[3])) + ctx.items_received.append(ReceivedItem(*item)) if cmd == 'ItemSent': - player_sent, player_recvd, item, location = args - item = color(get_item_name_from_id(item), 'cyan' if player_sent != ctx.name else 'green') - player_sent = color(player_sent, 'yellow' if player_sent != ctx.name else 'magenta') - player_recvd = color(player_recvd, 'yellow' if player_recvd != ctx.name else 'magenta') - print('(%s) %s sent %s to %s (%s)' % (ctx.team if ctx.team else 'Team', player_sent, item, player_recvd, get_location_name_from_address(location))) + player_sent, location, player_recvd, item = args + item = color(get_item_name_from_id(item), 'cyan' if player_sent != ctx.slot else 'green') + player_sent = color(ctx.player_names[player_sent], 'yellow' if player_sent != ctx.slot else 'magenta') + player_recvd = color(ctx.player_names[player_recvd], 'yellow' if player_recvd != ctx.slot else 'magenta') + print('%s sent %s to %s (%s)' % (player_sent, item, player_recvd, get_location_name_from_address(location))) if cmd == 'Print': print(args) @@ -683,23 +673,28 @@ async def server_auth(ctx : Context, password_requested): if password_requested and not ctx.password: print('Enter the password required to join this game:') ctx.password = await console_input(ctx) - while not ctx.name or not re.match(r'\w{1,10}', ctx.name): - print('Enter your name (10 characters):') - ctx.name = await console_input(ctx) - if not ctx.team: - print('Enter your team name (optional):') - ctx.team = await console_input(ctx) - if ctx.team == '': ctx.team = None - if not ctx.slot: - print('Choose your player slot (optional):') - slot = await console_input(ctx) - ctx.slot = int(slot) if slot.isdigit() else None - await send_msgs(ctx.socket, [['Connect', {'password': ctx.password, 'name': ctx.name, 'team': ctx.team, 'slot': ctx.slot}]]) + if ctx.rom is None: + ctx.awaiting_rom = True + print('No ROM detected, awaiting snes connection to authenticate to the multiworld server') + return + ctx.awaiting_rom = False + ctx.auth = ctx.rom.copy() + await send_msgs(ctx.socket, [['Connect', {'password': ctx.password, 'rom': ctx.auth}]]) async def console_input(ctx : Context): ctx.input_requests += 1 return await ctx.input_queue.get() +async def disconnect(ctx: Context): + if ctx.socket is not None and not ctx.socket.closed: + await ctx.socket.close() + if ctx.server_task is not None: + await ctx.server_task + +async def connect(ctx: Context, address=None): + await disconnect(ctx) + ctx.server_task = asyncio.create_task(server_loop(ctx, address)) + async def console_loop(ctx : Context): while not ctx.exit_event.is_set(): input = await aioconsole.ainput() @@ -709,7 +704,7 @@ async def console_loop(ctx : Context): ctx.input_queue.put_nowait(input) continue - command = input.split() + command = shlex.split(input) if not command: continue @@ -730,21 +725,12 @@ async def console_loop(ctx : Context): if ctx.snes_socket is not None and not ctx.snes_socket.closed: await ctx.snes_socket.close() - async def disconnect(): - if ctx.socket is not None and not ctx.socket.closed: - await ctx.socket.close() - if ctx.server_task is not None: - await ctx.server_task - async def connect(): - await disconnect() - ctx.server_task = asyncio.create_task(server_loop(ctx)) - if command[0] in ['/connect', '/reconnect']: - if len(command) > 1: - ctx.server_address = command[1] - asyncio.create_task(connect()) + ctx.server_address = None + asyncio.create_task(connect(ctx, command[1] if len(command) > 1 else None)) if command[0] == '/disconnect': - asyncio.create_task(disconnect()) + ctx.server_address = None + asyncio.create_task(disconnect(ctx)) if command[0][:1] != '/': asyncio.create_task(send_msgs(ctx.socket, [['Say', input]])) @@ -752,7 +738,7 @@ async def console_loop(ctx : Context): print('Received items:') for index, item in enumerate(ctx.items_received, 1): print('%s from %s (%s) (%d/%d in list)' % ( - color(get_item_name_from_id(item.item), 'red', 'bold'), color(item.player_name, 'yellow'), + color(get_item_name_from_id(item.item), 'red', 'bold'), color(ctx.player_names[item.player], 'yellow'), get_location_name_from_address(item.location), index, len(ctx.items_received))) if command[0] == '/missing': @@ -771,10 +757,6 @@ async def console_loop(ctx : Context): await snes_flush_writes(ctx) -def rom_confirmed(ctx : Context): - ctx.rom_confirmed = True - print('ROM hash Confirmed') - 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' @@ -851,20 +833,19 @@ async def game_watcher(ctx : Context): while not ctx.exit_event.is_set(): await asyncio.sleep(2) - if not ctx.rom_confirmed: + if not ctx.rom: rom = await snes_read(ctx, ROMNAME_START, ROMNAME_SIZE) if rom is None or rom == bytes([0] * ROMNAME_SIZE): continue - if list(rom) != ctx.last_rom: - ctx.last_rom = list(rom) - ctx.locations_checked = set() - if ctx.expected_rom is not None: - if ctx.last_rom[:len(ctx.expected_rom)] != ctx.expected_rom: - print("Wrong ROM detected") - await ctx.snes_socket.close() - continue - else: - rom_confirmed(ctx) + + ctx.rom = list(rom) + ctx.locations_checked = set() + if ctx.awaiting_rom: + await server_auth(ctx, False) + + if ctx.auth and ctx.auth != ctx.rom: + print("ROM change detected, please reconnect to the multiworld server") + await disconnect(ctx) gamemode = await snes_read(ctx, WRAM_START + 0x10, 1) if gamemode is None or gamemode[0] not in INGAME_MODES: @@ -887,12 +868,12 @@ async def game_watcher(ctx : Context): if recv_index < len(ctx.items_received) and recv_item == 0: item = ctx.items_received[recv_index] print('Received %s from %s (%s) (%d/%d in list)' % ( - color(get_item_name_from_id(item.item), 'red', 'bold'), color(item.player_name, 'yellow'), + color(get_item_name_from_id(item.item), 'red', 'bold'), color(ctx.player_names[item.player], 'yellow'), get_location_name_from_address(item.location), recv_index + 1, len(ctx.items_received))) recv_index += 1 snes_buffered_write(ctx, RECV_PROGRESS_ADDR, bytes([recv_index & 0xFF, (recv_index >> 8) & 0xFF])) snes_buffered_write(ctx, RECV_ITEM_ADDR, bytes([item.item])) - snes_buffered_write(ctx, RECV_ITEM_PLAYER_ADDR, bytes([item.player_id])) + snes_buffered_write(ctx, RECV_ITEM_PLAYER_ADDR, bytes([item.player])) await snes_flush_writes(ctx) @@ -901,12 +882,9 @@ async def main(): parser.add_argument('--snes', default='localhost:8080', help='Address of the QUsb2snes server.') parser.add_argument('--connect', default=None, help='Address of the multiworld host.') parser.add_argument('--password', default=None, help='Password of the multiworld host.') - parser.add_argument('--name', default=None) - parser.add_argument('--team', default=None) - parser.add_argument('--slot', default=None, type=int) args = parser.parse_args() - ctx = Context(args.snes, args.connect, args.password, args.name, args.team, args.slot) + ctx = Context(args.snes, args.connect, args.password) input_task = asyncio.create_task(console_loop(ctx)) @@ -919,6 +897,7 @@ async def main(): await ctx.exit_event.wait() + ctx.server_address = None ctx.snes_reconnect_address = None await watcher_task diff --git a/MultiServer.py b/MultiServer.py index d64524fa..a143bbde 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -5,6 +5,7 @@ import functools import json import logging import re +import shlex import urllib.request import websockets import zlib @@ -27,7 +28,7 @@ class Context: self.data_filename = None self.save_filename = None self.disable_save = False - self.players = 0 + self.player_names = {} self.rom_names = {} self.locations = {} self.host = host @@ -41,16 +42,9 @@ class Context: def get_room_info(ctx : Context): return { 'password': ctx.password is not None, - 'slots': ctx.players, 'players': [(client.name, client.team, client.slot) for client in ctx.clients if client.auth] } -def same_name(lhs, rhs): - return lhs.lower() == rhs.lower() - -def same_team(lhs, rhs): - return (type(lhs) is type(rhs)) and ((not lhs and not rhs) or (lhs.lower() == rhs.lower())) - async def send_msgs(websocket, msgs): if not websocket or not websocket.open or websocket.closed: return @@ -66,21 +60,21 @@ def broadcast_all(ctx : Context, msgs): def broadcast_team(ctx : Context, team, msgs): for client in ctx.clients: - if client.auth and same_team(client.team, team): + if client.auth and client.team == team: asyncio.create_task(send_msgs(client.socket, msgs)) def notify_all(ctx : Context, text): print("Notice (all): %s" % text) broadcast_all(ctx, [['Print', text]]) -def notify_team(ctx : Context, team : str, text : str): - print("Team notice (%s): %s" % ("Default" if not team else team, text)) +def notify_team(ctx : Context, team : int, text : str): + print("Notice (Team #%d): %s" % (team+1, text)) broadcast_team(ctx, team, [['Print', text]]) def notify_client(client : Client, text : str): if not client.auth: return - print("Player notice (%s): %s" % (client.name, text)) + print("Notice (Player %s in team %d): %s" % (client.name, client.team+1, text)) asyncio.create_task(send_msgs(client.socket, [['Print', text]])) async def server(websocket, path, ctx : Context): @@ -113,10 +107,10 @@ async def on_client_disconnected(ctx : Context, client : Client): await on_client_left(ctx, client) async def on_client_joined(ctx : Context, client : Client): - notify_all(ctx, "%s has joined the game as player %d for %s" % (client.name, client.slot, "the default team" if not client.team else "team %s" % client.team)) + notify_all(ctx, "%s (Team #%d) has joined the game" % (client.name, client.team + 1)) async def on_client_left(ctx : Context, client : Client): - notify_all(ctx, "%s (Player %d, %s) has left the game" % (client.name, client.slot, "Default team" if not client.team else "Team %s" % client.team)) + notify_all(ctx, "%s (Team #%d) has left the game" % (client.name, client.team + 1)) async def countdown(ctx : Context, timer): notify_all(ctx, f'[Server]: Starting countdown of {timer}s') @@ -136,37 +130,21 @@ def get_connected_players_string(ctx : Context): if not auth_clients: return 'No player connected' - auth_clients.sort(key=lambda c: ('' if not c.team else c.team.lower(), c.slot)) + auth_clients.sort(key=lambda c: (c.team, c.slot)) current_team = 0 - text = '' + text = 'Team #1: ' for c in auth_clients: if c.team != current_team: - text += '::' + ('default team' if not c.team else c.team) + ':: ' + text += f':: Team #{c.team + 1}: ' current_team = c.team - text += '%d:%s ' % (c.slot, c.name) + text += f'{c.name} ' return 'Connected players: ' + text[:-1] -def get_player_name_in_team(ctx : Context, team, slot): - for client in ctx.clients: - if client.auth and same_team(team, client.team) and client.slot == slot: - return client.name - return "Player %d" % slot - -def get_client_from_name(ctx : Context, name): - for client in ctx.clients: - if client.auth and same_name(name, client.name): - return client - return None - def get_received_items(ctx : Context, team, player): - for (c_team, c_id), items in ctx.received_items.items(): - if c_id == player and same_team(c_team, team): - return items - ctx.received_items[(team, player)] = [] - return ctx.received_items[(team, player)] + return ctx.received_items.setdefault((team, player), []) def tuplize_received_items(items): - return [(item.item, item.location, item.player_id, item.player_name) for item in items] + return [(item.item, item.location, item.player) for item in items] def send_new_items(ctx : Context): for client in ctx.clients: @@ -177,12 +155,12 @@ def send_new_items(ctx : Context): asyncio.create_task(send_msgs(client.socket, [['ReceivedItems', (client.send_index, tuplize_received_items(items)[client.send_index:])]])) client.send_index = len(items) -def forfeit_player(ctx : Context, team, slot, name): +def forfeit_player(ctx : Context, team, slot): all_locations = [values[0] for values in Regions.location_table.values() if type(values[0]) is int] - notify_all(ctx, "%s (Player %d) in team %s has forfeited" % (name, slot, team if team else 'default')) - register_location_checks(ctx, name, team, slot, all_locations) + notify_all(ctx, "%s (Team #%d) has forfeited" % (ctx.player_names[(team, slot)], team + 1)) + register_location_checks(ctx, team, slot, all_locations) -def register_location_checks(ctx : Context, name, team, slot, locations): +def register_location_checks(ctx : Context, team, slot, locations): found_items = False for location in locations: if (location, slot) in ctx.locations: @@ -191,23 +169,21 @@ def register_location_checks(ctx : Context, name, team, slot, locations): found = False recvd_items = get_received_items(ctx, team, target_player) for recvd_item in recvd_items: - if recvd_item.location == location and recvd_item.player_id == slot: + if recvd_item.location == location and recvd_item.player == slot: found = True break if not found: - new_item = ReceivedItem(target_item, location, slot, name) + new_item = ReceivedItem(target_item, location, slot) recvd_items.append(new_item) - target_player_name = get_player_name_in_team(ctx, team, target_player) - broadcast_team(ctx, team, [['ItemSent', (name, target_player_name, target_item, location)]]) - print('(%s) %s sent %s to %s (%s)' % (team if team else 'Team', name, get_item_name_from_id(target_item), target_player_name, get_location_name_from_address(location))) + broadcast_team(ctx, team, [['ItemSent', (slot, location, target_player, target_item)]]) + print('(Team #%d) %s sent %s to %s (%s)' % (team, ctx.player_names[(team, slot)], get_item_name_from_id(target_item), ctx.player_names[(team, target_player)], get_location_name_from_address(location))) found_items = True send_new_items(ctx) if found_items and not ctx.disable_save: try: with open(ctx.save_filename, "wb") as f: - jsonstr = json.dumps((ctx.players, - [(k, v) for k, v in ctx.rom_names.items()], + jsonstr = json.dumps((list(ctx.rom_names.items()), [(k, [i.__dict__ for i in v]) for k, v in ctx.received_items.items()])) f.write(zlib.compress(jsonstr.encode("utf-8"))) except Exception as e: @@ -221,50 +197,30 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): if cmd == 'Connect': if not args or type(args) is not dict or \ 'password' not in args or type(args['password']) not in [str, type(None)] or \ - 'name' not in args or type(args['name']) is not str or \ - 'team' not in args or type(args['team']) not in [str, type(None)] or \ - 'slot' not in args or type(args['slot']) not in [int, type(None)]: + 'rom' not in args or type(args['rom']) is not list: await send_msgs(client.socket, [['InvalidArguments', 'Connect']]) return errors = set() - if ctx.password is not None and ('password' not in args or args['password'] != ctx.password): + if ctx.password is not None and args['password'] != ctx.password: errors.add('InvalidPassword') - if 'name' not in args or not args['name'] or not re.match(r'\w{1,10}', args['name']): - errors.add('InvalidName') - elif any([same_name(c.name, args['name']) for c in ctx.clients if c.auth]): - errors.add('NameAlreadyTaken') + if tuple(args['rom']) not in ctx.rom_names: + errors.add('InvalidRom') else: - client.name = args['name'] - - if 'team' in args and args['team'] is not None and not re.match(r'\w{1,15}', args['team']): - errors.add('InvalidTeam') - else: - client.team = args['team'] if 'team' in args else None - - if 'slot' in args and any([c.slot == args['slot'] for c in ctx.clients if c.auth and same_team(c.team, client.team)]): - errors.add('SlotAlreadyTaken') - elif 'slot' not in args or not args['slot']: - for slot in range(1, ctx.players + 1): - if slot not in [c.slot for c in ctx.clients if c.auth and same_team(c.team, client.team)]: - client.slot = slot - break - elif slot == ctx.players: - errors.add('SlotAlreadyTaken') - elif args['slot'] not in range(1, ctx.players + 1): - errors.add('InvalidSlot') - else: - client.slot = args['slot'] + team, slot = ctx.rom_names[tuple(args['rom'])] + if any([c.slot == slot and c.team == team for c in ctx.clients if c.auth]): + errors.add('SlotAlreadyTaken') + else: + client.name = ctx.player_names[(team, slot)] + client.team = team + client.slot = slot if errors: - client.name = None - client.team = None - client.slot = None await send_msgs(client.socket, [['ConnectionRefused', list(errors)]]) else: client.auth = True - reply = [['Connected', ctx.rom_names[client.slot]]] + reply = [['Connected', [(client.team, client.slot), [(p, n) for (t, p), n in ctx.player_names.items() if t == client.team]]]] items = get_received_items(ctx, client.team, client.slot) if items: reply.append(['ReceivedItems', (0, tuplize_received_items(items))]) @@ -285,7 +241,7 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): if type(args) is not list: await send_msgs(client.socket, [['InvalidArguments', 'LocationChecks']]) return - register_location_checks(ctx, client.name, client.team, client.slot, args) + register_location_checks(ctx, client.team, client.slot, args) if cmd == 'Say': if type(args) is not str or not args.isprintable(): @@ -297,7 +253,7 @@ async def process_client_cmd(ctx : Context, client : Client, cmd, args): if args.startswith('!players'): notify_all(ctx, get_connected_players_string(ctx)) if args.startswith('!forfeit'): - forfeit_player(ctx, client.team, client.slot, client.name) + forfeit_player(ctx, client.team, client.slot) if args.startswith('!countdown'): try: timer = int(args.split()[1]) @@ -313,7 +269,7 @@ async def console(ctx : Context): while True: input = await aioconsole.ainput() - command = input.split() + command = shlex.split(input) if not command: continue @@ -326,27 +282,34 @@ async def console(ctx : Context): if command[0] == '/password': set_password(ctx, command[1] if len(command) > 1 else None) if command[0] == '/kick' and len(command) > 1: - client = get_client_from_name(ctx, command[1]) - if client and client.socket and not client.socket.closed: - await client.socket.close() + team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None + for client in ctx.clients: + if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): + if client.socket and not client.socket.closed: + await client.socket.close() - if command[0] == '/forfeitslot' and len(command) == 3 and command[2].isdigit(): - team = command[1] if command[1] != 'default' else None - slot = int(command[2]) - name = get_player_name_in_team(ctx, team, slot) - forfeit_player(ctx, team, slot, name) + if command[0] == '/forfeitslot' and len(command) > 1 and command[1].isdigit(): + if len(command) > 2 and command[2].isdigit(): + team = int(command[1]) - 1 + slot = int(command[2]) + else: + team = 0 + slot = int(command[1]) + forfeit_player(ctx, team, slot) if command[0] == '/forfeitplayer' and len(command) > 1: - client = get_client_from_name(ctx, command[1]) - if client: - forfeit_player(ctx, client.team, client.slot, client.name) + team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None + for client in ctx.clients: + if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): + if client.socket and not client.socket.closed: + forfeit_player(ctx, client.team, client.slot) if command[0] == '/senditem' and len(command) > 2: [(player, item)] = re.findall(r'\S* (\S*) (.*)', input) if item in Items.item_table: - client = get_client_from_name(ctx, player) - if client: - new_item = ReceivedItem(Items.item_table[item][3], "cheat console", 0, "server") - get_received_items(ctx, client.team, client.slot).append(new_item) - notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) + for client in ctx.clients: + if client.auth and client.name.lower() == player.lower(): + new_item = ReceivedItem(Items.item_table[item][3], "cheat console", client.slot) + get_received_items(ctx, client.team, client.slot).append(new_item) + notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) send_new_items(ctx) else: print("Unknown item: " + item) @@ -378,15 +341,17 @@ async def main(): with open(ctx.data_filename, 'rb') as f: jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) - ctx.players = jsonobj[0] - ctx.rom_names = {k: v for k, v in jsonobj[1]} + for team, names in enumerate(jsonobj[0]): + for player, name in enumerate(names, 1): + ctx.player_names[(team, player)] = name + ctx.rom_names = {tuple(rom): (team, slot) for slot, team, rom in jsonobj[1]} ctx.locations = {tuple(k): tuple(v) for k, v in jsonobj[2]} except Exception as e: print('Failed to read multiworld data (%s)' % e) return ip = urllib.request.urlopen('https://v4.ident.me').read().decode('utf8') if not ctx.host else ctx.host - print('Hosting game of %d players (%s) at %s:%d' % (ctx.players, 'No password' if not ctx.password else 'Password: %s' % ctx.password, ip, ctx.port)) + print('Hosting game at %s:%d (%s)' % (ip, ctx.port, 'No password' if not ctx.password else 'Password: %s' % ctx.password)) ctx.disable_save = args.disable_save if not ctx.disable_save: @@ -395,10 +360,9 @@ async def main(): try: with open(ctx.save_filename, 'rb') as f: jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) - players = jsonobj[0] - rom_names = {k: v for k, v in jsonobj[1]} - received_items = {tuple(k): [ReceivedItem(**i) for i in v] for k, v in jsonobj[2]} - if players != ctx.players or rom_names != ctx.rom_names: + rom_names = jsonobj[0] + received_items = {tuple(k): [ReceivedItem(**i) for i in v] for k, v in jsonobj[1]} + if not all([ctx.rom_names[tuple(rom)] == (team, slot) for rom, (team, slot) in rom_names]): raise Exception('Save file mismatch, will start a new game') ctx.received_items = received_items print('Loaded save file with %d received items for %d players' % (sum([len(p) for p in received_items.values()]), len(received_items))) diff --git a/Mystery.py b/Mystery.py index 0c5c848c..f80eb316 100644 --- a/Mystery.py +++ b/Mystery.py @@ -39,6 +39,7 @@ def main(): parser.add_argument('--seed', help='Define seed number to generate.', type=int) parser.add_argument('--multi', default=1, type=lambda value: min(max(int(value), 1), 255)) parser.add_argument('--names', default='') + parser.add_argument('--teams', default=1, type=lambda value: max(int(value), 1)) parser.add_argument('--create_spoiler', action='store_true') parser.add_argument('--rom') parser.add_argument('--enemizercli') diff --git a/Plando.py b/Plando.py index 46af99c3..5b66876e 100755 --- a/Plando.py +++ b/Plando.py @@ -24,6 +24,7 @@ def main(args): # initialize the world world = World(1, 'vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, False, False, False, None, False) + world.player_names[1].append("Player 1") logger = logging.getLogger('') hasher = hashlib.md5() @@ -69,7 +70,7 @@ def main(args): logger.info('Patching ROM.') rom = LocalRom(args.rom) - patch_rom(world, 1, rom, False) + patch_rom(world, rom, 1, 1, False) apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, args.sprite, args.ow_palettes, args.uw_palettes) diff --git a/Rom.py b/Rom.py index 7ad87f63..21c52125 100644 --- a/Rom.py +++ b/Rom.py @@ -27,6 +27,7 @@ class JsonRom(object): def __init__(self): self.name = None + self.hash = None self.orig_buffer = None self.patches = {} self.addresses = [] @@ -72,6 +73,7 @@ class LocalRom(object): def __init__(self, file, patch=True): self.name = None + self.hash = None self.orig_buffer = None with open(file, 'rb') as stream: self.buffer = read_rom(stream) @@ -469,7 +471,7 @@ class Sprite(object): # split into palettes of 15 colors return array_chunk(palette_as_colors, 15) -def patch_rom(world, player, rom, enemized): +def patch_rom(world, rom, player, team, enemized): random.seed(world.rom_seeds[player]) # progressive bow silver arrow hint hack @@ -1222,13 +1224,18 @@ def patch_rom(world, player, rom, enemized): rom.write_byte(0xFED31, 0x2A) # preopen bombable exit rom.write_byte(0xFEE41, 0x2A) # preopen bombable exit - write_strings(rom, world, player) + write_strings(rom, world, player, team) # set rom name # 21 bytes from Main import __version__ - rom.name = bytearray('ER{0}_{1}_{2:09}\0'.format(__version__.split('-')[0].replace('.','')[0:3], player, world.seed), 'utf8') - rom.write_bytes(0x7FC0, rom.name[0:21]) + rom.name = bytearray(f'ER{__version__.split("-")[0].replace(".","")[0:3]}_{team+1}_{player}_{world.seed:09}\0', 'utf8')[:21] + rom.name.extend([0] * (21 - len(rom.name))) + rom.write_bytes(0x7FC0, rom.name) + + # set player names + for p in range(1, min(world.players, 64) + 1): + rom.write_bytes(0x186380 + ((p - 1) * 32), hud_format_text(world.player_names[p][team])) # Write title screen Code hashint = int(rom.get_hash(), 16) @@ -1240,6 +1247,7 @@ def patch_rom(world, player, rom, enemized): hashint & 0x1F, ] rom.write_bytes(0x180215, code) + rom.hash = code return rom @@ -1303,7 +1311,7 @@ def hud_format_text(text): return output[:32] -def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite, ow_palettes, uw_palettes, names = None): +def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite, ow_palettes, uw_palettes): if sprite and not isinstance(sprite, Sprite): sprite = Sprite(sprite) if os.path.isfile(sprite) else get_sprite_from_name(sprite) @@ -1372,11 +1380,6 @@ def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, spr elif uw_palettes == 'blackout': blackout_uw_palettes(rom) - # set player names - for player, name in names.items(): - if 0 < player <= 64: - rom.write_bytes(0x186380 + ((player - 1) * 32), hud_format_text(name)) - if isinstance(rom, LocalRom): rom.write_crc() @@ -1513,12 +1516,15 @@ def blackout_uw_palettes(rom): rom.write_bytes(i+44, [0] * 76) rom.write_bytes(i+136, [0] * 44) +def get_hash_string(hash): + return ", ".join([hash_alphabet[code & 0x1F] for code in hash]) + def write_string_to_rom(rom, target, string): address, maxbytes = text_addresses[target] rom.write_bytes(address, MultiByteTextMapper.convert(string, maxbytes)) -def write_strings(rom, world, player): +def write_strings(rom, world, player, team): tt = TextTable() tt.removeUnwantedText() @@ -1536,11 +1542,11 @@ def write_strings(rom, world, player): hint = dest.hint_text if dest.hint_text else "something" if dest.player != player: if ped_hint: - hint += " for p%d!" % dest.player + hint += f" for {world.player_names[dest.player][team]}!" elif type(dest) in [Region, Location]: - hint += " in p%d's world" % dest.player + hint += f" in {world.player_names[dest.player][team]}'s world" else: - hint += " for p%d" % dest.player + hint += f" for {world.player_names[dest.player][team]}" return hint # For hints, first we write hints about entrances, some from the inconvenient list others from all reasonable entrances. @@ -2281,3 +2287,9 @@ BigKeys = ['Big Key (Eastern Palace)', 'Big Key (Turtle Rock)', 'Big Key (Ganons Tower)' ] + +hash_alphabet = [ + "Bow", "Boomerang", "Hookshot", "Bomb", "Mushroom", "Powder", "Rod", "Pendant", "Bombos", "Ether", "Quake", + "Lamp", "Hammer", "Shovel", "Ocarina", "Bug Net", "Book", "Bottle", "Potion", "Cane", "Cape", "Mirror", "Boots", + "Gloves", "Flippers", "Pearl", "Shield", "Tunic", "Heart", "Map", "Compass", "Key" +] diff --git a/Utils.py b/Utils.py index 243066b9..bbd62935 100644 --- a/Utils.py +++ b/Utils.py @@ -3,9 +3,6 @@ import re import subprocess import sys -def parse_names_string(names): - return {player: name for player, name in enumerate([n for n in re.split(r'[, ]', names) if n], 1)} - def int16_as_bytes(value): value = value & 0xFFFF return [value & 0xFF, (value >> 8) & 0xFF] @@ -20,6 +17,18 @@ def pc_to_snes(value): def snes_to_pc(value): return ((value & 0x7F0000)>>1)|(value & 0x7FFF) +def parse_player_names(names, players, teams): + names = [n for n in re.split(r'[, ]', names) if n] + ret = [] + while names or len(ret) < teams: + team = [n[:16] for n in names[:players]] + while len(team) != players: + team.append(f"Player {len(team) + 1}") + ret.append(team) + + names = names[players:] + return ret + def is_bundled(): return getattr(sys, 'frozen', False) From 71cd0b917ca9c9d2a25032f8e4ba9a85edbc8361 Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Tue, 14 Jan 2020 22:13:37 +0100 Subject: [PATCH 181/185] Rom: fix enemizer patching --- Main.py | 4 +--- Rom.py | 25 ++++++++++++++----------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/Main.py b/Main.py index 166f966f..a7929769 100644 --- a/Main.py +++ b/Main.py @@ -161,9 +161,7 @@ def main(args, seed=None): if use_enemizer and (args.enemizercli or not args.jsonout): patch_enemizer(world, player, rom, args.rom, args.enemizercli, args.shufflepots[player], sprite_random_on_hit) if not args.jsonout: - patches = rom.patches - rom = LocalRom(args.rom) - rom.merge_enemizer_patches(patches) + rom = LocalRom.fromJsonRom(rom, args.rom, 0x400000) if args.race: patch_race_rom(rom) diff --git a/Rom.py b/Rom.py index 21c52125..a44696c5 100644 --- a/Rom.py +++ b/Rom.py @@ -25,9 +25,9 @@ JAP10HASH = '03a63945398191337e896e5771f77173' class JsonRom(object): - def __init__(self): - self.name = None - self.hash = None + def __init__(self, name=None, hash=None): + self.name = name + self.hash = hash self.orig_buffer = None self.patches = {} self.addresses = [] @@ -71,9 +71,9 @@ class JsonRom(object): class LocalRom(object): - def __init__(self, file, patch=True): - self.name = None - self.hash = None + def __init__(self, file, patch=True, name=None, hash=None): + self.name = name + self.hash = hash self.orig_buffer = None with open(file, 'rb') as stream: self.buffer = read_rom(stream) @@ -92,6 +92,14 @@ class LocalRom(object): with open(file, 'wb') as outfile: outfile.write(self.buffer) + @staticmethod + def fromJsonRom(rom, file, rom_size = 0x200000): + ret = LocalRom(file, True, rom.name, rom.hash) + ret.buffer.extend(bytearray([0x00] * (rom_size - len(ret.buffer)))) + for address, values in rom.patches.items(): + ret.write_bytes(int(address), values) + return ret + def patch_base_rom(self): # verify correct checksum of baserom basemd5 = hashlib.md5() @@ -116,11 +124,6 @@ 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 merge_enemizer_patches(self, patches): - self.buffer.extend(bytearray([0x00] * (0x400000 - len(self.buffer)))) - for address, values in patches.items(): - self.write_bytes(int(address), values) - def write_crc(self): crc = (sum(self.buffer[:0x7FDC] + self.buffer[0x7FE0:]) + 0x01FE) & 0xFFFF inv = crc ^ 0xFFFF From 5d217511fe61bc98552ec103d8020699d35bb80d Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 15 Jan 2020 00:34:12 +0100 Subject: [PATCH 182/185] merge HintedMultiServer into MultiServer --- HintedMultiServer.py | 430 ------------------------------------------- MultiServer.py | 110 ++++++----- 2 files changed, 66 insertions(+), 474 deletions(-) delete mode 100644 HintedMultiServer.py diff --git a/HintedMultiServer.py b/HintedMultiServer.py deleted file mode 100644 index 150fc530..00000000 --- a/HintedMultiServer.py +++ /dev/null @@ -1,430 +0,0 @@ -import aioconsole -import argparse -import asyncio -import functools -import json -import logging -import re -import urllib.request -import websockets -import zlib -import datetime - -import Items -import Regions -from MultiClient import ReceivedItem, get_item_name_from_id, get_location_name_from_address - -class Client: - def __init__(self, socket): - self.socket = socket - self.auth = False - self.name = None - self.team = None - self.slot = None - self.send_index = 0 - self.hints_used = 0 - -class Context: - def __init__(self, host, port, password): - self.data_filename = None - self.save_filename = None - self.disable_save = False - self.players = 0 - self.rom_names = {} - self.locations = {} - self.host = host - self.port = port - self.password = password - self.server = None - self.clients = [] - self.received_items = {} - self.starttime = datetime.datetime.now() - -def get_room_info(ctx : Context): - return { - 'password': ctx.password is not None, - 'slots': ctx.players, - 'players': [(client.name, client.team, client.slot) for client in ctx.clients if client.auth] - } - -def same_name(lhs, rhs): - return lhs.lower() == rhs.lower() - -def same_team(lhs, rhs): - return (type(lhs) is type(rhs)) and ((not lhs and not rhs) or (lhs.lower() == rhs.lower())) - -async def send_msgs(websocket, msgs): - if not websocket or not websocket.open or websocket.closed: - return - try: - await websocket.send(json.dumps(msgs)) - except websockets.ConnectionClosed: - pass - -def broadcast_all(ctx : Context, msgs): - for client in ctx.clients: - if client.auth: - asyncio.create_task(send_msgs(client.socket, msgs)) - -def broadcast_team(ctx : Context, team, msgs): - for client in ctx.clients: - if client.auth and same_team(client.team, team): - asyncio.create_task(send_msgs(client.socket, msgs)) - -def notify_all(ctx : Context, text): - print("Notice (all): %s" % text) - broadcast_all(ctx, [['Print', text]]) - -def notify_team(ctx : Context, team : str, text : str): - print("Team notice (%s): %s" % ("Default" if not team else team, text)) - broadcast_team(ctx, team, [['Print', text]]) - -def notify_client(client : Client, text : str): - if not client.auth: - return - print("Player notice (%s): %s" % (client.name, text)) - asyncio.create_task(send_msgs(client.socket, [['Print', text]])) - -async def server(websocket, path, ctx : Context): - client = Client(websocket) - ctx.clients.append(client) - - try: - await on_client_connected(ctx, client) - async for data in websocket: - for msg in json.loads(data): - if len(msg) == 1: - cmd = msg - args = None - else: - cmd = msg[0] - args = msg[1] - await process_client_cmd(ctx, client, cmd, args) - except Exception as e: - if not isinstance(e, websockets.WebSocketException): - logging.exception(e) - finally: - await on_client_disconnected(ctx, client) - ctx.clients.remove(client) - -async def on_client_connected(ctx : Context, client : Client): - await send_msgs(client.socket, [['RoomInfo', get_room_info(ctx)]]) - -async def on_client_disconnected(ctx : Context, client : Client): - if client.auth: - await on_client_left(ctx, client) - -async def on_client_joined(ctx : Context, client : Client): - notify_all(ctx, "%s has joined the game as player %d for %s" % (client.name, client.slot, "the default team" if not client.team else "team %s" % client.team)) - -async def on_client_left(ctx : Context, client : Client): - notify_all(ctx, "%s (Player %d, %s) has left the game" % (client.name, client.slot, "Default team" if not client.team else "Team %s" % client.team)) - -def get_connected_players_string(ctx : Context): - auth_clients = [c for c in ctx.clients if c.auth] - if not auth_clients: - return 'No player connected' - - auth_clients.sort(key=lambda c: ('' if not c.team else c.team.lower(), c.slot)) - current_team = 0 - text = '' - for c in auth_clients: - if c.team != current_team: - text += '::' + ('default team' if not c.team else c.team) + ':: ' - current_team = c.team - text += '%d:%s ' % (c.slot, c.name) - return 'Connected players: ' + text[:-1] - -def get_player_name_in_team(ctx : Context, team, slot): - for client in ctx.clients: - if client.auth and same_team(team, client.team) and client.slot == slot: - return client.name - return "Player %d" % slot - -def get_client_from_name(ctx : Context, name): - for client in ctx.clients: - if client.auth and same_name(name, client.name): - return client - return None - -def get_received_items(ctx : Context, team, player): - for (c_team, c_id), items in ctx.received_items.items(): - if c_id == player and same_team(c_team, team): - return items - ctx.received_items[(team, player)] = [] - return ctx.received_items[(team, player)] - -def tuplize_received_items(items): - return [(item.item, item.location, item.player_id, item.player_name) for item in items] - -def send_new_items(ctx : Context): - for client in ctx.clients: - if not client.auth: - continue - items = get_received_items(ctx, client.team, client.slot) - if len(items) > client.send_index: - asyncio.create_task(send_msgs(client.socket, [['ReceivedItems', (client.send_index, tuplize_received_items(items)[client.send_index:])]])) - client.send_index = len(items) - -def forfeit_player(ctx : Context, team, slot, name): - all_locations = [values[0] for values in Regions.location_table.values() if type(values[0]) is int] - notify_all(ctx, "%s (Player %d) in team %s has forfeited" % (name, slot, team if team else 'default')) - register_location_checks(ctx, name, team, slot, all_locations) - -def register_location_checks(ctx : Context, name, team, slot, locations): - found_items = False - for location in locations: - if (location, slot) in ctx.locations: - target_item, target_player = ctx.locations[(location, slot)] - if target_player != slot: - found = False - recvd_items = get_received_items(ctx, team, target_player) - for recvd_item in recvd_items: - if recvd_item.location == location and recvd_item.player_id == slot: - found = True - break - if not found: - new_item = ReceivedItem(target_item, location, slot, name) - recvd_items.append(new_item) - target_player_name = get_player_name_in_team(ctx, team, target_player) - broadcast_team(ctx, team, [['ItemSent', (name, target_player_name, target_item, location)]]) - print('(%s) %s sent %s to %s (%s)' % (team if team else 'Team', name, get_item_name_from_id(target_item), target_player_name, get_location_name_from_address(location))) - found_items = True - send_new_items(ctx) - - if found_items and not ctx.disable_save: - try: - with open(ctx.save_filename, "wb") as f: - jsonstr = json.dumps((ctx.players, - [(k, v) for k, v in ctx.rom_names.items()], - [(k, [i.__dict__ for i in v]) for k, v in ctx.received_items.items()])) - f.write(zlib.compress(jsonstr.encode("utf-8"))) - except Exception as e: - logging.exception(e) - -async def process_client_cmd(ctx : Context, client : Client, cmd, args): - if type(cmd) is not str: - await send_msgs(client.socket, [['InvalidCmd']]) - return - - if cmd == 'Connect': - if not args or type(args) is not dict or \ - 'password' not in args or type(args['password']) not in [str, type(None)] or \ - 'name' not in args or type(args['name']) is not str or \ - 'team' not in args or type(args['team']) not in [str, type(None)] or \ - 'slot' not in args or type(args['slot']) not in [int, type(None)]: - await send_msgs(client.socket, [['InvalidArguments', 'Connect']]) - return - - errors = set() - if ctx.password is not None and ('password' not in args or args['password'] != ctx.password): - errors.add('InvalidPassword') - - if 'name' not in args or not args['name'] or not re.match(r'\w{1,10}', args['name']): - errors.add('InvalidName') - elif any([same_name(c.name, args['name']) for c in ctx.clients if c.auth]): - errors.add('NameAlreadyTaken') - else: - client.name = args['name'] - - if 'team' in args and args['team'] is not None and not re.match(r'\w{1,15}', args['team']): - errors.add('InvalidTeam') - else: - client.team = args['team'] if 'team' in args else None - - if 'slot' in args and any([c.slot == args['slot'] for c in ctx.clients if c.auth and same_team(c.team, client.team)]): - errors.add('SlotAlreadyTaken') - elif 'slot' not in args or not args['slot']: - for slot in range(1, ctx.players + 1): - if slot not in [c.slot for c in ctx.clients if c.auth and same_team(c.team, client.team)]: - client.slot = slot - break - elif slot == ctx.players: - errors.add('SlotAlreadyTaken') - elif args['slot'] not in range(1, ctx.players + 1): - errors.add('InvalidSlot') - else: - client.slot = args['slot'] - - if errors: - client.name = None - client.team = None - client.slot = None - await send_msgs(client.socket, [['ConnectionRefused', list(errors)]]) - else: - client.auth = True - reply = [['Connected', ctx.rom_names[client.slot]]] - items = get_received_items(ctx, client.team, client.slot) - if items: - reply.append(['ReceivedItems', (0, tuplize_received_items(items))]) - client.send_index = len(items) - await send_msgs(client.socket, reply) - await on_client_joined(ctx, client) - - if not client.auth: - return - - if cmd == 'Sync': - items = get_received_items(ctx, client.team, client.slot) - if items: - client.send_index = len(items) - await send_msgs(client.socket, ['ReceivedItems', (0, tuplize_received_items(items))]) - - if cmd == 'LocationChecks': - if type(args) is not list: - await send_msgs(client.socket, [['InvalidArguments', 'LocationChecks']]) - return - register_location_checks(ctx, client.name, client.team, client.slot, args) - - if cmd == 'Say': - if type(args) is not str or not args.isprintable(): - await send_msgs(client.socket, [['InvalidArguments', 'Say']]) - return - - notify_all(ctx, client.name + ': ' + args) - - if args[:8] == '!players': - notify_all(ctx, get_connected_players_string(ctx)) - elif args[:8] == '!forfeit': - forfeit_player(ctx, client.team, client.slot, client.name) - elif args.startswith("!hint"): - pass -def set_password(ctx : Context, password): - ctx.password = password - print('Password set to ' + password if password is not None else 'Password disabled') - -async def console(ctx : Context): - while True: - input = await aioconsole.ainput() - - command = input.split() - if not command: - continue - - if command[0] == '/exit': - ctx.server.ws_server.close() - break - try: - if command[0] == '/players': - print(get_connected_players_string(ctx)) - elif command[0] == '/password': - set_password(ctx, command[1] if len(command) > 1 else None) - elif command[0] == '/kick' and len(command) > 1: - client = get_client_from_name(ctx, command[1]) - if client and client.socket and not client.socket.closed: - await client.socket.close() - - elif command[0] == '/forfeitslot' and len(command) == 3 and command[2].isdigit(): - team = command[1] if command[1] != 'default' else None - slot = int(command[2]) - name = get_player_name_in_team(ctx, team, slot) - forfeit_player(ctx, team, slot, name) - elif command[0] == '/forfeitplayer' and len(command) > 1: - client = get_client_from_name(ctx, command[1]) - if client: - forfeit_player(ctx, client.team, client.slot, client.name) - elif command[0] == '/senditem' and len(command) > 2: - [(player, item)] = re.findall(r'\S* (\S*) (.*)', input) - if item in Items.item_table: - client = get_client_from_name(ctx, player) - if client: - new_item = ReceivedItem(Items.item_table[item][3], "cheat console", 0, "server") - get_received_items(ctx, client.team, client.slot).append(new_item) - notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) - send_new_items(ctx) - else: - print("Unknown item: " + item) - elif command[0] == '/hint': - if len(command) > 2: - player_number = 0 - if command[1].isnumeric(): - player_number = int(command[1]) - else: - client = get_client_from_name(ctx, command[1]) - if client: - player_number = client.slot - else: - print(f"Player with name {command[1]} not found.") - if player_number: - item = " ".join(command[2:]) - if item in Items.item_table: - seeked_item_id = Items.item_table[item][3] - for check, result in ctx.locations.items(): - item_id, receiving_player = result - if receiving_player == player_number and item_id == seeked_item_id: - location_id, finding_player = check - notify_all(ctx, f"[Hint]: P{player_number}'s {item} can be found in {get_location_name_from_address(location_id)} in " - f"P{finding_player}'s World") - - else: - print("Unknown item: " + item) - else: - print("Use /hint {Playernumber/Playername} {itemname}\nFor example /hint 1 Lamp") - elif command[0][0] != '/': - notify_all(ctx, '[Server]: ' + input) - except Exception as e: - import traceback - traceback.print_exc() -async def main(): - parser = argparse.ArgumentParser() - parser.add_argument('--host', default=None) - parser.add_argument('--port', default=38281, type=int) - parser.add_argument('--password', default=None) - parser.add_argument('--multidata', default=None) - parser.add_argument('--savefile', default=None) - parser.add_argument('--disable_save', default=False, action='store_true') - parser.add_argument('--hint_timer', default=-1) - args = parser.parse_args() - - ctx = Context(args.host, args.port, args.password) - - ctx.data_filename = args.multidata - - try: - if not ctx.data_filename: - import tkinter - import tkinter.filedialog - root = tkinter.Tk() - root.withdraw() - ctx.data_filename = tkinter.filedialog.askopenfilename(filetypes=(("Multiworld data","*multidata"),)) - - with open(ctx.data_filename, 'rb') as f: - jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) - ctx.players = jsonobj[0] - ctx.rom_names = {k: v for k, v in jsonobj[1]} - ctx.locations = {tuple(k): tuple(v) for k, v in jsonobj[2]} - except Exception as e: - print('Failed to read multiworld data (%s)' % e) - return - - ip = urllib.request.urlopen('https://v4.ident.me').read().decode('utf8') if not ctx.host else ctx.host - print('Hosting game of %d players (%s) at %s:%d' % (ctx.players, 'No password' if not ctx.password else 'Password: %s' % ctx.password, ip, ctx.port)) - - ctx.disable_save = args.disable_save - if not ctx.disable_save: - if not ctx.save_filename: - ctx.save_filename = (ctx.data_filename[:-9] if ctx.data_filename[-9:] == 'multidata' else (ctx.data_filename + '_')) + 'multisave' - try: - with open(ctx.save_filename, 'rb') as f: - jsonobj = json.loads(zlib.decompress(f.read()).decode("utf-8")) - players = jsonobj[0] - rom_names = {k: v for k, v in jsonobj[1]} - received_items = {tuple(k): [ReceivedItem(**i) for i in v] for k, v in jsonobj[2]} - if players != ctx.players or rom_names != ctx.rom_names: - raise Exception('Save file mismatch, will start a new game') - ctx.received_items = received_items - print('Loaded save file with %d received items for %d players' % (sum([len(p) for p in received_items.values()]), len(received_items))) - except FileNotFoundError: - print('No save data found, starting a new game') - except Exception as e: - print(e) - - ctx.server = websockets.serve(functools.partial(server,ctx=ctx), ctx.host, ctx.port, ping_timeout=None, ping_interval=None) - await ctx.server - await console(ctx) - -if __name__ == '__main__': - loop = asyncio.get_event_loop() - loop.run_until_complete(main()) - loop.run_until_complete(asyncio.gather(*asyncio.Task.all_tasks())) - loop.close() diff --git a/MultiServer.py b/MultiServer.py index a143bbde..153ec2fc 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -268,54 +268,76 @@ def set_password(ctx : Context, password): async def console(ctx : Context): while True: input = await aioconsole.ainput() + try: - command = shlex.split(input) - if not command: - continue + command = shlex.split(input) + if not command: + continue - if command[0] == '/exit': - ctx.server.ws_server.close() - break + if command[0] == '/exit': + ctx.server.ws_server.close() + break - if command[0] == '/players': - print(get_connected_players_string(ctx)) - if command[0] == '/password': - set_password(ctx, command[1] if len(command) > 1 else None) - if command[0] == '/kick' and len(command) > 1: - team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None - for client in ctx.clients: - if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): - if client.socket and not client.socket.closed: - await client.socket.close() - - if command[0] == '/forfeitslot' and len(command) > 1 and command[1].isdigit(): - if len(command) > 2 and command[2].isdigit(): - team = int(command[1]) - 1 - slot = int(command[2]) - else: - team = 0 - slot = int(command[1]) - forfeit_player(ctx, team, slot) - if command[0] == '/forfeitplayer' and len(command) > 1: - team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None - for client in ctx.clients: - if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): - if client.socket and not client.socket.closed: - forfeit_player(ctx, client.team, client.slot) - if command[0] == '/senditem' and len(command) > 2: - [(player, item)] = re.findall(r'\S* (\S*) (.*)', input) - if item in Items.item_table: + if command[0] == '/players': + print(get_connected_players_string(ctx)) + if command[0] == '/password': + set_password(ctx, command[1] if len(command) > 1 else None) + if command[0] == '/kick' and len(command) > 1: + team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None for client in ctx.clients: - if client.auth and client.name.lower() == player.lower(): - new_item = ReceivedItem(Items.item_table[item][3], "cheat console", client.slot) - get_received_items(ctx, client.team, client.slot).append(new_item) - notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) - send_new_items(ctx) - else: - print("Unknown item: " + item) + if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): + if client.socket and not client.socket.closed: + await client.socket.close() - if command[0][0] != '/': - notify_all(ctx, '[Server]: ' + input) + if command[0] == '/forfeitslot' and len(command) > 1 and command[1].isdigit(): + if len(command) > 2 and command[2].isdigit(): + team = int(command[1]) - 1 + slot = int(command[2]) + else: + team = 0 + slot = int(command[1]) + forfeit_player(ctx, team, slot) + if command[0] == '/forfeitplayer' and len(command) > 1: + team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None + for client in ctx.clients: + if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): + if client.socket and not client.socket.closed: + forfeit_player(ctx, client.team, client.slot) + if command[0] == '/senditem' and len(command) > 2: + [(player, item)] = re.findall(r'\S* (\S*) (.*)', input) + if item in Items.item_table: + for client in ctx.clients: + if client.auth and client.name.lower() == player.lower(): + new_item = ReceivedItem(Items.item_table[item][3], "cheat console", client.slot) + get_received_items(ctx, client.team, client.slot).append(new_item) + notify_all(ctx, 'Cheat console: sending "' + item + '" to ' + client.name) + send_new_items(ctx) + else: + print("Unknown item: " + item) + if command[0] == '/hint': + team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None + for client in ctx.clients: + if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): + item = " ".join(command[2:]) + if item in Items.item_table: + seeked_item_id = Items.item_table[item][3] + for check, result in ctx.locations.items(): + item_id, receiving_player = result + print(receiving_player, client.slot) + if receiving_player == client.slot and item_id == seeked_item_id: + location_id, finding_player = check + notify_all(ctx, f"[Hint]: P{client.name}'s {item} can be found in {get_location_name_from_address(location_id)} in " + f"P{finding_player}'s World") + + else: + print("Unknown item: " + item) + else: + print("Use /hint {Playername} {itemname}\nFor example /hint Berserker Lamp") + if command[0][0] != '/': + notify_all(ctx, '[Server]: ' + input) + except: + import traceback + traceback.print_exc() async def main(): parser = argparse.ArgumentParser() @@ -379,4 +401,4 @@ if __name__ == '__main__': loop = asyncio.get_event_loop() loop.run_until_complete(main()) loop.run_until_complete(asyncio.gather(*asyncio.Task.all_tasks())) - loop.close() + loop.close() \ No newline at end of file From aa0ac7aea84e4aada15769a0b6f18752a412e0b3 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 15 Jan 2020 00:36:51 +0100 Subject: [PATCH 183/185] update MultiMystery.py to reflect: merge HintedMultiServer into MultiServer --- MultiMystery.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MultiMystery.py b/MultiMystery.py index 5a248155..314c5af6 100644 --- a/MultiMystery.py +++ b/MultiMystery.py @@ -121,5 +121,4 @@ if __name__ == "__main__": os.remove(file) print(f"Removed file {file} that is now present in the zipfile") - serverfile = "HintedMultiServer.py" if os.path.exists("HintedMultiServer.py") else "MultiServer.py" - subprocess.call(f"py -{py_version} {serverfile} --multidata {os.path.join(outputpath, multidataname)}") + subprocess.call(f"py -{py_version} MultiServer.py --multidata {os.path.join(outputpath, multidataname)}") From 11823e43dda9530f2e7c889f06e403c3e6c07da9 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 15 Jan 2020 00:57:38 +0100 Subject: [PATCH 184/185] Make hints team aware and bring it more in-line with existing commands --- MultiServer.py | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/MultiServer.py b/MultiServer.py index 153ec2fc..5f8483d1 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -315,24 +315,23 @@ async def console(ctx : Context): else: print("Unknown item: " + item) if command[0] == '/hint': - team = int(command[2]) - 1 if len(command) > 2 and command[2].isdigit() else None - for client in ctx.clients: - if client.auth and client.name.lower() == command[1].lower() and (team is None or team == client.team): + for (team,slot), name in ctx.player_names.items(): + if len(command) == 1: + print("Use /hint {Playername} {itemname}\nFor example /hint Berserker Lamp") + elif name.lower() == command[1].lower(): item = " ".join(command[2:]) if item in Items.item_table: seeked_item_id = Items.item_table[item][3] for check, result in ctx.locations.items(): item_id, receiving_player = result - print(receiving_player, client.slot) - if receiving_player == client.slot and item_id == seeked_item_id: + if receiving_player == slot and item_id == seeked_item_id: location_id, finding_player = check - notify_all(ctx, f"[Hint]: P{client.name}'s {item} can be found in {get_location_name_from_address(location_id)} in " - f"P{finding_player}'s World") - + name_finder = ctx.player_names[team, finding_player] + hint = f"[Hint]: {name}'s {item} can be found in " \ + f"{get_location_name_from_address(location_id)} in {name_finder}'s World" + notify_team(ctx, team, hint) else: print("Unknown item: " + item) - else: - print("Use /hint {Playername} {itemname}\nFor example /hint Berserker Lamp") if command[0][0] != '/': notify_all(ctx, '[Server]: ' + input) except: From 2d26d63ccea02d89c492f651ffbb56c9b64ba49e Mon Sep 17 00:00:00 2001 From: Bonta-kun <40473493+Bonta0@users.noreply.github.com> Date: Wed, 15 Jan 2020 03:00:30 +0100 Subject: [PATCH 185/185] MultiClient: fix roominfo sort --- MultiClient.py | 6 +++--- MultiServer.py | 11 ++++------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/MultiClient.py b/MultiClient.py index 2768ed7e..96d0f3af 100644 --- a/MultiClient.py +++ b/MultiClient.py @@ -618,13 +618,13 @@ async def process_server_cmd(ctx : Context, cmd, args): if len(args['players']) < 1: print('No player connected') else: - args['players'].sort(key=lambda _, t, s: (t, s)) + args['players'].sort() current_team = 0 print('Connected players:') print(' Team #1') - for name, team, slot in args['players']: + for team, slot, name in args['players']: if team != current_team: - print(' Team #d' % team + 1) + print(f' Team #{team + 1}') current_team = team print(' %s (Player %d)' % (name, slot)) await server_auth(ctx, args['password']) diff --git a/MultiServer.py b/MultiServer.py index a143bbde..3656d8de 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -39,12 +39,6 @@ class Context: self.clients = [] self.received_items = {} -def get_room_info(ctx : Context): - return { - 'password': ctx.password is not None, - 'players': [(client.name, client.team, client.slot) for client in ctx.clients if client.auth] - } - async def send_msgs(websocket, msgs): if not websocket or not websocket.open or websocket.closed: return @@ -100,7 +94,10 @@ async def server(websocket, path, ctx : Context): ctx.clients.remove(client) async def on_client_connected(ctx : Context, client : Client): - await send_msgs(client.socket, [['RoomInfo', get_room_info(ctx)]]) + await send_msgs(client.socket, [['RoomInfo', { + 'password': ctx.password is not None, + 'players': [(client.team, client.slot, client.name) for client in ctx.clients if client.auth] + }]]) async def on_client_disconnected(ctx : Context, client : Client): if client.auth: